diff options
Diffstat (limited to 'src/lib/elementary')
-rw-r--r-- | src/lib/elementary/elm_entry_common.h | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/src/lib/elementary/elm_entry_common.h b/src/lib/elementary/elm_entry_common.h index 6c5d2151d0..4e807a3b32 100644 --- a/src/lib/elementary/elm_entry_common.h +++ b/src/lib/elementary/elm_entry_common.h | |||
@@ -6,26 +6,43 @@ | |||
6 | * | 6 | * |
7 | * @{ | 7 | * @{ |
8 | */ | 8 | */ |
9 | enum | 9 | |
10 | /** | ||
11 | * @typedef Elm_Input_Panel_Layout_Normal_Variation | ||
12 | * @brief Enumeration for defining the types of Elm Input Panel Layout for normal variation. | ||
13 | * @since 1.12 | ||
14 | */ | ||
15 | typedef enum | ||
10 | { | 16 | { |
11 | ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_NORMAL, /**< The plain normal layout @since 1.12 */ | 17 | ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_NORMAL, /**< The plain normal layout @since 1.12 */ |
12 | ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_FILENAME, /**< Filename layout. Symbols such as '/' should be disabled. @since 1.12 */ | 18 | ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_FILENAME, /**< Filename layout. Symbols such as '/' should be disabled. @since 1.12 */ |
13 | ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_PERSON_NAME /**< The name of a person. @since 1.12 */ | 19 | ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_PERSON_NAME /**< The name of a person. @since 1.12 */ |
14 | }; | 20 | } Elm_Input_Panel_Layout_Normal_Variation; |
15 | 21 | ||
16 | enum | 22 | /** |
23 | * @typedef Elm_Input_Panel_Layout_Numberonly_Variation | ||
24 | * @brief Enumeration for defining the types of Elm Input Panel Layout for number only variation. | ||
25 | * @since 1.8 | ||
26 | */ | ||
27 | typedef enum | ||
17 | { | 28 | { |
18 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_NORMAL, /**< The plain normal number layout @since 1.8 */ | 29 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_NORMAL, /**< The plain normal number layout @since 1.8 */ |
19 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED, /**< The number layout to allow a positive or negative sign at the start @since 1.8 */ | 30 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED, /**< The number layout to allow a positive or negative sign at the start @since 1.8 */ |
20 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL, /**< The number layout to allow decimal point to provide fractional value @since 1.8 */ | 31 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL, /**< The number layout to allow decimal point to provide fractional value @since 1.8 */ |
21 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL /**< The number layout to allow decimal point and negative sign @since 1.8 */ | 32 | ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL /**< The number layout to allow decimal point and negative sign @since 1.8 */ |
22 | }; | 33 | } Elm_Input_Panel_Layout_Numberonly_Variation; |
23 | 34 | ||
24 | enum | 35 | /** |
36 | * @typedef Elm_Input_Panel_Layout_Password_Variation | ||
37 | * @brief Enumeration for defining the types of Elm Input Panel Layout for password variation. | ||
38 | * @since 1.12 | ||
39 | */ | ||
40 | typedef enum | ||
25 | { | 41 | { |
26 | ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NORMAL, /**< The normal password layout @since 1.12 */ | 42 | ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NORMAL, /**< The normal password layout @since 1.12 */ |
27 | ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NUMBERONLY /**< The password layout to allow only number @since 1.12 */ | 43 | ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NUMBERONLY /**< The password layout to allow only number @since 1.12 */ |
28 | }; | 44 | } Elm_Input_Panel_Layout_Password_Variation; |
45 | |||
29 | /** | 46 | /** |
30 | * The info sent in the callback for the "anchor,clicked" signals emitted | 47 | * The info sent in the callback for the "anchor,clicked" signals emitted |
31 | * by entries. | 48 | * by entries. |