X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c77a67962c2f50a872491869fcf1a6c082fdc6c6..6aa68c25a4599f20186dca3604eee1597ddc7fc4:/src/gtk/statbox.cpp diff --git a/src/gtk/statbox.cpp b/src/gtk/statbox.cpp index 1cdcca5073..4d3feeb72b 100644 --- a/src/gtk/statbox.cpp +++ b/src/gtk/statbox.cpp @@ -56,10 +56,9 @@ bool wxStaticBox::Create( wxWindow *parent, return FALSE; } + m_widget = GTKCreateFrame(label); wxControl::SetLabel(label); - m_widget = gtk_frame_new(m_label.empty() ? (char *)NULL : (const char*) wxGTK_CONV( m_label ) ); - m_parent->DoAddChild( this ); PostCreation(size); @@ -79,20 +78,26 @@ bool wxStaticBox::Create( wxWindow *parent, return TRUE; } -void wxStaticBox::SetLabel( const wxString &label ) +void wxStaticBox::SetLabel( const wxString& label ) { - wxControl::SetLabel( label ); + wxCHECK_RET( m_widget != NULL, wxT("invalid staticbox") ); - gtk_frame_set_label( GTK_FRAME( m_widget ), - m_label.empty() ? (char *)NULL : (const char*) wxGTK_CONV( m_label ) ); + GTKSetLabelForFrame(GTK_FRAME(m_widget), label); } void wxStaticBox::DoApplyWidgetStyle(GtkRcStyle *style) { - gtk_widget_modify_style(m_widget, style); -#ifdef __WXGTK20__ - gtk_widget_modify_style(GTK_FRAME(m_widget)->label_widget, style); -#endif + GTKFrameApplyWidgetStyle(GTK_FRAME(m_widget), style); +} + +bool wxStaticBox::GTKWidgetNeedsMnemonic() const +{ + return true; +} + +void wxStaticBox::GTKWidgetDoSetMnemonic(GtkWidget* w) +{ + GTKFrameSetMnemonicWidget(GTK_FRAME(m_widget), w); } // static