- void SetDefault(void);
- void SetLabel( const wxString &label );
- void Enable( bool enable );
- void SetFont( const wxFont &font );
- void SetBackgroundColour( const wxColour &colour );
- void SetForegroundColour( const wxColour &colour );
+
+ virtual void SetDefault();
+ virtual void SetLabel( const wxString &label );
+ virtual bool Enable( bool enable = TRUE );
+
+ static wxSize GetDefaultSize();
+
+ // implementation
+ // --------------
+
+ void DoApplyWidgetStyle(GtkRcStyle *style);
+ 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; }
+
+ static wxVisualAttributes
+ GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+
+protected:
+ virtual wxSize DoGetBestSize() const;
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxButton)