NAME
    FLTK - Perl bindings to the Fast Light Toolkit

Description
    FLTK is a graphical user interface toolkit for X (UNIX®), Microsoft®
    Windows®, OS/X, and several other platforms. FLTK provides modern GUI
    functionality without the bloat and supports 3D graphics via OpenGL® and
    its built-in GLUT emulation.

Synopsis
        use strict;
        use warnings;
        use FLTK qw[:style];

        my $window = FLTK::Window->new(300, 180);
        $window->begin();
        my $box = FLTK::Widget->new(20, 40, 260, 100, "Hello, World!");
        $box->box(UP_BOX);
        $box->labelfont(HELVETICA_BOLD_ITALIC);
        $box->labelsize(36);
        $box->labeltype(SHADOW_LABEL);
        $window->end();
        $window->show();
        exit FLTK::run();

See Also
    FLTK::Notes

Author
    Sanko Robinson <sanko@cpan.org> - http://sankorobinson.com/

License and Legal
    Copyright (C) 2008-2009 by Sanko Robinson <sanko@cpan.org>

    This program is free software; you can redistribute it and/or modify it
    under the terms of The Artistic License 2.0. See the LICENSE file
    included with this distribution or
    http://www.perlfoundation.org/artistic_license_2_0. For clarification,
    see http://www.perlfoundation.org/artistic_2_0_notes.

    When separated from the distribution, all original POD documentation is
    covered by the Creative Commons Attribution-Share Alike 3.0 License. See
    http://creativecommons.org/licenses/by-sa/3.0/us/legalcode. For
    clarification, see http://creativecommons.org/licenses/by-sa/3.0/us/.

$Id: README 6e61e6e 2010-12-02 22:11:11Z sanko@cpan.org $
