summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorpspjuth <pspjuth@noemail.net>2004-11-07 22:21:12 (GMT)
committerpspjuth <pspjuth@noemail.net>2004-11-07 22:21:12 (GMT)
commit0a2a7304a0723cdaa44ab060f0d0e2f1a2ce5a02 (patch)
treedc26327c9347c612961ff3f9cb80a908e872966f /doc
parentccae12778bb026141c86785e4ddb61ecfc4c85cc (diff)
downloadtk-0a2a7304a0723cdaa44ab060f0d0e2f1a2ce5a02.zip
tk-0a2a7304a0723cdaa44ab060f0d0e2f1a2ce5a02.tar.gz
tk-0a2a7304a0723cdaa44ab060f0d0e2f1a2ce5a02.tar.bz2
doc/frame.n: Added some info for -width/-height options. [Bug 1055423]
FossilOrigin-Name: 2e72c8bef20c49b5311413ccb253db3c9ab64650
Diffstat (limited to 'doc')
-rw-r--r--doc/frame.n20
1 files changed, 13 insertions, 7 deletions
diff --git a/doc/frame.n b/doc/frame.n
index cb00955..5ab53f8 100644
--- a/doc/frame.n
+++ b/doc/frame.n
@@ -6,7 +6,7 @@
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
'\"
-'\" RCS: @(#) $Id: frame.n,v 1.4 2001/09/26 21:36:19 pspjuth Exp $
+'\" RCS: @(#) $Id: frame.n,v 1.5 2004/11/07 22:21:13 pspjuth Exp $
'\"
.so man.macros
.TH frame n 8.4 Tk "Tk Built-In Commands"
@@ -57,9 +57,12 @@ This option may not be changed with the \fBconfigure\fR
widget command.
.OP \-height height Height
Specifies the desired height for the window in any of the forms
-acceptable to \fBTk_GetPixels\fR.
-If this option is less than or equal to zero then the window will
-not request any size at all.
+acceptable to \fBTk_GetPixels\fR. If this option is less than or equal
+to zero then the window will not request any size at all. Note that this
+sets the total height of the frame, any \fB-borderwidth\fR or similar is
+not added. Normally \fB\-height\fR should not be used if a propagating
+geometry manager, such as \fBgrid\fR or \fBpack\fR, is used within the
+frame since the geometry manager will override the height of the frame.
.OP \-visual visual Visual
Specifies visual information for the new window in any of the
forms accepted by \fBTk_GetVisual\fR.
@@ -69,9 +72,12 @@ The \fBvisual\fR option may not be modified with the \fBconfigure\fR
widget command.
.OP \-width width Width
Specifies the desired width for the window in any of the forms
-acceptable to \fBTk_GetPixels\fR.
-If this option is less than or equal to zero then the window will
-not request any size at all.
+acceptable to \fBTk_GetPixels\fR. If this option is less than or equal
+to zero then the window will not request any size at all. Note that this
+sets the total width of the frame, any \fB-borderwidth\fR or similar is
+not added. Normally \fB\-width\fR should not be used if a propagating
+geometry manager, such as \fBgrid\fR or \fBpack\fR, is used within the
+frame since the geometry manager will override the width of the frame.
.BE
.SH DESCRIPTION