1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/classic/cursor.h
3 // Purpose: wxCursor class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/bitmap.h"
17 class WXDLLEXPORT wxCursorRefData
: public wxBitmapRefData
19 DECLARE_NO_COPY_CLASS(wxCursorRefData
)
21 friend class WXDLLEXPORT wxBitmap
;
22 friend class WXDLLEXPORT wxCursor
;
25 virtual ~wxCursorRefData();
31 bool m_isColorCursor
;
35 #define M_CURSORDATA ((wxCursorRefData *)m_refData)
36 #define M_CURSORHANDLERDATA ((wxCursorRefData *)bitmap->m_refData)
39 class WXDLLEXPORT wxCursor
: public wxBitmap
41 DECLARE_DYNAMIC_CLASS(wxCursor
)
46 wxCursor(const char bits
[], int width
, int height
, int hotSpotX
= -1, int hotSpotY
= -1,
47 const char maskBits
[] = NULL
);
49 wxCursor(const wxImage
& image
) ;
50 wxCursor(const char **bits
) ;
51 wxCursor(char **bits
) ;
52 wxCursor(const wxString
& name
, long flags
= wxBITMAP_TYPE_MACCURSOR_RESOURCE
,
53 int hotSpotX
= 0, int hotSpotY
= 0);
55 wxCursor(int cursor_type
);
58 bool CreateFromXpm(const char **bits
) ;
59 virtual bool Ok() const { return IsOk(); }
60 virtual bool IsOk() const { return (m_refData
!= NULL
&& ( M_CURSORDATA
->m_hCursor
!= NULL
|| M_CURSORDATA
->m_themeCursor
!= -1 ) ) ; }
62 inline bool operator == (const wxCursor
& cursor
) const { return m_refData
== cursor
.m_refData
; }
63 inline bool operator != (const wxCursor
& cursor
) const { return m_refData
!= cursor
.m_refData
; }
65 void MacInstall() const ;
67 void SetHCURSOR(WXHCURSOR cursor
);
68 inline WXHCURSOR
GetHCURSOR() const { return (M_CURSORDATA
? M_CURSORDATA
->m_hCursor
: 0); }
70 void CreateFromImage(const wxImage
& image
) ;
73 extern WXDLLEXPORT
void wxSetCursor(const wxCursor
& cursor
);