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
31
33 Tk_RestackWindow changes the stacking order of window relative to its
34 siblings. If other is specified as NULL then window is repositioned at
35 the top or bottom of its stacking order, depending on whether aboveBe‐
36 low is Above or Below. If other has a non-NULL value then window is
37 repositioned just above or below other.
38
39 The aboveBelow argument must have one of the symbolic values Above or
40 Below. Both of these values are defined by the include file
41 <X11/Xlib.h>.
42
43
45 above, below, obscure, stacking order
46
47
48
49Tk Tk_RestackWindow(3)