aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/xcursor.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-11-11 10:11:31 -0500
committerGitHub <noreply@github.com>2017-11-11 10:11:31 -0500
commita538ef33c1f27d5180117933bee40ecd93fbea7a (patch)
treebe639c73a782ecfd680dabc31d3a4e4208cba61f /include/rootston/xcursor.h
parent78ed7f3c8983191b0b6399d4c66f5524a23f216a (diff)
parent2a9dc60f28616211370fcd48de8c75ef17282d2e (diff)
Merge pull request #384 from acrisci/feature/multiseat
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