Etk - Perl bindings for the Enlightened ToolKit (Etk)


Etk-Perl documentation  | view source Contained in the Etk-Perl distribution.

Index


NAME

Top

Etk - Perl bindings for the Enlightened ToolKit (Etk)

SYNOPSIS

Top

  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

Top

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

Top

None by default.

SEE ALSO

Top

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

Top

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

COPYRIGHT AND LICENSE

Top


Etk-Perl documentation  | view source Contained in the Etk-Perl distribution.