| 
									
										
										
										
											2017-04-25 21:26:29 -04:00
										 |  |  | #define _XOPEN_SOURCE 500
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | #include <assert.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | #include <stdint.h>
 | 
					
						
							| 
									
										
										
										
											2017-04-25 21:26:29 -04:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | #include <wayland-client.h>
 | 
					
						
							| 
									
										
										
										
											2017-06-21 10:27:45 -04:00
										 |  |  | #include <wlr/interfaces/wlr_output.h>
 | 
					
						
							|  |  |  | #include <wlr/interfaces/wlr_input_device.h>
 | 
					
						
							|  |  |  | #include <wlr/interfaces/wlr_pointer.h>
 | 
					
						
							|  |  |  | #include <wlr/interfaces/wlr_keyboard.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>
 | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | #include "backend/wayland.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | static void pointer_handle_enter(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface, wl_fixed_t surface_x, | 
					
						
							|  |  |  | 		wl_fixed_t surface_y) { | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	struct wlr_wl_input_device *wlr_wl_dev = (struct wlr_wl_input_device *)dev; | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	assert(dev && dev->pointer); | 
					
						
							|  |  |  | 	struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer; | 
					
						
							| 
									
										
										
										
											2017-08-13 10:51:50 -04:00
										 |  |  | 	struct wlr_wl_backend_output* output = | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 		wlr_wl_output_for_surface(wlr_wl_dev->backend, surface); | 
					
						
							| 
									
										
										
										
											2017-08-13 10:51:50 -04:00
										 |  |  | 	assert(output); | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	wlr_wl_pointer->current_output = output; | 
					
						
							| 
									
										
										
										
											2017-08-14 18:19:42 +02:00
										 |  |  | 	wlr_wl_pointer->current_output->enter_serial = serial; | 
					
						
							|  |  |  | 	wlr_wl_output_update_cursor(wlr_wl_pointer->current_output, serial); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2017-06-22 18:04:13 +02:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	assert(dev && dev->pointer); | 
					
						
							|  |  |  | 	struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer; | 
					
						
							| 
									
										
										
										
											2017-08-14 18:19:42 +02:00
										 |  |  | 	if (wlr_wl_pointer->current_output) { | 
					
						
							|  |  |  | 		wlr_wl_pointer->current_output->enter_serial = 0; | 
					
						
							|  |  |  | 		wlr_wl_pointer->current_output = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_motion(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y) { | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	assert(dev && dev->pointer); | 
					
						
							|  |  |  | 	struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer; | 
					
						
							|  |  |  | 	if (!wlr_wl_pointer->current_output) { | 
					
						
							| 
									
										
										
										
											2017-06-22 18:04:13 +02:00
										 |  |  | 		wlr_log(L_ERROR, "pointer motion event without current output"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-22 17:54:51 +02:00
										 |  |  | 	int width, height; | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	wl_egl_window_get_attached_size(wlr_wl_pointer->current_output->egl_window, | 
					
						
							| 
									
										
										
										
											2017-06-22 17:54:51 +02:00
										 |  |  | 		&width, &height); | 
					
						
							|  |  |  | 	struct wlr_event_pointer_motion_absolute wlr_event; | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	wlr_event.time_sec = time / 1000; | 
					
						
							|  |  |  | 	wlr_event.time_usec = time * 1000; | 
					
						
							| 
									
										
										
										
											2017-06-22 17:54:51 +02:00
										 |  |  | 	wlr_event.width_mm = width; | 
					
						
							|  |  |  | 	wlr_event.height_mm = height; | 
					
						
							|  |  |  | 	wlr_event.x_mm = wl_fixed_to_double(surface_x); | 
					
						
							|  |  |  | 	wlr_event.y_mm = wl_fixed_to_double(surface_y); | 
					
						
							|  |  |  | 	wl_signal_emit(&dev->pointer->events.motion_absolute, &wlr_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) { | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							|  |  |  | 	assert(dev && dev->pointer); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_event_pointer_button wlr_event; | 
					
						
							|  |  |  | 	wlr_event.button = button; | 
					
						
							|  |  |  | 	wlr_event.state = state; | 
					
						
							|  |  |  | 	wlr_event.time_sec = time / 1000; | 
					
						
							|  |  |  | 	wlr_event.time_usec = time * 1000; | 
					
						
							|  |  |  | 	wl_signal_emit(&dev->pointer->events.button, &wlr_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) { | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							|  |  |  | 	assert(dev && dev->pointer); | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer; | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_event_pointer_axis wlr_event; | 
					
						
							|  |  |  | 	wlr_event.delta = value; | 
					
						
							|  |  |  | 	wlr_event.orientation = axis; | 
					
						
							|  |  |  | 	wlr_event.time_sec = time / 1000; | 
					
						
							|  |  |  | 	wlr_event.time_usec = time * 1000; | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	wlr_event.source = wlr_wl_pointer->axis_source; | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	wl_signal_emit(&dev->pointer->events.axis, &wlr_event); | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_frame(void *data, struct wl_pointer *wl_pointer) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_axis_source(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t axis_source) { | 
					
						
							| 
									
										
										
										
											2017-06-22 17:58:53 +02:00
										 |  |  | 	struct wlr_input_device *dev = data; | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 	assert(dev && dev->pointer); | 
					
						
							|  |  |  | 	struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wlr_wl_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) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pointer_handle_axis_discrete(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t axis, int32_t discrete) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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, | 
					
						
							|  |  |  | 	.axis_discrete = pointer_handle_axis_discrete | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_keymap(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t format, int32_t fd, uint32_t size) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_enter(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface, struct wl_array *keys) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_leave(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	struct wlr_event_keyboard_key wlr_event; | 
					
						
							|  |  |  | 	wlr_event.keycode = key; | 
					
						
							|  |  |  | 	wlr_event.state = state; | 
					
						
							|  |  |  | 	wlr_event.time_sec = time / 1000; | 
					
						
							|  |  |  | 	wlr_event.time_usec = time * 1000; | 
					
						
							|  |  |  | 	wl_signal_emit(&dev->keyboard->events.key, &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) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void keyboard_handle_repeat_info(void *data, struct wl_keyboard *wl_keyboard, | 
					
						
							|  |  |  | 	int32_t rate, int32_t delay) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wl_keyboard_listener keyboard_listener = { | 
					
						
							|  |  |  | 	.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 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | static void input_device_destroy(struct wlr_input_device *_dev) { | 
					
						
							|  |  |  | 	struct wlr_wl_input_device *dev = (struct wlr_wl_input_device *)_dev; | 
					
						
							|  |  |  | 	wl_signal_emit(&dev->backend->backend.events.input_remove, &dev->wlr_input_device); | 
					
						
							| 
									
										
										
										
											2017-08-14 16:29:57 +02:00
										 |  |  | 	if (dev->resource) { | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 		wl_proxy_destroy(dev->resource); | 
					
						
							| 
									
										
										
										
											2017-08-14 16:29:57 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	free(dev); | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wlr_input_device_impl input_device_impl = { | 
					
						
							| 
									
										
										
										
											2017-06-22 15:41:59 +02:00
										 |  |  | 	.destroy = input_device_destroy | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | static struct wlr_input_device *allocate_device(struct wlr_wl_backend *backend, | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 		enum wlr_input_device_type type) { | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	struct wlr_wl_input_device *wlr_wl_dev; | 
					
						
							|  |  |  | 	if (!(wlr_wl_dev = calloc(1, sizeof(struct wlr_wl_input_device)))) { | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 		wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno)); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	wlr_wl_dev->backend = backend; | 
					
						
							| 
									
										
										
										
											2017-06-22 17:54:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 	int vendor = 0; | 
					
						
							|  |  |  | 	int product = 0; | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 	const char *name = "wayland"; | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 	struct wlr_input_device *wlr_device = &wlr_wl_dev->wlr_input_device; | 
					
						
							|  |  |  | 	wlr_input_device_init(wlr_device, type, &input_device_impl, | 
					
						
							|  |  |  | 			name, vendor, product); | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 	list_add(backend->devices, wlr_device); | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 	return wlr_device; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 	struct wlr_wl_backend *backend = data; | 
					
						
							|  |  |  | 	assert(backend->seat == wl_seat); | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((caps & WL_SEAT_CAPABILITY_POINTER)) { | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 		wlr_log(L_DEBUG, "seat %p offered pointer", (void*) wl_seat); | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 		struct wlr_wl_pointer *wlr_wl_pointer; | 
					
						
							|  |  |  | 		if (!(wlr_wl_pointer = calloc(1, sizeof(struct wlr_wl_pointer)))) { | 
					
						
							|  |  |  | 			wlr_log(L_ERROR, "Unable to allocate wlr_wl_pointer"); | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 		struct wlr_input_device *wlr_device; | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 		if (!(wlr_device = allocate_device(backend, WLR_INPUT_DEVICE_POINTER))) { | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 			free(wlr_wl_pointer); | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 			wlr_log(L_ERROR, "Unable to allocate wlr_device for pointer"); | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 		struct wlr_wl_input_device *wlr_wl_device = | 
					
						
							|  |  |  | 			(struct wlr_wl_input_device *)wlr_device; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 		wl_pointer_add_listener(wl_pointer, &pointer_listener, wlr_device); | 
					
						
							| 
									
										
										
										
											2017-08-14 15:55:48 +02:00
										 |  |  | 		wlr_device->pointer = &wlr_wl_pointer->wlr_pointer; | 
					
						
							|  |  |  | 		wlr_pointer_init(wlr_device->pointer, NULL); | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 		wlr_wl_device->resource = wl_pointer; | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 		wl_signal_emit(&backend->backend.events.input_add, wlr_device); | 
					
						
							| 
									
										
										
										
											2017-08-14 18:19:42 +02:00
										 |  |  | 		backend->pointer = wl_pointer; | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 	if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) { | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 		wlr_log(L_DEBUG, "seat %p offered keyboard", (void*) wl_seat); | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 		struct wlr_input_device *wlr_device = allocate_device(backend, | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 			WLR_INPUT_DEVICE_KEYBOARD); | 
					
						
							| 
									
										
										
										
											2017-06-22 16:53:48 +02:00
										 |  |  | 		if (!wlr_device) { | 
					
						
							| 
									
										
										
										
											2017-06-19 19:05:10 +02:00
										 |  |  | 			wlr_log(L_ERROR, "Unable to allocate wl_pointer device"); | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:14 +02:00
										 |  |  | 		wlr_device->keyboard = calloc(1, sizeof(struct wlr_keyboard)); | 
					
						
							|  |  |  | 		if (!wlr_device->keyboard) { | 
					
						
							|  |  |  | 			free(wlr_device); | 
					
						
							|  |  |  | 			wlr_log(L_ERROR, "Unable to allocate wlr keyboard"); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		wlr_keyboard_init(wlr_device->keyboard, NULL); | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 		struct wlr_wl_input_device *wlr_wl_device = | 
					
						
							|  |  |  | 			(struct wlr_wl_input_device *)wlr_device; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 		wl_keyboard_add_listener(wl_keyboard, &keyboard_listener, wlr_device); | 
					
						
							| 
									
										
										
										
											2017-08-14 14:54:53 +02:00
										 |  |  | 		wlr_wl_device->resource = wl_keyboard; | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 		wl_signal_emit(&backend->backend.events.input_add, wlr_device); | 
					
						
							| 
									
										
										
										
											2017-04-25 19:33:13 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-25 19:19:21 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void seat_handle_name(void *data, struct wl_seat *wl_seat, const char *name) { | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 	struct wlr_wl_backend *backend = data; | 
					
						
							|  |  |  | 	assert(backend->seat == wl_seat); | 
					
						
							| 
									
										
										
										
											2017-08-12 01:19:45 +02:00
										 |  |  | 	// Do we need to check if seatName was previously set for name change?
 | 
					
						
							| 
									
										
										
										
											2017-08-12 11:43:36 -04:00
										 |  |  | 	free(backend->seat_name); | 
					
						
							|  |  |  | 	backend->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, | 
					
						
							|  |  |  | }; |