diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-01-31 16:29:33 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-01-31 16:29:33 (GMT) |
commit | 0c3a20c457d2413882bf014b2e17974cbeb7b5a1 (patch) | |
tree | f7de9f822cebd349de9e59ae47bc4592d254fb41 /doc/panedwindow.n | |
parent | 99e85afaaec8b988030dbf8f2d88410594bb3c0a (diff) | |
download | tk-0c3a20c457d2413882bf014b2e17974cbeb7b5a1.zip tk-0c3a20c457d2413882bf014b2e17974cbeb7b5a1.tar.gz tk-0c3a20c457d2413882bf014b2e17974cbeb7b5a1.tar.bz2 |
Fix -height and -width options.
Diffstat (limited to 'doc/panedwindow.n')
-rw-r--r-- | doc/panedwindow.n | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/doc/panedwindow.n b/doc/panedwindow.n index 72665be..f158866 100644 --- a/doc/panedwindow.n +++ b/doc/panedwindow.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: panedwindow.n,v 1.13 2007/12/13 15:23:43 dgp Exp $ +'\" RCS: @(#) $Id: panedwindow.n,v 1.14 2008/01/31 16:29:34 dkf Exp $ '\" .so man.macros .TH panedwindow n 8.4 Tk "Tk Built-In Commands" @@ -16,9 +16,8 @@ panedwindow \- Create and manipulate panedwindow widgets .SH SYNOPSIS \fBpanedwindow\fR \fIpathName \fR?\fIoptions\fR? .SO -\-background \-height \-width -\-borderwidth \-orient -\-cursor \-relief +\-background \-borderwidth \-cursor +\-orient \-relief .SE .SH "WIDGET-SPECIFIC OPTIONS" .OP \-handlepad handlePad HandlePad @@ -28,6 +27,10 @@ which to draw the handle. May be any value accepted by \fBTk_GetPixels\fR. .OP \-handlesize handleSize HandleSize Specifies the side length of a sash handle. Handles are always drawn as squares. May be any value accepted by \fBTk_GetPixels\fR. +.OP \-height height Height +Specifies a desired height for the overall panedwindow widget. May be any +value accepted by \fBTk_GetPixels\fR. If an empty string, the widget will be +made high enough to allow all contained widgets to have their natural height. .OP \-opaqueresize opaqueResize OpaqueResize Specifies whether panes should be resized as a sash is moved (true), or if resizing should be deferred until the sash is placed (false). @@ -47,6 +50,10 @@ Specifies the width of each sash. May be any value accepted by .OP \-showhandle showHandle ShowHandle Specifies whether sash handles should be shown. May be any valid Tcl boolean value. +.OP \-width width Width +Specifies a desired width for the overall panedwindow widget. May be any +value accepted by \fBTk_GetPixels\fR. If an empty string, the widget will be +made wide enough to allow all contained widgets to have their natural width. .BE .SH DESCRIPTION .PP |