summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2024-03-19 14:35:25 +0900
committerHwanKyu Jhun <h.jhun@samsung.com>2024-03-19 05:36:17 +0000
commitbf1b19da2b3309f5ce65b3a769a7c905d0e0119c (patch)
treea2278d71363d980bd7bcf806842107600b97a6b6
parent1e158f6bc5712a13cd43491a9315b6a0a7cd0ac8 (diff)
downloadminicontrol-bf1b19da2b3309f5ce65b3a769a7c905d0e0119c.tar.gz
minicontrol-bf1b19da2b3309f5ce65b3a769a7c905d0e0119c.tar.bz2
minicontrol-bf1b19da2b3309f5ce65b3a769a7c905d0e0119c.zip
Remove if condition from since_tizen
The @since_tizen section is changed to '2.4'. Change-Id: I86cddc8a5b9f2c5ac583bf52e8c17806f6e9272b Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--include/minicontrol-error.h2
-rw-r--r--include/minicontrol-provider.h6
-rw-r--r--include/minicontrol-type.h8
-rw-r--r--include/minicontrol-viewer.h10
4 files changed, 13 insertions, 13 deletions
diff --git a/include/minicontrol-error.h b/include/minicontrol-error.h
index b68771b..460c74a 100644
--- a/include/minicontrol-error.h
+++ b/include/minicontrol-error.h
@@ -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 */
diff --git a/include/minicontrol-provider.h b/include/minicontrol-provider.h
index b4fb2bf..07afa8b 100644
--- a/include/minicontrol-provider.h
+++ b/include/minicontrol-provider.h
@@ -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
diff --git a/include/minicontrol-type.h b/include/minicontrol-type.h
index 8ad3114..0da71cc 100644
--- a/include/minicontrol-type.h
+++ b/include/minicontrol-type.h
@@ -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 */
diff --git a/include/minicontrol-viewer.h b/include/minicontrol-viewer.h
index ed72f80..746a455 100644
--- a/include/minicontrol-viewer.h
+++ b/include/minicontrol-viewer.h
@@ -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