i3
Main Page
Data Structures
Files
File List
Globals
include
xcursor.h
Go to the documentation of this file.
1
/*
2
* vim:ts=4:sw=4:expandtab
3
*
4
* i3 - an improved dynamic tiling window manager
5
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6
*
7
* xcursor.c: libXcursor support for themed cursors.
8
*
9
*/
10
#ifndef _XCURSOR_CURSOR_H
11
#define _XCURSOR_CURSOR_H
12
13
#include <X11/Xlib.h>
14
15
enum
xcursor_cursor_t
{
16
XCURSOR_CURSOR_POINTER
= 0,
17
XCURSOR_CURSOR_RESIZE_HORIZONTAL
,
18
XCURSOR_CURSOR_RESIZE_VERTICAL
,
19
XCURSOR_CURSOR_WATCH
,
20
XCURSOR_CURSOR_MAX
21
};
22
23
void
xcursor_load_cursors
(
void
);
24
Cursor
xcursor_get_cursor
(
enum
xcursor_cursor_t
c);
25
int
xcursor_get_xcb_cursor
(
enum
xcursor_cursor_t
c);
26
38
void
xcursor_set_root_cursor
(
int
cursor_id);
39
40
#endif
Generated by
1.8.3.1