aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-09 11:51:28 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-09 11:51:28 -0500
commit7c67bea942d44b93cf03c3223067d2668905a3c0 (patch)
treeb38e866cd7ec921eec8833915852cf3700101c7b /include/sway
parentinput include directory (diff)
downloadsway-7c67bea942d44b93cf03c3223067d2668905a3c0.tar.gz
sway-7c67bea942d44b93cf03c3223067d2668905a3c0.tar.zst
sway-7c67bea942d44b93cf03c3223067d2668905a3c0.zip
sway xcursor manager
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/input/cursor.h1
-rw-r--r--include/sway/input/seat.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h
index 91421964..aa873f46 100644
--- a/include/sway/input/cursor.h
+++ b/include/sway/input/cursor.h
@@ -5,6 +5,7 @@
5 5
6struct sway_cursor { 6struct sway_cursor {
7 struct wlr_cursor *cursor; 7 struct wlr_cursor *cursor;
8 struct wlr_xcursor_manager *xcursor_manager;
8 9
9 struct wl_listener motion; 10 struct wl_listener motion;
10 struct wl_listener motion_absolute; 11 struct wl_listener motion_absolute;
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index a84b7efd..f7f8a1bb 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -18,4 +18,6 @@ void sway_seat_add_device(struct sway_seat *seat,
18void sway_seat_remove_device(struct sway_seat *seat, 18void sway_seat_remove_device(struct sway_seat *seat,
19 struct wlr_input_device *device); 19 struct wlr_input_device *device);
20 20
21void sway_seat_configure_xcursor(struct sway_seat *seat);
22
21#endif 23#endif