[TC-editifield, entry] fix fails
[framework/uifw/elementary.git] / src / lib / elm_entry.c
1 #include <Elementary.h>
2 #include <Elementary_Cursor.h>
3 #include "elm_priv.h"
4 #include "elm_module_priv.h"
5
6 /**
7  * @defgroup Entry Entry
8  *
9  * An entry is a convenience widget which shows
10  * a box that the user can enter text into.  Unlike a
11  * @ref Scrolled_Entry widget, entries DO NOT scroll with user
12  * input.  Entry widgets are capable of expanding past the
13  * boundaries of the window, thus resizing the window to its
14  * own length.
15  *
16  * You can also insert "items" in the entry with:
17  *
18  * \<item size=16x16 vsize=full href=emoticon/haha\>\</item\>
19  *
20  * for example. sizing can be set bu size=WxH, relsize=WxH or absize=WxH with
21  * vsize=ascent or vsize=full. the href=NAME sets the item name. Entry
22  * supports a list of emoticon names by default. These are:
23  *
24  * - emoticon/angry
25  * - emoticon/angry-shout
26  * - emoticon/crazy-laugh
27  * - emoticon/evil-laugh
28  * - emoticon/evil
29  * - emoticon/goggle-smile
30  * - emoticon/grumpy
31  * - emoticon/grumpy-smile
32  * - emoticon/guilty
33  * - emoticon/guilty-smile
34  * - emoticon/haha
35  * - emoticon/half-smile
36  * - emoticon/happy-panting
37  * - emoticon/happy
38  * - emoticon/indifferent
39  * - emoticon/kiss
40  * - emoticon/knowing-grin
41  * - emoticon/laugh
42  * - emoticon/little-bit-sorry
43  * - emoticon/love-lots
44  * - emoticon/love
45  * - emoticon/minimal-smile
46  * - emoticon/not-happy
47  * - emoticon/not-impressed
48  * - emoticon/omg
49  * - emoticon/opensmile
50  * - emoticon/smile
51  * - emoticon/sorry
52  * - emoticon/squint-laugh
53  * - emoticon/surprised
54  * - emoticon/suspicious
55  * - emoticon/tongue-dangling
56  * - emoticon/tongue-poke
57  * - emoticon/uh
58  * - emoticon/unhappy
59  * - emoticon/very-sorry
60  * - emoticon/what
61  * - emoticon/wink
62  * - emoticon/worried
63  * - emoticon/wtf
64  *
65  * These are built-in currently, but you can add your own item provieer that
66  * can create inlined objects in the text and fill the space allocated to the
67  * item with a custom object of your own.
68  *
69  * See the entry test for some more examples of use of this.
70  *
71  * Entries have functions to load a text file, display it,
72  * allowing editing of it and saving of changes back to the file loaded.
73  * Changes are written back to the original file after a short delay.
74  * The file to load and save to is specified by elm_entry_file_set().
75  *
76  * Signals that you can add callbacks for are:
77  *
78  * "changed" - The text within the entry was changed
79  * "activated" - The entry has had editing finished and changes are to be committed
80                  (generally when enter key is pressed)
81  * "press" - The entry has been clicked
82  * "longpressed" - The entry has been clicked for a couple seconds
83  * "clicked" - The entry has been clicked
84  * "clicked,double" - The entry has been double clicked
85  * "focused" - The entry has received focus
86  * "unfocused" - The entry has lost focus
87  * "selection,paste" - A paste action has occurred
88  * "selection,copy" - A copy action has occurred
89  * "selection,cut" - A cut action has occurred
90  * "selection,start" - A selection has begun
91  * "selection,changed" - The selection has changed
92  * "selection,cleared" - The selection has been cleared
93  * "cursor,changed" - The cursor has changed
94  * "anchor,clicked" - The anchor has been clicked
95  * "preedit,changed" - The preedit string has changed
96  */
97
98 /* Maximum chunk size to be inserted to the entry at once
99  * FIXME: This size is arbitrary, should probably choose a better size.
100  * Possibly also find a way to set it to a low value for weak computers,
101  * and to a big value for better computers. */
102 #define _CHUNK_SIZE 10000
103
104 typedef struct _Mod_Api Mod_Api;
105
106 typedef struct _Widget_Data Widget_Data;
107 typedef struct _Elm_Entry_Context_Menu_Item Elm_Entry_Context_Menu_Item;
108 typedef struct _Elm_Entry_Item_Provider Elm_Entry_Item_Provider;
109 typedef struct _Elm_Entry_Text_Filter Elm_Entry_Text_Filter;
110
111 struct _Widget_Data
112 {
113    Evas_Object *ent, *scroller, *end, *icon;
114    Evas_Object *bg;
115    Evas_Object *hoversel;
116    Evas_Object *hover;
117    Evas_Object *layout;
118    Evas_Object *list;
119    Evas_Object *mgf_proxy;
120    Evas_Object *mgf_clip;
121    Evas_Object *mgf_bg;
122    Evas_Coord mgf_height;
123    float mgf_scale;
124    int mgf_type;
125    Ecore_Job *deferred_recalc_job;
126    Ecore_Event_Handler *sel_notify_handler;
127    Ecore_Event_Handler *sel_clear_handler;
128    Ecore_Timer *delay_write;
129    /* for deferred appending */
130    Ecore_Idler *append_text_idler;
131    char *append_text_left;
132    int append_text_position;
133    int append_text_len;
134    /* Only for clipboard */
135    const char *cut_sel;
136    const char *text;
137    const char *password_text;
138    Evas_Coord wrap_w;
139    const char *file;
140    Elm_Text_Format format;
141    Evas_Coord lastw, entmw, entmh;
142    Evas_Coord downx, downy;
143    Evas_Coord cx, cy, cw, ch;
144    Eina_List *items;
145    Eina_List *item_providers;
146    Eina_List *text_filters;
147    Eina_List *match_list;
148    Ecore_Job *matchlist_job;
149    int matchlist_threshold;
150    Ecore_Job *hovdeljob;
151    Mod_Api *api; // module api if supplied
152    int cursor_pos;
153    Elm_Scroller_Policy policy_h, policy_v;
154    Elm_Wrap_Type linewrap;
155    Elm_Input_Panel_Layout input_panel_layout;
156    Eina_Bool changed : 1;
157    Eina_Bool single_line : 1;
158    Eina_Bool password : 1;
159    Eina_Bool editable : 1;
160    Eina_Bool selection_asked : 1;
161    Eina_Bool have_selection : 1;
162    Eina_Bool selmode : 1;
163    Eina_Bool deferred_cur : 1;
164    Eina_Bool cur_changed : 1;
165    Eina_Bool disabled : 1;
166    Eina_Bool double_clicked : 1;
167    Eina_Bool long_pressed : 1;
168    Eina_Bool context_menu : 1;
169    Eina_Bool drag_selection_asked : 1;
170    Eina_Bool bgcolor : 1;
171    Eina_Bool can_write : 1;
172    Eina_Bool autosave : 1;
173    Eina_Bool textonly : 1;
174    Eina_Bool usedown : 1;
175    Eina_Bool scroll : 1;
176    Eina_Bool autoreturnkey : 1;
177    Eina_Bool input_panel_enable : 1;
178    Eina_Bool autocapital : 1;
179    Eina_Bool autoperiod : 1;
180    Eina_Bool matchlist_list_clicked : 1;
181    Eina_Bool matchlist_case_sensitive : 1;
182 };
183
184 struct _Elm_Entry_Context_Menu_Item
185 {
186    Evas_Object *obj;
187    const char *label;
188    const char *icon_file;
189    const char *icon_group;
190    Elm_Icon_Type icon_type;
191    Evas_Smart_Cb func;
192    void *data;
193 };
194
195 struct _Elm_Entry_Item_Provider
196 {
197    Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item);
198    void *data;
199 };
200
201 struct _Elm_Entry_Text_Filter
202 {
203    void (*func) (void *data, Evas_Object *entry, char **text);
204    void *data;
205 };
206
207 typedef enum _Length_Unit
208 {
209    LENGTH_UNIT_CHAR,
210    LENGTH_UNIT_BYTE,
211    LENGTH_UNIT_LAST
212 } Length_Unit;
213
214 static const char *widtype = NULL;
215 // start for cbhm
216 static Evas_Object *cnpwidgetdata = NULL;
217 // end for cbhm
218
219 #ifdef HAVE_ELEMENTARY_X
220 static Eina_Bool _drag_drop_cb(void *data, Evas_Object *obj, Elm_Selection_Data *);
221 #endif
222 static void _del_hook(Evas_Object *obj);
223 static void _mirrored_set(Evas_Object *obj, Eina_Bool rtl);
224 static void _theme_hook(Evas_Object *obj);
225 static void _disable_hook(Evas_Object *obj);
226 static void _sizing_eval(Evas_Object *obj);
227 static void _on_focus_hook(void *data, Evas_Object *obj);
228 static void _resize(void *data, Evas *e, Evas_Object *obj, void *event_info);
229 static const char *_getbase(Evas_Object *obj);
230 static void _signal_entry_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
231 static void _signal_selection_start(void *data, Evas_Object *obj, const char *emission, const char *source);
232 static void _signal_selection_end(void *data, Evas_Object *obj, const char *emission, const char *source);
233 static void _signal_selection_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
234 static void _signal_selection_cleared(void *data, Evas_Object *obj, const char *emission, const char *source);
235 static void _signal_handler_move_start(void *data, Evas_Object *obj, const char *emission, const char *source);
236 static void _signal_handler_move_end(void *data, Evas_Object *obj, const char *emission, const char *source);
237 static void _signal_handler_moving(void *data, Evas_Object *obj, const char *emission, const char *source);
238 static void _signal_entry_paste_request(void *data, Evas_Object *obj, const char *emission, const char *source);
239 static void _signal_entry_copy_notify(void *data, Evas_Object *obj, const char *emission, const char *source);
240 static void _signal_entry_cut_notify(void *data, Evas_Object *obj, const char *emission, const char *source);
241 static void _signal_cursor_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
242 static void _add_chars_till_limit(Evas_Object *obj, char **text, int can_add, Length_Unit unit);
243 static int _strbuf_key_value_replace(Eina_Strbuf *srcbuf, char *key, const char *value, int deleteflag);
244 static int _stringshare_key_value_replace(const char **srcstring, char *key, const char *value, int deleteflag);
245 static int _entry_length_get(Evas_Object *obj);
246 static void _magnifier_create(void *data);
247 static void _magnifier_show(void *data);
248 static void _magnifier_hide(void *data);
249 static void _magnifier_move(void *data);
250
251 static const char SIG_CHANGED[] = "changed";
252 static const char SIG_ACTIVATED[] = "activated";
253 static const char SIG_PRESS[] = "press";
254 static const char SIG_LONGPRESSED[] = "longpressed";
255 static const char SIG_CLICKED[] = "clicked";
256 static const char SIG_CLICKED_DOUBLE[] = "clicked,double";
257 static const char SIG_FOCUSED[] = "focused";
258 static const char SIG_UNFOCUSED[] = "unfocused";
259 static const char SIG_SELECTION_PASTE[] = "selection,paste";
260 static const char SIG_SELECTION_COPY[] = "selection,copy";
261 static const char SIG_SELECTION_CUT[] = "selection,cut";
262 static const char SIG_SELECTION_START[] = "selection,start";
263 static const char SIG_SELECTION_CHANGED[] = "selection,changed";
264 static const char SIG_SELECTION_CLEARED[] = "selection,cleared";
265 static const char SIG_CURSOR_CHANGED[] = "cursor,changed";
266 static const char SIG_ANCHOR_CLICKED[] = "anchor,clicked";
267 static const char SIG_MATCHLIST_CLICKED[] = "matchlist,clicked";
268 static const char SIG_PREEDIT_CHANGED[] = "preedit,changed";
269 static const Evas_Smart_Cb_Description _signals[] = {
270   {SIG_CHANGED, ""},
271   {SIG_ACTIVATED, ""},
272   {SIG_PRESS, ""},
273   {SIG_LONGPRESSED, ""},
274   {SIG_CLICKED, ""},
275   {SIG_CLICKED_DOUBLE, ""},
276   {SIG_FOCUSED, ""},
277   {SIG_UNFOCUSED, ""},
278   {SIG_SELECTION_PASTE, ""},
279   {SIG_SELECTION_COPY, ""},
280   {SIG_SELECTION_CUT, ""},
281   {SIG_SELECTION_START, ""},
282   {SIG_SELECTION_CHANGED, ""},
283   {SIG_SELECTION_CLEARED, ""},
284   {SIG_CURSOR_CHANGED, ""},
285   {SIG_ANCHOR_CLICKED, ""},
286   {SIG_PREEDIT_CHANGED, ""},
287   {SIG_MATCHLIST_CLICKED, ""},
288   {NULL, NULL}
289 };
290
291 typedef enum _Elm_Entry_Magnifier_Type
292 {
293    _ENTRY_MAGNIFIER_FIXEDSIZE = 0,
294    _ENTRY_MAGNIFIER_FILLWIDTH,
295    _ENTRY_MAGNIFIER_CIRCULAR,
296 } Elm_Entry_Magnifier_Type;
297
298
299 static Eina_List *entries = NULL;
300
301 struct _Mod_Api
302 {
303    void (*obj_hook) (Evas_Object *obj);
304    void (*obj_unhook) (Evas_Object *obj);
305    void (*obj_longpress) (Evas_Object *obj);
306    void (*obj_hidemenu) (Evas_Object *obj);
307    void (*obj_mouseup) (Evas_Object *obj);
308 };
309
310 static Mod_Api *
311 _module(Evas_Object *obj __UNUSED__)
312 {
313    static Elm_Module *m = NULL;
314    if (m) goto ok; // already found - just use
315    if (!(m = _elm_module_find_as("entry/api"))) return NULL;
316    // get module api
317    m->api = malloc(sizeof(Mod_Api));
318    if (!m->api) return NULL;
319    ((Mod_Api *)(m->api)      )->obj_hook = // called on creation
320       _elm_module_symbol_get(m, "obj_hook");
321    ((Mod_Api *)(m->api)      )->obj_unhook = // called on deletion
322       _elm_module_symbol_get(m, "obj_unhook");
323    ((Mod_Api *)(m->api)      )->obj_longpress = // called on long press menu
324       _elm_module_symbol_get(m, "obj_longpress");
325    ((Mod_Api *)(m->api)      )->obj_hidemenu = // called on hide menu
326       _elm_module_symbol_get(m, "obj_hidemenu");
327    ((Mod_Api *)(m->api)      )->obj_mouseup = // called on mouseup
328       _elm_module_symbol_get(m, "obj_mouseup");
329 ok: // ok - return api
330    return m->api;
331 }
332
333 static char *
334 _buf_append(char *buf, const char *str, int *len, int *alloc)
335 {
336    int len2 = strlen(str);
337    if ((*len + len2) >= *alloc)
338      {
339         char *buf2 = realloc(buf, *alloc + len2 + 512);
340         if (!buf2) return NULL;
341         buf = buf2;
342         *alloc += (512 + len2);
343      }
344    strcpy(buf + *len, str);
345    *len += len2;
346    return buf;
347 }
348
349 static char *
350 _load_file(const char *file)
351 {
352    FILE *f;
353    size_t size;
354    int alloc = 0, len = 0;
355    char *text = NULL, buf[16384 + 1];
356
357    f = fopen(file, "rb");
358    if (!f) return NULL;
359    while ((size = fread(buf, 1, sizeof(buf) - 1, f)))
360      {
361         char *tmp_text;
362         buf[size] = 0;
363         tmp_text = _buf_append(text, buf, &len, &alloc);
364         if (!tmp_text) break;
365         text = tmp_text;
366      }
367    fclose(f);
368    return text;
369 }
370
371 static char *
372 _load_plain(const char *file)
373 {
374    char *text;
375
376    text = _load_file(file);
377    if (text)
378      {
379         char *text2;
380
381         text2 = elm_entry_utf8_to_markup(text);
382         free(text);
383         return text2;
384      }
385    return NULL;
386 }
387
388 static void
389 _load(Evas_Object *obj)
390 {
391    Widget_Data *wd = elm_widget_data_get(obj);
392    char *text;
393    if (!wd) return;
394    if (!wd->file)
395      {
396         elm_entry_entry_set(obj, "");
397         return;
398      }
399    switch (wd->format)
400      {
401       case ELM_TEXT_FORMAT_PLAIN_UTF8:
402          text = _load_plain(wd->file);
403          break;
404       case ELM_TEXT_FORMAT_MARKUP_UTF8:
405          text = _load_file(wd->file);
406          break;
407       default:
408          text = NULL;
409          break;
410      }
411    if (text)
412      {
413         elm_entry_entry_set(obj, text);
414         free(text);
415      }
416    else
417      elm_entry_entry_set(obj, "");
418 }
419
420 static void
421 _save_markup_utf8(const char *file, const char *text)
422 {
423    FILE *f;
424
425    if ((!text) || (!text[0]))
426      {
427         ecore_file_unlink(file);
428         return;
429      }
430    f = fopen(file, "wb");
431    if (!f)
432      {
433         // FIXME: report a write error
434         return;
435      }
436    fputs(text, f); // FIXME: catch error
437    fclose(f);
438 }
439
440 static void
441 _save_plain_utf8(const char *file, const char *text)
442 {
443    char *text2;
444
445    text2 = elm_entry_markup_to_utf8(text);
446    if (!text2)
447      return;
448    _save_markup_utf8(file, text2);
449    free(text2);
450 }
451
452 static void
453 _save(Evas_Object *obj)
454 {
455    Widget_Data *wd = elm_widget_data_get(obj);
456    if (!wd) return;
457    if (!wd->file) return;
458    switch (wd->format)
459      {
460       case ELM_TEXT_FORMAT_PLAIN_UTF8:
461          _save_plain_utf8(wd->file, elm_entry_entry_get(obj));
462          break;
463       case ELM_TEXT_FORMAT_MARKUP_UTF8:
464          _save_markup_utf8(wd->file, elm_entry_entry_get(obj));
465          break;
466       default:
467          break;
468      }
469 }
470
471 static Eina_Bool
472 _delay_write(void *data)
473 {
474    Widget_Data *wd = elm_widget_data_get(data);
475    if (!wd) return ECORE_CALLBACK_CANCEL;
476    _save(data);
477    wd->delay_write = NULL;
478    return ECORE_CALLBACK_CANCEL;
479 }
480
481 static Elm_Entry_Text_Filter *
482 _filter_new(void (*func) (void *data, Evas_Object *entry, char **text), void *data)
483 {
484    Elm_Entry_Text_Filter *tf = ELM_NEW(Elm_Entry_Text_Filter);
485    if (!tf) return NULL;
486
487    tf->func = func;
488    if (func == elm_entry_filter_limit_size)
489      {
490         Elm_Entry_Filter_Limit_Size *lim = data, *lim2;
491
492         if (!data)
493           {
494              free(tf);
495              return NULL;
496           }
497         lim2 = malloc(sizeof(Elm_Entry_Filter_Limit_Size));
498         if (!lim2)
499           {
500              free(tf);
501              return NULL;
502           }
503         memcpy(lim2, lim, sizeof(Elm_Entry_Filter_Limit_Size));
504         tf->data = lim2;
505      }
506    else if (func == elm_entry_filter_accept_set)
507      {
508         Elm_Entry_Filter_Accept_Set *as = data, *as2;
509
510         if (!data)
511           {
512              free(tf);
513              return NULL;
514           }
515         as2 = malloc(sizeof(Elm_Entry_Filter_Accept_Set));
516         if (!as2)
517           {
518              free(tf);
519              return NULL;
520           }
521         if (as->accepted)
522           as2->accepted = eina_stringshare_add(as->accepted);
523         else
524           as2->accepted = NULL;
525         if (as->rejected)
526           as2->rejected = eina_stringshare_add(as->rejected);
527         else
528           as2->rejected = NULL;
529         tf->data = as2;
530      }
531    else
532      tf->data = data;
533    return tf;
534 }
535
536 static void
537 _filter_free(Elm_Entry_Text_Filter *tf)
538 {
539    if (tf->func == elm_entry_filter_limit_size)
540      {
541         Elm_Entry_Filter_Limit_Size *lim = tf->data;
542         if (lim) free(lim);
543      }
544    else if (tf->func == elm_entry_filter_accept_set)
545      {
546         Elm_Entry_Filter_Accept_Set *as = tf->data;
547         if (as)
548           {
549              if (as->accepted) eina_stringshare_del(as->accepted);
550              if (as->rejected) eina_stringshare_del(as->rejected);
551              free(as);
552           }
553      }
554    free(tf);
555 }
556
557 static void
558 _del_pre_hook(Evas_Object *obj)
559 {
560    Widget_Data *wd = elm_widget_data_get(obj);
561    if (!wd) return;
562    if (wd->delay_write)
563      {
564         ecore_timer_del(wd->delay_write);
565         wd->delay_write = NULL;
566         if (wd->autosave) _save(obj);
567      }
568 }
569
570 static void
571 _del_hook(Evas_Object *obj)
572 {
573    Widget_Data *wd = elm_widget_data_get(obj);
574    Elm_Entry_Context_Menu_Item *it;
575    Elm_Entry_Item_Provider *ip;
576    Elm_Entry_Text_Filter *tf;
577
578    if (wd->file) eina_stringshare_del(wd->file);
579
580    if (wd->hovdeljob) ecore_job_del(wd->hovdeljob);
581    if ((wd->api) && (wd->api->obj_unhook)) wd->api->obj_unhook(obj); // module - unhook
582
583    entries = eina_list_remove(entries, obj);
584 #ifdef HAVE_ELEMENTARY_X
585    if (wd->sel_notify_handler)
586      ecore_event_handler_del(wd->sel_notify_handler);
587    if (wd->sel_clear_handler)
588      ecore_event_handler_del(wd->sel_clear_handler);
589 #endif
590    if (wd->cut_sel) eina_stringshare_del(wd->cut_sel);
591    if (wd->text) eina_stringshare_del(wd->text);
592    if (wd->password_text) eina_stringshare_del(wd->password_text);
593    if (wd->bg) evas_object_del(wd->bg);
594    if (wd->deferred_recalc_job) ecore_job_del(wd->deferred_recalc_job);
595    if (wd->append_text_idler)
596      {
597         ecore_idler_del(wd->append_text_idler);
598         free(wd->append_text_left);
599         wd->append_text_left = NULL;
600         wd->append_text_idler = NULL;
601      }
602    if (wd->matchlist_job) ecore_job_del(wd->matchlist_job);
603    if (wd->mgf_proxy) evas_object_del(wd->mgf_proxy);
604    if (wd->mgf_bg) evas_object_del(wd->mgf_bg);
605    if (wd->mgf_clip) evas_object_del(wd->mgf_clip);
606
607    EINA_LIST_FREE(wd->items, it)
608      {
609         eina_stringshare_del(it->label);
610         eina_stringshare_del(it->icon_file);
611         eina_stringshare_del(it->icon_group);
612         free(it);
613      }
614    EINA_LIST_FREE(wd->item_providers, ip)
615      {
616         free(ip);
617      }
618    EINA_LIST_FREE(wd->text_filters, tf)
619      {
620         _filter_free(tf);
621      }
622    free(wd);
623 }
624
625 static void
626 _mirrored_set(Evas_Object *obj, Eina_Bool rtl)
627 {
628    Widget_Data *wd = elm_widget_data_get(obj);
629    edje_object_mirrored_set(wd->ent, rtl);
630 }
631
632 static void
633 _theme_hook(Evas_Object *obj)
634 {
635    Widget_Data *wd = elm_widget_data_get(obj);
636    const char *t;
637    Ecore_IMF_Context *ic;
638    _elm_widget_mirrored_reload(obj);
639    _mirrored_set(obj, elm_widget_mirrored_get(obj));
640
641    t = eina_stringshare_add(elm_entry_entry_get(obj));
642    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
643    if (_elm_config->desktop_entry)
644      edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
645    elm_entry_entry_set(obj, t);
646    eina_stringshare_del(t);
647    if (elm_widget_disabled_get(obj))
648      edje_object_signal_emit(wd->ent, "elm,state,disabled", "elm");
649    edje_object_part_text_input_panel_enabled_set(wd->ent, "elm.text", wd->input_panel_enable);
650    elm_entry_cursor_pos_set(obj, wd->cursor_pos);
651    if (elm_widget_focus_get(obj))
652      edje_object_signal_emit(wd->ent, "elm,action,focus", "elm");
653    edje_object_message_signal_process(wd->ent);
654    edje_object_scale_set(wd->ent, elm_widget_scale_get(obj) * _elm_config->scale);
655    elm_smart_scroller_mirrored_set(wd->scroller, elm_widget_mirrored_get(obj));
656    elm_smart_scroller_object_theme_set(obj, wd->scroller, "scroller", "entry",
657                                        elm_widget_style_get(obj));
658    if (wd->scroll)
659      {
660         const char *str;
661         Evas_Object *edj;
662
663         edj = elm_smart_scroller_edje_object_get(wd->scroller);
664         str = edje_object_data_get(edj, "focus_highlight");
665         if ((str) && (!strcmp(str, "on")))
666            elm_widget_highlight_in_theme_set(obj, EINA_TRUE);
667         else
668            elm_widget_highlight_in_theme_set(obj, EINA_FALSE);
669      }
670
671    if (wd->password)
672      {
673         edje_object_part_text_autoperiod_set(wd->ent, "elm.text", EINA_FALSE);
674         edje_object_part_text_autocapitalization_set(wd->ent, "elm.text", EINA_FALSE);
675      }
676    else
677      {
678         edje_object_part_text_autoperiod_set(wd->ent, "elm.text", wd->autoperiod);
679         edje_object_part_text_autocapitalization_set(wd->ent, "elm.text", wd->autocapital);
680      }
681
682    ic = edje_object_part_text_imf_context_get(wd->ent, "elm.text");
683    if (ic)
684      {
685         ecore_imf_context_input_panel_layout_set(ic, (Ecore_IMF_Input_Panel_Layout)wd->input_panel_layout);
686      }
687
688    _sizing_eval(obj);
689 }
690
691 static void
692 _disable_hook(Evas_Object *obj)
693 {
694    Widget_Data *wd = elm_widget_data_get(obj);
695
696    if (elm_widget_disabled_get(obj))
697      {
698         edje_object_signal_emit(wd->ent, "elm,state,disabled", "elm");
699         wd->disabled = EINA_TRUE;
700      }
701    else
702      {
703         edje_object_signal_emit(wd->ent, "elm,state,enabled", "elm");
704         wd->disabled = EINA_FALSE;
705      }
706 }
707
708 static void
709 _recalc_cursor_geometry(Evas_Object *obj)
710 {
711    Widget_Data *wd = elm_widget_data_get(obj);
712    if (!wd) return;
713    evas_object_smart_callback_call(obj, SIG_CURSOR_CHANGED, NULL);
714    if (!elm_object_focus_get(obj)) return;
715    if (!wd->deferred_recalc_job)
716      {
717         Evas_Coord cx, cy, cw, ch;
718         edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
719               &cx, &cy, &cw, &ch);
720         if (wd->cur_changed)
721           {
722              elm_widget_show_region_set(obj, cx, cy, cw, ch, EINA_FALSE);
723              wd->cur_changed = EINA_FALSE;
724           }
725      }
726    else
727       wd->deferred_cur = EINA_TRUE;
728 }
729
730 static void
731 _elm_win_recalc_job(void *data)
732 {
733    Widget_Data *wd = elm_widget_data_get(data);
734    Evas_Coord minh = -1, resw = -1, minw = -1, fw = 0, fh = 0;
735    if (!wd) return;
736    wd->deferred_recalc_job = NULL;
737
738    evas_object_geometry_get(wd->ent, NULL, NULL, &resw, NULL);
739    edje_object_size_min_restricted_calc(wd->ent, &minw, &minh, resw, 0);
740    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
741    wd->entmw = minw;
742    wd->entmh = minh;
743    /* This is a hack to workaround the way min size hints are treated.
744     * If the minimum width is smaller than the restricted width, it means
745     * the mininmum doesn't matter. */
746    if (minw <= resw)
747      {
748         Evas_Coord ominw = -1;
749         evas_object_size_hint_min_get(data, &ominw, NULL);
750         minw = ominw;
751      }
752
753    elm_coords_finger_size_adjust(1, &fw, 1, &fh);
754    if (wd->scroll)
755      {
756         Evas_Coord vmw = 0, vmh = 0;
757
758         edje_object_size_min_calc
759            (elm_smart_scroller_edje_object_get(wd->scroller),
760                &vmw, &vmh);
761         if (wd->single_line)
762           {
763              evas_object_size_hint_min_set(data, vmw, minh + vmh);
764              evas_object_size_hint_max_set(data, -1, minh + vmh);
765           }
766         else
767           {
768              evas_object_size_hint_min_set(data, vmw, vmh);
769              evas_object_size_hint_max_set(data, -1, -1);
770           }
771      }
772    else
773      {
774         if (wd->single_line)
775           {
776              evas_object_size_hint_min_set(data, minw, minh);
777              evas_object_size_hint_max_set(data, -1, minh);
778           }
779         else
780           {
781              evas_object_size_hint_min_set(data, fw, minh);
782              evas_object_size_hint_max_set(data, -1, -1);
783           }
784      }
785
786    if ((wd->deferred_cur) && (elm_object_focus_get(data)))
787      {
788         Evas_Coord cx, cy, cw, ch;
789         edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
790                                                   &cx, &cy, &cw, &ch);
791         if (wd->cur_changed)
792           {
793              elm_widget_show_region_set(data, cx, cy, cw, ch, EINA_FALSE);
794              wd->cur_changed = EINA_FALSE;
795           }
796      }
797 }
798
799 static void
800 _sizing_eval(Evas_Object *obj)
801 {
802    Widget_Data *wd = elm_widget_data_get(obj);
803    Evas_Coord minw = -1, minh = -1;
804    Evas_Coord resw, resh;
805    if (!wd) return;
806
807    evas_object_geometry_get(obj, NULL, NULL, &resw, &resh);
808    if (wd->linewrap)
809      {
810         if ((resw == wd->lastw) && (!wd->changed)) return;
811         wd->changed = EINA_FALSE;
812         wd->lastw = resw;
813         if (wd->scroll)
814           {
815              Evas_Coord vw = 0, vh = 0, vmw = 0, vmh = 0, w = -1, h = -1;
816
817              evas_object_resize(wd->scroller, resw, resh);
818              edje_object_size_min_calc
819                 (elm_smart_scroller_edje_object_get(wd->scroller),
820                     &vmw, &vmh);
821              elm_smart_scroller_child_viewport_size_get(wd->scroller, &vw, &vh);
822              edje_object_size_min_restricted_calc(wd->ent, &minw, &minh, vw, 0);
823              wd->entmw = minw;
824              wd->entmh = minh;
825              elm_coords_finger_size_adjust(1, &minw, 1, &minh);
826
827              if ((minw > 0) && (vw < minw)) vw = minw;
828              if (minh > vh) vh = minh;
829
830              if (wd->single_line) h = vmh + minh;
831              else h = vmh;
832              evas_object_resize(wd->ent, vw, vh);
833              evas_object_size_hint_min_get(obj, &w, NULL);
834              evas_object_size_hint_min_set(obj, w, h);
835              if (wd->single_line)
836                 evas_object_size_hint_max_set(obj, -1, h);
837              else
838                 evas_object_size_hint_max_set(obj, -1, -1);
839           }
840         else
841           {
842              if (wd->deferred_recalc_job) ecore_job_del(wd->deferred_recalc_job);
843              wd->deferred_recalc_job = ecore_job_add(_elm_win_recalc_job, obj);
844           }
845      }
846    else
847      {
848         if (!wd->changed) return;
849         wd->changed = EINA_FALSE;
850         wd->lastw = resw;
851         if (wd->scroll)
852           {
853              Evas_Coord vw = 0, vh = 0, vmw = 0, vmh = 0, w = -1, h = -1;
854
855              edje_object_size_min_calc(wd->ent, &minw, &minh);
856              wd->entmw = minw;
857              wd->entmh = minh;
858              elm_coords_finger_size_adjust(1, &minw, 1, &minh);
859
860              elm_smart_scroller_child_viewport_size_get(wd->scroller, &vw, &vh);
861
862              if ((minw > 0) && (vw < minw)) vw = minw;
863              if (minh > 0) vh = minh;
864
865              evas_object_resize(wd->ent, vw, vh);
866              edje_object_size_min_calc
867                 (elm_smart_scroller_edje_object_get(wd->scroller),
868                     &vmw, &vmh);
869              if (wd->single_line) h = vmh + minh;
870              else h = vmh;
871              evas_object_size_hint_min_get(obj, &w, NULL);
872              evas_object_size_hint_min_set(obj, w, h);
873              if (wd->single_line)
874                 evas_object_size_hint_max_set(obj, -1, h);
875              else
876                 evas_object_size_hint_max_set(obj, -1, -1);
877           }
878         else
879           {
880              edje_object_size_min_calc(wd->ent, &minw, &minh);
881              wd->entmw = minw;
882              wd->entmh = minh;
883              elm_coords_finger_size_adjust(1, &minw, 1, &minh);
884              evas_object_size_hint_min_set(obj, minw, minh);
885              if (wd->single_line)
886                 evas_object_size_hint_max_set(obj, -1, minh);
887              else
888                 evas_object_size_hint_max_set(obj, -1, -1);
889           }
890      }
891
892    _recalc_cursor_geometry(obj);
893 }
894
895 static void
896 _check_enable_returnkey(Evas_Object *obj)
897 {
898    Widget_Data *wd = elm_widget_data_get(obj);
899    if (!wd) return;
900
901    Ecore_IMF_Context *ic = elm_entry_imf_context_get(obj);
902    if (!ic) return;
903
904    if (!wd->autoreturnkey) return;
905
906    if (_entry_length_get(obj) == 0)
907      {
908         ecore_imf_context_input_panel_key_disabled_set(ic, ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL, ECORE_IMF_INPUT_PANEL_KEY_ENTER, EINA_TRUE);
909      }
910    else
911      {
912         ecore_imf_context_input_panel_key_disabled_set(ic, ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL, ECORE_IMF_INPUT_PANEL_KEY_ENTER, EINA_FALSE);
913      }
914 }
915
916 static void
917 _on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
918 {
919    Widget_Data *wd = elm_widget_data_get(obj);
920    Evas_Object *top = elm_widget_top_get(obj);
921    if (!wd) return;
922    if (elm_widget_focus_get(obj))
923      {
924         printf("[Elm_entry::Focused] obj : %p\n", obj);
925         evas_object_focus_set(wd->ent, EINA_TRUE);
926         edje_object_signal_emit(wd->ent, "elm,action,focus", "elm");
927         if (top) elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_ON);
928         evas_object_smart_callback_call(obj, SIG_FOCUSED, NULL);
929         _check_enable_returnkey(obj);
930         wd->mgf_type = _ENTRY_MAGNIFIER_FIXEDSIZE;
931      }
932    else
933      {
934         printf("[Elm_entry::Unfocused] obj : %p\n", obj);
935         edje_object_signal_emit(wd->ent, "elm,action,unfocus", "elm");
936         evas_object_focus_set(wd->ent, EINA_FALSE);
937         if (top) elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_OFF);
938         evas_object_smart_callback_call(obj, SIG_UNFOCUSED, NULL);
939
940         if ((wd->api) && (wd->api->obj_hidemenu))
941           {
942              wd->api->obj_hidemenu(obj);
943           }
944      }
945 }
946
947 static void
948 _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source)
949 {
950    Widget_Data *wd = elm_widget_data_get(obj);
951    if (!wd) return;
952    edje_object_signal_emit(wd->ent, emission, source);
953    if (wd->scroller)
954       edje_object_signal_emit(elm_smart_scroller_edje_object_get(wd->scroller),
955                               emission, source);
956 }
957
958 static void
959 _signal_callback_add_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
960 {
961    Widget_Data *wd = elm_widget_data_get(obj);
962    if (!wd) return;
963    edje_object_signal_callback_add(wd->ent, emission, source, func_cb, data);
964    if (wd->scroller)
965       edje_object_signal_callback_add(elm_smart_scroller_edje_object_get(wd->scroller),
966                                       emission, source, func_cb, data);
967 }
968
969 static void
970 _signal_callback_del_hook(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func_cb, void *data)
971 {
972    Widget_Data *wd = elm_widget_data_get(obj);
973    edje_object_signal_callback_del_full(wd->ent, emission, source, func_cb,
974                                         data);
975    if (wd->scroller)
976       edje_object_signal_callback_del_full(elm_smart_scroller_edje_object_get(wd->scroller),
977                                            emission, source, func_cb, data);
978 }
979
980 static void
981 _on_focus_region_hook(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h)
982 {
983    Widget_Data *wd = elm_widget_data_get(obj);
984    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", x, y, w, h);
985 }
986
987 static void
988 _focus_region_hook(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h)
989 {
990    Widget_Data *wd = elm_widget_data_get(obj);
991    if (wd->scroll)
992       elm_smart_scroller_child_region_show(wd->scroller, x, y, w, h);
993 }
994
995 static void
996 _show_region_hook(void *data, Evas_Object *obj)
997 {
998    Widget_Data *wd = elm_widget_data_get(data);
999    Evas_Coord x, y, w, h;
1000    if (!wd) return;
1001    elm_widget_show_region_get(obj, &x, &y, &w, &h);
1002    if (wd->scroll)
1003      elm_smart_scroller_child_region_show(wd->scroller, x, y, w, h);
1004 }
1005
1006 static void
1007 _hoversel_position(Evas_Object *obj)
1008 {
1009    Widget_Data *wd = elm_widget_data_get(obj);
1010    Evas_Coord cx, cy, cw, ch, x, y, mw, mh;
1011    if (!wd) return;
1012
1013    cx = cy = 0;
1014    cw = ch = 1;
1015    evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
1016    if (wd->usedown)
1017      {
1018         cx = wd->downx - x;
1019         cy = wd->downy - y;
1020         cw = 1;
1021         ch = 1;
1022      }
1023    else
1024      edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
1025                                                &cx, &cy, &cw, &ch);
1026    evas_object_size_hint_min_get(wd->hoversel, &mw, &mh);
1027    if (cw < mw)
1028      {
1029         cx += (cw - mw) / 2;
1030         cw = mw;
1031      }
1032    if (ch < mh)
1033      {
1034         cy += (ch - mh) / 2;
1035         ch = mh;
1036      }
1037    evas_object_move(wd->hoversel, x + cx, y + cy);
1038    evas_object_resize(wd->hoversel, cw, ch);
1039 }
1040
1041 static void
1042 _move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1043 {
1044    Widget_Data *wd = elm_widget_data_get(data);
1045
1046    if (wd->hoversel) _hoversel_position(data);
1047 }
1048
1049 static void
1050 _resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1051 {
1052    Widget_Data *wd = elm_widget_data_get(data);
1053    if (!wd) return;
1054
1055    if (wd->linewrap)
1056      {
1057         _sizing_eval(data);
1058      }
1059    else if (wd->scroll)
1060      {
1061         Evas_Coord vw = 0, vh = 0;
1062
1063         elm_smart_scroller_child_viewport_size_get(wd->scroller, &vw, &vh);
1064         if (vw < wd->entmw) vw = wd->entmw;
1065         if (vh < wd->entmh) vh = wd->entmh;
1066         evas_object_resize(wd->ent, vw, vh);
1067      }
1068    if (wd->hoversel) _hoversel_position(data);
1069 }
1070
1071 static void
1072 _hover_del(void *data)
1073 {
1074    Widget_Data *wd = elm_widget_data_get(data);
1075    if (!wd) return;
1076
1077    if (wd->hoversel)
1078      {
1079         evas_object_del(wd->hoversel);
1080         wd->hoversel = NULL;
1081      }
1082    wd->hovdeljob = NULL;
1083 }
1084
1085 static void
1086 _dismissed(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1087 {
1088    Widget_Data *wd = elm_widget_data_get(data);
1089    if (!wd) return;
1090    wd->usedown = 0;
1091    if (wd->hoversel) evas_object_hide(wd->hoversel);
1092    if (wd->selmode)
1093      {
1094         if (!_elm_config->desktop_entry)
1095           {
1096              if (!wd->password)
1097                edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
1098           }
1099      }
1100    elm_widget_scroll_freeze_pop(data);
1101    if (wd->hovdeljob) ecore_job_del(wd->hovdeljob);
1102    wd->hovdeljob = ecore_job_add(_hover_del, data);
1103 }
1104
1105 static void
1106 _selectall(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1107 {
1108    Widget_Data *wd = elm_widget_data_get(data);
1109    if (!wd) return;
1110    wd->selmode = EINA_TRUE;
1111    edje_object_part_text_select_none(wd->ent, "elm.text");
1112    edje_object_signal_emit(wd->ent, "elm,state,select,on", "elm");
1113    edje_object_part_text_select_all(wd->ent, "elm.text");
1114    elm_object_scroll_freeze_pop(data);
1115 }
1116
1117 static void
1118 _select(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1119 {
1120    Widget_Data *wd = elm_widget_data_get(data);
1121    if (!wd) return;
1122    wd->selmode = EINA_TRUE;
1123    edje_object_part_text_select_none(wd->ent, "elm.text");
1124    if (!_elm_config->desktop_entry)
1125      {
1126         if (!wd->password)
1127           edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
1128      }
1129    edje_object_signal_emit(wd->ent, "elm,state,select,on", "elm");
1130    if (!_elm_config->desktop_entry)
1131       elm_object_scroll_freeze_pop(data);
1132       //elm_widget_scroll_hold_push(data);
1133 }
1134
1135 static void
1136 _paste(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1137 {
1138    Widget_Data *wd = elm_widget_data_get(data);
1139    if (!wd) return;
1140    evas_object_smart_callback_call(data, SIG_SELECTION_PASTE, NULL);
1141    if (wd->sel_notify_handler)
1142      {
1143 #ifdef HAVE_ELEMENTARY_X
1144         Elm_Sel_Format formats;
1145         wd->selection_asked = EINA_TRUE;
1146         formats = ELM_SEL_FORMAT_MARKUP;
1147         if (!wd->textonly)
1148           formats |= ELM_SEL_FORMAT_IMAGE;
1149         elm_selection_get(ELM_SEL_CLIPBOARD, formats, data, NULL, NULL);
1150 #endif
1151      }
1152 }
1153
1154 static void
1155 _store_selection(Elm_Sel_Type seltype, Evas_Object *obj)
1156 {
1157    Widget_Data *wd = elm_widget_data_get(obj);
1158    const char *sel;
1159    char *sel_str;
1160
1161    if (!wd) return;
1162    sel = edje_object_part_text_selection_get(wd->ent, "elm.text");
1163    sel_str = strdup(sel);
1164    if (!sel_str)
1165      return;
1166    if (wd->textonly)
1167      {
1168         while (EINA_TRUE)
1169           {
1170              char *startTag = NULL;
1171              char *endTag = NULL;
1172
1173              startTag = strstr(sel_str, "<item");
1174              if (!startTag)
1175                startTag = strstr(sel_str, "</item");
1176              if (startTag)
1177                endTag = strstr(startTag, ">");
1178              else
1179                break;
1180              if (!endTag || startTag > endTag)
1181                break;
1182
1183              size_t sindex = startTag - sel_str;
1184              size_t eindex = endTag - sel_str + 1;
1185
1186              Eina_Strbuf *buf = eina_strbuf_new();
1187              if (buf)
1188                {
1189                   eina_strbuf_append(buf, sel_str);
1190                   eina_strbuf_remove(buf, sindex, eindex);
1191                   sel_str = eina_strbuf_string_steal(buf);
1192                   eina_strbuf_free(buf);
1193                }
1194           }
1195      }
1196    elm_selection_set(seltype, obj, ELM_SEL_FORMAT_MARKUP, sel_str);
1197    if (seltype == ELM_SEL_CLIPBOARD)
1198      eina_stringshare_replace(&wd->cut_sel, sel_str);
1199    free(sel_str);
1200 }
1201
1202 static void
1203 _cut(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1204 {
1205    Widget_Data *wd = elm_widget_data_get(data);
1206
1207    /* Store it */
1208    wd->selmode = EINA_FALSE;
1209    if (!_elm_config->desktop_entry)
1210      edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
1211    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
1212    if (!_elm_config->desktop_entry)
1213      elm_widget_scroll_hold_pop(data);
1214    _store_selection(ELM_SEL_CLIPBOARD, data);
1215    edje_object_part_text_insert(wd->ent, "elm.text", "");
1216    edje_object_part_text_select_none(wd->ent, "elm.text");
1217 }
1218
1219 static void
1220 _copy(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1221 {
1222    Widget_Data *wd = elm_widget_data_get(data);
1223    if (!wd) return;
1224    wd->selmode = EINA_TRUE;
1225    if (!_elm_config->desktop_entry)
1226      {
1227         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
1228         elm_widget_scroll_hold_pop(data);
1229      }
1230    _store_selection(ELM_SEL_CLIPBOARD, data);
1231 }
1232
1233 static void
1234 _cancel(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1235 {
1236    Widget_Data *wd = elm_widget_data_get(data);
1237    if (!wd) return;
1238    wd->selmode = EINA_FALSE;
1239    if (!_elm_config->desktop_entry)
1240      edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
1241    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
1242    if (!_elm_config->desktop_entry)
1243      elm_widget_scroll_hold_pop(data);
1244    edje_object_part_text_select_none(wd->ent, "elm.text");
1245 }
1246
1247 static void
1248 _clipboard_menu(void *data, Evas_Object *obj, void *event_info __UNUSED__)
1249 {
1250    Widget_Data *wd = elm_widget_data_get(data);
1251    if (!wd) return;
1252
1253    // start for cbhm
1254 #ifdef HAVE_ELEMENTARY_X
1255    ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
1256 #endif
1257    cnpwidgetdata = data;
1258    elm_cbhm_helper_init(obj);
1259    if (elm_entry_cnp_textonly_get(obj))
1260      elm_cbhm_send_raw_data("show0");
1261    else
1262      elm_cbhm_send_raw_data("show1");
1263    // end for cbhm
1264 }
1265
1266 // start for cbhm
1267 static void
1268 _cnpinit(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1269 {
1270    Widget_Data *wd = elm_widget_data_get(data);
1271    if (!wd) return;
1272    cnpwidgetdata = data;
1273 }
1274 // end for cbhm
1275
1276
1277 static void
1278 _item_clicked(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1279 {
1280    Elm_Entry_Context_Menu_Item *it = data;
1281    Evas_Object *obj2 = it->obj;
1282    if (it->func) it->func(it->data, obj2, NULL);
1283 }
1284
1285 static void
1286 _menu_press(Evas_Object *obj)
1287 {
1288    Widget_Data *wd = elm_widget_data_get(obj);
1289    Evas_Object *top;
1290    const Eina_List *l;
1291    const Elm_Entry_Context_Menu_Item *it;
1292    if (!wd) return;
1293    if ((wd->api) && (wd->api->obj_longpress))
1294      {
1295         wd->api->obj_longpress(obj);
1296      }
1297    else if (wd->context_menu)
1298      {
1299         const char *context_menu_orientation;
1300
1301         if (wd->hoversel) evas_object_del(wd->hoversel);
1302         else elm_widget_scroll_freeze_push(obj);
1303         wd->hoversel = elm_hoversel_add(obj);
1304         context_menu_orientation = edje_object_data_get
1305            (wd->ent, "context_menu_orientation");
1306         if ((context_menu_orientation) &&
1307             (!strcmp(context_menu_orientation, "horizontal")))
1308           elm_hoversel_horizontal_set(wd->hoversel, EINA_TRUE);
1309         elm_object_style_set(wd->hoversel, "entry");
1310         elm_widget_sub_object_add(obj, wd->hoversel);
1311         elm_object_text_set(wd->hoversel, "Text");
1312         top = elm_widget_top_get(obj);
1313         if (top) elm_hoversel_hover_parent_set(wd->hoversel, top);
1314         evas_object_smart_callback_add(wd->hoversel, "dismissed", _dismissed, obj);
1315         if (!wd->selmode)
1316           {
1317              if (!wd->password)
1318                elm_hoversel_item_add(wd->hoversel, E_("Select"), NULL, ELM_ICON_NONE,
1319                                      _select, obj);
1320              if (1) // need way to detect if someone has a selection
1321                {
1322                   if (wd->editable)
1323                     elm_hoversel_item_add(wd->hoversel, E_("Paste"), NULL, ELM_ICON_NONE,
1324                                           _paste, obj);
1325                }
1326         // start for cbhm
1327              if ((!wd->password) && (wd->editable))
1328                elm_hoversel_item_add(wd->hoversel, E_("More"), NULL, ELM_ICON_NONE,
1329                                      _clipboard_menu, obj);
1330         // end for cbhm
1331           }
1332         else
1333           {
1334              if (!wd->password)
1335                {
1336                   if (wd->have_selection)
1337                     {
1338                        elm_hoversel_item_add(wd->hoversel, E_("Copy"), NULL, ELM_ICON_NONE,
1339                                              _copy, obj);
1340                        if (wd->editable)
1341                          elm_hoversel_item_add(wd->hoversel, E_("Cut"), NULL, ELM_ICON_NONE,
1342                                                _cut, obj);
1343                     }
1344                   elm_hoversel_item_add(wd->hoversel, E_("Cancel"), NULL, ELM_ICON_NONE,
1345                                         _cancel, obj);
1346         // start for cbhm
1347                   if (wd->editable)
1348                     elm_hoversel_item_add(wd->hoversel, E_("More"), NULL, ELM_ICON_NONE,
1349                                           _clipboard_menu, obj);
1350         // end for cbhm
1351                }
1352           }
1353         EINA_LIST_FOREACH(wd->items, l, it)
1354           {
1355              elm_hoversel_item_add(wd->hoversel, it->label, it->icon_file,
1356                                    it->icon_type, _item_clicked, it);
1357           }
1358         if (wd->hoversel)
1359           {
1360              _hoversel_position(obj);
1361              evas_object_show(wd->hoversel);
1362              elm_hoversel_hover_begin(wd->hoversel);
1363           }
1364         if (!_elm_config->desktop_entry)
1365           {
1366              edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
1367              edje_object_part_text_select_abort(wd->ent, "elm.text");
1368           }
1369      }
1370 }
1371
1372 static void
1373 _magnifier_hide(void *data)
1374 {
1375    Widget_Data *wd = elm_widget_data_get(data);
1376    if (!wd) return;
1377
1378    evas_object_hide(wd->mgf_bg);
1379    evas_object_hide(wd->mgf_clip);
1380
1381    if (wd->scroll)
1382      elm_smart_scroller_freeze_set(wd->scroller, EINA_FALSE);
1383 }
1384
1385 static void
1386 _magnifier_show(void *data)
1387 {
1388    Widget_Data *wd = elm_widget_data_get(data);
1389    if (!wd) return;
1390
1391    evas_object_show(wd->mgf_bg);
1392    evas_object_show(wd->mgf_clip);
1393 }
1394
1395 static void
1396 _magnifier_move(void *data)
1397 {
1398    Widget_Data *wd = elm_widget_data_get(data);
1399    if (!wd) return;
1400
1401    Evas_Coord x, y, w, h, fs;
1402    Evas_Coord cx, cy, cw, ch, ox, oy;
1403
1404    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", &cx, &cy, &cw, &ch);
1405
1406    if (wd->scroll)
1407      {
1408         evas_object_geometry_get(wd->scroller, &x, &y, &w, &h);
1409         elm_smart_scroller_child_pos_get(wd->scroller, &ox, &oy);
1410         cx -= ox;
1411         cy -= oy;
1412      }
1413    else
1414      evas_object_geometry_get(data, &x, &y, &w, &h);
1415
1416    ox = oy = 0;
1417    fs = elm_finger_size_get();
1418
1419    if ((cy + y) - wd->mgf_height - fs < 0)
1420      oy = -1 * ((cy + y) - wd->mgf_height - fs);
1421
1422    if (wd->mgf_type == _ENTRY_MAGNIFIER_FIXEDSIZE)
1423      evas_object_move(wd->mgf_bg, (cx + x + cw/2) + ox, (cy + y) - wd->mgf_height - fs + oy);
1424    else if (wd->mgf_type == _ENTRY_MAGNIFIER_FILLWIDTH)
1425      evas_object_move(wd->mgf_bg, x, (cy + y) - wd->mgf_height - fs + oy);
1426    else
1427      return;
1428
1429    evas_object_move(wd->mgf_proxy, (1 - wd->mgf_scale) * cx + x + ox, (1 - wd->mgf_scale) * cy + y - wd->mgf_height/2 - ch/2 - fs + oy);
1430 }
1431
1432 static void
1433 _magnifier_create(void *data)
1434 {
1435    Widget_Data *wd = elm_widget_data_get(data);
1436    Evas_Coord x, y, w, h, mw, mh;
1437    const char* key_data = NULL;
1438
1439    if (!wd) return;
1440
1441    if (wd->mgf_proxy)
1442      {
1443         evas_object_image_source_unset(wd->mgf_proxy);
1444         evas_object_color_set(wd->mgf_proxy, 255, 255, 255, 0);
1445         evas_object_hide(wd->mgf_proxy);
1446         evas_object_clip_unset(wd->mgf_proxy);
1447         evas_object_del(wd->mgf_proxy);
1448      }
1449    if (wd->mgf_bg) evas_object_del(wd->mgf_bg);
1450    if (wd->mgf_clip) evas_object_del(wd->mgf_clip);
1451
1452    if (wd->scroll)
1453      evas_object_geometry_get(wd->scroller, &x, &y, &w, &h);
1454    else
1455      evas_object_geometry_get(data, &x, &y, &w, &h);
1456
1457    if ((w <= 0) || (h <= 0))
1458      return;
1459
1460    wd->mgf_bg = edje_object_add(evas_object_evas_get(data));
1461
1462    if (wd->mgf_type == _ENTRY_MAGNIFIER_FIXEDSIZE)
1463      _elm_theme_object_set(data, wd->mgf_bg, "entry", "magnifier", "fixed-size");
1464    else if (wd->mgf_type == _ENTRY_MAGNIFIER_FILLWIDTH)
1465      _elm_theme_object_set(data, wd->mgf_bg, "entry", "magnifier", "fill-width");
1466    else
1467      return;
1468
1469    wd->mgf_clip = evas_object_rectangle_add(evas_object_evas_get(data));
1470    evas_object_color_set(wd->mgf_clip, 255, 255, 255, 255);
1471    edje_object_part_swallow(wd->mgf_bg, "swallow", wd->mgf_clip);
1472
1473    key_data = edje_object_data_get(wd->mgf_bg, "height");
1474    if (key_data) wd->mgf_height = atoi(key_data);
1475    key_data = edje_object_data_get(wd->mgf_bg, "scale");
1476    if (key_data) wd->mgf_scale = atof(key_data);
1477
1478    if (wd->mgf_type == _ENTRY_MAGNIFIER_FILLWIDTH)
1479      evas_object_resize(wd->mgf_bg, w, wd->mgf_height);
1480
1481    if (wd->scroll)
1482      {
1483         elm_smart_scroller_freeze_set(wd->scroller, EINA_TRUE);
1484         wd->mgf_proxy = evas_object_image_add(evas_object_evas_get(wd->scroller));
1485         evas_object_image_source_set(wd->mgf_proxy, wd->scroller);
1486      }
1487    else
1488      {
1489         wd->mgf_proxy = evas_object_image_add(evas_object_evas_get(data));
1490         evas_object_image_source_set(wd->mgf_proxy, data);
1491      }
1492
1493    mw = (Evas_Coord)((float)w * wd->mgf_scale);
1494    mh = (Evas_Coord)((float)h * wd->mgf_scale);
1495    if ((mw <= 0) || (mh <= 0))
1496      return;
1497
1498    evas_object_resize(wd->mgf_proxy, mw, mh);
1499    evas_object_image_fill_set(wd->mgf_proxy, 0, 0, mw, mh);
1500    evas_object_color_set(wd->mgf_proxy, 255, 255, 255, 255);
1501    evas_object_pass_events_set(wd->mgf_proxy, EINA_TRUE);
1502    evas_object_show(wd->mgf_proxy);
1503    evas_object_clip_set(wd->mgf_proxy, wd->mgf_clip);
1504
1505    evas_object_layer_set(wd->mgf_bg, EVAS_LAYER_MAX);
1506    evas_object_layer_set(wd->mgf_proxy, EVAS_LAYER_MAX);
1507 }
1508
1509 static Eina_Bool
1510 _signal_long_pressed(void *data)
1511 {
1512    Widget_Data *wd = elm_widget_data_get(data);
1513    if (!wd) return ECORE_CALLBACK_CANCEL;
1514
1515    wd->long_pressed = EINA_TRUE;
1516
1517    _cancel(data, NULL, NULL);
1518
1519    _magnifier_create(data);
1520    _magnifier_move(data);
1521    _magnifier_show(data);
1522    elm_object_scroll_freeze_push(data);
1523
1524    evas_object_smart_callback_call(data, SIG_LONGPRESSED, NULL);
1525    return ECORE_CALLBACK_CANCEL;
1526 }
1527
1528 static void
1529 _mouse_down(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
1530 {
1531    Widget_Data *wd = elm_widget_data_get(data);
1532    Evas_Event_Mouse_Down *ev = event_info;
1533    if (!wd) return;
1534    if (wd->disabled) return;
1535    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1536    wd->downx = ev->canvas.x;
1537    wd->downy = ev->canvas.y;
1538    wd->long_pressed = EINA_FALSE;
1539 }
1540
1541 static void
1542 _mouse_up(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
1543 {
1544    Widget_Data *wd = elm_widget_data_get(data);
1545    Evas_Event_Mouse_Up *ev = event_info;
1546    if (!wd) return;
1547    if (wd->disabled) return;
1548    if (ev->button == 1)
1549      {
1550         if (!wd->double_clicked)
1551           {
1552              if ((wd->api) && (wd->api->obj_mouseup))
1553                wd->api->obj_mouseup(data);
1554           }
1555         _magnifier_hide(data);
1556         elm_object_scroll_freeze_pop(data);
1557
1558         if (wd->long_pressed)
1559           _menu_press(data);
1560      }
1561    else if (ev->button == 3)
1562      {
1563         wd->usedown = 1;
1564         _menu_press(data);
1565      }
1566 }
1567
1568 static void
1569 _mouse_move(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
1570 {
1571    Widget_Data *wd = elm_widget_data_get(data);
1572    Evas_Event_Mouse_Move *ev = event_info;
1573    if (!wd) return;
1574    if (wd->disabled) return;
1575
1576    if (ev->buttons == 1)
1577      {
1578         if (wd->long_pressed)
1579           {
1580              _magnifier_show(data);
1581              _magnifier_move(data);
1582           }
1583      }
1584 }
1585
1586 static const char *
1587 _getbase(Evas_Object *obj)
1588 {
1589    Widget_Data *wd = elm_widget_data_get(obj);
1590    if (!wd) return "base";
1591    if (wd->editable)
1592      {
1593         if (wd->password) return "base-password";
1594         else
1595           {
1596              if (wd->single_line) return "base-single";
1597              else
1598                {
1599                   switch (wd->linewrap)
1600                     {
1601                      case ELM_WRAP_CHAR:
1602                         return "base-charwrap";
1603                      case ELM_WRAP_WORD:
1604                         return "base";
1605                      case ELM_WRAP_MIXED:
1606                         return "base-mixedwrap";
1607                      case ELM_WRAP_NONE:
1608                      default:
1609                         return "base-nowrap";
1610                     }
1611                }
1612           }
1613      }
1614    else
1615      {
1616         if (wd->password) return "base-password";
1617         else
1618           {
1619              if (wd->single_line) return "base-single-noedit";
1620              else
1621                {
1622                   switch (wd->linewrap)
1623                     {
1624                      case ELM_WRAP_CHAR:
1625                         return "base-noedit-charwrap";
1626                      case ELM_WRAP_WORD:
1627                         return "base-noedit";
1628                      case ELM_WRAP_MIXED:
1629                         return "base-noedit-mixedwrap";
1630                      case ELM_WRAP_NONE:
1631                      default:
1632                         return "base-nowrap-noedit";
1633                     }
1634                }
1635           }
1636      }
1637    return "base";
1638 }
1639
1640
1641 static int
1642 _entry_length_get(Evas_Object *obj)
1643 {
1644    int len;
1645    const char *str = elm_entry_entry_get(obj);
1646    if (!str) return 0;
1647
1648    char *plain_str = _elm_util_mkup_to_text(str);
1649    if (!plain_str) return 0;
1650
1651    len = strlen(plain_str);
1652    free(plain_str);
1653
1654    return len;
1655 }
1656
1657 #ifndef HAVE_STRCASESTR
1658 char* _strcasestr(const char *s, const char *find)
1659 {
1660    char c, sc;
1661    size_t len;
1662
1663    if ((c = *find++) != 0) {
1664       c = tolower((unsigned char) c);
1665       len = strlen(find);
1666       do {
1667          do {
1668             if( (sc = *s++) == 0)
1669                return NULL;
1670          } while ((char)tolower((unsigned char)sc) != c);
1671       } while (strncasecmp(s, find, len) != 0);
1672       s--;
1673    }
1674    return ((char*) s);
1675 }
1676 #endif
1677
1678 static void
1679 _matchlist_show(void *data)
1680 {
1681    Widget_Data *wd = elm_widget_data_get(data);
1682    const char *text = NULL;
1683    int textlen = 0;
1684    char *str_list = NULL, *str_result = NULL;
1685    char *str_mkup = NULL, *str_front = NULL, *str_mid = NULL;
1686
1687    Eina_List *l;
1688    Eina_Bool textfound = EINA_FALSE;
1689
1690    if (!wd) return;
1691    if (elm_widget_disabled_get(data)) return;
1692
1693    wd->matchlist_job = NULL;
1694
1695    if (wd->matchlist_list_clicked)
1696      {
1697         evas_object_hide(wd->hover);
1698         wd->matchlist_list_clicked = EINA_FALSE;
1699         return;
1700      }
1701    text = elm_entry_entry_get(data);
1702    if (text == NULL)
1703      return;
1704    textlen = strlen(text);
1705
1706    if (textlen < wd->matchlist_threshold)
1707      {
1708         evas_object_hide(wd->hover);
1709         return;
1710      }
1711
1712    evas_object_hide(wd->hover);
1713
1714    if (wd->match_list)
1715      {
1716         elm_list_clear(wd->list);
1717         EINA_LIST_FOREACH(wd->match_list, l, str_list)
1718           {
1719              if (wd->matchlist_case_sensitive)
1720                str_result = strstr(str_list, text);
1721              else
1722 #ifdef HAVE_STRCASESTR
1723                 str_result = strcasestr(str_list, text);
1724 #else
1725                 str_result = _strcasestr(str_list, text);
1726 #endif
1727
1728              if (str_result)
1729                {
1730                   str_mkup = malloc(strlen(str_list) + 16);
1731                   if (str_mkup == NULL) return;
1732
1733                   textlen = strlen(str_list) - strlen(str_result);
1734                   str_front = malloc(textlen + 1);
1735                   if (str_front == NULL) return;
1736
1737                   memset(str_front, 0, textlen + 1);
1738                   strncpy(str_front, str_list, textlen);
1739
1740                   textlen = strlen(text);
1741                   str_mid = malloc(textlen + 1);
1742                   if (str_mid == NULL) return;
1743
1744                   memset(str_mid, 0, textlen + 1);
1745                   strncpy(str_mid, str_list + strlen(str_front), textlen);
1746
1747                   sprintf(str_mkup, "%s<match>%s</match>%s", str_front, str_mid, str_result + strlen(text));
1748
1749                   elm_list_item_append(wd->list, str_mkup, NULL, NULL, NULL, NULL);
1750
1751                   if (str_mkup) free(str_mkup);
1752                   if (str_front) free(str_front);
1753                   if (str_mid) free(str_mid);
1754
1755                   textfound=EINA_TRUE;
1756                }
1757           }
1758      }
1759    else
1760      return;
1761
1762    if (textfound)
1763      {
1764         elm_list_go(wd->list);
1765         evas_object_show(wd->hover);
1766         evas_object_raise(wd->hover);
1767      }
1768 }
1769
1770 static void _matchlist_list_clicked( void *data, Evas_Object *obj, void *event_info )
1771 {
1772    Elm_List_Item *it = (Elm_List_Item *) elm_list_selected_item_get(obj);
1773    Widget_Data *wd = elm_widget_data_get(data);
1774    if ((it == NULL) || (wd == NULL))
1775      return;
1776
1777    const char *text = elm_list_item_label_get(it);
1778    evas_object_smart_callback_call((Evas_Object *)data, "selected", (void *)text);
1779    if (wd->match_list)
1780      {
1781         if (text != NULL)
1782           {
1783              elm_entry_entry_set(data, elm_entry_markup_to_utf8(text));
1784              elm_entry_cursor_end_set(data);
1785              wd->matchlist_list_clicked = EINA_TRUE;
1786
1787              evas_object_smart_callback_call(data, SIG_MATCHLIST_CLICKED, elm_entry_markup_to_utf8(text));
1788           }
1789      }
1790    elm_widget_focus_set(data, EINA_TRUE);
1791 }
1792
1793 static void
1794 _entry_changed_common_handling(void *data, const char *event)
1795 {
1796    Widget_Data *wd = elm_widget_data_get(data);
1797    Evas_Coord minw, minh;
1798    if (!wd) return;
1799    wd->changed = EINA_TRUE;
1800    /* Reset the size hints which are no more relevant.
1801     * Keep the height, this is a hack, but doesn't really matter
1802     * cause we'll re-eval in a moment. */
1803    if (wd->scroll)
1804      {
1805         evas_object_size_hint_min_get(data, &minw, &minh);
1806         evas_object_size_hint_min_set(data, minw, minh);
1807      }
1808    else
1809      {
1810         evas_object_size_hint_min_get(data, NULL, &minh);
1811         evas_object_size_hint_min_set(data, -1, minh);
1812      }
1813
1814    _sizing_eval(data);
1815    if (wd->text) eina_stringshare_del(wd->text);
1816    wd->text = NULL;
1817    if (wd->password_text) eina_stringshare_del(wd->password_text);
1818    wd->password_text = NULL;
1819    _check_enable_returnkey(data);
1820    evas_object_smart_callback_call(data, event, NULL);
1821    if (wd->delay_write)
1822      {
1823         ecore_timer_del(wd->delay_write);
1824         wd->delay_write = NULL;
1825      }
1826
1827    if ((wd->single_line) && (wd->match_list))
1828      {
1829         if (wd->matchlist_job) ecore_job_del(wd->matchlist_job);
1830         wd->matchlist_job = ecore_job_add(_matchlist_show, data);
1831      }
1832    if ((!wd->autosave) || (!wd->file)) return;
1833    wd->delay_write = ecore_timer_add(2.0, _delay_write, data);
1834 }
1835
1836 static void
1837 _signal_entry_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1838 {
1839    Widget_Data *wd = elm_widget_data_get(data);
1840    if (!wd) return;
1841
1842    _entry_changed_common_handling(data, SIG_CHANGED);
1843
1844    if ((wd->api) && (wd->api->obj_hidemenu))
1845      wd->api->obj_hidemenu(data);
1846 }
1847
1848 static void
1849 _signal_preedit_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1850 {
1851    Widget_Data *wd = elm_widget_data_get(data);
1852    if (!wd) return;
1853
1854    _entry_changed_common_handling(data, SIG_PREEDIT_CHANGED);
1855
1856    if ((wd->api) && (wd->api->obj_hidemenu))
1857      wd->api->obj_hidemenu(data);
1858 }
1859
1860 static void
1861 _signal_handler_move_start(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1862 {
1863    Widget_Data *wd = elm_widget_data_get(data);
1864    if (!wd) return;
1865
1866    elm_object_scroll_freeze_push(data);
1867
1868    if ((wd->api) && (wd->api->obj_hidemenu))
1869      wd->api->obj_hidemenu(data);
1870
1871    _magnifier_create(data);
1872    _magnifier_move(data);
1873    _magnifier_show(data);
1874 }
1875
1876 static void
1877 _signal_handler_move_end(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1878 {
1879    Widget_Data *wd = elm_widget_data_get(data);
1880    if (!wd) return;
1881
1882    elm_object_scroll_freeze_pop(data);
1883
1884    if (wd->have_selection)
1885      {
1886         _magnifier_hide(data);
1887         _menu_press(data);
1888      }
1889 }
1890
1891 static void
1892 _signal_handler_moving(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1893 {
1894    _magnifier_move(data);
1895    _magnifier_show(data);
1896 }
1897
1898 static Evas_Object *
1899 _viewport_obj_get(Evas_Object *data)
1900 {
1901    Widget_Data *wd = elm_widget_data_get(data);
1902    if (!wd) return NULL;
1903
1904    if(!data || !strlen(elm_widget_type_get(data)))
1905      return NULL;
1906
1907    Evas_Coord x, y, w, h;
1908    x = y = w = h = -1;
1909
1910    if (wd->scroll)
1911      {
1912         //evas_object_geometry_get(wd->scroller, &x, &y, &w, &h);
1913         //printf(">>> wd->scroller (%d, %d, %d, %d) \n", x, y, w, h);
1914         return wd->scroller;
1915      }
1916
1917    Evas_Object *parent_obj = data;
1918
1919    while(parent_obj = elm_widget_parent_get(parent_obj))
1920      {
1921         //evas_object_geometry_get(parent_obj, &x, &y, &w, &h);
1922         //printf(">>> %s (%d, %d, %d, %d) \n", elm_widget_type_get(parent_obj), x, y, w, h);
1923         if (!strcmp(elm_widget_type_get(parent_obj), "scroller") ||
1924             !strcmp(elm_widget_type_get(parent_obj), "genlist"))
1925           return parent_obj;
1926      }
1927
1928    return NULL;
1929 }
1930
1931 static void
1932 _signal_selection_end(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1933 {
1934    _magnifier_hide(data);
1935    _menu_press(data);
1936 }
1937
1938 static void
1939 _signal_selection_start(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1940 {
1941    Widget_Data *wd = elm_widget_data_get(data);
1942    const Eina_List *l;
1943    Evas_Object *entry;
1944    if (!wd) return;
1945    EINA_LIST_FOREACH(entries, l, entry)
1946      {
1947         if (entry != data) elm_entry_select_none(entry);
1948      }
1949    wd->have_selection = EINA_TRUE;
1950    wd->selmode = EINA_TRUE;
1951    evas_object_smart_callback_call(data, SIG_SELECTION_START, NULL);
1952 #ifdef HAVE_ELEMENTARY_X
1953    if (wd->sel_notify_handler)
1954      {
1955         const char *txt = elm_entry_selection_get(data);
1956         Evas_Object *top;
1957
1958         top = elm_widget_top_get(data);
1959         if ((top) && (elm_win_xwindow_get(top)))
1960           elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_FORMAT_MARKUP, txt);
1961      }
1962 #endif
1963
1964    if (!_elm_config->desktop_entry)
1965      edje_object_part_text_viewport_object_set(wd->ent, "elm.text", _viewport_obj_get(data));
1966 }
1967
1968 static void
1969 _signal_magnifier_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1970 {
1971    Evas_Coord cx, cy, cw, ch;
1972    Widget_Data *wd = elm_widget_data_get(data);
1973    if (!wd) return;
1974
1975    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", &cx, &cy, &cw, &ch);
1976    if (!wd->deferred_recalc_job)
1977      elm_widget_show_region_set(data, cx, cy, cw, ch, EINA_FALSE);
1978    else
1979      {
1980         wd->deferred_cur = EINA_TRUE;
1981         wd->cx = cx;
1982         wd->cy = cy;
1983         wd->cw = cw;
1984         wd->ch = ch + elm_finger_size_get();
1985      }
1986 }
1987
1988 static void
1989 _signal_selection_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1990 {
1991    Evas_Coord cx, cy, cw, ch;
1992    Widget_Data *wd = elm_widget_data_get(data);
1993    if (!wd) return;
1994    wd->have_selection = EINA_TRUE;
1995    wd->selmode = EINA_TRUE;
1996    evas_object_smart_callback_call(data, SIG_SELECTION_CHANGED, NULL);
1997    elm_selection_set(ELM_SEL_PRIMARY, obj, ELM_SEL_FORMAT_MARKUP,
1998                      elm_entry_selection_get(data));
1999
2000    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", &cx, &cy, &cw, &ch);
2001    if (!wd->deferred_recalc_job)
2002      elm_widget_show_region_set(data, cx, cy, cw, ch + elm_finger_size_get(), EINA_FALSE);
2003    else
2004      {
2005         wd->deferred_cur = EINA_TRUE;
2006         wd->cx = cx;
2007         wd->cy = cy;
2008         wd->cw = cw;
2009         wd->ch = ch + elm_finger_size_get();
2010      }
2011 }
2012
2013 static void
2014 _signal_selection_cleared(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2015 {
2016    Widget_Data *wd = elm_widget_data_get(data);
2017    if (!wd) return;
2018    if (!wd->have_selection) return;
2019    wd->have_selection = EINA_FALSE;
2020    wd->selmode = EINA_FALSE;
2021    evas_object_smart_callback_call(data, SIG_SELECTION_CLEARED, NULL);
2022    if (wd->sel_notify_handler)
2023      {
2024         if (wd->cut_sel)
2025           {
2026 #ifdef HAVE_ELEMENTARY_X
2027              Evas_Object *top;
2028
2029              top = elm_widget_top_get(data);
2030              if ((top) && (elm_win_xwindow_get(top)))
2031                elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_FORMAT_MARKUP,
2032                                  wd->cut_sel);
2033 #endif
2034              eina_stringshare_del(wd->cut_sel);
2035              wd->cut_sel = NULL;
2036           }
2037         else
2038           {
2039 #ifdef HAVE_ELEMENTARY_X
2040              Evas_Object *top;
2041
2042              top = elm_widget_top_get(data);
2043              if ((top) && (elm_win_xwindow_get(top)))
2044                elm_selection_clear(ELM_SEL_PRIMARY, data);
2045 #endif
2046           }
2047      }
2048
2049    if ((wd->api) && (wd->api->obj_hidemenu))
2050      {
2051         wd->api->obj_hidemenu(data);
2052      }
2053 }
2054
2055 static void
2056 _signal_entry_paste_request(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2057 {
2058    Widget_Data *wd = elm_widget_data_get(data);
2059    if (!wd) return;
2060    evas_object_smart_callback_call(data, SIG_SELECTION_PASTE, NULL);
2061    if (wd->sel_notify_handler)
2062      {
2063 #ifdef HAVE_ELEMENTARY_X
2064         Evas_Object *top;
2065
2066         top = elm_widget_top_get(data);
2067         if ((top) && (elm_win_xwindow_get(top)))
2068           {
2069              wd->selection_asked = EINA_TRUE;
2070              elm_selection_get(ELM_SEL_CLIPBOARD, ELM_SEL_FORMAT_MARKUP, data,
2071                                NULL, NULL);
2072           }
2073 #endif
2074      }
2075 }
2076
2077 static void
2078 _signal_entry_copy_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2079 {
2080    Widget_Data *wd = elm_widget_data_get(data);
2081    if (!wd) return;
2082    evas_object_smart_callback_call(data, SIG_SELECTION_COPY, NULL);
2083    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_FORMAT_MARKUP,
2084                      elm_entry_selection_get(data));
2085 }
2086
2087 static void
2088 _signal_entry_cut_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2089 {
2090    Widget_Data *wd = elm_widget_data_get(data);
2091    if (!wd) return;
2092    evas_object_smart_callback_call(data, SIG_SELECTION_CUT, NULL);
2093    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_FORMAT_MARKUP,
2094                      elm_entry_selection_get(data));
2095    edje_object_part_text_insert(wd->ent, "elm.text", "");
2096    wd->changed = EINA_TRUE;
2097    _sizing_eval(data);
2098 }
2099
2100 static void
2101 _signal_cursor_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2102 {
2103    Widget_Data *wd = elm_widget_data_get(data);
2104    if (!wd) return;
2105    wd->cursor_pos = edje_object_part_text_cursor_pos_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2106    wd->cur_changed = EINA_TRUE;
2107    _recalc_cursor_geometry(data);
2108 }
2109
2110 static void
2111 _signal_anchor_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2112 {
2113    Widget_Data *wd = elm_widget_data_get(data);
2114    if (!wd) return;
2115 }
2116
2117 static void
2118 _signal_anchor_up(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2119 {
2120    Widget_Data *wd = elm_widget_data_get(data);
2121    if (!wd) return;
2122 }
2123
2124 static void
2125 _signal_anchor_clicked(void *data, Evas_Object *obj __UNUSED__, const char *emission, const char *source __UNUSED__)
2126 {
2127    Widget_Data *wd = elm_widget_data_get(data);
2128    Elm_Entry_Anchor_Info ei;
2129    char *buf2, *p, *p2, *n;
2130    if (!wd) return;
2131    p = strrchr(emission, ',');
2132    if (p)
2133      {
2134         const Eina_List *geoms;
2135
2136         n = p + 1;
2137         p2 = p -1;
2138         while (p2 >= emission)
2139           {
2140              if (*p2 == ',') break;
2141              p2--;
2142           }
2143         p2++;
2144         buf2 = alloca(5 + p - p2);
2145         strncpy(buf2, p2, p - p2);
2146         buf2[p - p2] = 0;
2147         ei.name = n;
2148         ei.button = atoi(buf2);
2149         ei.x = ei.y = ei.w = ei.h = 0;
2150         geoms =
2151            edje_object_part_text_anchor_geometry_get(wd->ent, "elm.text", ei.name);
2152         if (geoms)
2153           {
2154              Evas_Textblock_Rectangle *r;
2155              const Eina_List *l;
2156              Evas_Coord px, py, x, y;
2157
2158              evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
2159              evas_pointer_canvas_xy_get(evas_object_evas_get(wd->ent), &px, &py);
2160              EINA_LIST_FOREACH(geoms, l, r)
2161                {
2162                   if (((r->x + x) <= px) && ((r->y + y) <= py) &&
2163                       ((r->x + x + r->w) > px) && ((r->y + y + r->h) > py))
2164                     {
2165                        ei.x = r->x + x;
2166                        ei.y = r->y + y;
2167                        ei.w = r->w;
2168                        ei.h = r->h;
2169                        break;
2170                     }
2171                }
2172           }
2173         if (!wd->disabled)
2174           evas_object_smart_callback_call(data, SIG_ANCHOR_CLICKED, &ei);
2175      }
2176 }
2177
2178 static void
2179 _signal_anchor_move(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2180 {
2181    Widget_Data *wd = elm_widget_data_get(data);
2182    if (!wd) return;
2183 }
2184
2185 static void
2186 _signal_anchor_in(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2187 {
2188    Widget_Data *wd = elm_widget_data_get(data);
2189    if (!wd) return;
2190 }
2191
2192 static void
2193 _signal_anchor_out(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2194 {
2195    Widget_Data *wd = elm_widget_data_get(data);
2196    if (!wd) return;
2197 }
2198
2199 static void
2200 _signal_key_enter(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2201 {
2202    Widget_Data *wd = elm_widget_data_get(data);
2203    if (!wd) return;
2204    evas_object_smart_callback_call(data, SIG_ACTIVATED, NULL);
2205 }
2206
2207 static void
2208 _signal_mouse_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2209 {
2210    Widget_Data *wd = elm_widget_data_get(data);
2211    if (!wd) return;
2212    wd->double_clicked = EINA_FALSE;
2213    evas_object_smart_callback_call(data, SIG_PRESS, NULL);
2214
2215    if ((wd->api) && (wd->api->obj_hidemenu))
2216      wd->api->obj_hidemenu(data);
2217 }
2218
2219 static void
2220 _signal_mouse_clicked(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2221 {
2222    Widget_Data *wd = elm_widget_data_get(data);
2223    if (!wd) return;
2224    evas_object_smart_callback_call(data, SIG_CLICKED, NULL);
2225
2226    if (!_elm_config->desktop_entry && !wd->double_clicked)
2227      _cancel(data, NULL, NULL);
2228 }
2229
2230 static void
2231 _signal_mouse_double(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2232 {
2233    Widget_Data *wd = elm_widget_data_get(data);
2234    if (!wd) return;
2235    wd->double_clicked = EINA_TRUE;
2236    evas_object_smart_callback_call(data, SIG_CLICKED_DOUBLE, NULL);
2237 }
2238
2239 #ifdef HAVE_ELEMENTARY_X
2240 static Eina_Bool
2241 _event_selection_notify(void *data, int type __UNUSED__, void *event)
2242 {
2243    Widget_Data *wd = elm_widget_data_get(data);
2244    Ecore_X_Event_Selection_Notify *ev = event;
2245    if (!wd) return ECORE_CALLBACK_PASS_ON;
2246    if ((!wd->selection_asked) && (!wd->drag_selection_asked))
2247      return ECORE_CALLBACK_PASS_ON;
2248
2249    if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
2250        (ev->selection == ECORE_X_SELECTION_PRIMARY))
2251      {
2252         Ecore_X_Selection_Data_Text *text_data;
2253
2254         text_data = ev->data;
2255         if (text_data->data.content == ECORE_X_SELECTION_CONTENT_TEXT)
2256           {
2257              if (text_data->text)
2258                {
2259                   char *txt = _elm_util_text_to_mkup(text_data->text);
2260
2261                   if (txt)
2262                     {
2263                        elm_entry_entry_insert(data, txt);
2264                        free(txt);
2265                     }
2266                }
2267           }
2268         wd->selection_asked = EINA_FALSE;
2269      }
2270    else if (ev->selection == ECORE_X_SELECTION_XDND)
2271      {
2272         Ecore_X_Selection_Data_Text *text_data;
2273
2274         text_data = ev->data;
2275         if (text_data->data.content == ECORE_X_SELECTION_CONTENT_TEXT)
2276           {
2277              if (text_data->text)
2278                {
2279                   char *txt = _elm_util_text_to_mkup(text_data->text);
2280
2281                   if (txt)
2282                     {
2283                        /* Massive FIXME: this should be at the drag point */
2284                        elm_entry_entry_insert(data, txt);
2285                        free(txt);
2286                     }
2287                }
2288           }
2289         wd->drag_selection_asked = EINA_FALSE;
2290
2291         ecore_x_dnd_send_finished();
2292
2293      }
2294    return ECORE_CALLBACK_PASS_ON;
2295 }
2296
2297 static Eina_Bool
2298 _event_selection_clear(void *data __UNUSED__, int type __UNUSED__, void *event __UNUSED__)
2299 {
2300 /*
2301    Widget_Data *wd = elm_widget_data_get(data);
2302    Ecore_X_Event_Selection_Clear *ev = event;
2303    if (!wd) return ECORE_CALLBACK_PASS_ON;
2304    if (!wd->have_selection) return ECORE_CALLBACK_PASS_ON;
2305    if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
2306        (ev->selection == ECORE_X_SELECTION_PRIMARY))
2307      {
2308         elm_entry_select_none(data);
2309      }
2310    return 1; */
2311
2312    // start for cbhm
2313    Evas_Object *top = elm_widget_top_get(data);
2314    Ecore_X_Event_Selection_Clear *ev = event;
2315
2316    if (!top)
2317       return ECORE_CALLBACK_PASS_ON;
2318
2319    if (ev->selection != ECORE_X_SELECTION_SECONDARY)
2320      {
2321         return ECORE_CALLBACK_PASS_ON;
2322      }
2323
2324    if (cnpwidgetdata == data)
2325      {
2326         elm_selection_get(ELM_SEL_SECONDARY,ELM_SEL_FORMAT_MARKUP,data,NULL,NULL);
2327      }
2328
2329    // end for cbhm
2330    return ECORE_CALLBACK_PASS_ON;
2331 }
2332
2333 static Eina_Bool
2334 _drag_drop_cb(void *data __UNUSED__, Evas_Object *obj, Elm_Selection_Data *drop)
2335 {
2336    Widget_Data *wd;
2337    Eina_Bool rv;
2338
2339    wd = elm_widget_data_get(obj);
2340    if (!wd) return EINA_FALSE;
2341    printf("Inserting at (%d,%d) %s\n",drop->x,drop->y,(char*)drop->data);
2342
2343    edje_object_part_text_cursor_copy(wd->ent, "elm.text",
2344                                      EDJE_CURSOR_MAIN,/*->*/EDJE_CURSOR_USER);
2345    rv = edje_object_part_text_cursor_coord_set(wd->ent,"elm.text",
2346                                                EDJE_CURSOR_MAIN,drop->x,drop->y);
2347    if (!rv) printf("Warning: Failed to position cursor: paste anyway\n");
2348    elm_entry_entry_insert(obj, drop->data);
2349    edje_object_part_text_cursor_copy(wd->ent, "elm.text",
2350                                      EDJE_CURSOR_USER,/*->*/EDJE_CURSOR_MAIN);
2351
2352    return EINA_TRUE;
2353 }
2354 #endif
2355
2356 static Evas_Object *
2357 _get_item(void *data, Evas_Object *edje __UNUSED__, const char *part __UNUSED__, const char *item)
2358 {
2359    Widget_Data *wd = elm_widget_data_get(data);
2360    Evas_Object *o;
2361    Eina_List *l;
2362    Elm_Entry_Item_Provider *ip;
2363
2364    EINA_LIST_FOREACH(wd->item_providers, l, ip)
2365      {
2366         o = ip->func(ip->data, data, item);
2367         if (o) return o;
2368      }
2369    if (!strncmp(item, "file://", 7))
2370      {
2371         const char *fname = item + 7;
2372
2373         o = evas_object_image_filled_add(evas_object_evas_get(data));
2374         evas_object_image_file_set(o, fname, NULL);
2375         if (evas_object_image_load_error_get(o) == EVAS_LOAD_ERROR_NONE)
2376           {
2377              evas_object_show(o);
2378           }
2379         else
2380           {
2381              evas_object_del(o);
2382              o = edje_object_add(evas_object_evas_get(data));
2383              _elm_theme_object_set(data, o, "entry/emoticon", "wtf", elm_widget_style_get(data));
2384           }
2385         return o;
2386      }
2387    o = edje_object_add(evas_object_evas_get(data));
2388    if (!_elm_theme_object_set(data, o, "entry", item, elm_widget_style_get(data)))
2389      _elm_theme_object_set(data, o, "entry/emoticon", "wtf", elm_widget_style_get(data));
2390    return o;
2391 }
2392
2393 static int
2394 _strbuf_key_value_replace(Eina_Strbuf *srcbuf, char *key, const char *value, int deleteflag)
2395 {
2396    const char *srcstring = NULL;
2397    Eina_Strbuf *repbuf = NULL, *diffbuf = NULL;
2398    char *curlocater, *replocater;
2399    char *starttag, *endtag;
2400    int tagtxtlen = 0, insertflag = 0;
2401
2402    srcstring = eina_strbuf_string_get(srcbuf);
2403    curlocater = strstr(srcstring, key);
2404
2405    if (!curlocater || !srcstring)
2406      {
2407        insertflag = 1;
2408      }
2409    else
2410      {
2411        do
2412          {
2413            starttag = strchr(srcstring, '<');
2414            endtag = strchr(srcstring, '>');
2415            tagtxtlen = endtag - starttag;
2416            if (tagtxtlen <= 0) tagtxtlen = 0;
2417            if (starttag < curlocater && curlocater < endtag) break;
2418            if (endtag != NULL && endtag+1 != NULL)
2419              srcstring = endtag+1;
2420            else
2421              break;
2422          } while (strlen(srcstring) > 1);
2423
2424        if (starttag && endtag && tagtxtlen > strlen(key))
2425          {
2426            repbuf = eina_strbuf_new();
2427            diffbuf = eina_strbuf_new();
2428            eina_strbuf_append_n(repbuf, starttag, tagtxtlen);
2429            srcstring = eina_strbuf_string_get(repbuf);
2430            curlocater = strstr(srcstring, key);
2431
2432            if (curlocater != NULL)
2433              {
2434                replocater = curlocater + strlen(key) + 1;
2435
2436                while ((*replocater) && (*replocater != ' ') && (*replocater != '>'))
2437                  replocater++;
2438
2439                if (replocater-curlocater > strlen(key)+1)
2440                  {
2441                    eina_strbuf_append_n(diffbuf, curlocater, replocater-curlocater+1);
2442                  }
2443                else
2444                  insertflag = 1;
2445              }
2446            else
2447              {
2448                insertflag = 1;
2449              }
2450            eina_strbuf_reset(repbuf);
2451          }
2452        else
2453          {
2454            insertflag = 1;
2455          }
2456      }
2457
2458    if (repbuf == NULL) repbuf = eina_strbuf_new();
2459    if (diffbuf == NULL) diffbuf = eina_strbuf_new();
2460
2461    if (insertflag)
2462      {
2463        eina_strbuf_append_printf(repbuf, "<%s=%s>", key, value);
2464        eina_strbuf_prepend(srcbuf, eina_strbuf_string_get(repbuf));
2465      }
2466    else
2467      {
2468         if (deleteflag)
2469           {
2470             eina_strbuf_prepend(diffbuf, "<");
2471             eina_strbuf_append(diffbuf, ">");
2472             eina_strbuf_replace_first(srcbuf, eina_strbuf_string_get(diffbuf), "");
2473           }
2474         else
2475           {
2476             eina_strbuf_append_printf(repbuf, "%s=%s", key, value);
2477             eina_strbuf_replace_first(srcbuf, eina_strbuf_string_get(diffbuf), eina_strbuf_string_get(repbuf));
2478           }
2479      }
2480
2481    if (repbuf) eina_strbuf_free(repbuf);
2482    if (diffbuf) eina_strbuf_free(diffbuf);
2483
2484    return 0;
2485 }
2486
2487 static int
2488 _stringshare_key_value_replace(const char **srcstring, char *key, const char *value, int deleteflag)
2489 {
2490    Eina_Strbuf *sharebuf = NULL;
2491
2492    sharebuf = eina_strbuf_new();
2493    eina_strbuf_append(sharebuf, *srcstring);
2494    _strbuf_key_value_replace(sharebuf, key, value, deleteflag);
2495    eina_stringshare_del(*srcstring);
2496    *srcstring = eina_stringshare_add(eina_strbuf_string_get(sharebuf));
2497    eina_strbuf_free(sharebuf);
2498
2499    return 0;
2500 }
2501
2502 static void
2503 _text_filter(void *data, Evas_Object *edje __UNUSED__, const char *part __UNUSED__, Edje_Text_Filter_Type type, char **text)
2504 {
2505    Widget_Data *wd = elm_widget_data_get(data);
2506    Eina_List *l;
2507    Elm_Entry_Text_Filter *tf;
2508
2509    if (type == EDJE_TEXT_FILTER_FORMAT)
2510      return;
2511
2512    EINA_LIST_FOREACH(wd->text_filters, l, tf)
2513      {
2514         tf->func(tf->data, data, text);
2515         if (!*text)
2516           break;
2517      }
2518 }
2519
2520 /* This function is used to insert text by chunks in jobs */
2521 static Eina_Bool
2522 _text_append_idler(void *data)
2523 {
2524    int start;
2525    char backup;
2526    Evas_Object *obj = (Evas_Object *) data;
2527    Widget_Data *wd = elm_widget_data_get(obj);
2528    if (wd->text) eina_stringshare_del(wd->text);
2529    wd->text = NULL;
2530    if (wd->password_text) eina_stringshare_del(wd->password_text);
2531    wd->password_text = NULL;
2532    wd->changed = EINA_TRUE;
2533
2534    start = wd->append_text_position;
2535    if (start + _CHUNK_SIZE < wd->append_text_len)
2536      {
2537         int pos = start;
2538         int tag_start, esc_start;
2539
2540         tag_start = esc_start = -1;
2541         /* Find proper markup cut place */
2542         while (pos - start < _CHUNK_SIZE)
2543           {
2544              int prev_pos = pos;
2545              Eina_Unicode tmp =
2546                 eina_unicode_utf8_get_next(wd->append_text_left, &pos);
2547              if (esc_start == -1)
2548                {
2549                   if (tmp == '<')
2550                      tag_start = prev_pos;
2551                   else if (tmp == '>')
2552                      tag_start = -1;
2553                }
2554              else if (tag_start == -1)
2555                {
2556                   if (tmp == '&')
2557                      esc_start = prev_pos;
2558                   else if (tmp == ';')
2559                      esc_start = -1;
2560                }
2561           }
2562
2563         if (tag_start >= 0)
2564           {
2565              wd->append_text_position = tag_start;
2566           }
2567         else if (esc_start >= 0)
2568           {
2569              wd->append_text_position = esc_start;
2570           }
2571         else
2572           {
2573              wd->append_text_position = pos;
2574           }
2575      }
2576    else
2577      {
2578         wd->append_text_position = wd->append_text_len;
2579      }
2580
2581    backup = wd->append_text_left[wd->append_text_position];
2582    wd->append_text_left[wd->append_text_position] = '\0';
2583
2584    edje_object_part_text_append(wd->ent, "elm.text",
2585          wd->append_text_left + start);
2586
2587    wd->append_text_left[wd->append_text_position] = backup;
2588
2589    /* If there's still more to go, renew the idler, else, cleanup */
2590    if (wd->append_text_position < wd->append_text_len)
2591      {
2592         return ECORE_CALLBACK_RENEW;
2593      }
2594    else
2595      {
2596         free(wd->append_text_left);
2597         wd->append_text_left = NULL;
2598         wd->append_text_idler = NULL;
2599         return ECORE_CALLBACK_CANCEL;
2600      }
2601 }
2602
2603 static void
2604 _add_chars_till_limit(Evas_Object *obj, char **text, int can_add, Length_Unit unit)
2605 {
2606    int i = 0, unit_size;
2607    int current_len = strlen(*text);
2608    char *new_text = *text;
2609    if (unit >= LENGTH_UNIT_LAST) return;
2610    while (*new_text)
2611      {
2612         if (*new_text == '<')
2613           {
2614              while (*new_text != '>')
2615                {
2616                   new_text++;
2617                   if (!*new_text) break;
2618                }
2619              new_text++;
2620           }
2621         else
2622           {
2623              int index = 0;
2624              if (*new_text == '&')
2625                {
2626                   while (*(new_text + index) != ';')
2627                     {
2628                        index++;
2629                        if (!*(new_text + index)) break;
2630                     }
2631                }
2632              char *markup;
2633              index = evas_string_char_next_get(new_text, index, NULL);
2634              markup = malloc(index + 1);
2635              strncpy(markup, new_text, index);
2636              markup[index] = 0;
2637              if (unit == LENGTH_UNIT_BYTE)
2638                unit_size = strlen(elm_entry_markup_to_utf8(markup));
2639              else if (unit == LENGTH_UNIT_CHAR)
2640                unit_size = evas_string_char_len_get(elm_entry_markup_to_utf8(markup));
2641              if (markup)
2642                {
2643                   free(markup);
2644                   markup = NULL;
2645                }
2646              if (can_add < unit_size)
2647                {
2648                   if (!i)
2649                     {
2650                        evas_object_smart_callback_call(obj, "maxlength,reached", NULL);
2651                        free(*text);
2652                        *text = NULL;
2653                        return;
2654                     }
2655                   can_add = 0;
2656                   strncpy(new_text, new_text + index, current_len - ((new_text + index) - *text));
2657                   current_len -= index;
2658                   (*text)[current_len] = 0;
2659                }
2660              else
2661                {
2662                   new_text += index;
2663                   can_add -= unit_size;
2664                }
2665              i++;
2666           }
2667      }
2668    evas_object_smart_callback_call(obj, "maxlength,reached", NULL);
2669 }
2670
2671 static void
2672 _elm_entry_text_set(Evas_Object *obj, const char *item, const char *entry)
2673 {
2674    int len = 0;
2675    ELM_CHECK_WIDTYPE(obj, widtype);
2676    if (item && strcmp(item, "default")) return;
2677    Widget_Data *wd = elm_widget_data_get(obj);
2678    if (!wd) return;
2679    if (!entry) entry = "";
2680    if (wd->text) eina_stringshare_del(wd->text);
2681    wd->text = NULL;
2682    if (wd->password_text) eina_stringshare_del(wd->password_text);
2683    wd->password_text = NULL;
2684    wd->changed = EINA_TRUE;
2685
2686    /* Clear currently pending job if there is one */
2687    if (wd->append_text_idler)
2688      {
2689         ecore_idler_del(wd->append_text_idler);
2690         free(wd->append_text_left);
2691         wd->append_text_left = NULL;
2692         wd->append_text_idler = NULL;
2693      }
2694
2695    len = strlen(entry);
2696    /* Split to ~_CHUNK_SIZE chunks */
2697    if (len > _CHUNK_SIZE)
2698      {
2699         wd->append_text_left = (char *) malloc(len + 1);
2700      }
2701
2702    /* If we decided to use the idler */
2703    if (wd->append_text_left)
2704      {
2705         /* Need to clear the entry first */
2706         edje_object_part_text_set(wd->ent, "elm.text", "");
2707         memcpy(wd->append_text_left, entry, len + 1);
2708         wd->append_text_position = 0;
2709         wd->append_text_len = len;
2710         wd->append_text_idler = ecore_idler_add(_text_append_idler, obj);
2711      }
2712    else
2713      {
2714         edje_object_part_text_set(wd->ent, "elm.text", entry);
2715      }
2716 }
2717
2718 static const char *
2719 _elm_entry_text_get(const Evas_Object *obj, const char *item)
2720 {
2721    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2722    Widget_Data *wd = elm_widget_data_get(obj);
2723    if (item && strcmp(item, "default")) return NULL;
2724    const char *text;
2725    if (!wd) return NULL;
2726    if (wd->password)
2727      {
2728         if(wd->password_text) return wd->password_text;
2729      }
2730    else if (wd->text) 
2731      {
2732         return wd->text;
2733      }
2734    text = edje_object_part_text_get(wd->ent, "elm.text");
2735    if (!text)
2736      {
2737         ERR("text=NULL for edje %p, part 'elm.text'", wd->ent);
2738         return NULL;
2739      }
2740    eina_stringshare_replace(&wd->text, text);
2741    if (wd->password)
2742      {
2743         const char *pw_text;
2744         pw_text = elm_entry_markup_to_utf8(wd->text);
2745         if (pw_text)
2746           {
2747              eina_stringshare_replace(&wd->password_text, pw_text);
2748              free(pw_text);
2749              return wd->password_text;
2750           }
2751      }
2752    return wd->text;
2753 }
2754
2755 /**
2756  * This adds an entry to @p parent object.
2757  *
2758  * @param parent The parent object
2759  * @return The new object or NULL if it cannot be created
2760  *
2761  * @ingroup Entry
2762  */
2763 EAPI Evas_Object *
2764 elm_entry_add(Evas_Object *parent)
2765 {
2766    Evas_Object *obj, *top;
2767    Evas *e;
2768    Widget_Data *wd;
2769
2770    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
2771
2772    ELM_SET_WIDTYPE(widtype, "entry");
2773    elm_widget_type_set(obj, "entry");
2774    elm_widget_sub_object_add(parent, obj);
2775    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
2776    elm_widget_data_set(obj, wd);
2777    elm_widget_del_hook_set(obj, _del_hook);
2778    elm_widget_del_pre_hook_set(obj, _del_pre_hook);
2779    elm_widget_theme_hook_set(obj, _theme_hook);
2780    elm_widget_disable_hook_set(obj, _disable_hook);
2781    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
2782    elm_widget_focus_region_hook_set(obj, _focus_region_hook);
2783    elm_widget_on_focus_region_hook_set(obj, _on_focus_region_hook);
2784    elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook);
2785    elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook);
2786    elm_object_cursor_set(obj, ELM_CURSOR_XTERM);
2787    elm_widget_can_focus_set(obj, EINA_TRUE);
2788    elm_widget_highlight_ignore_set(obj, EINA_TRUE);
2789    elm_widget_text_set_hook_set(obj, _elm_entry_text_set);
2790    elm_widget_text_get_hook_set(obj, _elm_entry_text_get);
2791
2792    wd->scroller = elm_smart_scroller_add(e);
2793    elm_widget_sub_object_add(obj, wd->scroller);
2794    elm_smart_scroller_widget_set(wd->scroller, obj);
2795    elm_smart_scroller_object_theme_set(obj, wd->scroller, "scroller", "entry",
2796                                        elm_widget_style_get(obj));
2797    evas_object_size_hint_weight_set(wd->scroller, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
2798    evas_object_size_hint_align_set(wd->scroller, EVAS_HINT_FILL, EVAS_HINT_FILL);
2799    elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
2800    elm_smart_scroller_propagate_events_set(wd->scroller, EINA_TRUE);
2801
2802    wd->linewrap     = ELM_WRAP_WORD;
2803    wd->editable     = EINA_TRUE;
2804    wd->disabled     = EINA_FALSE;
2805    wd->context_menu = EINA_TRUE;
2806    wd->autosave     = EINA_TRUE;
2807    wd->textonly     = EINA_FALSE;
2808    wd->autoperiod   = EINA_TRUE;
2809
2810    wd->ent = edje_object_add(e);
2811    elm_widget_sub_object_add(obj, wd->ent);
2812    edje_object_item_provider_set(wd->ent, _get_item, obj);
2813    edje_object_text_insert_filter_callback_add(wd->ent,"elm.text", _text_filter, obj);
2814    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOVE, _move, obj);
2815    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_DOWN,
2816                                   _mouse_down, obj);
2817    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_UP,
2818                                   _mouse_up, obj);
2819    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_MOVE,
2820                                   _mouse_move, obj);
2821    evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, obj);
2822
2823    _elm_theme_object_set(obj, wd->ent, "entry", "base", "default");
2824    edje_object_signal_callback_add(wd->ent, "entry,changed", "elm.text",
2825                                    _signal_entry_changed, obj);
2826    edje_object_signal_callback_add(wd->ent, "preedit,changed", "elm.text",
2827                                    _signal_preedit_changed, obj);
2828    edje_object_signal_callback_add(wd->ent, "handler,move,start", "elm.text",
2829                                    _signal_handler_move_start, obj);
2830    edje_object_signal_callback_add(wd->ent, "handler,move,end", "elm.text",
2831                                    _signal_handler_move_end, obj);
2832    edje_object_signal_callback_add(wd->ent, "handler,moving", "elm.text",
2833                                    _signal_handler_moving, obj);
2834    edje_object_signal_callback_add(wd->ent, "selection,start", "elm.text",
2835                                    _signal_selection_start, obj);
2836    edje_object_signal_callback_add(wd->ent, "selection,end", "elm.text",
2837                                    _signal_selection_end, obj);
2838    edje_object_signal_callback_add(wd->ent, "long,pressed", "elm.text",
2839                                    _signal_long_pressed, obj);
2840    edje_object_signal_callback_add(wd->ent, "magnifier,changed", "elm.text",
2841                                    _signal_magnifier_changed, obj);
2842    edje_object_signal_callback_add(wd->ent, "selection,changed", "elm.text",
2843                                    _signal_selection_changed, obj);
2844    edje_object_signal_callback_add(wd->ent, "selection,cleared", "elm.text",
2845                                    _signal_selection_cleared, obj);
2846    edje_object_signal_callback_add(wd->ent, "entry,paste,request", "elm.text",
2847                                    _signal_entry_paste_request, obj);
2848    edje_object_signal_callback_add(wd->ent, "entry,copy,notify", "elm.text",
2849                                    _signal_entry_copy_notify, obj);
2850    edje_object_signal_callback_add(wd->ent, "entry,cut,notify", "elm.text",
2851                                    _signal_entry_cut_notify, obj);
2852    edje_object_signal_callback_add(wd->ent, "cursor,changed", "elm.text",
2853                                    _signal_cursor_changed, obj);
2854    edje_object_signal_callback_add(wd->ent, "anchor,mouse,down,*", "elm.text",
2855                                    _signal_anchor_down, obj);
2856    edje_object_signal_callback_add(wd->ent, "anchor,mouse,up,*", "elm.text",
2857                                    _signal_anchor_up, obj);
2858    edje_object_signal_callback_add(wd->ent, "anchor,mouse,clicked,*", "elm.text",
2859                                    _signal_anchor_clicked, obj);
2860    edje_object_signal_callback_add(wd->ent, "anchor,mouse,move,*", "elm.text",
2861                                    _signal_anchor_move, obj);
2862    edje_object_signal_callback_add(wd->ent, "anchor,mouse,in,*", "elm.text",
2863                                    _signal_anchor_in, obj);
2864    edje_object_signal_callback_add(wd->ent, "anchor,mouse,out,*", "elm.text",
2865                                    _signal_anchor_out, obj);
2866    edje_object_signal_callback_add(wd->ent, "entry,key,enter", "elm.text",
2867                                    _signal_key_enter, obj);
2868    edje_object_signal_callback_add(wd->ent, "mouse,down,1", "elm.text",
2869                                    _signal_mouse_down, obj);
2870    edje_object_signal_callback_add(wd->ent, "mouse,clicked,1", "elm.text",
2871                                    _signal_mouse_clicked, obj);
2872    edje_object_signal_callback_add(wd->ent, "mouse,down,1,double", "elm.text",
2873                                    _signal_mouse_double, obj);
2874    edje_object_part_text_set(wd->ent, "elm.text", "");
2875    if (_elm_config->desktop_entry)
2876      edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
2877    elm_widget_resize_object_set(obj, wd->ent);
2878    _sizing_eval(obj);
2879
2880    wd->input_panel_enable = edje_object_part_text_input_panel_enabled_get(wd->ent, "elm.text");
2881
2882 #ifdef HAVE_ELEMENTARY_X
2883    top = elm_widget_top_get(obj);
2884    if ((top) && (elm_win_xwindow_get(top)))
2885      {
2886         wd->sel_notify_handler =
2887            ecore_event_handler_add(ECORE_X_EVENT_SELECTION_NOTIFY,
2888                                    _event_selection_notify, obj);
2889         wd->sel_clear_handler =
2890            ecore_event_handler_add(ECORE_X_EVENT_SELECTION_CLEAR,
2891                                    _event_selection_clear, obj);
2892      }
2893
2894    elm_drop_target_add(obj, ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_IMAGE,
2895                        _drag_drop_cb, NULL);
2896 #endif
2897
2898    entries = eina_list_prepend(entries, obj);
2899
2900    // module - find module for entry
2901    wd->api = _module(obj);
2902    // if found - hook in
2903    if ((wd->api) && (wd->api->obj_hook)) wd->api->obj_hook(obj);
2904
2905    _mirrored_set(obj, elm_widget_mirrored_get(obj));
2906    // TODO: convert Elementary to subclassing of Evas_Smart_Class
2907    // TODO: and save some bytes, making descriptions per-class and not instance!
2908    evas_object_smart_callbacks_descriptions_set(obj, _signals);
2909    return obj;
2910 }
2911
2912 EAPI void elm_entry_extension_module_data_get(Evas_Object *obj,Elm_Entry_Extension_data *ext_mod)
2913 {
2914    ELM_CHECK_WIDTYPE(obj, widtype);
2915    Widget_Data *wd = elm_widget_data_get(obj);
2916    if (!wd) return;
2917    ext_mod->cancel = _cancel;
2918    ext_mod->copy = _copy;
2919    ext_mod->cut = _cut;
2920    ext_mod->paste = _paste;
2921    ext_mod->select = _select;
2922    ext_mod->selectall = _selectall;
2923    ext_mod->ent = wd->ent;
2924    ext_mod->viewport_obj = _viewport_obj_get(obj);
2925    ext_mod->items = wd->items;
2926    ext_mod->editable = wd->editable;
2927    ext_mod->have_selection = wd->have_selection;
2928    ext_mod->password = wd->password;
2929    ext_mod->selmode = wd->selmode;
2930    ext_mod->cnpinit = _cnpinit;
2931    ext_mod->context_menu = wd->context_menu;
2932    ext_mod->textonly = wd->textonly;
2933 }
2934
2935 /**
2936  * This sets the entry object not to line wrap.  All input will
2937  * be on a single line, and the entry box will extend with user input.
2938  *
2939  * @param obj The entry object
2940  * @param single_line If true, the text in the entry
2941  * will be on a single line.
2942  *
2943  * @ingroup Entry
2944  */
2945 EAPI void
2946 elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line)
2947 {
2948    ELM_CHECK_WIDTYPE(obj, widtype);
2949    Widget_Data *wd = elm_widget_data_get(obj);
2950    if (!wd) return;
2951    if (wd->single_line == single_line) return;
2952    wd->single_line = single_line;
2953    wd->linewrap = ELM_WRAP_NONE;
2954    elm_entry_cnp_textonly_set(obj, EINA_TRUE);
2955    _theme_hook(obj);
2956    if (wd->scroller)
2957      {
2958         if (wd->single_line)
2959           {
2960              elm_smart_scroller_policy_set(wd->scroller,
2961                                            ELM_SMART_SCROLLER_POLICY_OFF,
2962                                            ELM_SMART_SCROLLER_POLICY_OFF);
2963              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
2964           }
2965         else
2966           {
2967              const Elm_Scroller_Policy map[3] =
2968                {
2969                   ELM_SMART_SCROLLER_POLICY_AUTO,
2970                   ELM_SMART_SCROLLER_POLICY_ON,
2971                   ELM_SMART_SCROLLER_POLICY_OFF
2972                };
2973              elm_smart_scroller_policy_set(wd->scroller,
2974                                            map[wd->policy_h],
2975                                            map[wd->policy_v]);
2976              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
2977           }
2978         _sizing_eval(obj);
2979      }
2980 }
2981
2982 /**
2983  * This returns true if the entry has been set to single line mode.
2984  * See also elm_entry_single_line_set().
2985  *
2986  * @param obj The entry object
2987  * @return single_line If true, the text in the entry is set to display
2988  * on a single line.
2989  *
2990  * @ingroup Entry
2991  */
2992 EAPI Eina_Bool
2993 elm_entry_single_line_get(const Evas_Object *obj)
2994 {
2995    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2996    Widget_Data *wd = elm_widget_data_get(obj);
2997    if (!wd) return EINA_FALSE;
2998    return wd->single_line;
2999 }
3000
3001 /**
3002  * This sets the entry object to password mode.  All text entered
3003  * and/or displayed within the widget will be replaced with asterisks (*).
3004  *
3005  * @param obj The entry object
3006  * @param password If true, password mode is enabled.
3007  *
3008  * @ingroup Entry
3009  */
3010 EAPI void
3011 elm_entry_password_set(Evas_Object *obj, Eina_Bool password)
3012 {
3013    ELM_CHECK_WIDTYPE(obj, widtype);
3014    Widget_Data *wd = elm_widget_data_get(obj);
3015    if (!wd) return;
3016    if (wd->password == password) return;
3017    wd->password = password;
3018    wd->single_line = EINA_TRUE;
3019    wd->linewrap = ELM_WRAP_NONE;
3020    _theme_hook(obj);
3021 }
3022
3023 /**
3024  * This returns whether password mode is enabled.
3025  * See also elm_entry_password_set().
3026  *
3027  * @param obj The entry object
3028  * @return If true, the entry is set to display all characters
3029  * as asterisks (*).
3030  *
3031  * @ingroup Entry
3032  */
3033 EAPI Eina_Bool
3034 elm_entry_password_get(const Evas_Object *obj)
3035 {
3036    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3037    Widget_Data *wd = elm_widget_data_get(obj);
3038    if (!wd) return EINA_FALSE;
3039    return wd->password;
3040 }
3041
3042 /**
3043  * This sets the text displayed within the entry to @p entry.
3044  *
3045  * @param obj The entry object
3046  * @param entry The text to be displayed
3047  *
3048  * @ingroup Entry
3049  */
3050 EAPI void
3051 elm_entry_entry_set(Evas_Object *obj, const char *entry)
3052 {
3053    _elm_entry_text_set(obj, NULL, entry);
3054 }
3055
3056 /**
3057  * This appends @p entry to the text of the entry.
3058  *
3059  * @param obj The entry object
3060  * @param entry The text to be displayed
3061  *
3062  * @ingroup Entry
3063  */
3064 EAPI void
3065 elm_entry_entry_append(Evas_Object *obj, const char *entry)
3066 {
3067    int len = 0;
3068    ELM_CHECK_WIDTYPE(obj, widtype);
3069    Widget_Data *wd = elm_widget_data_get(obj);
3070    if (!wd) return;
3071    if (!entry) entry = "";
3072    wd->changed = EINA_TRUE;
3073
3074    len = strlen(entry);
3075    if (wd->append_text_left)
3076      {
3077         char *tmpbuf;
3078         tmpbuf = realloc(wd->append_text_left, wd->append_text_len + len + 1);
3079         if (!tmpbuf)
3080           {
3081              /* Do something */
3082              return;
3083           }
3084         wd->append_text_left = tmpbuf;
3085         memcpy(wd->append_text_left + wd->append_text_len, entry, len + 1);
3086         wd->append_text_len += len;
3087      }
3088    else
3089      {
3090         /* FIXME: Add chunked appending here (like in entry_set) */
3091         edje_object_part_text_append(wd->ent, "elm.text", entry);
3092      }
3093 }
3094
3095 /**
3096  * This returns the text currently shown in object @p entry.
3097  * See also elm_entry_entry_set().
3098  *
3099  * @param obj The entry object
3100  * @return The currently displayed text or NULL on failure
3101  *
3102  * @ingroup Entry
3103  */
3104 EAPI const char *
3105 elm_entry_entry_get(const Evas_Object *obj)
3106 {
3107    return _elm_entry_text_get(obj, NULL);
3108 }
3109
3110 /**
3111  * This returns EINA_TRUE if the entry is empty/there was an error
3112  * and EINA_FALSE if it is not empty.
3113  *
3114  * @param obj The entry object
3115  * @return If the entry is empty or not.
3116  *
3117  * @ingroup Entry
3118  */
3119 EAPI Eina_Bool
3120 elm_entry_is_empty(const Evas_Object *obj)
3121 {
3122    /* FIXME: until there's support for that in textblock, we just check
3123     * to see if the there is text or not. */
3124    ELM_CHECK_WIDTYPE(obj, widtype) EINA_TRUE;
3125    Widget_Data *wd = elm_widget_data_get(obj);
3126    const Evas_Object *tb;
3127    //Evas_Textblock_Cursor *cur;
3128    Eina_Bool ret;
3129    if (!wd) return EINA_TRUE;
3130
3131 #if 0
3132    /* It's a hack until we get the support suggested above.
3133     * We just create a cursor, point it to the begining, and then
3134     * try to advance it, if it can advance, the tb is not empty,
3135     * otherwise it is. */
3136    tb = edje_object_part_object_get(wd->ent, "elm.text");
3137    cur = evas_object_textblock_cursor_new((Evas_Object *) tb); /* This is
3138                                                                   actually, ok for the time being, thsese hackish stuff will be removed
3139                                                                   once evas 1.0 is out*/
3140    evas_textblock_cursor_pos_set(cur, 0);
3141    ret = evas_textblock_cursor_char_next(cur);
3142    evas_textblock_cursor_free(cur);
3143
3144    return !ret;
3145 #endif
3146
3147    char *str = elm_entry_markup_to_utf8(elm_entry_entry_get(obj));
3148    if (!str) return EINA_TRUE;
3149
3150    ret = (strlen(str) == 0);
3151
3152    return ret;
3153 }
3154
3155 /**
3156  * This returns all selected text within the entry.
3157  *
3158  * @param obj The entry object
3159  * @return The selected text within the entry or NULL on failure
3160  *
3161  * @ingroup Entry
3162  */
3163 EAPI const char *
3164 elm_entry_selection_get(const Evas_Object *obj)
3165 {
3166    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3167    Widget_Data *wd = elm_widget_data_get(obj);
3168    if (!wd) return NULL;
3169    return edje_object_part_text_selection_get(wd->ent, "elm.text");
3170 }
3171
3172 /**
3173  * This inserts text in @p entry where the current cursor position.
3174  *
3175  * This inserts text at the cursor position is as if it was typed
3176  * by the user (note this also allows markup which a user
3177  * can't just "type" as it would be converted to escaped text, so this
3178  * call can be used to insert things like emoticon items or bold push/pop
3179  * tags, other font and color change tags etc.)
3180  *
3181  * @param obj The entry object
3182  * @param entry The text to insert
3183  *
3184  * @ingroup Entry
3185  */
3186 EAPI void
3187 elm_entry_entry_insert(Evas_Object *obj, const char *entry)
3188 {
3189    ELM_CHECK_WIDTYPE(obj, widtype);
3190    Widget_Data *wd = elm_widget_data_get(obj);
3191    if (!wd) return;
3192    edje_object_part_text_insert(wd->ent, "elm.text", entry);
3193    // start for cbhm
3194 #ifdef HAVE_ELEMENTARY_X
3195    if (cnpwidgetdata == obj)
3196       ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
3197 #endif
3198    // end for cbhm
3199    wd->changed = EINA_TRUE;
3200    _sizing_eval(obj);
3201 }
3202
3203 /**
3204  * This enables word line wrapping in the entry object.  It is the opposite
3205  * of elm_entry_single_line_set().  Additionally, setting this disables
3206  * character line wrapping.
3207  *
3208  * @param obj The entry object
3209  * @param wrap If true, the entry will be wrapped once it reaches the end
3210  * of the object. Wrapping will occur at the end of the word before the end of the
3211  * object.
3212  *
3213  * @ingroup Entry
3214  */
3215 EAPI void
3216 elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap)
3217 {
3218    ELM_CHECK_WIDTYPE(obj, widtype);
3219    Widget_Data *wd = elm_widget_data_get(obj);
3220    if (!wd) return;
3221    if (wd->linewrap == wrap) return;
3222    wd->lastw = -1;
3223    wd->linewrap = wrap;
3224    _theme_hook(obj);
3225 }
3226
3227 /**
3228  * Get the wrapping behavior of the entry.
3229  * See also elm_entry_line_wrap_set().
3230  *
3231  * @param obj The entry object
3232  * @return Wrap type
3233  *
3234  * @ingroup Entry
3235  */
3236 EAPI Elm_Wrap_Type
3237 elm_entry_line_wrap_get(const Evas_Object *obj)
3238 {
3239    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3240    Widget_Data *wd = elm_widget_data_get(obj);
3241    if (!wd) return EINA_FALSE;
3242    return wd->linewrap;
3243 }
3244
3245 /**
3246  * This sets the editable attribute of the entry.
3247  *
3248  * @param obj The entry object
3249  * @param editable If true, the entry will be editable by the user.
3250  * If false, it will be set to the disabled state.
3251  *
3252  * @ingroup Entry
3253  */
3254 EAPI void
3255 elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable)
3256 {
3257    ELM_CHECK_WIDTYPE(obj, widtype);
3258    Widget_Data *wd = elm_widget_data_get(obj);
3259    if (!wd) return;
3260    if (wd->editable == editable) return;
3261    wd->editable = editable;
3262    _theme_hook(obj);
3263
3264 #ifdef HAVE_ELEMENTARY_X
3265    if (editable)
3266      elm_drop_target_add(obj, ELM_SEL_FORMAT_MARKUP, _drag_drop_cb, NULL);
3267    else
3268      elm_drop_target_del(obj);
3269 #endif
3270 }
3271
3272 /**
3273  * This gets the editable attribute of the entry.
3274  * See also elm_entry_editable_set().
3275  *
3276  * @param obj The entry object
3277  * @return If true, the entry is editable by the user.
3278  * If false, it is not editable by the user
3279  *
3280  * @ingroup Entry
3281  */
3282 EAPI Eina_Bool
3283 elm_entry_editable_get(const Evas_Object *obj)
3284 {
3285    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3286    Widget_Data *wd = elm_widget_data_get(obj);
3287    if (!wd) return EINA_FALSE;
3288    return wd->editable;
3289 }
3290
3291 /**
3292  * This drops any existing text selection within the entry.
3293  *
3294  * @param obj The entry object
3295  *
3296  * @ingroup Entry
3297  */
3298 EAPI void
3299 elm_entry_select_none(Evas_Object *obj)
3300 {
3301    ELM_CHECK_WIDTYPE(obj, widtype);
3302    Widget_Data *wd = elm_widget_data_get(obj);
3303    if (!wd) return;
3304    if (wd->selmode)
3305      {
3306         wd->selmode = EINA_FALSE;
3307         if (!_elm_config->desktop_entry)
3308           edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
3309         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
3310      }
3311    wd->have_selection = EINA_FALSE;
3312    edje_object_part_text_select_none(wd->ent, "elm.text");
3313 }
3314
3315 /**
3316  * This selects all text within the entry.
3317  *
3318  * @param obj The entry object
3319  *
3320  * @ingroup Entry
3321  */
3322 EAPI void
3323 elm_entry_select_all(Evas_Object *obj)
3324 {
3325    ELM_CHECK_WIDTYPE(obj, widtype);
3326    Widget_Data *wd = elm_widget_data_get(obj);
3327    if (!wd) return;
3328    if (wd->selmode)
3329      {
3330         wd->selmode = EINA_FALSE;
3331         if (!_elm_config->desktop_entry)
3332           edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
3333         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
3334      }
3335    wd->have_selection = EINA_TRUE;
3336    edje_object_part_text_select_all(wd->ent, "elm.text");
3337 }
3338
3339 /**
3340  * This function returns the geometry of the cursor.
3341  *
3342  * It's useful if you want to draw something on the cursor (or where it is),
3343  * or for example in the case of scrolled entry where you want to show the
3344  * cursor.
3345  *
3346  * @param obj The entry object
3347  * @param x returned geometry
3348  * @param y returned geometry
3349  * @param w returned geometry
3350  * @param h returned geometry
3351  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3352  *
3353  * @ingroup Entry
3354  */
3355 EAPI Eina_Bool
3356 elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h)
3357 {
3358    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3359    Widget_Data *wd = elm_widget_data_get(obj);
3360    if (!wd) return EINA_FALSE;
3361    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", x, y, w, h);
3362    return EINA_TRUE;
3363 }
3364
3365 /**
3366  * This moves the cursor one place to the right within the entry.
3367  *
3368  * @param obj The entry object
3369  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3370  *
3371  * @ingroup Entry
3372  */
3373 EAPI Eina_Bool
3374 elm_entry_cursor_next(Evas_Object *obj)
3375 {
3376    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3377    Widget_Data *wd = elm_widget_data_get(obj);
3378    if (!wd) return EINA_FALSE;
3379    return edje_object_part_text_cursor_next(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3380 }
3381
3382 /**
3383  * This moves the cursor one place to the left within the entry.
3384  *
3385  * @param obj The entry object
3386  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3387  *
3388  * @ingroup Entry
3389  */
3390 EAPI Eina_Bool
3391 elm_entry_cursor_prev(Evas_Object *obj)
3392 {
3393    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3394    Widget_Data *wd = elm_widget_data_get(obj);
3395    if (!wd) return EINA_FALSE;
3396    return edje_object_part_text_cursor_prev(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3397 }
3398
3399 /**
3400  * This moves the cursor one line up within the entry.
3401  *
3402  * @param obj The entry object
3403  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3404  *
3405  * @ingroup Entry
3406  */
3407 EAPI Eina_Bool
3408 elm_entry_cursor_up(Evas_Object *obj)
3409 {
3410    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3411    Widget_Data *wd = elm_widget_data_get(obj);
3412    if (!wd) return EINA_FALSE;
3413    return edje_object_part_text_cursor_up(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3414 }
3415
3416 /**
3417  * This moves the cursor one line down within the entry.
3418  *
3419  * @param obj The entry object
3420  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3421  *
3422  * @ingroup Entry
3423  */
3424 EAPI Eina_Bool
3425 elm_entry_cursor_down(Evas_Object *obj)
3426 {
3427    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3428    Widget_Data *wd = elm_widget_data_get(obj);
3429    if (!wd) return EINA_FALSE;
3430    return edje_object_part_text_cursor_down(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3431 }
3432
3433 /**
3434  * This moves the cursor to the beginning of the entry.
3435  *
3436  * @param obj The entry object
3437  *
3438  * @ingroup Entry
3439  */
3440 EAPI void
3441 elm_entry_cursor_begin_set(Evas_Object *obj)
3442 {
3443    ELM_CHECK_WIDTYPE(obj, widtype);
3444    Widget_Data *wd = elm_widget_data_get(obj);
3445    if (!wd) return;
3446    edje_object_part_text_cursor_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3447 }
3448
3449 /**
3450  * This moves the cursor to the end of the entry.
3451  *
3452  * @param obj The entry object
3453  *
3454  * @ingroup Entry
3455  */
3456 EAPI void
3457 elm_entry_cursor_end_set(Evas_Object *obj)
3458 {
3459    ELM_CHECK_WIDTYPE(obj, widtype);
3460    Widget_Data *wd = elm_widget_data_get(obj);
3461    if (!wd) return;
3462    int x, y, w, h;
3463    edje_object_part_text_cursor_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3464    if (wd->scroll)
3465      {
3466         elm_widget_show_region_get(wd->ent, &x, &y, &w, &h);
3467         elm_smart_scroller_child_region_show(wd->scroller, x, y, w, h);
3468      }
3469 }
3470
3471 /**
3472  * This moves the cursor to the beginning of the current line.
3473  *
3474  * @param obj The entry object
3475  *
3476  * @ingroup Entry
3477  */
3478 EAPI void
3479 elm_entry_cursor_line_begin_set(Evas_Object *obj)
3480 {
3481    ELM_CHECK_WIDTYPE(obj, widtype);
3482    Widget_Data *wd = elm_widget_data_get(obj);
3483    if (!wd) return;
3484    edje_object_part_text_cursor_line_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3485 }
3486
3487 /**
3488  * This moves the cursor to the end of the current line.
3489  *
3490  * @param obj The entry object
3491  *
3492  * @ingroup Entry
3493  */
3494 EAPI void
3495 elm_entry_cursor_line_end_set(Evas_Object *obj)
3496 {
3497    ELM_CHECK_WIDTYPE(obj, widtype);
3498    Widget_Data *wd = elm_widget_data_get(obj);
3499    if (!wd) return;
3500    edje_object_part_text_cursor_line_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3501 }
3502
3503 /**
3504  * This begins a selection within the entry as though
3505  * the user were holding down the mouse button to make a selection.
3506  *
3507  * @param obj The entry object
3508  *
3509  * @ingroup Entry
3510  */
3511 EAPI void
3512 elm_entry_cursor_selection_begin(Evas_Object *obj)
3513 {
3514    ELM_CHECK_WIDTYPE(obj, widtype);
3515    Widget_Data *wd = elm_widget_data_get(obj);
3516    if (!wd) return;
3517    edje_object_part_text_select_begin(wd->ent, "elm.text");
3518 }
3519
3520 /**
3521  * This ends a selection within the entry as though
3522  * the user had just released the mouse button while making a selection.
3523  *
3524  * @param obj The entry object
3525  *
3526  * @ingroup Entry
3527  */
3528 EAPI void
3529 elm_entry_cursor_selection_end(Evas_Object *obj)
3530 {
3531    ELM_CHECK_WIDTYPE(obj, widtype);
3532    Widget_Data *wd = elm_widget_data_get(obj);
3533    if (!wd) return;
3534    edje_object_part_text_select_extend(wd->ent, "elm.text");
3535 }
3536
3537 /**
3538  * TODO: fill this in
3539  *
3540  * @param obj The entry object
3541  * @return TODO: fill this in
3542  *
3543  * @ingroup Entry
3544  */
3545 EAPI Eina_Bool
3546 elm_entry_cursor_is_format_get(const Evas_Object *obj)
3547 {
3548    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3549    Widget_Data *wd = elm_widget_data_get(obj);
3550    if (!wd) return EINA_FALSE;
3551    return edje_object_part_text_cursor_is_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3552 }
3553
3554 /**
3555  * This returns whether the cursor is visible.
3556  *
3557  * @param obj The entry object
3558  * @return If true, the cursor is visible.
3559  *
3560  * @ingroup Entry
3561  */
3562 EAPI Eina_Bool
3563 elm_entry_cursor_is_visible_format_get(const Evas_Object *obj)
3564 {
3565    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3566    Widget_Data *wd = elm_widget_data_get(obj);
3567    if (!wd) return EINA_FALSE;
3568    return edje_object_part_text_cursor_is_visible_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3569 }
3570
3571 /**
3572  * TODO: fill this in
3573  *
3574  * @param obj The entry object
3575  * @return TODO: fill this in
3576  *
3577  * @ingroup Entry
3578  */
3579 EAPI const char *
3580 elm_entry_cursor_content_get(const Evas_Object *obj)
3581 {
3582    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3583    Widget_Data *wd = elm_widget_data_get(obj);
3584    if (!wd) return NULL;
3585    return edje_object_part_text_cursor_content_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3586 }
3587
3588 /**
3589  * Sets the cursor position in the entry to the given value
3590  *
3591  * @param obj The entry object
3592  * @param pos The position of the cursor
3593  *
3594  * @ingroup Entry
3595  */
3596 EAPI void
3597 elm_entry_cursor_pos_set(Evas_Object *obj, int pos)
3598 {
3599    ELM_CHECK_WIDTYPE(obj, widtype);
3600    Widget_Data *wd = elm_widget_data_get(obj);
3601    if (!wd) return;
3602    edje_object_part_text_cursor_pos_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN, pos);
3603    edje_object_message_signal_process(wd->ent);
3604 }
3605
3606 /**
3607  * Retrieves the current position of the cursor in the entry
3608  *
3609  * @param obj The entry object
3610  * @return The cursor position
3611  *
3612  * @ingroup Entry
3613  */
3614 EAPI int
3615 elm_entry_cursor_pos_get(const Evas_Object *obj)
3616 {
3617    ELM_CHECK_WIDTYPE(obj, widtype) 0;
3618    Widget_Data *wd = elm_widget_data_get(obj);
3619    if (!wd) return 0;
3620    return edje_object_part_text_cursor_pos_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3621 }
3622
3623 /**
3624  * This executes a "cut" action on the selected text in the entry.
3625  *
3626  * @param obj The entry object
3627  *
3628  * @ingroup Entry
3629  */
3630 EAPI void
3631 elm_entry_selection_cut(Evas_Object *obj)
3632 {
3633    ELM_CHECK_WIDTYPE(obj, widtype);
3634    Widget_Data *wd = elm_widget_data_get(obj);
3635    if (!wd) return;
3636    _cut(obj, NULL, NULL);
3637 }
3638
3639 /**
3640  * This executes a "copy" action on the selected text in the entry.
3641  *
3642  * @param obj The entry object
3643  *
3644  * @ingroup Entry
3645  */
3646 EAPI void
3647 elm_entry_selection_copy(Evas_Object *obj)
3648 {
3649    ELM_CHECK_WIDTYPE(obj, widtype);
3650    Widget_Data *wd = elm_widget_data_get(obj);
3651    if (!wd) return;
3652    _copy(obj, NULL, NULL);
3653 }
3654
3655 /**
3656  * This executes a "paste" action in the entry.
3657  *
3658  * @param obj The entry object
3659  *
3660  * @ingroup Entry
3661  */
3662 EAPI void
3663 elm_entry_selection_paste(Evas_Object *obj)
3664 {
3665    ELM_CHECK_WIDTYPE(obj, widtype);
3666    Widget_Data *wd = elm_widget_data_get(obj);
3667    if (!wd) return;
3668    _paste(obj, NULL, NULL);
3669 }
3670
3671 /**
3672  * This clears and frees the items in a entry's contextual (right click) menu.
3673  *
3674  * @param obj The entry object
3675  *
3676  * @ingroup Entry
3677  */
3678 EAPI void
3679 elm_entry_context_menu_clear(Evas_Object *obj)
3680 {
3681    ELM_CHECK_WIDTYPE(obj, widtype);
3682    Widget_Data *wd = elm_widget_data_get(obj);
3683    Elm_Entry_Context_Menu_Item *it;
3684    if (!wd) return;
3685    EINA_LIST_FREE(wd->items, it)
3686      {
3687         eina_stringshare_del(it->label);
3688         eina_stringshare_del(it->icon_file);
3689         eina_stringshare_del(it->icon_group);
3690         free(it);
3691      }
3692 }
3693
3694 /**
3695  * This adds an item to the entry's contextual menu.
3696  *
3697  * @param obj The entry object
3698  * @param label The item's text label
3699  * @param icon_file The item's icon file
3700  * @param icon_type The item's icon type
3701  * @param func The callback to execute when the item is clicked
3702  * @param data The data to associate with the item for related functions
3703  *
3704  * @ingroup Entry
3705  */
3706 EAPI void
3707 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)
3708 {
3709    ELM_CHECK_WIDTYPE(obj, widtype);
3710    Widget_Data *wd = elm_widget_data_get(obj);
3711    Elm_Entry_Context_Menu_Item *it;
3712    if (!wd) return;
3713    it = calloc(1, sizeof(Elm_Entry_Context_Menu_Item));
3714    if (!it) return;
3715    wd->items = eina_list_append(wd->items, it);
3716    it->obj = obj;
3717    it->label = eina_stringshare_add(label);
3718    it->icon_file = eina_stringshare_add(icon_file);
3719    it->icon_type = icon_type;
3720    it->func = func;
3721    it->data = (void *)data;
3722 }
3723
3724 /**
3725  * This disables the entry's contextual (right click) menu.
3726  *
3727  * @param obj The entry object
3728  * @param disabled If true, the menu is disabled
3729  *
3730  * @ingroup Entry
3731  */
3732 EAPI void
3733 elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled)
3734 {
3735    ELM_CHECK_WIDTYPE(obj, widtype);
3736    Widget_Data *wd = elm_widget_data_get(obj);
3737    if (!wd) return;
3738    if (wd->context_menu == !disabled) return;
3739    wd->context_menu = !disabled;
3740 }
3741
3742 /**
3743  * This returns whether the entry's contextual (right click) menu is disabled.
3744  *
3745  * @param obj The entry object
3746  * @return If true, the menu is disabled
3747  *
3748  * @ingroup Entry
3749  */
3750 EAPI Eina_Bool
3751 elm_entry_context_menu_disabled_get(const Evas_Object *obj)
3752 {
3753    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3754    Widget_Data *wd = elm_widget_data_get(obj);
3755    if (!wd) return EINA_FALSE;
3756    return !wd->context_menu;
3757 }
3758
3759 /**
3760  * This appends a custom item provider to the list for that entry
3761  *
3762  * This appends the given callback. The list is walked from beginning to end
3763  * with each function called given the item href string in the text. If the
3764  * function returns an object handle other than NULL (it should create an
3765  * and object to do this), then this object is used to replace that item. If
3766  * not the next provider is called until one provides an item object, or the
3767  * default provider in entry does.
3768  *
3769  * @param obj The entry object
3770  * @param func The function called to provide the item object
3771  * @param data The data passed to @p func
3772  *
3773  * @ingroup Entry
3774  */
3775 EAPI void
3776 elm_entry_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
3777 {
3778    ELM_CHECK_WIDTYPE(obj, widtype);
3779    Widget_Data *wd = elm_widget_data_get(obj);
3780    if (!wd) return;
3781    EINA_SAFETY_ON_NULL_RETURN(func);
3782    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
3783    if (!ip) return;
3784    ip->func = func;
3785    ip->data = data;
3786    wd->item_providers = eina_list_append(wd->item_providers, ip);
3787 }
3788
3789 /**
3790  * This prepends a custom item provider to the list for that entry
3791  *
3792  * This prepends the given callback. See elm_entry_item_provider_append() for
3793  * more information
3794  *
3795  * @param obj The entry object
3796  * @param func The function called to provide the item object
3797  * @param data The data passed to @p func
3798  *
3799  * @ingroup Entry
3800  */
3801 EAPI void
3802 elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
3803 {
3804    ELM_CHECK_WIDTYPE(obj, widtype);
3805    Widget_Data *wd = elm_widget_data_get(obj);
3806    if (!wd) return;
3807    EINA_SAFETY_ON_NULL_RETURN(func);
3808    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
3809    if (!ip) return;
3810    ip->func = func;
3811    ip->data = data;
3812    wd->item_providers = eina_list_prepend(wd->item_providers, ip);
3813 }
3814
3815 /**
3816  * This removes a custom item provider to the list for that entry
3817  *
3818  * This removes the given callback. See elm_entry_item_provider_append() for
3819  * more information
3820  *
3821  * @param obj The entry object
3822  * @param func The function called to provide the item object
3823  * @param data The data passed to @p func
3824  *
3825  * @ingroup Entry
3826  */
3827 EAPI void
3828 elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
3829 {
3830    ELM_CHECK_WIDTYPE(obj, widtype);
3831    Widget_Data *wd = elm_widget_data_get(obj);
3832    Eina_List *l;
3833    Elm_Entry_Item_Provider *ip;
3834    if (!wd) return;
3835    EINA_SAFETY_ON_NULL_RETURN(func);
3836    EINA_LIST_FOREACH(wd->item_providers, l, ip)
3837      {
3838         if ((ip->func == func) && ((!data) || (ip->data == data)))
3839           {
3840              wd->item_providers = eina_list_remove_list(wd->item_providers, l);
3841              free(ip);
3842              return;
3843           }
3844      }
3845 }
3846
3847 /**
3848  * Append a filter function for text inserted in the entry
3849  *
3850  * Append the given callback to the list. This functions will be called
3851  * whenever any text is inserted into the entry, with the text to be inserted
3852  * as a parameter. The callback function is free to alter the text in any way
3853  * it wants, but it must remember to free the given pointer and update it.
3854  * If the new text is to be discarded, the function can free it and set it text
3855  * parameter to NULL. This will also prevent any following filters from being
3856  * called.
3857  *
3858  * @param obj The entry object
3859  * @param func The function to use as text filter
3860  * @param data User data to pass to @p func
3861  *
3862  * @ingroup Entry
3863  */
3864 EAPI void
3865 elm_entry_text_filter_append(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
3866 {
3867    Widget_Data *wd;
3868    Elm_Entry_Text_Filter *tf;
3869    ELM_CHECK_WIDTYPE(obj, widtype);
3870
3871    wd = elm_widget_data_get(obj);
3872
3873    EINA_SAFETY_ON_NULL_RETURN(func);
3874
3875    tf = _filter_new(func, data);
3876    if (!tf) return;
3877
3878    wd->text_filters = eina_list_append(wd->text_filters, tf);
3879 }
3880
3881 /**
3882  * Prepend a filter function for text insdrted in the entry
3883  *
3884  * Prepend the given callback to the list. See elm_entry_text_filter_append()
3885  * for more information
3886  *
3887  * @param obj The entry object
3888  * @param func The function to use as text filter
3889  * @param data User data to pass to @p func
3890  *
3891  * @ingroup Entry
3892  */
3893 EAPI void
3894 elm_entry_text_filter_prepend(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
3895 {
3896    Widget_Data *wd;
3897    Elm_Entry_Text_Filter *tf;
3898    ELM_CHECK_WIDTYPE(obj, widtype);
3899
3900    wd = elm_widget_data_get(obj);
3901
3902    EINA_SAFETY_ON_NULL_RETURN(func);
3903
3904    tf = _filter_new(func, data);
3905    if (!tf) return;
3906
3907    wd->text_filters = eina_list_prepend(wd->text_filters, tf);
3908 }
3909
3910 /**
3911  * Remove a filter from the list
3912  *
3913  * Removes the given callback from the filter list. See elm_entry_text_filter_append()
3914  * for more information.
3915  *
3916  * @param obj The entry object
3917  * @param func The filter function to remove
3918  * @param data The user data passed when adding the function
3919  *
3920  * @ingroup Entry
3921  */
3922 EAPI void
3923 elm_entry_text_filter_remove(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
3924 {
3925    Widget_Data *wd;
3926    Eina_List *l;
3927    Elm_Entry_Text_Filter *tf;
3928    ELM_CHECK_WIDTYPE(obj, widtype);
3929
3930    wd = elm_widget_data_get(obj);
3931
3932    EINA_SAFETY_ON_NULL_RETURN(func);
3933
3934    EINA_LIST_FOREACH(wd->text_filters, l, tf)
3935      {
3936         if ((tf->func == func) && ((!data) || (tf->data == data)))
3937           {
3938              wd->text_filters = eina_list_remove_list(wd->text_filters, l);
3939              _filter_free(tf);
3940              return;
3941           }
3942      }
3943 }
3944
3945 /**
3946  * This converts a markup (HTML-like) string into UTF-8.
3947  * Returning string is obtained with malloc.
3948  * After use the returned string, it should be freed.
3949  *
3950  * @param s The string (in markup) to be converted
3951  * @return The converted string (in UTF-8). It should be freed.
3952  *
3953  * @ingroup Entry
3954  */
3955 EAPI char *
3956 elm_entry_markup_to_utf8(const char *s)
3957 {
3958    char *ss = _elm_util_mkup_to_text(s);
3959    if (!ss) ss = strdup("");
3960    return ss;
3961 }
3962
3963 /**
3964  * This converts a UTF-8 string into markup (HTML-like).
3965  * Returning string is obtained with malloc.
3966  * After use the returned string, it should be freed.
3967  *
3968  * @param s The string (in UTF-8) to be converted
3969  * @return The converted string (in markup). It should be freed.
3970  *
3971  * @ingroup Entry
3972  */
3973 EAPI char *
3974 elm_entry_utf8_to_markup(const char *s)
3975 {
3976    char *ss = _elm_util_text_to_mkup(s);
3977    if (!ss) ss = strdup("");
3978    return ss;
3979 }
3980
3981 /**
3982  * Filter inserted text based on user defined character and byte limits
3983  *
3984  * Add this filter to an entry to limit the characters that it will accept
3985  * based the the contents of the provided Elm_Entry_Filter_Limit_Size.
3986  * The funtion works on the UTF-8 representation of the string, converting
3987  * it from the set markup, thus not accounting for any format in it.
3988  *
3989  * The user must create an Elm_Entry_Filter_Limit_Size structure and pass
3990  * it as data when setting the filter. In it it's possible to set limits
3991  * by character count or bytes (any of them is disabled if 0), and both can
3992  * be set at the same time. In that case, it first checks for characters,
3993  * then bytes.
3994  *
3995  * The function will cut the inserted text in order to allow only the first
3996  * number of characters that are still allowed. The cut is made in
3997  * characters, even when limiting by bytes, in order to always contain
3998  * valid ones and avoid half unicode characters making it in.
3999  *
4000  * @ingroup Entry
4001  */
4002 EAPI void
4003 elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text)
4004 {
4005    Elm_Entry_Filter_Limit_Size *lim = data;
4006    char *current;
4007    int len, newlen;
4008    const char *(*text_get)(const Evas_Object *);
4009    const char *widget_type;
4010
4011    EINA_SAFETY_ON_NULL_RETURN(data);
4012    EINA_SAFETY_ON_NULL_RETURN(entry);
4013    EINA_SAFETY_ON_NULL_RETURN(text);
4014
4015    /* hack. I don't want to copy the entire function to work with
4016     * scrolled_entry */
4017    widget_type = elm_widget_type_get(entry);
4018    if (!strcmp(widget_type, "entry"))
4019      text_get = elm_entry_entry_get;
4020    else /* huh? */
4021      return;
4022
4023    current = elm_entry_markup_to_utf8(text_get(entry));
4024
4025    if (lim->max_char_count > 0)
4026      {
4027         len = evas_string_char_len_get(current);
4028         if (len >= lim->max_char_count)
4029           {
4030              evas_object_smart_callback_call(entry, "maxlength,reached", NULL);
4031              free(*text);
4032              free(current);
4033              *text = NULL;
4034              return;
4035           }
4036         newlen = evas_string_char_len_get(elm_entry_markup_to_utf8(*text));
4037         if ((len + newlen) > lim->max_char_count)
4038           _add_chars_till_limit(entry, text, (lim->max_char_count - len), LENGTH_UNIT_CHAR);
4039      }
4040    else if (lim->max_byte_count > 0)
4041      {
4042         len = strlen(current);
4043         if (len >= lim->max_byte_count)
4044           {
4045              evas_object_smart_callback_call(entry, "maxlength,reached", NULL);
4046              free(*text);
4047              free(current);
4048              *text = NULL;
4049              return;
4050           }
4051         newlen = strlen(elm_entry_markup_to_utf8(*text));
4052         if ((len + newlen) > lim->max_byte_count)
4053           _add_chars_till_limit(entry, text, (lim->max_byte_count - len), LENGTH_UNIT_BYTE);
4054      }
4055    free(current);
4056 }
4057
4058 /**
4059  * Filter inserted text based on accepted or rejected sets of characters
4060  *
4061  * Add this filter to an entry to restrict the set of accepted characters
4062  * based on the sets in the provided Elm_Entry_Filter_Accept_Set.
4063  * This structure contains both accepted and rejected sets, but they are
4064  * mutually exclusive. If accepted is set, it will be used, otherwise it
4065  * goes on to the rejected set.
4066  */
4067 EAPI void
4068 elm_entry_filter_accept_set(void *data, Evas_Object *entry __UNUSED__, char **text)
4069 {
4070    Elm_Entry_Filter_Accept_Set *as = data;
4071    const char *set;
4072    char *insert;
4073    Eina_Bool goes_in;
4074    int read_idx, last_read_idx = 0, read_char;
4075
4076    EINA_SAFETY_ON_NULL_RETURN(data);
4077    EINA_SAFETY_ON_NULL_RETURN(text);
4078
4079    if ((!as->accepted) && (!as->rejected))
4080      return;
4081
4082    if (as->accepted)
4083      {
4084         set = as->accepted;
4085         goes_in = EINA_TRUE;
4086      }
4087    else
4088      {
4089         set = as->rejected;
4090         goes_in = EINA_FALSE;
4091      }
4092
4093    insert = *text;
4094    read_idx = evas_string_char_next_get(*text, 0, &read_char);
4095    while (read_char)
4096      {
4097         int cmp_idx, cmp_char;
4098         Eina_Bool in_set = EINA_FALSE;
4099
4100         cmp_idx = evas_string_char_next_get(set, 0, &cmp_char);
4101         while (cmp_char)
4102           {
4103              if (read_char == cmp_char)
4104                {
4105                   in_set = EINA_TRUE;
4106                   break;
4107                }
4108              cmp_idx = evas_string_char_next_get(set, cmp_idx, &cmp_char);
4109           }
4110         if (in_set == goes_in)
4111           {
4112              int size = read_idx - last_read_idx;
4113              const char *src = (*text) + last_read_idx;
4114              if (src != insert)
4115                memcpy(insert, *text + last_read_idx, size);
4116              insert += size;
4117           }
4118         last_read_idx = read_idx;
4119         read_idx = evas_string_char_next_get(*text, read_idx, &read_char);
4120      }
4121    *insert = 0;
4122 }
4123
4124 /**
4125  * This sets the file (and implicitly loads it) for the text to display and
4126  * then edit. All changes are written back to the file after a short delay if
4127  * the entry object is set to autosave.
4128  *
4129  * @param obj The entry object
4130  * @param file The path to the file to load and save
4131  * @param format The file format
4132  *
4133  * @ingroup Entry
4134  */
4135 EAPI void
4136 elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format)
4137 {
4138    ELM_CHECK_WIDTYPE(obj, widtype);
4139    Widget_Data *wd = elm_widget_data_get(obj);
4140    if (!wd) return;
4141    if (wd->delay_write)
4142      {
4143         ecore_timer_del(wd->delay_write);
4144         wd->delay_write = NULL;
4145      }
4146    if (wd->autosave) _save(obj);
4147    eina_stringshare_replace(&wd->file, file);
4148    wd->format = format;
4149    _load(obj);
4150 }
4151
4152 /**
4153  * Gets the file to load and save and the file format
4154  *
4155  * @param obj The entry object
4156  * @param file The path to the file to load and save
4157  * @param format The file format
4158  *
4159  * @ingroup Entry
4160  */
4161 EAPI void
4162 elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format)
4163 {
4164    ELM_CHECK_WIDTYPE(obj, widtype);
4165    Widget_Data *wd = elm_widget_data_get(obj);
4166    if (!wd) return;
4167    if (file) *file = wd->file;
4168    if (format) *format = wd->format;
4169 }
4170
4171 /**
4172  * This function writes any changes made to the file set with
4173  * elm_entry_file_set()
4174  *
4175  * @param obj The entry object
4176  *
4177  * @ingroup Entry
4178  */
4179 EAPI void
4180 elm_entry_file_save(Evas_Object *obj)
4181 {
4182    ELM_CHECK_WIDTYPE(obj, widtype);
4183    Widget_Data *wd = elm_widget_data_get(obj);
4184    if (!wd) return;
4185    if (wd->delay_write)
4186      {
4187         ecore_timer_del(wd->delay_write);
4188         wd->delay_write = NULL;
4189      }
4190    _save(obj);
4191    wd->delay_write = ecore_timer_add(2.0, _delay_write, obj);
4192 }
4193
4194 /**
4195  * This sets the entry object to 'autosave' the loaded text file or not.
4196  *
4197  * @param obj The entry object
4198  * @param autosave Autosave the loaded file or not
4199  *
4200  * @ingroup Entry
4201  */
4202 EAPI void
4203 elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave)
4204 {
4205    ELM_CHECK_WIDTYPE(obj, widtype);
4206    Widget_Data *wd = elm_widget_data_get(obj);
4207    if (!wd) return;
4208    wd->autosave = !!autosave;
4209 }
4210
4211 /**
4212  * This gets the entry object's 'autosave' status.
4213  *
4214  * @param obj The entry object
4215  * @return Autosave the loaded file or not
4216  *
4217  * @ingroup Entry
4218  */
4219 EAPI Eina_Bool
4220 elm_entry_autosave_get(const Evas_Object *obj)
4221 {
4222    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4223    Widget_Data *wd = elm_widget_data_get(obj);
4224    if (!wd) return EINA_FALSE;
4225    return wd->autosave;
4226 }
4227
4228 /**
4229  * Control pasting of text and images for the widget.
4230  *
4231  * Normally the entry allows both text and images to be pasted.  By setting
4232  * textonly to be true, this prevents images from being pasted.
4233  *
4234  * Note this only changes the behaviour of text.
4235  *
4236  * @param obj The entry object
4237  * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is text+image+other.
4238  *
4239  * @ingroup Entry
4240  */
4241 EAPI void
4242 elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly)
4243 {
4244    Elm_Sel_Format format = ELM_SEL_FORMAT_MARKUP;
4245    ELM_CHECK_WIDTYPE(obj, widtype);
4246    Widget_Data *wd = elm_widget_data_get(obj);
4247    if (!wd) return;
4248    textonly = !!textonly;
4249    if (wd->textonly == textonly) return;
4250    wd->textonly = !!textonly;
4251    if (!textonly) format |= ELM_SEL_FORMAT_IMAGE;
4252 #ifdef HAVE_ELEMENTARY_X
4253    elm_drop_target_add(obj, format, _drag_drop_cb, NULL);
4254 #endif
4255 }
4256
4257 /**
4258  * Getting elm_entry text paste/drop mode.
4259  *
4260  * In textonly mode, only text may be pasted or dropped into the widget.
4261  *
4262  * @param obj The entry object
4263  * @return If the widget only accepts text from pastes.
4264  *
4265  * @ingroup Entry
4266  */
4267 EAPI Eina_Bool
4268 elm_entry_cnp_textonly_get(const Evas_Object *obj)
4269 {
4270    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4271    Widget_Data *wd = elm_widget_data_get(obj);
4272    if (!wd) return EINA_FALSE;
4273    return wd->textonly;
4274 }
4275
4276 /**
4277  * Enable or disable scrolling in entry
4278  *
4279  * Normally the entry is not scrollable unless you enable it with this call.
4280  *
4281  * @param obj The entry object
4282  * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
4283  *
4284  * @ingroup Entry
4285  */
4286 EAPI void
4287 elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll)
4288 {
4289    ELM_CHECK_WIDTYPE(obj, widtype);
4290    Widget_Data *wd = elm_widget_data_get(obj);
4291    if (!wd) return;
4292    scroll = !!scroll;
4293    if (wd->scroll == scroll) return;
4294    wd->scroll = scroll;
4295    if (wd->scroll)
4296      {
4297         elm_widget_sub_object_del(obj, wd->scroller);
4298         elm_widget_resize_object_set(obj, wd->scroller);
4299         elm_widget_sub_object_add(obj, wd->ent);
4300         elm_smart_scroller_child_set(wd->scroller, wd->ent);
4301         evas_object_show(wd->scroller);
4302         elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
4303         if (wd->single_line)
4304           {
4305              elm_smart_scroller_policy_set(wd->scroller,
4306                                            ELM_SMART_SCROLLER_POLICY_OFF,
4307                                            ELM_SMART_SCROLLER_POLICY_OFF);
4308              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
4309           }
4310         else
4311           {
4312              const Elm_Scroller_Policy map[3] =
4313                {
4314                   ELM_SMART_SCROLLER_POLICY_AUTO,
4315                   ELM_SMART_SCROLLER_POLICY_ON,
4316                   ELM_SMART_SCROLLER_POLICY_OFF
4317                };
4318              elm_smart_scroller_policy_set(wd->scroller,
4319                                            map[wd->policy_h],
4320                                            map[wd->policy_v]);
4321              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
4322           }
4323      }
4324    else
4325      {
4326         elm_smart_scroller_child_set(wd->scroller, NULL);
4327         elm_widget_sub_object_del(obj, wd->ent);
4328         elm_widget_resize_object_set(obj, wd->ent);
4329         evas_object_smart_member_add(wd->scroller, obj);
4330         elm_widget_sub_object_add(obj, wd->scroller);
4331         evas_object_hide(wd->scroller);
4332         elm_widget_on_show_region_hook_set(obj, NULL, NULL);
4333      }
4334    wd->lastw = -1;
4335    _theme_hook(obj);
4336 }
4337
4338 /**
4339  * Get the scrollable state of the entry
4340  *
4341  * Normally the entry is not scrollable. This gets the scrollable state
4342  * of the entry. See elm_entry_scrollable_set() for more information.
4343  *
4344  * @param obj The entry object
4345  * @return The scrollable state
4346  *
4347  * @ingroup Entry
4348  */
4349 EAPI Eina_Bool
4350 elm_entry_scrollable_get(const Evas_Object *obj)
4351 {
4352    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4353    Widget_Data *wd = elm_widget_data_get(obj);
4354    if (!wd) return EINA_FALSE;
4355    return wd->scroll;
4356 }
4357
4358 /**
4359  * This sets a widget to be displayed to the left of a scrolled entry.
4360  *
4361  * @param obj The scrolled entry object
4362  * @param icon The widget to display on the left side of the scrolled
4363  * entry.
4364  *
4365  * @note A previously set widget will be destroyed.
4366  * @note If the object being set does not have minimum size hints set,
4367  * it won't get properly displayed.
4368  *
4369  * @ingroup Entry
4370  * @see elm_entry_end_set
4371  */
4372 EAPI void
4373 elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon)
4374 {
4375    ELM_CHECK_WIDTYPE(obj, widtype);
4376    Widget_Data *wd = elm_widget_data_get(obj);
4377    Evas_Object *edje;
4378    if (!wd) return;
4379    EINA_SAFETY_ON_NULL_RETURN(icon);
4380    if (wd->icon == icon) return;
4381    if (wd->icon) evas_object_del(wd->icon);
4382    wd->icon = icon;
4383    edje = elm_smart_scroller_edje_object_get(wd->scroller);
4384    if (!edje) return;
4385    edje_object_part_swallow(edje, "elm.swallow.icon", wd->icon);
4386    edje_object_signal_emit(edje, "elm,action,show,icon", "elm");
4387    _sizing_eval(obj);
4388 }
4389
4390 /**
4391  * Gets the leftmost widget of the scrolled entry. This object is
4392  * owned by the scrolled entry and should not be modified.
4393  *
4394  * @param obj The scrolled entry object
4395  * @return the left widget inside the scroller
4396  *
4397  * @ingroup Entry
4398  */
4399 EAPI Evas_Object *
4400 elm_entry_icon_get(const Evas_Object *obj)
4401 {
4402    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4403    Widget_Data *wd = elm_widget_data_get(obj);
4404    if (!wd) return NULL;
4405    return wd->icon;
4406 }
4407
4408 /**
4409  * Unset the leftmost widget of the scrolled entry, unparenting and
4410  * returning it.
4411  *
4412  * @param obj The scrolled entry object
4413  * @return the previously set icon sub-object of this entry, on
4414  * success.
4415  *
4416  * @see elm_entry_icon_set()
4417  *
4418  * @ingroup Entry
4419  */
4420 EAPI Evas_Object *
4421 elm_entry_icon_unset(Evas_Object *obj)
4422 {
4423    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4424    Widget_Data *wd = elm_widget_data_get(obj);
4425    Evas_Object *ret = NULL;
4426    if (!wd) return NULL;
4427    if (wd->icon)
4428      {
4429         Evas_Object *edje = elm_smart_scroller_edje_object_get(wd->scroller);
4430         if (!edje) return NULL;
4431         ret = wd->icon;
4432         edje_object_part_unswallow(edje, wd->icon);
4433         edje_object_signal_emit(edje, "elm,action,hide,icon", "elm");
4434         wd->icon = NULL;
4435         _sizing_eval(obj);
4436      }
4437    return ret;
4438 }
4439
4440 /**
4441  * Sets the visibility of the left-side widget of the scrolled entry,
4442  * set by @elm_entry_icon_set().
4443  *
4444  * @param obj The scrolled entry object
4445  * @param setting EINA_TRUE if the object should be displayed,
4446  * EINA_FALSE if not.
4447  *
4448  * @ingroup Entry
4449  */
4450 EAPI void
4451 elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting)
4452 {
4453    ELM_CHECK_WIDTYPE(obj, widtype);
4454    Widget_Data *wd = elm_widget_data_get(obj);
4455    if ((!wd) || (!wd->icon)) return;
4456    if (setting)
4457       evas_object_hide(wd->icon);
4458    else
4459       evas_object_show(wd->icon);
4460    _sizing_eval(obj);
4461 }
4462
4463 /**
4464  * This sets a widget to be displayed to the end of a scrolled entry.
4465  *
4466  * @param obj The scrolled entry object
4467  * @param end The widget to display on the right side of the scrolled
4468  * entry.
4469  *
4470  * @note A previously set widget will be destroyed.
4471  * @note If the object being set does not have minimum size hints set,
4472  * it won't get properly displayed.
4473  *
4474  * @ingroup Entry
4475  * @see elm_entry_icon_set
4476  */
4477 EAPI void
4478 elm_entry_end_set(Evas_Object *obj, Evas_Object *end)
4479 {
4480    ELM_CHECK_WIDTYPE(obj, widtype);
4481    Widget_Data *wd = elm_widget_data_get(obj);
4482    Evas_Object *edje;
4483    if (!wd) return;
4484    EINA_SAFETY_ON_NULL_RETURN(end);
4485    if (wd->end == end) return;
4486    if (wd->end) evas_object_del(wd->end);
4487    wd->end = end;
4488    edje = elm_smart_scroller_edje_object_get(wd->scroller);
4489    if (!edje) return;
4490    edje_object_part_swallow(edje, "elm.swallow.end", wd->end);
4491    edje_object_signal_emit(edje, "elm,action,show,end", "elm");
4492    _sizing_eval(obj);
4493 }
4494
4495 /**
4496  * Gets the endmost widget of the scrolled entry. This object is owned
4497  * by the scrolled entry and should not be modified.
4498  *
4499  * @param obj The scrolled entry object
4500  * @return the right widget inside the scroller
4501  *
4502  * @ingroup Entry
4503  */
4504 EAPI Evas_Object *
4505 elm_entry_end_get(const Evas_Object *obj)
4506 {
4507    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4508    Widget_Data *wd = elm_widget_data_get(obj);
4509    if (!wd) return NULL;
4510    return wd->end;
4511 }
4512
4513 /**
4514  * Unset the endmost widget of the scrolled entry, unparenting and
4515  * returning it.
4516  *
4517  * @param obj The scrolled entry object
4518  * @return the previously set icon sub-object of this entry, on
4519  * success.
4520  *
4521  * @see elm_entry_icon_set()
4522  *
4523  * @ingroup Entry
4524  */
4525 EAPI Evas_Object *
4526 elm_entry_end_unset(Evas_Object *obj)
4527 {
4528    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4529    Widget_Data *wd = elm_widget_data_get(obj);
4530    Evas_Object *ret = NULL;
4531    if (!wd) return NULL;
4532    if (wd->end)
4533      {
4534         Evas_Object *edje = elm_smart_scroller_edje_object_get(wd->scroller);
4535         if (!edje) return NULL;
4536         ret = wd->end;
4537         edje_object_part_unswallow(edje, wd->end);
4538         edje_object_signal_emit(edje, "elm,action,hide,end", "elm");
4539         wd->end = NULL;
4540         _sizing_eval(obj);
4541      }
4542    return ret;
4543 }
4544
4545 /**
4546  * Sets the visibility of the end widget of the scrolled entry, set by
4547  * @elm_entry_end_set().
4548  *
4549  * @param obj The scrolled entry object
4550  * @param setting EINA_TRUE if the object should be displayed,
4551  * EINA_FALSE if not.
4552  *
4553  * @ingroup Entry
4554  */
4555 EAPI void
4556 elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting)
4557 {
4558    ELM_CHECK_WIDTYPE(obj, widtype);
4559    Widget_Data *wd = elm_widget_data_get(obj);
4560    if ((!wd) || (!wd->end)) return;
4561    if (setting)
4562       evas_object_hide(wd->end);
4563    else
4564       evas_object_show(wd->end);
4565    _sizing_eval(obj);
4566 }
4567
4568 /**
4569  * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling them).
4570  *
4571  * @param obj The scrolled entry object
4572  * @param h The horizontal scrollbar policy to apply
4573  * @param v The vertical scrollbar policy to apply
4574  *
4575  * @ingroup Entry
4576  */
4577 EAPI void
4578 elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v)
4579 {
4580    ELM_CHECK_WIDTYPE(obj, widtype);
4581    Widget_Data *wd = elm_widget_data_get(obj);
4582    const Elm_Scroller_Policy map[3] =
4583      {
4584         ELM_SMART_SCROLLER_POLICY_AUTO,
4585         ELM_SMART_SCROLLER_POLICY_ON,
4586         ELM_SMART_SCROLLER_POLICY_OFF
4587      };
4588    if (!wd) return;
4589    wd->policy_h = h;
4590    wd->policy_v = v;
4591    elm_smart_scroller_policy_set(wd->scroller,
4592                                  map[wd->policy_h],
4593                                  map[wd->policy_v]);
4594 }
4595
4596 /**
4597  * This enables/disables bouncing within the entry.
4598  *
4599  * @param obj The scrolled entry object
4600  * @param h The horizontal bounce state
4601  * @param v The vertical bounce state
4602  *
4603  * @ingroup Entry
4604  */
4605 EAPI void
4606 elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce)
4607 {
4608    ELM_CHECK_WIDTYPE(obj, widtype);
4609    Widget_Data *wd = elm_widget_data_get(obj);
4610    if (!wd) return;
4611    elm_smart_scroller_bounce_allow_set(wd->scroller, h_bounce, v_bounce);
4612 }
4613
4614 /**
4615  * Get the bounce mode
4616  *
4617  * @param obj The Entry object
4618  * @param h_bounce Allow bounce horizontally
4619  * @param v_bounce Allow bounce vertically
4620  *
4621  * @ingroup Entry
4622  */
4623 EAPI void
4624 elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce)
4625 {
4626    ELM_CHECK_WIDTYPE(obj, widtype);
4627    Widget_Data *wd = elm_widget_data_get(obj);
4628    if (!wd) return;
4629    elm_smart_scroller_bounce_allow_get(wd->scroller, h_bounce, v_bounce);
4630 }
4631
4632 EINA_DEPRECATED EAPI void
4633 elm_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap)
4634 {
4635    if (wrap) elm_entry_line_wrap_set(obj, ELM_WRAP_CHAR);
4636 }
4637
4638 /**
4639  * Set background color of the entry
4640  *
4641  * @param obj The entry object
4642  * @param r Red property background color of The entry object
4643  * @param g Green property background color of The entry object
4644  * @param b Blue property background color of The entry object
4645  * @param a Alpha property background alpha of The entry object
4646  * @ingroup Entry
4647  */
4648 EAPI void
4649 elm_entry_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a)
4650 {
4651    ELM_CHECK_WIDTYPE(obj, widtype);
4652    Widget_Data *wd = elm_widget_data_get(obj);
4653    evas_object_color_set(wd->bg, r, g, b, a);
4654
4655    if (wd->bgcolor == EINA_FALSE)
4656      {
4657        wd->bgcolor = 1;
4658        edje_object_part_swallow(wd->ent, "entry.swallow.background", wd->bg);
4659      }
4660 }
4661
4662 /**
4663  * Set whether entry should support auto capitalization
4664  *
4665  * @param obj The entry object
4666  * @param on If true, entry suports auto capitalization.
4667  *
4668  * @ingroup Entry
4669  */
4670 EAPI void
4671 elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap)
4672 {
4673    ELM_CHECK_WIDTYPE(obj, widtype);
4674    Widget_Data *wd = elm_widget_data_get(obj);
4675    if (!wd) return;
4676
4677    if (wd->password)
4678      wd->autocapital = EINA_FALSE;
4679    else
4680      wd->autocapital = autocap;
4681
4682    if (wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_URL ||
4683        wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_EMAIL)
4684      wd->autocapital = EINA_FALSE;
4685
4686    edje_object_part_text_autocapitalization_set(wd->ent, "elm.text", wd->autocapital);
4687 }
4688
4689 /**
4690  * Set whether entry should support auto period
4691  *
4692  * @param obj The entry object
4693  * @param on If true, entry suports auto period.
4694  *
4695  * @ingroup Entry
4696  */
4697 EAPI void
4698 elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod)
4699 {
4700    ELM_CHECK_WIDTYPE(obj, widtype);
4701    Widget_Data *wd = elm_widget_data_get(obj);
4702    if (!wd) return;
4703
4704    if (wd->password)
4705      wd->autoperiod = EINA_FALSE;
4706    else
4707      wd->autoperiod = autoperiod;
4708
4709    if (wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_URL ||
4710        wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_EMAIL)
4711      wd->autoperiod = EINA_FALSE;
4712
4713    edje_object_part_text_autoperiod_set(wd->ent, "elm.text", wd->autoperiod);
4714 }
4715
4716 /**
4717  * Set whether entry should enable the return key on soft keyboard automatically
4718  *
4719  * @param obj The entry object
4720  * @param on If true, entry enables the return key on soft keyboard automatically.
4721  *
4722  * @ingroup Entry
4723  */
4724 EAPI void
4725 elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on)
4726 {
4727    ELM_CHECK_WIDTYPE(obj, widtype);
4728    Widget_Data *wd = elm_widget_data_get(obj);
4729    if (!wd) return;
4730
4731    wd->autoreturnkey = on;
4732    _check_enable_returnkey(obj);
4733 }
4734
4735 /**
4736  * This sets the attribute to show the input panel automatically.
4737  *
4738  * @param obj The entry object
4739  * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
4740  *
4741  * @ingroup Entry
4742  */
4743 EAPI void
4744 elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled)
4745 {
4746    ELM_CHECK_WIDTYPE(obj, widtype);
4747    Widget_Data *wd = elm_widget_data_get(obj);
4748    if (!wd) return;
4749
4750    wd->input_panel_enable = enabled;
4751    edje_object_part_text_input_panel_enabled_set(wd->ent, "elm.text", enabled);
4752 }
4753
4754 /**
4755  * Set the input panel layout of the entry
4756  *
4757  * @param obj The entry object
4758  * @param layout the layout to set
4759  *
4760  * @ingroup Entry
4761  */
4762 EAPI void
4763 elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout)
4764 {
4765    ELM_CHECK_WIDTYPE(obj, widtype);
4766    Widget_Data *wd = elm_widget_data_get(obj);
4767    if (!wd) return;
4768
4769    Ecore_IMF_Context *ic = elm_entry_imf_context_get(obj);
4770    if (!ic) return;
4771
4772    wd->input_panel_layout = layout;
4773
4774    ecore_imf_context_input_panel_layout_set(ic, (Ecore_IMF_Input_Panel_Layout)layout);
4775 }
4776
4777 /**
4778  * Get the input method context in the entry widget
4779  *
4780  * @param obj The entry object
4781  * @return The input method context
4782  *
4783  * @ingroup Entry
4784  */
4785 EAPI Ecore_IMF_Context *elm_entry_imf_context_get(Evas_Object *obj)
4786 {
4787    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4788    Widget_Data *wd = elm_widget_data_get(obj);
4789    if (!wd || !wd->ent) return NULL;
4790
4791    return edje_object_part_text_imf_context_get(wd->ent, "elm.text");
4792 }
4793
4794 EAPI void
4795 elm_entry_matchlist_set(Evas_Object *obj, Eina_List *match_list, Eina_Bool case_sensitive)
4796 {
4797    Widget_Data *wd = elm_widget_data_get(obj);
4798    if (!wd) return;
4799
4800    if (match_list)
4801      {
4802         Evas_Coord max_w = 9999, max_h = 9999;
4803         const char* key_data = NULL;
4804
4805         wd->matchlist_threshold = 1;
4806         wd->hover = elm_hover_add(elm_widget_parent_get(obj));
4807         elm_hover_parent_set(wd->hover, elm_widget_parent_get(obj));
4808         elm_hover_target_set(wd->hover, obj);
4809         elm_object_style_set(wd->hover, "matchlist");
4810
4811         wd->layout = elm_layout_add(wd->hover);
4812         elm_layout_theme_set(wd->layout, "entry", "matchlist", "default");
4813         wd->list = elm_list_add(wd->layout);
4814         evas_object_size_hint_weight_set(wd->list, EVAS_HINT_EXPAND, 0.0);
4815         evas_object_size_hint_align_set(wd->list, EVAS_HINT_FILL, EVAS_HINT_FILL);
4816         elm_list_mode_set(wd->list, ELM_LIST_EXPAND);
4817         elm_object_style_set(wd->list, "matchlist");
4818
4819         key_data = edje_object_data_get(elm_layout_edje_get(wd->layout), "max_width");
4820         if (key_data) max_w = atoi(key_data);
4821         key_data = edje_object_data_get(elm_layout_edje_get(wd->layout), "max_height");
4822         if (key_data) max_h = atoi(key_data);
4823
4824         elm_list_go(wd->list);
4825         evas_object_size_hint_max_set(wd->list, max_w, max_h);
4826         evas_object_smart_callback_add(wd->list, "selected", _matchlist_list_clicked, obj);
4827         elm_layout_content_set(wd->layout, "elm.swallow.content", wd->list);
4828         elm_hover_content_set(wd->hover, "bottom", wd->layout);
4829
4830         wd->match_list = match_list;
4831      }
4832    else
4833      {
4834         if (wd->hover)
4835           evas_object_del(wd->hover);
4836
4837         wd->match_list = NULL;
4838      }
4839
4840    wd->matchlist_case_sensitive = case_sensitive;
4841 }
4842
4843 /**
4844  * Set the magnifier style of the entry
4845  *
4846  * @param obj The entry object
4847  * @param type the magnifier style to set
4848  *
4849  * @ingroup Entry
4850  */
4851 EAPI void
4852 elm_entry_magnifier_type_set(Evas_Object *obj, int type)
4853 {
4854    ELM_CHECK_WIDTYPE(obj, widtype);
4855    Widget_Data *wd = elm_widget_data_get(obj);
4856    if (!wd) return;
4857
4858    wd->mgf_type = type;
4859    _magnifier_create(obj);
4860 }
4861
4862 /**
4863  * Set wrap width of the entry
4864  *
4865  * @param obj The entry object
4866  * @param w The wrap width in pixels at a minimum where words need to wrap
4867  * @ingroup Entry
4868  */
4869 EAPI void
4870 elm_entry_wrap_width_set(Evas_Object *obj, Evas_Coord w)
4871 {
4872    Widget_Data *wd = elm_widget_data_get(obj);
4873    if (!wd) return;
4874    if (wd->wrap_w == w) return;
4875    wd->wrap_w = w;
4876    _sizing_eval(obj);
4877 }
4878
4879 /**
4880  * get wrap width of the entry
4881  *
4882  * @param obj The entry object
4883  * @return The wrap width in pixels at a minimum where words need to wrap
4884  * @ingroup Entry
4885  */
4886 EAPI Evas_Coord
4887 elm_entry_wrap_width_get(const Evas_Object *obj)
4888 {
4889    Widget_Data *wd = elm_widget_data_get(obj);
4890    if (!wd) return;
4891    return wd->wrap_w;
4892 }
4893
4894 /**
4895  * Set the font size on the entry object
4896  *
4897  * @param obj The entry object
4898  * @param size font size
4899  *
4900  * @ingroup Entry
4901  */
4902 EAPI void
4903 elm_entry_fontsize_set(Evas_Object *obj, int fontsize)
4904 {
4905    ELM_CHECK_WIDTYPE(obj, widtype);
4906    Widget_Data *wd = elm_widget_data_get(obj);
4907    Eina_Strbuf *fontbuf = NULL;
4908    int removeflag = 0;
4909    const char *t;
4910
4911    if (!wd) return;
4912    t = eina_stringshare_add(elm_entry_entry_get(obj));
4913    fontbuf = eina_strbuf_new();
4914    eina_strbuf_append_printf(fontbuf, "%d", fontsize);
4915
4916    if (fontsize == 0) removeflag = 1; // remove fontsize tag
4917
4918    if (_stringshare_key_value_replace(&t, "font_size", eina_strbuf_string_get(fontbuf), removeflag) == 0)
4919      {
4920        elm_entry_entry_set(obj, t);
4921        wd->changed = 1;
4922        _sizing_eval(obj);
4923      }
4924    eina_strbuf_free(fontbuf);
4925    eina_stringshare_del(t);
4926 }
4927
4928 /**
4929  * Set the text color on the entry object
4930  *
4931  * @param obj The entry object
4932  * @param r Red property background color of The entry object
4933  * @param g Green property background color of The entry object
4934  * @param b Blue property background color of The entry object
4935  * @param a Alpha property background alpha of The entry object
4936  *
4937  * @ingroup Entry
4938  */
4939 EAPI void
4940 elm_entry_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a)
4941 {
4942    ELM_CHECK_WIDTYPE(obj, widtype);
4943    Widget_Data *wd = elm_widget_data_get(obj);
4944    Eina_Strbuf *colorbuf = NULL;
4945    const char *t;
4946    int len;
4947
4948    if (!wd) return;
4949    t = eina_stringshare_add(elm_entry_entry_get(obj));
4950    len = strlen(t);
4951    if (len <= 0) return;
4952    colorbuf = eina_strbuf_new();
4953    eina_strbuf_append_printf(colorbuf, "#%02X%02X%02X%02X", r, g, b, a);
4954
4955    if (_stringshare_key_value_replace(&t, "color", eina_strbuf_string_get(colorbuf), 0) == 0)
4956      {
4957        elm_entry_entry_set(obj, t);
4958        wd->changed = 1;
4959        _sizing_eval(obj);
4960      }
4961    eina_strbuf_free(colorbuf);
4962    eina_stringshare_del(t);
4963 }
4964
4965 /**
4966  * Set the text align on the entry object
4967  *
4968  * @param obj The entry object
4969  * @param align align mode
4970  *
4971  * @ingroup Entry
4972  */
4973 EAPI void
4974 elm_entry_text_align_set(Evas_Object *obj, const char *alignmode)
4975 {
4976    ELM_CHECK_WIDTYPE(obj, widtype);
4977    Widget_Data *wd = elm_widget_data_get(obj);
4978    int len;
4979    const char *t;
4980
4981    if (!wd) return;
4982    t = eina_stringshare_add(elm_entry_entry_get(obj));
4983    len = strlen(t);
4984    if (len <= 0) return;
4985
4986    if (_stringshare_key_value_replace(&t, "align", alignmode, 0) == 0)
4987      elm_entry_entry_set(obj, t);
4988
4989    wd->changed = 1;
4990    _sizing_eval(obj);
4991    eina_stringshare_del(t);
4992 }