IUP
NAME
Raku interface to the IUP toolkit for building GUI's.
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 http://sourceforge.net/projects/iup/files/3.7/.
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();
API REFRENCE
The Raku API
AUTHOR
Henrique Dias - [email protected]
SEE ALSO
=over 4
*
IUP - Portable User Interface http://www.tecgraf.puc-rio.br/iup/
*
IUP Source Repository http://iup.cvs.sourceforge.net/viewvc/iup/iup/
*
C examples from IUP source repository http://iup.cvs.sourceforge.net/viewvc/iup/iup/test/
*
IUP Downloads http://sourceforge.net/projects/iup/files/3.7/
=back
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Raku itself.