diff options
author | Jihoon Kim <jihoon48.kim@samsung.com> | 2011-02-21 06:22:37 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2011-02-21 06:22:37 +0000 |
commit | 94a5e99df30e8e51c970d625b1fc92312509f9a7 (patch) | |
tree | 92bbd8a927aaee6d8220d2a0605cf40cbd155a60 /legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |
parent | a3808761cc44e0f35a6bcffc6c46ac3064ec19a2 (diff) |
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] ecore_imf_context_canvas_get,
ecore_imf_context_window_get
This patch includes the code to add ecore_imf_context_canvas_get and
ecore_imf_context_window_get.
These APIs are coupled with the ecore_imf_context_canvas_set and
ecore_imf_context_window_set.
SVN revision: 57203
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 0d31618d9e..31372723fb 100644 --- a/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h +++ b/legacy/ecore/src/lib/ecore_imf/ecore_imf_private.h | |||
@@ -43,6 +43,8 @@ struct _Ecore_IMF_Context | |||
43 | const Ecore_IMF_Context_Class *klass; | 43 | const Ecore_IMF_Context_Class *klass; |
44 | void *data; | 44 | void *data; |
45 | int input_mode; | 45 | int input_mode; |
46 | void *window; | ||
47 | void *client_canvas; | ||
46 | 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); |
47 | void *retrieve_surrounding_data; | 49 | void *retrieve_surrounding_data; |
48 | }; | 50 | }; |