From: ChunEon Park Date: Sat, 10 Mar 2012 06:27:07 +0000 (+0900) Subject: elemenatry/naviframe - removed unsupported item signal callbacks X-Git-Tag: REL_F_I9500_20120317_1~18^2~24^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85bdc2e154b7049e55679231ab26224c32b2c305;p=framework%2Fuifw%2Felementary.git elemenatry/naviframe - removed unsupported item signal callbacks --- diff --git a/src/lib/elc_naviframe.c b/src/lib/elc_naviframe.c index b586583..7044e46 100644 --- a/src/lib/elc_naviframe.c +++ b/src/lib/elc_naviframe.c @@ -51,15 +51,9 @@ static const char *widtype = NULL; static const char SIG_TRANSITION_FINISHED[] = "transition,finished"; static const char SIG_TITLE_CLICKED[] = "title,clicked"; -//widget item signals -static const char SIG_ITEM_SHOW_BEGIN[] = "show,begin"; -static const char SIG_ITEM_HIDE_FINISHED[] = "hide,finished"; - static const Evas_Smart_Cb_Description _signals[] = { {SIG_TRANSITION_FINISHED, ""}, {SIG_TITLE_CLICKED, ""}, - {SIG_ITEM_SHOW_BEGIN, ""}, - {SIG_ITEM_HIDE_FINISHED, ""}, {NULL, NULL} }; @@ -870,10 +864,6 @@ _pushed_finished(void *data, evas_object_hide(VIEW(it)); if (wd->freeze_events) evas_object_freeze_events_set(VIEW(it), EINA_FALSE); - - elm_widget_item_smart_callback_call(it, - SIG_ITEM_HIDE_FINISHED, - NULL); } static void @@ -1257,9 +1247,6 @@ elm_naviframe_item_pop(Evas_Object *obj) "elm"); edje_object_message_signal_process(elm_layout_edje_get(VIEW(it))); edje_object_message_signal_process(elm_layout_edje_get(VIEW(prev_it))); - elm_widget_item_smart_callback_call(prev_it, - SIG_ITEM_SHOW_BEGIN, - NULL); } else { diff --git a/src/lib/elc_naviframe.h b/src/lib/elc_naviframe.h index d43d209..6c48c0a 100644 --- a/src/lib/elc_naviframe.h +++ b/src/lib/elc_naviframe.h @@ -31,11 +31,6 @@ * item * @li "title,clicked" - User clicked title area * - * Item Signals that you can add callbacks for are: - * @li "show,begin" - When the item is started to be top item. - * @li "hide,finished" - When a new top item is finished to push onto the - * item. - * * Default content parts of the naviframe items that you can use content hooks * for are: * @li "default" - The main content of the page