Implemented window coord mirroring for RTL. This

is only implemented for *setting* the coordinates
    which is enough for wxSizers and 99% or other
    dialogs to work.
  Also reversed the meaning of wxStaticText alignment
    in RTL mode. It is possible that later versions
    of GTK actually do that themselves. (?)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41137 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-09-10 19:39:22 +00:00
parent 1d203ed837
commit 6959763942
5 changed files with 60 additions and 30 deletions

View File

@@ -50,11 +50,10 @@ struct _GtkPizza
GList *children;
GtkMyShadowType shadow_type;
guint m_width;
guint m_height;
guint m_xoffset;
guint m_yoffset;
gint m_width;
GdkWindow *bin_window;
@@ -77,10 +76,6 @@ GtkWidget* gtk_pizza_new (void);
/* accessors */
WXDLLIMPEXP_CORE
gint gtk_pizza_get_width (GtkPizza *pizza);
WXDLLIMPEXP_CORE
gint gtk_pizza_get_height (GtkPizza *pizza);
WXDLLIMPEXP_CORE
gint gtk_pizza_get_xoffset (GtkPizza *pizza);
WXDLLIMPEXP_CORE