diff options
author | emersion <contact@emersion.fr> | 2017-11-17 23:29:47 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-11-17 23:29:47 +0100 |
commit | 27937add762bb2594828ac678859bfdde4275f1e (patch) | |
tree | aa9813fd534d019a5e967ffad31d153d30ae7fa1 /rootston/touch.c | |
parent | 3e3209cba22c9a5a562acc5e543946408a36e2f4 (diff) | |
parent | bf5640db128b930b38ebca2b1d8a79e028ad9f39 (diff) |
Merge branch 'master' into laggy-move-resize
Diffstat (limited to 'rootston/touch.c')
-rw-r--r-- | rootston/touch.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/rootston/touch.c b/rootston/touch.c deleted file mode 100644 index f6d9b11a..00000000 --- a/rootston/touch.c +++ /dev/null @@ -1,26 +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" - -// 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); -} |