Main
These functions provide an abstraction layer between the application code and the interface, while allowing extremely flexible dynamic layouts and animations. More...
Functions | |
EAPI int | edje_init (void) |
Initialize the edje library. | |
EAPI int | edje_shutdown (void) |
Shutdown the edje library. |
Detailed Description
These functions provide an abstraction layer between the application code and the interface, while allowing extremely flexible dynamic layouts and animations.
Function Documentation
EAPI int edje_init | ( | void | ) |
Initialize the edje library.
- Returns:
- The new init count. The initial value is zero.
This function initializes the ejde library, making the propers calls to initialization functions. It makes calls to functions eina_init(), ecore_init(), embryo_init() and eet_init() so there is no need to call those functions again in your code. To shutdown edje there is a function edje_shutdown().
- See also:
- edje_shutdown()
- eina_init()
- ecore_init()
- embryo_init()
- eet_init()
EAPI int edje_shutdown | ( | void | ) |
Shutdown the edje library.
- Returns:
- The number of times the library has been initialised without being shutdown.
This function shuts down the edje library. It calls the functions eina_shutdown(), ecore_shutdown(), embryo_shutdown() and eet_shutdown(), so there is no need to call these functions again in your code.
- See also:
- edje_init()
- eina_shutdown()
- ecore_shutdown()
- embryo_shutdown()
- eet_shutdown()