Method
GdkWindowrestack
since: 2.18
Declaration [src]
void
gdk_window_restack (
GdkWindow* window,
GdkWindow* sibling,
gboolean above
)
Description [src]
Changes the position of window
in the Z-order (stacking order), so that
it is above sibling
(if above
is TRUE
) or below sibling
(if above
is
FALSE
).
If sibling
is NULL
, then this either raises (if above
is TRUE
) or
lowers the window.
If window
is a toplevel, the window manager may choose to deny the
request to move the window in the Z-order, gdk_window_restack()
only
requests the restack, does not guarantee it.
Available since: 2.18
Parameters
sibling
-
Type:
GdkWindow
A
GdkWindow
that is a sibling ofwindow
, orNULL
.The argument can be NULL
.The data is owned by the caller of the method. above
-
Type:
gboolean
A boolean.