Tizen Native API
7.0
|
Functions that deal with Text Classes.
Sometimes we want to change the text of two or more parts equally and that's when we use text classes.
If one or more parts are assigned with a text class, when we set font attributes to this class will update all these parts with the new font attributes. Setting values to a text class at a process level will affect all parts with that text class, while at object level will affect only the parts inside an specified object.
Functions | |
Eina_Bool | edje_text_class_set (const char *text_class, const char *font, Evas_Font_Size size) |
Sets the Edje text class. | |
Eina_Bool | edje_text_class_get (const char *text_class, const char **font, Evas_Font_Size *size) |
Gets the font and the font size from Edje text class. | |
void | edje_text_class_del (const char *text_class) |
Deletes the text class. | |
Eina_List * | edje_text_class_list (void) |
Lists text classes. | |
Eina_Iterator * | edje_text_class_active_iterator_new (void) |
Iterate over all active classes of an application. | |
Eina_Iterator * | edje_mmap_text_class_iterator_new (Eina_File *f) |
Iterate over all text classes provided by an Edje file. | |
Eina_Bool | edje_object_text_class_set (Evas_Object *obj, const char *text_class, const char *font, Evas_Font_Size size) |
Sets Edje text class. | |
Eina_Bool | edje_object_text_class_get (const Evas_Object *obj, const char *text_class, const char **font, Evas_Font_Size *size) |
Gets font and font size from edje text class. | |
void | edje_object_text_class_del (Evas_Object *obj, const char *text_class) |
Delete the object text class. | |
Eina_Bool | edje_file_text_class_set (const char *file, const char *text_class, const char *font, Evas_Font_Size size) |
Sets Edje text class for edje file (if loaded) | |
Eina_Bool | edje_file_text_class_del (const char *file, const char *text_class) |
Delete the file text class. | |
Eina_Bool | edje_file_text_class_get (const char *file, const char *text_class, const char **font, Evas_Font_Size *size) |
Gets font and font size from edje file if loaded. |
Function Documentation
Eina_Bool edje_file_text_class_del | ( | const char * | file, |
const char * | text_class | ||
) |
Delete the file text class.
This function deletes any values at the file level for the specified file and text class.
- Parameters:
-
[in] text_class The text class to be deleted.
Eina_Bool edje_file_text_class_get | ( | const char * | file, |
const char * | text_class, | ||
const char ** | font, | ||
Evas_Font_Size * | size | ||
) |
Gets font and font size from edje file if loaded.
This function gets the font and the font size from the file text class.
- Parameters:
-
[in] text_class The text class name [out] font Font name [out] size Font Size
- Returns:
true
, on success orfalse
, on error
Eina_Bool edje_file_text_class_set | ( | const char * | file, |
const char * | text_class, | ||
const char * | font, | ||
Evas_Font_Size | size | ||
) |
Sets Edje text class for edje file (if loaded)
This function sets the text class for All Edje Objects created from Edje file. (if edje file loaded before)
- Parameters:
-
[in] file edje file path [in] text_class The text class name [in] font Font name [in] size Font Size
- Returns:
true
, on success orfalse
, on error
Iterate over all text classes provided by an Edje file.
- Parameters:
-
f The mapped edje file.
- Returns:
- an iterator of Edje_Text_Class provided by the Edje file.
- Since (EFL) :
- 1.17
void edje_object_text_class_del | ( | Evas_Object * | obj, |
const char * | text_class | ||
) |
Delete the object text class.
This function deletes any values at the object level for the specified object and text class.
Deleting the text class will revert it to the values defined by edje_text_class_set() or the text class defined in the theme file.
- Parameters:
-
[in] text_class The color class to be deleted.
- Since (EFL) :
- 1.17
Eina_Bool edje_object_text_class_get | ( | const Evas_Object * | obj, |
const char * | text_class, | ||
const char ** | font, | ||
Evas_Font_Size * | size | ||
) |
Gets font and font size from edje text class.
This function gets the font and the font size from the object text class. The font string will only be valid until the text class is changed or the edje object is deleted.
- Parameters:
-
[in] text_class The text class name [out] font Font name [out] size Font Size
- Returns:
true
, on success orfalse
, on error
- Since :
- 2.3
Eina_Bool edje_object_text_class_set | ( | Evas_Object * | obj, |
const char * | text_class, | ||
const char * | font, | ||
Evas_Font_Size | size | ||
) |
Sets Edje text class.
This function sets the text class for the Edje.
- Parameters:
-
[in] text_class The text class name [in] font Font name [in] size Font Size
- Returns:
true
, on success orfalse
, on error
- Since :
- 2.3
Iterate over all active classes of an application.
- Returns:
- an iterator of Edje_Text_Class of the currently active text class
This function only iterates over the Edje_Text_Class in use by an application.
- Since (EFL) :
- 1.17
void edje_text_class_del | ( | const char * | text_class | ) |
Deletes the text class.
- Parameters:
-
text_class The text class name string
This function deletes any values at the process level for the specified text class.
- Since :
- 2.3
Eina_Bool edje_text_class_get | ( | const char * | text_class, |
const char ** | font, | ||
Evas_Font_Size * | size | ||
) |
Gets the font and the font size from Edje text class.
- Parameters:
-
text_class The text class name font The font name size The font size
- Returns:
EINA_TRUE
on success, orEINA_FALSE
on error
This function gets the font and the font name from the specified Edje text class. The font string will only be valid until the text class is changed or edje is shut down.
- See also:
- edje_text_class_set().
- Since (EFL) :
- 1.14
- Since :
- 2.3
Eina_List* edje_text_class_list | ( | void | ) |
Lists text classes.
- Returns:
- A list of text class names (strings). These strings are stringshares and the list must be free()'d by the caller.
This function lists all text classes known about by the current process.
- Since :
- 2.3
Eina_Bool edje_text_class_set | ( | const char * | text_class, |
const char * | font, | ||
Evas_Font_Size | size | ||
) |
Sets the Edje text class.
- Parameters:
-
text_class The text class name font The font name size The font size
- Returns:
EINA_TRUE
on success, orEINA_FALSE
on error
This function updates all Edje members at the process level which belong to this text class with the new font attributes. If the size
is 0 then the font size will be kept with the previous size. If the size
is less then 0 then the font size will be calculated in the percentage. For example, if the size
is -50, then the font size will be scaled to half of the original size and if the size
is -10 then the font size will be scaled as much as 0.1x.
- See also:
- edje_text_class_get().
- Since :
- 2.3