diff options
author | Alexander Larsson <alexl@redhat.com> | 2009-07-01 14:36:36 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2009-07-01 14:36:36 +0200 |
commit | 10bf7ca74459a68440e23ecb26c2b037b81aefd1 (patch) | |
tree | 54fc197a53e2184d3f4453e212c2d2d868880f2b /gdk/gdkwindow.h | |
parent | 681c3c288b958cd11cdf31dced1b65ee4520aef5 (diff) | |
download | gtk+-10bf7ca74459a68440e23ecb26c2b037b81aefd1.tar.gz |
Clean up embedding apiclient-side-windows
we now use gdk_offscreen_window_set_embedder() instead of a signal
to get the parent. This also replaces set_has_offscreen_changes.
Rename "parent" in all embedding related names to "embedder" to make it
more obviously different than the normal parent.
Rename gdk_window_get_offscreen_pixmap to gdk_offscreen_window_get_pixmap
to match the other offscreen calls.
Rename gdk_window_offscreen_children_changed to gdk_window_geometry_changed
as this is more descriptive.
Diffstat (limited to 'gdk/gdkwindow.h')
-rw-r--r-- | gdk/gdkwindow.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkwindow.h b/gdk/gdkwindow.h index df3c911809..f93e2e3d3c 100644 --- a/gdk/gdkwindow.h +++ b/gdk/gdkwindow.h @@ -660,11 +660,11 @@ GdkPointerHooks *gdk_set_pointer_hooks (const GdkPointerHooks *new_hooks); GdkWindow *gdk_get_default_root_window (void); /* Offscreen redirection */ -GdkPixmap *gdk_window_get_offscreen_pixmap (GdkWindow *window); -void gdk_window_set_has_offscreen_children (GdkWindow *window, - gboolean has_offscreen_children); -gboolean gdk_window_get_has_offscreen_children (GdkWindow *window); -void gdk_window_offscreen_children_changed (GdkWindow *window); +GdkPixmap *gdk_offscreen_window_get_pixmap (GdkWindow *window); +void gdk_offscreen_window_set_embedder (GdkWindow *window, + GdkWindow *embedder); +GdkWindow *gdk_offscreen_window_get_embedder (GdkWindow *window); +void gdk_window_geometry_changed (GdkWindow *window); void gdk_window_redirect_to_drawable (GdkWindow *window, GdkDrawable *drawable, |