38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
'\"
|
|
'\" Copyright (c) 1990 The Regents of the University of California.
|
|
'\" Copyright (c) 1994 Sun Microsystems, Inc.
|
|
'\"
|
|
'\" See the file "license.terms" for information on usage and redistribution
|
|
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
'\"
|
|
'\" @(#) raise.n 1.5 95/06/05 13:21:38
|
|
'\"
|
|
.so STk-man.macros
|
|
.TH raise n 3.1 STk "Tk Built-In Commands"
|
|
.BS
|
|
'\" Note: do not modify the .SH NAME line immediately below!
|
|
.SH NAME
|
|
raise \- Change a window's position in the stacking order
|
|
.SH SYNOPSIS
|
|
(\fBraise \fIwindow\fR)
|
|
.sp
|
|
(\fBraise \fIwindow \fR\fIaboveThis\fR)
|
|
.BE
|
|
|
|
.SH DESCRIPTION
|
|
.PP
|
|
If the \fIaboveThis\fR argument is omitted then the procedure raises
|
|
\fIwindow\fR so that it is above all of its siblings in the stacking
|
|
order (it will not be obscured by any siblings and will obscure
|
|
any siblings that overlap it).
|
|
If \fIaboveThis\fR is specified then it must be the path name of
|
|
a window that is either a sibling of \fIwindow\fR or the descendant
|
|
of a sibling of \fIwindow\fR.
|
|
In this case the \fBraise\fR procedure will insert
|
|
\fIwindow\fR into the stacking order just above \fIaboveThis\fR
|
|
(or the ancestor of \fIaboveThis\fR that is a sibling of \fIwindow\fR);
|
|
this could end up either raising or lowering \fIwindow\fR.
|
|
|
|
.SH SEE ALSO
|
|
lower
|