1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCursor class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/bitmap.h"
18 class WXDLLEXPORT wxCursor
: public wxBitmap
20 DECLARE_DYNAMIC_CLASS(wxCursor
)
26 wxCursor(const wxCursor
& cursor
)
30 wxCursor(const char bits
[], int width
, int height
, int hotSpotX
= -1, int hotSpotY
= -1,
31 const char maskBits
[] = NULL
);
33 wxCursor(const wxImage
& image
) ;
34 wxCursor(const char **bits
) ;
35 wxCursor(char **bits
) ;
36 wxCursor(const wxString
& name
, long flags
= wxBITMAP_TYPE_MACCURSOR_RESOURCE
,
37 int hotSpotX
= 0, int hotSpotY
= 0);
39 wxCursor(int cursor_type
);
42 bool CreateFromXpm(const char **bits
) ;
43 virtual bool Ok() const ;
45 inline wxCursor
& operator = (const wxCursor
& cursor
) { if (*this == cursor
) return (*this); Ref(cursor
); return *this; }
46 inline bool operator == (const wxCursor
& cursor
) const { return m_refData
== cursor
.m_refData
; }
47 inline bool operator != (const wxCursor
& cursor
) const { return m_refData
!= cursor
.m_refData
; }
49 void MacInstall() const ;
51 void SetHCURSOR(WXHCURSOR cursor
);
52 inline WXHCURSOR
GetHCURSOR() const ;
54 void CreateFromImage(const wxImage
& image
) ;
57 extern WXDLLEXPORT
void wxSetCursor(const wxCursor
& cursor
);