- wxCursor(void);
-
- // Copy constructors
- inline wxCursor(const wxCursor& cursor) { Ref(cursor); }
- inline wxCursor(const wxCursor* cursor) { /* UnRef(); */ if (cursor) Ref(*cursor); }
-
- wxCursor(const char bits[], const int width, const int height, const int hotSpotX = -1, const int hotSpotY = -1,
- const char maskBits[] = NULL);
- wxCursor(const wxString& name, const long flags = wxBITMAP_TYPE_CUR_RESOURCE,
- const int hotSpotX = 0, const int hotSpotY = 0);
- wxCursor(const int cursor_type);
- ~wxCursor(void);
+ // constructors
+ wxCursor();
+ wxCursor(const wxImage& image);
+ wxCursor(const wxString& name,
+ wxBitmapType type = wxCURSOR_DEFAULT_TYPE,
+ int hotSpotX = 0, int hotSpotY = 0);
+ wxCursor(wxStockCursor id) { InitFromStock(id); }
+#if WXWIN_COMPATIBILITY_2_8
+ wxCursor(int id) { InitFromStock((wxStockCursor)id); }
+#endif
+ virtual ~wxCursor();