modify code related elm_hoversel_label and icon(deprecated function)
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 5 Mar 2012 10:04:53 +0000 (10:04 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 5 Mar 2012 10:04:53 +0000 (10:04 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68689 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elc_hoversel.c
src/lib/elm_hover.c

index c982f10..cd5743d 100644 (file)
@@ -392,18 +392,6 @@ elm_hoversel_hover_parent_get(const Evas_Object *obj)
 }
 
 EAPI void
-elm_hoversel_label_set(Evas_Object *obj, const char *label)
-{
-   _elm_hoversel_label_set(obj, NULL, label);
-}
-
-EAPI const char *
-elm_hoversel_label_get(const Evas_Object *obj)
-{
-   return _elm_hoversel_label_get(obj, NULL);
-}
-
-EAPI void
 elm_hoversel_horizontal_set(Evas_Object *obj, Eina_Bool horizontal)
 {
    ELM_CHECK_WIDTYPE(obj, widtype);
@@ -422,24 +410,6 @@ elm_hoversel_horizontal_get(const Evas_Object *obj)
 }
 
 EAPI void
-elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon)
-{
-   _content_set_hook(obj, "icon", icon);
-}
-
-EAPI Evas_Object *
-elm_hoversel_icon_get(const Evas_Object *obj)
-{
-   return _content_get_hook(obj, "icon");
-}
-
-EAPI Evas_Object *
-elm_hoversel_icon_unset(Evas_Object *obj)
-{
-   return _content_unset_hook(obj, "icon");
-}
-
-EAPI void
 elm_hoversel_hover_begin(Evas_Object *obj)
 {
    ELM_CHECK_WIDTYPE(obj, widtype);
index 55cb26c..b3aea0d 100644 (file)
@@ -677,18 +677,6 @@ _elm_hover_sub_obj_placement_eval_cb(void *data, Evas *e __UNUSED__, Evas_Object
    _elm_hover_sub_obj_placement_eval(data);
 }
 
-EAPI void
-elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content)
-{
-   _content_set_hook(obj, swallow, content);
-}
-
-EAPI Evas_Object *
-elm_hover_content_get(const Evas_Object *obj, const char *swallow)
-{
-   return _content_get_hook(obj, swallow);
-}
-
 static void
 _elm_hover_sub_obj_unparent(Evas_Object *obj)
 {
@@ -705,12 +693,6 @@ _elm_hover_sub_obj_unparent(Evas_Object *obj)
    wd->smt_sub = NULL;
 }
 
-EAPI Evas_Object *
-elm_hover_content_unset(Evas_Object *obj, const char *swallow)
-{
-   return _content_unset_hook(obj, swallow);
-}
-
 EAPI const char *
 elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis)
 {