The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Efl::Elm

SYNOPSIS

  Efl::Elm::init($#ARGV, \@ARGV);

  Efl::Elm::policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
  my $win = Efl::Elm::Win->util_standard_add("hello", "Hello, World!");
  $win->autodel_set(1);
  [...]
  $win->show();

  Efl::Elm::run();
  Efl::Elm::shutdown();

DESCRIPTION

Efl::Elm contains the "ELM_*" Constants.

Additional it contains the following general functions:

Efl::Elm::init($#ARGV, \@ARGV);
Efl::Elm::quicklaunch_fallback($#ARGV, \@ARGV);
Efl::Elm::shutdown()
Efl::Elm::run();
Efl::Elm::exit();
Efl::Elm::policy_set(policy, value)

EXPORT

None by default.

SEE ALSO

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

AUTHOR

Maximilian Lika, <maximilian@>

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.