Add gdk_window_restack

This lets you restack a window above or below a specified sibling.
At least eclipse wants this functionallity.
This commit is contained in:
Alexander Larsson
2009-09-02 23:38:55 +02:00
parent 45956aea21
commit d67a7eda16
7 changed files with 157 additions and 0 deletions

View File

@ -2092,6 +2092,14 @@ gdk_win32_window_restack_under (GdkWindow *window,
// ### TODO
}
static void
gdk_win32_window_restack_toplevel (GdkWindow *window,
GdkWindow *sibling,
gboolean above)
{
// ### TODO
}
void
gdk_window_get_root_origin (GdkWindow *window,
gint *x,
@ -3634,6 +3642,7 @@ gdk_window_impl_iface_init (GdkWindowImplIface *iface)
iface->raise = gdk_win32_window_raise;
iface->lower = gdk_win32_window_lower;
iface->restack_under = gdk_win32_window_restack_under;
iface->restack_toplevel = gdk_win32_window_restack_toplevel;
iface->move_resize = gdk_win32_window_move_resize;
iface->set_background = gdk_win32_window_set_background;
iface->set_back_pixmap = gdk_win32_window_set_back_pixmap;