Tk-MK
view release on metacpan or search on metacpan
lib/Tk/ProgressBarPlus.pm view on Meta::CPAN
package Tk::ProgressBarPlus;
use vars qw($VERSION);
$VERSION = '3.0141'; # $Id: //depot/Tk8/Tk/ProgressBar.pm#14 $
use Tk;
use Tk::Canvas;
use Carp;
use strict;
use base qw(Tk::Derived Tk::Canvas);
Construct Tk::Widget 'ProgressBarPlus';
sub ClassInit {
my ($class,$mw) = @_;
$class->SUPER::ClassInit($mw);
$mw->bind($class,'<Configure>', ['_layoutRequest',1]);
}
sub Populate {
my($c,$args) = @_;
$c->ConfigSpecs(
-width => [PASSIVE => undef, undef, 0],
'-length' => [PASSIVE => undef, undef, 0],
-from => [PASSIVE => undef, undef, 0],
-to => [PASSIVE => undef, undef, 100],
-blocks => [PASSIVE => undef, undef, 10],
-padx => [PASSIVE => 'padX', 'Pad', 0],
-pady => [PASSIVE => 'padY', 'Pad', 0],
-gap => [PASSIVE => undef, undef, 1],
-colors => [PASSIVE => undef, undef, undef],
-relief => [SELF => 'relief', 'Relief', 'sunken'],
-value => [METHOD => undef, undef, undef],
-variable => [METHOD => undef, undef, undef],
-anchor => [METHOD => 'anchor', 'Anchor', 'w'],
-resolution
=> [PASSIVE => undef, undef, 1.0],
-highlightthickness
=> [SELF => 'highlightThickness','HighlightThickness',0],
-troughcolor
=> [PASSIVE => 'troughColor', 'Background', 'grey55'],
# for Value-Display
-showvalue => [PASSIVE => undef, undef, 0],
-valueformat => [PASSIVE => undef, undef, '%s%%'],
-valuecolor => [PASSIVE => undef, undef, 'white'],
-font => [PASSIVE => 'font', 'Font', undef],
);
_layoutRequest($c,1);
$c->OnDestroy(['Destroyed' => $c]);
}
sub anchor {
my $c = shift;
my $var = \$c->{Configure}{'-anchor'};
my $old = $$var;
if(@_) {
my $new = shift;
croak "bad anchor position \"$new\": must be n, s, w or e"
unless $new =~ /^[news]$/;
$$var = $new;
}
$old;
}
( run in 0.980 second using v1.01-cache-2.11-cpan-d7a12ab2c7f )