Skip to content

Latest commit

 

History

History
70 lines (41 loc) · 1.48 KB

IUP.pod

File metadata and controls

70 lines (41 loc) · 1.48 KB

NAME

Perl 6 interface to the IUP toolkit for building GUI's.

DESCRIPTION

Perl 6 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 perl6-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 perl6 API

AUTHOR

Henrique Dias - [email protected]

SEE ALSO

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.