]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/cursor.h
added wxApp::Set/GetAppDisplayName() (patch 1780414)
[wxWidgets.git] / include / wx / motif / cursor.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/cursor.h
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_CURSOR_H_
13 #define _WX_CURSOR_H_
14
15 #include "wx/object.h"
16 #include "wx/gdicmn.h"
17
18 class WXDLLIMPEXP_FWD_CORE wxImage;
19
20 // Cursor
21 class WXDLLEXPORT wxCursor: public wxObject
22 {
23 DECLARE_DYNAMIC_CLASS(wxCursor)
24
25 public:
26 wxCursor();
27
28 wxCursor(const char bits[], int width, int height,
29 int hotSpotX = -1, int hotSpotY = -1,
30 const char maskBits[] = NULL);
31
32 wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_XBM,
33 int hotSpotX = 0, int hotSpotY = 0);
34
35 #if wxUSE_IMAGE
36 wxCursor(const wxImage& image);
37 #endif
38
39 wxCursor(wxStockCursor id);
40 virtual ~wxCursor();
41
42 virtual bool Ok() const { return IsOk(); }
43 virtual bool IsOk() const;
44
45 // Motif-specific.
46 // Create/get a cursor for the current display
47 WXCursor GetXCursor(WXDisplay* display) const;
48 private:
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
54 // Make a cursor from standard id
55 WXCursor MakeCursor(WXDisplay* display, wxStockCursor id) const;
56 };
57
58 extern WXDLLEXPORT void wxSetCursor(const wxCursor& cursor);
59
60 #endif
61 // _WX_CURSOR_H_