diff options
author | Havoc Pennington <hp@pobox.com> | 2001-06-28 05:24:00 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-06-28 05:24:00 +0000 |
commit | 796dc4b1d76e79ef3c4a95751c33aabf721bfc51 (patch) | |
tree | fe309e817946c5290c93724bbfe64c3cf345acb6 /gdk/x11/gdkgeometry-x11.c | |
parent | 8eaa071617f29f267bb0ffb05976fa5885dbf595 (diff) | |
download | gdk-pixbuf-796dc4b1d76e79ef3c4a95751c33aabf721bfc51.tar.gz |
new function for mapping a window without fooling with stacking order, but
2001-06-19 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkwindow-x11.c (gdk_window_show_unraised): new function
for mapping a window without fooling with stacking order, but
updating the "withdrawn" flag
* gdk/x11/gdkevents-x11.c (gdk_event_translate): Do event
filtering as soon as possible, moving move resize and wmspec_check
handling after the event filter. Make default filter apply to all
events, not just those with no GdkWindow wrapped around the X
window. Fix a FIXME about how the window could be a pixmap using
RTTI; this of course assumes GDK_IS_WINDOW() is optimized.
Also, be robust against events not on a known GdkWindow.
* gdk/x11/gdkmain-x11.c (gdk_x11_grab_server,
gdk_x11_ungrab_server): export reference-counted server grabs, so
other people can grab server over a GDK function that also does
so.
Diffstat (limited to 'gdk/x11/gdkgeometry-x11.c')
-rw-r--r-- | gdk/x11/gdkgeometry-x11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/x11/gdkgeometry-x11.c b/gdk/x11/gdkgeometry-x11.c index dff7274f6..28e10fc56 100644 --- a/gdk/x11/gdkgeometry-x11.c +++ b/gdk/x11/gdkgeometry-x11.c @@ -709,7 +709,7 @@ _gdk_window_process_expose (GdkWindow *window, GdkRegion *invalidate_region = gdk_region_rectangle (area); GdkRegion *clip_region; GSList *tmp_list = translate_queue; - + impl = GDK_WINDOW_IMPL_X11 (GDK_WINDOW_OBJECT (window)->impl); while (tmp_list) @@ -747,7 +747,7 @@ _gdk_window_process_expose (GdkWindow *window, if (!gdk_region_empty (invalidate_region)) gdk_window_invalidate_region (window, invalidate_region, FALSE); - + gdk_region_destroy (invalidate_region); gdk_region_destroy (clip_region); } |