Tk-Taxis
view release on metacpan or search on metacpan
eg/woodlice.pl view on Meta::CPAN
-to => 50,
-tickinterval => 10,
%scale_opt,
)
->pack();
$population_scale->set( $population );
$population_frame->grid
(
-column => 1,
-row => 1,
-columnspan => 2,
%pad_opt,
);
my $mode_frame = $option_box->Frame
(
%frame_opt,
)
->grid
(
-column => 1,
-row => 2,
-columnspan => 2,
%pad_opt,
);
my $light_button = $mode_frame->Checkbutton
(
-text => "Light/Dark",
-variable => \$light,
-selectcolor => $background,
%label_opt,
)
->grid
eg/woodlice.pl view on Meta::CPAN
-title => 'Help',
);
my $frame = $help->Frame
(
%frame_opt,
)
->grid
(
-column => 1,
-row => 1,
-columnspan => 2,
%pad_opt,
);
my $text = $frame->Label
(
-font => 'sserif 12',
-text => $help_text,
-wraplength => 600,
-justify => 'left',
-background => $background,
)
eg/woodlice.pl view on Meta::CPAN
-width => 1000,
);
my $frame = $dialog->Frame
(
%frame_opt,
);
$frame->grid
(
-column => 1,
-row => 1,
-columnspan => 2,
%pad_opt,
);
my $text = $frame->Label
(
-width => 50,
-font => 'sserif 12',
-text => $dialog_text,
-wraplength => 400,
-justify => 'left',
-background => $background,
( run in 0.297 second using v1.01-cache-2.11-cpan-a5abf4f5562 )