+ return ret;
+}
+
+void wxStaticText::DoSetSize(int x, int y,
+ int width, int height,
+ int sizeFlags )
+{
+ wxStaticTextBase::DoSetSize(x, y, width, height, sizeFlags);
+
+ if (gtk_check_version(2,6,0))
+ {
+ // GTK+ < 2.6 does not support ellipsization - we need to run our
+ // generic code (actually it will be run only if IsEllipsized() == true)
+ UpdateLabel();
+ }
+}
+
+wxSize wxStaticText::DoGetBestSize() const
+{
+ // Do not return any arbitrary default value...
+ wxASSERT_MSG( m_widget, wxT("wxStaticText::DoGetBestSize called before creation") );
+
+ // GetBestSize is supposed to return unwrapped size but calling
+ // gtk_label_set_line_wrap() from here is a bad idea as it queues another
+ // size request by calling gtk_widget_queue_resize() and we end up in
+ // infinite loop sometimes (notably when the control is in a toolbar)
+ GTK_LABEL(m_widget)->wrap = FALSE;
+
+ wxSize size = wxStaticTextBase::DoGetBestSize();
+
+ GTK_LABEL(m_widget)->wrap = TRUE; // restore old value
+
+ // Adding 1 to width to workaround GTK sometimes wrapping the text needlessly
+ size.x++;
+ CacheBestSize(size);
+ return size;
+}
+
+bool wxStaticText::GTKWidgetNeedsMnemonic() const
+{
+ return true;