]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/cursor.h
Basic support for tooltips under OS X Cocoa.
[wxWidgets.git] / include / wx / osx / cursor.h
index 6457153a6c702e04d3b93917a5672ce40be080fe..66516c41130c718c78bf01dea1be0c3c505eb4a5 100644 (file)
@@ -21,7 +21,6 @@ public:
     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);
@@ -37,12 +36,13 @@ public:
     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)