diff options
author | Alexander Larsson <alexl@redhat.com> | 2009-08-24 15:18:10 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2009-08-24 15:22:29 +0200 |
commit | a79f929dd6c89fceeaf0d9039e5a10cad9d87d2f (patch) | |
tree | fdc1ffc574efeb0879401003e649d8c524b8e108 /gdk/gdkglobals.c | |
parent | deda8b97f61329f3f23705cbf9a15fc24b657967 (diff) | |
download | gtk+-a79f929dd6c89fceeaf0d9039e5a10cad9d87d2f.tar.gz |
Add support for enabling only native windows
Some applications make weird assumtions on Gtk+ that do not work anymore
with the new client-side windows support. For instance SWT/Eclipse reorders
the stacking order of the X windows directly without telling gdk this,
which breaks gdk drawing as gdk now relies on knowing the stacking order
for window clipping.
This introduces a GDK_NATIVE_WINDOWS environment variable, which if set
causes Gtk+ to always use native windows. Its more compatible with
pre-csw Gtk+ behaviour if you do weird X-specific hacks, although it does
limit the size of GdkWindows to 65535x65535.
Diffstat (limited to 'gdk/gdkglobals.c')
-rw-r--r-- | gdk/gdkglobals.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdk/gdkglobals.c b/gdk/gdkglobals.c index 35e9908a29..4c3ad80956 100644 --- a/gdk/gdkglobals.c +++ b/gdk/gdkglobals.c @@ -39,6 +39,7 @@ GList *_gdk_default_filters = NULL; gchar *_gdk_display_name = NULL; gint _gdk_screen_number = -1; gchar *_gdk_display_arg_name = NULL; +gboolean _gdk_native_windows = FALSE; GSList *_gdk_displays = NULL; |