- virtual bool GetValue(void) const;
- void SetFont( const wxFont &font );
- void Enable( bool enable );
- void SetBackgroundColour( const wxColour &colour );
+ virtual bool GetValue() const;
+ bool Enable( bool enable );
+
+ // implementation
+
+ GSList *m_radioButtonGroup;
+ void ApplyWidgetStyle();
+ bool IsOwnGtkWindow( GdkWindow *window );
+ void OnInternalIdle();
+
+protected:
+ virtual wxSize DoGetBestSize() const;
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxRadioButton)