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>
|
2025-09-02 23:02:27 -04:00
|
|
|
#include "config/types.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;
|
|
|
|
|
|
2025-06-10 19:37:17 +02:00
|
|
|
struct drawing_tablet_tool {
|
|
|
|
|
struct seat *seat;
|
|
|
|
|
struct wlr_tablet_v2_tablet_tool *tool_v2;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Force mouse emulation just for a specific tool,
|
|
|
|
|
* even when global mouse emulation for tablet input
|
|
|
|
|
* is off.
|
|
|
|
|
*/
|
|
|
|
|
bool force_mouse_emulation;
|
|
|
|
|
|
2025-08-17 16:01:50 -04:00
|
|
|
enum lab_motion motion_mode;
|
2025-06-10 19:37:17 +02:00
|
|
|
double x, y, dx, dy;
|
|
|
|
|
double distance;
|
|
|
|
|
double pressure;
|
|
|
|
|
double tilt_x, tilt_y;
|
|
|
|
|
double rotation;
|
|
|
|
|
double slider;
|
|
|
|
|
double wheel_delta;
|
|
|
|
|
struct {
|
|
|
|
|
struct wl_listener set_cursor;
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
} handlers;
|
|
|
|
|
struct wl_list link; /* seat.tablet_tools */
|
|
|
|
|
};
|
|
|
|
|
|
2023-12-01 22:12:00 +01:00
|
|
|
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
|
|
|
struct {
|
|
|
|
|
struct wl_listener destroy;
|
|
|
|
|
} handlers;
|
2024-06-04 20:14:30 +02:00
|
|
|
struct wl_list link; /* seat.tablets */
|
2023-12-01 22:12:00 +01:00
|
|
|
};
|
|
|
|
|
|
2024-08-09 09:25:00 +02:00
|
|
|
void tablet_init(struct seat *seat);
|
|
|
|
|
void tablet_finish(struct seat *seat);
|
|
|
|
|
void tablet_create(struct seat *seat, struct wlr_input_device *wlr_input_device);
|
2025-06-10 19:37:17 +02:00
|
|
|
bool tablet_tool_has_focused_surface(struct seat *seat);
|
2023-12-01 22:12:00 +01:00
|
|
|
|
2023-12-29 10:10:41 +01:00
|
|
|
#endif /* LABWC_TABLET_H */
|