Searched defs:pWatchedObject (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/
H A DUIKeyboardHandlerFullscreen.cpp46 bool UIKeyboardHandlerFullscreen::eventFilter(QObject *pWatchedObject, QEvent *pEvent) argument
48 /* Check if pWatchedObject object is view: */
49 if (UIMachineView *pWatchedView = isItListenedView(pWatchedObject))
77 return UIKeyboardHandler::eventFilter(pWatchedObject, pEvent);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/normal/
H A DUIKeyboardHandlerNormal.cpp56 bool UIKeyboardHandlerNormal::eventFilter(QObject *pWatchedObject, QEvent *pEvent) argument
58 /* Check if pWatchedObject object is view: */
59 if (UIMachineView *pWatchedView = isItListenedView(pWatchedObject))
117 return UIKeyboardHandler::eventFilter(pWatchedObject, pEvent);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/scale/
H A DUIKeyboardHandlerScale.cpp53 bool UIKeyboardHandlerScale::eventFilter(QObject *pWatchedObject, QEvent *pEvent) argument
55 /* Check if pWatchedObject object is view: */
56 if (UIMachineView *pWatchedView = isItListenedView(pWatchedObject))
84 return UIKeyboardHandler::eventFilter(pWatchedObject, pEvent);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/seamless/
H A DUIKeyboardHandlerSeamless.cpp53 bool UIKeyboardHandlerSeamless::eventFilter(QObject *pWatchedObject, QEvent *pEvent) argument
55 /* Check if pWatchedObject object is view: */
56 if (UIMachineView *pWatchedView = isItListenedView(pWatchedObject))
84 return UIKeyboardHandler::eventFilter(pWatchedObject, pEvent);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIKeyboardHandler.cpp866 bool UIKeyboardHandler::eventFilter(QObject *pWatchedObject, QEvent *pEvent) argument
868 /* Check if pWatchedObject object is window: */
869 if (UIMachineWindow *pWatchedWindow = isItListenedWindow(pWatchedObject))
923 /* Check if pWatchedObject object is view: */
924 if (UIMachineView *pWatchedView = isItListenedView(pWatchedObject))
1031 return QObject::eventFilter(pWatchedObject, pEvent);
1764 UIMachineWindow* UIKeyboardHandler::isItListenedWindow(QObject *pWatchedObject) const
1771 if (pIteratedWindow == pWatchedObject)
1781 UIMachineView* UIKeyboardHandler::isItListenedView(QObject *pWatchedObject) const
1788 if (pIteratedView == pWatchedObject)
[all...]

Completed in 46 milliseconds