diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-09-22 18:51:12 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-09-22 18:51:12 (GMT) |
commit | 3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7 (patch) | |
tree | 69afbb41089c8358615879f7cd3c4cf7997f4c7e /tk8.6/doc/ttk_sizegrip.n | |
parent | a0e17db23c0fd7c771c0afce8cce350c98f90b02 (diff) | |
download | blt-3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7.zip blt-3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7.tar.gz blt-3fa8e6dc88e8041b6cb88d1b1e9c05676d3346b7.tar.bz2 |
update to tcl/tk 8.6.7
Diffstat (limited to 'tk8.6/doc/ttk_sizegrip.n')
-rw-r--r-- | tk8.6/doc/ttk_sizegrip.n | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/tk8.6/doc/ttk_sizegrip.n b/tk8.6/doc/ttk_sizegrip.n deleted file mode 100644 index 8b3429e..0000000 --- a/tk8.6/doc/ttk_sizegrip.n +++ /dev/null @@ -1,69 +0,0 @@ -'\" -'\" Copyright (c) 2006 Joe English -'\" -'\" See the file "license.terms" for information on usage and redistribution -'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. -'\" -.TH ttk::sizegrip n 8.5 Tk "Tk Themed Widget" -.so man.macros -.BS -.SH NAME -ttk::sizegrip \- Bottom-right corner resize widget -.SH SYNOPSIS -\fBttk::sizegrip\fR \fIpathName \fR?\fIoptions\fR? -.BE -.SH DESCRIPTION -.PP -A \fBttk::sizegrip\fR widget (also known as a \fIgrow box\fR) -allows the user to resize the containing toplevel window -by pressing and dragging the grip. -.SO ttk_widget -\-class \-cursor \-state -\-style \-takefocus -.SE -.SH "WIDGET COMMAND" -.PP -Sizegrip widgets support the standard -\fBcget\fR, \fBconfigure\fR, \fBidentify\fR, \fBinstate\fR, and \fBstate\fR -methods. No other widget methods are used. -.SH "PLATFORM-SPECIFIC NOTES" -.PP -On Mac OSX, toplevel windows automatically include a built-in -size grip by default. -Adding a \fBttk::sizegrip\fR there is harmless, since -the built-in grip will just mask the widget. -.SH EXAMPLES -.PP -Using pack: -.CS -pack [ttk::frame $top.statusbar] \-side bottom \-fill x -pack [\fBttk::sizegrip\fR $top.statusbar.grip] \-side right \-anchor se -.CE -.PP -Using grid: -.CS -grid [\fBttk::sizegrip\fR $top.statusbar.grip] \e - \-row $lastRow \-column $lastColumn \-sticky se -# ... optional: add vertical scrollbar in $lastColumn, -# ... optional: add horizontal scrollbar in $lastRow -.CE -.SH "BUGS" -.PP -If the containing toplevel's position was specified -relative to the right or bottom of the screen -(e.g., -.QW "\fBwm geometry ... \fIw\fBx\fIh\fB\-\fIx\fB\-\fIy\fR" -instead of -.QW "\fBwm geometry ... \fIw\fBx\fIh\fB+\fIx\fB+\fIy\fR" ), -the sizegrip widget will not resize the window. -.PP -\fBttk::sizegrip\fR widgets only support -.QW southeast -resizing. -.SH "SEE ALSO" -ttk::widget(n) -.SH "KEYWORDS" -widget, sizegrip, grow box -'\" Local Variables: -'\" mode: nroff -'\" End: |