trunk: changeset 1886
[notion/jeffpc.git] / ioncore / cursor.h
blob30d25509e70eed1bb7b1648ffc91ef379ce6ce5e
1 /*
2 * ion/ioncore/cursor.h
4 * Copyright (c) Tuomo Valkonen 1999-2004.
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.
12 #ifndef ION_IONCORE_CURSOR_H
13 #define ION_IONCORE_CURSOR_H
15 #include <X11/Xlib.h>
16 #include <X11/cursorfont.h>
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
25 extern void ioncore_init_cursors();
26 extern Cursor ioncore_xcursor(int cursor);
28 #endif /* ION_IONCORE_CURSOR_H */