]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/cursor.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKCURSORH__
12 #define __GTKCURSORH__
19 #include "wx/object.h"
20 #include "wx/gdicmn.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 class wxCursor
: public wxObject
28 DECLARE_DYNAMIC_CLASS(wxCursor
)
33 wxCursor( int cursorId
);
34 wxCursor( const wxCursor
&cursor
);
36 wxCursor
& operator = ( const wxCursor
& cursor
);
37 bool operator == ( const wxCursor
& cursor
) const;
38 bool operator != ( const wxCursor
& cursor
) const;
41 GdkCursor
*GetCursor() const;
46 #endif // __GTKCURSORH__