From ae3ec745f84c1efb643d61c0fc9a345745c07da5 Mon Sep 17 00:00:00 2001 From: Tudor Brindus Date: Sat, 25 Apr 2020 17:57:47 -0400 Subject: input: refactor tablet motion into seatop handler This commit moves tablet motion logic into a seatop handler. As a side-effect of seatop implementations being able to receive tablet motion events, fixes #5232. --- include/sway/input/seat.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include') diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h index ad7cac75..1e255b47 100644 --- a/include/sway/input/seat.h +++ b/include/sway/input/seat.h @@ -7,6 +7,7 @@ #include #include "sway/config.h" #include "sway/input/input-manager.h" +#include "sway/input/tablet.h" #include "sway/input/text_input.h" struct sway_seat; @@ -19,6 +20,8 @@ struct sway_seatop_impl { double dx, double dy); void (*axis)(struct sway_seat *seat, struct wlr_event_pointer_axis *event); void (*rebase)(struct sway_seat *seat, uint32_t time_msec); + void (*tablet_tool_motion)(struct sway_seat *seat, struct sway_tablet *tablet, + struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy); void (*end)(struct sway_seat *seat); void (*unref)(struct sway_seat *seat, struct sway_container *con); void (*render)(struct sway_seat *seat, struct sway_output *output, @@ -261,6 +264,10 @@ void seatop_button(struct sway_seat *seat, uint32_t time_msec, void seatop_motion(struct sway_seat *seat, uint32_t time_msec, double dx, double dy); +void seatop_tablet_tool_motion(struct sway_seat *seat, + struct sway_tablet *tablet, struct sway_tablet_tool *tool, + uint32_t time_msec, double dx, double dy); + void seatop_axis(struct sway_seat *seat, struct wlr_event_pointer_axis *event); void seatop_rebase(struct sway_seat *seat, uint32_t time_msec); -- cgit v1.2.3