+ // we need to return the label just like it was passed to the last call
+ // to SetLabel(): i.e. with wx-style mnemonics and with markup
+ return wxControl::GetLabel();
+}
+
+void wxStaticText::SetLabel( const wxString& str )
+{
+ wxCHECK_RET( m_widget != NULL, wxT("invalid static text") );
+
+ // save the label inside m_labelOrig in case user calls GetLabel() later
+ m_labelOrig = str;
+
+ wxString label(str);
+ if (gtk_check_version(2,6,0) &&
+ IsEllipsized())
+ {
+ // GTK+ < 2.6 does not support ellipsization:
+ // since we need to use our generic code for ellipsization (which does not
+ // behaves well in conjunction with markup; i.e. it may break the markup
+ // validity erasing portions of the string), we also need to strip out
+ // the markup (if present) from the label.
+
+ label = GetEllipsizedLabelWithoutMarkup();
+ }
+
+ if ( HasFlag(wxST_MARKUP) )
+ GTKSetLabelWithMarkupForLabel(GTK_LABEL(m_widget), label);
+ else
+ GTKSetLabelForLabel(GTK_LABEL(m_widget), label);
+
+ // adjust the label size to the new label unless disabled
+ if ( !HasFlag(wxST_NO_AUTORESIZE) &&
+ !IsEllipsized() ) // if ellipsize is ON, then we don't want to get resized!
+ SetSize( GetBestSize() );
+}
+
+bool wxStaticText::SetFont( const wxFont &font )
+{
+ const bool wasUnderlined = GetFont().GetUnderlined();
+
+ bool ret = wxControl::SetFont(font);