Revision 773,
841 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Line | |
---|
1 | // This is likely to change! |
---|
2 | |
---|
3 | #ifndef fltk_Cursor_h |
---|
4 | #define fltk_Cursor_h |
---|
5 | |
---|
6 | #include "FL_API.h" |
---|
7 | |
---|
8 | namespace fltk { |
---|
9 | |
---|
10 | struct Cursor; // this is not public |
---|
11 | |
---|
12 | class Image; |
---|
13 | Cursor* cursor(Image*, int x, int y); |
---|
14 | extern FL_API Cursor* cursor(void *raw); |
---|
15 | |
---|
16 | extern FL_API Cursor* const CURSOR_DEFAULT; // == NULL |
---|
17 | extern FL_API Cursor* const CURSOR_ARROW; |
---|
18 | extern FL_API Cursor* const CURSOR_CROSS; |
---|
19 | extern FL_API Cursor* const CURSOR_WAIT; |
---|
20 | extern FL_API Cursor* const CURSOR_INSERT; |
---|
21 | extern FL_API Cursor* const CURSOR_HAND; |
---|
22 | extern FL_API Cursor* const CURSOR_HELP; |
---|
23 | extern FL_API Cursor* const CURSOR_MOVE; |
---|
24 | extern FL_API Cursor* const CURSOR_NS; |
---|
25 | extern FL_API Cursor* const CURSOR_WE; |
---|
26 | extern FL_API Cursor* const CURSOR_NWSE; |
---|
27 | extern FL_API Cursor* const CURSOR_NESW; |
---|
28 | extern FL_API Cursor* const CURSOR_NO; |
---|
29 | extern FL_API Cursor* const CURSOR_NONE; |
---|
30 | |
---|
31 | } |
---|
32 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.