From: jypark Date: Wed, 14 Mar 2012 07:13:40 +0000 (+0000) Subject: remove elm_map_group_class_style_set X-Git-Tag: REL_F_I9500_20120323_1~17^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=643717f9af457d9d79cb16ed2f3b2066d92a2091;p=framework%2Fuifw%2Felementary.git remove elm_map_group_class_style_set elm_map_group_class_icon_cb_set elm_map_group_class_data_set elm_map_group_class_zoom_displayed_set elm_map_group_class_zoom_grouped_set elm_map_group_class_hide_set git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69320 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_map.c b/src/lib/elm_map.c index ee5fc09..8369368 100644 --- a/src/lib/elm_map.c +++ b/src/lib/elm_map.c @@ -5869,84 +5869,6 @@ elm_map_group_class_new(Evas_Object *obj) #endif } -EAPI void -elm_map_group_class_style_set(Elm_Map_Group_Class *clas, const char *style) -{ -#ifdef HAVE_ELEMENTARY_ECORE_CON - EINA_SAFETY_ON_NULL_RETURN(clas); - eina_stringshare_replace(&clas->style, style); -#else - (void) clas; - (void) style; -#endif -} - -EAPI void -elm_map_group_class_icon_cb_set(Elm_Map_Group_Class *clas, Elm_Map_Group_Icon_Get_Func icon_get) -{ -#ifdef HAVE_ELEMENTARY_ECORE_CON - EINA_SAFETY_ON_NULL_RETURN(clas); - clas->func.icon_get = icon_get; -#else - (void) clas; - (void) icon_get; -#endif -} - -EAPI void -elm_map_group_class_data_set(Elm_Map_Group_Class *clas, void *data) -{ -#ifdef HAVE_ELEMENTARY_ECORE_CON - EINA_SAFETY_ON_NULL_RETURN(clas); - clas->data = data; -#else - (void) clas; - (void) data; -#endif -} - -EAPI void -elm_map_group_class_zoom_displayed_set(Elm_Map_Group_Class *clas, int zoom) -{ -#ifdef HAVE_ELEMENTARY_ECORE_CON - EINA_SAFETY_ON_NULL_RETURN(clas); - clas->zoom_displayed = zoom; -#else - (void) clas; - (void) zoom; -#endif -} - -EAPI void -elm_map_group_class_zoom_grouped_set(Elm_Map_Group_Class *clas, int zoom) -{ -#ifdef HAVE_ELEMENTARY_ECORE_CON - EINA_SAFETY_ON_NULL_RETURN(clas); - clas->zoom_grouped = zoom; -#else - (void) clas; - (void) zoom; -#endif -} - -EAPI void -elm_map_group_class_hide_set(Evas_Object *obj, Elm_Map_Group_Class *clas, Eina_Bool hide) -{ -#ifdef HAVE_ELEMENTARY_ECORE_CON - ELM_CHECK_WIDTYPE(obj, widtype); - Widget_Data *wd = elm_widget_data_get(obj); - EINA_SAFETY_ON_NULL_RETURN(wd); - EINA_SAFETY_ON_NULL_RETURN(clas); - - clas->hide = hide; - evas_object_smart_changed(wd->pan_smart); -#else - (void) obj; - (void) clas; - (void) hide; -#endif -} - EAPI Elm_Map_Marker_Class * elm_map_marker_class_new(Evas_Object *obj) {