- virtual bool GetValue(void) const;
- bool Enable( bool enable );
-
- // implementation
-
- void ApplyWidgetStyle();
-
- bool m_blockFirstEvent;
- GtkWidget* m_theOtherRadioButtton;
+ virtual bool GetValue() const;
+ virtual bool Enable( bool enable = TRUE );
+
+ static wxVisualAttributes
+ GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+
+ // implementation
+
+ virtual bool IsRadioButton() const { return TRUE; }
+
+ GSList *m_radioButtonGroup;
+ void DoApplyWidgetStyle(GtkRcStyle *style);
+ bool IsOwnGtkWindow( GdkWindow *window );
+ void OnInternalIdle();
+
+ bool m_blockEvent;
+
+protected:
+ virtual wxSize DoGetBestSize() const;
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxRadioButton)