aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/rootston/input.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/rootston/input.h b/include/rootston/input.h
index ecd53f3b..a9cc2014 100644
--- a/include/rootston/input.h
+++ b/include/rootston/input.h
@@ -10,11 +10,22 @@
#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;
+};
+
struct roots_keyboard {
struct roots_input *input;
struct wlr_input_device *device;
struct wl_listener key;
struct wl_list link;
+
+ struct roots_keyboard_key pressed_keys[ROOTS_KEYBOARD_PRESSED_KEYS_CAP];
};
struct roots_pointer {