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

NAME

Text::ProgressBar:::AnimatedMarker - a rotating wheel on screen

VERSION

version 0.2

SYNOPSIS

    use Text::ProgressBar::AnimatedMarker;

    my $bar = Text::ProgressBar->new(widgets => [Text::ProgressBar::AnimatedMarker->new()]);
    $bar->start();
    for my $i (1..50) {
        sleep 0.08;
        $bar->update($i+1);
    }
    $bar->finish;
    

DESCRIPTION

An animated marker for the progress bar which defaults to appear as if it were rotating, indicating that the program is busy but not indicating how much progress has been made.

ATTRIBUTES

markers

defines characters for animating rotating

curmark

current position of marker

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.