The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FLTK - Perl bindings to the 2.0.x branch of the Fast Light Toolkit

Synopsis

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

    my $win = FLTK::Window->new(300, 180);
    my $box = $win->add(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);
    $win->show();
    exit FLTK::run();

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.

This module, FLTK, exposes bindings to the experimental 2.0.x branch of the Fast Light Toolkit.

See Also

FLTK::Notes, FLTK::Basics, FLTK::Cookbook, and FLTK::CheatSheet

Author

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

CPAN ID: SANKO

License and Legal

Copyright (C) 2008-2010 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 notes on the Artistic License 2.0 for clarification.

When separated from the distribution, all original POD documentation is covered by the Creative Commons Attribution-Share Alike 3.0 License. See the clarification of the CCA-SA3.0.