+void wxRadioButton::Enable( bool enable )
+{
+ wxCHECK_RET( m_widget != NULL, "invalid radiobutton" );
+
+ wxControl::Enable( enable );
+
+ gtk_widget_set_sensitive( GTK_BUTTON(m_widget)->child, enable );
+}
+
+void wxRadioButton::ApplyWidgetStyle()
+{
+ SetWidgetStyle();
+ gtk_widget_set_style( m_widget, m_widgetStyle );
+ gtk_widget_set_style( GTK_BUTTON(m_widget)->child, m_widgetStyle );
+}
+