From e6a05dbef707dc10e546ef8fef8fc2a8b7d805bf Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Mon, 24 Jan 2005 15:46:33 +0000 Subject: This commit was manufactured by cvs2svn to create branch 'POSTSCRIPT'. --- sandbox/lines.pl | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 sandbox/lines.pl (limited to 'sandbox/lines.pl') diff --git a/sandbox/lines.pl b/sandbox/lines.pl deleted file mode 100644 index 5e7fc6e..0000000 --- a/sandbox/lines.pl +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/perl -w - -use Tk; -use Tk::Zinc; - -$mw = MainWindow->new(); - -$top = 1; -$zinc = $mw->Zinc(-render => 1, - -borderwidth => 0, - -highlightthickness => 0, - -relief => 'sunken', - -takefocus => 1, -# -tile => $papier - ); -$zinc->pack(-expand => 1, -fill => 'both'); -$zinc->configure(-width => 500, -height => 500); - -print "coucou\n"; -$view = $zinc->add('group', $top, -tags => "controls"); -$mp3 = $zinc->add('curve', $view, [20, 280, 100, 430, 200, 430], - -linewidth => 9, - -closed => 0, - -linestyle => 'dashed', - -joinstyle => 'round', -# -firstend => [3, 12, 8], -# -lastend => "12 12 8", - -capstyle => 'round', - -linecolor => 'red:100'); - -$mw->Tk::bind('

', sub { print "perfs: ", join(',', $zinc->monitor()), "\n" }); -$mw->Tk::bind('', sub { $zinc->remove($mp3); }); -$mw->Tk::bind('', sub { exit(0); }); -$zinc->focusFollowsMouse(); -MainLoop(); -- cgit v1.1