Tk::Wizard 1.9451 review

Download
by rbytes.net on

Tk::Wizard is a GUI for step-by-step interactive logical process. SYNOPSIS use Tk::Wizard; my $wizard = new Tk

License: Perl Artistic License
File size: 59K
Developer: Lee Goddard
0 stars award from rbytes.net

Tk::Wizard is a GUI for step-by-step interactive logical process.

SYNOPSIS

use Tk::Wizard;
my $wizard = new Tk::Wizard;
#
# OR
# my $MW = Tk::MainWindow->new;
# my $wizard = $MW->Wizard();
#
$wizard->configure( -property=>'value');
$wizard->cget( "-property");
$wizard->addPage(
... code-ref to anything returning a Tk::Frame ...
);
$wizard->addPage( sub {
return $wizard->blank_frame(
-title => "Page Title",
-subtitle => "Sub-title",
-text => "Some text.",
-wait => $seconds_b4_proceeding_anyway,
);
});
$wizard->Show;
MainLoop;
exit;

To avoid 50 lines of SYNOPSIS, please see the files included with the distribution in the test directory: t/*.t. These are just Perl files that are run during the make test phase of installation: you may rename them without harm once you have installed the module.

Requirements:
Tk and modules of the current standard Perl Tk distribution.

Tk::Wizard 1.9451 search tags