Ecore_IMF: add @since to new enums and functions

SVN revision: 73241
This commit is contained in:
Jihoon Kim 2012-07-03 14:21:01 +00:00
parent 3b1e4c1c2f
commit ed7de58ddf
2 changed files with 19 additions and 17 deletions

View File

@ -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 */

View File

@ -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)