VirtualBox

Changeset 47226 in vbox


Ignore:
Timestamp:
Jul 18, 2013 8:20:07 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
87342
Message:

Main/Mouse: more adjustments to prepare for multi-touch.

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/MouseImpl.h

    r47215 r47226  
    2626
    2727/** Maximum number of devices supported */
    28 enum { MOUSE_MAX_DEVICES = 3 };
     28enum { MOUSE_MAX_DEVICES = 10 };
    2929/** Mouse driver instance data. */
    3030typedef struct DRVMAINMOUSE DRVMAINMOUSE, *PDRVMAINMOUSE;
  • trunk/src/VBox/Main/src-client/MouseImpl.cpp

    r47215 r47226  
    443443    LONG cJiggle = 0;
    444444
    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())
    451451        {
    452452            rc = reportAbsEventToVMMDev(x, y);
    453453            cJiggle = !fUsesVMMDevEvent;
    454454        }
    455         rc = reportRelEventToMouseDev(cJiggle, 0, dz, dw, fButtons);
    456     }
    457     else
    458         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);
    459459
    460460    mcLastX = x;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette