From dcea94f659247941ac3a413adaf3376854e64f9f Mon Sep 17 00:00:00 2001 From: Rajeev Ranjan Date: Wed, 1 Feb 2012 13:33:09 +0530 Subject: [PATCH] [tickernoti] Deprecating the old APIs after announcement made on Jan, 09, 2012 --- src/lib/Elementary.h.in | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/lib/Elementary.h.in b/src/lib/Elementary.h.in index 67a4cd8..85047af 100644 --- a/src/lib/Elementary.h.in +++ b/src/lib/Elementary.h.in @@ -29751,7 +29751,7 @@ extern "C" { * @param label The label will be used on the tickernoti object * @deprecated use elm_object_text_set() instead */ - WILL_DEPRECATE EAPI void elm_tickernoti_detailview_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI void elm_tickernoti_detailview_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1); /** * Get the detail label used on the tickernoti object * @@ -29759,7 +29759,7 @@ extern "C" { * @return The string inside the label * @deprecated use elm_object_text_get() instead */ - WILL_DEPRECATE EAPI const char *elm_tickernoti_detailview_label_get (const Evas_Object *obj)EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI const char *elm_tickernoti_detailview_label_get (const Evas_Object *obj)EINA_ARG_NONNULL(1); /** * Set the button object used on the tickernoti object * @@ -29767,7 +29767,7 @@ extern "C" { * @param button The button object will be used on the tickernoti object * @deprecated use elm_object_part_content_set() instead with "button" as part name */ - WILL_DEPRECATE EAPI void elm_tickernoti_detailview_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(2); + EINA_DEPRECATED EAPI void elm_tickernoti_detailview_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(2); /** * Get the button object used on the tickernoti object * @@ -29775,7 +29775,7 @@ extern "C" { * @return The button object inside the tickernoti * @deprecated use elm_object_part_content_get() instead with "button" as part name */ - WILL_DEPRECATE EAPI Evas_Object *elm_tickernoti_detailview_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI Evas_Object *elm_tickernoti_detailview_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * Set the detail icon object used on the tickernoti object * @@ -29783,7 +29783,7 @@ extern "C" { * @param icon The icon object will be used on the tickernoti object * @deprecated use elm_object_part_content_set() instead with "icon" as part name */ - WILL_DEPRECATE EAPI void elm_tickernoti_detailview_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI void elm_tickernoti_detailview_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1); /** * Get the detail icon object used on the tickernoti object * @@ -29791,7 +29791,7 @@ extern "C" { * @return The icon object inside the tickernoti * @deprecated use elm_object_part_content_get() instead with "icon" as part name */ - WILL_DEPRECATE EAPI Evas_Object *elm_tickernoti_detailview_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI Evas_Object *elm_tickernoti_detailview_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * Get the view mode on the tickernoti object * @@ -29799,7 +29799,7 @@ extern "C" { * @return The internal window used * @deprecated use elm_tickernoti_win_get instead when internal window object is needed */ - WILL_DEPRECATE EAPI Evas_Object *elm_tickernoti_detailview_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI Evas_Object *elm_tickernoti_detailview_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * Set the view mode used on the tickernoti object * @@ -29807,14 +29807,14 @@ extern "C" { * @param mode The view mode will be used on the tickernoti object * @deprecated removed as now styles are used. Use elm_object_style_set instead. */ - WILL_DEPRECATE EAPI void elm_tickernoti_mode_set (Evas_Object *obj, Elm_Tickernoti_Mode mode) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI void elm_tickernoti_mode_set (Evas_Object *obj, Elm_Tickernoti_Mode mode) EINA_ARG_NONNULL(1); /** * Get the current mode of the tickernoti object * * @param obj The tickernotil object * @return the mode of the object. Can be ELM_TICKERNOTI_DEFAULT/ELM_TICKERNOTI_DETAILVIEW */ - WILL_DEPRECATE EAPI Elm_Tickernoti_Mode elm_tickernoti_mode_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI Elm_Tickernoti_Mode elm_tickernoti_mode_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * Set the orientation of the tickernoti object * @@ -29822,7 +29822,7 @@ extern "C" { * @param orient The orientation of tickernoti object * @deprecated use elm_tickernoti_orient_set() instead */ - WILL_DEPRECATE EAPI void elm_tickernoti_orientation_set (Evas_Object *obj, Elm_Tickernoti_Orient orient) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI void elm_tickernoti_orientation_set (Evas_Object *obj, Elm_Tickernoti_Orient orient) EINA_ARG_NONNULL(1); /** * Get the orientation of the tickernoti object * @@ -29830,7 +29830,7 @@ extern "C" { * @return The orientation of tickernotil object * @deprecated use elm_tickernoti_orient_get() instead */ - WILL_DEPRECATE EAPI Elm_Tickernoti_Orient elm_tickernoti_orientation_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI Elm_Tickernoti_Orient elm_tickernoti_orientation_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * Set the label on the tickernoti object * @@ -29838,7 +29838,7 @@ extern "C" { * @param label The label will be used on the tickernoti object * @deprecated use elm_object_text_set() */ - WILL_DEPRECATE EAPI void elm_tickernoti_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI void elm_tickernoti_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1); /** * Get the label used on the tickernoti object * @@ -29846,7 +29846,7 @@ extern "C" { * @return The string inside the label * @deprecated use elm_object_text_get() instead */ - WILL_DEPRECATE EAPI const char *elm_tickernoti_label_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI const char *elm_tickernoti_label_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * Set the icon object of the tickernoti object * @@ -29854,7 +29854,7 @@ extern "C" { * @param icon The icon object will be used on the tickernoti object * @deprecated use elm_object_part_content_set() instead with "icon" as part name */ - WILL_DEPRECATE EAPI void elm_tickernoti_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI void elm_tickernoti_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1); /** * Get the icon object of the tickernoti object * @@ -29862,7 +29862,7 @@ extern "C" { * @return The icon object inside the tickernoti * @deprecated use elm_object_part_content_get() instead with "icon" as part name */ - WILL_DEPRECATE EAPI Evas_Object *elm_tickernoti_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI Evas_Object *elm_tickernoti_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * Set the action button object used on the tickernoti object * @@ -29870,7 +29870,7 @@ extern "C" { * @param button The button object will be used on the tickernoti object * @deprecated use elm_object_part_content_set() instead with "button" as part name */ - WILL_DEPRECATE EAPI void elm_tickernoti_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI void elm_tickernoti_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(1); /** * Get the action button object used on the tickernoti object * @@ -29878,7 +29878,7 @@ extern "C" { * @return The button object inside the tickernoti * @deprecated use elm_object_part_content_get() instead with "button" as part name */ - WILL_DEPRECATE EAPI Evas_Object *elm_tickernoti_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); + EINA_DEPRECATED EAPI Evas_Object *elm_tickernoti_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1); /** * @} */ -- 2.7.4