aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h6
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 {
23 void (*rebase)(struct sway_seat *seat, uint32_t time_msec); 23 void (*rebase)(struct sway_seat *seat, uint32_t time_msec);
24 void (*tablet_tool_motion)(struct sway_seat *seat, 24 void (*tablet_tool_motion)(struct sway_seat *seat,
25 struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy); 25 struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy);
26 void (*tablet_tool_tip)(struct sway_seat *seat, struct sway_tablet_tool *tool,
27 uint32_t time_msec, enum wlr_tablet_tool_tip_state state);
26 void (*end)(struct sway_seat *seat); 28 void (*end)(struct sway_seat *seat);
27 void (*unref)(struct sway_seat *seat, struct sway_container *con); 29 void (*unref)(struct sway_seat *seat, struct sway_container *con);
28 void (*render)(struct sway_seat *seat, struct sway_output *output, 30 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,
269void seatop_pointer_axis(struct sway_seat *seat, 271void seatop_pointer_axis(struct sway_seat *seat,
270 struct wlr_event_pointer_axis *event); 272 struct wlr_event_pointer_axis *event);
271 273
274void seatop_tablet_tool_tip(struct sway_seat *seat,
275 struct sway_tablet_tool *tool, uint32_t time_msec,
276 enum wlr_tablet_tool_tip_state state);
277
272void seatop_tablet_tool_motion(struct sway_seat *seat, 278void seatop_tablet_tool_motion(struct sway_seat *seat,
273 struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy); 279 struct sway_tablet_tool *tool, uint32_t time_msec, double dx, double dy);
274 280