1 #include <Elementary.h>
2 #include "elm_module_priv.h"
4 #include <appsvc/appsvc.h>
5 #include "cbhm_helper.h"
7 #define MULTI_(id) dgettext("sys_string", #id)
8 #define S_SELECT MULTI_(IDS_COM_SK_SELECT)
9 #define S_SELECT_ALL MULTI_(IDS_COM_BODY_SELECT_ALL)
10 #define S_COPY MULTI_(IDS_COM_BODY_COPY)
11 #define S_CUT MULTI_(IDS_COM_BODY_CUT)
12 #define S_PASTE MULTI_(IDS_COM_BODY_PASTE)
13 #define S_CLIPBOARD MULTI_(IDS_COM_BODY_CLIPBOARD)
16 Elm_Entry_Extension_data *ext_mod;
17 static int _mod_hook_count = 0;
19 typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
20 struct _Elm_Entry_Context_Menu_Item
24 const char *icon_file;
25 const char *icon_group;
26 Elm_Icon_Type icon_type;
31 static void _ctxpopup_hide(Evas_Object *popup);
32 static void _ctxpopup_position(Evas_Object *obj);
35 _remove_tags(const char *str)
41 Eina_Strbuf *buf = eina_strbuf_new();
45 if (!eina_strbuf_append(buf, str))
48 eina_strbuf_replace_all(buf, "<br>", " ");
49 eina_strbuf_replace_all(buf, "<br/>", " ");
50 eina_strbuf_replace_all(buf, "<ps>", " ");
51 eina_strbuf_replace_all(buf, "<ps/>", " ");
55 const char *temp = eina_strbuf_string_get(buf);
57 char *startTag = NULL;
60 startTag = strstr(temp, "<");
62 endTag = strstr(startTag, ">");
65 if (!endTag || startTag > endTag)
68 size_t sindex = startTag - temp;
69 size_t eindex = endTag - temp + 1;
70 if (!eina_strbuf_remove(buf, sindex, eindex))
73 ret = eina_strbuf_string_steal(buf);
74 eina_strbuf_free(buf);
79 _entry_del_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
81 evas_object_del(data);
85 _entry_hide_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
87 evas_object_hide(data);
91 _entry_move_cb(void *data, Evas *e, Evas_Object *obj, void *event_info __UNUSED__)
93 if (evas_pointer_button_down_mask_get(e))
98 elm_entry_extension_module_data_get(obj, ext_mod);
99 _ctxpopup_position(data);
104 _entry_resize_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
106 _ctxpopup_hide(data);
110 _ctxpopup_hide(Evas_Object *popup)
112 evas_object_hide(popup);
113 evas_object_event_callback_del(ext_mod->caller, EVAS_CALLBACK_DEL, _entry_del_cb);
114 evas_object_event_callback_del(ext_mod->caller, EVAS_CALLBACK_HIDE, _entry_hide_cb);
115 evas_object_event_callback_del(ext_mod->caller, EVAS_CALLBACK_MOVE, _entry_move_cb);
116 evas_object_event_callback_del(ext_mod->caller, EVAS_CALLBACK_RESIZE, _entry_resize_cb);
120 _ctxpopup_position(Evas_Object *obj)
124 Evas_Coord cx, cy, cw, ch, x, y, w, h;
125 elm_ctxpopup_direction_priority_set(ext_mod->popup, ELM_CTXPOPUP_DIRECTION_UP, ELM_CTXPOPUP_DIRECTION_DOWN, ELM_CTXPOPUP_DIRECTION_LEFT, ELM_CTXPOPUP_DIRECTION_RIGHT);
126 if (!edje_object_part_text_selection_geometry_get(ext_mod->ent, "elm.text", &x, &y, &w, &h))
128 evas_object_geometry_get(ext_mod->ent, &x, &y, NULL, NULL);
129 edje_object_part_text_cursor_geometry_get(ext_mod->ent, "elm.text",
131 evas_object_size_hint_min_get(ext_mod->popup, &w, &h);
142 evas_object_move(ext_mod->popup, x + cx, y + cy);
143 evas_object_resize(ext_mod->popup, cw, ch);
147 if (ext_mod->viewport_rect.x != -1 || ext_mod->viewport_rect.y != -1
148 || ext_mod->viewport_rect.w != -1 || ext_mod->viewport_rect.h != -1)
150 Evas_Coord vx, vy, vw, vh, x2, y2;
153 vx = ext_mod->viewport_rect.x;
154 vy = ext_mod->viewport_rect.y;
155 vw = ext_mod->viewport_rect.w;
156 vh = ext_mod->viewport_rect.h;
160 if (x2 > vx + vw) x2 = vx + vw;
161 if (y2 > vy + vh) y2 = vy + vh;
167 Evas_Coord sw, sh, x2, y2;
170 ecore_x_window_size_get(ecore_x_window_root_first_get(), &sw, &sh);
174 if (x2 > sw) x2 = sw;
175 if (y2 > sh) y2 = sh;
181 Elm_Ctxpopup_Direction dir = elm_ctxpopup_direction_get(ext_mod->popup);
182 if (dir != ELM_CTXPOPUP_DIRECTION_UNKNOWN)
184 if (dir == ELM_CTXPOPUP_DIRECTION_UP)
186 else if (dir == ELM_CTXPOPUP_DIRECTION_DOWN)
188 elm_ctxpopup_direction_priority_set(ext_mod->popup, ELM_CTXPOPUP_DIRECTION_DOWN, ELM_CTXPOPUP_DIRECTION_UP, ELM_CTXPOPUP_DIRECTION_LEFT, ELM_CTXPOPUP_DIRECTION_RIGHT);
192 evas_object_move(ext_mod->popup, cx, cy);
197 _select_all(void *data, Evas_Object *obj, void *event_info)
201 ext_mod->selectall(data,obj,event_info);
206 _select(void *data, Evas_Object *obj, void *event_info)
210 ext_mod->select(data,obj,event_info);
215 _paste(void *data, Evas_Object *obj, void *event_info)
219 ext_mod->paste(data,obj,event_info);
224 _cut(void *data, Evas_Object *obj, void *event_info)
228 ext_mod->cut(data,obj,event_info);
230 //elm_object_scroll_freeze_pop(ext_mod->popup);
234 _copy(void *data, Evas_Object *obj, void *event_info)
238 ext_mod->copy(data,obj,event_info);
240 //elm_object_scroll_freeze_pop(ext_mod->popup);
244 _cancel(void *data, Evas_Object *obj, void *event_info)
248 ext_mod->cancel(data,obj,event_info);
250 //elm_object_scroll_freeze_pop(ext_mod->popup);
254 _search_menu(void *data, Evas_Object *obj, void *event_info)
259 bundle *b = bundle_create();
262 //printf("bundle_create() failed\n");
266 appsvc_set_operation(b, APPSVC_OPERATION_SEARCH);
267 if (ext_mod->selmode)
269 const char *selection = elm_entry_selection_get(ext_mod->caller);
272 char *str = _remove_tags(selection);
275 appsvc_add_data(b, APPSVC_DATA_KEYWORD, str);
279 appsvc_add_data(b, APPSVC_DATA_KEYWORD, selection);
282 appsvc_run_service(b, 0, NULL, NULL);
288 _clipboard_menu(void *data, Evas_Object *obj, void *event_info)
293 #ifdef HAVE_ELEMENTARY_X
294 ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
296 ext_mod->cnpinit(data,obj,event_info);
297 if (ext_mod->cnp_mode != ELM_CNP_MODE_MARKUP)
298 _cbhm_msg_send(obj, "show0");
300 _cbhm_msg_send(obj, "show1");
306 _item_clicked(void *data, Evas_Object *obj, void *event_info)
308 Elm_Entry_Context_Menu_Item *it = data;
309 Evas_Object *obj2 = it->obj;
311 if (it->func) it->func(it->data, obj2, NULL);
316 _ctxpopup_dismissed_cb(void *data, Evas_Object *o __UNUSED__, void *event_info __UNUSED__)
318 if (!ext_mod) return;
320 //elm_object_scroll_freeze_pop(ext_mod->popup);
323 // module api funcs needed
325 elm_modapi_init(void *m)
327 return 1; // succeed always
331 elm_modapi_shutdown(void *m)
333 return 1; // succeed always
336 // module funcs for the specific module type
338 obj_hook(Evas_Object *obj)
341 //if(_mod_hook_count > 1) return;
345 ext_mod = ELM_NEW(Elm_Entry_Extension_data);
346 elm_entry_extension_module_data_get(obj,ext_mod);
351 obj_unhook(Evas_Object *obj)
354 if(_mod_hook_count > 0) return;
364 obj_longpress(Evas_Object *obj)
370 const Elm_Entry_Context_Menu_Item *it;
371 const char *context_menu_orientation;
374 Elm_Object_Item *added_item = NULL;
377 elm_entry_extension_module_data_get(obj,ext_mod);
378 if (ext_mod->context_menu)
380 #ifdef HAVE_ELEMENTARY_X
381 int cbhm_count = _cbhm_item_count_get(obj);
383 if (ext_mod->popup) evas_object_del(ext_mod->popup);
384 //else elm_widget_scroll_freeze_push(obj);
385 top = elm_widget_top_get(obj);
388 ext_mod->popup = elm_ctxpopup_add(top);
389 elm_object_tree_focus_allow_set(ext_mod->popup, EINA_FALSE);
390 evas_object_smart_callback_add(ext_mod->popup, "dismissed", _ctxpopup_dismissed_cb, NULL);
391 evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL, _entry_del_cb, ext_mod->popup);
392 evas_object_event_callback_add(obj, EVAS_CALLBACK_HIDE, _entry_hide_cb, ext_mod->popup);
394 /*currently below theme not used,when guideline comes a new theme can be created if required*/
395 //elm_object_style_set(ext_mod->popup,"extended/entry");
396 context_menu_orientation = edje_object_data_get
397 (ext_mod->ent, "context_menu_orientation");
398 if ((context_menu_orientation) &&
399 (!strcmp(context_menu_orientation, "horizontal")))
400 elm_ctxpopup_horizontal_set(ext_mod->popup, EINA_TRUE);
402 if (!ext_mod->selmode)
404 if (!ext_mod->password)
406 if (!elm_entry_is_empty(obj))
408 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT, NULL, _select, obj );
409 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT_ALL, NULL, _select_all, obj );
413 #ifdef HAVE_ELEMENTARY_X
416 if (1) // need way to detect if someone has a selection
419 if (ext_mod->editable)
420 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_PASTE, NULL, _paste, obj );
422 //elm_ctxpopup_item_append(wd->ctxpopup, NULL, "Selectall",_select_all, obj );
424 #ifdef HAVE_ELEMENTARY_X
425 if ((!ext_mod->password) && (ext_mod->editable) && (cbhm_count))
427 if ((!ext_mod->password) && (ext_mod->editable))
430 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_CLIPBOARD, NULL, _clipboard_menu, obj); // Clipboard
431 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
435 const char *entry_str;
437 entry_str = edje_object_part_text_get(ext_mod->ent, "elm.text");
438 str = _remove_tags(entry_str);
439 if (strcmp(str, "") != 0)
441 icon = elm_icon_add(ext_mod->popup);
442 snprintf(buf, sizeof(buf), "%s/images/copy&paste_icon_search.png", PACKAGE_DATA_DIR);
443 elm_icon_file_set(icon, buf, NULL);
444 added_item = elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _search_menu, obj); // Search
449 if (!ext_mod->password)
451 if (ext_mod->have_selection)
453 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_COPY, NULL, _copy, obj );
454 if (ext_mod->editable)
455 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_CUT, NULL, _cut, obj );
456 #ifdef HAVE_ELEMENTARY_X
457 if (ext_mod->editable && cbhm_count)
459 if (ext_mod->editable)
461 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_PASTE, NULL, _paste, obj );
465 _cancel(obj,ext_mod->popup,NULL);
466 if (!elm_entry_is_empty(obj))
468 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT, NULL, _select, obj );
469 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT_ALL, NULL, _select_all, obj );
471 #ifdef HAVE_ELEMENTARY_X
474 if (1) // need way to detect if someone has a selection
477 if (ext_mod->editable)
478 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_PASTE, NULL, _paste, obj );
482 #ifdef HAVE_ELEMENTARY_X
483 if (ext_mod->editable && cbhm_count)
485 if (ext_mod->editable)
488 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_CLIPBOARD, NULL, _clipboard_menu, obj); // Clipboard
489 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
493 const char *entry_str;
495 entry_str = edje_object_part_text_get(ext_mod->ent, "elm.text");
496 str = _remove_tags(entry_str);
497 if (strcmp(str, "") != 0)
499 icon = elm_icon_add(ext_mod->popup);
500 snprintf(buf, sizeof(buf), "%s/images/copy&paste_icon_search.png", PACKAGE_DATA_DIR);
501 elm_icon_file_set(icon, buf, NULL);
502 added_item = elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _search_menu, obj); // Search
506 EINA_LIST_FOREACH(ext_mod->items, l, it)
508 added_item = elm_ctxpopup_item_append(ext_mod->popup, it->label, NULL, _item_clicked, it );
510 if (ext_mod->popup && added_item)
512 //elm_object_scroll_freeze_push(ext_mod->popup);
513 _ctxpopup_position(obj);
514 evas_object_show(ext_mod->popup);
515 _ctxpopup_position(obj);
516 ext_mod->caller = obj;
517 evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE, _entry_move_cb, ext_mod->popup);
518 evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _entry_resize_cb, ext_mod->popup);
521 ext_mod->caller = NULL;
526 obj_mouseup(Evas_Object *obj)
528 if (!obj || !ext_mod)
534 obj_hidemenu(Evas_Object *obj)
536 if (!obj || !ext_mod || obj != ext_mod->caller)
539 _ctxpopup_hide(ext_mod->popup);
540 // if (ext_mod->popup) evas_object_del(ext_mod->popup);