2017-06-19 20:49:07 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <libinput.h>
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/types/wlr_input_device.h>
|
|
|
|
#include <wlr/interfaces/wlr_tablet_pad.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-06-19 20:49:07 +02:00
|
|
|
#include "backend/libinput.h"
|
|
|
|
|
|
|
|
struct wlr_tablet_pad *wlr_libinput_tablet_pad_create(
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev) {
|
|
|
|
assert(libinput_dev);
|
2017-08-14 15:59:59 +02:00
|
|
|
struct wlr_tablet_pad *wlr_tablet_pad = calloc(1, sizeof(struct wlr_tablet_pad));
|
|
|
|
if (!wlr_tablet_pad) {
|
|
|
|
wlr_log(L_ERROR, "Unable to allocate wlr_tablet_pad");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
wlr_tablet_pad_init(wlr_tablet_pad, NULL);
|
|
|
|
return wlr_tablet_pad;
|
2017-06-19 20:49:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_tablet_pad_button(struct libinput_event *event,
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev) {
|
|
|
|
struct wlr_input_device *wlr_dev =
|
|
|
|
get_appropriate_device(WLR_INPUT_DEVICE_TABLET_PAD, libinput_dev);
|
|
|
|
if (!wlr_dev) {
|
2017-06-19 20:49:07 +02:00
|
|
|
wlr_log(L_DEBUG, "Got a tablet pad event for a device with no tablet pad?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct libinput_event_tablet_pad *pevent =
|
|
|
|
libinput_event_get_tablet_pad_event(event);
|
2017-08-11 18:38:27 +02:00
|
|
|
struct wlr_event_tablet_pad_button wlr_event = { 0 };
|
2017-10-30 20:43:06 +01:00
|
|
|
wlr_event.time_msec =
|
|
|
|
usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent));
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.button = libinput_event_tablet_pad_get_button_number(pevent);
|
2017-06-19 20:49:07 +02:00
|
|
|
switch (libinput_event_tablet_pad_get_button_state(pevent)) {
|
|
|
|
case LIBINPUT_BUTTON_STATE_PRESSED:
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.state = WLR_BUTTON_PRESSED;
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_BUTTON_STATE_RELEASED:
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.state = WLR_BUTTON_RELEASED;
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
wl_signal_emit(&wlr_dev->tablet_pad->events.button, &wlr_event);
|
2017-06-19 20:49:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_tablet_pad_ring(struct libinput_event *event,
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev) {
|
|
|
|
struct wlr_input_device *wlr_dev =
|
|
|
|
get_appropriate_device(WLR_INPUT_DEVICE_TABLET_PAD, libinput_dev);
|
|
|
|
if (!wlr_dev) {
|
2017-06-19 20:49:07 +02:00
|
|
|
wlr_log(L_DEBUG, "Got a tablet pad event for a device with no tablet pad?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct libinput_event_tablet_pad *pevent =
|
|
|
|
libinput_event_get_tablet_pad_event(event);
|
2017-08-11 18:38:27 +02:00
|
|
|
struct wlr_event_tablet_pad_ring wlr_event = { 0 };
|
2017-10-30 20:43:06 +01:00
|
|
|
wlr_event.time_msec =
|
|
|
|
usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent));
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.ring = libinput_event_tablet_pad_get_ring_number(pevent);
|
|
|
|
wlr_event.position = libinput_event_tablet_pad_get_ring_position(pevent);
|
2017-06-19 20:49:07 +02:00
|
|
|
switch (libinput_event_tablet_pad_get_ring_source(pevent)) {
|
|
|
|
case LIBINPUT_TABLET_PAD_RING_SOURCE_UNKNOWN:
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.source = WLR_TABLET_PAD_RING_SOURCE_UNKNOWN;
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_TABLET_PAD_RING_SOURCE_FINGER:
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.source = WLR_TABLET_PAD_RING_SOURCE_FINGER;
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
wl_signal_emit(&wlr_dev->tablet_pad->events.ring, &wlr_event);
|
2017-06-19 20:49:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void handle_tablet_pad_strip(struct libinput_event *event,
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput_device *libinput_dev) {
|
|
|
|
struct wlr_input_device *wlr_dev =
|
|
|
|
get_appropriate_device(WLR_INPUT_DEVICE_TABLET_PAD, libinput_dev);
|
|
|
|
if (!wlr_dev) {
|
2017-06-19 20:49:07 +02:00
|
|
|
wlr_log(L_DEBUG, "Got a tablet pad event for a device with no tablet pad?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct libinput_event_tablet_pad *pevent =
|
|
|
|
libinput_event_get_tablet_pad_event(event);
|
2017-08-11 18:38:27 +02:00
|
|
|
struct wlr_event_tablet_pad_strip wlr_event = { 0 };
|
2017-10-30 20:43:06 +01:00
|
|
|
wlr_event.time_msec =
|
|
|
|
usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent));
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.strip = libinput_event_tablet_pad_get_strip_number(pevent);
|
|
|
|
wlr_event.position = libinput_event_tablet_pad_get_strip_position(pevent);
|
2017-06-19 20:49:07 +02:00
|
|
|
switch (libinput_event_tablet_pad_get_strip_source(pevent)) {
|
|
|
|
case LIBINPUT_TABLET_PAD_STRIP_SOURCE_UNKNOWN:
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.source = WLR_TABLET_PAD_STRIP_SOURCE_UNKNOWN;
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
case LIBINPUT_TABLET_PAD_STRIP_SOURCE_FINGER:
|
2017-08-11 18:38:27 +02:00
|
|
|
wlr_event.source = WLR_TABLET_PAD_STRIP_SOURCE_FINGER;
|
2017-06-19 20:49:07 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-08-13 00:50:09 +02:00
|
|
|
wl_signal_emit(&wlr_dev->tablet_pad->events.strip, &wlr_event);
|
2017-06-19 20:49:07 +02:00
|
|
|
}
|