2023-12-01 22:12:00 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2023-12-29 10:10:41 +01:00
|
|
|
#ifndef LABWC_TABLET_H
|
|
|
|
|
#define LABWC_TABLET_H
|
2023-12-01 22:12:00 +01:00
|
|
|
|
|
|
|
|
#include <wayland-server-core.h>
|
2024-04-20 11:40:23 +02:00
|
|
|
#include <wlr/types/wlr_tablet_v2.h>
|
2024-01-07 22:15:25 +01:00
|
|
|
|
2023-12-01 22:12:00 +01:00
|
|
|
struct seat;
|
|
|
|
|
struct wlr_device;
|
|
|
|
|
struct wlr_input_device;
|
|
|
|
|
|
|
|
|
|
struct drawing_tablet {
|
2024-04-20 11:40:23 +02:00
|
|
|
struct wlr_input_device *wlr_input_device;
|
2023-12-01 22:12:00 +01:00
|
|
|
struct seat *seat;
|
|
|
|
|
struct wlr_tablet *tablet;
|
2024-04-20 11:40:23 +02:00
|
|
|
struct wlr_tablet_v2_tablet *tablet_v2;
|
2023-12-01 22:12:00 +01:00
|
|
|
double x, y;
|
2024-06-06 17:41:05 +02:00
|
|
|
double distance;
|
|
|
|
|
double pressure;
|
2024-04-20 11:50:33 +02:00
|
|
|
double tilt_x, tilt_y;
|
2024-06-06 17:41:05 +02:00
|
|
|
double rotation;
|
|
|
|
|
double slider;
|
|
|
|
|
double wheel_delta;
|
2023-12-01 22:12:00 +01:00
|
|
|
struct {
|
2024-05-07 19:35:44 +02:00
|
|
|
struct wl_listener proximity;
|
2023-12-01 22:12:00 +01:00
|
|
|
struct wl_listener axis;
|
|
|
|
|
struct wl_listener tip;
|
|
|
|
|
struct wl_listener button;
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
} handlers;
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-02 18:26:25 +01:00
|
|
|
void tablet_init(struct seat *seat, struct wlr_input_device *wlr_input_device);
|
2023-12-01 22:12:00 +01:00
|
|
|
|
2023-12-29 10:10:41 +01:00
|
|
|
#endif /* LABWC_TABLET_H */
|