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

NAME

Text::ProgressBar::ReverseBar - progress bar which stretches to fill the line in reverse order

VERSION

version 0.2

SYNOPSIS

    use Text::ProgressBar::ReverseBar;

    my $prevbar = Text::ProgressBar->new(maxval => 300, widgets  => [Text::ProgressBar::Percentage->new(), Text::ProgressBar::ReverseBar->new()]);
    $prevbar->start();
    for my $i (1..300) {
        sleep 0.01;
        $prevbar->update($i+1);
    }
    $prevbar->finish;
    

DESCRIPTION

A progress bar which stretches to fill the line but from right to left. It inherits all attributes of 'Bar' and can extend them.

The drawing ascii characters can be changed during calling class constructor or by calling the corresponding methods. Example of defalut output

    |          #######|

METHODS

BUILD

add additional works after object creation

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.