X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8dbf458911c24bae120bed07d5627a65f362b8d1..d062e17fca1a1fc0b82b269da4a7ad271075ba2b:/include/wx/gtk1/button.h?ds=inline diff --git a/include/wx/gtk1/button.h b/include/wx/gtk1/button.h index 3bd5a5f28a..c239f5b7a1 100644 --- a/include/wx/gtk1/button.h +++ b/include/wx/gtk1/button.h @@ -7,7 +7,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __GTKBUTTONH__ #define __GTKBUTTONH__ @@ -30,7 +29,7 @@ class wxButton; // global data //----------------------------------------------------------------------------- -extern const char *wxButtonNameStr; +extern const wxChar *wxButtonNameStr; //----------------------------------------------------------------------------- // wxButton @@ -38,10 +37,7 @@ extern const char *wxButtonNameStr; class wxButton: public wxControl { - DECLARE_DYNAMIC_CLASS(wxButton) - - public: - +public: wxButton(); inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, @@ -57,15 +53,22 @@ class wxButton: public wxControl const wxSize& size = wxDefaultSize, long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxButtonNameStr); - void SetDefault(); + virtual void SetDefault(); void SetLabel( const wxString &label ); bool Enable( bool enable ); static wxSize GetDefaultSize(); - // implementation + // implementation + // -------------- void ApplyWidgetStyle(); + +protected: + virtual wxSize DoGetBestSize() const; + +private: + DECLARE_DYNAMIC_CLASS(wxButton) }; #endif // __GTKBUTTONH__