NAME FLTK - Perl bindings to 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. See Also FLTK::Notes, FLTK::Basics, FLTK::Cookbook and FLTK::CheatSheet Author Sanko Robinson - http://sankorobinson.com/ License and Legal Copyright (C) 2008-2010 by Sanko Robinson 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 a0e0992 2010-12-03 05:13:04Z sanko@cpan.org $