- wxCursor(const char bits[], int width, int height, int hotSpotX = -1, int hotSpotY = -1,
- const char maskBits[] = NULL);
- wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_CUR_RESOURCE,
- int hotSpotX = 0, int hotSpotY = 0);
- wxCursor(int cursor_type);
- ~wxCursor(void);
+ // Copy constructors
+ wxCursor(const wxCursor& cursor) { Ref(cursor); }
+ wxCursor(const wxImage & image) ;
+ wxCursor(const char bits[], int width, int height,
+ int hotSpotX = -1, int hotSpotY = -1,
+ const char maskBits[] = NULL);
+ wxCursor(const wxString& name,
+ long flags = wxBITMAP_TYPE_CUR_RESOURCE,
+ int hotSpotX = 0, int hotSpotY = 0);
+ wxCursor(int cursor_type);
+ virtual ~wxCursor();