virtual void SetLabel( const wxString &label );
+ bool SetFont( const wxFont &font );
+
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
virtual void SetLabel( const wxString &label );
+ bool SetFont( const wxFont &font );
+
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
m_label.empty() ? (char *)NULL : (const char*) wxGTK_CONV( m_label ) );
}
+bool wxStaticBox::SetFont( const wxFont &font )
+{
+ wxControl::SetFont( font );
+
+ if (GTK_FRAME(m_widget)->label_widget)
+ {
+ GtkRcStyle *style = CreateWidgetStyle(true);
+ if ( style )
+ {
+ gtk_widget_modify_style( GTK_FRAME(m_widget)->label_widget, style);
+ gtk_rc_style_unref(style);
+ }
+ }
+}
+
// static
wxVisualAttributes
wxStaticBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
m_label.empty() ? (char *)NULL : (const char*) wxGTK_CONV( m_label ) );
}
+bool wxStaticBox::SetFont( const wxFont &font )
+{
+ wxControl::SetFont( font );
+
+ if (GTK_FRAME(m_widget)->label_widget)
+ {
+ GtkRcStyle *style = CreateWidgetStyle(true);
+ if ( style )
+ {
+ gtk_widget_modify_style( GTK_FRAME(m_widget)->label_widget, style);
+ gtk_rc_style_unref(style);
+ }
+ }
+}
+
// static
wxVisualAttributes
wxStaticBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))