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 / demos / widtrib / form_mgr.pl
CommitLineData
86530b38
AT
1# Form, window management by Tix->form.
2
3use Tk;
4
5my $Main = MainWindow->new();
6
7my $box4 = $Main->Label(-text => 'box4', -borderwidth => 1, -relief => "raised");
8my $box1 = $Main->Label(-text => 'box1',-borderwidth => 1, -relief => "raised");
9my $box2 = $Main->Label(-text => 'box2',-borderwidth => 1, -relief => "raised");
10my $box3 = $Main->Label(-text => 'box3',-borderwidth => 1, -relief => "raised");
11
12$box1->form(-top => '%0', -left => '%0', -right => '%100');
13$box2->form(-top => $box1, -left => '%0', -right => '%50', -bottom =>
14$box4);
15$box3->form(-top => $box1, -left => $box2, -right => '%100', -bottom =>
16$box4);
17$box4->form(-left => '%0', -right => '%100', -bottom => '%100');
18
19MainLoop;
20__END__
21