mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
16 lines
402 B
C
16 lines
402 B
C
|
|
#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
|