forked from hankache/perl6-IUP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIUP.rakudoc
70 lines (41 loc) · 1.47 KB
/
IUP.rakudoc
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
66
67
68
69
70
=head1 NAME
Raku interface to the IUP toolkit for building GUI's.
=head1 DESCRIPTION
Raku interface to the IUP toolkit. IUP is a multi-platform toolkit for
building graphical user interfaces. IUP's purpose is to allow a program
source code to be compiled in different systems without any modification.
Its main advantages are:
* it offers a simple API.
* high performance, due to the fact that it uses native interface elements.
* fast learning by the user, due to the simplicity of its API.
You will need the Linux libraries `libiup` and `libiupimglib` installed
in order to use raku-iup (version 3).
You can download the library binaries or sources for your platform from here
L<http://sourceforge.net/projects/iup/files/3.7/>.
=head1 SYNOPSIS
use IUP;
my $iup = IUP.new();
my @argv = ("Test");
$iup.open(@argv);
$iup.dialog($iup.label("Hello, world!")).show();
$iup.main_loop();
$iup.close();
exit();
=head1 API REFRENCE
The Raku API
=head1 AUTHOR
Henrique Dias - L<[email protected]>
=head1 SEE ALSO
=over 4
=item *
IUP - Portable User Interface L<http://www.tecgraf.puc-rio.br/iup/>
=item *
IUP Source Repository L<http://iup.cvs.sourceforge.net/viewvc/iup/iup/>
=item *
C examples from IUP source repository L<http://iup.cvs.sourceforge.net/viewvc/iup/iup/test/>
=item *
IUP Downloads L<http://sourceforge.net/projects/iup/files/3.7/>
=back
=head1 LICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Raku itself.