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