X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..0c7ca81c4f212e0e1cd59c3257164e50932e77aa:/include/wx/cocoa/button.h diff --git a/include/wx/cocoa/button.h b/include/wx/cocoa/button.h index f1ddb92218..84acb8607f 100644 --- a/include/wx/cocoa/button.h +++ b/include/wx/cocoa/button.h @@ -6,7 +6,7 @@ // Created: 2002/12/29 // RCS-ID: $Id: // Copyright: (c) 2002 David Elliott -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __WX_COCOA_BUTTON_H__ @@ -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, @@ -36,13 +36,15 @@ public: { Create(parent, winid, label, pos, size, 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); + virtual ~wxButton(); // ------------------------------------------------------------------------ @@ -56,6 +58,7 @@ protected: public: wxString GetLabel() const; void SetLabel(const wxString& label); + wxSize DoGetBestSize() const; }; #endif // __WX_COCOA_BUTTON_H__