Remove if condition from since_tizen 77/308177/2
authorHwankyu Jhun <h.jhun@samsung.com>
Tue, 19 Mar 2024 05:35:25 +0000 (14:35 +0900)
committerHwanKyu Jhun <h.jhun@samsung.com>
Tue, 19 Mar 2024 05:36:17 +0000 (05:36 +0000)
The @since_tizen section is changed to '2.4'.

Change-Id: I86cddc8a5b9f2c5ac583bf52e8c17806f6e9272b
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
include/minicontrol-error.h
include/minicontrol-provider.h
include/minicontrol-type.h
include/minicontrol-viewer.h

index b68771bc9e5f188ec7e17145937b2f29cca4543f..460c74ae4f3c8fc1fb9cd60ecbe71125776de6fb 100644 (file)
@@ -31,7 +31,7 @@
 
 /**
  * @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 */
index b4fb2bfd49622f6cacac7a0a99e7ce6b8bdf1a1e..07afa8b10ae397c31135865e5f8e36637dbc2931 100644 (file)
@@ -41,7 +41,7 @@ extern "C" {
 
 /**
  * @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
@@ -54,7 +54,7 @@ typedef void (*minicontrol_event_cb)(minicontrol_viewer_event_e event_type, bund
 
 /**
  * @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
@@ -74,7 +74,7 @@ Evas_Object *minicontrol_create_window(const char *name, minicontrol_target_view
 
 /**
  * @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
index 8ad311400da7ced0658c94aa5033fa95c94e0b99..0da71ccc652da815a1e1055d831e48c2bc876ebe 100644 (file)
@@ -93,7 +93,7 @@
 
 /**
  * @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 */
@@ -106,7 +106,7 @@ typedef enum {
 
 /**
  * @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. */
@@ -115,7 +115,7 @@ typedef enum {
 
 /**
  * @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.*/
@@ -125,7 +125,7 @@ typedef enum {
 
 /**
  * @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 */
index ed72f805086808e23e4731e2cae6ec0b666b90bd..746a45542d24a5b4e2e2fd8e41bf94cfe372e25e 100644 (file)
@@ -40,7 +40,7 @@ extern "C" {
 
 /**
  * @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
@@ -56,7 +56,7 @@ Evas_Object *minicontrol_viewer_add(Evas_Object *parent, const char *minicontrol
 
 /**
  * @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
@@ -71,7 +71,7 @@ int minicontrol_viewer_send_event(const char *minicontrol_name, minicontrol_view
 
 /**
  * @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
@@ -85,7 +85,7 @@ typedef void (*minicontrol_viewer_event_cb)(minicontrol_event_e event, const cha
 
 /**
  * @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,
@@ -102,7 +102,7 @@ int minicontrol_viewer_set_event_cb(minicontrol_viewer_event_cb callback, void *
 
 /**
  * @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