These are the Etk bindings for the Enlightenment Toolkit (etk) This version is a direct almost 1-to-1 mapping of the C function calls into a Perl OO interface.
In order to find out how the functions map, you need to remove the namespace from the function, ex:
The C function call: etk_window_title_set(window, title); translates into: $window->title_set($title); where $window is an object of type Etk::Window
Alternatively, there is another calling technique which removes underscores and uppercases the first letter of each word: $window->TitleSet($title);
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires the etk library.
You can get etk from the Enlightenment CVS repository:
http://www.enlightenment.org/Enlightenment/Get_Enlightenment/
COPYRIGHT AND LICENCE
Copyright (C) 2007 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.