Changeset 47226 in vbox
- Timestamp:
- Jul 18, 2013 8:20:07 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87342
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MouseImpl.h
r47215 r47226 26 26 27 27 /** Maximum number of devices supported */ 28 enum { MOUSE_MAX_DEVICES = 3};28 enum { MOUSE_MAX_DEVICES = 10 }; 29 29 /** Mouse driver instance data. */ 30 30 typedef struct DRVMAINMOUSE DRVMAINMOUSE, *PDRVMAINMOUSE; -
trunk/src/VBox/Main/src-client/MouseImpl.cpp
r47215 r47226 443 443 LONG cJiggle = 0; 444 444 445 if (vmmdevCanAbs())446 {447 /*448 * Send the absolute mouse position to the VMM device.449 */450 if ( x != mcLastX || y != mcLastY)445 /* 446 * Send the absolute mouse position to the device. 447 */ 448 if (x != mcLastX || y != mcLastY) 449 { 450 if (vmmdevCanAbs()) 451 451 { 452 452 rc = reportAbsEventToVMMDev(x, y); 453 453 cJiggle = !fUsesVMMDevEvent; 454 454 } 455 rc = reportRelEventToMouseDev(cJiggle, 0, dz, dw, fButtons);456 }457 else458 rc = reportAbsEventToMouseDev(x, y, dz, dw, fButtons);455 else 456 rc = reportAbsEventToMouseDev(x, y, 0, 0, 0); 457 } 458 rc = reportRelEventToMouseDev(cJiggle, 0, dz, dw, fButtons); 459 459 460 460 mcLastX = x;
Note:
See TracChangeset
for help on using the changeset viewer.