Changeset 77840 in vbox
- Timestamp:
- Mar 22, 2019 8:01:30 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.h
r77726 r77840 138 138 /** Returns currently cached mouse cursor pixmap. */ 139 139 QPixmap cursorPixmap() const { return m_cursorPixmap; } 140 /** Returns currently cached mouse cursor size. */ 141 QSize cursorSize() const { return m_cursorSize; } 140 142 /** Returns currently cached mouse cursor hotspot. */ 141 143 QPoint cursorHotspot() const { return m_cursorHotspot; } 142 /** Returns currently cached mouse cursor size. */143 QSize cursorSize() const { return m_cursorSize; }144 144 145 145 /** @name Branding stuff. … … 306 306 /** Notifies listeners about mouse state-change. */ 307 307 void sigMouseStateChange(int iState); 308 /** Notifies listeners about mouse pointer shape change. */ 308 309 void sigMousePointerShapeChange(); 310 /** Notifies listeners about mouse capability change. */ 309 311 void sigMouseCapabilityChange(); 310 312 void sigKeyboardLedsChange(); … … 363 365 364 366 /* Console events slots */ 367 /** Handles signal about mouse pointer become @a fVisible and his shape changed to @a fAlpha, @a hotCorner, @a size and @a shape. */ 365 368 void sltMousePointerShapeChange(bool fVisible, bool fAlpha, QPoint hotCorner, QSize size, QVector<uint8_t> shape); 369 /** Handles signal about mouse capability change to @a fSupportsAbsolute, @a fSupportsRelative, @a fSupportsMultiTouch and @a fNeedsHostCursor. */ 366 370 void sltMouseCapabilityChange(bool fSupportsAbsolute, bool fSupportsRelative, bool fSupportsMultiTouch, bool fNeedsHostCursor); 367 371 void sltKeyboardLedsChangeEvent(bool fNumLock, bool fCapsLock, bool fScrollLock); … … 490 494 /** Holds cached mouse cursor pixmap. */ 491 495 QPixmap m_cursorPixmap; 496 /** Holds cached mouse cursor size. */ 497 QSize m_cursorSize; 492 498 /** Holds cached mouse cursor hotspot. */ 493 499 QPoint m_cursorHotspot; 494 /** Holds cached mouse cursor size. */495 QSize m_cursorSize;496 500 497 501 /** @name Branding variables.
Note:
See TracChangeset
for help on using the changeset viewer.