aboutsummaryrefslogtreecommitdiff
path: root/rootston/touch.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-11-04 13:12:35 -0400
committerTony Crisci <tony@dubstepdish.com>2017-11-04 13:12:35 -0400
commit704f0f158a669689b78311cde35a736057f983b4 (patch)
tree9218ed70e84e542202df15fa93a805953130d259 /rootston/touch.c
parent5354fe8729b8c52f8f3ff63f23f932c49bf8c880 (diff)
rootston: move device init to seat
Diffstat (limited to 'rootston/touch.c')
-rw-r--r--rootston/touch.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/rootston/touch.c b/rootston/touch.c
deleted file mode 100644
index 069853ab..00000000
--- a/rootston/touch.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include <stdlib.h>
-#include <wayland-server.h>
-#include <wlr/types/wlr_input_device.h>
-#include <wlr/types/wlr_pointer.h>
-#include "rootston/input.h"
-#include "rootston/touch.h"
-
-// TODO: we'll likely want touch events to both control the cursor *and* be
-// submitted directly to the seat.
-
-void touch_add(struct wlr_input_device *device, struct roots_input *input) {
- struct roots_touch *touch = calloc(sizeof(struct roots_touch), 1);
- device->data = touch;
- touch->device = device;
- touch->input = input;
- wl_list_insert(&input->touch, &touch->link);
- wlr_cursor_attach_input_device(input->cursor, device);
- cursor_load_config(input->server->config, input->cursor,
- input, input->server->desktop);
-}
-
-void touch_remove(struct wlr_input_device *device, struct roots_input *input) {
- struct roots_touch *touch = device->data;
- wlr_cursor_detach_input_device(input->cursor, device);
- wl_list_remove(&touch->link);
- free(touch);
-}