wlroots-hyprland/backend/libinput/tablet_pad.c

182 lines
6.2 KiB
C
Raw Normal View History

2018-04-24 08:10:45 +02:00
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200809L
#endif
2017-06-19 20:49:07 +02:00
#include <assert.h>
2018-04-24 08:10:45 +02:00
#include <string.h>
2017-06-19 20:49:07 +02:00
#include <libinput.h>
2018-02-12 21:29:23 +01:00
#include <stdlib.h>
2017-07-11 09:18:34 +02:00
#include <wlr/backend/session.h>
2017-06-21 16:27:45 +02:00
#include <wlr/interfaces/wlr_tablet_pad.h>
2018-02-12 21:29:23 +01:00
#include <wlr/types/wlr_input_device.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"
2018-02-12 21:29:23 +01:00
#include "util/signal.h"
2017-06-19 20:49:07 +02:00
2018-04-24 08:10:45 +02:00
// FIXME: Decide on how to alloc/count here
2018-04-23 08:55:49 +02:00
static void add_pad_group_from_libinput(struct wlr_tablet_pad *pad,
struct libinput_device *device, unsigned int index) {
struct libinput_tablet_pad_mode_group *li_group =
libinput_device_tablet_pad_get_mode_group(device, index);
2018-04-24 08:10:45 +02:00
struct wlr_tablet_pad_group *group =
calloc(1, sizeof(struct wlr_tablet_pad_group));
2018-04-23 08:55:49 +02:00
if (!group) {
return;
}
for (size_t i = 0; i < pad->ring_count; ++i) {
if (libinput_tablet_pad_mode_group_has_ring(li_group, i)) {
++group->ring_count;
}
}
group->rings = calloc(sizeof(unsigned int), group->ring_count);
2018-04-23 08:55:49 +02:00
size_t ring = 0;
for (size_t i = 0; i < pad->ring_count; ++i) {
if (libinput_tablet_pad_mode_group_has_ring(li_group, i)) {
group->rings[ring++] = i;
}
}
for (size_t i = 0; i < pad->strip_count; ++i) {
if (libinput_tablet_pad_mode_group_has_strip(li_group, i)) {
++group->strip_count;
}
}
group->strips = calloc(sizeof(unsigned int), group->strip_count);
2018-04-23 08:55:49 +02:00
size_t strip = 0;
for (size_t i = 0; i < pad->strip_count; ++i) {
if (libinput_tablet_pad_mode_group_has_strip(li_group, i)) {
group->strips[strip++] = i;
}
}
for (size_t i = 0; i < pad->button_count; ++i) {
if (libinput_tablet_pad_mode_group_has_button(li_group, i)) {
++group->button_count;
}
}
group->buttons = calloc(sizeof(unsigned int), group->button_count);
2018-04-23 08:55:49 +02:00
size_t button = 0;
for (size_t i = 0; i < pad->button_count; ++i) {
if (libinput_tablet_pad_mode_group_has_button(li_group, i)) {
group->buttons[button++] = i;
}
}
group->mode_count = libinput_tablet_pad_mode_group_get_num_modes(li_group);
wl_list_insert(&pad->groups, &group->link);
}
2018-05-04 16:40:41 +02:00
struct wlr_tablet_pad *create_libinput_tablet_pad(
struct libinput_device *libinput_dev) {
assert(libinput_dev);
2018-09-17 21:53:03 +02:00
struct wlr_tablet_pad *wlr_tablet_pad =
calloc(1, sizeof(struct wlr_tablet_pad));
2017-08-14 15:59:59 +02:00
if (!wlr_tablet_pad) {
2018-07-09 23:49:54 +02:00
wlr_log(WLR_ERROR, "Unable to allocate wlr_tablet_pad");
2017-08-14 15:59:59 +02:00
return NULL;
}
wlr_tablet_pad_init(wlr_tablet_pad, NULL);
2018-04-23 08:55:49 +02:00
wlr_tablet_pad->button_count =
libinput_device_tablet_pad_get_num_buttons(libinput_dev);
wlr_tablet_pad->ring_count =
libinput_device_tablet_pad_get_num_rings(libinput_dev);
wlr_tablet_pad->strip_count =
libinput_device_tablet_pad_get_num_strips(libinput_dev);
2018-04-24 08:10:45 +02:00
struct udev_device *udev = libinput_device_get_udev_device(libinput_dev);
wlr_list_push(&wlr_tablet_pad->paths, strdup(udev_device_get_syspath(udev)));
2018-04-23 08:55:49 +02:00
int groups = libinput_device_tablet_pad_get_num_mode_groups(libinput_dev);
for (int i = 0; i < groups; ++i) {
add_pad_group_from_libinput(wlr_tablet_pad, libinput_dev, i);
}
2017-08-14 15:59:59 +02:00
return wlr_tablet_pad;
2017-06-19 20:49:07 +02:00
}
void handle_tablet_pad_button(struct libinput_event *event,
struct libinput_device *libinput_dev) {
struct wlr_input_device *wlr_dev =
get_appropriate_device(WLR_INPUT_DEVICE_TABLET_PAD, libinput_dev);
if (!wlr_dev) {
2018-09-17 21:53:03 +02:00
wlr_log(WLR_DEBUG,
"Got a tablet pad event for a device with no tablet pad?");
2017-06-19 20:49:07 +02:00
return;
}
struct libinput_event_tablet_pad *pevent =
libinput_event_get_tablet_pad_event(event);
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));
wlr_event.button = libinput_event_tablet_pad_get_button_number(pevent);
wlr_event.mode = libinput_event_tablet_pad_get_mode(pevent);
wlr_event.group = libinput_tablet_pad_mode_group_get_index(
libinput_event_tablet_pad_get_mode_group(pevent));
2017-06-19 20:49:07 +02:00
switch (libinput_event_tablet_pad_get_button_state(pevent)) {
case LIBINPUT_BUTTON_STATE_PRESSED:
wlr_event.state = WLR_BUTTON_PRESSED;
2017-06-19 20:49:07 +02:00
break;
case LIBINPUT_BUTTON_STATE_RELEASED:
wlr_event.state = WLR_BUTTON_RELEASED;
2017-06-19 20:49:07 +02:00
break;
}
2018-02-12 09:12:31 +01:00
wlr_signal_emit_safe(&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,
struct libinput_device *libinput_dev) {
struct wlr_input_device *wlr_dev =
get_appropriate_device(WLR_INPUT_DEVICE_TABLET_PAD, libinput_dev);
if (!wlr_dev) {
2018-09-17 21:53:03 +02:00
wlr_log(WLR_DEBUG,
"Got a tablet pad event for a device with no tablet pad?");
2017-06-19 20:49:07 +02:00
return;
}
struct libinput_event_tablet_pad *pevent =
libinput_event_get_tablet_pad_event(event);
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));
wlr_event.ring = libinput_event_tablet_pad_get_ring_number(pevent);
wlr_event.position = libinput_event_tablet_pad_get_ring_position(pevent);
wlr_event.mode = libinput_event_tablet_pad_get_mode(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:
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:
wlr_event.source = WLR_TABLET_PAD_RING_SOURCE_FINGER;
2017-06-19 20:49:07 +02:00
break;
}
2018-02-12 09:12:31 +01:00
wlr_signal_emit_safe(&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,
struct libinput_device *libinput_dev) {
struct wlr_input_device *wlr_dev =
get_appropriate_device(WLR_INPUT_DEVICE_TABLET_PAD, libinput_dev);
if (!wlr_dev) {
2018-09-17 21:53:03 +02:00
wlr_log(WLR_DEBUG,
"Got a tablet pad event for a device with no tablet pad?");
2017-06-19 20:49:07 +02:00
return;
}
struct libinput_event_tablet_pad *pevent =
libinput_event_get_tablet_pad_event(event);
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));
wlr_event.strip = libinput_event_tablet_pad_get_strip_number(pevent);
wlr_event.position = libinput_event_tablet_pad_get_strip_position(pevent);
wlr_event.mode = libinput_event_tablet_pad_get_mode(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:
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:
wlr_event.source = WLR_TABLET_PAD_STRIP_SOURCE_FINGER;
2017-06-19 20:49:07 +02:00
break;
}
2018-02-12 09:12:31 +01:00
wlr_signal_emit_safe(&wlr_dev->tablet_pad->events.strip, &wlr_event);
2017-06-19 20:49:07 +02:00
}