Tweak x11-toolkits/itk version 3.3_3
[dports.git] / x11-toolkits / p5-Prima / pkg-descr
1 Prima is an extensible Perl toolkit for multi-platform GUI development.
2 Platforms supported include Linux, Windows NT/9x/2K, OS/2 and UNIX/X11
3 workstations ( FreeBSD, IRIX, SunOS, Solaris  and others). The toolkit 
4 contains a rich set of standard  widgets and has  emphasis on 2D image
5 processing tasks.  A Perl program using PRIMA looks and behaves identically 
6 on X, Win32 and OS/2 PM.  The toolkit includes a visual builder ( VB ) and 
7 a graphic pod viewer utility ( podview ). The examples are installed into 
8 perl site in Prima/examples directory. 
9 A 'hello world' code is as simple as follows:
10
11    use Prima qw(Application Buttons);
12    Prima::Window-> create(
13       text     => 'Hello world!',
14       size     => [ 200, 200],
15    )-> insert( Button =>
16       centered => 1,
17       text     => 'Hello world!',
18       onClick  => sub { $::application-> close },
19    );
20    run Prima;
21
22 WWW: http://search.cpan.org/dist/Prima/
23 WWW: http://prima.eu.org/