1Tk_RestackWindow(3) Tk Library Procedures Tk_RestackWindow(3)
2
3
4
5______________________________________________________________________________
6
8 Tk_RestackWindow - Change a window's position in the stacking order
9
11 #include <tk.h>
12
13 int
14 Tk_RestackWindow(tkwin, aboveBelow, other)
15
17 Tk_Window tkwin (in) Token for window to restack.
18
19 int aboveBelow (in) Indicates new position of tkwin rel‐
20 ative to other; must be Above or
21 Below.
22
23 Tk_Window other (in) Tkwin will be repositioned just
24 above or below this window. Must be
25 a sibling of tkwin or a descendant
26 of a sibling. If NULL then tkwin is
27 restacked above or below all sib‐
28 lings.
29______________________________________________________________________________
30
32 Tk_RestackWindow changes the stacking order of window relative to its
33 siblings. If other is specified as NULL then window is repositioned at
34 the top or bottom of its stacking order, depending on whether aboveBe‐
35 low is Above or Below. If other has a non-NULL value then window is
36 repositioned just above or below other.
37
38 The aboveBelow argument must have one of the symbolic values Above or
39 Below. Both of these values are defined by the include file
40 <X11/Xlib.h>.
41
43 above, below, obscure, stacking order
44
45
46
47Tk Tk_RestackWindow(3)