aboutsummaryrefslogtreecommitdiff
path: root/src/key.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-06-29 13:13:20 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-06-29 13:13:20 +0200
commit98a074417fb9ac157c32d637123b6eaae19239f9 (patch)
tree583236741d6fdae64fb5a82eb6f7cb4394da844a /src/key.h
parent5ff9125db3a7f8f545cbfb5f7bf452c8b0db4d41 (diff)
downloadjwm-98a074417fb9ac157c32d637123b6eaae19239f9.tar.gz
Handle modifiers when window switching
Before this patch, releasing Shift would end the switch, even if the Shift key was part of the prevstacked key binding. This patch fixes that. It ranks the modifiers, so that Shift can act as an "alternate" modifier for all modifiers, Alt for all keys but Shift, Ctrl for all keys but Alt and Shift and so forth. The Hyper key cannot act as an "alternate" modifier for any modifier. It is a bit complex, but hopefully intuitive.
Diffstat (limited to 'src/key.h')
-rw-r--r--src/key.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/key.h b/src/key.h
index 05e8083..985d7bc 100644
--- a/src/key.h
+++ b/src/key.h
@@ -58,5 +58,7 @@ void ShowKeyMenu(const XKeyEvent *event);
void ValidateKeys();
+int Switching(const XKeyEvent *event);
+
#endif