X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e5403d7c573d45fcfef73959c41fda93aea1d07f..5db1a502b4bf38f36a14c1377618d9eaae4c8e79:/src/gtk1/radiobox.cpp diff --git a/src/gtk1/radiobox.cpp b/src/gtk1/radiobox.cpp index 2d00f6d3e8..fab780db60 100644 --- a/src/gtk1/radiobox.cpp +++ b/src/gtk1/radiobox.cpp @@ -164,6 +164,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, SetLabel( title ); SetBackgroundColour( parent->GetBackgroundColour() ); + SetForegroundColour( parent->GetForegroundColour() ); Show( TRUE ); @@ -460,46 +461,25 @@ void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n) ) wxFAIL_MSG("wxRadioBox::SetNumberOfRowsOrCols not implemented."); } -void wxRadioBox::SetFont( const wxFont &font ) +void wxRadioBox::ApplyWidgetStyle() { - wxCHECK_RET( m_widget != NULL, "invalid radiobox" ); + SetWidgetStyle(); - wxControl::SetFont( font ); - gtk_widget_set_style( m_widget, m_widgetStyle ); wxNode *node = m_boxes.First(); while (node) { - GtkButton *button = GTK_BUTTON( node->Data() ); + GtkWidget *widget = GTK_WIDGET( node->Data() ); + gtk_widget_set_style( widget, m_widgetStyle ); + GtkButton *button = GTK_BUTTON( node->Data() ); gtk_widget_set_style( button->child, m_widgetStyle ); node = node->Next(); } } -void wxRadioBox::SetBackgroundColour( const wxColour &colour ) -{ - wxCHECK_RET( m_widget != NULL, "invalid radiobox" ); - - wxControl::SetBackgroundColour( colour ); - - if (!m_backgroundColour.Ok()) return; - - gtk_widget_set_style( m_widget, m_widgetStyle ); - - wxNode *node = m_boxes.First(); - while (node) - { - GtkWidget *button = GTK_WIDGET( node->Data() ); - - gtk_widget_set_style( button, m_widgetStyle ); - - node = node->Next(); - } -} - bool wxRadioBox::IsOwnGtkWindow( GdkWindow *window ) { if (window == m_widget->window) return TRUE;