Restack.3
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
- '"
- '" Copyright (c) 1990 The Regents of the University of California.
- '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
- '"
- '" See the file "license.terms" for information on usage and redistribution
- '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- '"
- '" RCS: @(#) $Id: Restack.3,v 1.2 1998/09/14 18:22:53 stanton Exp $
- '"
- .so man.macros
- .TH Tk_RestackWindow 3 "" Tk "Tk Library Procedures"
- .BS
- .SH NAME
- Tk_RestackWindow - Change a window's position in the stacking order
- .SH SYNOPSIS
- .nf
- fB#include <tk.h>fR
- .sp
- int
- fBTk_RestackWindowfR(fItkwin, aboveBelow, otherfR)
- .SH ARGUMENTS
- .AS Tk_Window aboveBelow
- .AP Tk_Window tkwin in
- Token for window to restack.
- .AP int aboveBelow in
- Indicates new position of fItkwinfR relative to fIotherfR;
- must be fBAbovefR or fBBelowfR.
- .AP Tk_Window other in
- fITkwinfR will be repositioned just above or below this window.
- Must be a sibling of fItkwinfR or a descendant of a sibling.
- If NULL then fItkwinfR is restacked above or below all siblings.
- .BE
- .SH DESCRIPTION
- .PP
- fBTk_RestackWindowfR changes the stacking order of fIwindowfR relative
- to its siblings.
- If fIotherfR is specified as NULL then fIwindowfR is repositioned
- at the top or bottom of its stacking order, depending on whether
- fIaboveBelowfR is fBAbovefR or fBBelowfR.
- If fIotherfR has a non-NULL value then fIwindowfR is repositioned
- just above or below fIotherfR.
- .PP
- The fIaboveBelowfR argument must have one of the symbolic values
- fBAbovefR or fBBelowfR.
- Both of these values are defined by the include file <X11/Xlib.h>.
- .SH KEYWORDS
- above, below, obscure, stacking order