diff options
author | Jihoon Kim <imfine98@gmail.com> | 2013-02-05 13:43:47 +0000 |
---|---|---|
committer | Jihoon Kim <imfine98@gmail.com> | 2013-02-05 13:43:47 +0000 |
commit | e5675179b4cbd3e4a0da4536b4392c1297855580 (patch) | |
tree | 4f1547cdb9a3b2921ed0ec3c1646d64cc4fdc170 /src/lib/ecore_imf | |
parent | 74cb944f2567cae3b78a8510bfc3f491610622f1 (diff) |
efl/ecore_imf: add comment about ecore_imf_context_cursor_position_set()
SVN revision: 83630
Diffstat (limited to 'src/lib/ecore_imf')
-rw-r--r-- | src/lib/ecore_imf/Ecore_IMF.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h index 95f3e7713a..37a859d8bc 100644 --- a/src/lib/ecore_imf/Ecore_IMF.h +++ b/src/lib/ecore_imf/Ecore_IMF.h | |||
@@ -830,6 +830,9 @@ EAPI void ecore_imf_context_reset(Ecore_IMF_Context *ct | |||
830 | * position has been made. | 830 | * position has been made. |
831 | * | 831 | * |
832 | * This function should be called when cursor position is changed or mouse up event is generated. | 832 | * This function should be called when cursor position is changed or mouse up event is generated. |
833 | * Some input methods that do a heavy job using this event can give a critical performance latency problem. | ||
834 | * For better typing performance, we suggest that the cursor position change events need to be occurred | ||
835 | * only if the cursor position is on a confirmed status not on moving status. | ||
833 | * | 836 | * |
834 | * @param ctx An #Ecore_IMF_Context. | 837 | * @param ctx An #Ecore_IMF_Context. |
835 | * @param cursor_pos New cursor position in characters. | 838 | * @param cursor_pos New cursor position in characters. |