From a93b775cb682cc5710e0a17e1453db9676954652 Mon Sep 17 00:00:00 2001 From: Hyoyoung Chang Date: Fri, 24 Sep 2010 12:01:50 +0900 Subject: [PATCH] [entry] adding item clicked cmd for cbhm --- src/modules/ctxpopup_copypasteUI/copypaste.c | 7 +++++++ src/modules/popup_copypasteUI/copypaste.c | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/src/modules/ctxpopup_copypasteUI/copypaste.c b/src/modules/ctxpopup_copypasteUI/copypaste.c index 68189e0..4bdfff3 100644 --- a/src/modules/ctxpopup_copypasteUI/copypaste.c +++ b/src/modules/ctxpopup_copypasteUI/copypaste.c @@ -71,6 +71,13 @@ _item_clicked(void *data, Evas_Object *obj, void *event_info) Evas_Object *obj2 = it->obj; if (it->func) it->func(it->data, obj2, NULL); + // start for cbhm + if (!strcmp(it->label, "Menu")) + { + elm_cbhm_helper_init(obj); + elm_cbhm_send_raw_data("show"); + } + // end for cbhm evas_object_hide(obj); } diff --git a/src/modules/popup_copypasteUI/copypaste.c b/src/modules/popup_copypasteUI/copypaste.c index 745efab..1f128b5 100644 --- a/src/modules/popup_copypasteUI/copypaste.c +++ b/src/modules/popup_copypasteUI/copypaste.c @@ -46,6 +46,13 @@ _item_clicked(void *data, Evas_Object *obj, void *event_info) Evas_Object *obj2 = it->obj; if (it->func) it->func(it->data, obj2, NULL); + // start for cbhm + if (!strcmp(it->label, "Menu")) + { + elm_cbhm_helper_init(obj); + elm_cbhm_send_raw_data("show"); + } + // end for cbhm evas_object_hide(ext_mod->popup); } -- 2.7.4