Build Status

NAME

Fl - Bindings for the Stable 1.3.x Branch of the Fast Light Toolkit

SYNOPSIS

use Fl qw[:execute];
my $window = Fl::Window->new(100, 100, 300, 180);
my $box = Fl::Box->new(20, 40, 260, 100, 'Hello, World');
#$box->labelfont(BOLD + ITALIC); # TODO
$box->labelsize(36);
#$box->labelfont(SHADOW_LABEL); # TODO
$window->end();
$window->show();
exit run();

DESCRIPTION

The Fl distribution includes bindings to the stable 1.3.x branch of the Fast Light Toolkit; a cross-platform GUI toolkit compatible with Microsoft Windows, MacOS X, and Linux/Unix platforms with X11. It was designed to be small, quick and comes with a very simple yet complete API.

Functions

The top level Fl namespace exports several functions sorted by type.

use Fl qw[:execute];

This would import functions related to application execution directly into your namespace. These functions include:

This list will grow.

Classes

Fl contains several widgets and other classes including:

This is the current list and will expand as the distribution develops.

LICENSE

Copyright (C) Sanko Robinson.

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

AUTHOR

Sanko Robinson <sanko@cpan.org>