in reply to Re: Best Way to Implement a Progress Bar (Tk?)
in thread Best Way to Implement a Progress Bar (Tk?)

Oh, do you have a link to your example? Maybe I should look at that first :) Thx, Desert coder
  • Comment on Re: Re: Best Way to Implement a Progress Bar (Tk?)

Replies are listed 'Best First'.
Re: Best Way to Implement a Progress Bar (Tk?)
by tinman (Curate) on Apr 12, 2001 at 02:23 UTC

    If you want a way to update the status bar, Tk::after might be what you need.

    It allows time delayed callbacks to be made to a particular subroutine. So, you could have a subroutine that checks progress, and updates the status bar variable. This would be called by the $w->after command. (you can set a reference to the callback and the delay in milliseconds between calls.

    The widget example that I referred to is found in the standard distribution. Just in case you can't get your hands on a copy, I'm pasting it in here. Unfortunately, all my scripts that use Tk::ProgressBar are back at home :o) several thousand miles away...

    # ProgressBar - display various progress bars. use strict; use Tk; use Tk::ProgressBar; use Tk::Scale; my $mw = MainWindow->new; my $status_var = 0; my($fromv,$tov) = (0,100); foreach my $loop (0..1) { my $res = 0; my $blks = 10; my @p = qw(top bottom left right); foreach my $dir (qw(n s w e)) { $mw->ProgressBar( -borderwidth => 2, -relief => 'sunken', -width => 20, -padx => 2, -pady => 2, -variable => \$status_var, -colors => [0 => 'green', 50 => 'yellow' , 80 => 'red'], -resolution => $res, -blocks => $blks, -anchor => $dir, -from => $fromv, -to => $tov )->pack( -padx => 10, -pady => 10, -side => pop(@p), -fill => 'both', -expand => 1 ); $blks = abs($blks - ($res * 2)); $res = abs(5 - $res); } ($fromv,$tov) = ($tov,$fromv); } $mw->Scale(-from => 0, -to => 100, -variable => \$status_var)->pack; MainLoop;

    What I'd suggest is that you have a method that updates the variable $status_var in a callback.
    ie:

    # Your script should have $MainWindow->after(10,\&update_var); # this is the update variable callback. sub update_var { $status_var = $work_done/$total; $status_var = $status_var * 100; # get percentage }

    HTH
Re: Re: Re: Best Way to Implement a Progress Bar (Tk?)
by Chmrr (Vicar) on Apr 12, 2001 at 02:28 UTC

    widget is a program which is included in every Tk install. As cited above, if you are running Activestate Perl, you will find it as widget.bat in your perl\bin directory. *NIX users will find it in /usr/bin or suchlike -- wherever perl is to be found.

    FYI, however, here is a working ProgressBar example:

    #!/usr/bin/perl -w use strict; use Tk; use Tk::ProgressBar; use vars qw($status_var); my $main = Tk::MainWindow->new; $main->title('Foo'); $main->Label(-text=>'Loading, please wait...')->pack; $status_var = 0; $main->ProgressBar( -variable => \$status_var, -from => 0, -to => 100 )->pack; $main->after(500,\&do_stuff); Tk::MainLoop; sub do_stuff { for (1..10) { $status_var+= 10; $main->update; sleep 1; } Tk::exit; }

     
    perl -e 'print "I love $^X$\"$]!$/"#$&V"+@( NO CARRIER'