Changeset 53624 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Dec 31, 2014 2:59:44 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97393
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/platform/win/WinKeyboard.cpp
r53319 r53624 17 17 18 18 #define LOG_GROUP LOG_GROUP_GUI 19 19 20 20 #include "WinKeyboard.h" 21 21 #include <iprt/assert.h> … … 181 181 * no AltGr key in the layout then it will run right through, but that should 182 182 * hopefully not happen very often. 183 * 183 * 184 184 * In theory we could do this once and cache the result, but that involves 185 185 * tracking layout switches to invalidate the cache, and I don't think that the … … 272 272 return false; 273 273 274 275 276 274 if (messageTime != peekMsg.time) 275 return false; 276 if ( fKeyDown 277 277 && (peekMsg.message != WM_KEYDOWN && peekMsg.message != WM_SYSKEYDOWN)) 278 278 return false; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r53221 r53624 75 75 # include "WinKeyboard.h" 76 76 #endif /* Q_WS_WIN */ 77 77 78 78 /* Enums representing different keyboard-states: */ 79 79 enum { KeyExtended = 0x01, KeyPressed = 0x02, KeyPause = 0x04, KeyPrint = 0x08 }; … … 183 183 NOREF(pDisplay); 184 184 struct CHECKFORX11FOCUSEVENTSDATA *pStruct; 185 185 186 186 pStruct = (struct CHECKFORX11FOCUSEVENTSDATA *)pArg; 187 187 if ( pEvent->xany.type == XFocusIn -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r53406 r53624 1982 1982 { 1983 1983 #if defined(Q_WS_MAC) 1984 1984 DarwinHidDevicesApplyAndReleaseLedsState(m_pHostLedsState); 1985 1985 #elif defined(Q_WS_WIN) 1986 1986 keyboardHandler()->winSkipKeyboardEvents(true);
Note:
See TracChangeset
for help on using the changeset viewer.