Tizen Native API  7.0
Edje Object File

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_Listedje_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_DEPRECATED Eina_Bool edje_mmap_3d_has (Eina_File *f, const char *group)
 Determines whether a group have 3D Scene.
Eina_Iteratoredje_file_iterator_new (void)
 Iterates over all the opened Edje files.
Eina_Listedje_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.

Function Documentation

Eina_List* edje_file_collection_list ( const char *  file)

Gets a list of groups in an edje file.

Parameters:
fileThe path to the edje file
Returns:
The Eina_List of group names (char *)
See also:
edje_mmap_collection_list()

Note: the list must be freed using edje_file_collection_list_free() when you are done with it.

See also:
edje_mmap_group_exists()
Since :
2.3.1
Examples:
entry_example.c.

Frees file collection list.

Parameters:
lstThe Eina_List of groups

Frees the list returned by edje_file_collection_list().

Since :
2.3.1
Examples:
entry_example.c.
Eina_Bool edje_file_group_exists ( const char *  file,
const char *  glob 
)

Determines whether a group matching glob exists in an edje file.

Parameters:
fileThe file path
globA glob to match on
Returns:
1 if a match is found, 0 otherwise
Since :
2.3.1

Iterates over all the opened Edje files.

Returns:
an iterator of Eina_File for all currently open Edje files.
Since (EFL) :
1.14
Since :
3.0
EINA_DEPRECATED Eina_Bool edje_mmap_3d_has ( Eina_File f,
const char *  group 
)

Determines whether a group have 3D Scene.

Parameters:
fThe mapped file
groupThe group name
Returns:
1 if a Scene is found is found, 0 otherwise
Deprecated:
Since (EFL) :
1.18

Gets a list of groups in an edje mapped file.

Parameters:
fThe mapped file
Returns:
The Eina_List of group names (char *)

Note: the list must be freed using edje_mmap_collection_list_free() when you are done with it.

Since :
3.0

Frees file collection list.

Parameters:
lstThe Eina_List of groups

Frees the list returned by edje_mmap_collection_list().

Since :
3.0
Eina_Bool edje_mmap_group_exists ( Eina_File f,
const char *  glob 
)

Determines whether a group matching glob exists in an edje mapped file.

Parameters:
fThe mapped file
globA glob to match on
Returns:
1 if a match is found, 0 otherwise
Since :
3.0