diff options
author | Jihoon Kim <jihoon48.kim@samsung.com> | 2011-06-20 07:17:24 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2011-06-20 07:17:24 +0000 |
commit | a889ae4997bbc921a2277ba292bbe02af5d8a357 (patch) | |
tree | f0b40974ebb867c74ed50bb7e0912dfaca304a2b /legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |
parent | 46cdaea3cbe69b4e2bde30d936598815034bfb7e (diff) |
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] Add Ecore_IMF API to set the attirbute of
input panel
For supporting virtual keyboard, I'd like to add
ecore_imf_context_input_panel_enabled_set/get APIs. The detail description of
each API is included in the patch file as doxygen format.
If input panel is in 'enabled' status, the immodule will request to
show the input panel automatically When the input widget such as entry is
clicked or has focus. In some case, application programmers want to control
the input panel manually (not automatically), so I implement this API.
SVN revision: 60504
Diffstat (limited to 'legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h')
-rw-r--r-- | legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h index 4255ec6741..07a5b0937a 100644 --- a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h +++ b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |||
@@ -51,6 +51,7 @@ struct _Ecore_IMF_Context | |||
51 | Ecore_IMF_Input_Panel_Layout input_panel_layout; | 51 | Ecore_IMF_Input_Panel_Layout input_panel_layout; |
52 | Ecore_IMF_Input_Panel_Lang input_panel_lang; | 52 | Ecore_IMF_Input_Panel_Lang input_panel_lang; |
53 | Eina_Bool allow_prediction : 1; | 53 | Eina_Bool allow_prediction : 1; |
54 | Eina_Bool input_panel_enabled : 1; | ||
54 | }; | 55 | }; |
55 | 56 | ||
56 | struct _Ecore_IMF_Module | 57 | struct _Ecore_IMF_Module |