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

NAME

Etk - Perl bindings for the Enlightened ToolKit (Etk)

SYNOPSIS

  use Etk;

  my $win = Etk::Window->new();
  my $button = Etk::Button->new();
  $button->LabelSet("Click me!");
  $win->Add($button);
  $win->ShowAll();

  $button->SignalConnect("clicked", \&clicked_cb);

  Etk::Main::Run();

  sub clicked_cb
  {
     print "button clicked!\n";
  }

DESCRIPTION

This module allows the use of Etk from within Perl. You can use them in one of two ways, either by using the object oriented approach or directly by calling the functions (although this is not recommended).

EXPORT

None by default.

SEE ALSO

Etk::Constants

Etk documentation is available as Doxygen or in the Etk Explained book: http://hisham.cc/etk_explained.pdf

http://www.enlightenment.org

AUTHOR

Chady 'Leviathan' Kassouf, <chady.kassouf@gmail.com> - Hisham Mardam Bey, <hisham.mardambey@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2008 by Chady Kassouf

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.