// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
#ifndef __GTKBUTTONH__
#define __GTKBUTTONH__
// global data
//-----------------------------------------------------------------------------
-extern const char *wxButtonNameStr;
+extern const wxChar *wxButtonNameStr;
//-----------------------------------------------------------------------------
// wxButton
class wxButton: public wxControl
{
- DECLARE_DYNAMIC_CLASS(wxButton)
-
- public:
-
+public:
wxButton();
inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
const wxPoint& pos = wxDefaultPosition,
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__