aboutsummaryrefslogtreecommitdiff
path: root/rootston/keyboard.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-09-28 19:05:59 -0400
committerGitHub <noreply@github.com>2017-09-28 19:05:59 -0400
commite4ad534ab41b01a08b6b4f19aa47805f6040f7b4 (patch)
treee29b0788e128fb8fb228fa5dc8af24a0f47cd887 /rootston/keyboard.c
parent262c3b1638d42012d6be9ce9f5a3f4c2f7cdaae1 (diff)
parent10240af6ea2e3cef474c2e79e9ca220f028cce2d (diff)
Merge pull request #167 from emersion/xwayland
[WIP] Improve xwayland
Diffstat (limited to 'rootston/keyboard.c')
-rw-r--r--rootston/keyboard.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/rootston/keyboard.c b/rootston/keyboard.c
index 57e0d14e..c4c98c91 100644
--- a/rootston/keyboard.c
+++ b/rootston/keyboard.c
@@ -42,6 +42,7 @@ static void keyboard_key_notify(struct wl_listener *listener, void *data) {
void keyboard_add(struct wlr_input_device *device, struct roots_input *input) {
struct roots_keyboard *keyboard = calloc(sizeof(struct roots_keyboard), 1);
+ device->data = keyboard;
keyboard->device = device;
keyboard->input = input;
wl_list_init(&keyboard->key.link);
@@ -64,3 +65,11 @@ void keyboard_add(struct wlr_input_device *device, struct roots_input *input) {
xkb_context_unref(context);
wlr_seat_attach_keyboard(input->wl_seat, device);
}
+
+void keyboard_remove(struct wlr_input_device *device, struct roots_input *input) {
+ struct roots_keyboard *keyboard = device->data;
+ wlr_seat_detach_keyboard(input->wl_seat, device->keyboard);
+ wl_list_remove(&keyboard->key.link);
+ wl_list_remove(&keyboard->link);
+ free(keyboard);
+}