Functions to deals with EDJ files. More...
Functions | |
Eina_List * | edje_mmap_collection_list (Eina_File *f) |
Gets a list of groups in an edje mapped file. More... | |
void | edje_mmap_collection_list_free (Eina_List *lst) |
Frees file collection list. More... | |
Eina_List * | edje_mmap_color_class_used_list (Eina_File *f) |
Returns a list of colorclasses used in this edje file. More... | |
Eina_List * | edje_file_color_class_used_list (const char *file) |
Returns a list of colorclasses used in this edje file. More... | |
void | edje_file_color_class_used_free (Eina_List *lst) |
Frees a list of color classes used. More... | |
Eina_Bool | edje_mmap_group_exists (Eina_File *f, const char *glob) |
Determines whether a group matching glob exists in an edje mapped file. More... | |
EINA_DEPRECATED Eina_Bool | edje_mmap_3d_has (Eina_File *f, const char *group) |
Determines whether a group have 3D Scene. More... | |
Eina_Iterator * | edje_file_iterator_new (void) |
Iterates over all the opened Edje files. More... | |
Eina_List * | edje_file_collection_list (const char *file) |
Gets a list of groups in an edje file. More... | |
void | edje_file_collection_list_free (Eina_List *lst) |
Frees file collection list. More... | |
Eina_Bool | edje_file_group_exists (const char *file, const char *glob) |
Determines whether a group matching glob exists in an edje file. More... | |
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.
Gets 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.
References eina_hash_iterator_key_new(), EINA_ITERATOR_FOREACH, eina_iterator_free(), eina_list_append(), and eina_stringshare_add().
Referenced by edje_file_collection_list(), and edje_file_color_class_used_list().
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().
References edje_file_collection_list_free().
Returns a list of colorclasses used in this edje file.
f | The mapped file |
References eet_data_read(), eina_list_append(), EINA_LIST_FOREACH, eina_list_free(), and eina_stringshare_add().
Eina_List * edje_file_color_class_used_list | ( | const char * | file | ) |
Returns a list of colorclasses used in this edje file.
file | The file path |
References edje_mmap_collection_list(), EINA_FALSE, eina_file_close(), and eina_file_open().
void edje_file_color_class_used_free | ( | Eina_List * | lst | ) |
Frees a list of color classes used.
The | list |
This frees the list returned by edje_mmap_color_class_used_list() or edje_file_color_class_used_list() when you no longer need it.
References eina_list_free().
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 References DBG, EINA_FALSE, eina_file_filename_get(), eina_hash_find(), eina_hash_iterator_data_new(), EINA_ITERATOR_FOREACH, eina_iterator_free(), eina_list_append(), eina_list_free(), and EINA_TRUE.
Referenced by edje_file_group_exists().
EINA_DEPRECATED Eina_Bool edje_mmap_3d_has | ( | Eina_File * | f, |
const char * | group | ||
) |
Determines whether a group have 3D Scene.
f | The mapped file |
group | The group name |
1
if a Scene is found is found, 0
otherwiseReferences EINA_FALSE.
Eina_Iterator * edje_file_iterator_new | ( | void | ) |
Iterates over all the opened Edje files.
References eina_hash_iterator_data_new(), and EINA_MAGIC_SET.
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.
References edje_mmap_collection_list(), EINA_FALSE, eina_file_close(), and eina_file_open().
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().
References eina_list_data_get(), eina_list_remove(), and eina_stringshare_del().
Referenced by edje_mmap_collection_list_free().
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
otherwise References edje_mmap_group_exists(), EINA_FALSE, eina_file_close(), and eina_file_open().