Changeset 5782 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 16, 2007 8:34:18 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26179
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleVRDPServer.h
r4404 r5782 33 33 /////////////////////////////////////////////////////////////////////////////// 34 34 35 #ifdef VRDP_NO_COM 36 typedef 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 35 51 /* Member of Console. Helper class for VRDP server management. Not a COM class. */ 36 52 class ConsoleVRDPServer … … 46 62 m_fGuestWantsAbsolute = fGuestWantsAbsolute; 47 63 } 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 49 87 void EnableConnections (void); 50 88 void MousePointerUpdate (const VRDPCOLORPOINTER *pPointer); … … 145 183 146 184 IConsoleCallback *mConsoleCallback; 185 186 VRDPInputSynch m_InputSynch; 147 187 #else 148 188 // VRDP API function pointers
Note:
See TracChangeset
for help on using the changeset viewer.