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 / widget_lib / form.pl
# form.pl
use vars qw/$TOP/;
sub form {
# Create a top-level window that displays a bunch of entries with
# tabs set up to move between them.
my($demo) = @_;
$TOP = $MW->WidgetDemo(
-name => $demo,
-text => 'This window contains a simple form where you can type in the various entries and use tabs to move circularly between the entries.',
-title => 'Form Demonstration',
-iconname => 'form',
);
my $f = $TOP->Frame->pack(-fill => 'both');
my $row = 0;
foreach ('Name:', 'Address:', '', '', 'Phone:') {
my $e = $f->Entry(qw/-relief sunken -width 40/);
my $l = $f->Label(-text => $_, -anchor => 'e', -justify => 'right');
Tk::grid( $l, -row => $row, -column => 0, -sticky => 'e');
Tk::grid( $e, -row => $row++, -column => 1,-sticky => 'ew');
$f->gridRowconfigure(1,-weight => 1);
$e->focus if $_ eq 'Name:';
}
$TOP->bind('<Return>' => [$TOP => 'destroy']);
} # end form
1;