The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Text::ProgressBar::Counter - displays the current count

VERSION

version 0.2

SYNOPSIS

    use Text::ProgressBar::Counter;

    my $bar = Text::ProgressBar->new(maxval => 17, widgets  => [Text::ProgressBar::Counter->new()]);
    $bar->start();
    for my $i (1..17) {
        sleep 0.2;
        $bar->update($i+1);
    }
    $bar->finish;

DESCRIPTION

Displays the current count. It runs from 1 to max number successively.

ATTRIBUTES

format_string

format of output string

METHODS

update

handler for redrawing current regions within the area. (Inherited from Widget.)

AUTHOR

Farhad Fouladi, <farhad at cpan.org>

LICENSE AND COPYRIGHT

Copyright 2012 Farhad Fouladi.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.