aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/xcursor.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-11-08 14:53:08 -0500
committerTony Crisci <tony@dubstepdish.com>2017-11-08 14:53:08 -0500
commit992f931ae9319999f338298d8e0538f13ee388d7 (patch)
treea6c63be16aba861788f62103cf16f177f1d1532e /include/rootston/xcursor.h
parenta00b7f1e9bb992734f2498e597a86f1ca29b1d59 (diff)
rootston: cleanup for multiseat
Diffstat (limited to 'include/rootston/xcursor.h')
-rw-r--r--include/rootston/xcursor.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/rootston/xcursor.h b/include/rootston/xcursor.h
new file mode 100644
index 00000000..c96e50ef
--- /dev/null
+++ b/include/rootston/xcursor.h
@@ -0,0 +1,15 @@
+#ifndef _ROOTSTON_XCURSOR_H
+#define _ROOTSTON_XCURSOR_H
+
+#include <wlr/xcursor.h>
+
+struct wlr_xcursor *get_default_xcursor(struct wlr_xcursor_theme *theme);
+
+struct wlr_xcursor *get_move_xcursor(struct wlr_xcursor_theme *theme);
+
+struct wlr_xcursor *get_resize_xcursor(struct wlr_xcursor_theme *theme,
+ uint32_t edges);
+
+struct wlr_xcursor *get_rotate_xcursor(struct wlr_xcursor_theme *theme);
+
+#endif