aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/input.h
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-10-02 15:24:01 +0200
committeremersion <contact@emersion.fr>2017-10-03 08:46:10 +0200
commitd32018f1ac5f3b309a01627b4338e42f668b1887 (patch)
tree9f6461f8c2ec35cc3260fe8496c493da33955b1e /include/rootston/input.h
parentab6c1f88e6314ae0d56d5dfffc121a824175e7fd (diff)
Use keysyms instead of keycodes
Diffstat (limited to 'include/rootston/input.h')
-rw-r--r--include/rootston/input.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/rootston/input.h b/include/rootston/input.h
index a9cc2014..6161eb7a 100644
--- a/include/rootston/input.h
+++ b/include/rootston/input.h
@@ -10,14 +10,7 @@
#include "rootston/view.h"
#include "rootston/server.h"
-#define ROOTS_KEYBOARD_PRESSED_KEYS_CAP 32
-
-struct roots_keyboard_key {
- uint32_t keycode;
-
- const xkb_keysym_t *syms;
- size_t syms_len;
-};
+#define ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP 32
struct roots_keyboard {
struct roots_input *input;
@@ -25,7 +18,7 @@ struct roots_keyboard {
struct wl_listener key;
struct wl_list link;
- struct roots_keyboard_key pressed_keys[ROOTS_KEYBOARD_PRESSED_KEYS_CAP];
+ xkb_keysym_t pressed_keysyms[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
};
struct roots_pointer {