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

NAME

FLTK - Perl interface to the Fast Light Toolkit Library

SYNOPSIS

  use FLTK qw( :Boxtypes );
  
  $window = new Fl_Window(110, 40, "$0");
  $button = new Fl_Highlight_Button(5, 5, 100, 30, "Hello World!");
  $button->callback(sub {exit;});
  $button->box(FL_THIN_UP_BOX);
  $window->end();
  
  $window->show();
  FLTK::run();

DESCRIPTION

This modules provides hooks to create GUI interfaces using the Fast Light Toolkit Library in Perl. This documentation is barely started, let alone near completion.

The Perl interface to FLTK is designed to emulate FLTK's C++ API as closely as possible. Developers already well aquainted with the FLTK toolkit should be able to figure this thing out fairly easily.

Real documentation for FLTK is available at <http://fltk.org/>.

Please note that this module is for FLTK version 2, which is currently in CVS. This module is 100% guaranteed to choke and die horribly if you try to build it against FLTK 1, which is the stable release.

AUTHOR

Matt Kennedy <matt@jumpline.com>

SEE ALSO

perl(1).