summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.xyz>2019-08-18 12:50:38 +0200
committerGerd Hoffmann <kraxel@redhat.com>2019-08-21 12:25:46 +0200
commita923b471fc59389e49575f38f4db3cd622619bf5 (patch)
tree5fc5de0f17c2f60d02a6bfd2016ee79d6f439446
parent68097ed5e5bd5bc5bfead8076dbef700a8537b15 (diff)
downloadfocaccia-qemu-a923b471fc59389e49575f38f4db3cd622619bf5.tar.gz
focaccia-qemu-a923b471fc59389e49575f38f4db3cd622619bf5.zip
input-linux: add shift+shift as a grab toggle
We have ctrl-ctrl and alt-alt; why not shift-shift? That's my preferred
grab binding, personally.

Signed-off-by: Niklas Haas <git@haasn.xyz>
Message-id: 20190818105038.19520-1-qemu@haasn.xyz
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r--qapi/ui.json3
-rw-r--r--ui/input-linux.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/qapi/ui.json b/qapi/ui.json
index 59e412139a..e04525d8b4 100644
--- a/qapi/ui.json
+++ b/qapi/ui.json
@@ -1025,7 +1025,8 @@
 #
 ##
 { 'enum': 'GrabToggleKeys',
-  'data': [ 'ctrl-ctrl', 'alt-alt', 'meta-meta', 'scrolllock', 'ctrl-scrolllock' ] }
+  'data': [ 'ctrl-ctrl', 'alt-alt', 'shift-shift','meta-meta', 'scrolllock',
+            'ctrl-scrolllock' ] }
 
 ##
 # @DisplayGTK:
diff --git a/ui/input-linux.c b/ui/input-linux.c
index 59456fe765..a7b280b25b 100644
--- a/ui/input-linux.c
+++ b/ui/input-linux.c
@@ -113,6 +113,10 @@ static bool input_linux_check_toggle(InputLinux *il)
         return il->keydown[KEY_LEFTALT] &&
             il->keydown[KEY_RIGHTALT];
 
+    case GRAB_TOGGLE_KEYS_SHIFT_SHIFT:
+        return il->keydown[KEY_LEFTSHIFT] &&
+            il->keydown[KEY_RIGHTSHIFT];
+
     case GRAB_TOGGLE_KEYS_META_META:
         return il->keydown[KEY_LEFTMETA] &&
             il->keydown[KEY_RIGHTMETA];