diff options
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/input/seat.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h index 66f8f7e4..e313a206 100644 --- a/include/sway/input/seat.h +++ b/include/sway/input/seat.h @@ -23,6 +23,8 @@ struct sway_seatop_impl { void (*rebase)(struct sway_seat *seat, uint32_t time_msec); void (*tablet_tool_motion)(struct sway_seat *seat, struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy); + void (*tablet_tool_tip)(struct sway_seat *seat, struct sway_tablet_tool *tool, + uint32_t time_msec, enum wlr_tablet_tool_tip_state state); 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, @@ -269,6 +271,10 @@ void seatop_pointer_motion(struct sway_seat *seat, uint32_t time_msec, void seatop_pointer_axis(struct sway_seat *seat, struct wlr_event_pointer_axis *event); +void seatop_tablet_tool_tip(struct sway_seat *seat, + struct sway_tablet_tool *tool, uint32_t time_msec, + enum wlr_tablet_tool_tip_state state); + void seatop_tablet_tool_motion(struct sway_seat *seat, struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy); |