diff options
author | Jihoon Kim <imfine98@gmail.com> | 2013-01-29 06:17:13 +0000 |
---|---|---|
committer | Jihoon Kim <imfine98@gmail.com> | 2013-01-29 06:17:13 +0000 |
commit | ed8e0f222a203d4aa17e4156eed90e29c52e05db (patch) | |
tree | 209fae245aaf98c1f25b24adf965152425fc6cfc /src/lib/ecore_imf | |
parent | da4efb7b565ddbc6996e35711e86d916f6d0af9c (diff) |
efl/ecore_imf: remove trailing whitespace in Ecore_IMF.h
SVN revision: 83409
Diffstat (limited to 'src/lib/ecore_imf')
-rw-r--r-- | src/lib/ecore_imf/Ecore_IMF.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h index 1fc25c804c..95f3e7713a 100644 --- a/src/lib/ecore_imf/Ecore_IMF.h +++ b/src/lib/ecore_imf/Ecore_IMF.h | |||
@@ -39,15 +39,15 @@ extern "C" { | |||
39 | * | 39 | * |
40 | * Functions that operate on Ecore Input Method Context objects. | 40 | * Functions that operate on Ecore Input Method Context objects. |
41 | 41 | ||
42 | * Ecore Input Method Context Function defines the interface for EFL input methods. | 42 | * Ecore Input Method Context Function defines the interface for EFL input methods. |
43 | * An input method is used by EFL text input widgets like elm_entry | 43 | * An input method is used by EFL text input widgets like elm_entry |
44 | * (based on edje_entry) to map from key events to Unicode character strings. | 44 | * (based on edje_entry) to map from key events to Unicode character strings. |
45 | * | 45 | * |
46 | * The default input method can be set through setting the ECORE_IMF_MODULE environment variable. | 46 | * The default input method can be set through setting the ECORE_IMF_MODULE environment variable. |
47 | * eg) export ECORE_IMF_MODULE=xim (or scim or ibus) | 47 | * eg) export ECORE_IMF_MODULE=xim (or scim or ibus) |
48 | * | 48 | * |
49 | * An input method may consume multiple key events in sequence and finally output the composed result. | 49 | * An input method may consume multiple key events in sequence and finally output the composed result. |
50 | * This is called preediting, and an input method may provide feedback about | 50 | * This is called preediting, and an input method may provide feedback about |
51 | * this process by displaying the intermediate composition states as preedit text. | 51 | * this process by displaying the intermediate composition states as preedit text. |
52 | * | 52 | * |
53 | * Immodule is plugin to connect your application and input method framework such as SCIM, ibus, and so on.@n | 53 | * Immodule is plugin to connect your application and input method framework such as SCIM, ibus, and so on.@n |
@@ -559,7 +559,7 @@ EAPI const char *ecore_imf_context_default_id_by_canvas_type_g | |||
559 | * @return Return a #Ecore_IMF_Context_Info for the Input Method Context with @p id; | 559 | * @return Return a #Ecore_IMF_Context_Info for the Input Method Context with @p id; |
560 | * on failure it returns NULL. | 560 | * on failure it returns NULL. |
561 | * @ingroup Ecore_IMF_Context_Group | 561 | * @ingroup Ecore_IMF_Context_Group |
562 | * | 562 | * |
563 | * Example | 563 | * Example |
564 | * @code | 564 | * @code |
565 | * | 565 | * |
@@ -742,7 +742,7 @@ EAPI void ecore_imf_context_preedit_string_get(Ecore_IM | |||
742 | * } | 742 | * } |
743 | * } | 743 | * } |
744 | * } | 744 | * } |
745 | * | 745 | * |
746 | * // delete attribute list | 746 | * // delete attribute list |
747 | * EINA_LIST_FREE(attrs, attr) free(attr); | 747 | * EINA_LIST_FREE(attrs, attr) free(attr); |
748 | * | 748 | * |
@@ -800,7 +800,7 @@ EAPI void ecore_imf_context_focus_out(Ecore_IMF_Context | |||
800 | * change in cursor position has been made. This will typically | 800 | * change in cursor position has been made. This will typically |
801 | * cause the Input Method Context to clear the preedit state or commit the preedit string. | 801 | * cause the Input Method Context to clear the preedit state or commit the preedit string. |
802 | * | 802 | * |
803 | * The operation of ecore_imf_context_reset() depends on the specific characteristics of | 803 | * The operation of ecore_imf_context_reset() depends on the specific characteristics of |
804 | * each language. For example, the preedit string is cleared in the Chinese and Japanese Input Method Engine. | 804 | * each language. For example, the preedit string is cleared in the Chinese and Japanese Input Method Engine. |
805 | * However, The preedit string is committed and then cleared in the Korean Input Method Engine. | 805 | * However, The preedit string is committed and then cleared in the Korean Input Method Engine. |
806 | * | 806 | * |
@@ -809,7 +809,7 @@ EAPI void ecore_imf_context_focus_out(Ecore_IMF_Context | |||
809 | * | 809 | * |
810 | * @param ctx An #Ecore_IMF_Context. | 810 | * @param ctx An #Ecore_IMF_Context. |
811 | * @ingroup Ecore_IMF_Context_Group | 811 | * @ingroup Ecore_IMF_Context_Group |
812 | * | 812 | * |
813 | * Example | 813 | * Example |
814 | * @code | 814 | * @code |
815 | * static void | 815 | * static void |
@@ -840,7 +840,7 @@ EAPI void ecore_imf_context_cursor_position_set(Ecore_I | |||
840 | /** | 840 | /** |
841 | * Notify the Input Method Context that a change in the cursor | 841 | * Notify the Input Method Context that a change in the cursor |
842 | * location has been made. The location is relative to the canvas. | 842 | * location has been made. The location is relative to the canvas. |
843 | * The cursor location can be used to determine the position of | 843 | * The cursor location can be used to determine the position of |
844 | * candidate word window in the immodule. | 844 | * candidate word window in the immodule. |
845 | * | 845 | * |
846 | * @param ctx An #Ecore_IMF_Context. | 846 | * @param ctx An #Ecore_IMF_Context. |
@@ -989,7 +989,7 @@ EAPI void *ecore_imf_context_data_get(Ecore_IMF_Context | |||
989 | 989 | ||
990 | /** | 990 | /** |
991 | * Retrieve context around insertion point. | 991 | * Retrieve context around insertion point. |
992 | * Input methods typically want context in order to constrain input text based on existing text; | 992 | * Input methods typically want context in order to constrain input text based on existing text; |
993 | * this is important for languages such as Thai where only some sequences of characters are allowed. | 993 | * this is important for languages such as Thai where only some sequences of characters are allowed. |
994 | * In addition, the text around the insertion point can be used for supporting autocapital feature. | 994 | * In addition, the text around the insertion point can be used for supporting autocapital feature. |
995 | * | 995 | * |
@@ -1134,9 +1134,9 @@ EAPI void *ecore_imf_context_event_callback_del(Ecore_IM | |||
1134 | /** | 1134 | /** |
1135 | * Call a given callback on the context @p ctx. | 1135 | * Call a given callback on the context @p ctx. |
1136 | * | 1136 | * |
1137 | * ecore_imf_context_preedit_start_event_add(), ecore_imf_context_preedit_end_event_add(), | 1137 | * ecore_imf_context_preedit_start_event_add(), ecore_imf_context_preedit_end_event_add(), |
1138 | * ecore_imf_context_preedit_changed_event_add(), ecore_imf_context_commit_event_add() and | 1138 | * ecore_imf_context_preedit_changed_event_add(), ecore_imf_context_commit_event_add() and |
1139 | * ecore_imf_context_delete_surrounding_event_add() APIs are asynchronous | 1139 | * ecore_imf_context_delete_surrounding_event_add() APIs are asynchronous |
1140 | * because those API adds each event to the event queue. | 1140 | * because those API adds each event to the event queue. |
1141 | * | 1141 | * |
1142 | * This API provides the way to call each callback function immediately. | 1142 | * This API provides the way to call each callback function immediately. |
@@ -1411,7 +1411,7 @@ EAPI Ecore_IMF_Input_Panel_State ecore_imf_context_input_panel_state_get(Ecore | |||
1411 | 1411 | ||
1412 | /** | 1412 | /** |
1413 | * Register a callback function which will be called if there is change in input panel state,language,mode etc. | 1413 | * Register a callback function which will be called if there is change in input panel state,language,mode etc. |
1414 | * In order to deregister the callback function | 1414 | * In order to deregister the callback function |
1415 | * Use @ref ecore_imf_context_input_panel_event_callback_del. | 1415 | * Use @ref ecore_imf_context_input_panel_event_callback_del. |
1416 | * | 1416 | * |
1417 | * @param ctx An #Ecore_IMF_Context | 1417 | * @param ctx An #Ecore_IMF_Context |