Revert "Deprecating Attach Panel APIs" 86/301186/1
authorShivam Varshney <shivam.v2@samsung.com>
Fri, 10 Nov 2023 05:48:42 +0000 (05:48 +0000)
committerShivam Varshney <shivam.v2@samsung.com>
Fri, 10 Nov 2023 05:48:42 +0000 (05:48 +0000)
This reverts commit e9c2739e34ec51251d3d3124383a7cdc82622482.

Reason for revert: Need to do with ACR Process

Change-Id: I2601e0545dd88a30216faa803c86894b05cca4d1

include/attach_panel.h

index 2d7c040007388235926a27139b3bf8ea4e96ca4b..437cae9b28cccc4c08f37b95ee8bf7352e641ed5 100755 (executable)
@@ -28,7 +28,6 @@ extern "C" {
 #endif
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @file attach_panel.h
  * @brief Declares the API of the libattach-panel library.
  */
@@ -39,7 +38,6 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Enumeration for content categories.
  * @since_tizen 2.4
  * @see attach_panel_add_content_category()
@@ -61,7 +59,6 @@ typedef enum attach_panel_content_category {
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Enumeration for events.
  * @since_tizen 2.4
  * @see attach_panel_set_event_cb()
@@ -75,7 +72,6 @@ typedef enum attach_panel_event {
 } attach_panel_event_e;
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Enumeration for window state
  * @since_tizen 3.0
  * @see attach_panel_get_state()
@@ -88,7 +84,6 @@ typedef enum {
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Attach panel handle.
  * @since_tizen 2.4
  */
@@ -96,7 +91,6 @@ typedef struct _attach_panel *attach_panel_h;
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Called when an user selects and confirms something to attach on the caller app.
  * @since_tizen 2.4
  * @param[in] attach_panel Attach panel handler
@@ -116,7 +110,6 @@ typedef void (*attach_panel_result_cb)(attach_panel_h attach_panel, attach_panel
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Called when reserved events are published from the panel-side.
  * @since_tizen 2.4
  * @param[in] attach_panel Attach panel handler
@@ -132,7 +125,6 @@ typedef void (*attach_panel_event_cb)(attach_panel_h attach_panel, attach_panel_
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Enumeration for values of attach-panel response types.
  * @since_tizen 2.4
  */
@@ -151,7 +143,6 @@ typedef enum attach_panel_error {
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Creates an attach panel.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -269,7 +260,6 @@ int attach_panel_create(Evas_Object *conformant, attach_panel_h *attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Destroys the attach panel.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -347,7 +337,6 @@ int attach_panel_destroy(attach_panel_h attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Adds a content category in the attach panel.
  * @since_tizen 2.4
  * @privlevel public
@@ -493,7 +482,6 @@ int attach_panel_add_content_category(attach_panel_h attach_panel, attach_panel_
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Removes the content category from the attach panel.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -582,7 +570,6 @@ int attach_panel_remove_content_category(attach_panel_h attach_panel, attach_pan
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Sets extra data to send to the content category using a bundle.
  * @since_tizen 2.4
  * @privlevel public
@@ -743,7 +730,6 @@ int attach_panel_set_extra_data(attach_panel_h attach_panel, attach_panel_conten
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Sets the result callback that will be called when an user selects and confirms something to attach in the attach panel.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -863,7 +849,6 @@ int attach_panel_set_result_cb(attach_panel_h attach_panel, attach_panel_result_
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Unsets the result callback that will be called when an user selects and confirms something to attach in the attach panel.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -941,7 +926,6 @@ int attach_panel_unset_result_cb(attach_panel_h attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Sets the event callback that will be called when reserved events are published from the panel-side.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -1030,7 +1014,6 @@ int attach_panel_set_event_cb(attach_panel_h attach_panel, attach_panel_event_cb
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Unsets the event callback
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.
@@ -1088,7 +1071,6 @@ int attach_panel_unset_event_cb(attach_panel_h attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Shows the attach panel, asynchronously.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -1201,7 +1183,6 @@ int attach_panel_show(attach_panel_h attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Shows the attach panel, synchronously.
  * @since_tizen 4.0
  * @param[in] attach_panel The attach panel handle
@@ -1305,7 +1286,6 @@ int attach_panel_show_without_animation(attach_panel_h attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Hides the attach panel, asynchronously.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -1381,7 +1361,6 @@ int attach_panel_hide(attach_panel_h attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Hides the attach panel, synchronously.
  * @since_tizen 4.0
  * @param[in] attach_panel The attach panel handle
@@ -1448,7 +1427,6 @@ int attach_panel_hide_without_animation(attach_panel_h attach_panel);
 
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Gets a value that indicates whether the attach_panel is visible.
  * @since_tizen 2.4
  * @remarks The caller app has to check the return value of this function.\n
@@ -1532,7 +1510,6 @@ int attach_panel_hide_without_animation(attach_panel_h attach_panel);
 int attach_panel_get_visibility(attach_panel_h attach_panel, bool *visible);
 
 /**
- * @deprecated Deprecated since tizen 8.0.
  * @brief Gets the state of the attach_panel.
  * @since_tizen 3.0
  * @remarks Users can toggle the attach panel between full screen state or partial window state.\n