]> 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 fe0c01391c16d89ad548e27895a6a9c768b9fb45..66516c41130c718c78bf01dea1be0c3c505eb4a5 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        wx/mac/carbon/cursor.h
+// Name:        wx/osx/cursor.h
 // Purpose:     wxCursor class
 // Author:      Stefan Csomor
 // Modified by:
@@ -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);
@@ -32,19 +31,18 @@ public:
 #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)