diff --git a/legacy/ecore/src/lib/ecore_imf/Ecore_IMF.h b/legacy/ecore/src/lib/ecore_imf/Ecore_IMF.h index 2f233ef708..a9c71e89e7 100644 --- a/legacy/ecore/src/lib/ecore_imf/Ecore_IMF.h +++ b/legacy/ecore/src/lib/ecore_imf/Ecore_IMF.h @@ -41,31 +41,31 @@ extern "C" { /* ecore_imf_context_input_panel_event_callback_add() flag */ typedef enum { - ECORE_IMF_INPUT_PANEL_STATE_EVENT, /**< called when the state of the input panel is changed. */ - ECORE_IMF_INPUT_PANEL_LANGUAGE_EVENT, /**< called when the language of the input panel is changed. */ - ECORE_IMF_INPUT_PANEL_SHIFT_MODE_EVENT, /**< called when the shift key state of the input panel is changed */ - ECORE_IMF_INPUT_PANEL_GEOMETRY_EVENT, /**< called when the size of the input panel is changed. */ - ECORE_IMF_CANDIDATE_PANEL_STATE_EVENT, /**< called when the state of the candidate word panel is changed. */ - ECORE_IMF_CANDIDATE_PANEL_GEOMETRY_EVENT /**< called when the size of the candidate word panel is changed. */ + ECORE_IMF_INPUT_PANEL_STATE_EVENT, /**< called when the state of the input panel is changed. @since 1.3 */ + ECORE_IMF_INPUT_PANEL_LANGUAGE_EVENT, /**< called when the language of the input panel is changed. @since 1.3 */ + ECORE_IMF_INPUT_PANEL_SHIFT_MODE_EVENT, /**< called when the shift key state of the input panel is changed @since 1.3 */ + ECORE_IMF_INPUT_PANEL_GEOMETRY_EVENT, /**< called when the size of the input panel is changed. @since 1.3 */ + ECORE_IMF_CANDIDATE_PANEL_STATE_EVENT, /**< called when the state of the candidate word panel is changed. @since 1.3 */ + ECORE_IMF_CANDIDATE_PANEL_GEOMETRY_EVENT /**< called when the size of the candidate word panel is changed. @since 1.3 */ } Ecore_IMF_Input_Panel_Event; typedef enum { - ECORE_IMF_INPUT_PANEL_STATE_SHOW, /**< Notification after the display of the input panel */ - ECORE_IMF_INPUT_PANEL_STATE_HIDE, /**< Notification prior to the dismissal of the input panel */ - ECORE_IMF_INPUT_PANEL_STATE_WILL_SHOW /**< Notification prior to the display of the input panel */ + ECORE_IMF_INPUT_PANEL_STATE_SHOW, /**< Notification after the display of the input panel @since 1.3 */ + ECORE_IMF_INPUT_PANEL_STATE_HIDE, /**< Notification prior to the dismissal of the input panel @since 1.3 */ + ECORE_IMF_INPUT_PANEL_STATE_WILL_SHOW /**< Notification prior to the display of the input panel @since 1.3 */ } Ecore_IMF_Input_Panel_State; typedef enum { - ECORE_IMF_INPUT_PANEL_SHIFT_MODE_OFF, - ECORE_IMF_INPUT_PANEL_SHIFT_MODE_ON + ECORE_IMF_INPUT_PANEL_SHIFT_MODE_OFF, /**< @since 1.3 */ + ECORE_IMF_INPUT_PANEL_SHIFT_MODE_ON /**< @since 1.3 */ } Ecore_IMF_Input_Panel_Shift_Mode; typedef enum { - ECORE_IMF_CANDIDATE_PANEL_SHOW, /**< Notification after the display of the candidate word panel */ - ECORE_IMF_CANDIDATE_PANEL_HIDE /**< Notification prior to the dismissal of the candidate word panel */ + ECORE_IMF_CANDIDATE_PANEL_SHOW, /**< Notification after the display of the candidate word panel @since 1.3 */ + ECORE_IMF_CANDIDATE_PANEL_HIDE /**< Notification prior to the dismissal of the candidate word panel @since 1.3 */ } Ecore_IMF_Candidate_Panel_State; /* Events sent by the Input Method */ diff --git a/legacy/ecore/src/lib/ecore_imf/ecore_imf_context.c b/legacy/ecore/src/lib/ecore_imf/ecore_imf_context.c index dbac20135a..044eaaa35f 100644 --- a/legacy/ecore/src/lib/ecore_imf/ecore_imf_context.c +++ b/legacy/ecore/src/lib/ecore_imf/ecore_imf_context.c @@ -1745,7 +1745,7 @@ ecore_imf_context_input_panel_caps_lock_mode_get(Ecore_IMF_Context *ctx) * @param w width of the input panel * @param h height of the input panel * @ingroup Ecore_IMF_Context_Group - * @since 1.2.0 + * @since 1.3 */ EAPI void ecore_imf_context_input_panel_geometry_get(Ecore_IMF_Context *ctx, int *x, int *y, int *w, int *h) @@ -1767,7 +1767,7 @@ ecore_imf_context_input_panel_geometry_get(Ecore_IMF_Context *ctx, int *x, int * * @param ctx An #Ecore_IMF_Context. * @param The state of input panel. * @ingroup Ecore_IMF_Context_Group - * @since 1.2.0 + * @since 1.3 */ EAPI Ecore_IMF_Input_Panel_State ecore_imf_context_input_panel_state_get(Ecore_IMF_Context *ctx) @@ -1796,7 +1796,7 @@ ecore_imf_context_input_panel_state_get(Ecore_IMF_Context *ctx) * @param func the callback function * @param data application-input panel specific data. * @ingroup Ecore_IMF_Context_Group - * @since 1.2.0 + * @since 1.3 */ EAPI void ecore_imf_context_input_panel_event_callback_add(Ecore_IMF_Context *ctx, @@ -1822,7 +1822,7 @@ ecore_imf_context_input_panel_event_callback_add(Ecore_IMF_Context *ctx, * @param func the callback function * @param data application-input panel specific data. * @ingroup Ecore_IMF_Context_Group - * @since 1.2.0 + * @since 1.3 */ EAPI void ecore_imf_context_input_panel_event_callback_del(Ecore_IMF_Context *ctx, @@ -1849,6 +1849,7 @@ ecore_imf_context_input_panel_event_callback_del(Ecore_IMF_Context *ctx, * @param lang Location to store the retrieved language string. The * string retrieved must be freed with free(). * @ingroup Ecore_IMF_Context_Group + * @since 1.3 */ EAPI void ecore_imf_context_input_panel_language_locale_get(Ecore_IMF_Context *ctx, char **lang) @@ -1877,6 +1878,7 @@ ecore_imf_context_input_panel_language_locale_get(Ecore_IMF_Context *ctx, char * * @param w width of the candidate panel * @param h height of the candidate panel * @ingroup Ecore_IMF_Context_Group + * @since 1.3 */ EAPI void ecore_imf_context_candidate_panel_geometry_get(Ecore_IMF_Context *ctx, int *x, int *y, int *w, int *h)