NAME FLTK - Perl bindings to the Fast Light Toolkit Description FLTK is- This project has a long way to go so I am seeking volunteers to help with testing and development. Please see the TODO list and the notes on getting started. Ahem. 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 - http://sankorobinson.com/ License and Legal Copyright (C) 2008-2009 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 215f6c9 2009-11-04 18:34:17Z sanko@cpan.org $