Perl TK resize window

2k Views Asked by At

Is it possible to automatically resize a Tk window to the width and height of the text inside of the text plot?

1

There are 1 best solutions below

0
On

You can easily measure how wide some text is in a particular font:

$font = $widget->Font(....);              # Get the font however you want
$lineWidth = $font->measure($text);       # Do this for each line; take the max
$lineHeight = $font->metrics(-linespace); # Get the height of a line; x # lines

Add in a bit of slop for borders, etc., and use this to set the size of the toplevel:

$toplevel->configure(-width=>$width, -height=>$height);

If it's not a toplevel that you want to control, it's easiest to do this by putting the contents in a frame and controlling the size of that frame (same method, same options). Also be aware that if you have too many rows or too long lines, it won't fit on the screen anyway.