diff options
author | Jihoon Kim <jihoon48.kim@samsung.com> | 2011-04-29 05:16:51 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2011-04-29 05:16:51 +0000 |
commit | dee7de3639632903d91600d3c031843ce61343cb (patch) | |
tree | 5a465f4a71c0bea086f6b5bbb1824f1516b025c5 /legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |
parent | 8f05d21ddfd8b67d34eb92b5f47fd6df4097f1cc (diff) |
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] Add ecore_imf_context_autocapital_type_{set, get},
To support the autocapitalization feature, I'd like to add
ecore_imf_context_autocapital_type_{set,get} API.
I will implement the autocapital feature in immodule, so the immodule
should know the autocapitalization type.
This API is for letting immodule know the autocapitalization type.
In addition, ecore_imf_context_prediction_allow_set API is used to set
whether the IM context should allow to use the text prediction.
SVN revision: 59025
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 | 2 |
1 files changed, 2 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 31372723fb..74f483697b 100644 --- a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h +++ b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |||
@@ -47,6 +47,8 @@ struct _Ecore_IMF_Context | |||
47 | void *client_canvas; | 47 | void *client_canvas; |
48 | Eina_Bool (*retrieve_surrounding_func)(void *data, Ecore_IMF_Context *ctx, char **text, int *cursor_pos); | 48 | Eina_Bool (*retrieve_surrounding_func)(void *data, Ecore_IMF_Context *ctx, char **text, int *cursor_pos); |
49 | void *retrieve_surrounding_data; | 49 | void *retrieve_surrounding_data; |
50 | Ecore_IMF_Autocapital_Type autocapital_type; | ||
51 | Eina_Bool allow_prediction : 1; | ||
50 | }; | 52 | }; |
51 | 53 | ||
52 | struct _Ecore_IMF_Module | 54 | struct _Ecore_IMF_Module |