]> git.decadent.org.uk Git - ion3.git/blob - ioncore/cursor.h
8d03f7917af3c011a8bb8065b2f3ff120c4893c4
[ion3.git] / ioncore / cursor.h
1 /*
2  * ion/ioncore/cursor.h
3  *
4  * Copyright (c) Tuomo Valkonen 1999-2007. 
5  *
6  * Ion is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  */
11
12 #ifndef ION_IONCORE_CURSOR_H
13 #define ION_IONCORE_CURSOR_H
14
15 #include <X11/Xlib.h>
16 #include <X11/cursorfont.h>
17
18 #define IONCORE_CURSOR_DEFAULT 0
19 #define IONCORE_CURSOR_RESIZE  1
20 #define IONCORE_CURSOR_MOVE    2
21 #define IONCORE_CURSOR_DRAG    3
22 #define IONCORE_CURSOR_WAITKEY 4
23 #define IONCORE_N_CURSORS      5
24
25 extern void ioncore_init_cursors();
26 extern Cursor ioncore_xcursor(int cursor);
27
28 #endif /* ION_IONCORE_CURSOR_H */