+ SetBackgroundColour( parent->GetBackgroundColour() );
+ SetForegroundColour( parent->GetForegroundColour() );
+ SetFont( parent->GetFont() );
+
+ Show( TRUE );
+
+ return TRUE;
+}
+
+void wxStaticBox::SetLabel( const wxString &label )
+{
+ wxControl::SetLabel( label );
+ GtkFrame *frame = GTK_FRAME( m_widget );
+ gtk_frame_set_label( frame, GetLabel().mbc_str() );
+}
+
+void wxStaticBox::ApplyWidgetStyle()
+{
+ SetWidgetStyle();
+ gtk_widget_set_style( m_widget, m_widgetStyle );
+}
+
+#endif