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);
34 _entry_move(void *data, Evas *e, Evas_Object *obj, void *event_info)
36 if (evas_pointer_button_down_mask_get(e))
37 _ctxpopup_hide(ext_mod->popup);
39 _ctxpopup_position(data);
43 _ctxpopup_hide(Evas_Object *popup)
45 evas_object_hide(popup);
46 evas_object_event_callback_del(ext_mod->caller, EVAS_CALLBACK_MOVE, _entry_move);
47 ext_mod->caller = NULL;
51 _ctxpopup_position(Evas_Object *obj)
55 Evas_Coord cx, cy, cw, ch, x, y, w, h;
56 if (!edje_object_part_text_selection_geometry_get(ext_mod->ent, "elm.text", &x, &y, &w, &h))
58 evas_object_geometry_get(ext_mod->ent, &x, &y, NULL, NULL);
59 edje_object_part_text_cursor_geometry_get(ext_mod->ent, "elm.text",
61 evas_object_size_hint_min_get(ext_mod->popup, &w, &h);
72 evas_object_move(ext_mod->popup, x + cx, y + cy);
73 evas_object_resize(ext_mod->popup, cw, ch);
77 if (ext_mod->viewport_rect.x != -1 || ext_mod->viewport_rect.y != -1
78 || ext_mod->viewport_rect.w != -1 || ext_mod->viewport_rect.h != -1)
80 Evas_Coord vx, vy, vw, vh, x2, y2;
83 vx = ext_mod->viewport_rect.x;
84 vy = ext_mod->viewport_rect.y;
85 vw = ext_mod->viewport_rect.w;
86 vh = ext_mod->viewport_rect.h;
90 if (x2 > vx + vw) x2 = vx + vw;
91 if (y2 > vy + vh) y2 = vy + vh;
97 Evas_Coord sw, sh, x2, y2;
100 ecore_x_window_size_get(ecore_x_window_root_first_get(), &sw, &sh);
104 if (x2 > sw) x2 = sw;
105 if (y2 > sh) y2 = sh;
111 evas_object_move(ext_mod->popup, cx, cy);
116 _select_all(void *data, Evas_Object *obj, void *event_info)
120 ext_mod->selectall(data,obj,event_info);
125 _select(void *data, Evas_Object *obj, void *event_info)
129 ext_mod->select(data,obj,event_info);
134 _paste(void *data, Evas_Object *obj, void *event_info)
138 ext_mod->paste(data,obj,event_info);
143 _cut(void *data, Evas_Object *obj, void *event_info)
147 ext_mod->cut(data,obj,event_info);
149 elm_object_scroll_freeze_pop(ext_mod->popup);
153 _copy(void *data, Evas_Object *obj, void *event_info)
157 ext_mod->copy(data,obj,event_info);
159 elm_object_scroll_freeze_pop(ext_mod->popup);
163 _cancel(void *data, Evas_Object *obj, void *event_info)
167 ext_mod->cancel(data,obj,event_info);
169 elm_object_scroll_freeze_pop(ext_mod->popup);
173 _search_menu(void *data, Evas_Object *obj, void *event_info)
178 bundle *b = bundle_create();
181 //printf("bundle_create() failed\n");
185 appsvc_set_operation(b, APPSVC_OPERATION_SEARCH);
186 if (ext_mod->selmode)
188 char *selection = elm_entry_selection_get(ext_mod->caller);
190 appsvc_add_data(b, APPSVC_DATA_KEYWORD, selection);
192 appsvc_run_service(b, 0, NULL, NULL);
198 _clipboard_menu(void *data, Evas_Object *obj, void *event_info)
203 #ifdef HAVE_ELEMENTARY_X
204 ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
206 ext_mod->cnpinit(data,obj,event_info);
207 if (ext_mod->cnp_mode != ELM_CNP_MODE_MARKUP)
208 _cbhm_msg_send(obj, "show0");
210 _cbhm_msg_send(obj, "show1");
216 _item_clicked(void *data, Evas_Object *obj, void *event_info)
218 Elm_Entry_Context_Menu_Item *it = data;
219 Evas_Object *obj2 = it->obj;
221 if (it->func) it->func(it->data, obj2, NULL);
226 _ctxpopup_dismissed_cb(void *data, Evas_Object *o __UNUSED__, void *event_info __UNUSED__)
228 if (!ext_mod) return;
230 elm_object_scroll_freeze_pop(ext_mod->popup);
233 // module api funcs needed
235 elm_modapi_init(void *m)
237 return 1; // succeed always
241 elm_modapi_shutdown(void *m)
243 return 1; // succeed always
246 // module funcs for the specific module type
248 obj_hook(Evas_Object *obj)
251 //if(_mod_hook_count > 1) return;
255 ext_mod = ELM_NEW(Elm_Entry_Extension_data);
256 elm_entry_extension_module_data_get(obj,ext_mod);
261 obj_unhook(Evas_Object *obj)
264 if(_mod_hook_count > 0) return;
274 obj_longpress(Evas_Object *obj)
280 const Elm_Entry_Context_Menu_Item *it;
281 const char *context_menu_orientation;
284 Elm_Object_Item *added_item = NULL;
287 elm_entry_extension_module_data_get(obj,ext_mod);
288 if (ext_mod->context_menu)
290 #ifdef HAVE_ELEMENTARY_X
291 int cbhm_count = _cbhm_item_count_get(obj);
293 if (ext_mod->popup) evas_object_del(ext_mod->popup);
294 //else elm_widget_scroll_freeze_push(obj);
295 top = elm_widget_top_get(obj);
298 ext_mod->popup = elm_ctxpopup_add(top);
299 elm_object_tree_unfocusable_set(ext_mod->popup, EINA_TRUE);
300 evas_object_smart_callback_add(ext_mod->popup, "dismissed", _ctxpopup_dismissed_cb, NULL);
302 /*currently below theme not used,when guideline comes a new theme can be created if required*/
303 elm_object_style_set(ext_mod->popup,"extended/entry");
304 context_menu_orientation = edje_object_data_get
305 (ext_mod->ent, "context_menu_orientation");
306 if ((context_menu_orientation) &&
307 (!strcmp(context_menu_orientation, "horizontal")))
308 elm_ctxpopup_horizontal_set(ext_mod->popup, EINA_TRUE);
310 elm_widget_sub_object_add(obj, ext_mod->popup);
311 if (!ext_mod->selmode)
313 if (!ext_mod->password)
315 if (!elm_entry_is_empty(obj))
317 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT, NULL, _select, obj );
318 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT_ALL, NULL, _select_all, obj );
322 #ifdef HAVE_ELEMENTARY_X
325 if (1) // need way to detect if someone has a selection
328 if (ext_mod->editable)
329 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_PASTE, NULL, _paste, obj );
331 //elm_ctxpopup_item_append(wd->ctxpopup, NULL, "Selectall",_select_all, obj );
333 #ifdef HAVE_ELEMENTARY_X
334 if ((!ext_mod->password) && (ext_mod->editable) && (cbhm_count))
336 if ((!ext_mod->password) && (ext_mod->editable))
339 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_CLIPBOARD, NULL, _clipboard_menu, obj); // Clipboard
340 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
343 icon = elm_icon_add(ext_mod->popup);
344 snprintf(buf, sizeof(buf), "%s/images/copy&paste_icon_search.png", PACKAGE_DATA_DIR);
345 elm_icon_file_set(icon, buf, NULL);
346 added_item = elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _search_menu, obj); // Search
350 if (!ext_mod->password)
352 if (ext_mod->have_selection)
354 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_COPY, NULL, _copy, obj );
355 if (ext_mod->editable)
356 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_CUT, NULL, _cut, obj );
357 #ifdef HAVE_ELEMENTARY_X
358 if (ext_mod->editable && cbhm_count)
360 if (ext_mod->editable)
362 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_PASTE, NULL, _paste, obj );
366 _cancel(obj,ext_mod->popup,NULL);
367 if (!elm_entry_is_empty(obj))
369 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT, NULL, _select, obj );
370 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_SELECT_ALL, NULL, _select_all, obj );
372 #ifdef HAVE_ELEMENTARY_X
375 if (1) // need way to detect if someone has a selection
378 if (ext_mod->editable)
379 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_PASTE, NULL, _paste, obj );
383 #ifdef HAVE_ELEMENTARY_X
384 if (ext_mod->editable && cbhm_count)
386 if (ext_mod->editable)
389 added_item = elm_ctxpopup_item_append(ext_mod->popup, S_CLIPBOARD, NULL, _clipboard_menu, obj); // Clipboard
390 //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
393 icon = elm_icon_add(ext_mod->popup);
394 snprintf(buf, sizeof(buf), "%s/images/copy&paste_icon_search.png", PACKAGE_DATA_DIR);
395 elm_icon_file_set(icon, buf, NULL);
396 added_item = elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _search_menu, obj); // Search
399 EINA_LIST_FOREACH(ext_mod->items, l, it)
401 added_item = elm_ctxpopup_item_append(ext_mod->popup, it->label, NULL, _item_clicked, it );
403 if (ext_mod->popup && added_item)
405 elm_object_scroll_freeze_push(ext_mod->popup);
406 _ctxpopup_position(obj);
407 evas_object_show(ext_mod->popup);
408 ext_mod->caller = obj;
409 evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE, _entry_move, ext_mod->popup);
412 ext_mod->caller = NULL;
417 obj_mouseup(Evas_Object *obj)
419 if (!obj || !ext_mod)
425 obj_hidemenu(Evas_Object *obj)
427 if (!obj || !ext_mod || obj != ext_mod->caller)
430 _ctxpopup_hide(ext_mod->popup);
431 // if (ext_mod->popup) evas_object_del(ext_mod->popup);