1 | /* $Id: UIKeyboardHandlerSeamless.cpp 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UIKeyboardHandlerSeamless class implementation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef VBOX_WS_MAC
|
---|
29 | /* Qt includes: */
|
---|
30 | # include <QKeyEvent>
|
---|
31 | # include <QTimer>
|
---|
32 | #endif /* !VBOX_WS_MAC */
|
---|
33 |
|
---|
34 | /* GUI includes: */
|
---|
35 | #include "UIKeyboardHandlerSeamless.h"
|
---|
36 | #ifndef VBOX_WS_MAC
|
---|
37 | # include "UIMachineLogic.h"
|
---|
38 | # include "UIShortcutPool.h"
|
---|
39 | #endif /* !VBOX_WS_MAC */
|
---|
40 |
|
---|
41 |
|
---|
42 | #ifndef VBOX_WS_MAC
|
---|
43 | /* Namespaces: */
|
---|
44 | using namespace UIExtraDataDefs;
|
---|
45 | #endif /* !VBOX_WS_MAC */
|
---|
46 |
|
---|
47 | UIKeyboardHandlerSeamless::UIKeyboardHandlerSeamless(UIMachineLogic* pMachineLogic)
|
---|
48 | : UIKeyboardHandler(pMachineLogic)
|
---|
49 | {
|
---|
50 | }
|
---|
51 |
|
---|
52 | UIKeyboardHandlerSeamless::~UIKeyboardHandlerSeamless()
|
---|
53 | {
|
---|
54 | }
|
---|
55 |
|
---|
56 | #ifndef VBOX_WS_MAC
|
---|
57 | bool UIKeyboardHandlerSeamless::eventFilter(QObject *pWatchedObject, QEvent *pEvent)
|
---|
58 | {
|
---|
59 | /* Check if pWatchedObject object is view: */
|
---|
60 | if (UIMachineView *pWatchedView = isItListenedView(pWatchedObject))
|
---|
61 | {
|
---|
62 | /* Get corresponding screen index: */
|
---|
63 | ulong uScreenId = m_views.key(pWatchedView);
|
---|
64 | NOREF(uScreenId);
|
---|
65 | /* Handle view events: */
|
---|
66 | switch (pEvent->type())
|
---|
67 | {
|
---|
68 | case QEvent::KeyPress:
|
---|
69 | {
|
---|
70 | /* Get key-event: */
|
---|
71 | QKeyEvent *pKeyEvent = static_cast<QKeyEvent*>(pEvent);
|
---|
72 | /* Process Host+Home for menu popup: */
|
---|
73 | if ( isHostKeyPressed()
|
---|
74 | && gShortcutPool->shortcut(GUI_Input_MachineShortcuts, QString("PopupMenu")).sequences().contains(QKeySequence(pKeyEvent->key())))
|
---|
75 | {
|
---|
76 | /* Post request to show popup-menu: */
|
---|
77 | QTimer::singleShot(0, m_pMachineLogic, SLOT(sltInvokePopupMenu()));
|
---|
78 | /* Filter-out this event: */
|
---|
79 | return true;
|
---|
80 | }
|
---|
81 | break;
|
---|
82 | }
|
---|
83 | default:
|
---|
84 | break;
|
---|
85 | }
|
---|
86 | }
|
---|
87 |
|
---|
88 | /* Else just propagate to base-class: */
|
---|
89 | return UIKeyboardHandler::eventFilter(pWatchedObject, pEvent);
|
---|
90 | }
|
---|
91 | #endif /* !VBOX_WS_MAC */
|
---|