]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/cursor.h
Fixed preview navigation as per ancient bug report
[wxWidgets.git] / include / wx / mac / cursor.h
index bffacb52ed5792590f4ecf3a19bbca545bb00d9e..7f1a8ea8b44fe95fcb5398d8e009994508bc7129 100644 (file)
@@ -56,13 +56,15 @@ public:
     const char maskBits[] = NULL);
 
     wxCursor(const wxImage & image) ;
-
+    wxCursor(const char **bits) ;
+    wxCursor(char **bits) ;
     wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_MACCURSOR_RESOURCE,
-   int hotSpotX = 0, int hotSpotY = 0);
+        int hotSpotX = 0, int hotSpotY = 0);
 
   wxCursor(int cursor_type);
   ~wxCursor();
 
+       bool CreateFromXpm(const char **bits) ;
   virtual bool Ok() const { return (m_refData != NULL && ( M_CURSORDATA->m_hCursor != NULL || M_CURSORDATA->m_themeCursor != -1 ) ) ; }
 
   inline wxCursor& operator = (const wxCursor& cursor) { if (*this == cursor) return (*this); Ref(cursor); return *this; }