Changeset 77843 in vbox
- Timestamp:
- Mar 22, 2019 8:16:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r77668 r77843 452 452 * We should hide host pointer in case of: 453 453 * 1. mouse is 'captured' or 454 * 2. machine is NOT 'paused' and mouse is NOT 'captured' and 'integrated' and 'absolute' but host pointer is 'hidden' by the guest. */ 454 * 2. valid guest mouse cursor position provided to override host cursor with more actual coordinates 455 * 3. machine is NOT 'paused' and mouse is NOT 'captured' and 'integrated' and 'absolute' but host pointer is 'hidden' by the guest. */ 455 456 if (uisession()->isMouseCaptured() || 457 uisession()->isValidCursorPositionPresent() || 456 458 (!uisession()->isPaused() && 457 459 uisession()->isMouseIntegrated() && … … 526 528 connect(uisession(), SIGNAL(sigMousePointerShapeChange()), this, SLOT(sltMousePointerShapeChanged())); 527 529 connect(this, SIGNAL(sigStateChange(int)), this, SLOT(sltMousePointerShapeChanged())); 530 531 /* Mouse cursor position state-change updater: */ 532 connect(uisession(), &UISession::sigCursorPositionChange, this, &UIMouseHandler::sltMousePointerShapeChanged); 528 533 529 534 /* Initialize: */
Note:
See TracChangeset
for help on using the changeset viewer.