1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/cursor.h
3 // Purpose: wxCursor class
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/palmos/gdiimage.h"
17 class WXDLLEXPORT wxImage
;
20 class WXDLLEXPORT wxCursor
: public wxGDIImage
25 wxCursor(const wxImage
& image
);
26 wxCursor(const char bits
[], int width
, int height
,
27 int hotSpotX
= -1, int hotSpotY
= -1,
28 const char maskBits
[] = NULL
);
29 wxCursor(const wxString
& name
,
30 long flags
= wxBITMAP_TYPE_CUR_RESOURCE
,
31 int hotSpotX
= 0, int hotSpotY
= 0);
32 wxCursor(int idCursor
);
35 bool operator==(const wxCursor
& cursor
) const;
36 bool operator!=(const wxCursor
& cursor
) const
37 { return !(*this == cursor
); }
39 // implementation only
40 void SetHCURSOR(WXHCURSOR cursor
) { SetHandle((WXHANDLE
)cursor
); }
41 WXHCURSOR
GetHCURSOR() const { return (WXHCURSOR
)GetHandle(); }
44 virtual wxGDIImageRefData
*CreateData() const;
47 DECLARE_DYNAMIC_CLASS(wxCursor
)