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;
211 Elm_Object_Item *added_item = NULL;
214 elm_entry_extension_module_data_get(obj,ext_mod);
215 if (ext_mod->context_menu)
217 #ifdef HAVE_ELEMENTARY_X
219 if (elm_cbhm_helper_init(obj))
220 cbhm_count = elm_cbhm_get_count();
222 if (ext_mod->popup) evas_object_del(ext_mod->popup);
223 //else elm_widget_scroll_freeze_push(obj);
224 top = elm_widget_top_get(obj);
227 ext_mod->popup = elm_ctxpopup_add(top);
228 elm_object_tree_unfocusable_set(ext_mod->popup, EINA_TRUE);
229 evas_object_smart_callback_add(ext_mod->popup, "dismissed", _ctxpopup_dismissed_cb, NULL);
231 /*currently below theme not used,when guideline comes a new theme can be created if required*/
232 elm_object_style_set(ext_mod->popup,"extended/entry");
233 context_menu_orientation = edje_object_data_get
234 (ext_mod->ent, "context_menu_orientation");
235 if ((context_menu_orientation) &&
236 (!strcmp(context_menu_orientation, "horizontal")))
237 elm_ctxpopup_horizontal_set(ext_mod->popup, EINA_TRUE);
239 elm_widget_sub_object_add(obj, ext_mod->popup);
240 if (!ext_mod->selmode)
242 if (!ext_mod->password)
244 if (!elm_entry_is_empty(obj))
246 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Select", NULL, _select, obj );
247 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Select All", NULL, _select_all, obj );
251 #ifdef HAVE_ELEMENTARY_X
254 if (1) // need way to detect if someone has a selection
257 if (ext_mod->editable)
258 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
260 //elm_ctxpopup_item_append(wd->ctxpopup, NULL, "Selectall",_select_all, obj );
262 #ifdef HAVE_ELEMENTARY_X
263 if ((!ext_mod->password) && (ext_mod->editable) && (cbhm_count))
265 if ((!ext_mod->password) && (ext_mod->editable))
268 icon = elm_icon_add(ext_mod->popup);
269 snprintf(buf, sizeof(buf), "%s/images/copypaste_icon_clipboard.png", PACKAGE_DATA_DIR);
270 elm_icon_file_set(icon, buf, NULL);
271 added_item = elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _clipboard_menu, obj);
272 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
278 if (!ext_mod->password)
280 if (ext_mod->have_selection)
282 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Copy", NULL, _copy, obj );
283 if (ext_mod->editable)
284 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Cut", NULL, _cut, obj );
285 #ifdef HAVE_ELEMENTARY_X
286 if (ext_mod->editable && cbhm_count)
288 if (ext_mod->editable)
290 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
294 _cancel(obj,ext_mod->popup,NULL);
295 if (!elm_entry_is_empty(obj))
297 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Select", NULL, _select, obj );
298 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Select All", NULL, _select_all, obj );
300 #ifdef HAVE_ELEMENTARY_X
303 if (1) // need way to detect if someone has a selection
306 if (ext_mod->editable)
307 added_item = elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
311 #ifdef HAVE_ELEMENTARY_X
312 if (ext_mod->editable && cbhm_count)
314 if (ext_mod->editable)
317 icon = elm_icon_add(ext_mod->popup);
318 snprintf(buf, sizeof(buf), "%s/images/copypaste_icon_clipboard.png", PACKAGE_DATA_DIR);
319 elm_icon_file_set(icon, buf, NULL);
320 added_item = elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _clipboard_menu, obj);
321 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
326 EINA_LIST_FOREACH(ext_mod->items, l, it)
328 added_item = elm_ctxpopup_item_append(ext_mod->popup, it->label, NULL, _item_clicked, it );
330 if (ext_mod->popup && added_item)
332 elm_object_scroll_freeze_push(ext_mod->popup);
333 _ctxpopup_position(obj);
334 evas_object_show(ext_mod->popup);
340 obj_mouseup(Evas_Object *obj)
342 if (!obj || !ext_mod)
348 obj_hidemenu(Evas_Object *obj)
350 if (!obj || !ext_mod)
353 evas_object_hide(ext_mod->popup);
354 // if (ext_mod->popup) evas_object_del(ext_mod->popup);