start a desktop entry mode. shift arrows start/mod selection. can just
[framework/uifw/elementary.git] / src / lib / elm_entry.c
1 #include <Elementary.h>
2 #include <Elementary_Cursor.h>
3 #include "elm_priv.h"
4
5 /**
6  * @defgroup Entry Entry
7  *
8  * An entry is a convenience widget which shows
9  * a box that the user can enter text into.  Unlike a
10  * @ref Scrolled_Entry widget, entries DO NOT scroll with user
11  * input.  Entry widgets are capable of expanding past the
12  * boundaries of the window, thus resizing the window to its
13  * own length.
14  *
15  * You can also insert "items" in the entry with:
16  *
17  * \<item size=16x16 vsize=full href=emoticon/haha\>\</item\>
18  *
19  * for example. sizing can be set bu size=WxH, relsize=WxH or absize=WxH with
20  * vsize=ascent or vsize=full. the href=NAME sets the item name. Entry
21  * supports a list of emoticon names by default. These are:
22  *
23  * - emoticon/angry
24  * - emoticon/angry-shout
25  * - emoticon/crazy-laugh
26  * - emoticon/evil-laugh
27  * - emoticon/evil
28  * - emoticon/goggle-smile
29  * - emoticon/grumpy
30  * - emoticon/grumpy-smile
31  * - emoticon/guilty
32  * - emoticon/guilty-smile
33  * - emoticon/haha
34  * - emoticon/half-smile
35  * - emoticon/happy-panting
36  * - emoticon/happy
37  * - emoticon/indifferent
38  * - emoticon/kiss
39  * - emoticon/knowing-grin
40  * - emoticon/laugh
41  * - emoticon/little-bit-sorry
42  * - emoticon/love-lots
43  * - emoticon/love
44  * - emoticon/minimal-smile
45  * - emoticon/not-happy
46  * - emoticon/not-impressed
47  * - emoticon/omg
48  * - emoticon/opensmile
49  * - emoticon/smile
50  * - emoticon/sorry
51  * - emoticon/squint-laugh
52  * - emoticon/surprised
53  * - emoticon/suspicious
54  * - emoticon/tongue-dangling
55  * - emoticon/tongue-poke
56  * - emoticon/uh
57  * - emoticon/unhappy
58  * - emoticon/very-sorry
59  * - emoticon/what
60  * - emoticon/wink
61  * - emoticon/worried
62  * - emoticon/wtf
63  *
64  * These are built-in currently, but you can add your own item provieer that
65  * can create inlined objects in the text and fill the space allocated to the
66  * item with a custom object of your own.
67  *
68  * See the entry test for some more examples of use of this.
69  *
70  * Entries have functions to load a text file, display it,
71  * allowing editing of it and saving of changes back to the file loaded.
72  * Changes are written back to the original file after a short delay.
73  * The file to load and save to is specified by elm_entry_file_set().
74  *
75  * Signals that you can add callbacks for are:
76  * - "changed" - The text within the entry was changed
77  * - "activated" - The entry has had editing finished and changes are to be committed (generally when enter key is pressed)
78  * - "press" - The entry has been clicked
79  * - "longpressed" - The entry has been clicked for a couple seconds
80  * - "clicked" - The entry has been clicked
81  * - "clicked,double" - The entry has been double clicked
82  * - "focused" - The entry has received focus
83  * - "unfocused" - The entry has lost focus
84  * - "selection,paste" - A paste action has occurred
85  * - "selection,copy" - A copy action has occurred
86  * - "selection,cut" - A cut action has occurred
87  * - "selection,start" - A selection has begun
88  * - "selection,changed" - The selection has changed
89  * - "selection,cleared" - The selection has been cleared
90  * - "cursor,changed" - The cursor has changed
91  * - "anchor,clicked" - The anchor has been clicked
92  */
93
94 typedef struct _Mod_Api Mod_Api;
95
96 typedef struct _Widget_Data Widget_Data;
97 typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
98 typedef struct _Elm_Entry_Item_Provider Elm_Entry_Item_Provider;
99 typedef struct _Elm_Entry_Text_Filter Elm_Entry_Text_Filter;
100
101 struct _Widget_Data
102 {
103    Evas_Object *ent;
104    Evas_Object *hoversel;
105    Ecore_Job *deferred_recalc_job;
106    Ecore_Event_Handler *sel_notify_handler;
107    Ecore_Event_Handler *sel_clear_handler;
108    Ecore_Timer *longpress_timer;
109    Ecore_Timer *delay_write;
110    /* Only for clipboard */
111    const char *cut_sel;
112    const char *text;
113    const char *file;
114    Elm_Text_Format format;
115    Evas_Coord lastw;
116    Evas_Coord downx, downy;
117    Evas_Coord cx, cy, cw, ch;
118    Eina_List *items;
119    Eina_List *item_providers;
120    Eina_List *text_filters;
121    Ecore_Job *hovdeljob;
122    Mod_Api *api; // module api if supplied
123    int cursor_pos;
124    Eina_Bool changed : 1;
125    Eina_Bool linewrap : 1;
126    Eina_Bool char_linewrap : 1;
127    Eina_Bool single_line : 1;
128    Eina_Bool password : 1;
129    Eina_Bool editable : 1;
130    Eina_Bool selection_asked : 1;
131    Eina_Bool have_selection : 1;
132    Eina_Bool selmode : 1;
133    Eina_Bool deferred_cur : 1;
134    Eina_Bool disabled : 1;
135    Eina_Bool context_menu : 1;
136    Eina_Bool drag_selection_asked : 1;
137    Eina_Bool can_write : 1;
138    Eina_Bool autosave : 1;
139    Eina_Bool textonly : 1;
140    Eina_Bool usedown : 1;
141 };
142
143 struct _Elm_Entry_Context_Menu_Item
144 {
145    Evas_Object *obj;
146    const char *label;
147    const char *icon_file;
148    const char *icon_group;
149    Elm_Icon_Type icon_type;
150    Evas_Smart_Cb func;
151    void *data;
152 };
153
154 struct _Elm_Entry_Item_Provider
155 {
156    Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item);
157    void *data;
158 };
159
160 struct _Elm_Entry_Text_Filter
161 {
162    void (*func) (void *data, Evas_Object *entry, char **text);
163    void *data;
164 };
165
166 static const char *widtype = NULL;
167
168 #ifdef HAVE_ELEMENTARY_X
169 static Eina_Bool _drag_drop_cb(void *data, Evas_Object *obj, Elm_Selection_Data *);
170 #endif
171 static void _del_hook(Evas_Object *obj);
172 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
173 static void _theme_hook(Evas_Object *obj);
174 static void _disable_hook(Evas_Object *obj);
175 static void _sizing_eval(Evas_Object *obj);
176 static void _on_focus_hook(void *data, Evas_Object *obj);
177 static void _resize(void *data, Evas *e, Evas_Object *obj, void *event_info);
178 static const char *_getbase(Evas_Object *obj);
179 static void _signal_entry_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
180 static void _signal_selection_start(void *data, Evas_Object *obj, const char *emission, const char *source);
181 static void _signal_selection_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
182 static void _signal_selection_cleared(void *data, Evas_Object *obj, const char *emission, const char *source);
183 static void _signal_entry_paste_request(void *data, Evas_Object *obj, const char *emission, const char *source);
184 static void _signal_entry_copy_notify(void *data, Evas_Object *obj, const char *emission, const char *source);
185 static void _signal_entry_cut_notify(void *data, Evas_Object *obj, const char *emission, const char *source);
186 static void _signal_cursor_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
187
188 static const char SIG_CHANGED[] = "changed";
189 static const char SIG_ACTIVATED[] = "activated";
190 static const char SIG_PRESS[] = "press";
191 static const char SIG_LONGPRESSED[] = "longpressed";
192 static const char SIG_CLICKED[] = "clicked";
193 static const char SIG_CLICKED_DOUBLE[] = "clicked,double";
194 static const char SIG_FOCUSED[] = "focused";
195 static const char SIG_UNFOCUSED[] = "unfocused";
196 static const char SIG_SELECTION_PASTE[] = "selection,paste";
197 static const char SIG_SELECTION_COPY[] = "selection,copy";
198 static const char SIG_SELECTION_CUT[] = "selection,cut";
199 static const char SIG_SELECTION_START[] = "selection,start";
200 static const char SIG_SELECTION_CHANGED[] = "selection,changed";
201 static const char SIG_SELECTION_CLEARED[] = "selection,cleared";
202 static const char SIG_CURSOR_CHANGED[] = "cursor,changed";
203 static const char SIG_ANCHOR_CLICKED[] = "anchor,clicked";
204 static const Evas_Smart_Cb_Description _signals[] = {
205        {SIG_CHANGED, ""},
206        {SIG_ACTIVATED, ""},
207        {SIG_PRESS, ""},
208        {SIG_LONGPRESSED, ""},
209        {SIG_CLICKED, ""},
210        {SIG_CLICKED_DOUBLE, ""},
211        {SIG_FOCUSED, ""},
212        {SIG_UNFOCUSED, ""},
213        {SIG_SELECTION_PASTE, ""},
214        {SIG_SELECTION_COPY, ""},
215        {SIG_SELECTION_CUT, ""},
216        {SIG_SELECTION_START, ""},
217        {SIG_SELECTION_CHANGED, ""},
218        {SIG_SELECTION_CLEARED, ""},
219        {SIG_CURSOR_CHANGED, ""},
220        {SIG_ANCHOR_CLICKED, ""},
221        {NULL, NULL}
222 };
223
224 static Eina_List *entries = NULL;
225
226 struct _Mod_Api
227 {
228    void (*obj_hook) (Evas_Object *obj);
229    void (*obj_unhook) (Evas_Object *obj);
230    void (*obj_longpress) (Evas_Object *obj);
231 };
232
233 static Mod_Api *
234 _module(Evas_Object *obj __UNUSED__)
235 {
236    static Elm_Module *m = NULL;
237    if (m) goto ok; // already found - just use
238    if (!(m = _elm_module_find_as("entry/api"))) return NULL;
239    // get module api
240    m->api = malloc(sizeof(Mod_Api));
241    if (!m->api) return NULL;
242    ((Mod_Api *)(m->api)      )->obj_hook = // called on creation
243       _elm_module_symbol_get(m, "obj_hook");
244    ((Mod_Api *)(m->api)      )->obj_unhook = // called on deletion
245       _elm_module_symbol_get(m, "obj_unhook");
246    ((Mod_Api *)(m->api)      )->obj_longpress = // called on long press menu
247       _elm_module_symbol_get(m, "obj_longpress");
248 ok: // ok - return api
249    return m->api;
250 }
251
252 static char *
253 _buf_append(char *buf, const char *str, int *len, int *alloc)
254 {
255    int len2 = strlen(str);
256    if ((*len + len2) >= *alloc)
257      {
258         char *buf2 = realloc(buf, *alloc + len2 + 512);
259         if (!buf2) return NULL;
260         buf = buf2;
261         *alloc += (512 + len2);
262      }
263    strcpy(buf + *len, str);
264    *len += len2;
265    return buf;
266 }
267
268 static char *
269 _load_file(const char *file)
270 {
271    FILE *f;
272    size_t size;
273    int alloc = 0, len = 0;
274    char *text = NULL, buf[16384 + 1];
275
276    f = fopen(file, "rb");
277    if (!f) return NULL;
278    while ((size = fread(buf, 1, sizeof(buf) - 1, f)))
279      {
280         char *tmp_text;
281         buf[size] = 0;
282         tmp_text = _buf_append(text, buf, &len, &alloc);
283         if (!tmp_text) break;
284         text = tmp_text;
285      }
286    fclose(f);
287    return text;
288 }
289
290 static char *
291 _load_plain(const char *file)
292 {
293    char *text;
294
295    text = _load_file(file);
296    if (text)
297      {
298         char *text2;
299
300         text2 = elm_entry_utf8_to_markup(text);
301         free(text);
302         return text2;
303      }
304    return NULL;
305 }
306
307 static void
308 _load(Evas_Object *obj)
309 {
310    Widget_Data *wd = elm_widget_data_get(obj);
311    char *text;
312    if (!wd) return;
313    if (!wd->file)
314      {
315         elm_entry_entry_set(obj, "");
316         return;
317      }
318    switch (wd->format)
319      {
320       case ELM_TEXT_FORMAT_PLAIN_UTF8:
321          text = _load_plain(wd->file);
322          break;
323       case ELM_TEXT_FORMAT_MARKUP_UTF8:
324          text = _load_file(wd->file);
325          break;
326       default:
327          text = NULL;
328          break;
329      }
330    if (text)
331      {
332         elm_entry_entry_set(obj, text);
333         free(text);
334      }
335    else
336      elm_entry_entry_set(obj, "");
337 }
338
339 static void
340 _save_markup_utf8(const char *file, const char *text)
341 {
342    FILE *f;
343
344    if ((!text) || (!text[0]))
345      {
346         ecore_file_unlink(file);
347         return;
348      }
349    f = fopen(file, "wb");
350    if (!f)
351      {
352         // FIXME: report a write error
353         return;
354      }
355    fputs(text, f); // FIXME: catch error
356    fclose(f);
357 }
358
359 static void
360 _save_plain_utf8(const char *file, const char *text)
361 {
362    char *text2;
363
364    text2 = elm_entry_markup_to_utf8(text);
365    if (!text2)
366      return;
367    _save_markup_utf8(file, text2);
368    free(text2);
369 }
370
371 static void
372 _save(Evas_Object *obj)
373 {
374    Widget_Data *wd = elm_widget_data_get(obj);
375    if (!wd) return;
376    if (!wd->file) return;
377    switch (wd->format)
378      {
379       case ELM_TEXT_FORMAT_PLAIN_UTF8:
380          _save_plain_utf8(wd->file, elm_entry_entry_get(obj));
381          break;
382       case ELM_TEXT_FORMAT_MARKUP_UTF8:
383          _save_markup_utf8(wd->file, elm_entry_entry_get(obj));
384          break;
385       default:
386          break;
387      }
388 }
389
390 static Eina_Bool
391 _delay_write(void *data)
392 {
393    Widget_Data *wd = elm_widget_data_get(data);
394    if (!wd) return ECORE_CALLBACK_CANCEL;
395    _save(data);
396    wd->delay_write = NULL;
397    return ECORE_CALLBACK_CANCEL;
398 }
399
400 static Elm_Entry_Text_Filter *
401 _filter_new(void (*func) (void *data, Evas_Object *entry, char **text), void *data)
402 {
403    Elm_Entry_Text_Filter *tf = ELM_NEW(Elm_Entry_Text_Filter);
404    if (!tf) return NULL;
405
406    tf->func = func;
407    if (func == elm_entry_filter_limit_size)
408      {
409         Elm_Entry_Filter_Limit_Size *lim = data, *lim2;
410
411         if (!data)
412           {
413              free(tf);
414              return NULL;
415           }
416         lim2 = malloc(sizeof(Elm_Entry_Filter_Limit_Size));
417         if (!lim2)
418           {
419              free(tf);
420              return NULL;
421           }
422         memcpy(lim2, lim, sizeof(Elm_Entry_Filter_Limit_Size));
423         tf->data = lim2;
424      }
425    else if (func == elm_entry_filter_accept_set)
426      {
427         Elm_Entry_Filter_Accept_Set *as = data, *as2;
428
429         if (!data)
430           {
431              free(tf);
432              return NULL;
433           }
434         as2 = malloc(sizeof(Elm_Entry_Filter_Accept_Set));
435         if (!as2)
436           {
437              free(tf);
438              return NULL;
439           }
440         if (as->accepted)
441           as2->accepted = eina_stringshare_add(as->accepted);
442         else
443           as2->accepted = NULL;
444         if (as->rejected)
445           as2->rejected = eina_stringshare_add(as->rejected);
446         else
447           as2->rejected = NULL;
448         tf->data = as2;
449      }
450    else
451      tf->data = data;
452    return tf;
453 }
454
455 static void
456 _filter_free(Elm_Entry_Text_Filter *tf)
457 {
458    if (tf->func == elm_entry_filter_limit_size)
459      {
460         Elm_Entry_Filter_Limit_Size *lim = tf->data;
461         if (lim) free(lim);
462      }
463    else if (tf->func == elm_entry_filter_accept_set)
464      {
465         Elm_Entry_Filter_Accept_Set *as = tf->data;
466         if (as)
467           {
468              if (as->accepted) eina_stringshare_del(as->accepted);
469              if (as->rejected) eina_stringshare_del(as->rejected);
470              free(as);
471           }
472      }
473    free(tf);
474 }
475
476 static void
477 _del_pre_hook(Evas_Object *obj)
478 {
479    Widget_Data *wd = elm_widget_data_get(obj);
480    if (!wd) return;
481    if (wd->delay_write)
482      {
483         ecore_timer_del(wd->delay_write);
484         wd->delay_write = NULL;
485         if (wd->autosave) _save(obj);
486      }
487 }
488
489 static void
490 _del_hook(Evas_Object *obj)
491 {
492    Widget_Data *wd = elm_widget_data_get(obj);
493    Elm_Entry_Context_Menu_Item *it;
494    Elm_Entry_Item_Provider *ip;
495    Elm_Entry_Text_Filter *tf;
496
497    if (wd->file) eina_stringshare_del(wd->file);
498
499    if (wd->hovdeljob) ecore_job_del(wd->hovdeljob);
500    if ((wd->api) && (wd->api->obj_unhook)) wd->api->obj_unhook(obj); // module - unhook
501
502    entries = eina_list_remove(entries, obj);
503 #ifdef HAVE_ELEMENTARY_X
504    ecore_event_handler_del(wd->sel_notify_handler);
505    ecore_event_handler_del(wd->sel_clear_handler);
506 #endif
507    if (wd->cut_sel) eina_stringshare_del(wd->cut_sel);
508    if (wd->text) eina_stringshare_del(wd->text);
509    if (wd->deferred_recalc_job) ecore_job_del(wd->deferred_recalc_job);
510    if (wd->longpress_timer) ecore_timer_del(wd->longpress_timer);
511    EINA_LIST_FREE(wd->items, it)
512      {
513         eina_stringshare_del(it->label);
514         eina_stringshare_del(it->icon_file);
515         eina_stringshare_del(it->icon_group);
516         free(it);
517      }
518    EINA_LIST_FREE(wd->item_providers, ip)
519      {
520         free(ip);
521      }
522    EINA_LIST_FREE(wd->text_filters, tf)
523      {
524         _filter_free(tf);
525      }
526    free(wd);
527 }
528
529 static void
530 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
531 {
532    Widget_Data *wd = elm_widget_data_get(obj);
533    edje_object_mirrored_set(wd->ent, rtl);
534 }
535
536 static void
537 _theme_hook(Evas_Object *obj)
538 {
539    Widget_Data *wd = elm_widget_data_get(obj);
540    const char *t;
541    _elm_widget_mirrored_reload(obj);
542    _mirrored_set(obj, elm_widget_mirrored_get(obj));
543
544    t = eina_stringshare_add(elm_entry_entry_get(obj));
545    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
546    if (_elm_config->desktop_entry)
547       edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
548    elm_entry_entry_set(obj, t);
549    eina_stringshare_del(t);
550    if (elm_widget_disabled_get(obj))
551      edje_object_signal_emit(wd->ent, "elm,state,disabled", "elm");
552    elm_entry_cursor_pos_set(obj, wd->cursor_pos);
553    if (elm_widget_focus_get(obj))
554      edje_object_signal_emit(wd->ent, "elm,action,focus", "elm");
555    edje_object_message_signal_process(wd->ent);
556    edje_object_scale_set(wd->ent, elm_widget_scale_get(obj) * _elm_config->scale);
557    _sizing_eval(obj);
558 }
559
560 static void
561 _disable_hook(Evas_Object *obj)
562 {
563    Widget_Data *wd = elm_widget_data_get(obj);
564
565    if (elm_widget_disabled_get(obj))
566      {
567         edje_object_signal_emit(wd->ent, "elm,state,disabled", "elm");
568         wd->disabled = EINA_TRUE;
569      }
570    else
571      {
572         edje_object_signal_emit(wd->ent, "elm,state,enabled", "elm");
573         wd->disabled = EINA_FALSE;
574      }
575 }
576
577 static void
578 _elm_win_recalc_job(void *data)
579 {
580    Widget_Data *wd = elm_widget_data_get(data);
581    Evas_Coord minw = -1, minh = -1, maxh = -1;
582    Evas_Coord resw, resh, minminw;
583    if (!wd) return;
584    wd->deferred_recalc_job = NULL;
585    evas_object_geometry_get(wd->ent, NULL, NULL, &resw, &resh);
586    resh = 0;
587    edje_object_size_min_restricted_calc(wd->ent, &minw, &minh, 0, 0);
588    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
589    minminw = minw;
590    edje_object_size_min_restricted_calc(wd->ent, &minw, &minh, resw, 0);
591    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
592    evas_object_size_hint_min_set(data, minminw, minh);
593    if (wd->single_line) maxh = minh;
594    evas_object_size_hint_max_set(data, -1, maxh);
595    if (wd->deferred_cur)
596      elm_widget_show_region_set(data, wd->cx, wd->cy, wd->cw, wd->ch);
597 }
598
599 static void
600 _sizing_eval(Evas_Object *obj)
601 {
602    Widget_Data *wd = elm_widget_data_get(obj);
603    Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
604    Evas_Coord resw, resh;
605    if (!wd) return;
606    if ((wd->linewrap) || (wd->char_linewrap))
607      {
608         evas_object_geometry_get(wd->ent, NULL, NULL, &resw, &resh);
609         if ((resw == wd->lastw) && (!wd->changed)) return;
610         wd->changed = EINA_FALSE;
611         wd->lastw = resw;
612         if (wd->deferred_recalc_job) ecore_job_del(wd->deferred_recalc_job);
613         wd->deferred_recalc_job = ecore_job_add(_elm_win_recalc_job, obj);
614      }
615    else
616      {
617         evas_object_geometry_get(wd->ent, NULL, NULL, &resw, &resh);
618         edje_object_size_min_calc(wd->ent, &minw, &minh);
619         elm_coords_finger_size_adjust(1, &minw, 1, &minh);
620         evas_object_size_hint_min_set(obj, minw, minh);
621         if (wd->single_line) maxh = minh;
622         evas_object_size_hint_max_set(obj, maxw, maxh);
623      }
624 }
625
626 static void
627 _on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
628 {
629    Widget_Data *wd = elm_widget_data_get(obj);
630    Evas_Object *top = elm_widget_top_get(obj);
631    if (!wd) return;
632    if (!wd->editable) return;
633    if (elm_widget_focus_get(obj))
634      {
635         evas_object_focus_set(wd->ent, EINA_TRUE);
636         edje_object_signal_emit(wd->ent, "elm,action,focus", "elm");
637         if (top) elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_ON);
638         evas_object_smart_callback_call(obj, SIG_FOCUSED, NULL);
639      }
640    else
641      {
642         edje_object_signal_emit(wd->ent, "elm,action,unfocus", "elm");
643         evas_object_focus_set(wd->ent, EINA_FALSE);
644         if (top) elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_OFF);
645         evas_object_smart_callback_call(obj, SIG_UNFOCUSED, NULL);
646      }
647 }
648
649 static void
650 _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source)
651 {
652    Widget_Data *wd = elm_widget_data_get(obj);
653    if (!wd) return;
654    edje_object_signal_emit(wd->ent, emission, source);
655 }
656
657 static void
658 _signal_callback_add_hook(Evas_Object *obj, const char *emission, const char *source, void (*func_cb) (void *data, Evas_Object *o, const char *emission, const char *source), void *data)
659 {
660    Widget_Data *wd = elm_widget_data_get(obj);
661    if (!wd) return;
662    edje_object_signal_callback_add(wd->ent, emission, source, func_cb, data);
663 }
664
665 static void
666 _signal_callback_del_hook(Evas_Object *obj, const char *emission, const char *source, void (*func_cb) (void *data, Evas_Object *o, const char *emission, const char *source), void *data)
667 {
668    Widget_Data *wd = elm_widget_data_get(obj);
669    edje_object_signal_callback_del_full(wd->ent, emission, source, func_cb,
670                                         data);
671 }
672
673 static void
674 _on_focus_region_hook(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h)
675 {
676    Widget_Data *wd = elm_widget_data_get(obj);
677    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", x, y, w, h);
678 }
679
680 static void
681 _hoversel_position(Evas_Object *obj)
682 {
683    Widget_Data *wd = elm_widget_data_get(obj);
684    Evas_Coord cx, cy, cw, ch, x, y, mw, mh;
685    if (!wd) return;
686    
687    cx = cy = 0;
688    cw = ch = 1;
689    evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
690    if (wd->usedown)
691      {
692         cx = wd->downx - x;
693         cy = wd->downy - y;
694         cw = 1;
695         ch = 1;
696      }
697    else
698       edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
699                                                 &cx, &cy, &cw, &ch);
700    evas_object_size_hint_min_get(wd->hoversel, &mw, &mh);
701    if (cw < mw)
702      {
703         cx += (cw - mw) / 2;
704         cw = mw;
705      }
706    if (ch < mh)
707      {
708         cy += (ch - mh) / 2;
709         ch = mh;
710      }
711    evas_object_move(wd->hoversel, x + cx, y + cy);
712    evas_object_resize(wd->hoversel, cw, ch);
713 }
714
715 static void
716 _move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
717 {
718    Widget_Data *wd = elm_widget_data_get(data);
719
720    if (wd->hoversel) _hoversel_position(data);
721 }
722
723 static void
724 _resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
725 {
726    Widget_Data *wd = elm_widget_data_get(data);
727    if (!wd) return;
728    if ((wd->linewrap) || (wd->char_linewrap))
729      {
730         _sizing_eval(data);
731      }
732    if (wd->hoversel) _hoversel_position(data);
733    //   Evas_Coord ww, hh;
734    //   evas_object_geometry_get(wd->ent, NULL, NULL, &ww, &hh);
735 }
736
737 static void
738 _hover_del(void *data)
739 {
740    Widget_Data *wd = elm_widget_data_get(data);
741    if (!wd) return;
742
743    if (wd->hoversel)
744      {
745         evas_object_del(wd->hoversel);
746         wd->hoversel = NULL;
747      }
748    wd->hovdeljob = NULL;
749 }
750
751 static void
752 _dismissed(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
753 {
754    Widget_Data *wd = elm_widget_data_get(data);
755    if (!wd) return;
756    wd->usedown = 0;
757    if (wd->hoversel) evas_object_hide(wd->hoversel);
758    if (wd->selmode)
759      {
760         if (!_elm_config->desktop_entry)
761           {
762              if (!wd->password)
763                 edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
764           }
765      }
766    elm_widget_scroll_freeze_pop(data);
767    if (wd->hovdeljob) ecore_job_del(wd->hovdeljob);
768    wd->hovdeljob = ecore_job_add(_hover_del, data);
769 }
770
771 static void
772 _select(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
773 {
774    Widget_Data *wd = elm_widget_data_get(data);
775    if (!wd) return;
776    wd->selmode = EINA_TRUE;
777    edje_object_part_text_select_none(wd->ent, "elm.text");
778    if (!_elm_config->desktop_entry)
779      {
780         if (!wd->password)
781            edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
782      }
783    edje_object_signal_emit(wd->ent, "elm,state,select,on", "elm");
784    if (!_elm_config->desktop_entry)
785       elm_widget_scroll_hold_push(data);
786 }
787
788 static void
789 _paste(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
790 {
791    Widget_Data *wd = elm_widget_data_get(data);
792    if (!wd) return;
793    evas_object_smart_callback_call(data, SIG_SELECTION_PASTE, NULL);
794    if (wd->sel_notify_handler)
795      {
796 #ifdef HAVE_ELEMENTARY_X
797         Elm_Sel_Format formats;
798         wd->selection_asked = EINA_TRUE;
799         formats = ELM_SEL_FORMAT_MARKUP;
800         if (!wd->textonly)
801           formats |= ELM_SEL_FORMAT_IMAGE;
802         elm_selection_get(ELM_SEL_CLIPBOARD, formats, data, NULL, NULL);
803 #endif
804      }
805 }
806
807 static void
808 _store_selection(Elm_Sel_Type seltype, Evas_Object *obj)
809 {
810    Widget_Data *wd = elm_widget_data_get(obj);
811    const char *sel;
812
813    if (!wd) return;
814    sel = edje_object_part_text_selection_get(wd->ent, "elm.text");
815    elm_selection_set(seltype, obj, ELM_SEL_FORMAT_MARKUP, sel);
816    if (seltype == ELM_SEL_CLIPBOARD)
817      eina_stringshare_replace(&wd->cut_sel, sel);
818 }
819
820 static void
821 _cut(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
822 {
823    Widget_Data *wd = elm_widget_data_get(data);
824
825    /* Store it */
826    wd->selmode = EINA_FALSE;
827    if (!_elm_config->desktop_entry)
828       edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
829    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
830    if (!_elm_config->desktop_entry)
831       elm_widget_scroll_hold_pop(data);
832    _store_selection(ELM_SEL_CLIPBOARD, data);
833    edje_object_part_text_insert(wd->ent, "elm.text", "");
834    edje_object_part_text_select_none(wd->ent, "elm.text");
835 }
836
837 static void
838 _copy(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
839 {
840    Widget_Data *wd = elm_widget_data_get(data);
841    if (!wd) return;
842    wd->selmode = EINA_FALSE;
843    if (!_elm_config->desktop_entry)
844      {
845         edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
846         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
847         elm_widget_scroll_hold_pop(data);
848      }
849    _store_selection(ELM_SEL_CLIPBOARD, data);
850    //   edje_object_part_text_select_none(wd->ent, "elm.text");
851 }
852
853 static void
854 _cancel(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
855 {
856    Widget_Data *wd = elm_widget_data_get(data);
857    if (!wd) return;
858    wd->selmode = EINA_FALSE;
859    if (!_elm_config->desktop_entry)
860       edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
861    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
862    if (!_elm_config->desktop_entry)
863       elm_widget_scroll_hold_pop(data);
864    edje_object_part_text_select_none(wd->ent, "elm.text");
865 }
866
867 static void
868 _item_clicked(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
869 {
870    Elm_Entry_Context_Menu_Item *it = data;
871    Evas_Object *obj2 = it->obj;
872    if (it->func) it->func(it->data, obj2, NULL);
873 }
874
875 static void
876 _menu_press(Evas_Object *obj)
877 {
878    Widget_Data *wd = elm_widget_data_get(obj);
879    Evas_Object *top;
880    const Eina_List *l;
881    const Elm_Entry_Context_Menu_Item *it;
882    if (!wd) return;
883    if ((wd->api) && (wd->api->obj_longpress))
884      {
885         wd->api->obj_longpress(obj);
886      }
887    else if (wd->context_menu)
888      {
889         const char *context_menu_orientation;
890
891         if (wd->hoversel) evas_object_del(wd->hoversel);
892         else elm_widget_scroll_freeze_push(obj);
893         wd->hoversel = elm_hoversel_add(obj);
894         context_menu_orientation = edje_object_data_get
895            (wd->ent, "context_menu_orientation");
896         if ((context_menu_orientation) &&
897             (!strcmp(context_menu_orientation, "horizontal")))
898           elm_hoversel_horizontal_set(wd->hoversel, EINA_TRUE);
899         elm_object_style_set(wd->hoversel, "entry");
900         elm_widget_sub_object_add(obj, wd->hoversel);
901         elm_hoversel_label_set(wd->hoversel, "Text");
902         top = elm_widget_top_get(obj);
903         if (top) elm_hoversel_hover_parent_set(wd->hoversel, top);
904         evas_object_smart_callback_add(wd->hoversel, "dismissed", _dismissed, obj);
905         if (!wd->selmode)
906           {
907              if (!_elm_config->desktop_entry)
908                {
909                   if (!wd->password)
910                      elm_hoversel_item_add(wd->hoversel, E_("Select"), NULL, ELM_ICON_NONE,
911                                            _select, obj);
912                }
913              if (1) // need way to detect if someone has a selection
914                {
915                   if (wd->editable)
916                     elm_hoversel_item_add(wd->hoversel, E_("Paste"), NULL, ELM_ICON_NONE,
917                                           _paste, obj);
918                }
919           }
920         else
921           {
922              if (!wd->password)
923                {
924                   if (wd->have_selection)
925                     {
926                        elm_hoversel_item_add(wd->hoversel, E_("Copy"), NULL, ELM_ICON_NONE,
927                                              _copy, obj);
928                        if (wd->editable)
929                          elm_hoversel_item_add(wd->hoversel, E_("Cut"), NULL, ELM_ICON_NONE,
930                                                _cut, obj);
931                     }
932                   elm_hoversel_item_add(wd->hoversel, E_("Cancel"), NULL, ELM_ICON_NONE,
933                                         _cancel, obj);
934                }
935           }
936         EINA_LIST_FOREACH(wd->items, l, it)
937           {
938              elm_hoversel_item_add(wd->hoversel, it->label, it->icon_file,
939                                    it->icon_type, _item_clicked, it);
940           }
941         if (wd->hoversel)
942           {
943              _hoversel_position(obj);
944              evas_object_show(wd->hoversel);
945              elm_hoversel_hover_begin(wd->hoversel);
946           }
947         if (!_elm_config->desktop_entry)
948           {
949              edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
950              edje_object_part_text_select_abort(wd->ent, "elm.text");
951           }
952      }
953 }
954
955 static Eina_Bool
956 _long_press(void *data)
957 {
958    Widget_Data *wd = elm_widget_data_get(data);
959    if (!wd) return ECORE_CALLBACK_CANCEL;
960    _menu_press(data);
961    wd->longpress_timer = NULL;
962    evas_object_smart_callback_call(data, SIG_LONGPRESSED, NULL);
963    return ECORE_CALLBACK_CANCEL;
964 }
965
966 static void
967 _mouse_down(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
968 {
969    Widget_Data *wd = elm_widget_data_get(data);
970    Evas_Event_Mouse_Down *ev = event_info;
971    if (!wd) return;
972    if (wd->disabled) return;
973    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
974    wd->downx = ev->canvas.x;
975    wd->downy = ev->canvas.y;
976    if (ev->button == 1)
977      {
978         if (wd->longpress_timer) ecore_timer_del(wd->longpress_timer);
979         wd->longpress_timer = ecore_timer_add(_elm_config->longpress_timeout, _long_press, data);
980      }
981 }
982
983 static void
984 _mouse_up(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
985 {
986    Widget_Data *wd = elm_widget_data_get(data);
987    Evas_Event_Mouse_Up *ev = event_info;
988    if (!wd) return;
989    if (wd->disabled) return;
990    if (ev->button == 1)
991      {
992         if (wd->longpress_timer)
993           {
994              ecore_timer_del(wd->longpress_timer);
995              wd->longpress_timer = NULL;
996           }
997      }
998    else if (ev->button == 3)
999      {
1000         wd->usedown = 1;
1001         _menu_press(data);
1002      }
1003 }
1004
1005 static void
1006 _mouse_move(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
1007 {
1008    Widget_Data *wd = elm_widget_data_get(data);
1009    Evas_Event_Mouse_Move *ev = event_info;
1010    if (!wd) return;
1011    if (wd->disabled) return;
1012    if (!wd->selmode)
1013      {
1014         if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1015           {
1016              if (wd->longpress_timer)
1017                {
1018                   ecore_timer_del(wd->longpress_timer);
1019                   wd->longpress_timer = NULL;
1020                }
1021           }
1022         else if (wd->longpress_timer)
1023           {
1024              Evas_Coord dx, dy;
1025
1026              dx = wd->downx - ev->cur.canvas.x;
1027              dx *= dx;
1028              dy = wd->downy - ev->cur.canvas.y;
1029              dy *= dy;
1030              if ((dx + dy) >
1031                  ((_elm_config->finger_size / 2) *
1032                   (_elm_config->finger_size / 2)))
1033                {
1034                   ecore_timer_del(wd->longpress_timer);
1035                   wd->longpress_timer = NULL;
1036                }
1037           }
1038      }
1039    else if (wd->longpress_timer)
1040      {
1041         Evas_Coord dx, dy;
1042
1043         dx = wd->downx - ev->cur.canvas.x;
1044         dx *= dx;
1045         dy = wd->downy - ev->cur.canvas.y;
1046         dy *= dy;
1047         if ((dx + dy) >
1048             ((_elm_config->finger_size / 2) *
1049              (_elm_config->finger_size / 2)))
1050           {
1051              ecore_timer_del(wd->longpress_timer);
1052              wd->longpress_timer = NULL;
1053           }
1054      }
1055 }
1056
1057 static const char *
1058 _getbase(Evas_Object *obj)
1059 {
1060    Widget_Data *wd = elm_widget_data_get(obj);
1061    if (!wd) return "base";
1062    if (wd->editable)
1063      {
1064         if (wd->password) return "base-password";
1065         else
1066           {
1067              if (wd->single_line) return "base-single";
1068              else
1069                {
1070                   if (wd->linewrap) return "base";
1071                   else if (wd->char_linewrap) return "base-charwrap";
1072                   else  return "base-nowrap";
1073                }
1074           }
1075      }
1076    else
1077      {
1078         if (wd->password) return "base-password";
1079         else
1080           {
1081              if (wd->single_line) return "base-single-noedit";
1082              else
1083                {
1084                   if (wd->linewrap) return "base-noedit";
1085                   else if (wd->char_linewrap) return "base-noedit-charwrap";
1086                   else  return "base-nowrap-noedit";
1087                }
1088           }
1089      }
1090    return "base";
1091 }
1092
1093 static void
1094 _signal_entry_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1095 {
1096    Widget_Data *wd = elm_widget_data_get(data);
1097    if (!wd) return;
1098    wd->changed = EINA_TRUE;
1099    _sizing_eval(data);
1100    if (wd->text) eina_stringshare_del(wd->text);
1101    wd->text = NULL;
1102    evas_object_smart_callback_call(data, SIG_CHANGED, NULL);
1103    if (wd->delay_write)
1104      {
1105         ecore_timer_del(wd->delay_write);
1106         wd->delay_write = NULL;
1107      }
1108    if ((!wd->autosave) || (!wd->file)) return;
1109    wd->delay_write = ecore_timer_add(2.0, _delay_write, data);
1110 }
1111
1112 static void
1113 _signal_selection_start(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1114 {
1115    Widget_Data *wd = elm_widget_data_get(data);
1116    const Eina_List *l;
1117    Evas_Object *entry;
1118    if (!wd) return;
1119    EINA_LIST_FOREACH(entries, l, entry)
1120      {
1121         if (entry != data) elm_entry_select_none(entry);
1122      }
1123    wd->have_selection = EINA_TRUE;
1124    evas_object_smart_callback_call(data, SIG_SELECTION_START, NULL);
1125 #ifdef HAVE_ELEMENTARY_X
1126    if (wd->sel_notify_handler)
1127      {
1128         const char *txt = elm_entry_selection_get(data);
1129         Evas_Object *top;
1130
1131         top = elm_widget_top_get(data);
1132         if ((top) && (elm_win_xwindow_get(top)))
1133           elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_FORMAT_MARKUP, txt);
1134      }
1135 #endif
1136 }
1137
1138 static void
1139 _signal_selection_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1140 {
1141    Widget_Data *wd = elm_widget_data_get(data);
1142    if (!wd) return;
1143    wd->have_selection = EINA_TRUE;
1144    evas_object_smart_callback_call(data, SIG_SELECTION_CHANGED, NULL);
1145    elm_selection_set(ELM_SEL_PRIMARY, obj, ELM_SEL_FORMAT_MARKUP,
1146                      elm_entry_selection_get(data));
1147 }
1148
1149 static void
1150 _signal_selection_cleared(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1151 {
1152    Widget_Data *wd = elm_widget_data_get(data);
1153    if (!wd) return;
1154    if (!wd->have_selection) return;
1155    wd->have_selection = EINA_FALSE;
1156    evas_object_smart_callback_call(data, SIG_SELECTION_CLEARED, NULL);
1157    if (wd->sel_notify_handler)
1158      {
1159         if (wd->cut_sel)
1160           {
1161 #ifdef HAVE_ELEMENTARY_X
1162              Evas_Object *top;
1163
1164              top = elm_widget_top_get(data);
1165              if ((top) && (elm_win_xwindow_get(top)))
1166                elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_FORMAT_MARKUP,
1167                                  wd->cut_sel);
1168 #endif
1169              eina_stringshare_del(wd->cut_sel);
1170              wd->cut_sel = NULL;
1171           }
1172         else
1173           {
1174 #ifdef HAVE_ELEMENTARY_X
1175              Evas_Object *top;
1176
1177              top = elm_widget_top_get(data);
1178              if ((top) && (elm_win_xwindow_get(top)))
1179                elm_selection_clear(ELM_SEL_PRIMARY, data);
1180 #endif
1181           }
1182      }
1183 }
1184
1185 static void
1186 _signal_entry_paste_request(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1187 {
1188    Widget_Data *wd = elm_widget_data_get(data);
1189    if (!wd) return;
1190    evas_object_smart_callback_call(data, SIG_SELECTION_PASTE, NULL);
1191    if (wd->sel_notify_handler)
1192      {
1193 #ifdef HAVE_ELEMENTARY_X
1194         Evas_Object *top;
1195
1196         top = elm_widget_top_get(data);
1197         if ((top) && (elm_win_xwindow_get(top)))
1198           {
1199              wd->selection_asked = EINA_TRUE;
1200              elm_selection_get(ELM_SEL_CLIPBOARD, ELM_SEL_FORMAT_MARKUP, data,
1201                                NULL, NULL);
1202           }
1203 #endif
1204      }
1205 }
1206
1207 static void
1208 _signal_entry_copy_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1209 {
1210    Widget_Data *wd = elm_widget_data_get(data);
1211    if (!wd) return;
1212    evas_object_smart_callback_call(data, SIG_SELECTION_COPY, NULL);
1213    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_FORMAT_MARKUP,
1214                      elm_entry_selection_get(data));
1215 }
1216
1217 static void
1218 _signal_entry_cut_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1219 {
1220    Widget_Data *wd = elm_widget_data_get(data);
1221    if (!wd) return;
1222    evas_object_smart_callback_call(data, SIG_SELECTION_CUT, NULL);
1223    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_FORMAT_MARKUP,
1224                      elm_entry_selection_get(data));
1225    edje_object_part_text_insert(wd->ent, "elm.text", "");
1226    wd->changed = EINA_TRUE;
1227    _sizing_eval(data);
1228 }
1229
1230 static void
1231 _signal_cursor_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1232 {
1233    Widget_Data *wd = elm_widget_data_get(data);
1234    Evas_Coord cx, cy, cw, ch;
1235    if (!wd) return;
1236    evas_object_smart_callback_call(data, SIG_CURSOR_CHANGED, NULL);
1237    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
1238                                              &cx, &cy, &cw, &ch);
1239    wd->cursor_pos = edje_object_part_text_cursor_pos_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
1240    if (!wd->deferred_recalc_job)
1241      elm_widget_show_region_set(data, cx, cy, cw, ch);
1242    else
1243      {
1244         wd->deferred_cur = EINA_TRUE;
1245         wd->cx = cx;
1246         wd->cy = cy;
1247         wd->cw = cw;
1248         wd->ch = ch;
1249      }
1250 }
1251
1252 static void
1253 _signal_anchor_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1254 {
1255    Widget_Data *wd = elm_widget_data_get(data);
1256    if (!wd) return;
1257 }
1258
1259 static void
1260 _signal_anchor_up(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1261 {
1262    Widget_Data *wd = elm_widget_data_get(data);
1263    if (!wd) return;
1264 }
1265
1266 static void
1267 _signal_anchor_clicked(void *data, Evas_Object *obj __UNUSED__, const char *emission, const char *source __UNUSED__)
1268 {
1269    Widget_Data *wd = elm_widget_data_get(data);
1270    Elm_Entry_Anchor_Info ei;
1271    char *buf2, *p, *p2, *n;
1272    if (!wd) return;
1273    p = strrchr(emission, ',');
1274    if (p)
1275      {
1276         const Eina_List *geoms;
1277
1278         n = p + 1;
1279         p2 = p -1;
1280         while (p2 >= emission)
1281           {
1282              if (*p2 == ',') break;
1283              p2--;
1284           }
1285         p2++;
1286         buf2 = alloca(5 + p - p2);
1287         strncpy(buf2, p2, p - p2);
1288         buf2[p - p2] = 0;
1289         ei.name = n;
1290         ei.button = atoi(buf2);
1291         ei.x = ei.y = ei.w = ei.h = 0;
1292         geoms =
1293            edje_object_part_text_anchor_geometry_get(wd->ent, "elm.text", ei.name);
1294         if (geoms)
1295           {
1296              Evas_Textblock_Rectangle *r;
1297              const Eina_List *l;
1298              Evas_Coord px, py, x, y;
1299
1300              evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
1301              evas_pointer_output_xy_get(evas_object_evas_get(wd->ent), &px, &py);
1302              EINA_LIST_FOREACH(geoms, l, r)
1303                {
1304                   if (((r->x + x) <= px) && ((r->y + y) <= py) &&
1305                       ((r->x + x + r->w) > px) && ((r->y + y + r->h) > py))
1306                     {
1307                        ei.x = r->x + x;
1308                        ei.y = r->y + y;
1309                        ei.w = r->w;
1310                        ei.h = r->h;
1311                        break;
1312                     }
1313                }
1314           }
1315         if (!wd->disabled)
1316           evas_object_smart_callback_call(data, SIG_ANCHOR_CLICKED, &ei);
1317      }
1318 }
1319
1320 static void
1321 _signal_anchor_move(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1322 {
1323    Widget_Data *wd = elm_widget_data_get(data);
1324    if (!wd) return;
1325 }
1326
1327 static void
1328 _signal_anchor_in(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1329 {
1330    Widget_Data *wd = elm_widget_data_get(data);
1331    if (!wd) return;
1332 }
1333
1334 static void
1335 _signal_anchor_out(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1336 {
1337    Widget_Data *wd = elm_widget_data_get(data);
1338    if (!wd) return;
1339 }
1340
1341 static void
1342 _signal_key_enter(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1343 {
1344    Widget_Data *wd = elm_widget_data_get(data);
1345    if (!wd) return;
1346    evas_object_smart_callback_call(data, SIG_ACTIVATED, NULL);
1347 }
1348
1349 static void
1350 _signal_mouse_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1351 {
1352    Widget_Data *wd = elm_widget_data_get(data);
1353    if (!wd) return;
1354    evas_object_smart_callback_call(data, SIG_PRESS, NULL);
1355 }
1356
1357 static void
1358 _signal_mouse_clicked(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1359 {
1360    Widget_Data *wd = elm_widget_data_get(data);
1361    if (!wd) return;
1362    evas_object_smart_callback_call(data, SIG_CLICKED, NULL);
1363 }
1364
1365 static void
1366 _signal_mouse_double(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1367 {
1368    Widget_Data *wd = elm_widget_data_get(data);
1369    if (!wd) return;
1370    evas_object_smart_callback_call(data, SIG_CLICKED_DOUBLE, NULL);
1371 }
1372
1373 #ifdef HAVE_ELEMENTARY_X
1374 static Eina_Bool
1375 _event_selection_notify(void *data, int type __UNUSED__, void *event)
1376 {
1377    Widget_Data *wd = elm_widget_data_get(data);
1378    Ecore_X_Event_Selection_Notify *ev = event;
1379    if (!wd) return ECORE_CALLBACK_PASS_ON;
1380    if ((!wd->selection_asked) && (!wd->drag_selection_asked))
1381      return ECORE_CALLBACK_PASS_ON;
1382
1383    if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
1384        (ev->selection == ECORE_X_SELECTION_PRIMARY))
1385      {
1386         Ecore_X_Selection_Data_Text *text_data;
1387
1388         text_data = ev->data;
1389         if (text_data->data.content == ECORE_X_SELECTION_CONTENT_TEXT)
1390           {
1391              if (text_data->text)
1392                {
1393                   char *txt = _elm_util_text_to_mkup(text_data->text);
1394
1395                   if (txt)
1396                     {
1397                        elm_entry_entry_insert(data, txt);
1398                        free(txt);
1399                     }
1400                }
1401           }
1402         wd->selection_asked = EINA_FALSE;
1403      }
1404    else if (ev->selection == ECORE_X_SELECTION_XDND)
1405      {
1406         Ecore_X_Selection_Data_Text *text_data;
1407
1408         text_data = ev->data;
1409         if (text_data->data.content == ECORE_X_SELECTION_CONTENT_TEXT)
1410           {
1411              if (text_data->text)
1412                {
1413                   char *txt = _elm_util_text_to_mkup(text_data->text);
1414
1415                   if (txt)
1416                     {
1417                        /* Massive FIXME: this should be at the drag point */
1418                        elm_entry_entry_insert(data, txt);
1419                        free(txt);
1420                     }
1421                }
1422           }
1423         wd->drag_selection_asked = EINA_FALSE;
1424
1425         ecore_x_dnd_send_finished();
1426
1427      }
1428    return ECORE_CALLBACK_PASS_ON;
1429 }
1430
1431 static Eina_Bool
1432 _event_selection_clear(void *data __UNUSED__, int type __UNUSED__, void *event __UNUSED__)
1433 {
1434    /*
1435       Widget_Data *wd = elm_widget_data_get(data);
1436       Ecore_X_Event_Selection_Clear *ev = event;
1437       if (!wd) return ECORE_CALLBACK_PASS_ON;
1438       if (!wd->have_selection) return ECORE_CALLBACK_PASS_ON;
1439       if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
1440       (ev->selection == ECORE_X_SELECTION_PRIMARY))
1441       {
1442       elm_entry_select_none(data);
1443       }
1444       return 1;*/
1445    return ECORE_CALLBACK_PASS_ON;
1446 }
1447
1448
1449 static Eina_Bool
1450 _drag_drop_cb(void *data __UNUSED__, Evas_Object *obj, Elm_Selection_Data *drop)
1451 {
1452    Widget_Data *wd;
1453    Eina_Bool rv;
1454
1455    wd = elm_widget_data_get(obj);
1456
1457    if (!wd) return EINA_FALSE;
1458    printf("Inserting at (%d,%d) %s\n",drop->x,drop->y,(char*)drop->data);
1459
1460    edje_object_part_text_cursor_copy(wd->ent, "elm.text",
1461                                      EDJE_CURSOR_MAIN,/*->*/EDJE_CURSOR_USER);
1462    rv = edje_object_part_text_cursor_coord_set(wd->ent,"elm.text",
1463                                                EDJE_CURSOR_MAIN,drop->x,drop->y);
1464    if (!rv) printf("Warning: Failed to position cursor: paste anyway\n");
1465    elm_entry_entry_insert(obj, drop->data);
1466    edje_object_part_text_cursor_copy(wd->ent, "elm.text",
1467                                      EDJE_CURSOR_USER,/*->*/EDJE_CURSOR_MAIN);
1468
1469    return EINA_TRUE;
1470 }
1471 #endif
1472
1473 static Evas_Object *
1474 _get_item(void *data, Evas_Object *edje __UNUSED__, const char *part __UNUSED__, const char *item)
1475 {
1476    Widget_Data *wd = elm_widget_data_get(data);
1477    Evas_Object *o;
1478    Eina_List *l;
1479    Elm_Entry_Item_Provider *ip;
1480
1481    EINA_LIST_FOREACH(wd->item_providers, l, ip)
1482      {
1483         o = ip->func(ip->data, data, item);
1484         if (o) return o;
1485      }
1486    if (!strncmp(item, "file://", 7))
1487      {
1488         const char *fname = item + 7;
1489
1490         o = evas_object_image_filled_add(evas_object_evas_get(data));
1491         evas_object_image_file_set(o, fname, NULL);
1492         if (evas_object_image_load_error_get(o) == EVAS_LOAD_ERROR_NONE)
1493           {
1494              evas_object_show(o);
1495           }
1496         else
1497           {
1498              evas_object_del(o);
1499              o = edje_object_add(evas_object_evas_get(data));
1500              _elm_theme_object_set(data, o, "entry/emoticon", "wtf", elm_widget_style_get(data));
1501           }
1502         return o;
1503      }
1504    o = edje_object_add(evas_object_evas_get(data));
1505    if (!_elm_theme_object_set(data, o, "entry", item, elm_widget_style_get(data)))
1506      _elm_theme_object_set(data, o, "entry/emoticon", "wtf", elm_widget_style_get(data));
1507    return o;
1508 }
1509
1510 static void
1511 _text_filter(void *data, Evas_Object *edje __UNUSED__, const char *part __UNUSED__, Edje_Text_Filter_Type type, char **text)
1512 {
1513    Widget_Data *wd = elm_widget_data_get(data);
1514    Eina_List *l;
1515    Elm_Entry_Text_Filter *tf;
1516
1517    if (type == EDJE_TEXT_FILTER_FORMAT)
1518      return;
1519
1520    EINA_LIST_FOREACH(wd->text_filters, l, tf)
1521      {
1522         tf->func(tf->data, data, text);
1523         if (!*text)
1524           break;
1525      }
1526 }
1527
1528 /**
1529  * This adds an entry to @p parent object.
1530  *
1531  * @param parent The parent object
1532  * @return The new object or NULL if it cannot be created
1533  *
1534  * @ingroup Entry
1535  */
1536 EAPI Evas_Object *
1537 elm_entry_add(Evas_Object *parent)
1538 {
1539    Evas_Object *obj, *top;
1540    Evas *e;
1541    Widget_Data *wd;
1542
1543    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
1544
1545    ELM_SET_WIDTYPE(widtype, "entry");
1546    elm_widget_type_set(obj, "entry");
1547    elm_widget_sub_object_add(parent, obj);
1548    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
1549    elm_widget_data_set(obj, wd);
1550    elm_widget_del_hook_set(obj, _del_hook);
1551    elm_widget_del_pre_hook_set(obj, _del_pre_hook);
1552    elm_widget_theme_hook_set(obj, _theme_hook);
1553    elm_widget_disable_hook_set(obj, _disable_hook);
1554    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
1555    elm_widget_on_focus_region_hook_set(obj, _on_focus_region_hook);
1556    elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook);
1557    elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook);
1558    elm_object_cursor_set(obj, ELM_CURSOR_XTERM);
1559    elm_widget_can_focus_set(obj, EINA_TRUE);
1560    elm_widget_highlight_ignore_set(obj, EINA_TRUE);
1561
1562    wd->linewrap     = EINA_TRUE;
1563    wd->char_linewrap= EINA_FALSE;
1564    wd->editable     = EINA_TRUE;
1565    wd->disabled     = EINA_FALSE;
1566    wd->context_menu = EINA_TRUE;
1567    wd->autosave     = EINA_TRUE;
1568    wd->textonly     = EINA_FALSE;
1569
1570    wd->ent = edje_object_add(e);
1571    edje_object_item_provider_set(wd->ent, _get_item, obj);
1572    edje_object_text_insert_filter_callback_add(wd->ent,"elm.text", _text_filter, obj);
1573    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOVE, _move, obj);
1574    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_RESIZE, _resize, obj);
1575    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_DOWN,
1576                                   _mouse_down, obj);
1577    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_UP,
1578                                   _mouse_up, obj);
1579    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_MOVE,
1580                                   _mouse_move, obj);
1581
1582    _elm_theme_object_set(obj, wd->ent, "entry", "base", "default");
1583    edje_object_signal_callback_add(wd->ent, "entry,changed", "elm.text",
1584                                    _signal_entry_changed, obj);
1585    edje_object_signal_callback_add(wd->ent, "selection,start", "elm.text",
1586                                    _signal_selection_start, obj);
1587    edje_object_signal_callback_add(wd->ent, "selection,changed", "elm.text",
1588                                    _signal_selection_changed, obj);
1589    edje_object_signal_callback_add(wd->ent, "selection,cleared", "elm.text",
1590                                    _signal_selection_cleared, obj);
1591    edje_object_signal_callback_add(wd->ent, "entry,paste,request", "elm.text",
1592                                    _signal_entry_paste_request, obj);
1593    edje_object_signal_callback_add(wd->ent, "entry,copy,notify", "elm.text",
1594                                    _signal_entry_copy_notify, obj);
1595    edje_object_signal_callback_add(wd->ent, "entry,cut,notify", "elm.text",
1596                                    _signal_entry_cut_notify, obj);
1597    edje_object_signal_callback_add(wd->ent, "cursor,changed", "elm.text",
1598                                    _signal_cursor_changed, obj);
1599    edje_object_signal_callback_add(wd->ent, "anchor,mouse,down,*", "elm.text",
1600                                    _signal_anchor_down, obj);
1601    edje_object_signal_callback_add(wd->ent, "anchor,mouse,up,*", "elm.text",
1602                                    _signal_anchor_up, obj);
1603    edje_object_signal_callback_add(wd->ent, "anchor,mouse,clicked,*", "elm.text",
1604                                    _signal_anchor_clicked, obj);
1605    edje_object_signal_callback_add(wd->ent, "anchor,mouse,move,*", "elm.text",
1606                                    _signal_anchor_move, obj);
1607    edje_object_signal_callback_add(wd->ent, "anchor,mouse,in,*", "elm.text",
1608                                    _signal_anchor_in, obj);
1609    edje_object_signal_callback_add(wd->ent, "anchor,mouse,out,*", "elm.text",
1610                                    _signal_anchor_out, obj);
1611    edje_object_signal_callback_add(wd->ent, "entry,key,enter", "elm.text",
1612                                    _signal_key_enter, obj);
1613    edje_object_signal_callback_add(wd->ent, "mouse,down,1", "elm.text",
1614                                    _signal_mouse_down, obj);
1615    edje_object_signal_callback_add(wd->ent, "mouse,clicked,1", "elm.text",
1616                                    _signal_mouse_clicked, obj);
1617    edje_object_signal_callback_add(wd->ent, "mouse,down,1,double", "elm.text",
1618                                    _signal_mouse_double, obj);
1619    edje_object_part_text_set(wd->ent, "elm.text", "");
1620    if (_elm_config->desktop_entry)
1621       edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
1622    elm_widget_resize_object_set(obj, wd->ent);
1623    _sizing_eval(obj);
1624
1625 #ifdef HAVE_ELEMENTARY_X
1626    top = elm_widget_top_get(obj);
1627    if ((top) && (elm_win_xwindow_get(top)))
1628      {
1629         wd->sel_notify_handler =
1630            ecore_event_handler_add(ECORE_X_EVENT_SELECTION_NOTIFY,
1631                                    _event_selection_notify, obj);
1632         wd->sel_clear_handler =
1633            ecore_event_handler_add(ECORE_X_EVENT_SELECTION_CLEAR,
1634                                    _event_selection_clear, obj);
1635      }
1636
1637    elm_drop_target_add(obj, ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_IMAGE,
1638                        _drag_drop_cb, NULL);
1639 #endif
1640
1641    entries = eina_list_prepend(entries, obj);
1642
1643    // module - find module for entry
1644    wd->api = _module(obj);
1645    // if found - hook in
1646    if ((wd->api) && (wd->api->obj_hook)) wd->api->obj_hook(obj);
1647
1648    _mirrored_set(obj, elm_widget_mirrored_get(obj));
1649    // TODO: convert Elementary to subclassing of Evas_Smart_Class
1650    // TODO: and save some bytes, making descriptions per-class and not instance!
1651    evas_object_smart_callbacks_descriptions_set(obj, _signals);
1652    return obj;
1653 }
1654
1655
1656 /**
1657  * This sets the entry object not to line wrap.  All input will
1658  * be on a single line, and the entry box will extend with user input.
1659  *
1660  * @param obj The entry object
1661  * @param single_line If true, the text in the entry
1662  * will be on a single line.
1663  *
1664  * @ingroup Entry
1665  */
1666 EAPI void
1667 elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line)
1668 {
1669    ELM_CHECK_WIDTYPE(obj, widtype);
1670    Widget_Data *wd = elm_widget_data_get(obj);
1671    if (!wd) return;
1672    if (wd->single_line == single_line) return;
1673    wd->single_line = single_line;
1674    wd->linewrap = EINA_FALSE;
1675    wd->char_linewrap = EINA_FALSE;
1676    elm_entry_cnp_textonly_set(obj, EINA_TRUE);
1677    _theme_hook(obj);
1678 }
1679
1680 /**
1681  * This returns true if the entry has been set to single line mode.
1682  * See also elm_entry_single_line_set().
1683  *
1684  * @param obj The entry object
1685  * @return single_line If true, the text in the entry is set to display
1686  * on a single line.
1687  *
1688  * @ingroup Entry
1689  */
1690 EAPI Eina_Bool
1691 elm_entry_single_line_get(const Evas_Object *obj)
1692 {
1693    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1694    Widget_Data *wd = elm_widget_data_get(obj);
1695    if (!wd) return EINA_FALSE;
1696    return wd->single_line;
1697 }
1698
1699 /**
1700  * This sets the entry object to password mode.  All text entered
1701  * and/or displayed within the widget will be replaced with asterisks (*).
1702  *
1703  * @param obj The entry object
1704  * @param password If true, password mode is enabled.
1705  *
1706  * @ingroup Entry
1707  */
1708 EAPI void
1709 elm_entry_password_set(Evas_Object *obj, Eina_Bool password)
1710 {
1711    ELM_CHECK_WIDTYPE(obj, widtype);
1712    Widget_Data *wd = elm_widget_data_get(obj);
1713    if (!wd) return;
1714    if (wd->password == password) return;
1715    wd->password = password;
1716    wd->single_line = EINA_TRUE;
1717    wd->linewrap = EINA_FALSE;
1718    wd->char_linewrap = EINA_FALSE;
1719    _theme_hook(obj);
1720 }
1721
1722
1723 /**
1724  * This returns whether password mode is enabled.
1725  * See also elm_entry_password_set().
1726  *
1727  * @param obj The entry object
1728  * @return If true, the entry is set to display all characters
1729  * as asterisks (*).
1730  *
1731  * @ingroup Entry
1732  */
1733 EAPI Eina_Bool
1734 elm_entry_password_get(const Evas_Object *obj)
1735 {
1736    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1737    Widget_Data *wd = elm_widget_data_get(obj);
1738    if (!wd) return EINA_FALSE;
1739    return wd->password;
1740 }
1741
1742 /**
1743  * This sets the text displayed within the entry to @p entry.
1744  *
1745  * @param obj The entry object
1746  * @param entry The text to be displayed
1747  *
1748  * @ingroup Entry
1749  */
1750 EAPI void
1751 elm_entry_entry_set(Evas_Object *obj, const char *entry)
1752 {
1753    ELM_CHECK_WIDTYPE(obj, widtype);
1754    Widget_Data *wd = elm_widget_data_get(obj);
1755    if (!wd) return;
1756    if (!entry) entry = "";
1757    edje_object_part_text_set(wd->ent, "elm.text", entry);
1758    if (wd->text) eina_stringshare_del(wd->text);
1759    wd->text = NULL;
1760    wd->changed = EINA_TRUE;
1761    _sizing_eval(obj);
1762 }
1763
1764 /**
1765  * This returns the text currently shown in object @p entry.
1766  * See also elm_entry_entry_set().
1767  *
1768  * @param obj The entry object
1769  * @return The currently displayed text or NULL on failure
1770  *
1771  * @ingroup Entry
1772  */
1773 EAPI const char *
1774 elm_entry_entry_get(const Evas_Object *obj)
1775 {
1776    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1777    Widget_Data *wd = elm_widget_data_get(obj);
1778    const char *text;
1779    if (!wd) return NULL;
1780    if (wd->text) return wd->text;
1781    text = edje_object_part_text_get(wd->ent, "elm.text");
1782    if (!text)
1783      {
1784         ERR("text=NULL for edje %p, part 'elm.text'", wd->ent);
1785         return NULL;
1786      }
1787    eina_stringshare_replace(&wd->text, text);
1788    return wd->text;
1789 }
1790
1791
1792 /**
1793  * This returns EINA_TRUE if the entry is empty/there was an error
1794  * and EINA_FALSE if it is not empty.
1795  *
1796  * @param obj The entry object
1797  * @return If the entry is empty or not.
1798  *
1799  * @ingroup Entry
1800  */
1801 EAPI Eina_Bool
1802 elm_entry_is_empty(const Evas_Object *obj)
1803 {
1804    /* FIXME: until there's support for that in textblock, we just check
1805     * to see if the there is text or not. */
1806    ELM_CHECK_WIDTYPE(obj, widtype) EINA_TRUE;
1807    Widget_Data *wd = elm_widget_data_get(obj);
1808    const Evas_Object *tb;
1809    Evas_Textblock_Cursor *cur;
1810    Eina_Bool ret;
1811    if (!wd) return EINA_TRUE;
1812    /* It's a hack until we get the support suggested above.
1813     * We just create a cursor, point it to the begining, and then
1814     * try to advance it, if it can advance, the tb is not empty,
1815     * otherwise it is. */
1816    tb = edje_object_part_object_get(wd->ent, "elm.text");
1817    cur = evas_object_textblock_cursor_new((Evas_Object *) tb); /* This is
1818                                                                   actually, ok for the time being, thsese hackish stuff will be removed
1819                                                                   once evas 1.0 is out*/
1820    evas_textblock_cursor_pos_set(cur, 0);
1821    ret = evas_textblock_cursor_char_next(cur);
1822    evas_textblock_cursor_free(cur);
1823
1824    return !ret;
1825 }
1826
1827 /**
1828  * This returns all selected text within the entry.
1829  *
1830  * @param obj The entry object
1831  * @return The selected text within the entry or NULL on failure
1832  *
1833  * @ingroup Entry
1834  */
1835 EAPI const char *
1836 elm_entry_selection_get(const Evas_Object *obj)
1837 {
1838    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1839    Widget_Data *wd = elm_widget_data_get(obj);
1840    if (!wd) return NULL;
1841    return edje_object_part_text_selection_get(wd->ent, "elm.text");
1842 }
1843
1844 /**
1845  * This inserts text in @p entry where the current cursor position.
1846  *
1847  * This inserts text at the cursor position is as if it was typed
1848  * by the user (note this also allows markup which a user
1849  * can't just "type" as it would be converted to escaped text, so this
1850  * call can be used to insert things like emoticon items or bold push/pop
1851  * tags, other font and color change tags etc.)
1852  *
1853  * @param obj The entry object
1854  * @param entry The text to insert
1855  *
1856  * @ingroup Entry
1857  */
1858 EAPI void
1859 elm_entry_entry_insert(Evas_Object *obj, const char *entry)
1860 {
1861    ELM_CHECK_WIDTYPE(obj, widtype);
1862    Widget_Data *wd = elm_widget_data_get(obj);
1863    if (!wd) return;
1864    edje_object_part_text_insert(wd->ent, "elm.text", entry);
1865    wd->changed = EINA_TRUE;
1866    _sizing_eval(obj);
1867 }
1868
1869 /**
1870  * This enables word line wrapping in the entry object.  It is the opposite
1871  * of elm_entry_single_line_set().  Additionally, setting this disables
1872  * character line wrapping.
1873  * See also elm_entry_line_char_wrap_set().
1874  *
1875  * @param obj The entry object
1876  * @param wrap If true, the entry will be wrapped once it reaches the end
1877  * of the object. Wrapping will occur at the end of the word before the end of the
1878  * object.
1879  *
1880  * @ingroup Entry
1881  */
1882 EAPI void
1883 elm_entry_line_wrap_set(Evas_Object *obj, Eina_Bool wrap)
1884 {
1885    ELM_CHECK_WIDTYPE(obj, widtype);
1886    Widget_Data *wd = elm_widget_data_get(obj);
1887    if (!wd) return;
1888    if (wd->linewrap == wrap) return;
1889    wd->linewrap = wrap;
1890    if(wd->linewrap)
1891      wd->char_linewrap = EINA_FALSE;
1892    _theme_hook(obj);
1893 }
1894
1895 /**
1896  * This enables character line wrapping in the entry object.  It is the opposite
1897  * of elm_entry_single_line_set().  Additionally, setting this disables
1898  * word line wrapping.
1899  * See also elm_entry_line_wrap_set().
1900  *
1901  * @param obj The entry object
1902  * @param wrap If true, the entry will be wrapped once it reaches the end
1903  * of the object. Wrapping will occur immediately upon reaching the end of the object.
1904  *
1905  * @ingroup Entry
1906  */
1907 EAPI void
1908 elm_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap)
1909 {
1910    ELM_CHECK_WIDTYPE(obj, widtype);
1911    Widget_Data *wd = elm_widget_data_get(obj);
1912    if (!wd) return;
1913    if (wd->char_linewrap == wrap) return;
1914    wd->char_linewrap = wrap;
1915    if(wd->char_linewrap)
1916      wd->linewrap = EINA_FALSE;
1917    _theme_hook(obj);
1918 }
1919
1920 /**
1921  * This sets the editable attribute of the entry.
1922  *
1923  * @param obj The entry object
1924  * @param editable If true, the entry will be editable by the user.
1925  * If false, it will be set to the disabled state.
1926  *
1927  * @ingroup Entry
1928  */
1929 EAPI void
1930 elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable)
1931 {
1932    ELM_CHECK_WIDTYPE(obj, widtype);
1933    Widget_Data *wd = elm_widget_data_get(obj);
1934    if (!wd) return;
1935    if (wd->editable == editable) return;
1936    wd->editable = editable;
1937    _theme_hook(obj);
1938
1939 #ifdef HAVE_ELEMENTARY_X
1940    if (editable)
1941      elm_drop_target_add(obj, ELM_SEL_FORMAT_MARKUP, _drag_drop_cb, NULL);
1942    else
1943      elm_drop_target_del(obj);
1944 #endif
1945 }
1946
1947 /**
1948  * This gets the editable attribute of the entry.
1949  * See also elm_entry_editable_set().
1950  *
1951  * @param obj The entry object
1952  * @return If true, the entry is editable by the user.
1953  * If false, it is not editable by the user
1954  *
1955  * @ingroup Entry
1956  */
1957 EAPI Eina_Bool
1958 elm_entry_editable_get(const Evas_Object *obj)
1959 {
1960    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1961    Widget_Data *wd = elm_widget_data_get(obj);
1962    if (!wd) return EINA_FALSE;
1963    return wd->editable;
1964 }
1965
1966 /**
1967  * This drops any existing text selection within the entry.
1968  *
1969  * @param obj The entry object
1970  *
1971  * @ingroup Entry
1972  */
1973 EAPI void
1974 elm_entry_select_none(Evas_Object *obj)
1975 {
1976    ELM_CHECK_WIDTYPE(obj, widtype);
1977    Widget_Data *wd = elm_widget_data_get(obj);
1978    if (!wd) return;
1979    if (wd->selmode)
1980      {
1981         wd->selmode = EINA_FALSE;
1982         if (!_elm_config->desktop_entry)
1983            edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
1984         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
1985      }
1986    wd->have_selection = EINA_FALSE;
1987    edje_object_part_text_select_none(wd->ent, "elm.text");
1988 }
1989
1990 /**
1991  * This selects all text within the entry.
1992  *
1993  * @param obj The entry object
1994  *
1995  * @ingroup Entry
1996  */
1997 EAPI void
1998 elm_entry_select_all(Evas_Object *obj)
1999 {
2000    ELM_CHECK_WIDTYPE(obj, widtype);
2001    Widget_Data *wd = elm_widget_data_get(obj);
2002    if (!wd) return;
2003    if (wd->selmode)
2004      {
2005         wd->selmode = EINA_FALSE;
2006         if (!_elm_config->desktop_entry)
2007            edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
2008         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
2009      }
2010    wd->have_selection = EINA_TRUE;
2011    edje_object_part_text_select_all(wd->ent, "elm.text");
2012 }
2013
2014 /**
2015  * This function returns the geometry of the cursor.
2016  *
2017  * It's useful if you want to draw something on the cursor (or where it is),
2018  * or for example in the case of scrolled entry where you want to show the
2019  * cursor.
2020  *
2021  * @param obj The entry object
2022  * @param x returned geometry
2023  * @param y returned geometry
2024  * @param w returned geometry
2025  * @param h returned geometry
2026  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2027  *
2028  * @ingroup Entry
2029  */
2030 EAPI Eina_Bool
2031 elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h)
2032 {
2033    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2034    Widget_Data *wd = elm_widget_data_get(obj);
2035    if (!wd) return EINA_FALSE;
2036    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", x, y, w, h);
2037    return EINA_TRUE;
2038 }
2039
2040 /**
2041  * This moves the cursor one place to the right within the entry.
2042  *
2043  * @param obj The entry object
2044  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2045  *
2046  * @ingroup Entry
2047  */
2048 EAPI Eina_Bool
2049 elm_entry_cursor_next(Evas_Object *obj)
2050 {
2051    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2052    Widget_Data *wd = elm_widget_data_get(obj);
2053    if (!wd) return EINA_FALSE;
2054    return edje_object_part_text_cursor_next(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2055 }
2056
2057 /**
2058  * This moves the cursor one place to the left within the entry.
2059  *
2060  * @param obj The entry object
2061  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2062  *
2063  * @ingroup Entry
2064  */
2065 EAPI Eina_Bool
2066 elm_entry_cursor_prev(Evas_Object *obj)
2067 {
2068    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2069    Widget_Data *wd = elm_widget_data_get(obj);
2070    if (!wd) return EINA_FALSE;
2071    return edje_object_part_text_cursor_prev(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2072 }
2073
2074 /**
2075  * This moves the cursor one line up within the entry.
2076  *
2077  * @param obj The entry object
2078  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2079  *
2080  * @ingroup Entry
2081  */
2082 EAPI Eina_Bool
2083 elm_entry_cursor_up(Evas_Object *obj)
2084 {
2085    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2086    Widget_Data *wd = elm_widget_data_get(obj);
2087    if (!wd) return EINA_FALSE;
2088    return edje_object_part_text_cursor_up(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2089 }
2090
2091 /**
2092  * This moves the cursor one line down within the entry.
2093  *
2094  * @param obj The entry object
2095  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2096  *
2097  * @ingroup Entry
2098  */
2099 EAPI Eina_Bool
2100 elm_entry_cursor_down(Evas_Object *obj)
2101 {
2102    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2103    Widget_Data *wd = elm_widget_data_get(obj);
2104    if (!wd) return EINA_FALSE;
2105    return edje_object_part_text_cursor_down(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2106 }
2107
2108 /**
2109  * This moves the cursor to the beginning of the entry.
2110  *
2111  * @param obj The entry object
2112  *
2113  * @ingroup Entry
2114  */
2115 EAPI void
2116 elm_entry_cursor_begin_set(Evas_Object *obj)
2117 {
2118    ELM_CHECK_WIDTYPE(obj, widtype);
2119    Widget_Data *wd = elm_widget_data_get(obj);
2120    if (!wd) return;
2121    edje_object_part_text_cursor_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2122 }
2123
2124 /**
2125  * This moves the cursor to the end of the entry.
2126  *
2127  * @param obj The entry object
2128  *
2129  * @ingroup Entry
2130  */
2131 EAPI void
2132 elm_entry_cursor_end_set(Evas_Object *obj)
2133 {
2134    ELM_CHECK_WIDTYPE(obj, widtype);
2135    Widget_Data *wd = elm_widget_data_get(obj);
2136    if (!wd) return;
2137    edje_object_part_text_cursor_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2138 }
2139
2140 /**
2141  * This moves the cursor to the beginning of the current line.
2142  *
2143  * @param obj The entry object
2144  *
2145  * @ingroup Entry
2146  */
2147 EAPI void
2148 elm_entry_cursor_line_begin_set(Evas_Object *obj)
2149 {
2150    ELM_CHECK_WIDTYPE(obj, widtype);
2151    Widget_Data *wd = elm_widget_data_get(obj);
2152    if (!wd) return;
2153    edje_object_part_text_cursor_line_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2154 }
2155
2156 /**
2157  * This moves the cursor to the end of the current line.
2158  *
2159  * @param obj The entry object
2160  *
2161  * @ingroup Entry
2162  */
2163 EAPI void
2164 elm_entry_cursor_line_end_set(Evas_Object *obj)
2165 {
2166    ELM_CHECK_WIDTYPE(obj, widtype);
2167    Widget_Data *wd = elm_widget_data_get(obj);
2168    if (!wd) return;
2169    edje_object_part_text_cursor_line_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2170 }
2171
2172 /**
2173  * This begins a selection within the entry as though
2174  * the user were holding down the mouse button to make a selection.
2175  *
2176  * @param obj The entry object
2177  *
2178  * @ingroup Entry
2179  */
2180 EAPI void
2181 elm_entry_cursor_selection_begin(Evas_Object *obj)
2182 {
2183    ELM_CHECK_WIDTYPE(obj, widtype);
2184    Widget_Data *wd = elm_widget_data_get(obj);
2185    if (!wd) return;
2186    edje_object_part_text_select_begin(wd->ent, "elm.text");
2187 }
2188
2189 /**
2190  * This ends a selection within the entry as though
2191  * the user had just released the mouse button while making a selection.
2192  *
2193  * @param obj The entry object
2194  *
2195  * @ingroup Entry
2196  */
2197 EAPI void
2198 elm_entry_cursor_selection_end(Evas_Object *obj)
2199 {
2200    ELM_CHECK_WIDTYPE(obj, widtype);
2201    Widget_Data *wd = elm_widget_data_get(obj);
2202    if (!wd) return;
2203    edje_object_part_text_select_extend(wd->ent, "elm.text");
2204 }
2205
2206 /**
2207  * TODO: fill this in
2208  *
2209  * @param obj The entry object
2210  * @return TODO: fill this in
2211  *
2212  * @ingroup Entry
2213  */
2214 EAPI Eina_Bool
2215 elm_entry_cursor_is_format_get(const Evas_Object *obj)
2216 {
2217    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2218    Widget_Data *wd = elm_widget_data_get(obj);
2219    if (!wd) return EINA_FALSE;
2220    return edje_object_part_text_cursor_is_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2221 }
2222
2223 /**
2224  * This returns whether the cursor is visible.
2225  *
2226  * @param obj The entry object
2227  * @return If true, the cursor is visible.
2228  *
2229  * @ingroup Entry
2230  */
2231 EAPI Eina_Bool
2232 elm_entry_cursor_is_visible_format_get(const Evas_Object *obj)
2233 {
2234    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2235    Widget_Data *wd = elm_widget_data_get(obj);
2236    if (!wd) return EINA_FALSE;
2237    return edje_object_part_text_cursor_is_visible_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2238 }
2239
2240 /**
2241  * TODO: fill this in
2242  *
2243  * @param obj The entry object
2244  * @return TODO: fill this in
2245  *
2246  * @ingroup Entry
2247  */
2248 EAPI const char *
2249 elm_entry_cursor_content_get(const Evas_Object *obj)
2250 {
2251    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2252    Widget_Data *wd = elm_widget_data_get(obj);
2253    if (!wd) return NULL;
2254    return edje_object_part_text_cursor_content_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2255 }
2256
2257 /**
2258  * Sets the cursor position in the entry to the given value
2259  *
2260  * @param obj The entry object
2261  * @param pos The position of the cursor
2262  *
2263  * @ingroup Entry
2264  */
2265 EAPI void
2266 elm_entry_cursor_pos_set(Evas_Object *obj, int pos)
2267 {
2268    ELM_CHECK_WIDTYPE(obj, widtype);
2269    Widget_Data *wd = elm_widget_data_get(obj);
2270    if (!wd) return;
2271    edje_object_part_text_cursor_pos_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN, pos);
2272    edje_object_message_signal_process(wd->ent);
2273 }
2274
2275 /**
2276  * Retrieves the current position of the cursor in the entry
2277  *
2278  * @param obj The entry object
2279  * @return The cursor position
2280  *
2281  * @ingroup Entry
2282  */
2283 EAPI int
2284 elm_entry_cursor_pos_get(const Evas_Object *obj)
2285 {
2286    ELM_CHECK_WIDTYPE(obj, widtype) 0;
2287    Widget_Data *wd = elm_widget_data_get(obj);
2288    if (!wd) return 0;
2289    return edje_object_part_text_cursor_pos_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2290 }
2291
2292 /**
2293  * This executes a "cut" action on the selected text in the entry.
2294  *
2295  * @param obj The entry object
2296  *
2297  * @ingroup Entry
2298  */
2299 EAPI void
2300 elm_entry_selection_cut(Evas_Object *obj)
2301 {
2302    ELM_CHECK_WIDTYPE(obj, widtype);
2303    Widget_Data *wd = elm_widget_data_get(obj);
2304    if (!wd) return;
2305    _cut(obj, NULL, NULL);
2306 }
2307
2308 /**
2309  * This executes a "copy" action on the selected text in the entry.
2310  *
2311  * @param obj The entry object
2312  *
2313  * @ingroup Entry
2314  */
2315 EAPI void
2316 elm_entry_selection_copy(Evas_Object *obj)
2317 {
2318    ELM_CHECK_WIDTYPE(obj, widtype);
2319    Widget_Data *wd = elm_widget_data_get(obj);
2320    if (!wd) return;
2321    _copy(obj, NULL, NULL);
2322 }
2323
2324 /**
2325  * This executes a "paste" action in the entry.
2326  *
2327  * @param obj The entry object
2328  *
2329  * @ingroup Entry
2330  */
2331 EAPI void
2332 elm_entry_selection_paste(Evas_Object *obj)
2333 {
2334    ELM_CHECK_WIDTYPE(obj, widtype);
2335    Widget_Data *wd = elm_widget_data_get(obj);
2336    if (!wd) return;
2337    _paste(obj, NULL, NULL);
2338 }
2339
2340 /**
2341  * This clears and frees the items in a entry's contextual (right click) menu.
2342  *
2343  * @param obj The entry object
2344  *
2345  * @ingroup Entry
2346  */
2347 EAPI void
2348 elm_entry_context_menu_clear(Evas_Object *obj)
2349 {
2350    ELM_CHECK_WIDTYPE(obj, widtype);
2351    Widget_Data *wd = elm_widget_data_get(obj);
2352    Elm_Entry_Context_Menu_Item *it;
2353    if (!wd) return;
2354    EINA_LIST_FREE(wd->items, it)
2355      {
2356         eina_stringshare_del(it->label);
2357         eina_stringshare_del(it->icon_file);
2358         eina_stringshare_del(it->icon_group);
2359         free(it);
2360      }
2361 }
2362
2363 /**
2364  * This adds an item to the entry's contextual menu.
2365  *
2366  * @param obj The entry object
2367  * @param label The item's text label
2368  * @param icon_file The item's icon file
2369  * @param icon_type The item's icon type
2370  * @param func The callback to execute when the item is clicked
2371  * @param data The data to associate with the item for related functions
2372  *
2373  * @ingroup Entry
2374  */
2375 EAPI void
2376 elm_entry_context_menu_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, Evas_Smart_Cb func, const void *data)
2377 {
2378    ELM_CHECK_WIDTYPE(obj, widtype);
2379    Widget_Data *wd = elm_widget_data_get(obj);
2380    Elm_Entry_Context_Menu_Item *it;
2381    if (!wd) return;
2382    it = calloc(1, sizeof(Elm_Entry_Context_Menu_Item));
2383    if (!it) return;
2384    wd->items = eina_list_append(wd->items, it);
2385    it->obj = obj;
2386    it->label = eina_stringshare_add(label);
2387    it->icon_file = eina_stringshare_add(icon_file);
2388    it->icon_type = icon_type;
2389    it->func = func;
2390    it->data = (void *)data;
2391 }
2392
2393 /**
2394  * This disables the entry's contextual (right click) menu.
2395  *
2396  * @param obj The entry object
2397  * @param disabled If true, the menu is disabled
2398  *
2399  * @ingroup Entry
2400  */
2401 EAPI void
2402 elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled)
2403 {
2404    ELM_CHECK_WIDTYPE(obj, widtype);
2405    Widget_Data *wd = elm_widget_data_get(obj);
2406    if (!wd) return;
2407    if (wd->context_menu == !disabled) return;
2408    wd->context_menu = !disabled;
2409 }
2410
2411 /**
2412  * This returns whether the entry's contextual (right click) menu is disabled.
2413  *
2414  * @param obj The entry object
2415  * @return If true, the menu is disabled
2416  *
2417  * @ingroup Entry
2418  */
2419 EAPI Eina_Bool
2420 elm_entry_context_menu_disabled_get(const Evas_Object *obj)
2421 {
2422    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2423    Widget_Data *wd = elm_widget_data_get(obj);
2424    if (!wd) return EINA_FALSE;
2425    return !wd->context_menu;
2426 }
2427
2428 /**
2429  * This appends a custom item provider to the list for that entry
2430  *
2431  * This appends the given callback. The list is walked from beginning to end
2432  * with each function called given the item href string in the text. If the
2433  * function returns an object handle other than NULL (it should create an
2434  * and object to do this), then this object is used to replace that item. If
2435  * not the next provider is called until one provides an item object, or the
2436  * default provider in entry does.
2437  *
2438  * @param obj The entry object
2439  * @param func The function called to provide the item object
2440  * @param data The data passed to @p func
2441  *
2442  * @ingroup Entry
2443  */
2444 EAPI void
2445 elm_entry_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
2446 {
2447    ELM_CHECK_WIDTYPE(obj, widtype);
2448    Widget_Data *wd = elm_widget_data_get(obj);
2449    if (!wd) return;
2450    EINA_SAFETY_ON_NULL_RETURN(func);
2451    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
2452    if (!ip) return;
2453    ip->func = func;
2454    ip->data = data;
2455    wd->item_providers = eina_list_append(wd->item_providers, ip);
2456 }
2457
2458 /**
2459  * This prepends a custom item provider to the list for that entry
2460  *
2461  * This prepends the given callback. See elm_entry_item_provider_append() for
2462  * more information
2463  *
2464  * @param obj The entry object
2465  * @param func The function called to provide the item object
2466  * @param data The data passed to @p func
2467  *
2468  * @ingroup Entry
2469  */
2470 EAPI void
2471 elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
2472 {
2473    ELM_CHECK_WIDTYPE(obj, widtype);
2474    Widget_Data *wd = elm_widget_data_get(obj);
2475    if (!wd) return;
2476    EINA_SAFETY_ON_NULL_RETURN(func);
2477    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
2478    if (!ip) return;
2479    ip->func = func;
2480    ip->data = data;
2481    wd->item_providers = eina_list_prepend(wd->item_providers, ip);
2482 }
2483
2484 /**
2485  * This removes a custom item provider to the list for that entry
2486  *
2487  * This removes the given callback. See elm_entry_item_provider_append() for
2488  * more information
2489  *
2490  * @param obj The entry object
2491  * @param func The function called to provide the item object
2492  * @param data The data passed to @p func
2493  *
2494  * @ingroup Entry
2495  */
2496 EAPI void
2497 elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
2498 {
2499    ELM_CHECK_WIDTYPE(obj, widtype);
2500    Widget_Data *wd = elm_widget_data_get(obj);
2501    Eina_List *l;
2502    Elm_Entry_Item_Provider *ip;
2503    if (!wd) return;
2504    EINA_SAFETY_ON_NULL_RETURN(func);
2505    EINA_LIST_FOREACH(wd->item_providers, l, ip)
2506      {
2507         if ((ip->func == func) && ((!data) || (ip->data == data)))
2508           {
2509              wd->item_providers = eina_list_remove_list(wd->item_providers, l);
2510              free(ip);
2511              return;
2512           }
2513      }
2514 }
2515
2516 /**
2517  * Append a filter function for text inserted in the entry
2518  *
2519  * Append the given callback to the list. This functions will be called
2520  * whenever any text is inserted into the entry, with the text to be inserted
2521  * as a parameter. The callback function is free to alter the text in any way
2522  * it wants, but it must remember to free the given pointer and update it.
2523  * If the new text is to be discarded, the function can free it and set it text
2524  * parameter to NULL. This will also prevent any following filters from being
2525  * called.
2526  *
2527  * @param obj The entry object
2528  * @param func The function to use as text filter
2529  * @param data User data to pass to @p func
2530  *
2531  * @ingroup Entry
2532  */
2533 EAPI void
2534 elm_entry_text_filter_append(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
2535 {
2536    Widget_Data *wd;
2537    Elm_Entry_Text_Filter *tf;
2538    ELM_CHECK_WIDTYPE(obj, widtype);
2539
2540    wd = elm_widget_data_get(obj);
2541
2542    EINA_SAFETY_ON_NULL_RETURN(func);
2543
2544    tf = _filter_new(func, data);
2545    if (!tf) return;
2546
2547    wd->text_filters = eina_list_append(wd->text_filters, tf);
2548 }
2549
2550 /**
2551  * Prepend a filter function for text insdrted in the entry
2552  *
2553  * Prepend the given callback to the list. See elm_entry_text_filter_append()
2554  * for more information
2555  *
2556  * @param obj The entry object
2557  * @param func The function to use as text filter
2558  * @param data User data to pass to @p func
2559  *
2560  * @ingroup Entry
2561  */
2562 EAPI void
2563 elm_entry_text_filter_prepend(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
2564 {
2565    Widget_Data *wd;
2566    Elm_Entry_Text_Filter *tf;
2567    ELM_CHECK_WIDTYPE(obj, widtype);
2568
2569    wd = elm_widget_data_get(obj);
2570
2571    EINA_SAFETY_ON_NULL_RETURN(func);
2572
2573    tf = _filter_new(func, data);
2574    if (!tf) return;
2575
2576    wd->text_filters = eina_list_prepend(wd->text_filters, tf);
2577 }
2578
2579 /**
2580  * Remove a filter from the list
2581  *
2582  * Removes the given callback from the filter list. See elm_entry_text_filter_append()
2583  * for more information.
2584  *
2585  * @param obj The entry object
2586  * @param func The filter function to remove
2587  * @param data The user data passed when adding the function
2588  *
2589  * @ingroup Entry
2590  */
2591 EAPI void
2592 elm_entry_text_filter_remove(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
2593 {
2594    Widget_Data *wd;
2595    Eina_List *l;
2596    Elm_Entry_Text_Filter *tf;
2597    ELM_CHECK_WIDTYPE(obj, widtype);
2598
2599    wd = elm_widget_data_get(obj);
2600
2601    EINA_SAFETY_ON_NULL_RETURN(func);
2602
2603    EINA_LIST_FOREACH(wd->text_filters, l, tf)
2604      {
2605         if ((tf->func == func) && ((!data) || (tf->data == data)))
2606           {
2607              wd->text_filters = eina_list_remove_list(wd->text_filters, l);
2608              _filter_free(tf);
2609              return;
2610           }
2611      }
2612 }
2613
2614 /**
2615  * This converts a markup (HTML-like) string into UTF-8.
2616  * Returning string is obtained with malloc.
2617  * After use the returned string, it should be freed.
2618  *
2619  * @param s The string (in markup) to be converted
2620  * @return The converted string (in UTF-8). It should be freed.
2621  *
2622  * @ingroup Entry
2623  */
2624 EAPI char *
2625 elm_entry_markup_to_utf8(const char *s)
2626 {
2627    char *ss = _elm_util_mkup_to_text(s);
2628    if (!ss) ss = strdup("");
2629    return ss;
2630 }
2631
2632 /**
2633  * This converts a UTF-8 string into markup (HTML-like).
2634  * Returning string is obtained with malloc.
2635  * After use the returned string, it should be freed.
2636  *
2637  * @param s The string (in UTF-8) to be converted
2638  * @return The converted string (in markup). It should be freed.
2639  *
2640  * @ingroup Entry
2641  */
2642 EAPI char *
2643 elm_entry_utf8_to_markup(const char *s)
2644 {
2645    char *ss = _elm_util_text_to_mkup(s);
2646    if (!ss) ss = strdup("");
2647    return ss;
2648 }
2649
2650 /**
2651  * Filter inserted text based on user defined character and byte limits
2652  *
2653  * Add this filter to an entry to limit the characters that it will accept
2654  * based the the contents of the provided Elm_Entry_Filter_Limit_Size.
2655  * The funtion works on the UTF-8 representation of the string, converting
2656  * it from the set markup, thus not accounting for any format in it.
2657  *
2658  * The user must create an Elm_Entry_Filter_Limit_Size structure and pass
2659  * it as data when setting the filter. In it it's possible to set limits
2660  * by character count or bytes (any of them is disabled if 0), and both can
2661  * be set at the same time. In that case, it first checks for characters,
2662  * then bytes.
2663  *
2664  * The function will cut the inserted text in order to allow only the first
2665  * number of characters that are still allowed. The cut is made in
2666  * characters, even when limiting by bytes, in order to always contain
2667  * valid ones and avoid half unicode characters making it in.
2668  *
2669  * @ingroup Entry
2670  */
2671 EAPI void
2672 elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text)
2673 {
2674    Elm_Entry_Filter_Limit_Size *lim = data;
2675    char *current;
2676    int len, newlen;
2677    const char *(*text_get)(const Evas_Object *);
2678    const char *widget_type;
2679
2680    EINA_SAFETY_ON_NULL_RETURN(data);
2681    EINA_SAFETY_ON_NULL_RETURN(entry);
2682    EINA_SAFETY_ON_NULL_RETURN(text);
2683
2684    /* hack. I don't want to copy the entire function to work with
2685     * scrolled_entry */
2686    widget_type = elm_widget_type_get(entry);
2687    if (!strcmp(widget_type, "entry"))
2688      text_get = elm_entry_entry_get;
2689    else if (!strcmp(widget_type, "scrolled_entry"))
2690      text_get = elm_scrolled_entry_entry_get;
2691    else /* huh? */
2692      return;
2693
2694    current = elm_entry_markup_to_utf8(text_get(entry));
2695
2696    if (lim->max_char_count > 0)
2697      {
2698         int cut;
2699         len = evas_string_char_len_get(current);
2700         if (len >= lim->max_char_count)
2701           {
2702              free(*text);
2703              free(current);
2704              *text = NULL;
2705              return;
2706           }
2707         newlen = evas_string_char_len_get(*text);
2708         cut = strlen(*text);
2709         while ((len + newlen) > lim->max_char_count)
2710           {
2711              cut = evas_string_char_prev_get(*text, cut, NULL);
2712              newlen--;
2713           }
2714         (*text)[cut] = 0;
2715      }
2716
2717    if (lim->max_byte_count > 0)
2718      {
2719         len = strlen(current);
2720         if (len >= lim->max_byte_count)
2721           {
2722              free(*text);
2723              free(current);
2724              *text = NULL;
2725              return;
2726           }
2727         newlen = strlen(*text);
2728         while ((len + newlen) > lim->max_byte_count)
2729           {
2730              int p = evas_string_char_prev_get(*text, newlen, NULL);
2731              newlen -= (newlen - p);
2732           }
2733         if (newlen)
2734           (*text)[newlen] = 0;
2735         else
2736           {
2737              free(*text);
2738              *text = NULL;
2739           }
2740      }
2741    free(current);
2742 }
2743
2744 /**
2745  * Filter inserted text based on accepted or rejected sets of characters
2746  *
2747  * Add this filter to an entry to restrict the set of accepted characters
2748  * based on the sets in the provided Elm_Entry_Filter_Accept_Set.
2749  * This structure contains both accepted and rejected sets, but they are
2750  * mutually exclusive. If accepted is set, it will be used, otherwise it
2751  * goes on to the rejected set.
2752  */
2753 EAPI void
2754 elm_entry_filter_accept_set(void *data, Evas_Object *entry __UNUSED__, char **text)
2755 {
2756    Elm_Entry_Filter_Accept_Set *as = data;
2757    const char *set;
2758    char *insert;
2759    Eina_Bool goes_in;
2760    int read_idx, last_read_idx = 0, read_char;
2761
2762    EINA_SAFETY_ON_NULL_RETURN(data);
2763    EINA_SAFETY_ON_NULL_RETURN(text);
2764
2765    if ((!as->accepted) && (!as->rejected))
2766      return;
2767
2768    if (as->accepted)
2769      {
2770         set = as->accepted;
2771         goes_in = EINA_TRUE;
2772      }
2773    else
2774      {
2775         set = as->rejected;
2776         goes_in = EINA_FALSE;
2777      }
2778
2779    insert = *text;
2780    read_idx = evas_string_char_next_get(*text, 0, &read_char);
2781    while (read_char)
2782      {
2783         int cmp_idx, cmp_char;
2784         Eina_Bool in_set = EINA_FALSE;
2785
2786         cmp_idx = evas_string_char_next_get(set, 0, &cmp_char);
2787         while (cmp_char)
2788           {
2789              if (read_char == cmp_char)
2790                {
2791                   in_set = EINA_TRUE;
2792                   break;
2793                }
2794              cmp_idx = evas_string_char_next_get(set, cmp_idx, &cmp_char);
2795           }
2796         if (in_set == goes_in)
2797           {
2798              int size = read_idx - last_read_idx;
2799              const char *src = (*text) + last_read_idx;
2800              if (src != insert)
2801                memcpy(insert, *text + last_read_idx, size);
2802              insert += size;
2803           }
2804         last_read_idx = read_idx;
2805         read_idx = evas_string_char_next_get(*text, read_idx, &read_char);
2806      }
2807    *insert = 0;
2808 }
2809
2810 /**
2811  * This sets the file (and implicitly loads it) for the text to display and
2812  * then edit. All changes are written back to the file after a short delay if
2813  * the entry object is set to autosave.
2814  *
2815  * @param obj The entry object
2816  * @param file The path to the file to load and save
2817  * @param format The file format
2818  *
2819  * @ingroup Entry
2820  */
2821 EAPI void
2822 elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format)
2823 {
2824    ELM_CHECK_WIDTYPE(obj, widtype);
2825    Widget_Data *wd = elm_widget_data_get(obj);
2826    if (!wd) return;
2827    if (wd->delay_write)
2828      {
2829         ecore_timer_del(wd->delay_write);
2830         wd->delay_write = NULL;
2831      }
2832    if (wd->autosave) _save(obj);
2833    eina_stringshare_replace(&wd->file, file);
2834    wd->format = format;
2835    _load(obj);
2836 }
2837
2838 /**
2839  * Gets the file to load and save and the file format
2840  *
2841  * @param obj The entry object
2842  * @param file The path to the file to load and save
2843  * @param format The file format
2844  *
2845  * @ingroup Entry
2846  */
2847 EAPI void
2848 elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format)
2849 {
2850    ELM_CHECK_WIDTYPE(obj, widtype);
2851    Widget_Data *wd = elm_widget_data_get(obj);
2852    if (!wd) return;
2853    if (file) *file = wd->file;
2854    if (format) *format = wd->format;
2855 }
2856
2857 /**
2858  * This function writes any changes made to the file set with
2859  * elm_entry_file_set()
2860  *
2861  * @param obj The entry object
2862  *
2863  * @ingroup Entry
2864  */
2865 EAPI void
2866 elm_entry_file_save(Evas_Object *obj)
2867 {
2868    ELM_CHECK_WIDTYPE(obj, widtype);
2869    Widget_Data *wd = elm_widget_data_get(obj);
2870    if (!wd) return;
2871    if (wd->delay_write)
2872      {
2873         ecore_timer_del(wd->delay_write);
2874         wd->delay_write = NULL;
2875      }
2876    _save(obj);
2877    wd->delay_write = ecore_timer_add(2.0, _delay_write, obj);
2878 }
2879
2880 /**
2881  * This sets the entry object to 'autosave' the loaded text file or not.
2882  *
2883  * @param obj The entry object
2884  * @param autosave Autosave the loaded file or not
2885  *
2886  * @ingroup Entry
2887  */
2888 EAPI void
2889 elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave)
2890 {
2891    ELM_CHECK_WIDTYPE(obj, widtype);
2892    Widget_Data *wd = elm_widget_data_get(obj);
2893    if (!wd) return;
2894    wd->autosave = !!autosave;
2895 }
2896
2897 /**
2898  * This gets the entry object's 'autosave' status.
2899  *
2900  * @param obj The entry object
2901  * @return Autosave the loaded file or not
2902  *
2903  * @ingroup Entry
2904  */
2905 EAPI Eina_Bool
2906 elm_entry_autosave_get(const Evas_Object *obj)
2907 {
2908    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2909    Widget_Data *wd = elm_widget_data_get(obj);
2910    if (!wd) return EINA_FALSE;
2911    return wd->autosave;
2912 }
2913
2914
2915 /**
2916  * Control pasting of text and images for the widget.
2917  *
2918  * Normally the entry allows both text and images to be pasted.  By setting
2919  * textonly to be true, this prevents images from being pasted.
2920  *
2921  * Note this only changes the behaviour of text.
2922  *
2923  * @param obj The entry object
2924  * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is text+image+other.
2925  *
2926  * @ingroup Entry
2927  */
2928 EAPI void
2929 elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly)
2930 {
2931    Elm_Sel_Format format = ELM_SEL_FORMAT_MARKUP;
2932    ELM_CHECK_WIDTYPE(obj, widtype);
2933    Widget_Data *wd = elm_widget_data_get(obj);
2934    if (!wd) return;
2935    textonly = !!textonly;
2936    if (wd->textonly == textonly) return;
2937    wd->textonly = !!textonly;
2938    if (!textonly) format |= ELM_SEL_FORMAT_IMAGE;
2939 #ifdef HAVE_ELEMENTARY_X
2940    elm_drop_target_add(obj, format, _drag_drop_cb, NULL);
2941 #endif
2942 }
2943
2944 /**
2945  * Getting elm_entry text paste/drop mode.
2946  *
2947  * In textonly mode, only text may be pasted or dropped into the widget.
2948  *
2949  * @param obj The entry object
2950  * @return If the widget only accepts text from pastes.
2951  *
2952  * @ingroup Entry
2953  */
2954 EAPI Eina_Bool
2955 elm_entry_cnp_textonly_get(Evas_Object *obj)
2956 {
2957    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2958    Widget_Data *wd = elm_widget_data_get(obj);
2959    if (!wd) return EINA_FALSE;
2960    return wd->textonly;
2961 }
2962