1 #include <Elementary.h>
2 #include "elm_module_priv.h"
5 Elm_Entry_Extension_data *ext_mod;
6 static int _mod_hook_count = 0;
8 typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
9 struct _Elm_Entry_Context_Menu_Item
13 const char *icon_file;
14 const char *icon_group;
15 Elm_Icon_Type icon_type;
21 _ctxpopup_position(Evas_Object *obj)
25 Evas_Coord cx, cy, cw, ch, x, y, w, h;
26 if (!edje_object_part_text_selection_geometry_get(ext_mod->ent, "elm.text", &x, &y, &w, &h))
28 evas_object_geometry_get(ext_mod->ent, &x, &y, NULL, NULL);
29 edje_object_part_text_cursor_geometry_get(ext_mod->ent, "elm.text",
31 evas_object_size_hint_min_get(ext_mod->popup, &w, &h);
42 evas_object_move(ext_mod->popup, x + cx, y + cy);
43 evas_object_resize(ext_mod->popup, cw, ch);
47 if (ext_mod->viewport_obj)
49 Evas_Coord vx, vy, vw, vh, x2, y2;
52 evas_object_geometry_get(ext_mod->viewport_obj, &vx, &vy, &vw, &vh);
55 if (x2 > vx + vw) x2 = vx + vw;
56 if (y2 > vy + vh) y2 = vy + vh;
62 evas_object_move(ext_mod->popup, cx, cy);
67 _select_all(void *data, Evas_Object *obj, void *event_info)
71 ext_mod->selectall(data,obj,event_info);
72 evas_object_hide(obj);
76 _select(void *data, Evas_Object *obj, void *event_info)
80 ext_mod->select(data,obj,event_info);
81 evas_object_hide(obj);
85 _paste(void *data, Evas_Object *obj, void *event_info)
89 ext_mod->paste(data,obj,event_info);
90 evas_object_hide(obj);
94 _cut(void *data, Evas_Object *obj, void *event_info)
98 ext_mod->cut(data,obj,event_info);
99 evas_object_hide(obj);
100 elm_object_scroll_freeze_pop(ext_mod->popup);
104 _copy(void *data, Evas_Object *obj, void *event_info)
108 ext_mod->copy(data,obj,event_info);
109 evas_object_hide(obj);
110 elm_object_scroll_freeze_pop(ext_mod->popup);
114 _cancel(void *data, Evas_Object *obj, void *event_info)
118 ext_mod->cancel(data,obj,event_info);
119 evas_object_hide(obj);
120 elm_object_scroll_freeze_pop(ext_mod->popup);
124 _clipboard_menu(void *data, Evas_Object *obj, void *event_info)
129 #ifdef HAVE_ELEMENTARY_X
130 ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
132 ext_mod->cnpinit(data,obj,event_info);
133 elm_cbhm_helper_init(obj);
134 if (ext_mod->textonly)
135 elm_cbhm_send_raw_data("show0");
137 elm_cbhm_send_raw_data("show1");
138 evas_object_hide(obj);
143 _item_clicked(void *data, Evas_Object *obj, void *event_info)
145 Elm_Entry_Context_Menu_Item *it = data;
146 Evas_Object *obj2 = it->obj;
148 if (it->func) it->func(it->data, obj2, NULL);
149 evas_object_hide(obj);
153 _ctxpopup_dismissed_cb(void *data, Evas_Object *o __UNUSED__, void *event_info __UNUSED__)
155 if (!ext_mod) return;
157 elm_object_scroll_freeze_pop(ext_mod->popup);
160 // module api funcs needed
162 elm_modapi_init(void *m)
164 return 1; // succeed always
168 elm_modapi_shutdown(void *m)
170 return 1; // succeed always
173 // module funcs for the specific module type
175 obj_hook(Evas_Object *obj)
178 //if(_mod_hook_count > 1) return;
182 ext_mod = ELM_NEW(Elm_Entry_Extension_data);
183 elm_entry_extension_module_data_get(obj,ext_mod);
188 obj_unhook(Evas_Object *obj)
191 if(_mod_hook_count > 0) return;
201 obj_longpress(Evas_Object *obj)
207 const Elm_Entry_Context_Menu_Item *it;
208 const char *context_menu_orientation;
213 elm_entry_extension_module_data_get(obj,ext_mod);
214 if (ext_mod->context_menu)
216 if (ext_mod->popup) evas_object_del(ext_mod->popup);
217 //else elm_widget_scroll_freeze_push(obj);
218 top = elm_widget_top_get(obj);
221 ext_mod->popup = elm_ctxpopup_add(top);
222 elm_object_tree_unfocusable_set(ext_mod->popup, EINA_TRUE);
223 evas_object_smart_callback_add(ext_mod->popup, "dismissed", _ctxpopup_dismissed_cb, NULL);
225 /*currently below theme not used,when guideline comes a new theme can be created if required*/
226 elm_object_style_set(ext_mod->popup,"extended/entry");
227 context_menu_orientation = edje_object_data_get
228 (ext_mod->ent, "context_menu_orientation");
229 if ((context_menu_orientation) &&
230 (!strcmp(context_menu_orientation, "horizontal")))
231 elm_ctxpopup_horizontal_set(ext_mod->popup, EINA_TRUE);
233 elm_widget_sub_object_add(obj, ext_mod->popup);
234 if (!ext_mod->selmode)
236 if (!ext_mod->password)
238 if (!elm_entry_is_empty(obj))
240 elm_ctxpopup_item_append(ext_mod->popup, "Select", NULL, _select, obj );
241 elm_ctxpopup_item_append(ext_mod->popup, "Select All", NULL, _select_all, obj );
244 if (1) // need way to detect if someone has a selection
246 if (ext_mod->editable)
247 elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
249 //elm_ctxpopup_item_append(wd->ctxpopup, NULL, "Selectall",_select_all, obj );
251 if ((!ext_mod->password) && (ext_mod->editable))
253 icon = elm_icon_add(ext_mod->popup);
254 snprintf(buf, sizeof(buf), "%s/images/copypaste_icon_clipboard.png", PACKAGE_DATA_DIR);
255 elm_icon_file_set(icon, buf, NULL);
256 elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _clipboard_menu, obj);
257 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
263 if (!ext_mod->password)
265 if (ext_mod->have_selection)
267 elm_ctxpopup_item_append(ext_mod->popup, "Copy", NULL, _copy, obj );
268 if (ext_mod->editable)
269 elm_ctxpopup_item_append(ext_mod->popup, "Cut", NULL, _cut, obj );
270 if (ext_mod->editable)
271 elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
275 _cancel(obj,ext_mod->popup,NULL);
276 if (!elm_entry_is_empty(obj))
278 elm_ctxpopup_item_append(ext_mod->popup, "Select", NULL, _select, obj );
279 elm_ctxpopup_item_append(ext_mod->popup, "Select All", NULL, _select_all, obj );
281 if (1) // need way to detect if someone has a selection
283 if (ext_mod->editable)
284 elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
288 if (ext_mod->editable)
290 icon = elm_icon_add(ext_mod->popup);
291 snprintf(buf, sizeof(buf), "%s/images/copypaste_icon_clipboard.png", PACKAGE_DATA_DIR);
292 elm_icon_file_set(icon, buf, NULL);
293 elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _clipboard_menu, obj);
294 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
299 EINA_LIST_FOREACH(ext_mod->items, l, it)
301 elm_ctxpopup_item_append(ext_mod->popup, it->label, NULL, _item_clicked, it );
305 elm_object_scroll_freeze_push(ext_mod->popup);
306 _ctxpopup_position(obj);
307 evas_object_show(ext_mod->popup);
313 obj_mouseup(Evas_Object *obj)
315 if (!obj || !ext_mod)
321 obj_hidemenu(Evas_Object *obj)
323 if (!obj || !ext_mod)
326 evas_object_hide(ext_mod->popup);
327 // if (ext_mod->popup) evas_object_del(ext_mod->popup);