Changeset 82030 in vbox
- Timestamp:
- Nov 20, 2019 4:07:24 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134834
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r81964 r82030 836 836 /* Machine state-change updater: */ 837 837 connect(uisession(), &UISession::sigMachineStateChange, this, &UIMachineView::sltMachineStateChanged); 838 /* Mouse pointer shape updater: */ 839 connect(uisession(), &UISession::sigMousePointerShapeChange, this, &UIMachineView::sigMousePointerShapeChange); 838 840 } 839 841 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h
r76581 r82030 70 70 signals: 71 71 72 /** Notifies about mouse pointer shape change. */ 73 void sigMousePointerShapeChange(); 72 74 /** Notifies about frame-buffer resize. */ 73 75 void sigFrameBufferResize(); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r80617 r82030 108 108 /* Install event-filter for machine-view: */ 109 109 m_views[uIndex]->installEventFilter(this); 110 /* Make machine-view notify mouse-handler about mouse pointer shape change: */ 111 connect(m_views[uIndex], &UIMachineView::sigMousePointerShapeChange, this, &UIMouseHandler::sltMousePointerShapeChanged); 110 112 /* Make machine-view notify mouse-handler about frame-buffer resize: */ 111 113 connect(m_views[uIndex], &UIMachineView::sigFrameBufferResize, this, &UIMouseHandler::sltMousePointerShapeChanged); … … 523 525 connect(uisession(), &UISession::sigMouseCapabilityChange, this, &UIMouseHandler::sltMouseCapabilityChanged); 524 526 525 /* Mouse pointer shape state-change updaters: */ 526 connect(uisession(), &UISession::sigMousePointerShapeChange, this, &UIMouseHandler::sltMousePointerShapeChanged); 527 /* Mouse pointer shape state-change updater: */ 527 528 connect(this, &UIMouseHandler::sigStateChange, this, &UIMouseHandler::sltMousePointerShapeChanged); 528 529
Note:
See TracChangeset
for help on using the changeset viewer.