projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Applied patch [ 597398 ] Generic MDI, wxNotebook based.
[wxWidgets.git]
/
include
/
wx
/
motif
/
cursor.h
diff --git
a/include/wx/motif/cursor.h
b/include/wx/motif/cursor.h
index c1d3bce5c3702fc65e92279aa5e3749306c3639d..8ec642b7c9a0a7f36a6245ef0ffeeac625dbc4d1 100644
(file)
--- a/
include/wx/motif/cursor.h
+++ b/
include/wx/motif/cursor.h
@@
-17,6
+17,11
@@
#endif
#include "wx/bitmap.h"
#endif
#include "wx/bitmap.h"
+#if wxUSE_IMAGE
+#include "wx/image.h"
+#endif
+
+
/* Cursor for one display, so we can choose the correct one for
* the current display.
/* Cursor for one display, so we can choose the correct one for
* the current display.
@@
-61,7
+66,11
@@
public:
wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_XBM,
int hotSpotX = 0, int hotSpotY = 0);
wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_XBM,
int hotSpotX = 0, int hotSpotY = 0);
-
+
+#if wxUSE_IMAGE
+ wxCursor(const wxImage& image);
+#endif
+
wxCursor(wxStockCursor id);
~wxCursor();
wxCursor(wxStockCursor id);
~wxCursor();