wiki:ExamplesEmodules

Examples of Codes for Emodules

This page includes some Tips and Tricks for coding Enlightenment 17 modules, you can found here a lot of chunks of examples of nice and useful things

You can consider this page as a kind of fast reference for E17 modules

Chunks of codes

Modules

Load, enable, disable, etc. an e17 module

E_Module *m;
m = e_module_find("dropshadow");
if (m)
   e_module_enable(m);

E17 Actions

Send an e17 action (ex. restart e17)

E_Action *a;
a = e_action_find("restart");
if ((a) && (a->func.go))
   a->func.go(NULL, NULL);

Last modified 14 years ago Last modified on Dec 10, 2009, 11:06:41 AM
Note: See TracWiki for help on using the wiki.