Remove wearable API version notation 95/302295/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 5 Dec 2023 07:33:16 +0000 (16:33 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 5 Dec 2023 07:33:16 +0000 (16:33 +0900)
Change-Id: I1d2348d9473301e52fcadba5712fe80e405af6d9
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
inputmethod/include/inputmethod.h
inputmethod/include/inputmethod_keydef.h

index 359dc71..ec3c64d 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
 /**
  * @brief Enumeration for input method function error.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        IME_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
@@ -56,7 +56,7 @@ typedef enum {
 /**
  * @brief Enumeration of the option window type.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @see ime_option_window_created_cb()
  */
@@ -68,7 +68,7 @@ typedef enum {
 /**
  * @brief Enumeration of layout variation.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @see ime_context_get_layout_variation()
  */
@@ -87,7 +87,7 @@ typedef enum {
 /**
  * @brief Enumeration of string attribute type.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @remarks Currently, a font style is available to use.
  *
@@ -114,26 +114,26 @@ typedef enum {
 
 /**
  * @brief Value for #IME_ATTR_FONTSTYLE. Draw a line under the text.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 #define IME_ATTR_FONTSTYLE_UNDERLINE    1
 
 /**
  * @brief Value for #IME_ATTR_FONTSTYLE. Draw text in highlighted color.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 #define IME_ATTR_FONTSTYLE_HIGHLIGHT    2
 
 /**
  * @brief Value for #IME_ATTR_FONTSTYLE. Draw text in reversal color.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 #define IME_ATTR_FONTSTYLE_REVERSAL     4
 
 /**
  * @brief The structure type to contain the attributes for preedit string.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @remarks A preedit string may have one or more different attributes. This structure describes each attribute of the string.
  *
@@ -153,7 +153,7 @@ typedef struct {
  * @details This is one of parameters of ime_show_cb() callback function. IME application
  * should configure its input panel with this structure information.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @see ime_context_get_layout()
  * @see ime_context_get_layout_variation()
@@ -175,7 +175,7 @@ typedef struct _ime_context *ime_context_h;
  * @details This is one of parameters of ime_process_key_event_cb() callback function. IME application
  * may distinguish the key event by using this if necessary.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @see ime_process_key_event_cb()
  * @see ime_device_info_get_name()
@@ -187,7 +187,7 @@ typedef struct _ime_device_info *ime_device_info_h;
 /**
  * @brief Called when the input panel is created.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -209,7 +209,7 @@ typedef void (*ime_create_cb)(void *user_data);
 /**
  * @brief Called when the input panel is terminated.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -228,7 +228,7 @@ typedef void (*ime_terminate_cb)(void *user_data);
 /**
  * @brief Called when an associated text input UI control requests the input panel to show itself.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -262,7 +262,7 @@ typedef void (*ime_show_cb)(int context_id, ime_context_h context, void *user_da
 /**
  * @brief Called when an associated text input UI control requests the input panel to hide itself.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -282,7 +282,7 @@ typedef void (*ime_hide_cb)(int context_id, void *user_data);
 /**
  * @brief Called when an associated text input UI control has focus.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -300,7 +300,7 @@ typedef void (*ime_focus_in_cb)(int context_id, void *user_data);
 /**
  * @brief Called when an associated text input UI control loses focus.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -318,7 +318,7 @@ typedef void (*ime_focus_out_cb)(int context_id, void *user_data);
 /**
  * @brief Called when an associated text input UI control responds to a request with the surrounding text.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -342,7 +342,7 @@ typedef void (*ime_surrounding_text_updated_cb)(int context_id, const char *text
 /**
  * @brief Called to reset the input context of an associated text input UI control.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -359,7 +359,7 @@ typedef void (*ime_input_context_reset_cb)(void *user_data);
 /**
  * @brief Called when the position of the cursor in an associated text input UI control changes.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -377,7 +377,7 @@ typedef void (*ime_cursor_position_updated_cb)(int cursor_pos, void *user_data);
 /**
  * @brief Called when an associated text input UI control requests the language from the input panel.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -397,7 +397,7 @@ typedef void (*ime_language_requested_cb)(void *user_data, char **lang_code);
 /**
  * @brief Called to set the preferred language to the input panel.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -422,7 +422,7 @@ typedef void (*ime_language_set_cb)(Ecore_IMF_Input_Panel_Lang language, void *u
  * @details This function is used by the applications to deliver the specific data to the input panel.
  * The data format MUST be negotiated by both application and input panel.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -446,7 +446,7 @@ typedef void (*ime_imdata_set_cb)(void *data, unsigned int data_length, void *us
  * @details This function is used by the applications to request the specific data from the input panel.
  * The data format MUST be negotiated by both application and input panel.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -467,7 +467,7 @@ typedef void (*ime_imdata_requested_cb)(void *user_data, void **data, unsigned i
 /**
  * @brief Called when an associated text input UI control requests the input panel to set its layout.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -512,7 +512,7 @@ typedef void (*ime_input_hint_set_cb)(Ecore_IMF_Input_Hints input_hint, void *us
  * @brief Called when an associated text input UI control requests the input panel to set the @c Return key label.
  * The input panel can show text or image on the @c Return button according to the @c Return key action.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -536,7 +536,7 @@ typedef void (*ime_return_key_type_set_cb)(Ecore_IMF_Input_Panel_Return_Key_Type
  * @brief Called when an associated text input UI control requests the input panel to enable
  * or disable the @c Return key state.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -559,7 +559,7 @@ typedef void (*ime_return_key_state_set_cb)(bool disabled, void *user_data);
 /**
  * @brief Called when an associated text input UI control requests the position and size from the input panel.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -584,7 +584,7 @@ typedef void (*ime_geometry_requested_cb)(void *user_data, int *x, int *y, int *
  *
  * @details This function processes the key event before an associated text input UI control does.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -653,7 +653,7 @@ typedef bool (*ime_process_key_event_with_keycode_cb)(unsigned int key_code, ime
 /**
  * @brief Called when the system display language is changed.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -671,7 +671,7 @@ typedef void (*ime_display_language_changed_cb)(const char *language, void *user
 /**
  * @brief Called when the device is rotated.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -689,7 +689,7 @@ typedef void (*ime_rotation_degree_changed_cb)(int degree, void *user_data);
 /**
  * @brief Called when Accessibility in Settings application is on or off.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -707,7 +707,7 @@ typedef void (*ime_accessibility_state_changed_cb)(bool state, void *user_data);
 /**
  * @brief Called to create the option window.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -732,7 +732,7 @@ typedef void (*ime_option_window_created_cb)(Evas_Object *window, ime_option_win
 /**
  * @brief Called to destroy the option window.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -817,7 +817,7 @@ typedef void (*ime_prediction_hint_data_set_cb)(const char *key, const char *val
 /**
  * @brief The structure type to contain the set of the essential callback functions for IME application lifecycle and appearance.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @remarks These four callback functions are mandatory for IME application.
  *
@@ -837,7 +837,7 @@ typedef struct {
  * callback function is called to initialize IME application before the main loop starts up. And
  * the ime_terminate_cb() callback function is called when IME application is terminated.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -948,7 +948,7 @@ int ime_run(ime_callback_s *basic_cb, void *user_data);
 /**
  * @brief Sets @c focus_in event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -976,7 +976,7 @@ int ime_event_set_focus_in_cb(ime_focus_in_cb callback_func, void *user_data);
 /**
  * @brief Sets @c focus_out event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1004,7 +1004,7 @@ int ime_event_set_focus_out_cb(ime_focus_out_cb callback_func, void *user_data);
 /**
  * @brief Sets @c surrounding_text_updated event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1032,7 +1032,7 @@ int ime_event_set_surrounding_text_updated_cb(ime_surrounding_text_updated_cb ca
 /**
  * @brief Sets @c input_context_reset event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1060,7 +1060,7 @@ int ime_event_set_input_context_reset_cb(ime_input_context_reset_cb callback_fun
 /**
  * @brief Sets @c cursor_position_updated event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1088,7 +1088,7 @@ int ime_event_set_cursor_position_updated_cb(ime_cursor_position_updated_cb call
 /**
  * @brief Sets @c language_requested event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1116,7 +1116,7 @@ int ime_event_set_language_requested_cb(ime_language_requested_cb callback_func,
 /**
  * @brief Sets @c language_set event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1144,7 +1144,7 @@ int ime_event_set_language_set_cb(ime_language_set_cb callback_func, void *user_
 /**
  * @brief Sets @c imdata_set event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1173,7 +1173,7 @@ int ime_event_set_imdata_set_cb(ime_imdata_set_cb callback_func, void *user_data
 /**
  * @brief Sets @c imdata_requested event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1202,7 +1202,7 @@ int ime_event_set_imdata_requested_cb(ime_imdata_requested_cb callback_func, voi
 /**
  * @brief Sets @c layout_set event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1230,7 +1230,7 @@ int ime_event_set_layout_set_cb(ime_layout_set_cb callback_func, void *user_data
 /**
  * @brief Sets @c return_key_type_set event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1258,7 +1258,7 @@ int ime_event_set_return_key_type_set_cb(ime_return_key_type_set_cb callback_fun
 /**
  * @brief Sets @c return_key_state_set event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1286,7 +1286,7 @@ int ime_event_set_return_key_state_set_cb(ime_return_key_state_set_cb callback_f
 /**
  * @brief Sets @c geometry_requested event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1314,7 +1314,7 @@ int ime_event_set_geometry_requested_cb(ime_geometry_requested_cb callback_func,
 /**
  * @brief Sets @c process_key_event event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1414,7 +1414,7 @@ int ime_event_set_process_key_event_with_keycode_cb(ime_process_key_event_with_k
 /**
  * @brief Sets @c display_language_changed event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1442,7 +1442,7 @@ int ime_event_set_display_language_changed_cb(ime_display_language_changed_cb ca
 /**
  * @brief Sets @c rotation_degree_changed event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1470,7 +1470,7 @@ int ime_event_set_rotation_degree_changed_cb(ime_rotation_degree_changed_cb call
 /**
  * @brief Sets @c accessibility_state_changed event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1498,7 +1498,7 @@ int ime_event_set_accessibility_state_changed_cb(ime_accessibility_state_changed
 /**
  * @brief Sets @c option_window_created event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1525,7 +1525,7 @@ int ime_event_set_option_window_created_cb(ime_option_window_created_cb callback
 /**
  * @brief Sets @c option_window_destroyed event callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1556,7 +1556,7 @@ int ime_event_set_option_window_destroyed_cb(ime_option_window_destroyed_cb call
  * If @a forward_key is @c true, this key event goes to the edit field directly. And if @a forward_key
  * is @c false, the ime_process_key_event_cb() callback function receives the key event before the edit field.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1582,7 +1582,7 @@ int ime_send_key_event(ime_key_code_e keycode, ime_key_mask_e keymask, bool forw
 /**
  * @brief Sends the text to the associated text input UI control.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1605,7 +1605,7 @@ int ime_commit_string(const char *str);
 /**
  * @brief Requests to show preedit string.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1625,7 +1625,7 @@ int ime_show_preedit_string(void);
 /**
  * @brief Requests to hide preedit string.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1645,7 +1645,7 @@ int ime_hide_preedit_string(void);
 /**
  * @brief Updates a new preedit string.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1761,7 +1761,7 @@ int ime_update_preedit_cursor(unsigned int pos);
 /**
  * @brief Requests the surrounding text from the position of the cursor, asynchronously.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1789,7 +1789,7 @@ int ime_request_surrounding_text(int maxlen_before, int maxlen_after);
 /**
  * @brief Requests to delete surrounding text.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1882,7 +1882,7 @@ int ime_get_selected_text(char **text);
 /**
  * @brief Gets the pointer of input panel main window.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1909,7 +1909,7 @@ Evas_Object* ime_get_main_window(void);
 /**
  * @brief Updates the input panel window's size information.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1937,7 +1937,7 @@ int ime_set_size(int portrait_width, int portrait_height, int landscape_width, i
  * function calls ime_option_window_created_cb() callback function with
  * #IME_OPTION_WINDOW_TYPE_KEYBOARD parameter.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -1970,7 +1970,7 @@ int ime_create_option_window(void);
  * @details The input panel can call this function to close the option window which
  * is created from either the input panel or Settings application.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2004,7 +2004,7 @@ int ime_destroy_option_window(Evas_Object *window);
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the layout information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2032,7 +2032,7 @@ int ime_context_get_layout(ime_context_h context, Ecore_IMF_Input_Panel_Layout *
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the layout variation information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2060,7 +2060,7 @@ int ime_context_get_layout_variation(ime_context_h context, ime_layout_variation
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the cursor position information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2088,7 +2088,7 @@ int ime_context_get_cursor_position(ime_context_h context, int *cursor_pos);
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the autocapital type information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2115,7 +2115,7 @@ int ime_context_get_autocapital_type(ime_context_h context, Ecore_IMF_Autocapita
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the @c Return key label type information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2143,7 +2143,7 @@ int ime_context_get_return_key_type(ime_context_h context, Ecore_IMF_Input_Panel
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the @c Return key state information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2172,7 +2172,7 @@ int ime_context_get_return_key_state(ime_context_h context, bool *return_key_sta
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the prediction mode information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2200,7 +2200,7 @@ int ime_context_get_prediction_mode(ime_context_h context, bool *prediction_mode
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the password mode information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2230,7 +2230,7 @@ int ime_context_get_password_mode(ime_context_h context, bool *password_mode);
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the input hint information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2260,7 +2260,7 @@ int ime_context_get_input_hint(ime_context_h context, Ecore_IMF_Input_Hints *inp
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the bidirectional information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2287,7 +2287,7 @@ int ime_context_get_bidi_direction(ime_context_h context, Ecore_IMF_BiDi_Directi
  * @details Each edit field has various attributes for input panel. This function can be
  * called to get the preferred language information in ime_show_cb() callback function.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2311,7 +2311,7 @@ int ime_context_get_language(ime_context_h context, Ecore_IMF_Input_Panel_Lang *
 /**
  * @brief Gets the device name of the key event.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2337,7 +2337,7 @@ int ime_device_info_get_name(ime_device_info_h dev_info, char **dev_name);
 /**
  * @brief Gets the device class of the key event.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
@@ -2360,7 +2360,7 @@ int ime_device_info_get_class(ime_device_info_h dev_info, Ecore_IMF_Device_Class
 /**
  * @brief Gets the device subclass of the key event.
  *
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  *
  * @privlevel public
  *
index 6ef3815..ce5a6de 100644 (file)
@@ -37,7 +37,7 @@
  *        The UCS value is keycode & 0x00ffffff.
  * @details Defines the list of keys supported by the system.
  *          Note that certain keys may not be available on all devices.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        IME_KEY_BackSpace = 0xFF08, /**< The backspace key */
@@ -276,7 +276,7 @@ typedef enum {
  * @brief Enumeration for the key masks.
  *        The key masks indicate which modifier keys is pressed down during the keyboard hit.
  *        The special #IME_KEY_MASK_RELEASED indicates the key release event.
- * @since_tizen @if MOBILE 2.4 @else 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef enum {
        IME_KEY_MASK_PRESSED = 0, /**< Key press event without modifier key */