]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/cursor.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/cursor.h
3 // Purpose: wxCursor class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
16 #include "wx/gdicmn.h"
18 class WXDLLEXPORT wxImage
;
21 class WXDLLEXPORT wxCursor
: public wxObject
23 DECLARE_DYNAMIC_CLASS(wxCursor
)
28 wxCursor(const char bits
[], int width
, int height
,
29 int hotSpotX
= -1, int hotSpotY
= -1,
30 const char maskBits
[] = NULL
);
32 wxCursor(const wxString
& name
, long flags
= wxBITMAP_TYPE_XBM
,
33 int hotSpotX
= 0, int hotSpotY
= 0);
36 wxCursor(const wxImage
& image
);
39 wxCursor(wxStockCursor id
);
42 virtual bool Ok() const { return IsOk(); }
43 virtual bool IsOk() const;
45 bool operator == (const wxCursor
& cursor
) const
46 { return m_refData
== cursor
.m_refData
; }
47 bool operator != (const wxCursor
& cursor
) const
48 { return m_refData
!= cursor
.m_refData
; }
51 // Create/get a cursor for the current display
52 WXCursor
GetXCursor(WXDisplay
* display
) const;
54 void Create(const char bits
[], int width
, int height
,
55 int hotSpotX
= -1, int hotSpotY
= -1,
56 const char maskBits
[] = NULL
);
57 void Create(WXPixmap cursor
, WXPixmap mask
, int hotSpotX
, int hotSpotY
);
59 // Make a cursor from standard id
60 WXCursor
MakeCursor(WXDisplay
* display
, wxStockCursor id
) const;
63 extern WXDLLEXPORT
void wxSetCursor(const wxCursor
& cursor
);