Changeset 26624 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Feb 18, 2010 10:35:24 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57827
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MouseImpl.h
r26173 r26624 46 46 typedef ConsoleEventBuffer<MouseEvent> MouseEventBuffer; 47 47 48 enum 49 { 50 MOUSE_DEVCAP_ABSOLUTE = 1 51 }; 52 48 53 class ATL_NO_VTABLE Mouse : 49 54 public VirtualBoxBase, … … 90 95 static const PDMDRVREG DrvReg; 91 96 97 Console *getParent() const 98 { 99 return mParent; 100 } 101 92 102 private: 93 103 94 104 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 105 static DECLCALLBACK(void) mouseAbsModeChange (PPDMIMOUSECONNECTOR pInterface, bool fAbs); 95 106 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags); 96 107 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns); 108 109 int getVMMDevMouseCaps(uint32_t *pfCaps); 110 int setVMMDevMouseCaps(uint32_t fCaps); 111 int reportRelEventToMouseDev(int32_t dx, int32_t dy, int32_t dz, 112 int32_t dw, uint32_t fButtons); 113 int reportAbsEventToMouseDev(uint32_t mouseXAbs, uint32_t mouseYAbs); 114 int reportAbsEventToVMMDev(uint32_t mouseXAbs, uint32_t mouseYAbs); 115 int convertDisplayWidth(LONG x, uint32_t *pcX); 116 int convertDisplayHeight(LONG y, uint32_t *pcY); 117 bool needsRelativeEvent(uint32_t cXAbs, uint32_t cYAbs, int32_t dz, int32_t dw, uint32_t fButtons, uint32_t fCaps); 97 118 98 119 const ComObjPtr<Console, ComWeakRef> mParent; … … 101 122 102 123 LONG uHostCaps; 124 LONG uDevCaps; 103 125 uint32_t mLastAbsX; 104 126 uint32_t mLastAbsY; 127 uint32_t mLastButtons; 105 128 }; 106 129
Note:
See TracChangeset
for help on using the changeset viewer.