2017-06-14 15:40:03 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <libinput.h>
|
2017-06-21 14:27:45 +00:00
|
|
|
#include <wlr/interfaces/wlr_touch.h>
|
2017-06-14 15:40:03 +00:00
|
|
|
#include "backend/libinput.h"
|
|
|
|
|
2022-02-23 19:06:02 +00:00
|
|
|
const struct wlr_touch_impl libinput_touch_impl = {
|
2022-03-02 21:07:40 +00:00
|
|
|
.name = "libinput-touch",
|
2022-02-23 19:06:02 +00:00
|
|
|
};
|
2022-02-09 21:03:12 +00:00
|
|
|
|
2022-02-23 19:06:02 +00:00
|
|
|
void init_device_touch(struct wlr_libinput_input_device *dev) {
|
|
|
|
const char *name = libinput_device_get_name(dev->handle);
|
|
|
|
struct wlr_touch *wlr_touch = &dev->touch;
|
2022-02-09 21:03:12 +00:00
|
|
|
wlr_touch_init(wlr_touch, &libinput_touch_impl, name);
|
2022-02-23 19:06:02 +00:00
|
|
|
wlr_touch->base.vendor = libinput_device_get_id_vendor(dev->handle);
|
|
|
|
wlr_touch->base.product = libinput_device_get_id_product(dev->handle);
|
2022-03-08 21:54:28 +00:00
|
|
|
|
|
|
|
libinput_device_get_size(dev->handle, &wlr_touch->width_mm,
|
|
|
|
&wlr_touch->height_mm);
|
2022-02-23 19:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_libinput_input_device *device_from_touch(
|
|
|
|
struct wlr_touch *wlr_touch) {
|
|
|
|
assert(wlr_touch->impl == &libinput_touch_impl);
|
|
|
|
|
|
|
|
struct wlr_libinput_input_device *dev =
|
|
|
|
wl_container_of(wlr_touch, dev, touch);
|
|
|
|
return dev;
|
2017-06-14 15:40:03 +00:00
|
|
|
}
|
2017-06-14 18:50:09 +00:00
|
|
|
|
|
|
|
void handle_touch_down(struct libinput_event *event,
|
2022-02-23 19:06:02 +00:00
|
|
|
struct wlr_touch *touch) {
|
2017-06-14 18:50:09 +00:00
|
|
|
struct libinput_event_touch *tevent =
|
|
|
|
libinput_event_get_touch_event(event);
|
2022-03-09 21:01:14 +00:00
|
|
|
struct wlr_touch_down_event wlr_event = { 0 };
|
|
|
|
wlr_event.touch = touch;
|
2017-10-30 19:43:06 +00:00
|
|
|
wlr_event.time_msec =
|
|
|
|
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
|
2019-08-15 13:49:46 +00:00
|
|
|
wlr_event.touch_id = libinput_event_touch_get_seat_slot(tevent);
|
2018-03-28 15:04:40 +00:00
|
|
|
wlr_event.x = libinput_event_touch_get_x_transformed(tevent, 1);
|
|
|
|
wlr_event.y = libinput_event_touch_get_y_transformed(tevent, 1);
|
2022-08-18 11:16:16 +00:00
|
|
|
wl_signal_emit_mutable(&touch->events.down, &wlr_event);
|
2017-06-14 18:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_touch_up(struct libinput_event *event,
|
2022-02-23 19:06:02 +00:00
|
|
|
struct wlr_touch *touch) {
|
2017-06-14 18:50:09 +00:00
|
|
|
struct libinput_event_touch *tevent =
|
|
|
|
libinput_event_get_touch_event(event);
|
2022-03-09 21:01:14 +00:00
|
|
|
struct wlr_touch_up_event wlr_event = { 0 };
|
|
|
|
wlr_event.touch = touch;
|
2017-10-30 19:43:06 +00:00
|
|
|
wlr_event.time_msec =
|
|
|
|
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
|
2019-08-19 14:13:52 +00:00
|
|
|
wlr_event.touch_id = libinput_event_touch_get_seat_slot(tevent);
|
2022-08-18 11:16:16 +00:00
|
|
|
wl_signal_emit_mutable(&touch->events.up, &wlr_event);
|
2017-06-14 18:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_touch_motion(struct libinput_event *event,
|
2022-02-23 19:06:02 +00:00
|
|
|
struct wlr_touch *touch) {
|
2017-06-14 18:50:09 +00:00
|
|
|
struct libinput_event_touch *tevent =
|
|
|
|
libinput_event_get_touch_event(event);
|
2022-03-09 21:01:14 +00:00
|
|
|
struct wlr_touch_motion_event wlr_event = { 0 };
|
|
|
|
wlr_event.touch = touch;
|
2017-10-30 19:43:06 +00:00
|
|
|
wlr_event.time_msec =
|
|
|
|
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
|
2019-08-19 14:13:52 +00:00
|
|
|
wlr_event.touch_id = libinput_event_touch_get_seat_slot(tevent);
|
2018-03-28 15:04:40 +00:00
|
|
|
wlr_event.x = libinput_event_touch_get_x_transformed(tevent, 1);
|
|
|
|
wlr_event.y = libinput_event_touch_get_y_transformed(tevent, 1);
|
2022-08-18 11:16:16 +00:00
|
|
|
wl_signal_emit_mutable(&touch->events.motion, &wlr_event);
|
2017-06-14 18:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_touch_cancel(struct libinput_event *event,
|
2022-02-23 19:06:02 +00:00
|
|
|
struct wlr_touch *touch) {
|
2017-06-14 18:50:09 +00:00
|
|
|
struct libinput_event_touch *tevent =
|
|
|
|
libinput_event_get_touch_event(event);
|
2022-03-09 21:01:14 +00:00
|
|
|
struct wlr_touch_cancel_event wlr_event = { 0 };
|
|
|
|
wlr_event.touch = touch;
|
2017-10-30 19:43:06 +00:00
|
|
|
wlr_event.time_msec =
|
|
|
|
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
|
2019-08-19 14:13:52 +00:00
|
|
|
wlr_event.touch_id = libinput_event_touch_get_seat_slot(tevent);
|
2022-08-18 11:16:16 +00:00
|
|
|
wl_signal_emit_mutable(&touch->events.cancel, &wlr_event);
|
2017-06-14 18:50:09 +00:00
|
|
|
}
|
2021-06-30 09:39:17 +00:00
|
|
|
|
|
|
|
void handle_touch_frame(struct libinput_event *event,
|
2022-02-23 19:06:02 +00:00
|
|
|
struct wlr_touch *touch) {
|
2022-08-18 11:16:16 +00:00
|
|
|
wl_signal_emit_mutable(&touch->events.frame, NULL);
|
2021-06-30 09:39:17 +00:00
|
|
|
}
|