[entry]: modules addition
authorshilpa <shilpa.singh@samsung.com>
Thu, 27 May 2010 05:34:11 +0000 (14:34 +0900)
committershilpa <shilpa.singh@samsung.com>
Thu, 27 May 2010 05:34:11 +0000 (14:34 +0900)
configure.ac [changed mode: 0644->0755]
src/modules/ctxpopup_copypasteUI/Makefile.am [new file with mode: 0755]
src/modules/ctxpopup_copypasteUI/copypaste.c [new file with mode: 0755]
src/modules/popup_copypasteUI/Makefile.am [new file with mode: 0755]
src/modules/popup_copypasteUI/copypaste.c [new file with mode: 0755]

old mode 100644 (file)
new mode 100755 (executable)
index 253742a..a8a6e24
@@ -457,6 +457,8 @@ src/lib/Elementary.h
 src/bin/Makefile
 src/modules/Makefile
 src/modules/test_entry/Makefile
+src/modules/ctxpopup_copypasteUI/Makefile
+src/modules/popup_copypasteUI/Makefile
 src/edje_externals/Makefile
 data/Makefile
 data/themes/Makefile
diff --git a/src/modules/ctxpopup_copypasteUI/Makefile.am b/src/modules/ctxpopup_copypasteUI/Makefile.am
new file mode 100755 (executable)
index 0000000..3e42fc5
--- /dev/null
@@ -0,0 +1,31 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I. \
+-I$(top_builddir) \
+-I$(top_srcdir) \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
+-DPACKAGE_LIB_DIR=\"$(libdir)\" \
+@ELEMENTARY_CFLAGS@ \
+@ELEMENTARY_X_CFLAGS@ \
+@ELEMENTARY_FB_CFLAGS@ \
+@ELEMENTARY_WIN32_CFLAGS@ \
+@ELEMENTARY_WINCE_CFLAGS@ \
+@ELEMENTARY_EDBUS_CFLAGS@ \
+@ELEMENTARY_EFREET_CFLAGS@
+
+if ELEMENTARY_WINDOWS_BUILD
+AM_CPPFLAGS += -DELEMENTARY_BUILD
+endif
+
+pkgdir = $(libdir)/elementary/modules/ctxpopup_copypasteUI/$(MODULE_ARCH)
+pkg_LTLIBRARIES = module.la
+
+module_la_SOURCES = copypaste.c
+
+module_la_LIBADD = $(top_builddir)/src/lib/libelementary.la
+module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version
+module_la_LIBTOOLFLAGS = --tag=disable-static
diff --git a/src/modules/ctxpopup_copypasteUI/copypaste.c b/src/modules/ctxpopup_copypasteUI/copypaste.c
new file mode 100755 (executable)
index 0000000..98aa49d
--- /dev/null
@@ -0,0 +1,296 @@
+#include <Elementary.h>
+#include "elm_priv.h"
+
+typedef struct _Mod_Api Mod_Api;
+typedef struct _Widget_Data Widget_Data;
+typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
+struct _Widget_Data
+{
+   Evas_Object *ent;
+   Evas_Object *popup;/*copy paste UI - elm_popup*/
+   Evas_Object *ctxpopup;/*copy paste UI - elm_ctxpopup*/
+   Evas_Object *hoversel;
+   Ecore_Job *deferred_recalc_job;
+   Ecore_Event_Handler *sel_notify_handler;
+   Ecore_Event_Handler *sel_clear_handler;
+   Ecore_Timer *longpress_timer;
+   const char *cut_sel;
+   const char *text;
+   Evas_Coord lastw;
+   Evas_Coord downx, downy;
+   Evas_Coord cx, cy, cw, ch;
+   Eina_List *items;
+   Eina_List *item_providers;
+   Mod_Api *api; // module api if supplied
+   int max_no_of_bytes;
+   Eina_Bool changed : 1;
+   Eina_Bool linewrap : 1;
+   Eina_Bool char_linewrap : 1;
+   Eina_Bool single_line : 1;
+   Eina_Bool password : 1;
+   Eina_Bool show_last_character : 1;
+   Eina_Bool editable : 1;
+   Eina_Bool selection_asked : 1;
+   Eina_Bool have_selection : 1;
+   Eina_Bool selmode : 1;
+   Eina_Bool deferred_cur : 1;
+   Eina_Bool disabled : 1;
+   Eina_Bool context_menu : 1;
+   Eina_Bool autoreturnkey : 1;
+};
+
+struct _Elm_Entry_Context_Menu_Item
+{
+   Evas_Object *obj;
+   const char *label;
+   const char *icon_file;
+   const char *icon_group;
+   Elm_Icon_Type icon_type;
+   Evas_Smart_Cb func;
+   void *data;
+};
+
+
+static void
+_store_selection(Evas_Object *obj)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   const char *sel = edje_object_part_text_selection_get(wd->ent, "elm.text");
+   if (!wd) return;
+   if (wd->cut_sel) eina_stringshare_del(wd->cut_sel);
+   wd->cut_sel = eina_stringshare_add(sel);
+}
+
+static void
+_ctxpopup_position(Evas_Object *obj)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Evas_Coord cx, cy, cw, ch, x, y, mw, mh;
+   if (!wd) return;
+   evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
+   edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
+                                            &cx, &cy, &cw, &ch);
+   evas_object_size_hint_min_get(wd->ctxpopup, &mw, &mh);
+   if (cw < mw)
+     {
+       cx += (cw - mw) / 2;
+       cw = mw;
+     }
+   if (ch < mh)
+     {
+       cy += (ch - mh) / 2;
+       ch = mh;
+     }
+   evas_object_move(wd->ctxpopup, x + cx, y + cy);
+   evas_object_resize(wd->ctxpopup, cw, ch);
+}
+
+static void
+_select(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   wd->selmode = EINA_TRUE;
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 1);
+   if (!wd->password)
+      edje_object_signal_emit(wd->ent, "elm,state,select,on", "elm");
+   elm_ctxpopup_scroller_disabled_set(obj, EINA_FALSE);
+   elm_widget_scroll_hold_push(data);
+   evas_object_hide(obj);
+}
+
+static void
+_paste(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+    if (!wd) return;
+   evas_object_smart_callback_call(data, "selection,paste", NULL);
+   if (wd->sel_notify_handler)
+     {
+#ifdef HAVE_ELEMENTARY_X
+       Evas_Object *top;
+
+       top = elm_widget_top_get(data);
+       if ((top) && (elm_win_xwindow_get(top)))
+         {
+            ecore_x_selection_primary_request
+              (elm_win_xwindow_get(top),
+               ECORE_X_SELECTION_TARGET_UTF8_STRING);
+            wd->selection_asked = EINA_TRUE;
+         }
+#endif
+     }  
+   elm_ctxpopup_scroller_disabled_set(obj, EINA_FALSE);
+   evas_object_hide(obj);
+}
+
+static void
+_cut(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   wd->selmode = EINA_FALSE;
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+   edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
+   elm_ctxpopup_scroller_disabled_set(obj, EINA_FALSE);
+   elm_widget_scroll_hold_pop(data);
+   _store_selection(data);
+   edje_object_part_text_insert(wd->ent, "elm.text", "");
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   evas_object_hide(obj);
+}
+
+static void
+_copy(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   if (!wd) return;
+   wd->selmode = EINA_FALSE;
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+   edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
+   elm_ctxpopup_scroller_disabled_set(obj, EINA_FALSE);
+   elm_widget_scroll_hold_pop(data);
+   _store_selection(data);
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   evas_object_hide(obj);
+}
+
+static void
+_cancel(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   if (!wd) return;
+   wd->selmode = EINA_FALSE;
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+   edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
+   elm_ctxpopup_scroller_disabled_set(obj, EINA_FALSE);
+   elm_widget_scroll_hold_pop(data);
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   evas_object_hide(obj);
+}
+
+static void
+_item_clicked(void *data, Evas_Object *obj, void *event_info)
+{
+   Elm_Entry_Context_Menu_Item *it = data;
+   Evas_Object *obj2 = it->obj;
+
+   if (it->func) it->func(it->data, obj2, NULL);
+}
+
+// module api funcs needed
+EAPI int
+elm_modapi_init(void *m)
+{
+   return 1; // succeed always
+}
+
+EAPI int
+elm_modapi_shutdown(void *m)
+{
+   return 1; // succeed always
+}
+
+// module fucns for the specific module type
+EAPI void
+obj_hook(Evas_Object *obj)
+{
+  
+}
+
+EAPI void
+obj_unhook(Evas_Object *obj)
+{
+   
+}
+
+EAPI void
+obj_longpress(Evas_Object *obj)
+{
+                       Widget_Data *wd = elm_widget_data_get(obj);
+                       Evas_Object *top;
+                       const Eina_List *l;
+                       const Elm_Entry_Context_Menu_Item *it;
+                       const char *context_menu_orientation;
+
+                       if (wd->ctxpopup) evas_object_del(wd->ctxpopup);
+                      else elm_widget_scroll_freeze_push(obj);
+                       top = elm_widget_top_get(obj);
+                       if(top)
+                               wd->ctxpopup = elm_ctxpopup_add(top);
+                       elm_object_style_set(wd->ctxpopup,"entry");
+                       elm_ctxpopup_scroller_disabled_set(wd->ctxpopup, EINA_TRUE);
+                       context_menu_orientation = edje_object_data_get
+                       (wd->ent, "context_menu_orientation");
+                       if ((context_menu_orientation) &&
+                       (!strcmp(context_menu_orientation, "horizontal")))
+                               elm_ctxpopup_horizontal_set(wd->ctxpopup, EINA_TRUE);
+
+                       elm_widget_sub_object_add(obj, wd->ctxpopup);
+                       if (!wd->selmode)
+                               {       
+                                       if (!wd->password)
+                                               elm_ctxpopup_label_add(wd->ctxpopup, "Select",_select, obj );
+                                       if (1) // need way to detect if someone has a selection
+                                               {
+                                                       if (wd->editable)
+                                                               elm_ctxpopup_label_add(wd->ctxpopup, "Paste",   _paste, obj );
+                                               }
+                       //              elm_ctxpopup_label_add(wd->ctxpopup, "Selectall",_select_all, obj );
+                               }
+                       else
+                               {
+                                         if (!wd->password)
+                                               {
+                                                       if (wd->have_selection)
+                                                               {
+                                                                       elm_ctxpopup_label_add(wd->ctxpopup, "Copy",_copy, obj );
+                                                                       if (wd->editable)
+                                                                               elm_ctxpopup_label_add(wd->ctxpopup, "Cut",_cut, obj );                                                 
+                                                               }
+                                                       else
+                                                               {
+                                                                       _cancel(obj,wd->ctxpopup,NULL);                                                 
+                                                                       if (1) // need way to detect if someone has a selection
+                                                                               {
+                                                                                       if (wd->editable)
+                                                                                               elm_ctxpopup_label_add(wd->ctxpopup, "Paste",   _paste, obj );
+                                                                               }
+                                                                       elm_ctxpopup_label_add(wd->ctxpopup, "Select",_select, obj );
+                                                               }
+                                               }
+                               }
+                               EINA_LIST_FOREACH(wd->items, l, it)
+                               {
+                                       elm_ctxpopup_label_add(wd->ctxpopup, it->label,_item_clicked, it );
+                               }
+                       if (wd->ctxpopup)
+                               {
+                                       _ctxpopup_position(obj);
+                                       evas_object_show(wd->ctxpopup);           
+                               }
+                       wd->longpress_timer = NULL;
+       }
+
+EAPI void
+obj_mouseup(Evas_Object *obj)
+{
+       Widget_Data *wd = elm_widget_data_get(obj);
+   if (wd->longpress_timer)
+     {         
+               ecore_timer_del(wd->longpress_timer);
+               wd->longpress_timer = NULL;
+               if (wd->have_selection )
+                       {                               
+                               _cancel(obj,wd->ctxpopup,NULL);
+                       }
+     }     
+   else
+   {
+               if (wd->have_selection )
+                       {
+                               obj_longpress( obj );
+                       }
+   }
+}
+
+
diff --git a/src/modules/popup_copypasteUI/Makefile.am b/src/modules/popup_copypasteUI/Makefile.am
new file mode 100755 (executable)
index 0000000..be5afef
--- /dev/null
@@ -0,0 +1,31 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I. \
+-I$(top_builddir) \
+-I$(top_srcdir) \
+-I$(top_srcdir)/src/lib \
+-I$(top_builddir)/src/lib \
+-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
+-DPACKAGE_LIB_DIR=\"$(libdir)\" \
+@ELEMENTARY_CFLAGS@ \
+@ELEMENTARY_X_CFLAGS@ \
+@ELEMENTARY_FB_CFLAGS@ \
+@ELEMENTARY_WIN32_CFLAGS@ \
+@ELEMENTARY_WINCE_CFLAGS@ \
+@ELEMENTARY_EDBUS_CFLAGS@ \
+@ELEMENTARY_EFREET_CFLAGS@
+
+if ELEMENTARY_WINDOWS_BUILD
+AM_CPPFLAGS += -DELEMENTARY_BUILD
+endif
+
+pkgdir = $(libdir)/elementary/modules/popup_copypasteUI/$(MODULE_ARCH)
+pkg_LTLIBRARIES = module.la
+
+module_la_SOURCES = copypaste.c
+
+module_la_LIBADD = $(top_builddir)/src/lib/libelementary.la
+module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version
+module_la_LIBTOOLFLAGS = --tag=disable-static
diff --git a/src/modules/popup_copypasteUI/copypaste.c b/src/modules/popup_copypasteUI/copypaste.c
new file mode 100755 (executable)
index 0000000..71b087e
--- /dev/null
@@ -0,0 +1,249 @@
+#include <Elementary.h>
+#include "elm_priv.h"
+
+typedef struct _Mod_Api Mod_Api;
+typedef struct _Widget_Data Widget_Data;
+typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
+struct _Widget_Data
+{
+   Evas_Object *ent;
+   Evas_Object *popup;/*copy paste UI - elm_popup*/
+   Evas_Object *ctxpopup;/*copy paste UI - elm_ctxpopup*/
+   Evas_Object *hoversel;
+   Ecore_Job *deferred_recalc_job;
+   Ecore_Event_Handler *sel_notify_handler;
+   Ecore_Event_Handler *sel_clear_handler;
+   Ecore_Timer *longpress_timer;
+   const char *cut_sel;
+   const char *text;
+   Evas_Coord lastw;
+   Evas_Coord downx, downy;
+   Evas_Coord cx, cy, cw, ch;
+   Eina_List *items;
+   Eina_List *item_providers;
+   Mod_Api *api; // module api if supplied
+   int max_no_of_bytes;
+   Eina_Bool changed : 1;
+   Eina_Bool linewrap : 1;
+   Eina_Bool char_linewrap : 1;
+   Eina_Bool single_line : 1;
+   Eina_Bool password : 1;
+   Eina_Bool show_last_character : 1;
+   Eina_Bool editable : 1;
+   Eina_Bool selection_asked : 1;
+   Eina_Bool have_selection : 1;
+   Eina_Bool selmode : 1;
+   Eina_Bool deferred_cur : 1;
+   Eina_Bool disabled : 1;
+   Eina_Bool context_menu : 1;
+   Eina_Bool autoreturnkey : 1;
+};
+
+struct _Elm_Entry_Context_Menu_Item
+{
+   Evas_Object *obj;
+   const char *label;
+   const char *icon_file;
+   const char *icon_group;
+   Elm_Icon_Type icon_type;
+   Evas_Smart_Cb func;
+   void *data;
+};
+
+
+static void
+_store_selection(Evas_Object *obj)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   const char *sel = edje_object_part_text_selection_get(wd->ent, "elm.text");
+   if (!wd) return;
+   if (wd->cut_sel) eina_stringshare_del(wd->cut_sel);
+   wd->cut_sel = eina_stringshare_add(sel);
+}
+
+static void
+_select(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   wd->selmode = EINA_TRUE;
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 1);
+   if (!wd->password)
+      edje_object_signal_emit(wd->ent, "elm,state,select,on", "elm");
+   elm_widget_scroll_hold_push(data);
+    evas_object_hide(wd->popup);
+}
+
+static void
+_paste(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+    if (!wd) return;
+   evas_object_smart_callback_call(data, "selection,paste", NULL);
+   if (wd->sel_notify_handler)
+     {
+#ifdef HAVE_ELEMENTARY_X
+       Evas_Object *top;
+
+       top = elm_widget_top_get(data);
+       if ((top) && (elm_win_xwindow_get(top)))
+         {
+            ecore_x_selection_primary_request
+              (elm_win_xwindow_get(top),
+               ECORE_X_SELECTION_TARGET_UTF8_STRING);
+            wd->selection_asked = EINA_TRUE;
+         }
+#endif
+     }  
+   evas_object_hide(wd->popup);
+}
+
+static void
+_cut(void *data, Evas_Object *obj, void *event_info)
+{      
+   Widget_Data *wd = elm_widget_data_get(data);
+   wd->selmode = EINA_FALSE;
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+   edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
+   elm_widget_scroll_hold_pop(data);
+   _store_selection(data);
+   edje_object_part_text_insert(wd->ent, "elm.text", "");
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   evas_object_hide(wd->popup);
+}
+
+static void
+_copy(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   if (!wd) return;
+   wd->selmode = EINA_FALSE;
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+   edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
+   elm_widget_scroll_hold_pop(data);
+   _store_selection(data);
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   evas_object_hide(wd->popup);
+}
+
+static void
+_cancel(void *data, Evas_Object *obj, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   if (!wd) return;
+   wd->selmode = EINA_FALSE;
+   edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+   edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
+   elm_widget_scroll_hold_pop(data);
+   edje_object_part_text_select_none(wd->ent, "elm.text");
+   evas_object_hide(wd->popup);
+}
+
+static void
+_item_clicked(void *data, Evas_Object *obj, void *event_info)
+{
+   Elm_Entry_Context_Menu_Item *it = data;
+   Evas_Object *obj2 = it->obj;
+
+   if (it->func) it->func(it->data, obj2, NULL);
+}
+
+// module api funcs needed
+EAPI int
+elm_modapi_init(void *m)
+{
+   return 1; // succeed always
+}
+
+EAPI int
+elm_modapi_shutdown(void *m)
+{
+   return 1; // succeed always
+}
+
+EAPI void
+obj_longpress(Evas_Object *obj)
+{
+                       Widget_Data *wd = elm_widget_data_get(obj);
+                       Evas_Object *top;
+                       const Eina_List *l;
+                       Evas_Object *list;
+                       const Elm_Entry_Context_Menu_Item *it;
+                       
+                       if (wd->popup) evas_object_del(wd->popup);
+                      else elm_widget_scroll_freeze_push(obj);
+                       top = elm_widget_top_get(obj);
+                       if(top)
+                               wd->popup = elm_popup_add(top);
+                       elm_object_style_set(wd->popup,"menustyle");
+                       elm_popup_set_mode(wd->popup, ELM_POPUP_TYPE_ALERT);
+                       elm_popup_title_label_set(wd->popup,"CopyPaste");
+                       list = elm_list_add(wd->popup);
+                       elm_object_style_set(list,"popup");
+                       elm_list_horizontal_mode_set(list, ELM_LIST_COMPRESS);
+                       elm_widget_sub_object_add(obj, wd->popup);
+                       if (!wd->selmode)
+                               {       
+                                       if (!wd->password)
+                                               elm_list_item_append(list, "Select", NULL, NULL,_select, obj);
+
+                                       if (1) // need way to detect if someone has a selection
+                                               {
+                                                       if (wd->editable)
+                                                               elm_list_item_append(list, "Paste", NULL, NULL,_paste, obj);
+
+                                               }
+                                               //elm_list_item_append(list, "Selectall", NULL, NULL,_select_all, data);
+                               }
+                       else
+                               {
+                                         if (!wd->password)
+                                               {
+                                                       if (wd->have_selection)
+                                                               {
+                                                                       elm_list_item_append(list, "Copy", NULL, NULL,_copy, obj);
+                                                                       if (wd->editable)
+                                                                               elm_list_item_append(list, "Cut", NULL, NULL,_cut, obj);
+                                                               }
+                                                       else
+                                                               {
+                                                                       _cancel(obj,wd->popup,NULL);                                                    
+                                                                       if (1) // need way to detect if someone has a selection
+                                                                               {
+                                                                                       if (wd->editable)
+                                                                                               elm_list_item_append(list, "Paste", NULL, NULL,_paste, obj);
+                                                                               }
+                                                                               elm_list_item_append(list, "Select", NULL, NULL,_select, obj);
+                                                               }
+                                               }
+                               }
+                               EINA_LIST_FOREACH(wd->items, l, it)
+                               {
+                                       elm_list_item_append(list, it->label, NULL, NULL,_item_clicked, it);
+                               }
+                       if (wd->popup)
+                               {
+                                       elm_list_go(list);
+                                       elm_popup_content_set(wd->popup, list);
+                                       evas_object_show(wd->popup);    
+                                       evas_render( evas_object_evas_get( wd->popup ) );
+                               }
+                       wd->longpress_timer = NULL;
+       }
+
+EAPI void
+obj_mouseup(Evas_Object *obj)
+{
+       Widget_Data *wd = elm_widget_data_get(obj);
+   if (wd->longpress_timer)
+     {         
+               ecore_timer_del(wd->longpress_timer);
+               wd->longpress_timer = NULL;
+               if (wd->have_selection )
+                       {                               
+                               _cancel(obj,wd->popup,NULL);
+                       }
+     }     
+}
+
+