]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/button.h
wxLaunchDefaultBrowser
[wxWidgets.git] / include / wx / cocoa / button.h
index a33f669a1c1dec438363ce637b7aa635cfed5656..84acb8607f0ca63643cf558be0461e4b6fadcea5 100644 (file)
@@ -28,7 +28,7 @@ class WXDLLEXPORT wxButton : public wxButtonBase, protected wxCocoaNSButton
 public:
    wxButton() { }
    wxButton(wxWindow *parent, wxWindowID winid,
-             const wxString& label,
+             const wxString& label = wxEmptyString,
              const wxPoint& pos = wxDefaultPosition,
              const wxSize& size = wxDefaultSize, long style = 0,
              const wxValidator& validator = wxDefaultValidator,
@@ -37,34 +37,14 @@ public:
         Create(parent, winid, label, pos, size, style, validator, name);
     }
     
-    wxButton(wxWindow *parent, wxWindowID id, wxStockItemID stock,
-           const wxString& descriptiveLabel = wxEmptyString,
-           const wxPoint& pos = wxDefaultPosition,
-           long style = 0,
-           const wxValidator& validator = wxDefaultValidator,
-           const wxString& name = wxButtonNameStr)
-    {
-        Create(parent, id, stock, descriptiveLabel, pos, style, validator, name);
-    }
 
     bool Create(wxWindow *parent, wxWindowID winid,
-            const wxString& label,
+            const wxString& label = wxEmptyString,
             const wxPoint& pos = wxDefaultPosition,
             const wxSize& size = wxDefaultSize, long style = 0,
             const wxValidator& validator = wxDefaultValidator,
             const wxString& name = wxButtonNameStr);
     
-    bool Create(wxWindow *parent, wxWindowID id, wxStockItemID stock,
-           const wxString& descriptiveLabel = wxEmptyString,
-           const wxPoint& pos = wxDefaultPosition,
-           long style = 0,
-           const wxValidator& validator = wxDefaultValidator,
-           const wxString& name = wxButtonNameStr)
-    {
-        return CreateStock(parent, id, stock, descriptiveLabel,
-                           pos, style, validator, name);
-    }
-    
     virtual ~wxButton();
 
 // ------------------------------------------------------------------------
@@ -78,6 +58,7 @@ protected:
 public:
     wxString GetLabel() const;
     void SetLabel(const wxString& label);
+    wxSize DoGetBestSize() const;
 };
 
 #endif // __WX_COCOA_BUTTON_H__