aboutsummaryrefslogtreecommitdiff
path: root/rootston/pointer.c
diff options
context:
space:
mode:
Diffstat (limited to 'rootston/pointer.c')
-rw-r--r--rootston/pointer.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/rootston/pointer.c b/rootston/pointer.c
index 1693893e..299ecdfc 100644
--- a/rootston/pointer.c
+++ b/rootston/pointer.c
@@ -6,6 +6,7 @@
void pointer_add(struct wlr_input_device *device, struct roots_input *input) {
struct roots_pointer *pointer = calloc(sizeof(struct roots_pointer), 1);
+ device->data = pointer;
pointer->device = device;
pointer->input = input;
wl_list_insert(&input->pointers, &pointer->link);
@@ -13,3 +14,10 @@ void pointer_add(struct wlr_input_device *device, struct roots_input *input) {
cursor_load_config(input->server->config, input->cursor,
input, input->server->desktop);
}
+
+void pointer_remove(struct wlr_input_device *device, struct roots_input *input) {
+ struct roots_pointer *pointer = device->data;
+ wlr_cursor_detach_input_device(input->cursor, device);
+ wl_list_remove(&pointer->link);
+ free(pointer);
+}