aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/keyboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rootston/keyboard.h')
-rw-r--r--include/rootston/keyboard.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/include/rootston/keyboard.h b/include/rootston/keyboard.h
index f4acc0aa..cb639ba1 100644
--- a/include/rootston/keyboard.h
+++ b/include/rootston/keyboard.h
@@ -8,21 +8,28 @@
struct roots_keyboard {
struct roots_input *input;
+ struct roots_seat *seat;
struct wlr_input_device *device;
- struct wl_listener key;
- struct wl_listener modifiers;
+ struct wl_list seat_link;
+ // XXX temporary
struct wl_list link;
+ struct wl_listener keyboard_key;
+ struct wl_listener keyboard_modifiers;
+
xkb_keysym_t pressed_keysyms[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
};
struct roots_keyboard *roots_keyboard_create(struct wlr_input_device *device,
struct roots_input *input);
-void roots_keyboard_destroy(struct wlr_input_device *device, struct roots_input *input);
+
+void roots_keyboard_destroy(struct wlr_input_device *device,
+ struct roots_input *input);
void roots_keyboard_handle_key(struct roots_keyboard *keyboard,
struct wlr_event_keyboard_key *event);
-void roots_keyboard_handle_modifiers(struct roots_keyboard *r_keyboard);
+void roots_keyboard_handle_modifiers(struct roots_keyboard *r_keyboard,
+ struct wlr_event_keyboard_modifiers *event);
#endif