Tizen Native API
|
Showing the last feature of the password mode enables users to view the last input entered for a few seconds before it is masked.
These functions allow to set this feature in the password mode of the 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) |
Gets the "show last" setting of the password mode. | |
void | elm_config_password_show_last_set (Eina_Bool password_show_last) |
Sets the show last setting of the password mode. | |
double | elm_config_password_show_last_timeout_get (void) |
Gets the timeout value of the "show last" password mode. | |
void | elm_config_password_show_last_timeout_set (double password_show_last_timeout) |
Sets the timeout value of the "show last" password mode. |
Function Documentation
Gets the "show last" setting of the password mode.
This gets the "show last" setting of the password mode which might be enabled or disabled.
- Since :
- 2.3.1
- Returns:
EINA_TRUE
if the "show last" setting is enabled, otherwiseEINA_FALSE
if it's disabled
void elm_config_password_show_last_set | ( | Eina_Bool | password_show_last | ) |
Sets the show last setting of the password mode.
This enables or disables the show last setting of the password mode.
- Since :
- 2.3.1
- Parameters:
-
[in] password_show_last If EINA_TRUE
it enables "show last" in the password mode, otherwiseEINA_FALSE
double elm_config_password_show_last_timeout_get | ( | void | ) |
Gets the timeout value of the "show last" password mode.
This gets the timeout value for which the last input entered in the password mode is visible.
- Since :
- 2.3.1
- Returns:
- The timeout value of the "show last" password mode
void elm_config_password_show_last_timeout_set | ( | double | password_show_last_timeout | ) |
Sets the timeout value of the "show last" password mode.
This sets the timeout value for which the last input entered in the password mode is visible.
- Since :
- 2.3.1
- Parameters:
-
[in] password_show_last_timeout The timeout value
- See also:
- elm_config_password_show_last_set()