| 
									
										
										
										
											2018-08-16 10:54:45 +01:00
										 |  |  | #define _POSIX_C_SOURCE 200809L
 | 
					
						
							| 
									
										
										
										
											2018-11-11 18:14:48 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | #include <wayland-client.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-11 18:14:48 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 10:27:45 -04:00
										 |  |  | #include <wlr/interfaces/wlr_input_device.h>
 | 
					
						
							|  |  |  | #include <wlr/interfaces/wlr_keyboard.h>
 | 
					
						
							| 
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 |  |  | #include <wlr/interfaces/wlr_output.h>
 | 
					
						
							|  |  |  | #include <wlr/interfaces/wlr_pointer.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | #include <wlr/interfaces/wlr_touch.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-21 12:10:07 -04:00
										 |  |  | #include <wlr/util/log.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-11 18:14:48 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | #include "pointer-gestures-unstable-v1-client-protocol.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-12 15:32:08 +01:00
										 |  |  | #include "relative-pointer-unstable-v1-client-protocol.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | #include "backend/wayland.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 |  |  | #include "util/signal.h"
 | 
					
						
							| 
									
										
										
										
											2020-06-05 17:44:30 -04:00
										 |  |  | #include "util/time.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | static struct wlr_wl_pointer *output_get_pointer( | 
					
						
							|  |  |  | 		struct wlr_wl_output *output, | 
					
						
							|  |  |  | 		const struct wl_pointer *wl_pointer) { | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 	struct wlr_wl_input_device *dev; | 
					
						
							|  |  |  | 	wl_list_for_each(dev, &output->backend->devices, link) { | 
					
						
							|  |  |  | 		if (dev->wlr_input_device.type != WLR_INPUT_DEVICE_POINTER) { | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 		struct wlr_wl_pointer *pointer = | 
					
						
							|  |  |  | 			pointer_get_wl(dev->wlr_input_device.pointer); | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 		if (pointer->output == output && pointer->wl_pointer == wl_pointer) { | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 			return pointer; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | static void pointer_handle_enter(void *data, struct wl_pointer *wl_pointer, | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		uint32_t serial, struct wl_surface *surface, wl_fixed_t sx, | 
					
						
							|  |  |  | 		wl_fixed_t sy) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	if (surface == NULL) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_wl_output *output = wl_surface_get_user_data(surface); | 
					
						
							| 
									
										
										
										
											2018-06-30 10:03:26 +09:00
										 |  |  | 	assert(output); | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = output_get_pointer(output, wl_pointer); | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	seat->active_pointer = pointer; | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	// Manage cursor icon/rendering on output
 | 
					
						
							| 
									
										
										
										
											2020-10-09 22:17:17 +02:00
										 |  |  | 	struct wlr_wl_pointer *current_pointer = output->cursor.pointer; | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 	if (current_pointer && current_pointer != pointer) { | 
					
						
							|  |  |  | 		wlr_log(WLR_INFO, "Ignoring seat %s pointer cursor in favor of seat %s", | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 			seat->name, current_pointer->input_device->seat->name); | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	output->enter_serial = serial; | 
					
						
							| 
									
										
										
										
											2020-10-09 22:17:17 +02:00
										 |  |  | 	output->cursor.pointer = pointer; | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	update_wl_output_cursor(output); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_leave(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	if (surface == NULL) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_wl_output *output = wl_surface_get_user_data(surface); | 
					
						
							| 
									
										
										
										
											2018-06-30 10:03:26 +09:00
										 |  |  | 	assert(output); | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (seat->active_pointer != NULL && | 
					
						
							|  |  |  | 			seat->active_pointer->output == output) { | 
					
						
							|  |  |  | 		seat->active_pointer = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-09 22:17:17 +02:00
										 |  |  | 	if (output->cursor.pointer == seat->active_pointer) { | 
					
						
							|  |  |  | 		output->enter_serial = 0; | 
					
						
							|  |  |  | 		output->cursor.pointer = NULL; | 
					
						
							| 
									
										
										
										
											2017-08-14 18:19:42 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_motion(void *data, struct wl_pointer *wl_pointer, | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		uint32_t time, wl_fixed_t sx, wl_fixed_t sy) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = seat->active_pointer; | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	if (pointer == NULL) { | 
					
						
							| 
									
										
										
										
											2017-06-22 18:04:13 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-31 18:00:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-29 15:06:28 +01:00
										 |  |  | 	struct wlr_output *wlr_output = &pointer->output->wlr_output; | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	struct wlr_event_pointer_motion_absolute event = { | 
					
						
							|  |  |  | 		.device = &pointer->input_device->wlr_input_device, | 
					
						
							| 
									
										
										
										
											2018-03-30 22:38:09 -04:00
										 |  |  | 		.time_msec = time, | 
					
						
							| 
									
										
										
										
											2018-04-30 16:08:35 +02:00
										 |  |  | 		.x = wl_fixed_to_double(sx) / wlr_output->width, | 
					
						
							|  |  |  | 		.y = wl_fixed_to_double(sy) / wlr_output->height, | 
					
						
							| 
									
										
										
										
											2018-03-30 22:38:09 -04:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	wlr_signal_emit_safe(&pointer->wlr_pointer.events.motion_absolute, &event); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_button(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, uint32_t button, uint32_t state) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = seat->active_pointer; | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	if (pointer == NULL) { | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_event_pointer_button event = { | 
					
						
							|  |  |  | 		.device = &pointer->input_device->wlr_input_device, | 
					
						
							|  |  |  | 		.button = button, | 
					
						
							|  |  |  | 		.state = state, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&pointer->wlr_pointer.events.button, &event); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_axis(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t time, uint32_t axis, wl_fixed_t value) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = seat->active_pointer; | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	if (pointer == NULL) { | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_event_pointer_axis event = { | 
					
						
							|  |  |  | 		.device = &pointer->input_device->wlr_input_device, | 
					
						
							|  |  |  | 		.delta = wl_fixed_to_double(value), | 
					
						
							| 
									
										
										
										
											2018-05-12 13:04:47 +01:00
										 |  |  | 		.delta_discrete = pointer->axis_discrete, | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		.orientation = axis, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.source = pointer->axis_source, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&pointer->wlr_pointer.events.axis, &event); | 
					
						
							| 
									
										
										
										
											2018-05-12 13:04:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	pointer->axis_discrete = 0; | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_frame(void *data, struct wl_pointer *wl_pointer) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = seat->active_pointer; | 
					
						
							| 
									
										
										
										
											2019-01-26 11:04:05 +01:00
										 |  |  | 	if (pointer == NULL) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&pointer->wlr_pointer.events.frame, | 
					
						
							|  |  |  | 		&pointer->wlr_pointer); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 22:10:34 +02:00
										 |  |  | static void pointer_handle_axis_source(void *data, | 
					
						
							|  |  |  | 		struct wl_pointer *wl_pointer, uint32_t axis_source) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = seat->active_pointer; | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 	if (pointer == NULL) { | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	pointer->axis_source = axis_source; | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_axis_stop(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t time, uint32_t axis) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = seat->active_pointer; | 
					
						
							| 
									
										
										
										
											2019-01-26 11:18:47 +01:00
										 |  |  | 	if (pointer == NULL) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_event_pointer_axis event = { | 
					
						
							|  |  |  | 		.device = &pointer->input_device->wlr_input_device, | 
					
						
							|  |  |  | 		.delta = 0, | 
					
						
							|  |  |  | 		.delta_discrete = 0, | 
					
						
							|  |  |  | 		.orientation = axis, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.source = pointer->axis_source, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&pointer->wlr_pointer.events.axis, &event); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 22:10:34 +02:00
										 |  |  | static void pointer_handle_axis_discrete(void *data, | 
					
						
							|  |  |  | 		struct wl_pointer *wl_pointer, uint32_t axis, int32_t discrete) { | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_pointer *pointer = seat->active_pointer; | 
					
						
							| 
									
										
										
										
											2018-05-12 13:04:47 +01:00
										 |  |  | 	if (pointer == NULL) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-12 13:04:47 +01:00
										 |  |  | 	pointer->axis_discrete = discrete; | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct wl_pointer_listener pointer_listener = { | 
					
						
							|  |  |  | 	.enter = pointer_handle_enter, | 
					
						
							|  |  |  | 	.leave = pointer_handle_leave, | 
					
						
							|  |  |  | 	.motion = pointer_handle_motion, | 
					
						
							|  |  |  | 	.button = pointer_handle_button, | 
					
						
							|  |  |  | 	.axis = pointer_handle_axis, | 
					
						
							|  |  |  | 	.frame = pointer_handle_frame, | 
					
						
							|  |  |  | 	.axis_source = pointer_handle_axis_source, | 
					
						
							|  |  |  | 	.axis_stop = pointer_handle_axis_stop, | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	.axis_discrete = pointer_handle_axis_discrete, | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint32_t time = get_current_time_msec(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint32_t *keycode_ptr; | 
					
						
							|  |  |  | 	wl_array_for_each(keycode_ptr, keys) { | 
					
						
							|  |  |  | 		struct wlr_event_keyboard_key event = { | 
					
						
							|  |  |  | 			.keycode = *keycode_ptr, | 
					
						
							| 
									
										
										
										
											2020-10-21 17:21:23 +02:00
										 |  |  | 			.state = WL_KEYBOARD_KEY_STATE_PRESSED, | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 			.time_msec = time, | 
					
						
							|  |  |  | 			.update_state = false, | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		wlr_keyboard_notify_key(dev->keyboard, &event); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint32_t time = get_current_time_msec(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-05 12:08:23 +01:00
										 |  |  | 	size_t num_keycodes = dev->keyboard->num_keycodes; | 
					
						
							|  |  |  | 	uint32_t pressed[num_keycodes + 1]; | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 	memcpy(pressed, dev->keyboard->keycodes, | 
					
						
							| 
									
										
										
										
											2021-01-05 12:08:23 +01:00
										 |  |  | 		num_keycodes * sizeof(uint32_t)); | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-05 12:08:23 +01:00
										 |  |  | 	for (size_t i = 0; i < num_keycodes; ++i) { | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 		uint32_t keycode = pressed[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		struct wlr_event_keyboard_key event = { | 
					
						
							|  |  |  | 			.keycode = keycode, | 
					
						
							| 
									
										
										
										
											2020-10-21 17:21:23 +02:00
										 |  |  | 			.state = WL_KEYBOARD_KEY_STATE_RELEASED, | 
					
						
							| 
									
										
										
										
											2018-06-03 13:18:57 +01:00
										 |  |  | 			.time_msec = time, | 
					
						
							|  |  |  | 			.update_state = false, | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		wlr_keyboard_notify_key(dev->keyboard, &event); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							|  |  |  | 	assert(dev && dev->keyboard); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 17:58:29 +01:00
										 |  |  | 	struct wlr_event_keyboard_key wlr_event = { | 
					
						
							|  |  |  | 		.keycode = key, | 
					
						
							|  |  |  | 		.state = state, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.update_state = false, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2017-10-06 12:03:34 +03:00
										 |  |  | 	wlr_keyboard_notify_key(dev->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) { | 
					
						
							| 
									
										
										
										
											2017-10-06 12:03:34 +03:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							|  |  |  | 	assert(dev && dev->keyboard); | 
					
						
							|  |  |  | 	wlr_keyboard_notify_modifiers(dev->keyboard, mods_depressed, mods_latched, | 
					
						
							|  |  |  | 		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 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | static void touch_coordinates_to_absolute(struct wlr_wl_input_device *device, | 
					
						
							|  |  |  | 		wl_fixed_t x, wl_fixed_t y, double *sx, double *sy) { | 
					
						
							|  |  |  | 	// TODO: each output needs its own touch
 | 
					
						
							|  |  |  | 	struct wlr_wl_output *output, *tmp; | 
					
						
							|  |  |  | 	wl_list_for_each_safe(output, tmp, &device->backend->outputs, link) { | 
					
						
							|  |  |  | 		*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) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *device = data; | 
					
						
							|  |  |  | 	assert(device && device->wlr_input_device.touch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	double sx, sy; | 
					
						
							|  |  |  | 	touch_coordinates_to_absolute(device, x, y, &sx, &sy); | 
					
						
							|  |  |  | 	struct wlr_event_touch_down event = { | 
					
						
							|  |  |  | 		.device = &device->wlr_input_device, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.touch_id = id, | 
					
						
							|  |  |  | 		.x = sx, | 
					
						
							|  |  |  | 		.y = sy | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&device->wlr_input_device.touch->events.down, &event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_up(void *data, struct wl_touch *wl_touch, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, int32_t id) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *device = data; | 
					
						
							|  |  |  | 	assert(device && device->wlr_input_device.touch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_event_touch_up event = { | 
					
						
							|  |  |  | 		.device = &device->wlr_input_device, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.touch_id = id, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&device->wlr_input_device.touch->events.up, &event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *device = data; | 
					
						
							|  |  |  | 	assert(device && device->wlr_input_device.touch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	double sx, sy; | 
					
						
							|  |  |  | 	touch_coordinates_to_absolute(device, x, y, &sx, &sy); | 
					
						
							|  |  |  | 	struct wlr_event_touch_motion event = { | 
					
						
							|  |  |  | 		.device = &device->wlr_input_device, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.touch_id = id, | 
					
						
							|  |  |  | 		.x = sx, | 
					
						
							|  |  |  | 		.y = sy | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&device->wlr_input_device.touch->events.motion, &event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_frame(void *data, struct wl_touch *wl_touch) { | 
					
						
							| 
									
										
										
										
											2021-06-30 11:39:38 +02:00
										 |  |  | 	struct wlr_wl_input_device *device = data; | 
					
						
							|  |  |  | 	assert(device && device->wlr_input_device.touch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&device->wlr_input_device.touch->events.frame, NULL); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void touch_handle_cancel(void *data, struct wl_touch *wl_touch) { | 
					
						
							|  |  |  | 	// no-op
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 22:10:34 +02:00
										 |  |  | static struct wlr_wl_input_device *get_wl_input_device_from_input_device( | 
					
						
							|  |  |  | 		struct wlr_input_device *wlr_dev) { | 
					
						
							|  |  |  | 	assert(wlr_input_device_is_wl(wlr_dev)); | 
					
						
							|  |  |  | 	return (struct wlr_wl_input_device *)wlr_dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-18 19:12:01 +02:00
										 |  |  | bool create_wl_seat(struct wl_seat *wl_seat, struct wlr_wl_backend *wl) { | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = calloc(1, sizeof(struct wlr_wl_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; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void destroy_wl_seats(struct wlr_wl_backend *wl) { | 
					
						
							| 
									
										
										
										
											2020-10-03 23:06:10 +02:00
										 |  |  | 	struct wlr_wl_seat *seat, *tmp_seat; | 
					
						
							|  |  |  | 	wl_list_for_each_safe(seat, tmp_seat, &wl->seats, link) { | 
					
						
							|  |  |  | 		if (seat->touch) { | 
					
						
							|  |  |  | 			wl_touch_destroy(seat->touch); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (seat->pointer) { | 
					
						
							|  |  |  | 			wl_pointer_destroy(seat->pointer); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (seat->keyboard && !wl->started) { | 
					
						
							|  |  |  | 			// early termination will not be handled by input_device_destroy
 | 
					
						
							|  |  |  | 			wl_keyboard_destroy(seat->keyboard); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		free(seat->name); | 
					
						
							|  |  |  | 		assert(seat->wl_seat); | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		wl_seat_destroy(seat->wl_seat); | 
					
						
							| 
									
										
										
										
											2020-10-03 23:06:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		wl_list_remove(&seat->link); | 
					
						
							|  |  |  | 		free(seat); | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wlr_wl_seat *input_device_get_seat(struct wlr_input_device *wlr_dev) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *dev = | 
					
						
							|  |  |  | 		get_wl_input_device_from_input_device(wlr_dev); | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 	assert(dev->seat); | 
					
						
							|  |  |  | 	return dev->seat; | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 10:36:43 +01:00
										 |  |  | static void input_device_destroy(struct wlr_input_device *wlr_dev) { | 
					
						
							| 
									
										
										
										
											2018-09-17 22:10:34 +02:00
										 |  |  | 	struct wlr_wl_input_device *dev = | 
					
						
							|  |  |  | 		get_wl_input_device_from_input_device(wlr_dev); | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 	if (dev->wlr_input_device.type == WLR_INPUT_DEVICE_KEYBOARD) { | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		struct wlr_wl_seat *seat = input_device_get_seat(wlr_dev); | 
					
						
							|  |  |  | 		wl_keyboard_release(seat->keyboard); | 
					
						
							|  |  |  | 		seat->keyboard = NULL; | 
					
						
							| 
									
										
										
										
											2017-08-14 16:29:57 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 	// We can't destroy pointer here because we might have multiple devices
 | 
					
						
							|  |  |  | 	// exposing it to compositor.
 | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 	wl_list_remove(&dev->link); | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	free(dev); | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 08:57:18 -05:00
										 |  |  | static const struct wlr_input_device_impl input_device_impl = { | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	.destroy = input_device_destroy, | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-19 20:20:32 +01:00
										 |  |  | bool wlr_input_device_is_wl(struct wlr_input_device *dev) { | 
					
						
							|  |  |  | 	return dev->impl == &input_device_impl; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 08:36:19 +02:00
										 |  |  | struct wlr_wl_input_device *create_wl_input_device( | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 		struct wlr_wl_seat *seat, enum wlr_input_device_type type) { | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	struct wlr_wl_input_device *dev = | 
					
						
							|  |  |  | 		calloc(1, sizeof(struct wlr_wl_input_device)); | 
					
						
							|  |  |  | 	if (dev == NULL) { | 
					
						
							| 
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 |  |  | 		wlr_log_errno(WLR_ERROR, "Allocation failed"); | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 	dev->backend = seat->backend; | 
					
						
							|  |  |  | 	dev->seat = seat; | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	struct wlr_input_device *wlr_dev = &dev->wlr_input_device; | 
					
						
							| 
									
										
										
										
											2017-06-22 17:54:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-01 02:31:45 -05:00
										 |  |  | 	const char *type_name = "unknown"; | 
					
						
							| 
									
										
										
										
											2021-12-01 05:40:23 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (type) { | 
					
						
							|  |  |  | 	case WLR_INPUT_DEVICE_KEYBOARD: | 
					
						
							|  |  |  | 		type_name = "keyboard"; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case WLR_INPUT_DEVICE_POINTER: | 
					
						
							|  |  |  | 		type_name = "pointer"; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case WLR_INPUT_DEVICE_TOUCH: | 
					
						
							|  |  |  | 		type_name = "touch"; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case WLR_INPUT_DEVICE_TABLET_TOOL: | 
					
						
							|  |  |  | 		type_name = "tablet-tool"; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case WLR_INPUT_DEVICE_TABLET_PAD: | 
					
						
							|  |  |  | 		type_name = "tablet-pad"; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case WLR_INPUT_DEVICE_SWITCH: | 
					
						
							|  |  |  | 		type_name = "switch"; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	size_t name_size = 8 + strlen(type_name) + strlen(seat->name) + 1; | 
					
						
							| 
									
										
										
										
											2020-10-04 22:45:36 +02:00
										 |  |  | 	char name[name_size]; | 
					
						
							| 
									
										
										
										
											2021-12-01 05:40:23 +09:00
										 |  |  | 	(void) snprintf(name, name_size, "wayland-%s-%s", type_name, seat->name); | 
					
						
							| 
									
										
										
										
											2020-10-04 22:45:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-04 09:26:57 -05:00
										 |  |  | 	wlr_input_device_init(wlr_dev, type, &input_device_impl, name); | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 	wl_list_insert(&seat->backend->devices, &dev->link); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	return dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 08:57:18 -05:00
										 |  |  | static const struct wlr_pointer_impl pointer_impl; | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct wlr_wl_pointer *pointer_get_wl(struct wlr_pointer *wlr_pointer) { | 
					
						
							|  |  |  | 	assert(wlr_pointer->impl == &pointer_impl); | 
					
						
							|  |  |  | 	return (struct wlr_wl_pointer *)wlr_pointer; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_destroy(struct wlr_pointer *wlr_pointer) { | 
					
						
							|  |  |  | 	struct wlr_wl_pointer *pointer = pointer_get_wl(wlr_pointer); | 
					
						
							| 
									
										
										
										
											2019-04-23 22:33:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-09 22:17:17 +02:00
										 |  |  | 	if (pointer->output->cursor.pointer == pointer) { | 
					
						
							|  |  |  | 		pointer->output->cursor.pointer = NULL; | 
					
						
							| 
									
										
										
										
											2019-04-23 22:33:31 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	struct wlr_wl_seat *seat = pointer->input_device->seat; | 
					
						
							|  |  |  | 	if (seat->active_pointer == pointer) { | 
					
						
							|  |  |  | 		seat->active_pointer = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-13 11:59:25 +02:00
										 |  |  | 	// pointer->wl_pointer belongs to the wlr_wl_seat
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pointer->gesture_swipe != NULL) { | 
					
						
							|  |  |  | 		zwp_pointer_gesture_swipe_v1_destroy(pointer->gesture_swipe); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (pointer->gesture_pinch != NULL) { | 
					
						
							|  |  |  | 		zwp_pointer_gesture_pinch_v1_destroy(pointer->gesture_pinch); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-07-12 19:51:21 +02:00
										 |  |  | 	if (pointer->gesture_hold != NULL) { | 
					
						
							|  |  |  | 		zwp_pointer_gesture_hold_v1_destroy(pointer->gesture_hold); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-07-13 11:59:25 +02:00
										 |  |  | 	if (pointer->relative_pointer != NULL) { | 
					
						
							|  |  |  | 		zwp_relative_pointer_v1_destroy(pointer->relative_pointer); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-31 10:20:01 -05:00
										 |  |  | 	wlr_input_device_finish(&pointer->input_device->wlr_input_device); | 
					
						
							|  |  |  | 	wl_list_remove(&pointer->input_device->link); | 
					
						
							|  |  |  | 	free(pointer->input_device); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	wl_list_remove(&pointer->output_destroy.link); | 
					
						
							|  |  |  | 	free(pointer); | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 08:57:18 -05:00
										 |  |  | static const struct wlr_pointer_impl pointer_impl = { | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	.destroy = pointer_destroy, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | static void gesture_swipe_begin(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_swipe_v1 *zwp_pointer_gesture_swipe_v1, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, | 
					
						
							|  |  |  | 		struct wl_surface *surface, uint32_t fingers) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_swipe_begin wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.fingers = fingers, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	input_device->fingers = fingers; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.swipe_begin, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void gesture_swipe_update(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_swipe_v1 *zwp_pointer_gesture_swipe_v1, | 
					
						
							|  |  |  | 		uint32_t time, wl_fixed_t dx, wl_fixed_t dy) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_swipe_update wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.fingers = input_device->fingers, | 
					
						
							|  |  |  | 		.dx = wl_fixed_to_double(dx), | 
					
						
							|  |  |  | 		.dy = wl_fixed_to_double(dy), | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.swipe_update, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void gesture_swipe_end(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_swipe_v1 *zwp_pointer_gesture_swipe_v1, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, int32_t cancelled) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_swipe_end wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.cancelled = cancelled, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.swipe_end, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 08:57:18 -05:00
										 |  |  | static const struct zwp_pointer_gesture_swipe_v1_listener gesture_swipe_impl = { | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | 	.begin = gesture_swipe_begin, | 
					
						
							|  |  |  | 	.update = gesture_swipe_update, | 
					
						
							|  |  |  | 	.end = gesture_swipe_end, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void gesture_pinch_begin(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_pinch_v1 *zwp_pointer_gesture_pinch_v1, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, | 
					
						
							|  |  |  | 		struct wl_surface *surface, uint32_t fingers) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_pinch_begin wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.fingers = fingers, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	input_device->fingers = fingers; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.pinch_begin, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void gesture_pinch_update(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_pinch_v1 *zwp_pointer_gesture_pinch_v1, | 
					
						
							|  |  |  | 		uint32_t time, wl_fixed_t dx, wl_fixed_t dy, wl_fixed_t scale, wl_fixed_t rotation) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_pinch_update wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.fingers = input_device->fingers, | 
					
						
							|  |  |  | 		.dx = wl_fixed_to_double(dx), | 
					
						
							|  |  |  | 		.dy = wl_fixed_to_double(dy), | 
					
						
							|  |  |  | 		.scale = wl_fixed_to_double(scale), | 
					
						
							|  |  |  | 		.rotation = wl_fixed_to_double(rotation), | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.pinch_update, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void gesture_pinch_end(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_pinch_v1 *zwp_pointer_gesture_pinch_v1, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, int32_t cancelled) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_pinch_end wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.cancelled = cancelled, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.pinch_end, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-04 08:57:18 -05:00
										 |  |  | static const struct zwp_pointer_gesture_pinch_v1_listener gesture_pinch_impl = { | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | 	.begin = gesture_pinch_begin, | 
					
						
							|  |  |  | 	.update = gesture_pinch_update, | 
					
						
							|  |  |  | 	.end = gesture_pinch_end, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 19:51:21 +02:00
										 |  |  | static void gesture_hold_begin(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_hold_v1 *zwp_pointer_gesture_hold_v1, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, | 
					
						
							|  |  |  | 		struct wl_surface *surface, uint32_t fingers) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_hold_begin wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.fingers = fingers, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	input_device->fingers = fingers; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.hold_begin, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void gesture_hold_end(void *data, | 
					
						
							|  |  |  | 		struct zwp_pointer_gesture_hold_v1 *zwp_pointer_gesture_hold_v1, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, int32_t cancelled) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = (struct wlr_wl_input_device *)data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							|  |  |  | 	struct wlr_event_pointer_hold_end wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = time, | 
					
						
							|  |  |  | 		.cancelled = cancelled, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.hold_end, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct zwp_pointer_gesture_hold_v1_listener gesture_hold_impl = { | 
					
						
							|  |  |  | 	.begin = gesture_hold_begin, | 
					
						
							|  |  |  | 	.end = gesture_hold_end, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-20 00:45:19 +01:00
										 |  |  | static void relative_pointer_handle_relative_motion(void *data, | 
					
						
							| 
									
										
										
										
											2019-11-12 15:32:08 +01:00
										 |  |  | 		struct zwp_relative_pointer_v1 *relative_pointer, uint32_t utime_hi, | 
					
						
							|  |  |  | 		uint32_t utime_lo, wl_fixed_t dx, wl_fixed_t dy, wl_fixed_t dx_unaccel, | 
					
						
							|  |  |  | 		wl_fixed_t dy_unaccel) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *input_device = data; | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &input_device->wlr_input_device; | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 	if (pointer_get_wl(wlr_dev->pointer) != input_device->seat->active_pointer) { | 
					
						
							| 
									
										
										
										
											2020-09-04 00:08:45 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-11-12 15:32:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	uint64_t time_usec = (uint64_t)utime_hi << 32 | utime_lo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_event_pointer_motion wlr_event = { | 
					
						
							|  |  |  | 		.device = wlr_dev, | 
					
						
							|  |  |  | 		.time_msec = (uint32_t)(time_usec / 1000), | 
					
						
							|  |  |  | 		.delta_x = wl_fixed_to_double(dx), | 
					
						
							|  |  |  | 		.delta_y = wl_fixed_to_double(dy), | 
					
						
							|  |  |  | 		.unaccel_dx = wl_fixed_to_double(dx_unaccel), | 
					
						
							|  |  |  | 		.unaccel_dy = wl_fixed_to_double(dy_unaccel), | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	wlr_signal_emit_safe(&wlr_dev->pointer->events.motion, &wlr_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct zwp_relative_pointer_v1_listener relative_pointer_listener = { | 
					
						
							|  |  |  | 	.relative_motion = relative_pointer_handle_relative_motion, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 23:51:00 +01:00
										 |  |  | static void pointer_handle_output_destroy(struct wl_listener *listener, | 
					
						
							| 
									
										
										
										
											2018-03-17 17:11:43 +01:00
										 |  |  | 		void *data) { | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	struct wlr_wl_pointer *pointer = | 
					
						
							|  |  |  | 		wl_container_of(listener, pointer, output_destroy); | 
					
						
							| 
									
										
										
										
											2022-01-31 10:20:01 -05:00
										 |  |  | 	wlr_pointer_destroy(&pointer->wlr_pointer); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | void create_wl_pointer(struct wlr_wl_seat *seat, struct wlr_wl_output *output) { | 
					
						
							|  |  |  | 	assert(seat->pointer); | 
					
						
							|  |  |  | 	struct wl_pointer *wl_pointer = seat->pointer; | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	struct wlr_wl_backend *backend = output->backend; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 	if (output_get_pointer(output, wl_pointer)) { | 
					
						
							|  |  |  | 		wlr_log(WLR_DEBUG, | 
					
						
							|  |  |  | 			"Pointer for seat %s and output %s already exists (ignoring)", | 
					
						
							|  |  |  | 			seat->name, output->wlr_output.name); | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_wl_pointer *pointer = calloc(1, sizeof(struct wlr_wl_pointer)); | 
					
						
							|  |  |  | 	if (pointer == NULL) { | 
					
						
							| 
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 |  |  | 		wlr_log(WLR_ERROR, "Allocation failed"); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pointer->wl_pointer = wl_pointer; | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 	pointer->output = output;  // we need output to map absolute coordinates onto
 | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *dev = | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 		create_wl_input_device(seat, WLR_INPUT_DEVICE_POINTER); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	if (dev == NULL) { | 
					
						
							|  |  |  | 		free(pointer); | 
					
						
							| 
									
										
										
										
											2018-07-09 22:49:54 +01:00
										 |  |  | 		wlr_log(WLR_ERROR, "Allocation failed"); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pointer->input_device = dev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-18 19:12:01 +02:00
										 |  |  | 	wl_signal_add(&output->wlr_output.events.destroy, &pointer->output_destroy); | 
					
						
							|  |  |  | 	pointer->output_destroy.notify = pointer_handle_output_destroy; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 	struct wlr_input_device *wlr_dev = &dev->wlr_input_device; | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	wlr_dev->pointer = &pointer->wlr_pointer; | 
					
						
							|  |  |  | 	wlr_dev->output_name = strdup(output->wlr_output.name); | 
					
						
							| 
									
										
										
										
											2022-01-31 10:20:01 -05:00
										 |  |  | 	wlr_pointer_init(wlr_dev->pointer, &pointer_impl, wlr_dev->name); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | 	if (backend->zwp_pointer_gestures_v1) { | 
					
						
							| 
									
										
										
										
											2021-07-12 19:51:21 +02:00
										 |  |  | 		uint32_t version = zwp_pointer_gestures_v1_get_version( | 
					
						
							|  |  |  | 				backend->zwp_pointer_gestures_v1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | 		pointer->gesture_swipe = zwp_pointer_gestures_v1_get_swipe_gesture( | 
					
						
							|  |  |  | 				backend->zwp_pointer_gestures_v1, wl_pointer); | 
					
						
							|  |  |  | 		zwp_pointer_gesture_swipe_v1_add_listener(pointer->gesture_swipe, &gesture_swipe_impl, dev); | 
					
						
							|  |  |  | 		pointer->gesture_pinch = zwp_pointer_gestures_v1_get_pinch_gesture( | 
					
						
							|  |  |  | 				backend->zwp_pointer_gestures_v1, wl_pointer); | 
					
						
							|  |  |  | 		zwp_pointer_gesture_pinch_v1_add_listener(pointer->gesture_pinch, &gesture_pinch_impl, dev); | 
					
						
							| 
									
										
										
										
											2021-07-12 19:51:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (version >= ZWP_POINTER_GESTURES_V1_GET_HOLD_GESTURE) { | 
					
						
							|  |  |  | 			pointer->gesture_hold = zwp_pointer_gestures_v1_get_hold_gesture( | 
					
						
							|  |  |  | 					backend->zwp_pointer_gestures_v1, wl_pointer); | 
					
						
							|  |  |  | 			zwp_pointer_gesture_hold_v1_add_listener(pointer->gesture_hold, &gesture_hold_impl, dev); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-06-21 01:48:19 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-12 15:32:08 +01:00
										 |  |  | 	if (backend->zwp_relative_pointer_manager_v1) { | 
					
						
							|  |  |  | 		pointer->relative_pointer = | 
					
						
							|  |  |  | 			zwp_relative_pointer_manager_v1_get_relative_pointer( | 
					
						
							|  |  |  | 			backend->zwp_relative_pointer_manager_v1, wl_pointer); | 
					
						
							|  |  |  | 		zwp_relative_pointer_v1_add_listener(pointer->relative_pointer, | 
					
						
							|  |  |  | 			&relative_pointer_listener, dev); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 14:51:52 +02:00
										 |  |  | 	wl_pointer_add_listener(wl_pointer, &pointer_listener, seat); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 	wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_dev); | 
					
						
							| 
									
										
										
										
											2018-03-17 17:11:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | void create_wl_keyboard(struct wlr_wl_seat *seat) { | 
					
						
							|  |  |  | 	assert(seat->keyboard); | 
					
						
							|  |  |  | 	struct wl_keyboard *wl_keyboard = seat->keyboard; | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 	struct wlr_wl_input_device *dev = | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 		create_wl_input_device(seat, WLR_INPUT_DEVICE_KEYBOARD); | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 	if (!dev) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &dev->wlr_input_device; | 
					
						
							|  |  |  | 	wlr_dev->keyboard = calloc(1, sizeof(*wlr_dev->keyboard)); | 
					
						
							|  |  |  | 	if (!wlr_dev->keyboard) { | 
					
						
							|  |  |  | 		wlr_log_errno(WLR_ERROR, "Allocation failed"); | 
					
						
							| 
									
										
										
										
											2020-10-18 19:12:01 +02:00
										 |  |  | 		wlr_input_device_destroy(wlr_dev); | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-01-28 13:55:28 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wlr_keyboard_init(wlr_dev->keyboard, NULL, wlr_dev->name); | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wl_keyboard_add_listener(wl_keyboard, &keyboard_listener, wlr_dev); | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 	wlr_signal_emit_safe(&seat->backend->backend.events.new_input, wlr_dev); | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | void create_wl_touch(struct wlr_wl_seat *seat) { | 
					
						
							|  |  |  | 	assert(seat->touch); | 
					
						
							|  |  |  | 	struct wl_touch *wl_touch = seat->touch; | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 	struct wlr_wl_input_device *dev = | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 		create_wl_input_device(seat, WLR_INPUT_DEVICE_TOUCH); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 	if (!dev) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_input_device *wlr_dev = &dev->wlr_input_device; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_dev->touch = calloc(1, sizeof(*wlr_dev->touch)); | 
					
						
							|  |  |  | 	if (!wlr_dev->touch) { | 
					
						
							|  |  |  | 		wlr_log_errno(WLR_ERROR, "Allocation failed"); | 
					
						
							| 
									
										
										
										
											2020-10-18 19:12:01 +02:00
										 |  |  | 		wlr_input_device_destroy(wlr_dev); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	wlr_touch_init(wlr_dev->touch, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wl_touch_add_listener(wl_touch, &touch_listener, dev); | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 	wlr_signal_emit_safe(&seat->backend->backend.events.new_input, wlr_dev); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	if ((caps & WL_SEAT_CAPABILITY_POINTER) && seat->pointer == NULL) { | 
					
						
							| 
									
										
										
										
											2020-03-02 17:07:53 +01:00
										 |  |  | 		wlr_log(WLR_DEBUG, "seat %p offered pointer", (void *)wl_seat); | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 		struct wl_pointer *wl_pointer = wl_seat_get_pointer(wl_seat); | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		seat->pointer = wl_pointer; | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		struct wlr_wl_output *output; | 
					
						
							|  |  |  | 		wl_list_for_each(output, &backend->outputs, link) { | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 			create_wl_pointer(seat, output); | 
					
						
							| 
									
										
										
										
											2018-04-29 12:16:31 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	if (!(caps & WL_SEAT_CAPABILITY_POINTER) && seat->pointer != NULL) { | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 		wlr_log(WLR_DEBUG, "seat %p dropped pointer", (void *)wl_seat); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 		struct wl_pointer *wl_pointer = seat->pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 		struct wlr_wl_input_device *device, *tmp; | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 		wl_list_for_each_safe(device, tmp, &backend->devices, link) { | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 			if (device->wlr_input_device.type != WLR_INPUT_DEVICE_POINTER) { | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 			struct wlr_wl_pointer *pointer = | 
					
						
							|  |  |  | 				pointer_get_wl(device->wlr_input_device.pointer); | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 			if (pointer->wl_pointer != wl_pointer) { | 
					
						
							|  |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 			wlr_log(WLR_DEBUG, "dropping pointer %s", | 
					
						
							|  |  |  | 				pointer->input_device->wlr_input_device.name); | 
					
						
							| 
									
										
										
										
											2020-10-09 22:17:17 +02:00
										 |  |  | 			struct wlr_wl_output *output = pointer->output; | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 			wlr_input_device_destroy(&device->wlr_input_device); | 
					
						
							| 
									
										
										
										
											2020-10-08 02:44:38 +02:00
										 |  |  | 			assert(seat->active_pointer != pointer); | 
					
						
							| 
									
										
										
										
											2020-10-09 22:17:17 +02:00
										 |  |  | 			assert(output->cursor.pointer != pointer); | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-29 13:37:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		wl_pointer_release(seat->pointer); | 
					
						
							|  |  |  | 		seat->pointer = NULL; | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && seat->keyboard == NULL) { | 
					
						
							| 
									
										
										
										
											2020-03-02 17:07:53 +01:00
										 |  |  | 		wlr_log(WLR_DEBUG, "seat %p offered keyboard", (void *)wl_seat); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		seat->keyboard = wl_keyboard; | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (backend->started) { | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 			create_wl_keyboard(seat); | 
					
						
							| 
									
										
										
										
											2018-11-11 18:09:04 +13:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && seat->keyboard != NULL) { | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 		wlr_log(WLR_DEBUG, "seat %p dropped keyboard", (void *)wl_seat); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 		struct wlr_wl_input_device *device, *tmp; | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 		wl_list_for_each_safe(device, tmp, &backend->devices, link) { | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 			if (device->wlr_input_device.type != WLR_INPUT_DEVICE_KEYBOARD) { | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 			if (device->seat != seat) { | 
					
						
							| 
									
										
										
										
											2020-10-04 22:28:25 +02:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 			wlr_input_device_destroy(&device->wlr_input_device); | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		assert(seat->keyboard == NULL); // free'ed by input_device_destroy
 | 
					
						
							| 
									
										
										
										
											2020-03-02 17:17:28 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	if ((caps & WL_SEAT_CAPABILITY_TOUCH) && seat->touch == NULL) { | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		wlr_log(WLR_DEBUG, "seat %p offered touch", (void *)wl_seat); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		seat->touch = wl_seat_get_touch(wl_seat); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		if (backend->started) { | 
					
						
							| 
									
										
										
										
											2020-10-03 22:11:38 +02:00
										 |  |  | 			create_wl_touch(seat); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && seat->touch != NULL) { | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		wlr_log(WLR_DEBUG, "seat %p dropped touch", (void *)wl_seat); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 		struct wlr_wl_input_device *device, *tmp; | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 		wl_list_for_each_safe(device, tmp, &backend->devices, link) { | 
					
						
							| 
									
										
										
										
											2021-11-22 22:30:40 +01:00
										 |  |  | 			if (device->wlr_input_device.type == WLR_INPUT_DEVICE_TOUCH) { | 
					
						
							|  |  |  | 				wlr_input_device_destroy(&device->wlr_input_device); | 
					
						
							| 
									
										
										
										
											2020-10-18 16:33:03 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 		wl_touch_release(seat->touch); | 
					
						
							|  |  |  | 		seat->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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const struct wl_seat_listener seat_listener = { | 
					
						
							|  |  |  | 	.capabilities = seat_handle_capabilities, | 
					
						
							|  |  |  | 	.name = seat_handle_name, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-11-12 17:56:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct wl_seat *wlr_wl_input_device_get_seat(struct wlr_input_device *wlr_dev) { | 
					
						
							| 
									
										
										
										
											2020-10-03 17:34:32 +02:00
										 |  |  | 	return input_device_get_seat(wlr_dev)->wl_seat; | 
					
						
							| 
									
										
										
										
											2019-11-12 17:56:57 +01:00
										 |  |  | } |