Merge "[Copy&paste module] hide CBHM menu when CBHM doesn't have any items"
[framework/uifw/elementary.git] / src / modules / ctxpopup_copypasteUI / copypaste.c
1 #include <Elementary.h>
2 #include "elm_module_priv.h"
3 #include "elm_priv.h"
4
5 Elm_Entry_Extension_data *ext_mod;
6 static int _mod_hook_count = 0;
7
8 typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
9 struct _Elm_Entry_Context_Menu_Item
10 {
11    Evas_Object *obj;
12    const char *label;
13    const char *icon_file;
14    const char *icon_group;
15    Elm_Icon_Type icon_type;
16    Evas_Smart_Cb func;
17    void *data;
18 };
19
20 static void
21 _ctxpopup_position(Evas_Object *obj)
22 {
23    if(!ext_mod) return;
24
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))
27      {
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",
30                                                   &cx, &cy, &cw, &ch);
31         evas_object_size_hint_min_get(ext_mod->popup, &w, &h);
32         if (cw < w)
33           {
34              cx += (cw - w) / 2;
35              cw = w;
36           }
37         if (ch < h)
38           {
39              cy += (ch - h) / 2;
40              ch = h;
41           }
42         evas_object_move(ext_mod->popup, x + cx, y + cy);
43         evas_object_resize(ext_mod->popup, cw, ch);
44      }
45    else
46      {
47         if (ext_mod->viewport_obj)
48           {
49              Evas_Coord vx, vy, vw, vh, x2, y2;
50              x2 = x + w;
51              y2 = y + h;
52              evas_object_geometry_get(ext_mod->viewport_obj, &vx, &vy, &vw, &vh);
53              if (x < vx) x = vx;
54              if (y < vy) y = vy;
55              if (x2 > vx + vw) x2 = vx + vw;
56              if (y2 > vy + vh) y2 = vy + vh;
57              w = x2 - x;
58              h = y2 - y;
59           }
60         cx = x + (w / 2);
61         cy = y + (h / 2);
62         evas_object_move(ext_mod->popup, cx, cy);
63      }
64 }
65
66 static void
67 _select_all(void *data, Evas_Object *obj, void *event_info)
68 {
69    if(!ext_mod) return;
70
71    ext_mod->selectall(data,obj,event_info);
72    evas_object_hide(obj);
73 }
74
75 static void
76 _select(void *data, Evas_Object *obj, void *event_info)
77 {
78    if(!ext_mod) return;
79
80    ext_mod->select(data,obj,event_info);
81    evas_object_hide(obj);
82 }
83
84 static void
85 _paste(void *data, Evas_Object *obj, void *event_info)
86 {
87    if(!ext_mod) return;
88
89    ext_mod->paste(data,obj,event_info);
90    evas_object_hide(obj);
91 }
92
93 static void
94 _cut(void *data, Evas_Object *obj, void *event_info)
95 {
96    if(!ext_mod) return;
97
98    ext_mod->cut(data,obj,event_info);
99    evas_object_hide(obj);
100    elm_object_scroll_freeze_pop(ext_mod->popup);
101 }
102
103 static void
104 _copy(void *data, Evas_Object *obj, void *event_info)
105 {
106    if(!ext_mod) return;
107
108    ext_mod->copy(data,obj,event_info);
109    evas_object_hide(obj);
110    elm_object_scroll_freeze_pop(ext_mod->popup);
111 }
112
113 static void
114 _cancel(void *data, Evas_Object *obj, void *event_info)
115 {
116    if(!ext_mod) return;
117
118    ext_mod->cancel(data,obj,event_info);
119    evas_object_hide(obj);
120    elm_object_scroll_freeze_pop(ext_mod->popup);
121 }
122
123 static void
124 _clipboard_menu(void *data, Evas_Object *obj, void *event_info)
125 {
126    if(!ext_mod) return;
127
128    // start for cbhm
129 #ifdef HAVE_ELEMENTARY_X
130    ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
131 #endif
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");
136    else
137      elm_cbhm_send_raw_data("show1");
138    evas_object_hide(obj);
139    // end for cbhm
140 }
141
142 static void
143 _item_clicked(void *data, Evas_Object *obj, void *event_info)
144 {
145    Elm_Entry_Context_Menu_Item *it = data;
146    Evas_Object *obj2 = it->obj;
147
148    if (it->func) it->func(it->data, obj2, NULL);
149    evas_object_hide(obj);
150 }
151
152 static void
153 _ctxpopup_dismissed_cb(void *data, Evas_Object *o __UNUSED__, void *event_info __UNUSED__)
154 {
155    if (!ext_mod) return;
156
157    elm_object_scroll_freeze_pop(ext_mod->popup);
158 }
159
160 // module api funcs needed
161 EAPI int
162 elm_modapi_init(void *m)
163 {
164    return 1; // succeed always
165 }
166
167 EAPI int
168 elm_modapi_shutdown(void *m)
169 {
170    return 1; // succeed always
171 }
172
173 // module funcs for the specific module type
174 EAPI void
175 obj_hook(Evas_Object *obj)
176 {
177    _mod_hook_count++;
178    //if(_mod_hook_count > 1) return;
179
180    if(!ext_mod)
181      {
182         ext_mod = ELM_NEW(Elm_Entry_Extension_data);
183         elm_entry_extension_module_data_get(obj,ext_mod);
184      }
185 }
186
187 EAPI void
188 obj_unhook(Evas_Object *obj)
189 {
190    _mod_hook_count--;
191    if(_mod_hook_count > 0) return;
192
193    if(ext_mod)
194      {
195         free(ext_mod);
196         ext_mod = NULL;
197      }
198 }
199
200 EAPI void
201 obj_longpress(Evas_Object *obj)
202 {
203    if(!ext_mod) return;
204
205    Evas_Object *top;
206    const Eina_List *l;
207    const Elm_Entry_Context_Menu_Item *it;
208    const char *context_menu_orientation;
209    char buf[255];
210    Evas_Object* icon;
211
212    /*update*/
213    elm_entry_extension_module_data_get(obj,ext_mod);
214    if (ext_mod->context_menu)
215      {
216 #ifdef HAVE_ELEMENTARY_X
217         int cbhm_count = -1;
218         if (elm_cbhm_helper_init(obj))
219           cbhm_count = elm_cbhm_get_count();
220 #endif
221         if (ext_mod->popup) evas_object_del(ext_mod->popup);
222         //else elm_widget_scroll_freeze_push(obj);
223         top = elm_widget_top_get(obj);
224         if(top)
225           {
226              ext_mod->popup = elm_ctxpopup_add(top);
227              elm_object_tree_unfocusable_set(ext_mod->popup, EINA_TRUE);
228              evas_object_smart_callback_add(ext_mod->popup, "dismissed", _ctxpopup_dismissed_cb, NULL);
229           }
230         /*currently below theme not used,when guideline comes a new theme can be created if required*/
231         elm_object_style_set(ext_mod->popup,"extended/entry");
232         context_menu_orientation = edje_object_data_get
233            (ext_mod->ent, "context_menu_orientation");
234         if ((context_menu_orientation) &&
235             (!strcmp(context_menu_orientation, "horizontal")))
236           elm_ctxpopup_horizontal_set(ext_mod->popup, EINA_TRUE);
237
238         elm_widget_sub_object_add(obj, ext_mod->popup);
239         if (!ext_mod->selmode)
240           {
241              if (!ext_mod->password)
242                {
243                   if (!elm_entry_is_empty(obj))
244                     {
245                        elm_ctxpopup_item_append(ext_mod->popup, "Select", NULL, _select, obj );
246                        elm_ctxpopup_item_append(ext_mod->popup, "Select All", NULL, _select_all, obj );
247                     }
248                }
249              if (1) // need way to detect if someone has a selection
250                {
251                   if (ext_mod->editable)
252                     elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
253                }
254              //elm_ctxpopup_item_append(wd->ctxpopup, NULL, "Selectall",_select_all, obj );
255              // start for cbhm
256 #ifdef HAVE_ELEMENTARY_X
257              if ((!ext_mod->password) && (ext_mod->editable) && (cbhm_count))
258 #else
259              if ((!ext_mod->password) && (ext_mod->editable))
260 #endif
261                {
262                   icon = elm_icon_add(ext_mod->popup);
263                   snprintf(buf, sizeof(buf), "%s/images/copypaste_icon_clipboard.png", PACKAGE_DATA_DIR);
264                   elm_icon_file_set(icon, buf, NULL);
265                   elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _clipboard_menu, obj);
266                   //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
267                }
268              // end for cbhm
269           }
270         else
271           {
272              if (!ext_mod->password)
273                {
274                   if (ext_mod->have_selection)
275                     {
276                        elm_ctxpopup_item_append(ext_mod->popup, "Copy", NULL, _copy, obj );
277                        if (ext_mod->editable)
278                          elm_ctxpopup_item_append(ext_mod->popup, "Cut", NULL, _cut, obj );
279                        if (ext_mod->editable)
280                          elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
281                     }
282                   else
283                     {
284                        _cancel(obj,ext_mod->popup,NULL);
285                        if (!elm_entry_is_empty(obj))
286                          {
287                             elm_ctxpopup_item_append(ext_mod->popup, "Select", NULL, _select, obj );
288                             elm_ctxpopup_item_append(ext_mod->popup, "Select All", NULL, _select_all, obj );
289                          }
290                        if (1) // need way to detect if someone has a selection
291                          {
292                             if (ext_mod->editable)
293                               elm_ctxpopup_item_append(ext_mod->popup, "Paste", NULL, _paste, obj );
294                          }
295                     }
296                   // start for cbhm
297 #ifdef HAVE_ELEMENTARY_X
298                   if (ext_mod->editable && cbhm_count)
299 #else
300                   if (ext_mod->editable)
301 #endif
302                     {
303                        icon = elm_icon_add(ext_mod->popup);
304                        snprintf(buf, sizeof(buf), "%s/images/copypaste_icon_clipboard.png", PACKAGE_DATA_DIR);
305                        elm_icon_file_set(icon, buf, NULL);
306                        elm_ctxpopup_item_append(ext_mod->popup, NULL, icon, _clipboard_menu, obj);
307                        //elm_ctxpopup_item_append(ext_mod->popup, "More", NULL, _clipboard_menu, obj );
308                     }
309                   // end for cbhm
310                }
311           }
312         EINA_LIST_FOREACH(ext_mod->items, l, it)
313           {
314              elm_ctxpopup_item_append(ext_mod->popup, it->label, NULL, _item_clicked, it );
315           }
316         if (ext_mod->popup)
317           {
318              elm_object_scroll_freeze_push(ext_mod->popup);
319              _ctxpopup_position(obj);
320              evas_object_show(ext_mod->popup);
321           }
322      }
323 }
324
325 EAPI void
326 obj_mouseup(Evas_Object *obj)
327 {
328    if (!obj || !ext_mod)
329      return;
330 }
331
332
333 EAPI void
334 obj_hidemenu(Evas_Object *obj)
335 {
336    if (!obj || !ext_mod)
337      return;
338
339    evas_object_hide(ext_mod->popup);
340    // if (ext_mod->popup) evas_object_del(ext_mod->popup);
341 }
342
343