Functions that deal with text entries. More...
Data Structures | |
struct | _Edje_Entry_Change_Info |
Typedefs | |
typedef struct _Edje_Entry_Change_Info | Edje_Entry_Change_Info |
typedef enum _Edje_Text_Filter_Type | Edje_Text_Filter_Type |
All Edje text filters type values. | |
typedef void(* | Edje_Text_Filter_Cb) (void *data, Evas_Object *obj, const char *part, Edje_Text_Filter_Type type, char **text) |
Callback prototype for Edje_Text_Filter. More... | |
typedef void(* | Edje_Markup_Filter_Cb) (void *data, Evas_Object *obj, const char *part, char **text) |
Callback prototype for Edje_Text_Filter. More... | |
typedef Evas_Object *(* | Edje_Item_Provider_Cb) (void *data, Evas_Object *obj, const char *part, const char *item) |
Callback prototype for Edje_Item_Provider. More... | |
Functions | |
void | edje_password_show_last_set (Eina_Bool password_show_last) |
Shows last character in password mode. More... | |
void | edje_password_show_last_timeout_set (double password_show_last_timeout) |
Sets the timeout value in last show password mode. More... | |
Functions that deal with text entries.
In Edje it's possible to use a text part as a entry so the user is able to make inputs of text. To do so, the text part must be set with a input panel that will work as a virtual keyboard.
Some of effects can be applied to the entered text and also plenty actions can be performed after any input.
Use the functions of this section to handle the user input of text.
typedef struct _Edje_Entry_Change_Info Edje_Entry_Change_Info |
Edje_Text_Filter_Cb |
Callback prototype for Edje_Text_Filter.
obj | The Evas_Object to filter. |
type | The filter type. |
text | The text of the filter. |
Edje_Markup_Filter_Cb |
Callback prototype for Edje_Text_Filter.
obj | The Evas_Object to filter. |
part | Edje part name. |
text | The text of the filter. |
Edje_Item_Provider_Cb |
Callback prototype for Edje_Item_Provider.
data | some data provided by user |
obj | The Evas_Object to filter. |
part | Edje part name |
item | Item of container |
anonymous enum |
anonymous enum |
anonymous enum |
void edje_password_show_last_set | ( | Eina_Bool | password_show_last | ) |
Shows last character in password mode.
password_show_last | If TRUE enable last character show in password mode. |
This function enables last input to be visible when in password mode for few seconds or until the next input is entered.
The time out value is obtained by edje_password_show_last_timeout_set function.
Referenced by elm_config_password_show_last_set().
void edje_password_show_last_timeout_set | ( | double | password_show_last_timeout | ) |
Sets the timeout value in last show password mode.
password_show_last_timeout | The timeout value. |
This functions sets the time out value for which the last input entered in password mode will be visible. If the time out value is less than zero, the last input entered in password mode will be always visible.
This value can be used only when last show mode is set in password mode.
References EINA_DBL_EQ.
Referenced by elm_config_password_show_last_timeout_set().