]>
Commit | Line | Data |
---|---|---|
9b6dbb09 | 1 | ///////////////////////////////////////////////////////////////////////////// |
925f7740 | 2 | // Name: wx/motif/cursor.h |
9b6dbb09 JS |
3 | // Purpose: wxCursor class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
925f7740 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_CURSOR_H_ | |
13 | #define _WX_CURSOR_H_ | |
14 | ||
8f884a0d | 15 | #include "wx/gdiobj.h" |
93e73c74 | 16 | #include "wx/gdicmn.h" |
9b6dbb09 | 17 | |
b5dbe15d | 18 | class WXDLLIMPEXP_FWD_CORE wxImage; |
9b6dbb09 JS |
19 | |
20 | // Cursor | |
53a2db12 | 21 | class WXDLLIMPEXP_CORE wxCursor : public wxGDIObject |
9b6dbb09 | 22 | { |
9b6dbb09 | 23 | public: |
83df96d6 | 24 | wxCursor(); |
f8855e47 | 25 | |
ffa3d6b8 MB |
26 | wxCursor(const char bits[], int width, int height, |
27 | int hotSpotX = -1, int hotSpotY = -1, | |
28 | const char maskBits[] = NULL); | |
925f7740 | 29 | |
83df96d6 JS |
30 | wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_XBM, |
31 | int hotSpotX = 0, int hotSpotY = 0); | |
4daa4d66 | 32 | |
925f7740 | 33 | #if wxUSE_IMAGE |
4daa4d66 CE |
34 | wxCursor(const wxImage& image); |
35 | #endif | |
925f7740 | 36 | |
83df96d6 | 37 | wxCursor(wxStockCursor id); |
d3c7fc99 | 38 | virtual ~wxCursor(); |
925f7740 | 39 | |
83df96d6 JS |
40 | // Motif-specific. |
41 | // Create/get a cursor for the current display | |
bc6e28d5 | 42 | WXCursor GetXCursor(WXDisplay* display) const; |
8f884a0d VZ |
43 | |
44 | protected: | |
45 | virtual wxGDIRefData *CreateGDIRefData() const; | |
46 | virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; | |
47 | ||
93e73c74 | 48 | private: |
ffa3d6b8 MB |
49 | void Create(const char bits[], int width, int height, |
50 | int hotSpotX = -1, int hotSpotY = -1, | |
51 | const char maskBits[] = NULL); | |
52 | void Create(WXPixmap cursor, WXPixmap mask, int hotSpotX, int hotSpotY); | |
53 | ||
83df96d6 | 54 | // Make a cursor from standard id |
bc6e28d5 | 55 | WXCursor MakeCursor(WXDisplay* display, wxStockCursor id) const; |
8f884a0d VZ |
56 | |
57 | DECLARE_DYNAMIC_CLASS(wxCursor) | |
9b6dbb09 JS |
58 | }; |
59 | ||
53a2db12 | 60 | extern WXDLLIMPEXP_CORE void wxSetCursor(const wxCursor& cursor); |
9b6dbb09 JS |
61 | |
62 | #endif | |
83df96d6 | 63 | // _WX_CURSOR_H_ |