VirtualBox

Changeset 5782 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
Nov 16, 2007 8:34:18 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
26179
Message:

Implemented NumLock state synch over VRDP.

File:
1 edited

Legend:

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

    r4404 r5782  
    3333///////////////////////////////////////////////////////////////////////////////
    3434
     35#ifdef VRDP_NO_COM
     36typedef struct _VRDPInputSynch
     37{
     38    int cGuestNumLockAdaptions;
     39    int cGuestCapsLockAdaptions;
     40
     41    bool fGuestNumLock;
     42    bool fGuestCapsLock;
     43    bool fGuestScrollLock;
     44
     45    bool fClientNumLock;
     46    bool fClientCapsLock;
     47    bool fClientScrollLock;
     48} VRDPInputSynch;
     49#endif /* VRDP_NO_COM */
     50
    3551/* Member of Console. Helper class for VRDP server management. Not a COM class. */
    3652class ConsoleVRDPServer
     
    4662        m_fGuestWantsAbsolute = fGuestWantsAbsolute;
    4763    }
    48    
     64
     65    void NotifyKeyboardLedsChange (BOOL fNumLock, BOOL fCapsLock, BOOL fScrollLock)
     66    {
     67        bool fGuestNumLock    = (fNumLock != FALSE);
     68        bool fGuestCapsLock   = (fCapsLock != FALSE);
     69        bool fGuestScrollLock = (fScrollLock != FALSE);
     70
     71        /* Might need to resynch in case the guest itself changed the LED status. */
     72        if (m_InputSynch.fClientNumLock != fGuestNumLock)
     73        {
     74            m_InputSynch.cGuestNumLockAdaptions = 2;
     75        }
     76
     77        if (m_InputSynch.fClientCapsLock != fGuestCapsLock)
     78        {
     79            m_InputSynch.cGuestCapsLockAdaptions = 2;
     80        }
     81
     82        m_InputSynch.fGuestNumLock    = fGuestNumLock;
     83        m_InputSynch.fGuestCapsLock   = fGuestCapsLock;
     84        m_InputSynch.fGuestScrollLock = fGuestScrollLock;
     85    }
     86
    4987    void EnableConnections (void);
    5088    void MousePointerUpdate (const VRDPCOLORPOINTER *pPointer);
     
    145183   
    146184    IConsoleCallback *mConsoleCallback;
     185
     186    VRDPInputSynch m_InputSynch;
    147187#else
    148188    // VRDP API function pointers
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