diff options
author | InHong Han <inhong1.han@samsung.com> | 2016-08-03 16:40:24 +0900 |
---|---|---|
committer | Jihoon Kim <jihoon48.kim@samsung.com> | 2016-10-31 19:10:53 +0900 |
commit | fb6ffc6ac52f92de67c2602975df2418e3af0d62 (patch) | |
tree | a68ca3e5484502fe197556f10e948f52bd5387ca | |
parent | ca766aa4c55c191c36dd108a738d89a7c95a2582 (diff) |
elm_entry: Add voice input panel layout
@feature
Change-Id: I41502d2446b95a4be31fc60a8d995b9d37930844
Signed-off-by: InHong Han <inhong1.han@samsung.com>
-rw-r--r-- | src/lib/ecore_imf/Ecore_IMF.h | 3 | ||||
-rw-r--r-- | src/lib/edje/edje_types.eot | 5 | ||||
-rw-r--r-- | src/lib/elementary/elm_entry.eo | 5 |
3 files changed, 10 insertions, 3 deletions
diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h index 02d504d6af..80ab6ab6c6 100644 --- a/src/lib/ecore_imf/Ecore_IMF.h +++ b/src/lib/ecore_imf/Ecore_IMF.h | |||
@@ -310,7 +310,8 @@ typedef enum | |||
310 | ECORE_IMF_INPUT_PANEL_LAYOUT_TERMINAL, /**< Command-line terminal layout including ESC, Alt, Ctrl key, so on (no auto-correct, no auto-capitalization) @since 1.2 */ | 310 | ECORE_IMF_INPUT_PANEL_LAYOUT_TERMINAL, /**< Command-line terminal layout including ESC, Alt, Ctrl key, so on (no auto-correct, no auto-capitalization) @since 1.2 */ |
311 | ECORE_IMF_INPUT_PANEL_LAYOUT_PASSWORD, /**< Like normal, but no auto-correct, no auto-capitalization etc. @since 1.2 */ | 311 | ECORE_IMF_INPUT_PANEL_LAYOUT_PASSWORD, /**< Like normal, but no auto-correct, no auto-capitalization etc. @since 1.2 */ |
312 | ECORE_IMF_INPUT_PANEL_LAYOUT_DATETIME, /**< Date and time layout @since 1.8 */ | 312 | ECORE_IMF_INPUT_PANEL_LAYOUT_DATETIME, /**< Date and time layout @since 1.8 */ |
313 | ECORE_IMF_INPUT_PANEL_LAYOUT_EMOTICON /**< Emoticon layout @since 1.10 */ | 313 | ECORE_IMF_INPUT_PANEL_LAYOUT_EMOTICON, /**< Emoticon layout @since 1.10 */ |
314 | ECORE_IMF_INPUT_PANEL_LAYOUT_VOICE /**< Voice layout, but if the IME does not support voice layout, then normal layout will be shown @since 1.19 */ | ||
314 | } Ecore_IMF_Input_Panel_Layout; | 315 | } Ecore_IMF_Input_Panel_Layout; |
315 | 316 | ||
316 | /** | 317 | /** |
diff --git a/src/lib/edje/edje_types.eot b/src/lib/edje/edje_types.eot index 78c3bedc84..a0d536d3ba 100644 --- a/src/lib/edje/edje_types.eot +++ b/src/lib/edje/edje_types.eot | |||
@@ -120,9 +120,12 @@ enum Edje.Input_Panel.Layout { | |||
120 | datetime, [[Date and time layout | 120 | datetime, [[Date and time layout |
121 | 121 | ||
122 | @since 1.8]] | 122 | @since 1.8]] |
123 | emoticon [[Emoticon layout | 123 | emoticon, [[Emoticon layout |
124 | 124 | ||
125 | @since 1.10]] | 125 | @since 1.10]] |
126 | voice [[Voice layout, but if the IME does not support voice layout, then normal layout will be shown. | ||
127 | |||
128 | @since 1.19]] | ||
126 | } | 129 | } |
127 | 130 | ||
128 | enum Edje.External.Param_Type { | 131 | enum Edje.External.Param_Type { |
diff --git a/src/lib/elementary/elm_entry.eo b/src/lib/elementary/elm_entry.eo index 3a0aaa28f4..31832e7ec6 100644 --- a/src/lib/elementary/elm_entry.eo +++ b/src/lib/elementary/elm_entry.eo | |||
@@ -35,9 +35,12 @@ enum Elm.Input.Panel.Layout | |||
35 | datetime, [[Date and time layout | 35 | datetime, [[Date and time layout |
36 | 36 | ||
37 | @since 1.8]] | 37 | @since 1.8]] |
38 | emoticon [[Emoticon layout | 38 | emoticon, [[Emoticon layout |
39 | 39 | ||
40 | @since 1.10]] | 40 | @since 1.10]] |
41 | voice [[Voice layout, but if the IME does not support voice layout, then normal layout will be shown. | ||
42 | |||
43 | @since 1.19]] | ||
41 | } | 44 | } |
42 | 45 | ||
43 | enum Elm.Input.Panel.Lang | 46 | enum Elm.Input.Panel.Lang |