The @since_tizen section is changed to '2.4'.
Change-Id: I86cddc8a5b9f2c5ac583bf52e8c17806f6e9272b
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
/**
* @brief Enumeration for describing error code of minicontrol library.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
*/
typedef enum _minicontrol_error {
MINICONTROL_ERROR_NONE = TIZEN_ERROR_NONE, /**< MiniControl error none */
/**
* @brief Called when a event comes from viewer.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @remarks The @a event_arg should not be released.
* @param[in] event_type The type of fired event
* @param[in] event_arg Argument of the event
/**
* @brief Creates a window for minicontrol.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @remarks The specific error code can be obtained using the gat_last_result() method. Error codes are described in Exception section.
* The returned value should be released using evas_object_del().
* @param[in] name Name of minicontrol socket window
/**
* @brief Sends a event to the viewer.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @remarks When a viewer doesn't handle some events, it can be ignored.
* @param[in] minicontrol Minicontrol window
* @param[in] event Type of the event
/**
* @brief Enumeration for describing types of events originated by a minicontrol provider.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
*/
typedef enum {
MINICONTROL_EVENT_START, /**< A minicontrol object is created */
/**
* @brief Enumeration for types of events which will be sent by minicontrol_send_event().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
*/
typedef enum {
MINICONTROL_PROVIDER_EVENT_REQUEST_HIDE = MINICONTROL_EVENT_REQUEST_HIDE, /**< Requests that the minicontrol viewer(s) close the provider's minicontrol. Required bundle argument : NULL. */
/**
* @brief Enumeration for types of events which will be sent by minicontrol_viewer_send_event().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
*/
typedef enum {
MINICONTROL_VIEWER_EVENT_REPORT_ANGLE = MINICONTROL_EVENT_REPORT_ANGLE, /**< Reports the current angle of the minicontrol viewer. Required argument : Angle of minicontrol viewer, Bundle Key : "angle", Bundle Value Type : string.*/
/**
* @brief Enumeration for selecting target viewers.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
*/
typedef enum {
MINICONTROL_TARGET_VIEWER_QUICK_PANEL = 0x0001, /**< Request to place the minicontrol on the quickpanel */
/**
* @brief Adds minicontrol named as "minicontrol_name" to a given parent evas object and returns it.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @remarks The specific error code can be obtained using the gat_last_result() method. Error codes are described in Exception section.
* The returned value should be released using evas_object_del().
* @param[in] parent Minicontrol object will be added to this parent evas object
/**
* @brief Sends a event to the provider.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @param[in] minicontrol_name The name of the minicontrol window
* @param[in] event Type of the event
* @param[in] event_arg A bundle of arguments
/**
* @brief Called when a event comes from the provider.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @remarks The @a event_arg should not be released.
* @param[in] event The type of fired event
* @param[in] minicontrol_name The name of the minicontrol window
/**
* @brief Sets a callback for events originated by minicontrol provider.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @param[in] callback Callback function
* @param[in] user_data User data
* @return #MINICONTROL_ERROR_NONE on success,
/**
* @brief Unsets a callback for events originated by minicontrol provider.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
+ * @since_tizen 2.4
* @return #MINICONTROL_ERROR_NONE if success,
* other value if failure
* @retval #MINICONTROL_ERROR_NOT_SUPPORTED Not supported