[entry] adding textonly mode to modules
[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
7 typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
8 struct _Elm_Entry_Context_Menu_Item
9 {
10    Evas_Object *obj;
11    const char *label;
12    const char *icon_file;
13    const char *icon_group;
14    Elm_Icon_Type icon_type;
15    Evas_Smart_Cb func;
16    void *data;
17 };
18
19 static void
20 _ctxpopup_position(Evas_Object *obj)
21 {
22    Evas_Coord cx, cy, cw, ch, x, y, mw, mh;
23    evas_object_geometry_get(ext_mod->ent, &x, &y, NULL, NULL);
24    edje_object_part_text_cursor_geometry_get(ext_mod->ent, "elm.text",
25                                              &cx, &cy, &cw, &ch);
26    evas_object_size_hint_min_get(ext_mod->popup, &mw, &mh);
27    if (cw < mw)
28      {
29         cx += (cw - mw) / 2;
30         cw = mw;
31      }
32    if (ch < mh)
33      {
34         cy += (ch - mh) / 2;
35         ch = mh;
36      }
37    evas_object_move(ext_mod->popup, x + cx, y + cy);
38    evas_object_resize(ext_mod->popup, cw, ch);
39 }
40
41 static void
42 _select_all(void *data, Evas_Object *obj, void *event_info)
43 {
44    ext_mod->selectall(data,obj,event_info);
45    evas_object_hide(obj);
46 }
47
48 static void
49 _select(void *data, Evas_Object *obj, void *event_info)
50 {
51    ext_mod->select(data,obj,event_info);
52    evas_object_hide(obj);
53 }
54
55 static void
56 _paste(void *data, Evas_Object *obj, void *event_info)
57 {
58         ext_mod->paste(data,obj,event_info);
59         evas_object_hide(obj);
60 }
61
62 static void
63 _cut(void *data, Evas_Object *obj, void *event_info)
64 {
65         ext_mod->cut(data,obj,event_info);
66         evas_object_hide(obj);
67         elm_ctxpopup_scroller_disabled_set(ext_mod->popup, EINA_FALSE);
68 }
69
70 static void
71 _copy(void *data, Evas_Object *obj, void *event_info)
72 {
73         ext_mod->copy(data,obj,event_info);
74         evas_object_hide(obj);
75         elm_ctxpopup_scroller_disabled_set(ext_mod->popup, EINA_FALSE);
76 }
77
78 static void
79 _cancel(void *data, Evas_Object *obj, void *event_info)
80 {
81         ext_mod->cancel(data,obj,event_info);
82         evas_object_hide(obj);
83         elm_ctxpopup_scroller_disabled_set(ext_mod->popup, EINA_FALSE);
84 }
85
86 static void
87 _clipboard_menu(void *data, Evas_Object *obj, void *event_info)
88 {
89         // start for cbhm
90         ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
91         ext_mod->cnpinit(data,obj,event_info);
92         elm_cbhm_helper_init(obj);
93         if (ext_mod->textonly)
94                 elm_cbhm_send_raw_data("show0");
95         else
96                 elm_cbhm_send_raw_data("show1");
97         evas_object_hide(obj);
98         // end for cbhm
99 }
100
101 static void
102 _item_clicked(void *data, Evas_Object *obj, void *event_info)
103 {
104    Elm_Entry_Context_Menu_Item *it = data;
105    Evas_Object *obj2 = it->obj;
106
107         if (it->func) it->func(it->data, obj2, NULL);
108         evas_object_hide(obj);
109 }
110
111 // module api funcs needed
112 EAPI int
113 elm_modapi_init(void *m)
114 {
115    return 1; // succeed always
116 }
117
118 EAPI int
119 elm_modapi_shutdown(void *m)
120 {
121    return 1; // succeed always
122 }
123
124 // module fucns for the specific module type
125 EAPI void
126 obj_hook(Evas_Object *obj)
127 {
128         if(!ext_mod)
129                 {
130                         ext_mod = ELM_NEW(Elm_Entry_Extension_data);
131                 elm_entry_extension_module_data_get(obj,ext_mod);
132                 }
133 }
134
135 EAPI void
136 obj_unhook(Evas_Object *obj)
137 {
138    if(ext_mod)
139                 {
140                         free(ext_mod);
141                         ext_mod = NULL;
142         }
143 }
144
145 EAPI void
146 obj_longpress(Evas_Object *obj)
147 {       
148         if(!ext_mod) return;
149         Evas_Object *top;
150         const Eina_List *l;
151         const Elm_Entry_Context_Menu_Item *it;
152         const char *context_menu_orientation;
153
154         /*update*/
155         elm_entry_extension_module_data_get(obj,ext_mod);
156         if (ext_mod->context_menu)
157         {
158                 if (ext_mod->popup) evas_object_del(ext_mod->popup);
159 //              else elm_widget_scroll_freeze_push(obj);
160                 top = elm_widget_top_get(obj);
161                 if(top)
162                         ext_mod->popup = elm_ctxpopup_add(top);
163                 /*currently below theme not used,when guideline comes a new theme can be created if required*/
164                 elm_object_style_set(ext_mod->popup,"extended/entry");
165                 elm_ctxpopup_scroller_disabled_set(ext_mod->popup, EINA_TRUE);
166                 context_menu_orientation = edje_object_data_get
167                 (ext_mod->ent, "context_menu_orientation");
168                 if ((context_menu_orientation) &&
169                 (!strcmp(context_menu_orientation, "horizontal")))
170                 elm_ctxpopup_horizontal_set(ext_mod->popup, EINA_TRUE);
171                 elm_ctxpopup_screen_dimmed_disabled_set(ext_mod->popup, EINA_TRUE);
172
173                 elm_widget_sub_object_add(obj, ext_mod->popup);
174                 if (!ext_mod->selmode)
175                 {       
176                         if (!ext_mod->password)
177                         {
178                                 elm_ctxpopup_item_add(ext_mod->popup, NULL, "Select",_select, obj );
179                                 elm_ctxpopup_item_add(ext_mod->popup, NULL, "Select All",_select_all, obj );
180                         }
181                         if (1) // need way to detect if someone has a selection
182                                 {
183                                         if (ext_mod->editable)
184                                                 elm_ctxpopup_item_add(ext_mod->popup, NULL, "Paste",_paste, obj );
185                                 }
186         //              elm_ctxpopup_item_add(wd->ctxpopup, NULL, "Selectall",_select_all, obj );
187         // start for cbhm
188                         if (!ext_mod->password)
189                                 elm_ctxpopup_item_add(ext_mod->popup, NULL, "More", _clipboard_menu, obj );
190         // end for cbhm
191                 }
192                 else
193                 {
194                           if (!ext_mod->password)
195                                 {
196                                         if (ext_mod->have_selection)
197                                                 {
198                                                         elm_ctxpopup_item_add(ext_mod->popup, NULL, "Copy",_copy, obj );
199                                                         if (ext_mod->editable)
200                                                                 elm_ctxpopup_item_add(ext_mod->popup, NULL, "Cut",_cut, obj );                                                  
201                                                         if (ext_mod->editable)
202                                                                 elm_ctxpopup_item_add(ext_mod->popup, NULL, "Paste",_paste, obj );
203                                                 }
204                                         else
205                                                 {
206                                                         _cancel(obj,ext_mod->popup,NULL);               
207                                                         elm_ctxpopup_item_add(ext_mod->popup, NULL, "Select",_select, obj );
208                                                         elm_ctxpopup_item_add(ext_mod->popup, NULL, "Select All",_select_all, obj );
209                                                         if (1) // need way to detect if someone has a selection
210                                                                 {
211                                                                         if (ext_mod->editable)
212                                                                                 elm_ctxpopup_item_add(ext_mod->popup, NULL, "Paste",_paste, obj );
213                                                                 }
214                                                 }
215         // start for cbhm
216                                                         elm_ctxpopup_item_add(ext_mod->popup, NULL, "More",_clipboard_menu, obj );
217         // end for cbhm
218                                 }
219                 }
220                 EINA_LIST_FOREACH(ext_mod->items, l, it)
221                 {
222                         elm_ctxpopup_item_add(ext_mod->popup, NULL, it->label,_item_clicked, it );
223                 }
224                 if (ext_mod->popup)
225                         {
226                                 _ctxpopup_position(obj);
227                                 evas_object_show(ext_mod->popup);                 
228                         }
229                 }
230         ext_mod->longpress_timer = NULL;
231         }
232
233 EAPI void
234 obj_mouseup(Evas_Object *obj)
235 {
236         if (!obj || !ext_mod) {
237                 return;
238         }
239
240 /*update*/
241         elm_entry_extension_module_data_get(obj,ext_mod);
242    if (ext_mod->longpress_timer)
243      {    
244                 if (ext_mod->have_selection )
245                         {                               
246                                 _cancel(obj,ext_mod->popup,NULL);
247                         }
248      }     
249 }
250
251
252 EAPI void
253 obj_hidemenu(Evas_Object *obj)
254 {
255         if (!obj || !ext_mod) {
256                 return;
257         }
258
259         evas_object_hide(ext_mod->popup);
260 //      if (ext_mod->popup) evas_object_del(ext_mod->popup);
261 }
262
263