Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / sun4-solaris / Tk / Tiler.pod
CommitLineData
86530b38
AT
1
2=head1 NAME
3
4Tk::Tiler - Scrollable frame with sub-widgets arranged into rows
5
6=for pm Tk/Tiler.pm
7
8=for category Tk Geometry Management
9
10=head1 SYNOPSIS
11
12 use Tk::Tiler;
13
14 my $tl = $parent->Scrolled('Tiler', -columns => n, -rows => n);
15
16 my $a = $tl->Xxxxx(...);
17 my $b = $tl->Xxxxx(...);
18 my $c = $tl->Xxxxx(...);
19
20 $tl->Manage($a,$b,$c);
21
22=head1 DESCRIPTION
23
24Tiler is derived form Tk::Frame. It is a geometry managing widget which
25accepts widgets to manage. It places the widgets in a grid with as many
26widgets as possible in a row. All the "slots" in the grid are the same size,
27which is determined by the largest managed widget.
28
29The grid may be scrolled vertically.
30
31=cut
32