]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/stattext.cpp
24-bit rendering from wxImage into wxBitmap
[wxWidgets.git] / src / gtk / stattext.cpp
index e8c2e346d372f44864b5b197382c92cb561bd320..48a31738201d88a7ea5c7137c6b4db60d4fc5081 100644 (file)
@@ -91,6 +91,9 @@ bool wxStaticText::Create( wxWindow *parent, wxWindowID id, const wxString &labe
   
   PostCreation();
   
+  SetBackgroundColour( parent->GetBackgroundColour() );
+  SetForegroundColour( parent->GetForegroundColour() );
+
   Show( TRUE );
     
   return TRUE;
@@ -110,3 +113,10 @@ void wxStaticText::SetLabel( const wxString &label )
 
   gtk_label_set( GTK_LABEL(m_widget), m_label );
 }
+
+void wxStaticText::ApplyWidgetStyle()
+{
+  SetWidgetStyle();
+  gtk_widget_set_style( m_widget, m_widgetStyle );
+}
+