Not sure how important that is, but now you

can set the font of a static box.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28158 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2004-07-03 16:28:22 +00:00
parent 0fc3bc3b26
commit e37168448f
4 changed files with 34 additions and 0 deletions

View File

@@ -40,6 +40,8 @@ public:
virtual void SetLabel( const wxString &label );
bool SetFont( const wxFont &font );
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);

View File

@@ -40,6 +40,8 @@ public:
virtual void SetLabel( const wxString &label );
bool SetFont( const wxFont &font );
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);

View File

@@ -91,6 +91,21 @@ void wxStaticBox::SetLabel( const wxString &label )
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))

View File

@@ -91,6 +91,21 @@ void wxStaticBox::SetLabel( const wxString &label )
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))