Tizen Native API
5.5
|
Functions to deals with EDJ files.
Layouts in Edje are usually called themes and they are created using the EDC language. The EDC language is declarative and must be compiled before being used. The output of this compilation is an EDJ file, this file can be loaded by Edje, and the result is a edje object.
This groups of functions interact with these EDJ files, either by loading them or retrieving information of the EDC file about objects.
Functions | |
Eina_List * | edje_mmap_collection_list (Eina_File *f) |
Gets a list of groups in an edje mapped file. | |
void | edje_mmap_collection_list_free (Eina_List *lst) |
Frees file collection list. | |
Eina_Bool | edje_mmap_group_exists (Eina_File *f, const char *glob) |
Determines whether a group matching glob exists in an edje mapped file. | |
Eina_Bool | edje_mmap_3d_has (Eina_File *f, const char *group) |
Determines whether a group have 3D Scene. | |
Eina_Iterator * | edje_file_iterator_new (void) |
Iterates over all the opened Edje files. | |
Eina_List * | edje_file_collection_list (const char *file) |
Gets a list of groups in an edje file. | |
void | edje_file_collection_list_free (Eina_List *lst) |
Frees file collection list. | |
Eina_Bool | edje_file_group_exists (const char *file, const char *glob) |
Determines whether a group matching glob exists in an edje file. |
Eina_List* edje_file_collection_list | ( | const char * | file | ) |
Gets a list of groups in an edje file.
file | The path to the edje file |
Note: the list must be freed using edje_file_collection_list_free() when you are done with it.
void edje_file_collection_list_free | ( | Eina_List * | lst | ) |
Frees file collection list.
lst | The Eina_List of groups |
Frees the list returned by edje_file_collection_list().
Eina_Bool edje_file_group_exists | ( | const char * | file, |
const char * | glob | ||
) |
Determines whether a group matching glob exists in an edje file.
file | The file path |
glob | A glob to match on |
1
if a match is found, 0
otherwiseEina_Iterator* edje_file_iterator_new | ( | void | ) |
Iterates over all the opened Edje files.
Eina_Bool edje_mmap_3d_has | ( | Eina_File * | f, |
const char * | group | ||
) |
Determines whether a group have 3D Scene.
f | The mapped file |
glob | The group name |
1
if a Scene is found is found, 0
otherwiseGets a list of groups in an edje mapped file.
f | The mapped file |
Note: the list must be freed using edje_mmap_collection_list_free() when you are done with it.
void edje_mmap_collection_list_free | ( | Eina_List * | lst | ) |
Frees file collection list.
lst | The Eina_List of groups |
Frees the list returned by edje_mmap_collection_list().
Eina_Bool edje_mmap_group_exists | ( | Eina_File * | f, |
const char * | glob | ||
) |
Determines whether a group matching glob exists in an edje mapped file.
f | The mapped file |
glob | A glob to match on |
1
if a match is found, 0
otherwise