aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Simon Zeni <simon@bl4ckb0ne.ca>2022-03-09 16:50:20 -0500
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2022-03-17 21:52:59 +0300
commit440d0bc22d57b8b0b21a8acbf127243b8d08cfae (patch)
treeb7988cd9caef571636f775a78c8e39f95b610d0a /include
parentsway/input/seat: take output name from specialized input device (diff)
downloadsway-440d0bc22d57b8b0b21a8acbf127243b8d08cfae.tar.gz
sway-440d0bc22d57b8b0b21a8acbf127243b8d08cfae.tar.zst
sway-440d0bc22d57b8b0b21a8acbf127243b8d08cfae.zip
sway/input: follow up wlroots input device events renaming
Diffstat (limited to 'include')
-rw-r--r--include/sway/input/cursor.h2
-rw-r--r--include/sway/input/seat.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h
index cd4d9270..3a71a35f 100644
--- a/include/sway/input/cursor.h
+++ b/include/sway/input/cursor.h
@@ -112,7 +112,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
112 enum wlr_button_state state); 112 enum wlr_button_state state);
113 113
114void dispatch_cursor_axis(struct sway_cursor *cursor, 114void dispatch_cursor_axis(struct sway_cursor *cursor,
115 struct wlr_event_pointer_axis *event); 115 struct wlr_pointer_axis_event *event);
116 116
117void cursor_set_image(struct sway_cursor *cursor, const char *image, 117void cursor_set_image(struct sway_cursor *cursor, const char *image,
118 struct wl_client *client); 118 struct wl_client *client);
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index 77c2278d..50c4be9b 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -18,7 +18,7 @@ struct sway_seatop_impl {
18 enum wlr_button_state state); 18 enum wlr_button_state state);
19 void (*pointer_motion)(struct sway_seat *seat, uint32_t time_msec); 19 void (*pointer_motion)(struct sway_seat *seat, uint32_t time_msec);
20 void (*pointer_axis)(struct sway_seat *seat, 20 void (*pointer_axis)(struct sway_seat *seat,
21 struct wlr_event_pointer_axis *event); 21 struct wlr_pointer_axis_event *event);
22 void (*rebase)(struct sway_seat *seat, uint32_t time_msec); 22 void (*rebase)(struct sway_seat *seat, uint32_t time_msec);
23 void (*tablet_tool_motion)(struct sway_seat *seat, 23 void (*tablet_tool_motion)(struct sway_seat *seat,
24 struct sway_tablet_tool *tool, uint32_t time_msec); 24 struct sway_tablet_tool *tool, uint32_t time_msec);
@@ -274,7 +274,7 @@ void seatop_button(struct sway_seat *seat, uint32_t time_msec,
274void seatop_pointer_motion(struct sway_seat *seat, uint32_t time_msec); 274void seatop_pointer_motion(struct sway_seat *seat, uint32_t time_msec);
275 275
276void seatop_pointer_axis(struct sway_seat *seat, 276void seatop_pointer_axis(struct sway_seat *seat,
277 struct wlr_event_pointer_axis *event); 277 struct wlr_pointer_axis_event *event);
278 278
279void seatop_tablet_tool_tip(struct sway_seat *seat, 279void seatop_tablet_tool_tip(struct sway_seat *seat,
280 struct sway_tablet_tool *tool, uint32_t time_msec, 280 struct sway_tablet_tool *tool, uint32_t time_msec,