File: cloth

package info (click to toggle)
libtk-gbarr-perl 2.08-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, trixie
  • size: 284 kB
  • sloc: perl: 1,875; makefile: 19
file content (65 lines) | stat: -rw-r--r-- 962 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Object-oriented Canvas.
#!/usr/local/bin/perl -w
use strict;
use Tk qw(Ev);
use Tk::Cloth;

my $mw = Tk::MainWindow->new;

my $cloth = $mw->Cloth();


my $r = $cloth->Rectangle(
	-coords => [0,0,100,100],
	-fill => 'green'
);

{
    my($x,$y);
    $r->bind("<ButtonPress-1>", [
	sub {
	    shift;
	    ($x,$y) = @_
	}, Ev('x'),Ev('y')]
    );
    $r->bind("<B1-Motion>", [
	sub {
	    my($r,$X,$Y) = @_;
	    $r->move($X-$x,$Y-$y);
	    ($x,$y) = ($X,$Y)  
	}, Ev('x'),Ev('y')]
    );
}

my $tag = $cloth->Tag;

$tag->Oval(
	-coords => [100,0,200,100],
	-fill => 'blue'
);

$tag->Oval(
	-coords => [0,200,100,100],
	-fill => 'red'
);

{
    my($x,$y);
    $tag->bind("<ButtonPress-1>", [
	sub {
	    shift;
	    ($x,$y) = @_
	}, Ev('x'),Ev('y')]
    );
    $tag->bind("<B1-Motion>", [
	sub {
	    my($r,$X,$Y) = @_;
	    $r->move($X-$x,$Y-$y);
	    ($x,$y) = ($X,$Y)  
	}, Ev('x'),Ev('y')]
    );
}

$cloth->pack(-fill => 'both', -expand => 1);

Tk::MainLoop;