| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | #include <assert.h>
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | #include <stdint.h>
 | 
					
						
							| 
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2017-04-25 21:26:29 -04:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | #include <time.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-16 23:55:51 +01:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-11 18:14:48 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-17 16:04:36 +03:00
										 |  |  | #include <wayland-client-protocol.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-11 18:14:48 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 10:27:45 -04:00
										 |  |  | #include <wlr/interfaces/wlr_keyboard.h>
 | 
					
						
							| 
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 |  |  | #include <wlr/interfaces/wlr_output.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | #include <wlr/interfaces/wlr_touch.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-09 14:08:20 -05:00
										 |  |  | #include <wlr/interfaces/wlr_tablet_tool.h>
 | 
					
						
							|  |  |  | #include <wlr/interfaces/wlr_tablet_pad.h>
 | 
					
						
							| 
									
										
										
										
											2022-03-08 15:15:32 -05:00
										 |  |  | #include <wlr/types/wlr_input_device.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-21 12:10:07 -04:00
										 |  |  | #include <wlr/util/log.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-11 18:14:48 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | #include "backend/wayland.h"
 | 
					
						
							| 
									
										
										
										
											2020-06-05 17:44:30 -04:00
										 |  |  | #include "util/time.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | static void keyboard_handle_keymap(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t format, int32_t fd, uint32_t size) { | 
					
						
							| 
									
										
										
										
											2020-03-16 23:55:51 +01:00
										 |  |  | 	close(fd); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_enter(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface, struct wl_array *keys) { | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 	struct wlr_keyboard *keyboard = data; | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-09 15:27:17 +03:00
										 |  |  | 	int64_t time_msec = get_current_time_msec(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 	uint32_t *keycode_ptr; | 
					
						
							|  |  |  | 	wl_array_for_each(keycode_ptr, keys) { | 
					
						
							| 
									
										
										
										
											2022-03-09 15:05:12 -05:00
										 |  |  | 		struct wlr_keyboard_key_event event = { | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 			.keycode = *keycode_ptr, | 
					
						
							| 
									
										
										
										
											2020-10-21 17:21:23 +02:00
										 |  |  | 			.state = WL_KEYBOARD_KEY_STATE_PRESSED, | 
					
						
							| 
									
										
										
										
											2024-08-09 15:27:17 +03:00
										 |  |  | 			.time_msec = time_msec, | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 			.update_state = false, | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 		wlr_keyboard_notify_key(keyboard, &event); | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_leave(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface) { | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 	struct wlr_keyboard *keyboard = data; | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-09 15:27:17 +03:00
										 |  |  | 	int64_t time_msec = get_current_time_msec(); | 
					
						
							|  |  |  | 	while (keyboard->num_keycodes > 0) { | 
					
						
							| 
									
										
										
										
											2022-03-09 15:05:12 -05:00
										 |  |  | 		struct wlr_keyboard_key_event event = { | 
					
						
							| 
									
										
										
										
											2024-08-09 15:27:17 +03:00
										 |  |  | 			.keycode = keyboard->keycodes[keyboard->num_keycodes - 1], | 
					
						
							| 
									
										
										
										
											2020-10-21 17:21:23 +02:00
										 |  |  | 			.state = WL_KEYBOARD_KEY_STATE_RELEASED, | 
					
						
							| 
									
										
										
										
											2024-08-09 15:27:17 +03:00
										 |  |  | 			.time_msec = time_msec, | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 			.update_state = false, | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 		wlr_keyboard_notify_key(keyboard, &event); | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_key(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, uint32_t key, uint32_t state) { | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 	struct wlr_keyboard *keyboard = data; | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 15:05:12 -05:00
										 |  |  | 	struct wlr_keyboard_key_event wlr_event = { | 
					
						
							| 
									
										
										
										
											2018-02-21 17:58:29 +01:00
										 |  |  | 		.keycode = key, | 
					
						
							|  |  |  | 		.state = state, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.update_state = false, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 	wlr_keyboard_notify_key(keyboard, &wlr_event); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_modifiers(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t mods_depressed, uint32_t mods_latched, | 
					
						
							|  |  |  | 		uint32_t mods_locked, uint32_t group) { | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 	struct wlr_keyboard *keyboard = data; | 
					
						
							|  |  |  | 	wlr_keyboard_notify_modifiers(keyboard, mods_depressed, mods_latched, | 
					
						
							| 
									
										
										
										
											2017-10-06 12:03:34 +03:00
										 |  |  | 		mods_locked, group); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 22:10:34 +02:00
										 |  |  | static void keyboard_handle_repeat_info(void *data, | 
					
						
							|  |  |  | 		struct wl_keyboard *wl_keyboard, int32_t rate, int32_t delay) { | 
					
						
							|  |  |  | 	// This space is intentionally left blank
 | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 08:57:18 -05:00
										 |  |  | static const struct wl_keyboard_listener keyboard_listener = { | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | 	.keymap = keyboard_handle_keymap, | 
					
						
							|  |  |  | 	.enter = keyboard_handle_enter, | 
					
						
							|  |  |  | 	.leave = keyboard_handle_leave, | 
					
						
							|  |  |  | 	.key = keyboard_handle_key, | 
					
						
							|  |  |  | 	.modifiers = keyboard_handle_modifiers, | 
					
						
							|  |  |  | 	.repeat_info = keyboard_handle_repeat_info | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | static const struct wlr_keyboard_impl keyboard_impl = { | 
					
						
							|  |  |  | 	.name = "wl-keyboard", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void init_seat_keyboard(struct wlr_wl_seat *seat) { | 
					
						
							|  |  |  | 	assert(seat->wl_keyboard); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	char name[128] = {0}; | 
					
						
							|  |  |  | 	snprintf(name, sizeof(name), "wayland-keyboard-%s", seat->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_keyboard_init(&seat->wlr_keyboard, &keyboard_impl, name); | 
					
						
							|  |  |  | 	wl_keyboard_add_listener(seat->wl_keyboard, &keyboard_listener, | 
					
						
							|  |  |  | 		&seat->wlr_keyboard); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-18 07:16:16 -04:00
										 |  |  | 	wl_signal_emit_mutable(&seat->backend->backend.events.new_input, | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 		&seat->wlr_keyboard.base); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | static void touch_coordinates_to_absolute(struct wlr_wl_seat *seat, | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		wl_fixed_t x, wl_fixed_t y, double *sx, double *sy) { | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * TODO: multi-output touch support | 
					
						
							|  |  |  | 	 * Although the wayland backend supports multi-output pointers, the support | 
					
						
							|  |  |  | 	 * for multi-output touch has been left on the side for simplicity reasons. | 
					
						
							|  |  |  | 	 * If this is a feature you want/need, please open an issue on the wlroots | 
					
						
							|  |  |  | 	 * tracker here https://gitlab.freedesktop.org/wlroots/wlroots/-/issues
 | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 	struct wlr_wl_output *output, *tmp; | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	wl_list_for_each_safe(output, tmp, &seat->backend->outputs, link) { | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		*sx = wl_fixed_to_double(x) / output->wlr_output.width; | 
					
						
							|  |  |  | 		*sy = wl_fixed_to_double(y) / output->wlr_output.height; | 
					
						
							|  |  |  | 		return; // Choose the first output in the list
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	*sx = *sy = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_down(void *data, struct wl_touch *wl_touch, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, struct wl_surface *surface, | 
					
						
							|  |  |  | 		int32_t id, wl_fixed_t x, wl_fixed_t y) { | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2022-03-09 16:01:14 -05:00
										 |  |  | 	struct wlr_touch *touch = &seat->wlr_touch; | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 15:58:47 +00:00
										 |  |  | 	struct wlr_wl_touch_points *points = &seat->touch_points; | 
					
						
							|  |  |  | 	assert(points->len != sizeof(points->ids) / sizeof(points->ids[0])); | 
					
						
							|  |  |  | 	points->ids[points->len++] = id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 16:01:14 -05:00
										 |  |  | 	struct wlr_touch_down_event event = { | 
					
						
							|  |  |  | 		.touch = touch, | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.touch_id = id, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	touch_coordinates_to_absolute(seat, x, y, &event.x, &event.y); | 
					
						
							| 
									
										
										
										
											2022-08-18 07:16:16 -04:00
										 |  |  | 	wl_signal_emit_mutable(&touch->events.down, &event); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 15:58:47 +00:00
										 |  |  | static bool remove_touch_point(struct wlr_wl_touch_points *points, int32_t id) { | 
					
						
							|  |  |  | 	size_t i = 0; | 
					
						
							|  |  |  | 	for (; i < points->len; i++) { | 
					
						
							|  |  |  | 		if (points->ids[i] == id) { | 
					
						
							|  |  |  | 			size_t remaining = points->len - i - 1; | 
					
						
							|  |  |  | 			memmove(&points->ids[i], &points->ids[i + 1], remaining * sizeof(id)); | 
					
						
							|  |  |  | 			points->len--; | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | static void touch_handle_up(void *data, struct wl_touch *wl_touch, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, int32_t id) { | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2022-03-09 16:01:14 -05:00
										 |  |  | 	struct wlr_touch *touch = &seat->wlr_touch; | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 15:58:47 +00:00
										 |  |  | 	remove_touch_point(&seat->touch_points, id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 16:01:14 -05:00
										 |  |  | 	struct wlr_touch_up_event event = { | 
					
						
							|  |  |  | 		.touch = touch, | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.touch_id = id, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2022-08-18 07:16:16 -04:00
										 |  |  | 	wl_signal_emit_mutable(&touch->events.up, &event); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_motion(void *data, struct wl_touch *wl_touch, | 
					
						
							|  |  |  | 		uint32_t time, int32_t id, wl_fixed_t x, wl_fixed_t y) { | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2022-03-09 16:01:14 -05:00
										 |  |  | 	struct wlr_touch *touch = &seat->wlr_touch; | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-09 16:01:14 -05:00
										 |  |  | 	struct wlr_touch_motion_event event = { | 
					
						
							|  |  |  | 		.touch = touch, | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.touch_id = id, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2022-03-09 16:01:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	touch_coordinates_to_absolute(seat, x, y, &event.x, &event.y); | 
					
						
							| 
									
										
										
										
											2022-08-18 07:16:16 -04:00
										 |  |  | 	wl_signal_emit_mutable(&touch->events.motion, &event); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_frame(void *data, struct wl_touch *wl_touch) { | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2022-08-18 07:16:16 -04:00
										 |  |  | 	wl_signal_emit_mutable(&seat->wlr_touch.events.frame, NULL); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_cancel(void *data, struct wl_touch *wl_touch) { | 
					
						
							| 
									
										
										
										
											2023-03-17 15:58:47 +00:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							|  |  |  | 	struct wlr_touch *touch = &seat->wlr_touch; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// wayland's cancel event applies to all active touch points
 | 
					
						
							|  |  |  | 	for (size_t i = 0; i < seat->touch_points.len; i++) { | 
					
						
							|  |  |  | 		struct wlr_touch_cancel_event event = { | 
					
						
							|  |  |  | 			.touch = touch, | 
					
						
							|  |  |  | 			.time_msec = 0, | 
					
						
							|  |  |  | 			.touch_id = seat->touch_points.ids[i], | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		wl_signal_emit_mutable(&touch->events.cancel, &event); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	seat->touch_points.len = 0; | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_shape(void *data, struct wl_touch *wl_touch, | 
					
						
							|  |  |  | 		int32_t id, wl_fixed_t major, wl_fixed_t minor) { | 
					
						
							|  |  |  | 	// no-op
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_orientation(void *data, struct wl_touch *wl_touch, | 
					
						
							|  |  |  | 		int32_t id, wl_fixed_t orientation) { | 
					
						
							|  |  |  | 	// no-op
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 08:57:18 -05:00
										 |  |  | static const struct wl_touch_listener touch_listener = { | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 	.down = touch_handle_down, | 
					
						
							|  |  |  | 	.up = touch_handle_up, | 
					
						
							|  |  |  | 	.motion = touch_handle_motion, | 
					
						
							|  |  |  | 	.frame = touch_handle_frame, | 
					
						
							|  |  |  | 	.cancel = touch_handle_cancel, | 
					
						
							|  |  |  | 	.shape = touch_handle_shape, | 
					
						
							|  |  |  | 	.orientation = touch_handle_orientation, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | static const struct wlr_touch_impl touch_impl = { | 
					
						
							|  |  |  | 	.name = "wl-touch", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-11 09:09:37 +02:00
										 |  |  | void init_seat_touch(struct wlr_wl_seat *seat) { | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	assert(seat->wl_touch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	char name[128] = {0}; | 
					
						
							|  |  |  | 	snprintf(name, sizeof(name), "wayland-touch-%s", seat->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_touch_init(&seat->wlr_touch, &touch_impl, name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-08 16:45:03 -05:00
										 |  |  | 	struct wlr_wl_output *output; | 
					
						
							|  |  |  | 	wl_list_for_each(output, &seat->backend->outputs, link) { | 
					
						
							|  |  |  | 		/* Multi-output touch not supproted */ | 
					
						
							|  |  |  | 		seat->wlr_touch.output_name = strdup(output->wlr_output.name); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	wl_touch_add_listener(seat->wl_touch, &touch_listener, seat); | 
					
						
							| 
									
										
										
										
											2022-08-18 07:16:16 -04:00
										 |  |  | 	wl_signal_emit_mutable(&seat->backend->backend.events.new_input, | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 		&seat->wlr_touch.base); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-08 15:20:56 -05:00
										 |  |  | static const struct wl_seat_listener seat_listener; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-02 17:35:53 +01:00
										 |  |  | bool create_wl_seat(struct wl_seat *wl_seat, struct wlr_wl_backend *wl, | 
					
						
							|  |  |  | 		uint32_t global_name) { | 
					
						
							| 
									
										
										
										
											2023-10-03 01:51:07 -04:00
										 |  |  | 	struct wlr_wl_seat *seat = calloc(1, sizeof(*seat)); | 
					
						
							| 
									
										
										
										
											2020-10-18 19:12:01 +02:00
										 |  |  | 	if (!seat) { | 
					
						
							|  |  |  | 		wlr_log_errno(WLR_ERROR, "Allocation failed"); | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	seat->wl_seat = wl_seat; | 
					
						
							| 
									
										
										
										
											2020-10-03 20:48:11 +02:00
										 |  |  | 	seat->backend = wl; | 
					
						
							| 
									
										
										
										
											2023-02-02 17:35:53 +01:00
										 |  |  | 	seat->global_name = global_name; | 
					
						
							| 
									
										
										
										
											2020-10-03 23:06:10 +02:00
										 |  |  | 	wl_list_insert(&wl->seats, &seat->link); | 
					
						
							| 
									
										
										
										
											2020-10-03 20:48:11 +02:00
										 |  |  | 	wl_seat_add_listener(wl_seat, &seat_listener, seat); | 
					
						
							| 
									
										
										
										
											2020-10-18 19:12:01 +02:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-02 17:33:12 +01:00
										 |  |  | void destroy_wl_seat(struct wlr_wl_seat *seat) { | 
					
						
							|  |  |  | 	if (seat->wl_touch) { | 
					
						
							|  |  |  | 		wl_touch_release(seat->wl_touch); | 
					
						
							|  |  |  | 		wlr_touch_finish(&seat->wlr_touch); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (seat->wl_pointer) { | 
					
						
							|  |  |  | 		finish_seat_pointer(seat); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (seat->wl_keyboard) { | 
					
						
							|  |  |  | 		wl_keyboard_release(seat->wl_keyboard); | 
					
						
							| 
									
										
										
										
											2022-04-16 09:24:10 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-02 17:33:12 +01:00
										 |  |  | 		if (seat->backend->started) { | 
					
						
							|  |  |  | 			wlr_keyboard_finish(&seat->wlr_keyboard); | 
					
						
							| 
									
										
										
										
											2022-03-08 09:33:58 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-02-02 17:33:12 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (seat->zwp_tablet_seat_v2) { | 
					
						
							|  |  |  | 		finish_seat_tablet(seat); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-02 17:33:12 +01:00
										 |  |  | 	free(seat->name); | 
					
						
							|  |  |  | 	assert(seat->wl_seat); | 
					
						
							|  |  |  | 	wl_seat_destroy(seat->wl_seat); | 
					
						
							| 
									
										
										
										
											2020-10-03 23:06:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-02 17:33:12 +01:00
										 |  |  | 	wl_list_remove(&seat->link); | 
					
						
							|  |  |  | 	free(seat); | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-19 20:20:32 +01:00
										 |  |  | bool wlr_input_device_is_wl(struct wlr_input_device *dev) { | 
					
						
							| 
									
										
										
										
											2022-02-09 14:08:20 -05:00
										 |  |  | 	switch (dev->type) { | 
					
						
							|  |  |  | 	case WLR_INPUT_DEVICE_KEYBOARD: | 
					
						
							| 
									
										
										
										
											2022-06-20 16:57:29 +02:00
										 |  |  | 		return wlr_keyboard_from_input_device(dev)->impl == &keyboard_impl; | 
					
						
							| 
									
										
										
										
											2022-02-09 14:08:20 -05:00
										 |  |  | 	case WLR_INPUT_DEVICE_POINTER: | 
					
						
							| 
									
										
										
										
											2022-06-20 16:57:29 +02:00
										 |  |  | 		return wlr_pointer_from_input_device(dev)->impl == &wl_pointer_impl; | 
					
						
							| 
									
										
										
										
											2022-02-09 14:08:20 -05:00
										 |  |  | 	case WLR_INPUT_DEVICE_TOUCH: | 
					
						
							| 
									
										
										
										
											2022-06-20 16:57:29 +02:00
										 |  |  | 		return wlr_touch_from_input_device(dev)->impl == &touch_impl; | 
					
						
							| 
									
										
										
										
											2024-02-29 13:31:00 +01:00
										 |  |  | 	case WLR_INPUT_DEVICE_TABLET: | 
					
						
							| 
									
										
										
										
											2022-06-20 16:57:29 +02:00
										 |  |  | 		return wlr_tablet_from_input_device(dev)-> impl == &wl_tablet_impl; | 
					
						
							| 
									
										
										
										
											2022-02-09 14:08:20 -05:00
										 |  |  | 	case WLR_INPUT_DEVICE_TABLET_PAD: | 
					
						
							| 
									
										
										
										
											2022-06-20 16:57:29 +02:00
										 |  |  | 		return wlr_tablet_pad_from_input_device(dev)->impl == &wl_tablet_pad_impl; | 
					
						
							| 
									
										
										
										
											2022-02-09 14:08:20 -05:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-19 20:20:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat, | 
					
						
							|  |  |  | 		enum wl_seat_capability caps) { | 
					
						
							| 
									
										
										
										
											2020-10-03 20:48:11 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							|  |  |  | 	struct wlr_wl_backend *backend = seat->backend; | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-04 21:59:59 -05:00
										 |  |  | 	if ((caps & WL_SEAT_CAPABILITY_POINTER) && seat->wl_pointer == NULL) { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "seat '%s' offering pointer", seat->name); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-04 21:59:59 -05:00
										 |  |  | 		seat->wl_pointer = wl_seat_get_pointer(wl_seat); | 
					
						
							|  |  |  | 		init_seat_pointer(seat); | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-03-04 21:59:59 -05:00
										 |  |  | 	if (!(caps & WL_SEAT_CAPABILITY_POINTER) && seat->wl_pointer != NULL) { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "seat '%s' dropping pointer", seat->name); | 
					
						
							|  |  |  | 		finish_seat_pointer(seat); | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 	if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && seat->wl_keyboard == NULL) { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "seat '%s' offering keyboard", seat->name); | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 		struct wl_keyboard *wl_keyboard = wl_seat_get_keyboard(wl_seat); | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 		seat->wl_keyboard = wl_keyboard; | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (backend->started) { | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 			init_seat_keyboard(seat); | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 	if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && seat->wl_keyboard != NULL) { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "seat '%s' dropping keyboard", seat->name); | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 		wl_keyboard_release(seat->wl_keyboard); | 
					
						
							|  |  |  | 		wlr_keyboard_finish(&seat->wlr_keyboard); | 
					
						
							| 
									
										
										
										
											2022-04-26 09:45:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-03 13:23:08 -05:00
										 |  |  | 		seat->wl_keyboard = NULL; | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	if ((caps & WL_SEAT_CAPABILITY_TOUCH) && seat->wl_touch == NULL) { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "seat '%s' offering touch", seat->name); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 		seat->wl_touch = wl_seat_get_touch(wl_seat); | 
					
						
							| 
									
										
										
										
											2022-08-11 09:09:37 +02:00
										 |  |  | 		if (backend->started) { | 
					
						
							|  |  |  | 			init_seat_touch(seat); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 	if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && seat->wl_touch != NULL) { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, "seat '%s' dropping touch", seat->name); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 13:33:20 -05:00
										 |  |  | 		wl_touch_release(seat->wl_touch); | 
					
						
							|  |  |  | 		wlr_touch_finish(&seat->wlr_touch); | 
					
						
							|  |  |  | 		seat->wl_touch = NULL; | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 22:10:34 +02:00
										 |  |  | static void seat_handle_name(void *data, struct wl_seat *wl_seat, | 
					
						
							|  |  |  | 		const char *name) { | 
					
						
							| 
									
										
										
										
											2020-10-03 20:48:11 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	free(seat->name); | 
					
						
							|  |  |  | 	seat->name = strdup(name); | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-08 15:20:56 -05:00
										 |  |  | static const struct wl_seat_listener seat_listener = { | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | 	.capabilities = seat_handle_capabilities, | 
					
						
							|  |  |  | 	.name = seat_handle_name, | 
					
						
							|  |  |  | }; |