The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Tk::ProgressIndicator - Another, simpler ProgressBar

SYNOPSIS

my $MainWindow = MainWindow->new();
$ProgressIndicator = $MainWindow->ProgressIndicator
(
'-current' => 0,
'-limit' => 200,
'-increment' => 10,
'-height' => 20,
'-width' => 400
);
Tk::MainLoop;
...
$ProgressIndicator->configure ('-current' => ++$index);

DESCRIPTION

A progress bar widget.

AUTHORS

Damion K. Wilson, dkw@rcm.bm

HISTORY

1 POD Error

The following errors were encountered while parsing the POD:

Around line 163:

=cut found outside a pod block. Skipping to next block.