Tizen Native API  6.5
Password show last

Show last feature of password mode enables user to view the last input entered for few seconds before masking it. These functions allow to set this feature in password mode of entry widget and also allow to manipulate the duration for which the input has to be visible.

Functions

Eina_Bool elm_config_password_show_last_get (void)
void elm_config_password_show_last_set (Eina_Bool password_show_last)
double elm_config_password_show_last_timeout_get (void)
void elm_config_password_show_last_timeout_set (double password_show_last_timeout)

Function Documentation

Get the "show last" setting of password mode.

This gets the "show last" setting of password mode which might be enabled or disabled.

Returns:
EINA_TRUE, if the "show last" setting is enabled, EINA_FALSE if it's disabled.
Since :
2.3
void elm_config_password_show_last_set ( Eina_Bool  password_show_last)

Set show last setting in password mode.

This enables or disables show last setting of password mode.

Parameters:
password_show_lastIf EINA_TRUE, enables "show last" in password mode.
See also:
elm_config_password_show_last_timeout_set()
Since :
2.3

Get the timeout value in "show last" password mode.

This gets the time out value for which the last input entered in password mode will be visible.

Returns:
The timeout value of "show last" password mode.
Since :
2.3
void elm_config_password_show_last_timeout_set ( double  password_show_last_timeout)

Set's the timeout value in "show last" password mode.

This sets the time out value for which the last input entered in password mode will be visible.

Parameters:
password_show_last_timeoutThe timeout value.
See also:
elm_config_password_show_last_set()
Since :
2.3