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.

RCS: @(#) $Id$

.so man.macros
ttk::sizegrip n 8.5 Tk "Tk Themed Widget"
S
NAME
ttk::sizegrip - Bottom-right corner resize widget
SYNOPSIS
ttk::sizegrip pathName ?options? E
DESCRIPTION

A ttk::sizegrip widget (also known as a grow box) allows the user to resize the containing toplevel window by pressing and dragging the grip. .SO ttk_widget -class -cursor -state -style -takefocus .SE

"WIDGET COMMAND"

Sizegrip widgets support the standard cget, configure, identify, instate, and state methods. No other widget methods are used.

"PLATFORM-SPECIFIC NOTES"

On Mac OSX, toplevel windows automatically include a built-in size grip by default. Adding a ttk::sizegrip there is harmless, since the built-in grip will just mask the widget.

EXAMPLES

Using pack: .CS pack [ttk::frame $top.statusbar] -side bottom -fill x pack [ttk::sizegrip $top.statusbar.grip] -side right -anchor se .CE

Using grid: .CS grid [ttk::sizegrip $top.statusbar.grip] \e -row $lastRow -column $lastColumn -sticky se # ... optional: add vertical scrollbar in $lastColumn, # ... optional: add horizontal scrollbar in $lastRow .CE

"BUGS"

If the containing toplevel's position was specified relative to the right or bottom of the screen (e.g., .QW "wm geometry ... wxh-x-y" instead of .QW "wm geometry ... wxh+x+y" ), the sizegrip widget will not resize the window.

ttk::sizegrip widgets only support .QW southeast resizing.

"SEE ALSO"
ttk::widget(n)
"KEYWORDS"
widget, sizegrip, grow box Local Variables:
mode: nroff
End: