X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8628b7d4139d1fa2ab60b254a1a346008d4a9123..54590cb07847ca447411e8aefba0b01ccc24be22:/include/wx/gtk1/cursor.h diff --git a/include/wx/gtk1/cursor.h b/include/wx/gtk1/cursor.h index 963a26182d..2612a6c8d2 100644 --- a/include/wx/gtk1/cursor.h +++ b/include/wx/gtk1/cursor.h @@ -10,8 +10,7 @@ #ifndef __GTKCURSORH__ #define __GTKCURSORH__ -#include "wx/defs.h" -#include "wx/object.h" +#include "wx/gdiobj.h" #include "wx/gdicmn.h" #if wxUSE_IMAGE @@ -22,10 +21,9 @@ // wxCursor //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxCursor: public wxObject +class WXDLLIMPEXP_CORE wxCursor : public wxGDIObject { public: - wxCursor(); wxCursor( int cursorId ); #if wxUSE_IMAGE @@ -33,16 +31,17 @@ public: #endif wxCursor( const char bits[], int width, int height, int hotSpotX=-1, int hotSpotY=-1, - const char maskBits[]=0, wxColour *fg=0, wxColour *bg=0 ); - ~wxCursor(); - bool operator == ( const wxCursor& cursor ) const; - bool operator != ( const wxCursor& cursor ) const; - bool Ok() const; + const char maskBits[] = NULL, const wxColour *fg = NULL, const wxColour *bg = NULL ); + virtual ~wxCursor(); // implementation GdkCursor *GetCursor() const; +protected: + virtual wxGDIRefData *CreateGDIRefData() const; + virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; + private: DECLARE_DYNAMIC_CLASS(wxCursor) };