Changeset 59656 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 12, 2016 1:57:09 PM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp
r59414 r59656 944 944 #else /* QT_VERSION >= 0x050000 */ 945 945 946 bool UIKeyboardHandler::nativeEvent Filter(void *pMessage, ulong uScreenId)946 bool UIKeyboardHandler::nativeEventPostprocessor(void *pMessage, ulong uScreenId) 947 947 { 948 948 /* Check if some system event should be filtered out. -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.h
r59361 r59656 118 118 # endif /* Q_WS_X11 */ 119 119 #else /* QT_VERSION >= 0x050000 */ 120 /** Qt5: Performs final pre-processing of all the native events. */121 bool nativeEvent Filter(void *pMessage, ulong uScreenId);120 /** Qt5: Performs post-processing of all the native events. */ 121 bool nativeEventPostprocessor(void *pMessage, ulong uScreenId); 122 122 #endif /* QT_VERSION >= 0x050000 */ 123 123 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r59414 r59656 1911 1911 { 1912 1912 /* Delegate key-event handling to the keyboard-handler: */ 1913 return machineLogic()->keyboardHandler()->nativeEvent Filter(pMessage, screenId());1913 return machineLogic()->keyboardHandler()->nativeEventPostprocessor(pMessage, screenId()); 1914 1914 } 1915 1915 default: … … 1941 1941 { 1942 1942 /* Delegate key-event handling to the keyboard-handler: */ 1943 return machineLogic()->keyboardHandler()->nativeEvent Filter(pMessage, screenId());1943 return machineLogic()->keyboardHandler()->nativeEventPostprocessor(pMessage, screenId()); 1944 1944 } 1945 1945 default: … … 1964 1964 { 1965 1965 /* Delegate key-event handling to the keyboard-handler: */ 1966 return machineLogic()->keyboardHandler()->nativeEvent Filter(pMessage, screenId());1966 return machineLogic()->keyboardHandler()->nativeEventPostprocessor(pMessage, screenId()); 1967 1967 } 1968 1968 default:
Note:
See TracChangeset
for help on using the changeset viewer.