2017-04-26 03:26:29 +02:00
|
|
|
#define _XOPEN_SOURCE 500
|
2017-04-26 01:33:13 +02:00
|
|
|
#include <assert.h>
|
2017-04-26 01:19:21 +02:00
|
|
|
#include <stdint.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
2017-04-26 03:26:29 +02:00
|
|
|
#include <string.h>
|
2017-04-26 01:19:21 +02:00
|
|
|
#include <wayland-client.h>
|
2017-06-21 16:27:45 +02: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 18:10:07 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-04-26 01:19:21 +02:00
|
|
|
#include "backend/wayland.h"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.h"
|
2017-04-26 01:19:21 +02:00
|
|
|
|
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-14 17:09:56 +02: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-12-13 21:48:59 +01:00
|
|
|
if (!output) {
|
|
|
|
// GNOME sends a pointer enter when the surface is being destroyed
|
|
|
|
return;
|
|
|
|
}
|
2017-08-14 15:55:48 +02:00
|
|
|
wlr_wl_pointer->current_output = output;
|
2017-10-29 17:43:26 +01:00
|
|
|
output->enter_serial = serial;
|
|
|
|
wlr_wl_output_update_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) {
|
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);
|
2017-10-31 18:00:33 +01:00
|
|
|
struct wlr_wl_pointer *wlr_wl_pointer =
|
|
|
|
(struct wlr_wl_pointer *)dev->pointer;
|
2017-08-14 15:55:48 +02:00
|
|
|
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-10-31 18:00:33 +01:00
|
|
|
|
2017-12-13 22:32:22 +01:00
|
|
|
struct wlr_output *wlr_output = &wlr_wl_pointer->current_output->wlr_output;
|
|
|
|
|
2018-01-26 22:11:09 +01: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,
|
2018-01-26 22:11:09 +01:00
|
|
|
&width, &height);
|
2017-12-14 20:31:18 +01:00
|
|
|
|
2018-01-26 22:11:09 +01:00
|
|
|
struct wlr_box box = {
|
|
|
|
.x = wl_fixed_to_int(surface_x),
|
|
|
|
.y = wl_fixed_to_int(surface_y),
|
|
|
|
};
|
2017-12-15 16:28:04 +01:00
|
|
|
struct wlr_box transformed;
|
2018-01-26 22:11:09 +01:00
|
|
|
wlr_box_transform(&box, wlr_output->transform, width, height, &transformed);
|
2017-12-15 16:28:04 +01:00
|
|
|
transformed.x /= wlr_output->scale;
|
|
|
|
transformed.y /= wlr_output->scale;
|
2017-12-13 22:32:22 +01:00
|
|
|
|
|
|
|
struct wlr_box layout_box;
|
2017-12-15 01:00:03 +01:00
|
|
|
wlr_wl_output_layout_get_box(wlr_wl_pointer->current_output->backend,
|
|
|
|
&layout_box);
|
2017-10-31 18:00:33 +01:00
|
|
|
|
2017-06-22 17:54:51 +02:00
|
|
|
struct wlr_event_pointer_motion_absolute wlr_event;
|
2017-08-24 20:35:55 +02:00
|
|
|
wlr_event.device = dev;
|
2017-10-30 11:40:06 +01:00
|
|
|
wlr_event.time_msec = time;
|
2017-12-13 22:32:22 +01:00
|
|
|
wlr_event.width_mm = layout_box.width;
|
|
|
|
wlr_event.height_mm = layout_box.height;
|
2017-12-28 15:09:57 +01:00
|
|
|
wlr_event.x_mm = transformed.x + wlr_output->lx - layout_box.x;
|
|
|
|
wlr_event.y_mm = transformed.y + wlr_output->ly - layout_box.y;
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&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;
|
2017-08-24 20:35:55 +02:00
|
|
|
wlr_event.device = dev;
|
2017-06-22 16:53:48 +02:00
|
|
|
wlr_event.button = button;
|
|
|
|
wlr_event.state = state;
|
2017-10-30 11:40:06 +01:00
|
|
|
wlr_event.time_msec = time;
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&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;
|
2017-08-24 20:35:55 +02:00
|
|
|
wlr_event.device = dev;
|
2017-11-05 13:00:27 +01:00
|
|
|
wlr_event.delta = wl_fixed_to_double(value);
|
2017-06-22 16:53:48 +02:00
|
|
|
wlr_event.orientation = axis;
|
2017-10-30 11:40:06 +01:00
|
|
|
wlr_event.time_msec = time;
|
2017-08-14 15:55:48 +02:00
|
|
|
wlr_event.source = wlr_wl_pointer->axis_source;
|
2018-02-12 09:12:31 +01:00
|
|
|
wlr_signal_emit_safe(&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) {
|
2017-09-24 20:12:56 +02:00
|
|
|
// TODO: set keymap
|
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) {
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
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 11:03:34 +02: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 11:03:34 +02: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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2018-02-12 10:36:43 +01:00
|
|
|
static void input_device_destroy(struct wlr_input_device *wlr_dev) {
|
|
|
|
struct wlr_wl_input_device *dev = (struct wlr_wl_input_device *)wlr_dev;
|
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-12-19 20:20:32 +01:00
|
|
|
bool wlr_input_device_is_wl(struct wlr_input_device *dev) {
|
|
|
|
return dev->impl == &input_device_impl;
|
|
|
|
}
|
|
|
|
|
2017-08-12 17:43:36 +02: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-08-16 09:23:21 +02:00
|
|
|
wlr_log_errno(L_ERROR, "Allocation failed");
|
2017-06-19 19:05:10 +02:00
|
|
|
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-10-14 22:33:00 +02:00
|
|
|
wl_list_insert(&backend->devices, &wlr_device->link);
|
2017-06-19 19:05:10 +02:00
|
|
|
return wlr_device;
|
|
|
|
}
|
|
|
|
|
2017-04-26 01:19:21 +02:00
|
|
|
static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,
|
|
|
|
enum wl_seat_capability caps) {
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_wl_backend *backend = data;
|
|
|
|
assert(backend->seat == wl_seat);
|
2017-04-26 01:33:13 +02: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 17:43:36 +02: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-26 01:33:13 +02: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-26 01:33:13 +02: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;
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_device);
|
2017-08-14 18:19:42 +02:00
|
|
|
backend->pointer = wl_pointer;
|
2017-06-19 19:05:10 +02:00
|
|
|
}
|
2017-04-26 01:33:13 +02: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 17:43:36 +02: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-08-15 07:56:47 +02:00
|
|
|
wlr_log(L_ERROR, "Unable to allocate wl_keyboard device");
|
2017-04-26 01:33:13 +02: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;
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_device);
|
2017-04-26 01:33:13 +02:00
|
|
|
}
|
2017-04-26 01:19:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void seat_handle_name(void *data, struct wl_seat *wl_seat, const char *name) {
|
2017-08-12 17:43:36 +02: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 17:43:36 +02:00
|
|
|
free(backend->seat_name);
|
|
|
|
backend->seat_name = strdup(name);
|
2017-04-26 01:19:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct wl_seat_listener seat_listener = {
|
|
|
|
.capabilities = seat_handle_capabilities,
|
|
|
|
.name = seat_handle_name,
|
|
|
|
};
|