justify = GTK_JUSTIFY_RIGHT;
else // wxALIGN_LEFT is 0
justify = GTK_JUSTIFY_LEFT;
+
+ if (GetLayoutDirection() == wxLayout_RightToLeft)
+ {
+ if (justify == GTK_JUSTIFY_RIGHT)
+ justify = GTK_JUSTIFY_LEFT;
+ if (justify == GTK_JUSTIFY_LEFT)
+ justify = GTK_JUSTIFY_RIGHT;
+ }
+
gtk_label_set_justify(GTK_LABEL(m_widget), justify);
// GTK_JUSTIFY_LEFT is 0, RIGHT 1 and CENTER 2
gtk_label_set_line_wrap( GTK_LABEL(m_widget), TRUE );
- return wxSize (req.width, req.height);
+ // Adding 1 to width to workaround GTK sometimes wrapping the text needlessly
+ return wxSize (req.width+1, req.height);
}
bool wxStaticText::SetForegroundColour(const wxColour& colour)
return true;
}
+bool wxStaticText::GTKWidgetNeedsMnemonic() const
+{
+ return true;
+}
+
+void wxStaticText::GTKWidgetDoSetMnemonic(GtkWidget* w)
+{
+ gtk_label_set_mnemonic_widget(GTK_LABEL(m_widget), w);
+}
+
// static
wxVisualAttributes
wxStaticText::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))