Deprecated APIs are deleted from the codes
authorWooHyun Jung <wh0705.jung@samsung.com>
Tue, 25 Jan 2011 04:13:18 +0000 (13:13 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Tue, 25 Jan 2011 04:13:18 +0000 (13:13 +0900)
src/bin/test_list.c
src/lib/elm_list.c
src/lib/elm_navigationbar.c
src/lib/elm_popup.c
src/lib/elm_slider.c
src/lib/elm_transit.c

index af5282b..86c1b65 100644 (file)
@@ -187,7 +187,7 @@ test_list2(void *data, Evas_Object *obj, void *event_info)
    li = elm_list_add(win);
    evas_object_size_hint_align_set(li, EVAS_HINT_FILL, EVAS_HINT_FILL);
    evas_object_size_hint_weight_set(li, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-   elm_list_horizontal_mode_set(li, ELM_LIST_LIMIT);
+   elm_list_mode_set(li, ELM_LIST_LIMIT);
 //   elm_list_multi_select_set(li, 1);
 
    ic = elm_icon_add(win);
@@ -292,7 +292,7 @@ test_list3(void *data, Evas_Object *obj, void *event_info)
    li = elm_list_add(win);
    elm_win_resize_object_add(win, li);
    evas_object_size_hint_weight_set(li, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-   elm_list_horizontal_mode_set(li, ELM_LIST_COMPRESS);
+   elm_list_mode_set(li, ELM_LIST_COMPRESS);
 
    ic = elm_icon_add(win);
    snprintf(buf, sizeof(buf), "%s/images/logo_small.png", PACKAGE_DATA_DIR);
index fa5d289..e4d3408 100644 (file)
@@ -2496,14 +2496,3 @@ elm_list_item_disabled_get(const Elm_List_Item *it)
    return it->disabled;
 }
 
-EAPI void
-elm_list_horizontal_mode_set(Evas_Object *obj, Elm_List_Mode mode)
-{
-   elm_list_mode_set(obj, mode);   
-}
-
-EAPI Elm_List_Mode
-elm_list_horizontal_mode_get(const Evas_Object *obj)
-{
-   return elm_list_mode_get(obj);
-}
index d95faf2..f2faf7d 100644 (file)
@@ -1372,23 +1372,6 @@ elm_navigationbar_subtitle_label_get(Evas_Object *obj, Evas_Object *content)
 }
 
 /**
- * deprecate this This disables content area animation on push/pop.
- *
- * @param[in] obj The NavigationBar object
- * @param[in] disable  if EINA_TRUE animation is disabled.
- *
- * @ingroup NavigationBar
- */
-EAPI void 
-elm_navigationbar_animation_disable_set(Evas_Object *obj, Eina_Bool disable)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype);
-   Widget_Data *wd = elm_widget_data_get(obj);
-   
-   elm_pager_animation_disabled_set(wd->pager, disable);
-}
-
-/**
  * This disables content area animation on push/pop.
  *
  * @param[in] obj The NavigationBar object
index 952fb26..407a9f7 100644 (file)
@@ -821,30 +821,6 @@ elm_popup_orient_set(Evas_Object *obj, Elm_Popup_Orient orient)
 }\r
 \r
 /**\r
- * Applications which do not pass any window to popup need to take care of rotation, only when popup is already shown.\r
- * @param obj The popup object\r
- * @param rot_angle  the angle to which popup has to be rotated.\r
- *\r
- * @ingroup Popup\r
- */\r
-EAPI void \r
-elm_popup_rotation_set(Evas_Object *obj, int rot_angle)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype);\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-\r
-   if (!wd) return;  \r
-   if (wd->parent)\r
-     {\r
-        if (wd->rot_angle != rot_angle)\r
-          {\r
-             elm_win_rotation_with_resize_set(wd->parent,rot_angle);\r
-             wd->rot_angle = rot_angle;\r
-          }\r
-     }\r
-}\r
-\r
-/**\r
  * Blocks in a main loop until popup either emits response signal or is exited due\r
  * to exit signal, when exit signal is received dialog responds with ELM_POPUP_RESPONSE_NONE\r
  * response ID else returns the response ID from response signal emission.\r
index c2d569d..2a3e6ac 100644 (file)
@@ -1152,39 +1152,3 @@ elm_slider_indicator_show_get(const Evas_Object *obj)
    if (!wd) return EINA_FALSE;
    return wd->indicator_show;
 }
-
-
-//////////////////////////////////////////////////////////////////////////////////////////////////////
-////////////////////////  DEPRECTAED  ///////////////////////////////////////////////////
-//////////////////////////////////////////////////////////////////////////////////////////////////////
-
-EAPI Eina_Bool 
-elm_slider_end_icon_set(Evas_Object *obj, Evas_Object *icon)
-{
-   elm_slider_end_set(obj, icon);
-   return EINA_TRUE;
-}
-
-EAPI Evas_Object *
-elm_slider_end_icon_get(Evas_Object *obj)
-{
-   return elm_slider_end_get(obj);
-}
-
-EAPI void
-elm_slider_value_animated_set(Evas_Object *obj, double val)
-{
-   return ;
-}
-
-EAPI void
-elm_slider_end_label_set(Evas_Object *obj, const char *label)
-{
-   return ;
-}
-
-EAPI const char *
-elm_slider_end_label_get(const Evas_Object *obj)
-{
-   return NULL;
-}
index 5be1e51..7154c1f 100644 (file)
@@ -364,21 +364,6 @@ elm_transit_del(Elm_Transit *transit)
 }
 
 /**
- * Set the transit animation acceleration style. 
- *
- * @param transit      Transit
- * @param cs Curve style(Please refer elm_animator_curve_style_set)
- *
- * @ingroup Transit 
- */
-EAPI void
-elm_transit_curve_style_set(Elm_Transit *transit, Elm_Animator_Curve_Style cs)
-{
-   ELM_TRANSIT_CHECK_OR_RETURN(transit);
-   elm_animator_curve_style_set(transit->animator, cs);
-}
-
-/**
  * Set the transit animation acceleration type.
  *
  * This function sets the tween mode of the transit that can be: