From: jypark Date: Mon, 12 Mar 2012 10:03:38 +0000 (+0000) Subject: remove deprecated code related with X-Git-Tag: REL_F_I9500_20120323_1~17^2~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0bbe7d65d42c30ad323a36926c40b0997e5cdcfe;p=framework%2Fuifw%2Felementary.git remove deprecated code related with elm_win_transparent_XXX function. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69240 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 822162e..d0736d6 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -2363,46 +2363,6 @@ elm_win_alpha_get(const Evas_Object *obj) return ecore_evas_alpha_get(win->ee); } -EINA_DEPRECATED EAPI void -elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent) -{ - Elm_Win *win; - ELM_CHECK_WIDTYPE(obj, widtype); - win = elm_widget_data_get(obj); - if (!win) return; - - if (win->frame_obj) - { - } - else if (win->img_obj) - { - evas_object_image_alpha_set(win->img_obj, transparent); - } - else - { -#ifdef HAVE_ELEMENTARY_X - if (win->xwin) - { - ecore_evas_transparent_set(win->ee, transparent); - _elm_win_xwin_update(win); - } - else -#endif - ecore_evas_transparent_set(win->ee, transparent); - } -} - -EINA_DEPRECATED EAPI Eina_Bool -elm_win_transparent_get(const Evas_Object *obj) -{ - Elm_Win *win; - ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE; - win = elm_widget_data_get(obj); - if (!win) return EINA_FALSE; - - return ecore_evas_transparent_get(win->ee); -} - EAPI void elm_win_override_set(Evas_Object *obj, Eina_Bool override) {