- DECLARE_DYNAMIC_CLASS(wxButton)
-
- public:
-
- wxButton(void);
- wxButton( wxWindow *parent, wxWindowID id, const wxString &label,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- long style = 0, const wxString &name = wxButtonNameStr );
- bool Create( wxWindow *parent, wxWindowID id, const wxString &label,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- long style = 0, const wxString &name = wxButtonNameStr );
- void SetDefault(void);
- void SetLabel( const wxString &label );
- wxString GetLabel(void) const;
+public:
+ wxButton();
+ 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)
+ {
+ Create(parent, id, label, pos, size, style, validator, name);
+ }
+ virtual ~wxButton();
+
+ bool Create(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);
+
+ virtual void SetDefault();
+ virtual void SetLabel( const wxString &label );
+ virtual bool Enable( bool enable = TRUE );
+
+ static wxSize GetDefaultSize();
+
+ // implementation
+ // --------------
+
+ void ApplyWidgetStyle();
+ bool IsOwnGtkWindow( GdkWindow *window );
+
+ // Since this wxButton doesn't derive from wxButtonBase (why?) we need
+ // to override this here too...
+ virtual bool ShouldInheritColours() const { return false; }
+
+protected:
+ virtual wxSize DoGetBestSize() const;
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxButton)