| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <assert.h>
 | 
					
						
							|  |  |  | #include <libinput.h>
 | 
					
						
							| 
									
										
										
										
											2017-07-11 19:18:34 +12:00
										 |  |  | #include <wlr/backend/session.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-21 10:27:45 -04:00
										 |  |  | #include <wlr/interfaces/wlr_input_device.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-21 12:10:07 -04:00
										 |  |  | #include <wlr/util/log.h>
 | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | #include <wayland-util.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-10 11:58:25 -04:00
										 |  |  | #include "backend/libinput.h"
 | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-10 11:58:25 -04:00
										 |  |  | struct wlr_input_device *get_appropriate_device( | 
					
						
							| 
									
										
										
										
											2017-06-09 17:52:11 -04:00
										 |  |  | 		enum wlr_input_device_type desired_type, | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		struct libinput_device *libinput_dev) { | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	struct wl_list *wlr_devices = libinput_device_get_user_data(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (!wlr_devices) { | 
					
						
							| 
									
										
										
										
											2017-06-09 17:52:11 -04:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	struct wlr_input_device *dev; | 
					
						
							|  |  |  | 	wl_list_for_each(dev, wlr_devices, link) { | 
					
						
							| 
									
										
										
										
											2017-06-09 17:52:11 -04:00
										 |  |  | 		if (dev->type == desired_type) { | 
					
						
							|  |  |  | 			return dev; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | static void wlr_libinput_device_destroy(struct wlr_input_device *_dev) { | 
					
						
							|  |  |  | 	struct wlr_libinput_input_device *dev = (struct wlr_libinput_input_device *)_dev; | 
					
						
							|  |  |  | 	libinput_device_unref(dev->handle); | 
					
						
							| 
									
										
										
										
											2017-11-01 19:35:39 +01:00
										 |  |  | 	wl_list_remove(&dev->wlr_input_device.link); | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	free(dev); | 
					
						
							| 
									
										
										
										
											2017-06-10 12:21:54 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wlr_input_device_impl input_device_impl = { | 
					
						
							|  |  |  | 	.destroy = wlr_libinput_device_destroy | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-14 11:40:03 -04:00
										 |  |  | static struct wlr_input_device *allocate_device( | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		struct wlr_libinput_backend *backend, struct libinput_device *libinput_dev, | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 		struct wl_list *wlr_devices, enum wlr_input_device_type type) { | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	int vendor = libinput_device_get_id_vendor(libinput_dev); | 
					
						
							|  |  |  | 	int product = libinput_device_get_id_product(libinput_dev); | 
					
						
							|  |  |  | 	const char *name = libinput_device_get_name(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 	struct wlr_libinput_input_device *wlr_libinput_dev; | 
					
						
							|  |  |  | 	if (!(wlr_libinput_dev = calloc(1, sizeof(struct wlr_libinput_input_device)))) { | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	struct wlr_input_device *wlr_dev = &wlr_libinput_dev->wlr_input_device; | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	wl_list_insert(wlr_devices, &wlr_dev->link); | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	wlr_libinput_dev->handle = libinput_dev; | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	libinput_device_ref(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	wlr_input_device_init(wlr_dev, type, &input_device_impl, | 
					
						
							|  |  |  | 			name, vendor, product); | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	return wlr_dev; | 
					
						
							| 
									
										
										
										
											2017-06-13 10:27:15 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 13:51:47 -04:00
										 |  |  | static void handle_device_added(struct wlr_libinput_backend *backend, | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		struct libinput_device *libinput_dev) { | 
					
						
							|  |  |  | 	assert(backend && libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Note: the wlr API exposes only devices with a single capability, because | 
					
						
							|  |  |  | 	 * that meshes better with how Wayland does things and is a bit simpler. | 
					
						
							|  |  |  | 	 * However, libinput devices often have multiple capabilities - in such | 
					
						
							|  |  |  | 	 * cases we have to create several devices. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	int vendor = libinput_device_get_id_vendor(libinput_dev); | 
					
						
							|  |  |  | 	int product = libinput_device_get_id_product(libinput_dev); | 
					
						
							|  |  |  | 	const char *name = libinput_device_get_name(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	struct wl_list *wlr_devices = calloc(1, sizeof(struct wl_list)); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 	if (!wlr_devices) { | 
					
						
							| 
									
										
										
										
											2017-11-16 10:30:54 +01:00
										 |  |  | 		wlr_log(L_ERROR, "Allocation failed"); | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-11-16 10:30:54 +01:00
										 |  |  | 	wl_list_init(wlr_devices); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	wlr_log(L_DEBUG, "Added %s [%d:%d]", name, vendor, product); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_KEYBOARD)) { | 
					
						
							|  |  |  | 		struct wlr_input_device *wlr_dev = allocate_device(backend, | 
					
						
							|  |  |  | 				libinput_dev, wlr_devices, WLR_INPUT_DEVICE_KEYBOARD); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev) { | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wlr_dev->keyboard = wlr_libinput_keyboard_create(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev->keyboard) { | 
					
						
							|  |  |  | 			free(wlr_dev); | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wl_signal_emit(&backend->backend.events.input_add, wlr_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_POINTER)) { | 
					
						
							|  |  |  | 		struct wlr_input_device *wlr_dev = allocate_device(backend, | 
					
						
							|  |  |  | 				libinput_dev, wlr_devices, WLR_INPUT_DEVICE_POINTER); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev) { | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wlr_dev->pointer = wlr_libinput_pointer_create(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev->pointer) { | 
					
						
							|  |  |  | 			free(wlr_dev); | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wl_signal_emit(&backend->backend.events.input_add, wlr_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_TOUCH)) { | 
					
						
							|  |  |  | 		struct wlr_input_device *wlr_dev = allocate_device(backend, | 
					
						
							|  |  |  | 				libinput_dev, wlr_devices, WLR_INPUT_DEVICE_TOUCH); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev) { | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wlr_dev->touch = wlr_libinput_touch_create(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev->touch) { | 
					
						
							|  |  |  | 			free(wlr_dev); | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wl_signal_emit(&backend->backend.events.input_add, wlr_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_TABLET_TOOL)) { | 
					
						
							|  |  |  | 		struct wlr_input_device *wlr_dev = allocate_device(backend, | 
					
						
							|  |  |  | 				libinput_dev, wlr_devices, WLR_INPUT_DEVICE_TABLET_TOOL); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev) { | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wlr_dev->tablet_tool = wlr_libinput_tablet_tool_create(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev->tablet_tool) { | 
					
						
							|  |  |  | 			free(wlr_dev); | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wl_signal_emit(&backend->backend.events.input_add, wlr_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_TABLET_PAD)) { | 
					
						
							|  |  |  | 		struct wlr_input_device *wlr_dev = allocate_device(backend, | 
					
						
							|  |  |  | 				libinput_dev, wlr_devices, WLR_INPUT_DEVICE_TABLET_PAD); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev) { | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wlr_dev->tablet_pad = wlr_libinput_tablet_pad_create(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 		if (!wlr_dev->tablet_pad) { | 
					
						
							|  |  |  | 			free(wlr_dev); | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		wl_signal_emit(&backend->backend.events.input_add, wlr_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_GESTURE)) { | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 		// TODO
 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (libinput_device_has_capability(libinput_dev, LIBINPUT_DEVICE_CAP_SWITCH)) { | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 		// TODO
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	if (wl_list_length(wlr_devices) > 0) { | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		libinput_device_set_user_data(libinput_dev, wlr_devices); | 
					
						
							| 
									
										
										
										
											2017-10-22 10:56:40 -04:00
										 |  |  | 		wlr_list_add(backend->wlr_device_lists, wlr_devices); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 		free(wlr_devices); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-15 07:56:47 +02:00
										 |  |  | 	return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fail: | 
					
						
							|  |  |  | 	wlr_log(L_ERROR, "Could not allocate new device"); | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	struct wlr_input_device *dev, *tmp_dev; | 
					
						
							|  |  |  | 	wl_list_for_each_safe(dev, tmp_dev, wlr_devices, link) { | 
					
						
							|  |  |  | 		free(dev); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	free(wlr_devices); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 13:51:47 -04:00
										 |  |  | static void handle_device_removed(struct wlr_libinput_backend *backend, | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		struct libinput_device *libinput_dev) { | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	struct wl_list *wlr_devices = libinput_device_get_user_data(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	int vendor = libinput_device_get_id_vendor(libinput_dev); | 
					
						
							|  |  |  | 	int product = libinput_device_get_id_product(libinput_dev); | 
					
						
							|  |  |  | 	const char *name = libinput_device_get_name(libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-08-13 00:57:39 +02:00
										 |  |  | 	wlr_log(L_DEBUG, "Removing %s [%d:%d]", name, vendor, product); | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	if (!wlr_devices) { | 
					
						
							| 
									
										
										
										
											2017-08-12 15:13:29 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	struct wlr_input_device *dev, *tmp_dev; | 
					
						
							|  |  |  | 	wl_list_for_each_safe(dev, tmp_dev, wlr_devices, link) { | 
					
						
							|  |  |  | 		wl_signal_emit(&backend->backend.events.input_remove, dev); | 
					
						
							|  |  |  | 		wlr_input_device_destroy(dev); | 
					
						
							| 
									
										
										
										
											2017-08-11 22:46:50 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	for (size_t i = 0; i < backend->wlr_device_lists->length; i++) { | 
					
						
							|  |  |  | 		if (backend->wlr_device_lists->items[i] == wlr_devices) { | 
					
						
							| 
									
										
										
										
											2017-10-22 10:56:40 -04:00
										 |  |  | 			wlr_list_del(backend->wlr_device_lists, i); | 
					
						
							| 
									
										
										
										
											2017-08-11 22:46:50 +02:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-14 19:17:43 +03:00
										 |  |  | 	free(wlr_devices); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 13:51:47 -04:00
										 |  |  | void wlr_libinput_event(struct wlr_libinput_backend *backend, | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 		struct libinput_event *event) { | 
					
						
							| 
									
										
										
										
											2017-08-12 13:51:47 -04:00
										 |  |  | 	assert(backend && event); | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 	struct libinput_device *libinput_dev = libinput_event_get_device(event); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	enum libinput_event_type event_type = libinput_event_get_type(event); | 
					
						
							|  |  |  | 	switch (event_type) { | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_DEVICE_ADDED: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_device_added(backend, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_DEVICE_REMOVED: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_device_removed(backend, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:52:11 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_KEYBOARD_KEY: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_keyboard_key(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2017-06-13 10:27:15 -04:00
										 |  |  | 	case LIBINPUT_EVENT_POINTER_MOTION: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_pointer_motion(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-13 10:27:15 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_POINTER_MOTION_ABSOLUTE: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_pointer_motion_abs(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-13 10:27:15 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_POINTER_BUTTON: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_pointer_button(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-13 10:27:15 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_POINTER_AXIS: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_pointer_axis(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-13 10:27:15 -04:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2017-06-14 14:50:09 -04:00
										 |  |  | 	case LIBINPUT_EVENT_TOUCH_DOWN: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_touch_down(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-14 14:50:09 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TOUCH_UP: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_touch_up(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-14 14:50:09 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TOUCH_MOTION: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_touch_motion(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-14 14:50:09 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TOUCH_CANCEL: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_touch_cancel(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-14 14:50:09 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TOUCH_FRAME: | 
					
						
							|  |  |  | 		// no-op (at least for now)
 | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2017-06-15 14:32:28 -04:00
										 |  |  | 	case LIBINPUT_EVENT_TABLET_TOOL_AXIS: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_tablet_tool_axis(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-15 14:32:28 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TABLET_TOOL_PROXIMITY: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_tablet_tool_proximity(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-15 14:32:28 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TABLET_TOOL_TIP: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_tablet_tool_tip(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-15 14:32:28 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TABLET_TOOL_BUTTON: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_tablet_tool_button(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-15 14:32:28 -04:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2017-06-19 14:49:07 -04:00
										 |  |  | 	case LIBINPUT_EVENT_TABLET_PAD_BUTTON: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_tablet_pad_button(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-19 14:49:07 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TABLET_PAD_RING: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_tablet_pad_ring(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-19 14:49:07 -04:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case LIBINPUT_EVENT_TABLET_PAD_STRIP: | 
					
						
							| 
									
										
										
										
											2017-08-13 00:50:09 +02:00
										 |  |  | 		handle_tablet_pad_strip(event, libinput_dev); | 
					
						
							| 
									
										
										
										
											2017-06-19 14:49:07 -04:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2017-06-09 17:31:21 -04:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		wlr_log(L_DEBUG, "Unknown libinput event %d", event_type); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |