/////////////////////////////////////////////////////////////////////////////
-// Name: wx/mac/carbon/cursor.h
+// Name: wx/osx/cursor.h
// Purpose: wxCursor class
// Author: Stefan Csomor
// Modified by:
wxCursor();
wxCursor(const wxImage & image) ;
- wxCursor(const char* const* bits);
wxCursor(const wxString& name,
wxBitmapType type = wxCURSOR_DEFAULT_TYPE,
int hotSpotX = 0, int hotSpotY = 0);
#endif
virtual ~wxCursor();
- bool CreateFromXpm(const char* const* bits);
-
void MacInstall() const ;
void SetHCURSOR(WXHCURSOR cursor);
WXHCURSOR GetHCURSOR() const;
-private:
- void InitFromStock(wxStockCursor);
-
+protected:
virtual wxGDIRefData *CreateGDIRefData() const;
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
+private:
+ void InitFromStock(wxStockCursor);
+
void CreateFromImage(const wxImage & image) ;
DECLARE_DYNAMIC_CLASS(wxCursor)