aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/xcursor.h
blob: c96e50effd94e7f79c531eeb4d87727bd84d4c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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