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

NAME

pEFL::Edje

SYNOPSIS

  use pEFL::Edje;
  [...]
  my $edje = pEFL::Edje::Object->add($canvas);
        
  if (!$edje) {
        pEFL::Ecore::Edje::shutdown();
        pEFL::Ecore::Evas::shutdown();
        die "Could not create edje object!\n";
  }
        
  if (!$edje->file_set("./example.edj","my_group")) {
        $edje->del();
        pEFL::Ecore::Edje::shutdown();
        pEFL::Ecore::Evas::shutdown();
        die "Could not load Edje file\n";
  }
  $edje->move(0,0);
  $edje->resize($width,$height);
  $edje->show();
  [...]

DESCRIPTION

This module is a perl binding to Edje, the Layout and theme library with super-powers.

For more informations see https://www.enlightenment.org/develop/legacy/api/c/start#group__Edje.html

For instructions, how to use pEFL::Edje, please study this API reference for now. A perl-specific documentation will perhaps come in later versions. But applying the C documentation should be no problem. pEFL::Edje gives you a nice object-oriented interface that is kept close to the C API. Please note, that the perl method names remove the "edje_" at the beginning of the c functions.

EXPORT

None by default.

SEE ALSO

https://www.enlightenment.org/develop/legacy/api/c/start#group__Edje.html

AUTHOR

Maximilian Lika

COPYRIGHT AND LICENSE

Copyright (C) 2021 by Maximilian Lika

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