aboutsummaryrefslogtreecommitdiff
path: root/Perl/demos/Tk/demos/zinc_lib/counter.pl
diff options
context:
space:
mode:
authormertz2003-03-24 15:00:07 +0000
committermertz2003-03-24 15:00:07 +0000
commit0b183e91ae36b98f805211b34f099962af875458 (patch)
tree9aea98404103535d78e876c3c731c5bd0ec7783c /Perl/demos/Tk/demos/zinc_lib/counter.pl
parentba28c4b7fc7f45834c8131982d49f4872f7940e7 (diff)
downloadtkzinc-0b183e91ae36b98f805211b34f099962af875458.zip
tkzinc-0b183e91ae36b98f805211b34f099962af875458.tar.gz
tkzinc-0b183e91ae36b98f805211b34f099962af875458.tar.bz2
tkzinc-0b183e91ae36b98f805211b34f099962af875458.tar.xz
passage au nouveau format de gradient (>> 3.2.6h)
Diffstat (limited to 'Perl/demos/Tk/demos/zinc_lib/counter.pl')
-rw-r--r--Perl/demos/Tk/demos/zinc_lib/counter.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/Perl/demos/Tk/demos/zinc_lib/counter.pl b/Perl/demos/Tk/demos/zinc_lib/counter.pl
index 5df227b..7c03047 100644
--- a/Perl/demos/Tk/demos/zinc_lib/counter.pl
+++ b/Perl/demos/Tk/demos/zinc_lib/counter.pl
@@ -29,17 +29,17 @@ my $zinc = $mw->Zinc(-width => 700, -height => 400,
my $r = $zinc->add('rectangle', 1,
[0,0,700,700],
-filled => 1, -linewidth => 0,
- -fillcolor => "red:40|green:40 50|blue:40/90"
+ -fillcolor => "=axial 90 |red;40|green;40 50|blue;40"
);
# The explanation displayed when running this demo
$zinc->add('text', 1,
-position=> [10,10],
- -text => 'This toy-appli shows a simple counter. It is made thanks to clipping
-and contours : this is the only way to do this.
-You can drag the counter. Observe that the colour of the backgound of the
-counter is the same as the one of the window (use of clips)',
- -font => "9x15",
+ -text => 'This toy-appli shows a simple counter. It is made thanks
+to clipping and contours : this is the only way to do this.
+You can drag the counter. Observe that the color of the background
+of the counter is the same as the one of the window (use of clips)',
+ -font => "10x20",
);
###################################################