jihoon pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=d03295540427084bab92345cec2eecddfe0767ba
commit d03295540427084bab92345cec2eecddfe0767ba Author: Jihoon Kim <[email protected]> Date: Fri Oct 17 21:44:11 2014 +0900 entry: Add input panel normal and password variations --- src/lib/elm_entry_common.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/lib/elm_entry_common.h b/src/lib/elm_entry_common.h index f518745..925c48a 100644 --- a/src/lib/elm_entry_common.h +++ b/src/lib/elm_entry_common.h @@ -54,12 +54,25 @@ typedef enum enum { + ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_NORMAL, /**< The plain normal layout @since 1.12 */ + ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_FILENAME, /**< Filename layout. Symbols such as '/' should be disabled. @since 1.12 */ + ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_PERSON_NAME /**< The name of a person. @since 1.12 */ +}; + +enum +{ ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_NORMAL, ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED, ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL, ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL }; +enum +{ + ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NORMAL, /**< The normal password layout @since 1.12 */ + ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NUMBERONLY /**< The password layout to allow only number @since 1.12 */ +}; + /** * @typedef Elm_Input_Panel_Lang * --
