diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-08 06:11:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-08 06:11:27 -0500 |
commit | 703df2a6711322fac90581f2005750b5a72dd148 (patch) | |
tree | 96bf5e33d9c5d95842ba7813f5e37c28693d52ae /include/wlr | |
parent | f469784bbc73bf6346430a2caa7dc366ad2d0308 (diff) | |
parent | 4c60072be584a7ed5b97de325994217a9e96bbd4 (diff) |
Merge pull request #470 from acrisci/feature/xcursor-edges
wlr-edges
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/util/edges.h | 12 | ||||
-rw-r--r-- | include/wlr/xcursor.h | 6 |
2 files changed, 18 insertions, 0 deletions
diff --git a/include/wlr/util/edges.h b/include/wlr/util/edges.h new file mode 100644 index 00000000..53268323 --- /dev/null +++ b/include/wlr/util/edges.h @@ -0,0 +1,12 @@ +#ifndef WLR_UTIL_EDGES_H +#define WLR_UTIL_EDGES_H + +enum wlr_edges { + WLR_EDGE_NONE = 0, + WLR_EDGE_TOP = 1, + WLR_EDGE_BOTTOM = 2, + WLR_EDGE_LEFT = 4, + WLR_EDGE_RIGHT = 8, +}; + +#endif diff --git a/include/wlr/xcursor.h b/include/wlr/xcursor.h index b6362b06..42fcedb9 100644 --- a/include/wlr/xcursor.h +++ b/include/wlr/xcursor.h @@ -32,6 +32,7 @@ #define WLR_XCURSOR_H #include <stdint.h> +#include <wlr/util/edges.h> struct wlr_xcursor_image { uint32_t width; /* actual width */ @@ -65,4 +66,9 @@ struct wlr_xcursor *wlr_xcursor_theme_get_cursor( int wlr_xcursor_frame(struct wlr_xcursor *cursor, uint32_t time); +/** + * Get the name of the resize cursor image for the given edges. + */ +const char *wlr_xcursor_get_resize_name(enum wlr_edges edges); + #endif |