]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: cursor.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifndef __GTKCURSORH__ | |
12 | #define __GTKCURSORH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
19 | #include "wx/object.h" | |
20 | #include "wx/gdicmn.h" | |
21 | ||
22 | //----------------------------------------------------------------------------- | |
23 | // wxCursor | |
24 | //----------------------------------------------------------------------------- | |
25 | ||
26 | class wxCursor: public wxObject | |
27 | { | |
28 | public: | |
29 | ||
30 | wxCursor(); | |
31 | wxCursor( int cursorId ); | |
32 | wxCursor( const wxCursor &cursor ); | |
33 | wxCursor( const char bits[], int width, int height, | |
34 | int hotSpotX=-1, int hotSpotY=-1, | |
35 | const char maskBits[]=0, wxColour *fg=0, wxColour *bg=0 ); | |
36 | ~wxCursor(); | |
37 | wxCursor& operator = ( const wxCursor& cursor ); | |
38 | bool operator == ( const wxCursor& cursor ) const; | |
39 | bool operator != ( const wxCursor& cursor ) const; | |
40 | bool Ok() const; | |
41 | ||
42 | // implementation | |
43 | ||
44 | GdkCursor *GetCursor() const; | |
45 | ||
46 | private: | |
47 | DECLARE_DYNAMIC_CLASS(wxCursor) | |
48 | }; | |
49 | ||
50 | #endif // __GTKCURSORH__ |