1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Copyright (C) 2014-2015 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.15
import Powerd 0.1
import Utils 0.1
/*!
\brief A mapper for the physical keys on the device
A mapper to handle events triggered by pressing physical keys on a device.
Keys included are
* Volume Decrease
* Volume Increase
* Power
This allows for handling the following events
* Power dialog
* Volume Decreases/Increases
* Screenshots
*/
Item {
id: root
signal powerKeyLongPressed;
signal volumeDownTriggered;
signal volumeUpTriggered;
signal screenshotTriggered;
readonly property bool altTabPressed: d.altTabPressed
readonly property bool superPressed: d.superPressed
readonly property bool superTabPressed: d.superTabPressed
property int powerKeyLongPressTime: 2000
// For testing. If running windowed (e.g. tryShell), Alt+Tab is taken by the
// running desktop, set this to true to use Ctrl+Tab instead.
property bool controlInsteadOfAlt: false
property bool controlInsteadOfSuper: false
QtObject {
id: d
property bool volumeDownKeyPressed: false
property bool volumeUpKeyPressed: false
property bool ignoreVolumeEvents: false
property bool altPressed: false
property bool altTabPressed: false
property bool superPressed: false
property bool superTabPressed: false
property var powerButtonPressStart: -1
}
InputEventGenerator {
id: inputEventGenerator
}
function onKeyPressed(event, currentEventTimestamp) {
if (event.key == Qt.Key_PowerDown || event.key == Qt.Key_PowerOff) {
if (event.isAutoRepeat) {
if (d.powerButtonPressStart != -1
&& currentEventTimestamp - d.powerButtonPressStart >= powerKeyLongPressTime) {
d.powerButtonPressStart = -1;
root.powerKeyLongPressed();
}
} else {
d.powerButtonPressStart = currentEventTimestamp;
}
} else if ((event.key == Qt.Key_MediaTogglePlayPause || event.key == Qt.Key_MediaPlay) && !event.isAutoRepeat) {
event.accepted = callManager.handleMediaKey(false);
} else if (event.key == Qt.Key_VolumeDown) {
if (event.isAutoRepeat && !d.ignoreVolumeEvents) root.volumeDownTriggered();
else if (!event.isAutoRepeat) {
if (d.volumeUpKeyPressed) {
if (Powerd.status === Powerd.On) {
root.screenshotTriggered();
}
d.ignoreVolumeEvents = true;
}
d.volumeDownKeyPressed = true;
}
} else if (event.key == Qt.Key_VolumeUp) {
if (event.isAutoRepeat && !d.ignoreVolumeEvents) root.volumeUpTriggered();
else if (!event.isAutoRepeat) {
if (d.volumeDownKeyPressed) {
if (Powerd.status === Powerd.On) {
root.screenshotTriggered();
}
d.ignoreVolumeEvents = true;
}
d.volumeUpKeyPressed = true;
}
} else if (event.key == Qt.Key_Alt || (root.controlInsteadOfAlt && event.key == Qt.Key_Control)) {
d.altPressed = true;
// Adding MetaModifier here because that's what keyboards do. Pressing Super_L actually gives
// Super_L + MetaModifier. This helps to make sure we only invoke superPressed if no other
// Modifier is pressed too.
} else if (((event.key == Qt.Key_Super_L || event.key == Qt.Key_Super_R) && event.modifiers === Qt.MetaModifier)
|| (root.controlInsteadOfSuper && event.key == Qt.Key_Control)
) {
d.superPressed = true;
} else if (event.key == Qt.Key_Tab) {
if (d.altPressed && !d.altTabPressed) {
inputEventGenerator.generateKeyEvent(Qt.Key_Alt, false, Qt.NoModifier, currentEventTimestamp, 56);
d.altTabPressed = true;
event.accepted = true;
}
if (d.superPressed && !d.superTabPressed) {
d.superTabPressed = true;
event.accepted = true;
}
}
}
function onKeyReleased(event, currentEventTimestamp) {
if (event.key == Qt.Key_PowerDown || event.key == Qt.Key_PowerOff) {
d.powerButtonPressStart = -1;
event.accepted = true;
} else if (event.key == Qt.Key_VolumeDown) {
if (!d.ignoreVolumeEvents) root.volumeDownTriggered();
d.volumeDownKeyPressed = false;
if (!d.volumeUpKeyPressed) d.ignoreVolumeEvents = false;
} else if (event.key == Qt.Key_VolumeUp) {
if (!d.ignoreVolumeEvents) root.volumeUpTriggered();
d.volumeUpKeyPressed = false;
if (!d.volumeDownKeyPressed) d.ignoreVolumeEvents = false;
} else if (event.key == Qt.Key_Alt || (root.controlInsteadOfAlt && event.key == Qt.Key_Control)) {
if (d.altTabPressed) {
d.altTabPressed = false;
event.accepted = true;
}
d.altPressed = false;
} else if (event.key == Qt.Key_Tab) {
if (d.altTabPressed) {
event.accepted = true;
}
} else if (event.key == Qt.Key_Super_L || event.key == Qt.Key_Super_R || (root.controlInsteadOfSuper && event.key == Qt.Key_Control)) {
d.superPressed = false;
if (d.superTabPressed) {
d.superTabPressed = false;
event.accepted = true;
}
}
}
}
|