source: NonGTP/include/fltk/Cursor.h @ 769

Revision 769, 841 bytes checked in by gumbau, 18 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
8namespace fltk {
9
10struct Cursor; // this is not public
11
12class Image;
13Cursor* cursor(Image*, int x, int y);
14extern FL_API Cursor* cursor(void *raw);
15
16extern FL_API Cursor* const CURSOR_DEFAULT; // == NULL
17extern FL_API Cursor* const CURSOR_ARROW;
18extern FL_API Cursor* const CURSOR_CROSS;
19extern FL_API Cursor* const CURSOR_WAIT;
20extern FL_API Cursor* const CURSOR_INSERT;
21extern FL_API Cursor* const CURSOR_HAND;
22extern FL_API Cursor* const CURSOR_HELP;
23extern FL_API Cursor* const CURSOR_MOVE;
24extern FL_API Cursor* const CURSOR_NS;
25extern FL_API Cursor* const CURSOR_WE;
26extern FL_API Cursor* const CURSOR_NWSE;
27extern FL_API Cursor* const CURSOR_NESW;
28extern FL_API Cursor* const CURSOR_NO;
29extern FL_API Cursor* const CURSOR_NONE;
30
31}
32#endif
Note: See TracBrowser for help on using the repository browser.