aboutsummaryrefslogtreecommitdiff
path: root/include/sway/input/keyboard.h
diff options
context:
space:
mode:
authorfrsfnrrg <frsfnrrg@users.noreply.github.com>2018-05-31 19:35:17 -0400
committerfrsfnrrg <frsfnrrg@users.noreply.github.com>2018-06-01 18:52:36 -0400
commita056419ad720e20fdc04f3a7d05bce62fa639755 (patch)
tree5248788d8b24cbcea07897b884c243700997e460 /include/sway/input/keyboard.h
parentf5ed65e633b6ec3afe4a5f654a48fd96f187b282 (diff)
Rewrite shortcut handling code to avoid hardcoded values
The same shortcut algorithm is now used for keycodes, raw keysyms, and translated keysyms. Pressed keysyms are now stored in association with the keycodes that generated them. Modifier keycodes (and associated keysyms) are identified retroactively by the subsequent change to the modifier flags.
Diffstat (limited to 'include/sway/input/keyboard.h')
-rw-r--r--include/sway/input/keyboard.h18
1 files changed, 12 insertions, 6 deletions
diff --git a/include/sway/input/keyboard.h b/include/sway/input/keyboard.h
index 8ec3eb35..c9a8d514 100644
--- a/include/sway/input/keyboard.h
+++ b/include/sway/input/keyboard.h
@@ -3,7 +3,13 @@
#include "sway/input/seat.h"
-#define SWAY_KEYBOARD_PRESSED_KEYSYMS_CAP 32
+#define SWAY_KEYBOARD_PRESSED_KEYS_CAP 32
+
+struct sway_shortcut_state {
+ uint32_t pressed_keys[SWAY_KEYBOARD_PRESSED_KEYS_CAP];
+ uint32_t pressed_keycodes[SWAY_KEYBOARD_PRESSED_KEYS_CAP];
+ int last_key_index;
+};
struct sway_keyboard {
struct sway_seat_device *seat_device;
@@ -13,11 +19,11 @@ struct sway_keyboard {
struct wl_listener keyboard_key;
struct wl_listener keyboard_modifiers;
- xkb_keysym_t pressed_keysyms_translated[SWAY_KEYBOARD_PRESSED_KEYSYMS_CAP];
- uint32_t modifiers_translated;
-
- xkb_keysym_t pressed_keysyms_raw[SWAY_KEYBOARD_PRESSED_KEYSYMS_CAP];
- uint32_t modifiers_raw;
+ struct sway_shortcut_state state_keysyms_translated;
+ struct sway_shortcut_state state_keysyms_raw;
+ struct sway_shortcut_state state_keycodes;
+ struct sway_binding *held_binding;
+ uint32_t last_modifiers;
};
struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat,