X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/401e3b6e5f50f15571b86297b5d1e3f55c473f6f..47fe7ff3821c632b490b16da6b5113f127905a23:/include/wx/cocoa/button.h diff --git a/include/wx/cocoa/button.h b/include/wx/cocoa/button.h index a33f669a1c..aefc9d1369 100644 --- a/include/wx/cocoa/button.h +++ b/include/wx/cocoa/button.h @@ -4,9 +4,9 @@ // Author: David Elliott // Modified by: // Created: 2002/12/29 -// RCS-ID: $Id: +// RCS-ID: $Id$ // Copyright: (c) 2002 David Elliott -// Licence: wxWindows 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,35 +36,15 @@ 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,8 @@ protected: public: wxString GetLabel() const; void SetLabel(const wxString& label); + wxSize DoGetBestSize() const; }; -#endif // __WX_COCOA_BUTTON_H__ +#endif + // __WX_COCOA_BUTTON_H__