]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/radiobox.cpp
regenerated configure from new configure.in
[wxWidgets.git] / src / gtk1 / radiobox.cpp
index 2d00f6d3e88ec21101912f9b8677e877be0f6e97..fab780db60238ff22848fc71a789a2ab25135762 100644 (file)
@@ -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;