Merge "bugfix: entry show blue face image when paste image path"
[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
1160    if (!wd) return;
1161    sel = edje_object_part_text_selection_get(wd->ent, "elm.text");
1162    elm_selection_set(seltype, obj, ELM_SEL_FORMAT_MARKUP, sel);
1163    if (seltype == ELM_SEL_CLIPBOARD)
1164      eina_stringshare_replace(&wd->cut_sel, sel);
1165 }
1166
1167 static void
1168 _cut(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1169 {
1170    Widget_Data *wd = elm_widget_data_get(data);
1171
1172    /* Store it */
1173    wd->selmode = EINA_FALSE;
1174    if (!_elm_config->desktop_entry)
1175      edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
1176    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
1177    if (!_elm_config->desktop_entry)
1178      elm_widget_scroll_hold_pop(data);
1179    _store_selection(ELM_SEL_CLIPBOARD, data);
1180    edje_object_part_text_insert(wd->ent, "elm.text", "");
1181    edje_object_part_text_select_none(wd->ent, "elm.text");
1182 }
1183
1184 static void
1185 _copy(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1186 {
1187    Widget_Data *wd = elm_widget_data_get(data);
1188    if (!wd) return;
1189    wd->selmode = EINA_TRUE;
1190    if (!_elm_config->desktop_entry)
1191      {
1192         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
1193         elm_widget_scroll_hold_pop(data);
1194      }
1195    _store_selection(ELM_SEL_CLIPBOARD, data);
1196 }
1197
1198 static void
1199 _cancel(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1200 {
1201    Widget_Data *wd = elm_widget_data_get(data);
1202    if (!wd) return;
1203    wd->selmode = EINA_FALSE;
1204    if (!_elm_config->desktop_entry)
1205      edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
1206    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
1207    if (!_elm_config->desktop_entry)
1208      elm_widget_scroll_hold_pop(data);
1209    edje_object_part_text_select_none(wd->ent, "elm.text");
1210 }
1211
1212 static void
1213 _clipboard_menu(void *data, Evas_Object *obj, void *event_info __UNUSED__)
1214 {
1215    Widget_Data *wd = elm_widget_data_get(data);
1216    if (!wd) return;
1217
1218    // start for cbhm
1219 #ifdef HAVE_ELEMENTARY_X
1220    ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
1221 #endif
1222    cnpwidgetdata = data;
1223    elm_cbhm_helper_init(obj);
1224    if (elm_entry_cnp_textonly_get(obj))
1225      elm_cbhm_send_raw_data("show0");
1226    else
1227      elm_cbhm_send_raw_data("show1");
1228    // end for cbhm
1229 }
1230
1231 // start for cbhm
1232 static void
1233 _cnpinit(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1234 {
1235    Widget_Data *wd = elm_widget_data_get(data);
1236    if (!wd) return;
1237    cnpwidgetdata = data;
1238 }
1239 // end for cbhm
1240
1241
1242 static void
1243 _item_clicked(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1244 {
1245    Elm_Entry_Context_Menu_Item *it = data;
1246    Evas_Object *obj2 = it->obj;
1247    if (it->func) it->func(it->data, obj2, NULL);
1248 }
1249
1250 static void
1251 _menu_press(Evas_Object *obj)
1252 {
1253    Widget_Data *wd = elm_widget_data_get(obj);
1254    Evas_Object *top;
1255    const Eina_List *l;
1256    const Elm_Entry_Context_Menu_Item *it;
1257    if (!wd) return;
1258    if ((wd->api) && (wd->api->obj_longpress))
1259      {
1260         wd->api->obj_longpress(obj);
1261      }
1262    else if (wd->context_menu)
1263      {
1264         const char *context_menu_orientation;
1265
1266         if (wd->hoversel) evas_object_del(wd->hoversel);
1267         else elm_widget_scroll_freeze_push(obj);
1268         wd->hoversel = elm_hoversel_add(obj);
1269         context_menu_orientation = edje_object_data_get
1270            (wd->ent, "context_menu_orientation");
1271         if ((context_menu_orientation) &&
1272             (!strcmp(context_menu_orientation, "horizontal")))
1273           elm_hoversel_horizontal_set(wd->hoversel, EINA_TRUE);
1274         elm_object_style_set(wd->hoversel, "entry");
1275         elm_widget_sub_object_add(obj, wd->hoversel);
1276         elm_object_text_set(wd->hoversel, "Text");
1277         top = elm_widget_top_get(obj);
1278         if (top) elm_hoversel_hover_parent_set(wd->hoversel, top);
1279         evas_object_smart_callback_add(wd->hoversel, "dismissed", _dismissed, obj);
1280         if (!wd->selmode)
1281           {
1282              if (!wd->password)
1283                elm_hoversel_item_add(wd->hoversel, E_("Select"), NULL, ELM_ICON_NONE,
1284                                      _select, obj);
1285              if (1) // need way to detect if someone has a selection
1286                {
1287                   if (wd->editable)
1288                     elm_hoversel_item_add(wd->hoversel, E_("Paste"), NULL, ELM_ICON_NONE,
1289                                           _paste, obj);
1290                }
1291         // start for cbhm
1292              if ((!wd->password) && (wd->editable))
1293                elm_hoversel_item_add(wd->hoversel, E_("More"), NULL, ELM_ICON_NONE,
1294                                      _clipboard_menu, obj);
1295         // end for cbhm
1296           }
1297         else
1298           {
1299              if (!wd->password)
1300                {
1301                   if (wd->have_selection)
1302                     {
1303                        elm_hoversel_item_add(wd->hoversel, E_("Copy"), NULL, ELM_ICON_NONE,
1304                                              _copy, obj);
1305                        if (wd->editable)
1306                          elm_hoversel_item_add(wd->hoversel, E_("Cut"), NULL, ELM_ICON_NONE,
1307                                                _cut, obj);
1308                     }
1309                   elm_hoversel_item_add(wd->hoversel, E_("Cancel"), NULL, ELM_ICON_NONE,
1310                                         _cancel, obj);
1311         // start for cbhm
1312                   if (wd->editable)
1313                     elm_hoversel_item_add(wd->hoversel, E_("More"), NULL, ELM_ICON_NONE,
1314                                           _clipboard_menu, obj);
1315         // end for cbhm
1316                }
1317           }
1318         EINA_LIST_FOREACH(wd->items, l, it)
1319           {
1320              elm_hoversel_item_add(wd->hoversel, it->label, it->icon_file,
1321                                    it->icon_type, _item_clicked, it);
1322           }
1323         if (wd->hoversel)
1324           {
1325              _hoversel_position(obj);
1326              evas_object_show(wd->hoversel);
1327              elm_hoversel_hover_begin(wd->hoversel);
1328           }
1329         if (!_elm_config->desktop_entry)
1330           {
1331              edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
1332              edje_object_part_text_select_abort(wd->ent, "elm.text");
1333           }
1334      }
1335 }
1336
1337 static void
1338 _magnifier_hide(void *data)
1339 {
1340    Widget_Data *wd = elm_widget_data_get(data);
1341    if (!wd) return;
1342
1343    evas_object_hide(wd->mgf_bg);
1344    evas_object_hide(wd->mgf_clip);
1345
1346    if (wd->scroll)
1347      elm_smart_scroller_freeze_set(wd->scroller, EINA_FALSE);
1348 }
1349
1350 static void
1351 _magnifier_show(void *data)
1352 {
1353    Widget_Data *wd = elm_widget_data_get(data);
1354    if (!wd) return;
1355
1356    evas_object_show(wd->mgf_bg);
1357    evas_object_show(wd->mgf_clip);
1358 }
1359
1360 static void
1361 _magnifier_move(void *data)
1362 {
1363    Widget_Data *wd = elm_widget_data_get(data);
1364    if (!wd) return;
1365
1366    Evas_Coord x, y, w, h, fs;
1367    Evas_Coord cx, cy, cw, ch, ox, oy;
1368
1369    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", &cx, &cy, &cw, &ch);
1370
1371    if (wd->scroll)
1372      {
1373         evas_object_geometry_get(wd->scroller, &x, &y, &w, &h);
1374         elm_smart_scroller_child_pos_get(wd->scroller, &ox, &oy);
1375         cx -= ox;
1376         cy -= oy;
1377      }
1378    else
1379      evas_object_geometry_get(data, &x, &y, &w, &h);
1380
1381    ox = oy = 0;
1382    fs = elm_finger_size_get();
1383
1384    if ((cy + y) - wd->mgf_height - fs < 0)
1385      oy = -1 * ((cy + y) - wd->mgf_height - fs);
1386
1387    if (wd->mgf_type == _ENTRY_MAGNIFIER_FIXEDSIZE)
1388      evas_object_move(wd->mgf_bg, (cx + x + cw/2) + ox, (cy + y) - wd->mgf_height - fs + oy);
1389    else if (wd->mgf_type == _ENTRY_MAGNIFIER_FILLWIDTH)
1390      evas_object_move(wd->mgf_bg, x, (cy + y) - wd->mgf_height - fs + oy);
1391    else
1392      return;
1393
1394    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);
1395 }
1396
1397 static void
1398 _magnifier_create(void *data)
1399 {
1400    Widget_Data *wd = elm_widget_data_get(data);
1401    Evas_Coord x, y, w, h, mw, mh;
1402    const char* key_data = NULL;
1403
1404    if (!wd) return;
1405
1406    if (wd->mgf_proxy)
1407      {
1408         evas_object_image_source_unset(wd->mgf_proxy);
1409         evas_object_color_set(wd->mgf_proxy, 255, 255, 255, 0);
1410         evas_object_hide(wd->mgf_proxy);
1411         evas_object_clip_unset(wd->mgf_proxy);
1412         evas_object_del(wd->mgf_proxy);
1413      }
1414    if (wd->mgf_bg) evas_object_del(wd->mgf_bg);
1415    if (wd->mgf_clip) evas_object_del(wd->mgf_clip);
1416
1417    if (wd->scroll)
1418      evas_object_geometry_get(wd->scroller, &x, &y, &w, &h);
1419    else
1420      evas_object_geometry_get(data, &x, &y, &w, &h);
1421
1422    if ((w <= 0) || (h <= 0))
1423      return;
1424
1425    wd->mgf_bg = edje_object_add(evas_object_evas_get(data));
1426
1427    if (wd->mgf_type == _ENTRY_MAGNIFIER_FIXEDSIZE)
1428      _elm_theme_object_set(data, wd->mgf_bg, "entry", "magnifier", "fixed-size");
1429    else if (wd->mgf_type == _ENTRY_MAGNIFIER_FILLWIDTH)
1430      _elm_theme_object_set(data, wd->mgf_bg, "entry", "magnifier", "fill-width");
1431    else
1432      return;
1433
1434    wd->mgf_clip = evas_object_rectangle_add(evas_object_evas_get(data));
1435    evas_object_color_set(wd->mgf_clip, 255, 255, 255, 255);
1436    edje_object_part_swallow(wd->mgf_bg, "swallow", wd->mgf_clip);
1437
1438    key_data = edje_object_data_get(wd->mgf_bg, "height");
1439    if (key_data) wd->mgf_height = atoi(key_data);
1440    key_data = edje_object_data_get(wd->mgf_bg, "scale");
1441    if (key_data) wd->mgf_scale = atof(key_data);
1442
1443    if (wd->mgf_type == _ENTRY_MAGNIFIER_FILLWIDTH)
1444      evas_object_resize(wd->mgf_bg, w, wd->mgf_height);
1445
1446    if (wd->scroll)
1447      {
1448         elm_smart_scroller_freeze_set(wd->scroller, EINA_TRUE);
1449         wd->mgf_proxy = evas_object_image_add(evas_object_evas_get(wd->scroller));
1450         evas_object_image_source_set(wd->mgf_proxy, wd->scroller);
1451      }
1452    else
1453      {
1454         wd->mgf_proxy = evas_object_image_add(evas_object_evas_get(data));
1455         evas_object_image_source_set(wd->mgf_proxy, data);
1456      }
1457
1458    mw = (Evas_Coord)((float)w * wd->mgf_scale);
1459    mh = (Evas_Coord)((float)h * wd->mgf_scale);
1460    if ((mw <= 0) || (mh <= 0))
1461      return;
1462
1463    evas_object_resize(wd->mgf_proxy, mw, mh);
1464    evas_object_image_fill_set(wd->mgf_proxy, 0, 0, mw, mh);
1465    evas_object_color_set(wd->mgf_proxy, 255, 255, 255, 255);
1466    evas_object_pass_events_set(wd->mgf_proxy, EINA_TRUE);
1467    evas_object_show(wd->mgf_proxy);
1468    evas_object_clip_set(wd->mgf_proxy, wd->mgf_clip);
1469
1470    evas_object_layer_set(wd->mgf_bg, EVAS_LAYER_MAX);
1471    evas_object_layer_set(wd->mgf_proxy, EVAS_LAYER_MAX);
1472 }
1473
1474 static Eina_Bool
1475 _signal_long_pressed(void *data)
1476 {
1477    Widget_Data *wd = elm_widget_data_get(data);
1478    if (!wd) return ECORE_CALLBACK_CANCEL;
1479
1480    wd->long_pressed = EINA_TRUE;
1481
1482    _cancel(data, NULL, NULL);
1483
1484    _magnifier_create(data);
1485    _magnifier_move(data);
1486    _magnifier_show(data);
1487    elm_object_scroll_freeze_push(data);
1488
1489    evas_object_smart_callback_call(data, SIG_LONGPRESSED, NULL);
1490    return ECORE_CALLBACK_CANCEL;
1491 }
1492
1493 static void
1494 _mouse_down(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
1495 {
1496    Widget_Data *wd = elm_widget_data_get(data);
1497    Evas_Event_Mouse_Down *ev = event_info;
1498    if (!wd) return;
1499    if (wd->disabled) return;
1500    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
1501    wd->downx = ev->canvas.x;
1502    wd->downy = ev->canvas.y;
1503    wd->long_pressed = EINA_FALSE;
1504 }
1505
1506 static void
1507 _mouse_up(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
1508 {
1509    Widget_Data *wd = elm_widget_data_get(data);
1510    Evas_Event_Mouse_Up *ev = event_info;
1511    if (!wd) return;
1512    if (wd->disabled) return;
1513    if (ev->button == 1)
1514      {
1515         if (!wd->double_clicked)
1516           {
1517              if ((wd->api) && (wd->api->obj_mouseup))
1518                wd->api->obj_mouseup(data);
1519           }
1520         _magnifier_hide(data);
1521         elm_object_scroll_freeze_pop(data);
1522
1523         if (wd->long_pressed)
1524           _menu_press(data);
1525      }
1526    else if (ev->button == 3)
1527      {
1528         wd->usedown = 1;
1529         _menu_press(data);
1530      }
1531 }
1532
1533 static void
1534 _mouse_move(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
1535 {
1536    Widget_Data *wd = elm_widget_data_get(data);
1537    Evas_Event_Mouse_Move *ev = event_info;
1538    if (!wd) return;
1539    if (wd->disabled) return;
1540
1541    if (ev->buttons == 1)
1542      {
1543         if (wd->long_pressed)
1544           {
1545              _magnifier_show(data);
1546              _magnifier_move(data);
1547           }
1548      }
1549 }
1550
1551 static const char *
1552 _getbase(Evas_Object *obj)
1553 {
1554    Widget_Data *wd = elm_widget_data_get(obj);
1555    if (!wd) return "base";
1556    if (wd->editable)
1557      {
1558         if (wd->password) return "base-password";
1559         else
1560           {
1561              if (wd->single_line) return "base-single";
1562              else
1563                {
1564                   switch (wd->linewrap)
1565                     {
1566                      case ELM_WRAP_CHAR:
1567                         return "base-charwrap";
1568                      case ELM_WRAP_WORD:
1569                         return "base";
1570                      case ELM_WRAP_MIXED:
1571                         return "base-mixedwrap";
1572                      case ELM_WRAP_NONE:
1573                      default:
1574                         return "base-nowrap";
1575                     }
1576                }
1577           }
1578      }
1579    else
1580      {
1581         if (wd->password) return "base-password";
1582         else
1583           {
1584              if (wd->single_line) return "base-single-noedit";
1585              else
1586                {
1587                   switch (wd->linewrap)
1588                     {
1589                      case ELM_WRAP_CHAR:
1590                         return "base-noedit-charwrap";
1591                      case ELM_WRAP_WORD:
1592                         return "base-noedit";
1593                      case ELM_WRAP_MIXED:
1594                         return "base-noedit-mixedwrap";
1595                      case ELM_WRAP_NONE:
1596                      default:
1597                         return "base-nowrap-noedit";
1598                     }
1599                }
1600           }
1601      }
1602    return "base";
1603 }
1604
1605
1606 static int
1607 _entry_length_get(Evas_Object *obj)
1608 {
1609    int len;
1610    const char *str = elm_entry_entry_get(obj);
1611    if (!str) return 0;
1612
1613    char *plain_str = _elm_util_mkup_to_text(str);
1614    if (!plain_str) return 0;
1615
1616    len = strlen(plain_str);
1617    free(plain_str);
1618
1619    return len;
1620 }
1621
1622 #ifndef HAVE_STRCASESTR
1623 char* _strcasestr(const char *s, const char *find)
1624 {
1625    char c, sc;
1626    size_t len;
1627
1628    if ((c = *find++) != 0) {
1629       c = tolower((unsigned char) c);
1630       len = strlen(find);
1631       do {
1632          do {
1633             if( (sc = *s++) == 0)
1634                return NULL;
1635          } while ((char)tolower((unsigned char)sc) != c);
1636       } while (strncasecmp(s, find, len) != 0);
1637       s--;
1638    }
1639    return ((char*) s);
1640 }
1641 #endif
1642
1643 static void
1644 _matchlist_show(void *data)
1645 {
1646    Widget_Data *wd = elm_widget_data_get(data);
1647    const char *text = NULL;
1648    int textlen = 0;
1649    char *str_list = NULL, *str_result = NULL;
1650    char *str_mkup = NULL, *str_front = NULL, *str_mid = NULL;
1651
1652    Eina_List *l;
1653    Eina_Bool textfound = EINA_FALSE;
1654
1655    if (!wd) return;
1656    if (elm_widget_disabled_get(data)) return;
1657
1658    wd->matchlist_job = NULL;
1659
1660    if (wd->matchlist_list_clicked)
1661      {
1662         evas_object_hide(wd->hover);
1663         wd->matchlist_list_clicked = EINA_FALSE;
1664         return;
1665      }
1666    text = elm_entry_entry_get(data);
1667    if (text == NULL)
1668      return;
1669    textlen = strlen(text);
1670
1671    if (textlen < wd->matchlist_threshold)
1672      {
1673         evas_object_hide(wd->hover);
1674         return;
1675      }
1676
1677    evas_object_hide(wd->hover);
1678
1679    if (wd->match_list)
1680      {
1681         elm_list_clear(wd->list);
1682         EINA_LIST_FOREACH(wd->match_list, l, str_list)
1683           {
1684              if (wd->matchlist_case_sensitive)
1685                str_result = strstr(str_list, text);
1686              else
1687 #ifdef HAVE_STRCASESTR
1688                 str_result = strcasestr(str_list, text);
1689 #else
1690                 str_result = _strcasestr(str_list, text);
1691 #endif
1692
1693              if (str_result)
1694                {
1695                   str_mkup = malloc(strlen(str_list) + 16);
1696                   if (str_mkup == NULL) return;
1697
1698                   textlen = strlen(str_list) - strlen(str_result);
1699                   str_front = malloc(textlen + 1);
1700                   if (str_front == NULL) return;
1701
1702                   memset(str_front, 0, textlen + 1);
1703                   strncpy(str_front, str_list, textlen);
1704
1705                   textlen = strlen(text);
1706                   str_mid = malloc(textlen + 1);
1707                   if (str_mid == NULL) return;
1708
1709                   memset(str_mid, 0, textlen + 1);
1710                   strncpy(str_mid, str_list + strlen(str_front), textlen);
1711
1712                   sprintf(str_mkup, "%s<match>%s</match>%s", str_front, str_mid, str_result + strlen(text));
1713
1714                   elm_list_item_append(wd->list, str_mkup, NULL, NULL, NULL, NULL);
1715
1716                   if (str_mkup) free(str_mkup);
1717                   if (str_front) free(str_front);
1718                   if (str_mid) free(str_mid);
1719
1720                   textfound=EINA_TRUE;
1721                }
1722           }
1723      }
1724    else
1725      return;
1726
1727    if (textfound)
1728      {
1729         elm_list_go(wd->list);
1730         evas_object_show(wd->hover);
1731         evas_object_raise(wd->hover);
1732      }
1733 }
1734
1735 static void _matchlist_list_clicked( void *data, Evas_Object *obj, void *event_info )
1736 {
1737    Elm_List_Item *it = (Elm_List_Item *) elm_list_selected_item_get(obj);
1738    Widget_Data *wd = elm_widget_data_get(data);
1739    if ((it == NULL) || (wd == NULL))
1740      return;
1741
1742    const char *text = elm_list_item_label_get(it);
1743    evas_object_smart_callback_call((Evas_Object *)data, "selected", (void *)text);
1744    if (wd->match_list)
1745      {
1746         if (text != NULL)
1747           {
1748              elm_entry_entry_set(data, elm_entry_markup_to_utf8(text));
1749              elm_entry_cursor_end_set(data);
1750              wd->matchlist_list_clicked = EINA_TRUE;
1751
1752              evas_object_smart_callback_call(data, SIG_MATCHLIST_CLICKED, elm_entry_markup_to_utf8(text));
1753           }
1754      }
1755    elm_widget_focus_set(data, EINA_TRUE);
1756 }
1757
1758 static void
1759 _entry_changed_common_handling(void *data, const char *event)
1760 {
1761    Widget_Data *wd = elm_widget_data_get(data);
1762    Evas_Coord minw, minh;
1763    if (!wd) return;
1764    wd->changed = EINA_TRUE;
1765    /* Reset the size hints which are no more relevant.
1766     * Keep the height, this is a hack, but doesn't really matter
1767     * cause we'll re-eval in a moment. */
1768    if (wd->scroll)
1769      {
1770         evas_object_size_hint_min_get(data, &minw, &minh);
1771         evas_object_size_hint_min_set(data, minw, minh);
1772      }
1773    else
1774      {
1775         evas_object_size_hint_min_get(data, NULL, &minh);
1776         evas_object_size_hint_min_set(data, -1, minh);
1777      }
1778
1779    _sizing_eval(data);
1780    if (wd->text) eina_stringshare_del(wd->text);
1781    wd->text = NULL;
1782    if (wd->password_text) eina_stringshare_del(wd->password_text);
1783    wd->password_text = NULL;
1784    _check_enable_returnkey(data);
1785    evas_object_smart_callback_call(data, event, NULL);
1786    if (wd->delay_write)
1787      {
1788         ecore_timer_del(wd->delay_write);
1789         wd->delay_write = NULL;
1790      }
1791
1792    if ((wd->single_line) && (wd->match_list))
1793      {
1794         if (wd->matchlist_job) ecore_job_del(wd->matchlist_job);
1795         wd->matchlist_job = ecore_job_add(_matchlist_show, data);
1796      }
1797    if ((!wd->autosave) || (!wd->file)) return;
1798    wd->delay_write = ecore_timer_add(2.0, _delay_write, data);
1799 }
1800
1801 static void
1802 _signal_entry_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1803 {
1804    Widget_Data *wd = elm_widget_data_get(data);
1805    if (!wd) return;
1806
1807    _entry_changed_common_handling(data, SIG_CHANGED);
1808
1809    if ((wd->api) && (wd->api->obj_hidemenu))
1810      wd->api->obj_hidemenu(data);
1811 }
1812
1813 static void
1814 _signal_preedit_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1815 {
1816    Widget_Data *wd = elm_widget_data_get(data);
1817    if (!wd) return;
1818
1819    _entry_changed_common_handling(data, SIG_PREEDIT_CHANGED);
1820
1821    if ((wd->api) && (wd->api->obj_hidemenu))
1822      wd->api->obj_hidemenu(data);
1823 }
1824
1825 static void
1826 _signal_handler_move_start(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1827 {
1828    Widget_Data *wd = elm_widget_data_get(data);
1829    if (!wd) return;
1830
1831    elm_object_scroll_freeze_push(data);
1832
1833    if ((wd->api) && (wd->api->obj_hidemenu))
1834      wd->api->obj_hidemenu(data);
1835
1836    _magnifier_create(data);
1837    _magnifier_move(data);
1838    _magnifier_show(data);
1839 }
1840
1841 static void
1842 _signal_handler_move_end(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1843 {
1844    Widget_Data *wd = elm_widget_data_get(data);
1845    if (!wd) return;
1846
1847    elm_object_scroll_freeze_pop(data);
1848
1849    if (wd->have_selection)
1850      {
1851         _magnifier_hide(data);
1852         _menu_press(data);
1853      }
1854 }
1855
1856 static void
1857 _signal_handler_moving(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1858 {
1859    _magnifier_move(data);
1860    _magnifier_show(data);
1861 }
1862
1863 static Evas_Object *
1864 _viewport_obj_get(Evas_Object *data)
1865 {
1866    Widget_Data *wd = elm_widget_data_get(data);
1867    if (!wd) return NULL;
1868
1869    if(!data || !strlen(elm_widget_type_get(data)))
1870      return NULL;
1871
1872    Evas_Coord x, y, w, h;
1873    x = y = w = h = -1;
1874
1875    if (wd->scroll)
1876      {
1877         //evas_object_geometry_get(wd->scroller, &x, &y, &w, &h);
1878         //printf(">>> wd->scroller (%d, %d, %d, %d) \n", x, y, w, h);
1879         return wd->scroller;
1880      }
1881
1882    Evas_Object *parent_obj = data;
1883
1884    while(parent_obj = elm_widget_parent_get(parent_obj))
1885      {
1886         //evas_object_geometry_get(parent_obj, &x, &y, &w, &h);
1887         //printf(">>> %s (%d, %d, %d, %d) \n", elm_widget_type_get(parent_obj), x, y, w, h);
1888         if (!strcmp(elm_widget_type_get(parent_obj), "scroller") ||
1889             !strcmp(elm_widget_type_get(parent_obj), "genlist"))
1890           return parent_obj;
1891      }
1892
1893    return NULL;
1894 }
1895
1896 static void
1897 _signal_selection_end(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1898 {
1899    _magnifier_hide(data);
1900    _menu_press(data);
1901 }
1902
1903 static void
1904 _signal_selection_start(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1905 {
1906    Widget_Data *wd = elm_widget_data_get(data);
1907    const Eina_List *l;
1908    Evas_Object *entry;
1909    if (!wd) return;
1910    EINA_LIST_FOREACH(entries, l, entry)
1911      {
1912         if (entry != data) elm_entry_select_none(entry);
1913      }
1914    wd->have_selection = EINA_TRUE;
1915    wd->selmode = EINA_TRUE;
1916    evas_object_smart_callback_call(data, SIG_SELECTION_START, NULL);
1917 #ifdef HAVE_ELEMENTARY_X
1918    if (wd->sel_notify_handler)
1919      {
1920         const char *txt = elm_entry_selection_get(data);
1921         Evas_Object *top;
1922
1923         top = elm_widget_top_get(data);
1924         if ((top) && (elm_win_xwindow_get(top)))
1925           elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_FORMAT_MARKUP, txt);
1926      }
1927 #endif
1928
1929    if (!_elm_config->desktop_entry)
1930      edje_object_part_text_viewport_object_set(wd->ent, "elm.text", _viewport_obj_get(data));
1931 }
1932
1933 static void
1934 _signal_magnifier_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1935 {
1936    Evas_Coord cx, cy, cw, ch;
1937    Widget_Data *wd = elm_widget_data_get(data);
1938    if (!wd) return;
1939
1940    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", &cx, &cy, &cw, &ch);
1941    if (!wd->deferred_recalc_job)
1942      elm_widget_show_region_set(data, cx, cy, cw, ch, EINA_FALSE);
1943    else
1944      {
1945         wd->deferred_cur = EINA_TRUE;
1946         wd->cx = cx;
1947         wd->cy = cy;
1948         wd->cw = cw;
1949         wd->ch = ch + elm_finger_size_get();
1950      }
1951 }
1952
1953 static void
1954 _signal_selection_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1955 {
1956    Evas_Coord cx, cy, cw, ch;
1957    Widget_Data *wd = elm_widget_data_get(data);
1958    if (!wd) return;
1959    wd->have_selection = EINA_TRUE;
1960    wd->selmode = EINA_TRUE;
1961    evas_object_smart_callback_call(data, SIG_SELECTION_CHANGED, NULL);
1962    elm_selection_set(ELM_SEL_PRIMARY, obj, ELM_SEL_FORMAT_MARKUP,
1963                      elm_entry_selection_get(data));
1964
1965    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", &cx, &cy, &cw, &ch);
1966    if (!wd->deferred_recalc_job)
1967      elm_widget_show_region_set(data, cx, cy, cw, ch + elm_finger_size_get(), EINA_FALSE);
1968    else
1969      {
1970         wd->deferred_cur = EINA_TRUE;
1971         wd->cx = cx;
1972         wd->cy = cy;
1973         wd->cw = cw;
1974         wd->ch = ch + elm_finger_size_get();
1975      }
1976 }
1977
1978 static void
1979 _signal_selection_cleared(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1980 {
1981    Widget_Data *wd = elm_widget_data_get(data);
1982    if (!wd) return;
1983    if (!wd->have_selection) return;
1984    wd->have_selection = EINA_FALSE;
1985    wd->selmode = EINA_FALSE;
1986    evas_object_smart_callback_call(data, SIG_SELECTION_CLEARED, NULL);
1987    if (wd->sel_notify_handler)
1988      {
1989         if (wd->cut_sel)
1990           {
1991 #ifdef HAVE_ELEMENTARY_X
1992              Evas_Object *top;
1993
1994              top = elm_widget_top_get(data);
1995              if ((top) && (elm_win_xwindow_get(top)))
1996                elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_FORMAT_MARKUP,
1997                                  wd->cut_sel);
1998 #endif
1999              eina_stringshare_del(wd->cut_sel);
2000              wd->cut_sel = NULL;
2001           }
2002         else
2003           {
2004 #ifdef HAVE_ELEMENTARY_X
2005              Evas_Object *top;
2006
2007              top = elm_widget_top_get(data);
2008              if ((top) && (elm_win_xwindow_get(top)))
2009                elm_selection_clear(ELM_SEL_PRIMARY, data);
2010 #endif
2011           }
2012      }
2013
2014    if ((wd->api) && (wd->api->obj_hidemenu))
2015      {
2016         wd->api->obj_hidemenu(data);
2017      }
2018 }
2019
2020 static void
2021 _signal_entry_paste_request(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2022 {
2023    Widget_Data *wd = elm_widget_data_get(data);
2024    if (!wd) return;
2025    evas_object_smart_callback_call(data, SIG_SELECTION_PASTE, NULL);
2026    if (wd->sel_notify_handler)
2027      {
2028 #ifdef HAVE_ELEMENTARY_X
2029         Evas_Object *top;
2030
2031         top = elm_widget_top_get(data);
2032         if ((top) && (elm_win_xwindow_get(top)))
2033           {
2034              wd->selection_asked = EINA_TRUE;
2035              elm_selection_get(ELM_SEL_CLIPBOARD, ELM_SEL_FORMAT_MARKUP, data,
2036                                NULL, NULL);
2037           }
2038 #endif
2039      }
2040 }
2041
2042 static void
2043 _signal_entry_copy_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2044 {
2045    Widget_Data *wd = elm_widget_data_get(data);
2046    if (!wd) return;
2047    evas_object_smart_callback_call(data, SIG_SELECTION_COPY, NULL);
2048    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_FORMAT_MARKUP,
2049                      elm_entry_selection_get(data));
2050 }
2051
2052 static void
2053 _signal_entry_cut_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2054 {
2055    Widget_Data *wd = elm_widget_data_get(data);
2056    if (!wd) return;
2057    evas_object_smart_callback_call(data, SIG_SELECTION_CUT, NULL);
2058    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_FORMAT_MARKUP,
2059                      elm_entry_selection_get(data));
2060    edje_object_part_text_insert(wd->ent, "elm.text", "");
2061    wd->changed = EINA_TRUE;
2062    _sizing_eval(data);
2063 }
2064
2065 static void
2066 _signal_cursor_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2067 {
2068    Widget_Data *wd = elm_widget_data_get(data);
2069    if (!wd) return;
2070    wd->cursor_pos = edje_object_part_text_cursor_pos_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2071    wd->cur_changed = EINA_TRUE;
2072    _recalc_cursor_geometry(data);
2073 }
2074
2075 static void
2076 _signal_anchor_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2077 {
2078    Widget_Data *wd = elm_widget_data_get(data);
2079    if (!wd) return;
2080 }
2081
2082 static void
2083 _signal_anchor_up(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2084 {
2085    Widget_Data *wd = elm_widget_data_get(data);
2086    if (!wd) return;
2087 }
2088
2089 static void
2090 _signal_anchor_clicked(void *data, Evas_Object *obj __UNUSED__, const char *emission, const char *source __UNUSED__)
2091 {
2092    Widget_Data *wd = elm_widget_data_get(data);
2093    Elm_Entry_Anchor_Info ei;
2094    char *buf2, *p, *p2, *n;
2095    if (!wd) return;
2096    p = strrchr(emission, ',');
2097    if (p)
2098      {
2099         const Eina_List *geoms;
2100
2101         n = p + 1;
2102         p2 = p -1;
2103         while (p2 >= emission)
2104           {
2105              if (*p2 == ',') break;
2106              p2--;
2107           }
2108         p2++;
2109         buf2 = alloca(5 + p - p2);
2110         strncpy(buf2, p2, p - p2);
2111         buf2[p - p2] = 0;
2112         ei.name = n;
2113         ei.button = atoi(buf2);
2114         ei.x = ei.y = ei.w = ei.h = 0;
2115         geoms =
2116            edje_object_part_text_anchor_geometry_get(wd->ent, "elm.text", ei.name);
2117         if (geoms)
2118           {
2119              Evas_Textblock_Rectangle *r;
2120              const Eina_List *l;
2121              Evas_Coord px, py, x, y;
2122
2123              evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
2124              evas_pointer_canvas_xy_get(evas_object_evas_get(wd->ent), &px, &py);
2125              EINA_LIST_FOREACH(geoms, l, r)
2126                {
2127                   if (((r->x + x) <= px) && ((r->y + y) <= py) &&
2128                       ((r->x + x + r->w) > px) && ((r->y + y + r->h) > py))
2129                     {
2130                        ei.x = r->x + x;
2131                        ei.y = r->y + y;
2132                        ei.w = r->w;
2133                        ei.h = r->h;
2134                        break;
2135                     }
2136                }
2137           }
2138         if (!wd->disabled)
2139           evas_object_smart_callback_call(data, SIG_ANCHOR_CLICKED, &ei);
2140      }
2141 }
2142
2143 static void
2144 _signal_anchor_move(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2145 {
2146    Widget_Data *wd = elm_widget_data_get(data);
2147    if (!wd) return;
2148 }
2149
2150 static void
2151 _signal_anchor_in(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2152 {
2153    Widget_Data *wd = elm_widget_data_get(data);
2154    if (!wd) return;
2155 }
2156
2157 static void
2158 _signal_anchor_out(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2159 {
2160    Widget_Data *wd = elm_widget_data_get(data);
2161    if (!wd) return;
2162 }
2163
2164 static void
2165 _signal_key_enter(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2166 {
2167    Widget_Data *wd = elm_widget_data_get(data);
2168    if (!wd) return;
2169    evas_object_smart_callback_call(data, SIG_ACTIVATED, NULL);
2170 }
2171
2172 static void
2173 _signal_mouse_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2174 {
2175    Widget_Data *wd = elm_widget_data_get(data);
2176    if (!wd) return;
2177    wd->double_clicked = EINA_FALSE;
2178    evas_object_smart_callback_call(data, SIG_PRESS, NULL);
2179
2180    if ((wd->api) && (wd->api->obj_hidemenu))
2181      wd->api->obj_hidemenu(data);
2182 }
2183
2184 static void
2185 _signal_mouse_clicked(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2186 {
2187    Widget_Data *wd = elm_widget_data_get(data);
2188    if (!wd) return;
2189    evas_object_smart_callback_call(data, SIG_CLICKED, NULL);
2190
2191    if (!_elm_config->desktop_entry && !wd->double_clicked)
2192      _cancel(data, NULL, NULL);
2193 }
2194
2195 static void
2196 _signal_mouse_double(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
2197 {
2198    Widget_Data *wd = elm_widget_data_get(data);
2199    if (!wd) return;
2200    wd->double_clicked = EINA_TRUE;
2201    evas_object_smart_callback_call(data, SIG_CLICKED_DOUBLE, NULL);
2202 }
2203
2204 #ifdef HAVE_ELEMENTARY_X
2205 static Eina_Bool
2206 _event_selection_notify(void *data, int type __UNUSED__, void *event)
2207 {
2208    Widget_Data *wd = elm_widget_data_get(data);
2209    Ecore_X_Event_Selection_Notify *ev = event;
2210    if (!wd) return ECORE_CALLBACK_PASS_ON;
2211    if ((!wd->selection_asked) && (!wd->drag_selection_asked))
2212      return ECORE_CALLBACK_PASS_ON;
2213
2214    if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
2215        (ev->selection == ECORE_X_SELECTION_PRIMARY))
2216      {
2217         Ecore_X_Selection_Data_Text *text_data;
2218
2219         text_data = ev->data;
2220         if (text_data->data.content == ECORE_X_SELECTION_CONTENT_TEXT)
2221           {
2222              if (text_data->text)
2223                {
2224                   char *txt = _elm_util_text_to_mkup(text_data->text);
2225
2226                   if (txt)
2227                     {
2228                        elm_entry_entry_insert(data, txt);
2229                        free(txt);
2230                     }
2231                }
2232           }
2233         wd->selection_asked = EINA_FALSE;
2234      }
2235    else if (ev->selection == ECORE_X_SELECTION_XDND)
2236      {
2237         Ecore_X_Selection_Data_Text *text_data;
2238
2239         text_data = ev->data;
2240         if (text_data->data.content == ECORE_X_SELECTION_CONTENT_TEXT)
2241           {
2242              if (text_data->text)
2243                {
2244                   char *txt = _elm_util_text_to_mkup(text_data->text);
2245
2246                   if (txt)
2247                     {
2248                        /* Massive FIXME: this should be at the drag point */
2249                        elm_entry_entry_insert(data, txt);
2250                        free(txt);
2251                     }
2252                }
2253           }
2254         wd->drag_selection_asked = EINA_FALSE;
2255
2256         ecore_x_dnd_send_finished();
2257
2258      }
2259    return ECORE_CALLBACK_PASS_ON;
2260 }
2261
2262 static Eina_Bool
2263 _event_selection_clear(void *data __UNUSED__, int type __UNUSED__, void *event __UNUSED__)
2264 {
2265 /*
2266    Widget_Data *wd = elm_widget_data_get(data);
2267    Ecore_X_Event_Selection_Clear *ev = event;
2268    if (!wd) return ECORE_CALLBACK_PASS_ON;
2269    if (!wd->have_selection) return ECORE_CALLBACK_PASS_ON;
2270    if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
2271        (ev->selection == ECORE_X_SELECTION_PRIMARY))
2272      {
2273         elm_entry_select_none(data);
2274      }
2275    return 1; */
2276
2277    // start for cbhm
2278    Evas_Object *top = elm_widget_top_get(data);
2279    Ecore_X_Event_Selection_Clear *ev = event;
2280
2281    if (!top)
2282       return ECORE_CALLBACK_PASS_ON;
2283
2284    if (ev->selection != ECORE_X_SELECTION_SECONDARY)
2285      {
2286         return ECORE_CALLBACK_PASS_ON;
2287      }
2288
2289    if (cnpwidgetdata == data)
2290      {
2291         elm_selection_get(ELM_SEL_SECONDARY,ELM_SEL_FORMAT_MARKUP,data,NULL,NULL);
2292      }
2293
2294    // end for cbhm
2295    return ECORE_CALLBACK_PASS_ON;
2296 }
2297
2298 static Eina_Bool
2299 _drag_drop_cb(void *data __UNUSED__, Evas_Object *obj, Elm_Selection_Data *drop)
2300 {
2301    Widget_Data *wd;
2302    Eina_Bool rv;
2303
2304    wd = elm_widget_data_get(obj);
2305    if (!wd) return EINA_FALSE;
2306    printf("Inserting at (%d,%d) %s\n",drop->x,drop->y,(char*)drop->data);
2307
2308    edje_object_part_text_cursor_copy(wd->ent, "elm.text",
2309                                      EDJE_CURSOR_MAIN,/*->*/EDJE_CURSOR_USER);
2310    rv = edje_object_part_text_cursor_coord_set(wd->ent,"elm.text",
2311                                                EDJE_CURSOR_MAIN,drop->x,drop->y);
2312    if (!rv) printf("Warning: Failed to position cursor: paste anyway\n");
2313    elm_entry_entry_insert(obj, drop->data);
2314    edje_object_part_text_cursor_copy(wd->ent, "elm.text",
2315                                      EDJE_CURSOR_USER,/*->*/EDJE_CURSOR_MAIN);
2316
2317    return EINA_TRUE;
2318 }
2319 #endif
2320
2321 static Evas_Object *
2322 _get_item(void *data, Evas_Object *edje __UNUSED__, const char *part __UNUSED__, const char *item)
2323 {
2324    Widget_Data *wd = elm_widget_data_get(data);
2325    Evas_Object *o;
2326    Eina_List *l;
2327    Elm_Entry_Item_Provider *ip;
2328
2329    EINA_LIST_FOREACH(wd->item_providers, l, ip)
2330      {
2331         o = ip->func(ip->data, data, item);
2332         if (o) return o;
2333      }
2334    if (!strncmp(item, "file://", 7))
2335      {
2336         const char *fname = item + 7;
2337
2338         o = evas_object_image_filled_add(evas_object_evas_get(data));
2339         evas_object_image_file_set(o, fname, NULL);
2340         if (evas_object_image_load_error_get(o) == EVAS_LOAD_ERROR_NONE)
2341           {
2342              evas_object_show(o);
2343           }
2344         else
2345           {
2346              evas_object_del(o);
2347              o = edje_object_add(evas_object_evas_get(data));
2348              _elm_theme_object_set(data, o, "entry/emoticon", "wtf", elm_widget_style_get(data));
2349           }
2350         return o;
2351      }
2352    o = edje_object_add(evas_object_evas_get(data));
2353    if (!_elm_theme_object_set(data, o, "entry", item, elm_widget_style_get(data)))
2354      _elm_theme_object_set(data, o, "entry/emoticon", "wtf", elm_widget_style_get(data));
2355    return o;
2356 }
2357
2358 static int
2359 _strbuf_key_value_replace(Eina_Strbuf *srcbuf, char *key, const char *value, int deleteflag)
2360 {
2361    const char *srcstring = NULL;
2362    Eina_Strbuf *repbuf = NULL, *diffbuf = NULL;
2363    char *curlocater, *replocater;
2364    char *starttag, *endtag;
2365    int tagtxtlen = 0, insertflag = 0;
2366
2367    srcstring = eina_strbuf_string_get(srcbuf);
2368    curlocater = strstr(srcstring, key);
2369
2370    if (!curlocater || !srcstring)
2371      {
2372        insertflag = 1;
2373      }
2374    else
2375      {
2376        do
2377          {
2378            starttag = strchr(srcstring, '<');
2379            endtag = strchr(srcstring, '>');
2380            tagtxtlen = endtag - starttag;
2381            if (tagtxtlen <= 0) tagtxtlen = 0;
2382            if (starttag < curlocater && curlocater < endtag) break;
2383            if (endtag != NULL && endtag+1 != NULL)
2384              srcstring = endtag+1;
2385            else
2386              break;
2387          } while (strlen(srcstring) > 1);
2388
2389        if (starttag && endtag && tagtxtlen > strlen(key))
2390          {
2391            repbuf = eina_strbuf_new();
2392            diffbuf = eina_strbuf_new();
2393            eina_strbuf_append_n(repbuf, starttag, tagtxtlen);
2394            srcstring = eina_strbuf_string_get(repbuf);
2395            curlocater = strstr(srcstring, key);
2396
2397            if (curlocater != NULL)
2398              {
2399                replocater = curlocater + strlen(key) + 1;
2400
2401                while ((*replocater) && (*replocater != ' ') && (*replocater != '>'))
2402                  replocater++;
2403
2404                if (replocater-curlocater > strlen(key)+1)
2405                  {
2406                    eina_strbuf_append_n(diffbuf, curlocater, replocater-curlocater+1);
2407                  }
2408                else
2409                  insertflag = 1;
2410              }
2411            else
2412              {
2413                insertflag = 1;
2414              }
2415            eina_strbuf_reset(repbuf);
2416          }
2417        else
2418          {
2419            insertflag = 1;
2420          }
2421      }
2422
2423    if (repbuf == NULL) repbuf = eina_strbuf_new();
2424    if (diffbuf == NULL) diffbuf = eina_strbuf_new();
2425
2426    if (insertflag)
2427      {
2428        eina_strbuf_append_printf(repbuf, "<%s=%s>", key, value);
2429        eina_strbuf_prepend(srcbuf, eina_strbuf_string_get(repbuf));
2430      }
2431    else
2432      {
2433         if (deleteflag)
2434           {
2435             eina_strbuf_prepend(diffbuf, "<");
2436             eina_strbuf_append(diffbuf, ">");
2437             eina_strbuf_replace_first(srcbuf, eina_strbuf_string_get(diffbuf), "");
2438           }
2439         else
2440           {
2441             eina_strbuf_append_printf(repbuf, "%s=%s", key, value);
2442             eina_strbuf_replace_first(srcbuf, eina_strbuf_string_get(diffbuf), eina_strbuf_string_get(repbuf));
2443           }
2444      }
2445
2446    if (repbuf) eina_strbuf_free(repbuf);
2447    if (diffbuf) eina_strbuf_free(diffbuf);
2448
2449    return 0;
2450 }
2451
2452 static int
2453 _stringshare_key_value_replace(const char **srcstring, char *key, const char *value, int deleteflag)
2454 {
2455    Eina_Strbuf *sharebuf = NULL;
2456
2457    sharebuf = eina_strbuf_new();
2458    eina_strbuf_append(sharebuf, *srcstring);
2459    _strbuf_key_value_replace(sharebuf, key, value, deleteflag);
2460    eina_stringshare_del(*srcstring);
2461    *srcstring = eina_stringshare_add(eina_strbuf_string_get(sharebuf));
2462    eina_strbuf_free(sharebuf);
2463
2464    return 0;
2465 }
2466
2467 static void
2468 _text_filter(void *data, Evas_Object *edje __UNUSED__, const char *part __UNUSED__, Edje_Text_Filter_Type type, char **text)
2469 {
2470    Widget_Data *wd = elm_widget_data_get(data);
2471    Eina_List *l;
2472    Elm_Entry_Text_Filter *tf;
2473
2474    if (type == EDJE_TEXT_FILTER_FORMAT)
2475      return;
2476
2477    EINA_LIST_FOREACH(wd->text_filters, l, tf)
2478      {
2479         tf->func(tf->data, data, text);
2480         if (!*text)
2481           break;
2482      }
2483 }
2484
2485 /* This function is used to insert text by chunks in jobs */
2486 static Eina_Bool
2487 _text_append_idler(void *data)
2488 {
2489    int start;
2490    char backup;
2491    Evas_Object *obj = (Evas_Object *) data;
2492    Widget_Data *wd = elm_widget_data_get(obj);
2493    if (wd->text) eina_stringshare_del(wd->text);
2494    wd->text = NULL;
2495    if (wd->password_text) eina_stringshare_del(wd->password_text);
2496    wd->password_text = NULL;
2497    wd->changed = EINA_TRUE;
2498
2499    start = wd->append_text_position;
2500    if (start + _CHUNK_SIZE < wd->append_text_len)
2501      {
2502         int pos = start;
2503         int tag_start, esc_start;
2504
2505         tag_start = esc_start = -1;
2506         /* Find proper markup cut place */
2507         while (pos - start < _CHUNK_SIZE)
2508           {
2509              int prev_pos = pos;
2510              Eina_Unicode tmp =
2511                 eina_unicode_utf8_get_next(wd->append_text_left, &pos);
2512              if (esc_start == -1)
2513                {
2514                   if (tmp == '<')
2515                      tag_start = prev_pos;
2516                   else if (tmp == '>')
2517                      tag_start = -1;
2518                }
2519              else if (tag_start == -1)
2520                {
2521                   if (tmp == '&')
2522                      esc_start = prev_pos;
2523                   else if (tmp == ';')
2524                      esc_start = -1;
2525                }
2526           }
2527
2528         if (tag_start >= 0)
2529           {
2530              wd->append_text_position = tag_start;
2531           }
2532         else if (esc_start >= 0)
2533           {
2534              wd->append_text_position = esc_start;
2535           }
2536         else
2537           {
2538              wd->append_text_position = pos;
2539           }
2540      }
2541    else
2542      {
2543         wd->append_text_position = wd->append_text_len;
2544      }
2545
2546    backup = wd->append_text_left[wd->append_text_position];
2547    wd->append_text_left[wd->append_text_position] = '\0';
2548
2549    edje_object_part_text_append(wd->ent, "elm.text",
2550          wd->append_text_left + start);
2551
2552    wd->append_text_left[wd->append_text_position] = backup;
2553
2554    /* If there's still more to go, renew the idler, else, cleanup */
2555    if (wd->append_text_position < wd->append_text_len)
2556      {
2557         return ECORE_CALLBACK_RENEW;
2558      }
2559    else
2560      {
2561         free(wd->append_text_left);
2562         wd->append_text_left = NULL;
2563         wd->append_text_idler = NULL;
2564         return ECORE_CALLBACK_CANCEL;
2565      }
2566 }
2567
2568 static void
2569 _add_chars_till_limit(Evas_Object *obj, char **text, int can_add, Length_Unit unit)
2570 {
2571    int i = 0, unit_size;
2572    int current_len = strlen(*text);
2573    char *new_text = *text;
2574    if (unit >= LENGTH_UNIT_LAST) return;
2575    while (*new_text)
2576      {
2577         if (*new_text == '<')
2578           {
2579              while (*new_text != '>')
2580                {
2581                   new_text++;
2582                   if (!*new_text) break;
2583                }
2584              new_text++;
2585           }
2586         else
2587           {
2588              int index = 0;
2589              if (*new_text == '&')
2590                {
2591                   while (*(new_text + index) != ';')
2592                     {
2593                        index++;
2594                        if (!*(new_text + index)) break;
2595                     }
2596                }
2597              char *markup;
2598              index = evas_string_char_next_get(new_text, index, NULL);
2599              markup = malloc(index + 1);
2600              strncpy(markup, new_text, index);
2601              markup[index] = 0;
2602              if (unit == LENGTH_UNIT_BYTE)
2603                unit_size = strlen(elm_entry_markup_to_utf8(markup));
2604              else if (unit == LENGTH_UNIT_CHAR)
2605                unit_size = evas_string_char_len_get(elm_entry_markup_to_utf8(markup));
2606              if (markup)
2607                {
2608                   free(markup);
2609                   markup = NULL;
2610                }
2611              if (can_add < unit_size)
2612                {
2613                   if (!i)
2614                     {
2615                        evas_object_smart_callback_call(obj, "maxlength,reached", NULL);
2616                        free(*text);
2617                        *text = NULL;
2618                        return;
2619                     }
2620                   can_add = 0;
2621                   strncpy(new_text, new_text + index, current_len - ((new_text + index) - *text));
2622                   current_len -= index;
2623                   (*text)[current_len] = 0;
2624                }
2625              else
2626                {
2627                   new_text += index;
2628                   can_add -= unit_size;
2629                }
2630              i++;
2631           }
2632      }
2633    evas_object_smart_callback_call(obj, "maxlength,reached", NULL);
2634 }
2635
2636 static void
2637 _elm_entry_text_set(Evas_Object *obj, const char *item, const char *entry)
2638 {
2639    int len = 0;
2640    ELM_CHECK_WIDTYPE(obj, widtype);
2641    if (item && strcmp(item, "default")) return;
2642    Widget_Data *wd = elm_widget_data_get(obj);
2643    if (!wd) return;
2644    if (!entry) entry = "";
2645    if (wd->text) eina_stringshare_del(wd->text);
2646    wd->text = NULL;
2647    if (wd->password_text) eina_stringshare_del(wd->password_text);
2648    wd->password_text = NULL;
2649    wd->changed = EINA_TRUE;
2650
2651    /* Clear currently pending job if there is one */
2652    if (wd->append_text_idler)
2653      {
2654         ecore_idler_del(wd->append_text_idler);
2655         free(wd->append_text_left);
2656         wd->append_text_left = NULL;
2657         wd->append_text_idler = NULL;
2658      }
2659
2660    len = strlen(entry);
2661    /* Split to ~_CHUNK_SIZE chunks */
2662    if (len > _CHUNK_SIZE)
2663      {
2664         wd->append_text_left = (char *) malloc(len + 1);
2665      }
2666
2667    /* If we decided to use the idler */
2668    if (wd->append_text_left)
2669      {
2670         /* Need to clear the entry first */
2671         edje_object_part_text_set(wd->ent, "elm.text", "");
2672         memcpy(wd->append_text_left, entry, len + 1);
2673         wd->append_text_position = 0;
2674         wd->append_text_len = len;
2675         wd->append_text_idler = ecore_idler_add(_text_append_idler, obj);
2676      }
2677    else
2678      {
2679         edje_object_part_text_set(wd->ent, "elm.text", entry);
2680      }
2681 }
2682
2683 static const char *
2684 _elm_entry_text_get(const Evas_Object *obj, const char *item)
2685 {
2686    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2687    Widget_Data *wd = elm_widget_data_get(obj);
2688    if (item && strcmp(item, "default")) return NULL;
2689    const char *text;
2690    if (!wd) return NULL;
2691    if (wd->password)
2692      {
2693         if(wd->password_text) return wd->password_text;
2694      }
2695    else if (wd->text) 
2696      {
2697         return wd->text;
2698      }
2699    text = edje_object_part_text_get(wd->ent, "elm.text");
2700    if (!text)
2701      {
2702         ERR("text=NULL for edje %p, part 'elm.text'", wd->ent);
2703         return NULL;
2704      }
2705    eina_stringshare_replace(&wd->text, text);
2706    if (wd->password)
2707      {
2708         const char *pw_text;
2709         pw_text = elm_entry_markup_to_utf8(wd->text);
2710         if (pw_text)
2711           {
2712              eina_stringshare_replace(&wd->password_text, pw_text);
2713              free(pw_text);
2714              return wd->password_text;
2715           }
2716      }
2717    return wd->text;
2718 }
2719
2720 /**
2721  * This adds an entry to @p parent object.
2722  *
2723  * @param parent The parent object
2724  * @return The new object or NULL if it cannot be created
2725  *
2726  * @ingroup Entry
2727  */
2728 EAPI Evas_Object *
2729 elm_entry_add(Evas_Object *parent)
2730 {
2731    Evas_Object *obj, *top;
2732    Evas *e;
2733    Widget_Data *wd;
2734
2735    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
2736
2737    ELM_SET_WIDTYPE(widtype, "entry");
2738    elm_widget_type_set(obj, "entry");
2739    elm_widget_sub_object_add(parent, obj);
2740    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
2741    elm_widget_data_set(obj, wd);
2742    elm_widget_del_hook_set(obj, _del_hook);
2743    elm_widget_del_pre_hook_set(obj, _del_pre_hook);
2744    elm_widget_theme_hook_set(obj, _theme_hook);
2745    elm_widget_disable_hook_set(obj, _disable_hook);
2746    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
2747    elm_widget_focus_region_hook_set(obj, _focus_region_hook);
2748    elm_widget_on_focus_region_hook_set(obj, _on_focus_region_hook);
2749    elm_widget_signal_callback_add_hook_set(obj, _signal_callback_add_hook);
2750    elm_widget_signal_callback_del_hook_set(obj, _signal_callback_del_hook);
2751    elm_object_cursor_set(obj, ELM_CURSOR_XTERM);
2752    elm_widget_can_focus_set(obj, EINA_TRUE);
2753    elm_widget_highlight_ignore_set(obj, EINA_TRUE);
2754    elm_widget_text_set_hook_set(obj, _elm_entry_text_set);
2755    elm_widget_text_get_hook_set(obj, _elm_entry_text_get);
2756
2757    wd->scroller = elm_smart_scroller_add(e);
2758    elm_widget_sub_object_add(obj, wd->scroller);
2759    elm_smart_scroller_widget_set(wd->scroller, obj);
2760    elm_smart_scroller_object_theme_set(obj, wd->scroller, "scroller", "entry",
2761                                        elm_widget_style_get(obj));
2762    evas_object_size_hint_weight_set(wd->scroller, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
2763    evas_object_size_hint_align_set(wd->scroller, EVAS_HINT_FILL, EVAS_HINT_FILL);
2764    elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
2765    elm_smart_scroller_propagate_events_set(wd->scroller, EINA_TRUE);
2766
2767    wd->linewrap     = ELM_WRAP_WORD;
2768    wd->editable     = EINA_TRUE;
2769    wd->disabled     = EINA_FALSE;
2770    wd->context_menu = EINA_TRUE;
2771    wd->autosave     = EINA_TRUE;
2772    wd->textonly     = EINA_FALSE;
2773    wd->autoperiod   = EINA_TRUE;
2774
2775    wd->ent = edje_object_add(e);
2776    elm_widget_sub_object_add(obj, wd->ent);
2777    edje_object_item_provider_set(wd->ent, _get_item, obj);
2778    edje_object_text_insert_filter_callback_add(wd->ent,"elm.text", _text_filter, obj);
2779    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOVE, _move, obj);
2780    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_DOWN,
2781                                   _mouse_down, obj);
2782    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_UP,
2783                                   _mouse_up, obj);
2784    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_MOVE,
2785                                   _mouse_move, obj);
2786    evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, obj);
2787
2788    _elm_theme_object_set(obj, wd->ent, "entry", "base", "default");
2789    edje_object_signal_callback_add(wd->ent, "entry,changed", "elm.text",
2790                                    _signal_entry_changed, obj);
2791    edje_object_signal_callback_add(wd->ent, "preedit,changed", "elm.text",
2792                                    _signal_preedit_changed, obj);
2793    edje_object_signal_callback_add(wd->ent, "handler,move,start", "elm.text",
2794                                    _signal_handler_move_start, obj);
2795    edje_object_signal_callback_add(wd->ent, "handler,move,end", "elm.text",
2796                                    _signal_handler_move_end, obj);
2797    edje_object_signal_callback_add(wd->ent, "handler,moving", "elm.text",
2798                                    _signal_handler_moving, obj);
2799    edje_object_signal_callback_add(wd->ent, "selection,start", "elm.text",
2800                                    _signal_selection_start, obj);
2801    edje_object_signal_callback_add(wd->ent, "selection,end", "elm.text",
2802                                    _signal_selection_end, obj);
2803    edje_object_signal_callback_add(wd->ent, "long,pressed", "elm.text",
2804                                    _signal_long_pressed, obj);
2805    edje_object_signal_callback_add(wd->ent, "magnifier,changed", "elm.text",
2806                                    _signal_magnifier_changed, obj);
2807    edje_object_signal_callback_add(wd->ent, "selection,changed", "elm.text",
2808                                    _signal_selection_changed, obj);
2809    edje_object_signal_callback_add(wd->ent, "selection,cleared", "elm.text",
2810                                    _signal_selection_cleared, obj);
2811    edje_object_signal_callback_add(wd->ent, "entry,paste,request", "elm.text",
2812                                    _signal_entry_paste_request, obj);
2813    edje_object_signal_callback_add(wd->ent, "entry,copy,notify", "elm.text",
2814                                    _signal_entry_copy_notify, obj);
2815    edje_object_signal_callback_add(wd->ent, "entry,cut,notify", "elm.text",
2816                                    _signal_entry_cut_notify, obj);
2817    edje_object_signal_callback_add(wd->ent, "cursor,changed", "elm.text",
2818                                    _signal_cursor_changed, obj);
2819    edje_object_signal_callback_add(wd->ent, "anchor,mouse,down,*", "elm.text",
2820                                    _signal_anchor_down, obj);
2821    edje_object_signal_callback_add(wd->ent, "anchor,mouse,up,*", "elm.text",
2822                                    _signal_anchor_up, obj);
2823    edje_object_signal_callback_add(wd->ent, "anchor,mouse,clicked,*", "elm.text",
2824                                    _signal_anchor_clicked, obj);
2825    edje_object_signal_callback_add(wd->ent, "anchor,mouse,move,*", "elm.text",
2826                                    _signal_anchor_move, obj);
2827    edje_object_signal_callback_add(wd->ent, "anchor,mouse,in,*", "elm.text",
2828                                    _signal_anchor_in, obj);
2829    edje_object_signal_callback_add(wd->ent, "anchor,mouse,out,*", "elm.text",
2830                                    _signal_anchor_out, obj);
2831    edje_object_signal_callback_add(wd->ent, "entry,key,enter", "elm.text",
2832                                    _signal_key_enter, obj);
2833    edje_object_signal_callback_add(wd->ent, "mouse,down,1", "elm.text",
2834                                    _signal_mouse_down, obj);
2835    edje_object_signal_callback_add(wd->ent, "mouse,clicked,1", "elm.text",
2836                                    _signal_mouse_clicked, obj);
2837    edje_object_signal_callback_add(wd->ent, "mouse,down,1,double", "elm.text",
2838                                    _signal_mouse_double, obj);
2839    edje_object_part_text_set(wd->ent, "elm.text", "");
2840    if (_elm_config->desktop_entry)
2841      edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_TRUE);
2842    elm_widget_resize_object_set(obj, wd->ent);
2843    _sizing_eval(obj);
2844
2845    wd->input_panel_enable = edje_object_part_text_input_panel_enabled_get(wd->ent, "elm.text");
2846
2847 #ifdef HAVE_ELEMENTARY_X
2848    top = elm_widget_top_get(obj);
2849    if ((top) && (elm_win_xwindow_get(top)))
2850      {
2851         wd->sel_notify_handler =
2852            ecore_event_handler_add(ECORE_X_EVENT_SELECTION_NOTIFY,
2853                                    _event_selection_notify, obj);
2854         wd->sel_clear_handler =
2855            ecore_event_handler_add(ECORE_X_EVENT_SELECTION_CLEAR,
2856                                    _event_selection_clear, obj);
2857      }
2858
2859    elm_drop_target_add(obj, ELM_SEL_FORMAT_MARKUP | ELM_SEL_FORMAT_IMAGE,
2860                        _drag_drop_cb, NULL);
2861 #endif
2862
2863    entries = eina_list_prepend(entries, obj);
2864
2865    // module - find module for entry
2866    wd->api = _module(obj);
2867    // if found - hook in
2868    if ((wd->api) && (wd->api->obj_hook)) wd->api->obj_hook(obj);
2869
2870    _mirrored_set(obj, elm_widget_mirrored_get(obj));
2871    // TODO: convert Elementary to subclassing of Evas_Smart_Class
2872    // TODO: and save some bytes, making descriptions per-class and not instance!
2873    evas_object_smart_callbacks_descriptions_set(obj, _signals);
2874    return obj;
2875 }
2876
2877 EAPI void elm_entry_extension_module_data_get(Evas_Object *obj,Elm_Entry_Extension_data *ext_mod)
2878 {
2879    ELM_CHECK_WIDTYPE(obj, widtype);
2880    Widget_Data *wd = elm_widget_data_get(obj);
2881    if (!wd) return;
2882    ext_mod->cancel = _cancel;
2883    ext_mod->copy = _copy;
2884    ext_mod->cut = _cut;
2885    ext_mod->paste = _paste;
2886    ext_mod->select = _select;
2887    ext_mod->selectall = _selectall;
2888    ext_mod->ent = wd->ent;
2889    ext_mod->items = wd->items;
2890    ext_mod->editable = wd->editable;
2891    ext_mod->have_selection = wd->have_selection;
2892    ext_mod->password = wd->password;
2893    ext_mod->selmode = wd->selmode;
2894    ext_mod->cnpinit = _cnpinit;
2895    ext_mod->context_menu = wd->context_menu;
2896    ext_mod->textonly = wd->textonly;
2897 }
2898
2899 /**
2900  * This sets the entry object not to line wrap.  All input will
2901  * be on a single line, and the entry box will extend with user input.
2902  *
2903  * @param obj The entry object
2904  * @param single_line If true, the text in the entry
2905  * will be on a single line.
2906  *
2907  * @ingroup Entry
2908  */
2909 EAPI void
2910 elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line)
2911 {
2912    ELM_CHECK_WIDTYPE(obj, widtype);
2913    Widget_Data *wd = elm_widget_data_get(obj);
2914    if (!wd) return;
2915    if (wd->single_line == single_line) return;
2916    wd->single_line = single_line;
2917    wd->linewrap = ELM_WRAP_NONE;
2918    elm_entry_cnp_textonly_set(obj, EINA_TRUE);
2919    _theme_hook(obj);
2920    if (wd->scroller)
2921      {
2922         if (wd->single_line)
2923           {
2924              elm_smart_scroller_policy_set(wd->scroller,
2925                                            ELM_SMART_SCROLLER_POLICY_OFF,
2926                                            ELM_SMART_SCROLLER_POLICY_OFF);
2927              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
2928           }
2929         else
2930           {
2931              const Elm_Scroller_Policy map[3] =
2932                {
2933                   ELM_SMART_SCROLLER_POLICY_AUTO,
2934                   ELM_SMART_SCROLLER_POLICY_ON,
2935                   ELM_SMART_SCROLLER_POLICY_OFF
2936                };
2937              elm_smart_scroller_policy_set(wd->scroller,
2938                                            map[wd->policy_h],
2939                                            map[wd->policy_v]);
2940              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
2941           }
2942         _sizing_eval(obj);
2943      }
2944 }
2945
2946 /**
2947  * This returns true if the entry has been set to single line mode.
2948  * See also elm_entry_single_line_set().
2949  *
2950  * @param obj The entry object
2951  * @return single_line If true, the text in the entry is set to display
2952  * on a single line.
2953  *
2954  * @ingroup Entry
2955  */
2956 EAPI Eina_Bool
2957 elm_entry_single_line_get(const Evas_Object *obj)
2958 {
2959    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2960    Widget_Data *wd = elm_widget_data_get(obj);
2961    if (!wd) return EINA_FALSE;
2962    return wd->single_line;
2963 }
2964
2965 /**
2966  * This sets the entry object to password mode.  All text entered
2967  * and/or displayed within the widget will be replaced with asterisks (*).
2968  *
2969  * @param obj The entry object
2970  * @param password If true, password mode is enabled.
2971  *
2972  * @ingroup Entry
2973  */
2974 EAPI void
2975 elm_entry_password_set(Evas_Object *obj, Eina_Bool password)
2976 {
2977    ELM_CHECK_WIDTYPE(obj, widtype);
2978    Widget_Data *wd = elm_widget_data_get(obj);
2979    if (!wd) return;
2980    if (wd->password == password) return;
2981    wd->password = password;
2982    wd->single_line = EINA_TRUE;
2983    wd->linewrap = ELM_WRAP_NONE;
2984    _theme_hook(obj);
2985 }
2986
2987 /**
2988  * This returns whether password mode is enabled.
2989  * See also elm_entry_password_set().
2990  *
2991  * @param obj The entry object
2992  * @return If true, the entry is set to display all characters
2993  * as asterisks (*).
2994  *
2995  * @ingroup Entry
2996  */
2997 EAPI Eina_Bool
2998 elm_entry_password_get(const Evas_Object *obj)
2999 {
3000    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3001    Widget_Data *wd = elm_widget_data_get(obj);
3002    if (!wd) return EINA_FALSE;
3003    return wd->password;
3004 }
3005
3006 /**
3007  * This sets the text displayed within the entry to @p entry.
3008  *
3009  * @param obj The entry object
3010  * @param entry The text to be displayed
3011  *
3012  * @ingroup Entry
3013  */
3014 EAPI void
3015 elm_entry_entry_set(Evas_Object *obj, const char *entry)
3016 {
3017    _elm_entry_text_set(obj, NULL, entry);
3018 }
3019
3020 /**
3021  * This appends @p entry to the text of the entry.
3022  *
3023  * @param obj The entry object
3024  * @param entry The text to be displayed
3025  *
3026  * @ingroup Entry
3027  */
3028 EAPI void
3029 elm_entry_entry_append(Evas_Object *obj, const char *entry)
3030 {
3031    int len = 0;
3032    ELM_CHECK_WIDTYPE(obj, widtype);
3033    Widget_Data *wd = elm_widget_data_get(obj);
3034    if (!wd) return;
3035    if (!entry) entry = "";
3036    wd->changed = EINA_TRUE;
3037
3038    len = strlen(entry);
3039    if (wd->append_text_left)
3040      {
3041         char *tmpbuf;
3042         tmpbuf = realloc(wd->append_text_left, wd->append_text_len + len + 1);
3043         if (!tmpbuf)
3044           {
3045              /* Do something */
3046              return;
3047           }
3048         wd->append_text_left = tmpbuf;
3049         memcpy(wd->append_text_left + wd->append_text_len, entry, len + 1);
3050         wd->append_text_len += len;
3051      }
3052    else
3053      {
3054         /* FIXME: Add chunked appending here (like in entry_set) */
3055         edje_object_part_text_append(wd->ent, "elm.text", entry);
3056      }
3057 }
3058
3059 /**
3060  * This returns the text currently shown in object @p entry.
3061  * See also elm_entry_entry_set().
3062  *
3063  * @param obj The entry object
3064  * @return The currently displayed text or NULL on failure
3065  *
3066  * @ingroup Entry
3067  */
3068 EAPI const char *
3069 elm_entry_entry_get(const Evas_Object *obj)
3070 {
3071    return _elm_entry_text_get(obj, NULL);
3072 }
3073
3074 /**
3075  * This returns EINA_TRUE if the entry is empty/there was an error
3076  * and EINA_FALSE if it is not empty.
3077  *
3078  * @param obj The entry object
3079  * @return If the entry is empty or not.
3080  *
3081  * @ingroup Entry
3082  */
3083 EAPI Eina_Bool
3084 elm_entry_is_empty(const Evas_Object *obj)
3085 {
3086    /* FIXME: until there's support for that in textblock, we just check
3087     * to see if the there is text or not. */
3088    ELM_CHECK_WIDTYPE(obj, widtype) EINA_TRUE;
3089    Widget_Data *wd = elm_widget_data_get(obj);
3090    const Evas_Object *tb;
3091    //Evas_Textblock_Cursor *cur;
3092    Eina_Bool ret;
3093    if (!wd) return EINA_TRUE;
3094
3095 #if 0
3096    /* It's a hack until we get the support suggested above.
3097     * We just create a cursor, point it to the begining, and then
3098     * try to advance it, if it can advance, the tb is not empty,
3099     * otherwise it is. */
3100    tb = edje_object_part_object_get(wd->ent, "elm.text");
3101    cur = evas_object_textblock_cursor_new((Evas_Object *) tb); /* This is
3102                                                                   actually, ok for the time being, thsese hackish stuff will be removed
3103                                                                   once evas 1.0 is out*/
3104    evas_textblock_cursor_pos_set(cur, 0);
3105    ret = evas_textblock_cursor_char_next(cur);
3106    evas_textblock_cursor_free(cur);
3107
3108    return !ret;
3109 #endif
3110
3111    char *str = elm_entry_markup_to_utf8(elm_entry_entry_get(obj));
3112    if (!str) return EINA_TRUE;
3113
3114    ret = (strlen(str) == 0);
3115
3116    return ret;
3117 }
3118
3119 /**
3120  * This returns all selected text within the entry.
3121  *
3122  * @param obj The entry object
3123  * @return The selected text within the entry or NULL on failure
3124  *
3125  * @ingroup Entry
3126  */
3127 EAPI const char *
3128 elm_entry_selection_get(const Evas_Object *obj)
3129 {
3130    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3131    Widget_Data *wd = elm_widget_data_get(obj);
3132    if (!wd) return NULL;
3133    return edje_object_part_text_selection_get(wd->ent, "elm.text");
3134 }
3135
3136 /**
3137  * This inserts text in @p entry where the current cursor position.
3138  *
3139  * This inserts text at the cursor position is as if it was typed
3140  * by the user (note this also allows markup which a user
3141  * can't just "type" as it would be converted to escaped text, so this
3142  * call can be used to insert things like emoticon items or bold push/pop
3143  * tags, other font and color change tags etc.)
3144  *
3145  * @param obj The entry object
3146  * @param entry The text to insert
3147  *
3148  * @ingroup Entry
3149  */
3150 EAPI void
3151 elm_entry_entry_insert(Evas_Object *obj, const char *entry)
3152 {
3153    ELM_CHECK_WIDTYPE(obj, widtype);
3154    Widget_Data *wd = elm_widget_data_get(obj);
3155    if (!wd) return;
3156    edje_object_part_text_insert(wd->ent, "elm.text", entry);
3157    // start for cbhm
3158 #ifdef HAVE_ELEMENTARY_X
3159    if (cnpwidgetdata == obj)
3160       ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
3161 #endif
3162    // end for cbhm
3163    wd->changed = EINA_TRUE;
3164    _sizing_eval(obj);
3165 }
3166
3167 /**
3168  * This enables word line wrapping in the entry object.  It is the opposite
3169  * of elm_entry_single_line_set().  Additionally, setting this disables
3170  * character line wrapping.
3171  *
3172  * @param obj The entry object
3173  * @param wrap If true, the entry will be wrapped once it reaches the end
3174  * of the object. Wrapping will occur at the end of the word before the end of the
3175  * object.
3176  *
3177  * @ingroup Entry
3178  */
3179 EAPI void
3180 elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap)
3181 {
3182    ELM_CHECK_WIDTYPE(obj, widtype);
3183    Widget_Data *wd = elm_widget_data_get(obj);
3184    if (!wd) return;
3185    if (wd->linewrap == wrap) return;
3186    wd->lastw = -1;
3187    wd->linewrap = wrap;
3188    _theme_hook(obj);
3189 }
3190
3191 /**
3192  * Get the wrapping behavior of the entry.
3193  * See also elm_entry_line_wrap_set().
3194  *
3195  * @param obj The entry object
3196  * @return Wrap type
3197  *
3198  * @ingroup Entry
3199  */
3200 EAPI Elm_Wrap_Type
3201 elm_entry_line_wrap_get(const Evas_Object *obj)
3202 {
3203    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3204    Widget_Data *wd = elm_widget_data_get(obj);
3205    if (!wd) return EINA_FALSE;
3206    return wd->linewrap;
3207 }
3208
3209 /**
3210  * This sets the editable attribute of the entry.
3211  *
3212  * @param obj The entry object
3213  * @param editable If true, the entry will be editable by the user.
3214  * If false, it will be set to the disabled state.
3215  *
3216  * @ingroup Entry
3217  */
3218 EAPI void
3219 elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable)
3220 {
3221    ELM_CHECK_WIDTYPE(obj, widtype);
3222    Widget_Data *wd = elm_widget_data_get(obj);
3223    if (!wd) return;
3224    if (wd->editable == editable) return;
3225    wd->editable = editable;
3226    _theme_hook(obj);
3227
3228 #ifdef HAVE_ELEMENTARY_X
3229    if (editable)
3230      elm_drop_target_add(obj, ELM_SEL_FORMAT_MARKUP, _drag_drop_cb, NULL);
3231    else
3232      elm_drop_target_del(obj);
3233 #endif
3234 }
3235
3236 /**
3237  * This gets the editable attribute of the entry.
3238  * See also elm_entry_editable_set().
3239  *
3240  * @param obj The entry object
3241  * @return If true, the entry is editable by the user.
3242  * If false, it is not editable by the user
3243  *
3244  * @ingroup Entry
3245  */
3246 EAPI Eina_Bool
3247 elm_entry_editable_get(const Evas_Object *obj)
3248 {
3249    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3250    Widget_Data *wd = elm_widget_data_get(obj);
3251    if (!wd) return EINA_FALSE;
3252    return wd->editable;
3253 }
3254
3255 /**
3256  * This drops any existing text selection within the entry.
3257  *
3258  * @param obj The entry object
3259  *
3260  * @ingroup Entry
3261  */
3262 EAPI void
3263 elm_entry_select_none(Evas_Object *obj)
3264 {
3265    ELM_CHECK_WIDTYPE(obj, widtype);
3266    Widget_Data *wd = elm_widget_data_get(obj);
3267    if (!wd) return;
3268    if (wd->selmode)
3269      {
3270         wd->selmode = EINA_FALSE;
3271         if (!_elm_config->desktop_entry)
3272           edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
3273         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
3274      }
3275    wd->have_selection = EINA_FALSE;
3276    edje_object_part_text_select_none(wd->ent, "elm.text");
3277 }
3278
3279 /**
3280  * This selects all text within the entry.
3281  *
3282  * @param obj The entry object
3283  *
3284  * @ingroup Entry
3285  */
3286 EAPI void
3287 elm_entry_select_all(Evas_Object *obj)
3288 {
3289    ELM_CHECK_WIDTYPE(obj, widtype);
3290    Widget_Data *wd = elm_widget_data_get(obj);
3291    if (!wd) return;
3292    if (wd->selmode)
3293      {
3294         wd->selmode = EINA_FALSE;
3295         if (!_elm_config->desktop_entry)
3296           edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
3297         edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
3298      }
3299    wd->have_selection = EINA_TRUE;
3300    edje_object_part_text_select_all(wd->ent, "elm.text");
3301 }
3302
3303 /**
3304  * This function returns the geometry of the cursor.
3305  *
3306  * It's useful if you want to draw something on the cursor (or where it is),
3307  * or for example in the case of scrolled entry where you want to show the
3308  * cursor.
3309  *
3310  * @param obj The entry object
3311  * @param x returned geometry
3312  * @param y returned geometry
3313  * @param w returned geometry
3314  * @param h returned geometry
3315  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3316  *
3317  * @ingroup Entry
3318  */
3319 EAPI Eina_Bool
3320 elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h)
3321 {
3322    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3323    Widget_Data *wd = elm_widget_data_get(obj);
3324    if (!wd) return EINA_FALSE;
3325    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text", x, y, w, h);
3326    return EINA_TRUE;
3327 }
3328
3329 /**
3330  * This moves the cursor one place to the right within the entry.
3331  *
3332  * @param obj The entry object
3333  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3334  *
3335  * @ingroup Entry
3336  */
3337 EAPI Eina_Bool
3338 elm_entry_cursor_next(Evas_Object *obj)
3339 {
3340    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3341    Widget_Data *wd = elm_widget_data_get(obj);
3342    if (!wd) return EINA_FALSE;
3343    return edje_object_part_text_cursor_next(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3344 }
3345
3346 /**
3347  * This moves the cursor one place to the left within the entry.
3348  *
3349  * @param obj The entry object
3350  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3351  *
3352  * @ingroup Entry
3353  */
3354 EAPI Eina_Bool
3355 elm_entry_cursor_prev(Evas_Object *obj)
3356 {
3357    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3358    Widget_Data *wd = elm_widget_data_get(obj);
3359    if (!wd) return EINA_FALSE;
3360    return edje_object_part_text_cursor_prev(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3361 }
3362
3363 /**
3364  * This moves the cursor one line up within the entry.
3365  *
3366  * @param obj The entry object
3367  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3368  *
3369  * @ingroup Entry
3370  */
3371 EAPI Eina_Bool
3372 elm_entry_cursor_up(Evas_Object *obj)
3373 {
3374    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3375    Widget_Data *wd = elm_widget_data_get(obj);
3376    if (!wd) return EINA_FALSE;
3377    return edje_object_part_text_cursor_up(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3378 }
3379
3380 /**
3381  * This moves the cursor one line down within the entry.
3382  *
3383  * @param obj The entry object
3384  * @return EINA_TRUE upon success, EINA_FALSE upon failure
3385  *
3386  * @ingroup Entry
3387  */
3388 EAPI Eina_Bool
3389 elm_entry_cursor_down(Evas_Object *obj)
3390 {
3391    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3392    Widget_Data *wd = elm_widget_data_get(obj);
3393    if (!wd) return EINA_FALSE;
3394    return edje_object_part_text_cursor_down(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3395 }
3396
3397 /**
3398  * This moves the cursor to the beginning of the entry.
3399  *
3400  * @param obj The entry object
3401  *
3402  * @ingroup Entry
3403  */
3404 EAPI void
3405 elm_entry_cursor_begin_set(Evas_Object *obj)
3406 {
3407    ELM_CHECK_WIDTYPE(obj, widtype);
3408    Widget_Data *wd = elm_widget_data_get(obj);
3409    if (!wd) return;
3410    edje_object_part_text_cursor_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3411 }
3412
3413 /**
3414  * This moves the cursor to the end of the entry.
3415  *
3416  * @param obj The entry object
3417  *
3418  * @ingroup Entry
3419  */
3420 EAPI void
3421 elm_entry_cursor_end_set(Evas_Object *obj)
3422 {
3423    ELM_CHECK_WIDTYPE(obj, widtype);
3424    Widget_Data *wd = elm_widget_data_get(obj);
3425    if (!wd) return;
3426    int x, y, w, h;
3427    edje_object_part_text_cursor_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3428    if (wd->scroll)
3429      {
3430         elm_widget_show_region_get(wd->ent, &x, &y, &w, &h);
3431         elm_smart_scroller_child_region_show(wd->scroller, x, y, w, h);
3432      }
3433 }
3434
3435 /**
3436  * This moves the cursor to the beginning of the current line.
3437  *
3438  * @param obj The entry object
3439  *
3440  * @ingroup Entry
3441  */
3442 EAPI void
3443 elm_entry_cursor_line_begin_set(Evas_Object *obj)
3444 {
3445    ELM_CHECK_WIDTYPE(obj, widtype);
3446    Widget_Data *wd = elm_widget_data_get(obj);
3447    if (!wd) return;
3448    edje_object_part_text_cursor_line_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3449 }
3450
3451 /**
3452  * This moves the cursor to the end of the current line.
3453  *
3454  * @param obj The entry object
3455  *
3456  * @ingroup Entry
3457  */
3458 EAPI void
3459 elm_entry_cursor_line_end_set(Evas_Object *obj)
3460 {
3461    ELM_CHECK_WIDTYPE(obj, widtype);
3462    Widget_Data *wd = elm_widget_data_get(obj);
3463    if (!wd) return;
3464    edje_object_part_text_cursor_line_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3465 }
3466
3467 /**
3468  * This begins a selection within the entry as though
3469  * the user were holding down the mouse button to make a selection.
3470  *
3471  * @param obj The entry object
3472  *
3473  * @ingroup Entry
3474  */
3475 EAPI void
3476 elm_entry_cursor_selection_begin(Evas_Object *obj)
3477 {
3478    ELM_CHECK_WIDTYPE(obj, widtype);
3479    Widget_Data *wd = elm_widget_data_get(obj);
3480    if (!wd) return;
3481    edje_object_part_text_select_begin(wd->ent, "elm.text");
3482 }
3483
3484 /**
3485  * This ends a selection within the entry as though
3486  * the user had just released the mouse button while making a selection.
3487  *
3488  * @param obj The entry object
3489  *
3490  * @ingroup Entry
3491  */
3492 EAPI void
3493 elm_entry_cursor_selection_end(Evas_Object *obj)
3494 {
3495    ELM_CHECK_WIDTYPE(obj, widtype);
3496    Widget_Data *wd = elm_widget_data_get(obj);
3497    if (!wd) return;
3498    edje_object_part_text_select_extend(wd->ent, "elm.text");
3499 }
3500
3501 /**
3502  * TODO: fill this in
3503  *
3504  * @param obj The entry object
3505  * @return TODO: fill this in
3506  *
3507  * @ingroup Entry
3508  */
3509 EAPI Eina_Bool
3510 elm_entry_cursor_is_format_get(const Evas_Object *obj)
3511 {
3512    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3513    Widget_Data *wd = elm_widget_data_get(obj);
3514    if (!wd) return EINA_FALSE;
3515    return edje_object_part_text_cursor_is_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3516 }
3517
3518 /**
3519  * This returns whether the cursor is visible.
3520  *
3521  * @param obj The entry object
3522  * @return If true, the cursor is visible.
3523  *
3524  * @ingroup Entry
3525  */
3526 EAPI Eina_Bool
3527 elm_entry_cursor_is_visible_format_get(const Evas_Object *obj)
3528 {
3529    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3530    Widget_Data *wd = elm_widget_data_get(obj);
3531    if (!wd) return EINA_FALSE;
3532    return edje_object_part_text_cursor_is_visible_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3533 }
3534
3535 /**
3536  * TODO: fill this in
3537  *
3538  * @param obj The entry object
3539  * @return TODO: fill this in
3540  *
3541  * @ingroup Entry
3542  */
3543 EAPI const char *
3544 elm_entry_cursor_content_get(const Evas_Object *obj)
3545 {
3546    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3547    Widget_Data *wd = elm_widget_data_get(obj);
3548    if (!wd) return NULL;
3549    return edje_object_part_text_cursor_content_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3550 }
3551
3552 /**
3553  * Sets the cursor position in the entry to the given value
3554  *
3555  * @param obj The entry object
3556  * @param pos The position of the cursor
3557  *
3558  * @ingroup Entry
3559  */
3560 EAPI void
3561 elm_entry_cursor_pos_set(Evas_Object *obj, int pos)
3562 {
3563    ELM_CHECK_WIDTYPE(obj, widtype);
3564    Widget_Data *wd = elm_widget_data_get(obj);
3565    if (!wd) return;
3566    edje_object_part_text_cursor_pos_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN, pos);
3567    edje_object_message_signal_process(wd->ent);
3568 }
3569
3570 /**
3571  * Retrieves the current position of the cursor in the entry
3572  *
3573  * @param obj The entry object
3574  * @return The cursor position
3575  *
3576  * @ingroup Entry
3577  */
3578 EAPI int
3579 elm_entry_cursor_pos_get(const Evas_Object *obj)
3580 {
3581    ELM_CHECK_WIDTYPE(obj, widtype) 0;
3582    Widget_Data *wd = elm_widget_data_get(obj);
3583    if (!wd) return 0;
3584    return edje_object_part_text_cursor_pos_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
3585 }
3586
3587 /**
3588  * This executes a "cut" action on the selected text in the entry.
3589  *
3590  * @param obj The entry object
3591  *
3592  * @ingroup Entry
3593  */
3594 EAPI void
3595 elm_entry_selection_cut(Evas_Object *obj)
3596 {
3597    ELM_CHECK_WIDTYPE(obj, widtype);
3598    Widget_Data *wd = elm_widget_data_get(obj);
3599    if (!wd) return;
3600    _cut(obj, NULL, NULL);
3601 }
3602
3603 /**
3604  * This executes a "copy" action on the selected text in the entry.
3605  *
3606  * @param obj The entry object
3607  *
3608  * @ingroup Entry
3609  */
3610 EAPI void
3611 elm_entry_selection_copy(Evas_Object *obj)
3612 {
3613    ELM_CHECK_WIDTYPE(obj, widtype);
3614    Widget_Data *wd = elm_widget_data_get(obj);
3615    if (!wd) return;
3616    _copy(obj, NULL, NULL);
3617 }
3618
3619 /**
3620  * This executes a "paste" action in the entry.
3621  *
3622  * @param obj The entry object
3623  *
3624  * @ingroup Entry
3625  */
3626 EAPI void
3627 elm_entry_selection_paste(Evas_Object *obj)
3628 {
3629    ELM_CHECK_WIDTYPE(obj, widtype);
3630    Widget_Data *wd = elm_widget_data_get(obj);
3631    if (!wd) return;
3632    _paste(obj, NULL, NULL);
3633 }
3634
3635 /**
3636  * This clears and frees the items in a entry's contextual (right click) menu.
3637  *
3638  * @param obj The entry object
3639  *
3640  * @ingroup Entry
3641  */
3642 EAPI void
3643 elm_entry_context_menu_clear(Evas_Object *obj)
3644 {
3645    ELM_CHECK_WIDTYPE(obj, widtype);
3646    Widget_Data *wd = elm_widget_data_get(obj);
3647    Elm_Entry_Context_Menu_Item *it;
3648    if (!wd) return;
3649    EINA_LIST_FREE(wd->items, it)
3650      {
3651         eina_stringshare_del(it->label);
3652         eina_stringshare_del(it->icon_file);
3653         eina_stringshare_del(it->icon_group);
3654         free(it);
3655      }
3656 }
3657
3658 /**
3659  * This adds an item to the entry's contextual menu.
3660  *
3661  * @param obj The entry object
3662  * @param label The item's text label
3663  * @param icon_file The item's icon file
3664  * @param icon_type The item's icon type
3665  * @param func The callback to execute when the item is clicked
3666  * @param data The data to associate with the item for related functions
3667  *
3668  * @ingroup Entry
3669  */
3670 EAPI void
3671 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)
3672 {
3673    ELM_CHECK_WIDTYPE(obj, widtype);
3674    Widget_Data *wd = elm_widget_data_get(obj);
3675    Elm_Entry_Context_Menu_Item *it;
3676    if (!wd) return;
3677    it = calloc(1, sizeof(Elm_Entry_Context_Menu_Item));
3678    if (!it) return;
3679    wd->items = eina_list_append(wd->items, it);
3680    it->obj = obj;
3681    it->label = eina_stringshare_add(label);
3682    it->icon_file = eina_stringshare_add(icon_file);
3683    it->icon_type = icon_type;
3684    it->func = func;
3685    it->data = (void *)data;
3686 }
3687
3688 /**
3689  * This disables the entry's contextual (right click) menu.
3690  *
3691  * @param obj The entry object
3692  * @param disabled If true, the menu is disabled
3693  *
3694  * @ingroup Entry
3695  */
3696 EAPI void
3697 elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled)
3698 {
3699    ELM_CHECK_WIDTYPE(obj, widtype);
3700    Widget_Data *wd = elm_widget_data_get(obj);
3701    if (!wd) return;
3702    if (wd->context_menu == !disabled) return;
3703    wd->context_menu = !disabled;
3704 }
3705
3706 /**
3707  * This returns whether the entry's contextual (right click) menu is disabled.
3708  *
3709  * @param obj The entry object
3710  * @return If true, the menu is disabled
3711  *
3712  * @ingroup Entry
3713  */
3714 EAPI Eina_Bool
3715 elm_entry_context_menu_disabled_get(const Evas_Object *obj)
3716 {
3717    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3718    Widget_Data *wd = elm_widget_data_get(obj);
3719    if (!wd) return EINA_FALSE;
3720    return !wd->context_menu;
3721 }
3722
3723 /**
3724  * This appends a custom item provider to the list for that entry
3725  *
3726  * This appends the given callback. The list is walked from beginning to end
3727  * with each function called given the item href string in the text. If the
3728  * function returns an object handle other than NULL (it should create an
3729  * and object to do this), then this object is used to replace that item. If
3730  * not the next provider is called until one provides an item object, or the
3731  * default provider in entry does.
3732  *
3733  * @param obj The entry object
3734  * @param func The function called to provide the item object
3735  * @param data The data passed to @p func
3736  *
3737  * @ingroup Entry
3738  */
3739 EAPI void
3740 elm_entry_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
3741 {
3742    ELM_CHECK_WIDTYPE(obj, widtype);
3743    Widget_Data *wd = elm_widget_data_get(obj);
3744    if (!wd) return;
3745    EINA_SAFETY_ON_NULL_RETURN(func);
3746    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
3747    if (!ip) return;
3748    ip->func = func;
3749    ip->data = data;
3750    wd->item_providers = eina_list_append(wd->item_providers, ip);
3751 }
3752
3753 /**
3754  * This prepends a custom item provider to the list for that entry
3755  *
3756  * This prepends the given callback. See elm_entry_item_provider_append() for
3757  * more information
3758  *
3759  * @param obj The entry object
3760  * @param func The function called to provide the item object
3761  * @param data The data passed to @p func
3762  *
3763  * @ingroup Entry
3764  */
3765 EAPI void
3766 elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
3767 {
3768    ELM_CHECK_WIDTYPE(obj, widtype);
3769    Widget_Data *wd = elm_widget_data_get(obj);
3770    if (!wd) return;
3771    EINA_SAFETY_ON_NULL_RETURN(func);
3772    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
3773    if (!ip) return;
3774    ip->func = func;
3775    ip->data = data;
3776    wd->item_providers = eina_list_prepend(wd->item_providers, ip);
3777 }
3778
3779 /**
3780  * This removes a custom item provider to the list for that entry
3781  *
3782  * This removes the given callback. See elm_entry_item_provider_append() for
3783  * more information
3784  *
3785  * @param obj The entry object
3786  * @param func The function called to provide the item object
3787  * @param data The data passed to @p func
3788  *
3789  * @ingroup Entry
3790  */
3791 EAPI void
3792 elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
3793 {
3794    ELM_CHECK_WIDTYPE(obj, widtype);
3795    Widget_Data *wd = elm_widget_data_get(obj);
3796    Eina_List *l;
3797    Elm_Entry_Item_Provider *ip;
3798    if (!wd) return;
3799    EINA_SAFETY_ON_NULL_RETURN(func);
3800    EINA_LIST_FOREACH(wd->item_providers, l, ip)
3801      {
3802         if ((ip->func == func) && ((!data) || (ip->data == data)))
3803           {
3804              wd->item_providers = eina_list_remove_list(wd->item_providers, l);
3805              free(ip);
3806              return;
3807           }
3808      }
3809 }
3810
3811 /**
3812  * Append a filter function for text inserted in the entry
3813  *
3814  * Append the given callback to the list. This functions will be called
3815  * whenever any text is inserted into the entry, with the text to be inserted
3816  * as a parameter. The callback function is free to alter the text in any way
3817  * it wants, but it must remember to free the given pointer and update it.
3818  * If the new text is to be discarded, the function can free it and set it text
3819  * parameter to NULL. This will also prevent any following filters from being
3820  * called.
3821  *
3822  * @param obj The entry object
3823  * @param func The function to use as text filter
3824  * @param data User data to pass to @p func
3825  *
3826  * @ingroup Entry
3827  */
3828 EAPI void
3829 elm_entry_text_filter_append(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
3830 {
3831    Widget_Data *wd;
3832    Elm_Entry_Text_Filter *tf;
3833    ELM_CHECK_WIDTYPE(obj, widtype);
3834
3835    wd = elm_widget_data_get(obj);
3836
3837    EINA_SAFETY_ON_NULL_RETURN(func);
3838
3839    tf = _filter_new(func, data);
3840    if (!tf) return;
3841
3842    wd->text_filters = eina_list_append(wd->text_filters, tf);
3843 }
3844
3845 /**
3846  * Prepend a filter function for text insdrted in the entry
3847  *
3848  * Prepend the given callback to the list. See elm_entry_text_filter_append()
3849  * for more information
3850  *
3851  * @param obj The entry object
3852  * @param func The function to use as text filter
3853  * @param data User data to pass to @p func
3854  *
3855  * @ingroup Entry
3856  */
3857 EAPI void
3858 elm_entry_text_filter_prepend(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
3859 {
3860    Widget_Data *wd;
3861    Elm_Entry_Text_Filter *tf;
3862    ELM_CHECK_WIDTYPE(obj, widtype);
3863
3864    wd = elm_widget_data_get(obj);
3865
3866    EINA_SAFETY_ON_NULL_RETURN(func);
3867
3868    tf = _filter_new(func, data);
3869    if (!tf) return;
3870
3871    wd->text_filters = eina_list_prepend(wd->text_filters, tf);
3872 }
3873
3874 /**
3875  * Remove a filter from the list
3876  *
3877  * Removes the given callback from the filter list. See elm_entry_text_filter_append()
3878  * for more information.
3879  *
3880  * @param obj The entry object
3881  * @param func The filter function to remove
3882  * @param data The user data passed when adding the function
3883  *
3884  * @ingroup Entry
3885  */
3886 EAPI void
3887 elm_entry_text_filter_remove(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data)
3888 {
3889    Widget_Data *wd;
3890    Eina_List *l;
3891    Elm_Entry_Text_Filter *tf;
3892    ELM_CHECK_WIDTYPE(obj, widtype);
3893
3894    wd = elm_widget_data_get(obj);
3895
3896    EINA_SAFETY_ON_NULL_RETURN(func);
3897
3898    EINA_LIST_FOREACH(wd->text_filters, l, tf)
3899      {
3900         if ((tf->func == func) && ((!data) || (tf->data == data)))
3901           {
3902              wd->text_filters = eina_list_remove_list(wd->text_filters, l);
3903              _filter_free(tf);
3904              return;
3905           }
3906      }
3907 }
3908
3909 /**
3910  * This converts a markup (HTML-like) string into UTF-8.
3911  * Returning string is obtained with malloc.
3912  * After use the returned string, it should be freed.
3913  *
3914  * @param s The string (in markup) to be converted
3915  * @return The converted string (in UTF-8). It should be freed.
3916  *
3917  * @ingroup Entry
3918  */
3919 EAPI char *
3920 elm_entry_markup_to_utf8(const char *s)
3921 {
3922    char *ss = _elm_util_mkup_to_text(s);
3923    if (!ss) ss = strdup("");
3924    return ss;
3925 }
3926
3927 /**
3928  * This converts a UTF-8 string into markup (HTML-like).
3929  * Returning string is obtained with malloc.
3930  * After use the returned string, it should be freed.
3931  *
3932  * @param s The string (in UTF-8) to be converted
3933  * @return The converted string (in markup). It should be freed.
3934  *
3935  * @ingroup Entry
3936  */
3937 EAPI char *
3938 elm_entry_utf8_to_markup(const char *s)
3939 {
3940    char *ss = _elm_util_text_to_mkup(s);
3941    if (!ss) ss = strdup("");
3942    return ss;
3943 }
3944
3945 /**
3946  * Filter inserted text based on user defined character and byte limits
3947  *
3948  * Add this filter to an entry to limit the characters that it will accept
3949  * based the the contents of the provided Elm_Entry_Filter_Limit_Size.
3950  * The funtion works on the UTF-8 representation of the string, converting
3951  * it from the set markup, thus not accounting for any format in it.
3952  *
3953  * The user must create an Elm_Entry_Filter_Limit_Size structure and pass
3954  * it as data when setting the filter. In it it's possible to set limits
3955  * by character count or bytes (any of them is disabled if 0), and both can
3956  * be set at the same time. In that case, it first checks for characters,
3957  * then bytes.
3958  *
3959  * The function will cut the inserted text in order to allow only the first
3960  * number of characters that are still allowed. The cut is made in
3961  * characters, even when limiting by bytes, in order to always contain
3962  * valid ones and avoid half unicode characters making it in.
3963  *
3964  * @ingroup Entry
3965  */
3966 EAPI void
3967 elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text)
3968 {
3969    Elm_Entry_Filter_Limit_Size *lim = data;
3970    char *current;
3971    int len, newlen;
3972    const char *(*text_get)(const Evas_Object *);
3973    const char *widget_type;
3974
3975    EINA_SAFETY_ON_NULL_RETURN(data);
3976    EINA_SAFETY_ON_NULL_RETURN(entry);
3977    EINA_SAFETY_ON_NULL_RETURN(text);
3978
3979    /* hack. I don't want to copy the entire function to work with
3980     * scrolled_entry */
3981    widget_type = elm_widget_type_get(entry);
3982    if (!strcmp(widget_type, "entry"))
3983      text_get = elm_entry_entry_get;
3984    else /* huh? */
3985      return;
3986
3987    current = elm_entry_markup_to_utf8(text_get(entry));
3988
3989    if (lim->max_char_count > 0)
3990      {
3991         len = evas_string_char_len_get(current);
3992         if (len >= lim->max_char_count)
3993           {
3994              evas_object_smart_callback_call(entry, "maxlength,reached", NULL);
3995              free(*text);
3996              free(current);
3997              *text = NULL;
3998              return;
3999           }
4000         newlen = evas_string_char_len_get(elm_entry_markup_to_utf8(*text));
4001         if ((len + newlen) > lim->max_char_count)
4002           _add_chars_till_limit(entry, text, (lim->max_char_count - len), LENGTH_UNIT_CHAR);
4003      }
4004    else if (lim->max_byte_count > 0)
4005      {
4006         len = strlen(current);
4007         if (len >= lim->max_byte_count)
4008           {
4009              evas_object_smart_callback_call(entry, "maxlength,reached", NULL);
4010              free(*text);
4011              free(current);
4012              *text = NULL;
4013              return;
4014           }
4015         newlen = strlen(elm_entry_markup_to_utf8(*text));
4016         if ((len + newlen) > lim->max_byte_count)
4017           _add_chars_till_limit(entry, text, (lim->max_byte_count - len), LENGTH_UNIT_BYTE);
4018      }
4019    free(current);
4020 }
4021
4022 /**
4023  * Filter inserted text based on accepted or rejected sets of characters
4024  *
4025  * Add this filter to an entry to restrict the set of accepted characters
4026  * based on the sets in the provided Elm_Entry_Filter_Accept_Set.
4027  * This structure contains both accepted and rejected sets, but they are
4028  * mutually exclusive. If accepted is set, it will be used, otherwise it
4029  * goes on to the rejected set.
4030  */
4031 EAPI void
4032 elm_entry_filter_accept_set(void *data, Evas_Object *entry __UNUSED__, char **text)
4033 {
4034    Elm_Entry_Filter_Accept_Set *as = data;
4035    const char *set;
4036    char *insert;
4037    Eina_Bool goes_in;
4038    int read_idx, last_read_idx = 0, read_char;
4039
4040    EINA_SAFETY_ON_NULL_RETURN(data);
4041    EINA_SAFETY_ON_NULL_RETURN(text);
4042
4043    if ((!as->accepted) && (!as->rejected))
4044      return;
4045
4046    if (as->accepted)
4047      {
4048         set = as->accepted;
4049         goes_in = EINA_TRUE;
4050      }
4051    else
4052      {
4053         set = as->rejected;
4054         goes_in = EINA_FALSE;
4055      }
4056
4057    insert = *text;
4058    read_idx = evas_string_char_next_get(*text, 0, &read_char);
4059    while (read_char)
4060      {
4061         int cmp_idx, cmp_char;
4062         Eina_Bool in_set = EINA_FALSE;
4063
4064         cmp_idx = evas_string_char_next_get(set, 0, &cmp_char);
4065         while (cmp_char)
4066           {
4067              if (read_char == cmp_char)
4068                {
4069                   in_set = EINA_TRUE;
4070                   break;
4071                }
4072              cmp_idx = evas_string_char_next_get(set, cmp_idx, &cmp_char);
4073           }
4074         if (in_set == goes_in)
4075           {
4076              int size = read_idx - last_read_idx;
4077              const char *src = (*text) + last_read_idx;
4078              if (src != insert)
4079                memcpy(insert, *text + last_read_idx, size);
4080              insert += size;
4081           }
4082         last_read_idx = read_idx;
4083         read_idx = evas_string_char_next_get(*text, read_idx, &read_char);
4084      }
4085    *insert = 0;
4086 }
4087
4088 /**
4089  * This sets the file (and implicitly loads it) for the text to display and
4090  * then edit. All changes are written back to the file after a short delay if
4091  * the entry object is set to autosave.
4092  *
4093  * @param obj The entry object
4094  * @param file The path to the file to load and save
4095  * @param format The file format
4096  *
4097  * @ingroup Entry
4098  */
4099 EAPI void
4100 elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format)
4101 {
4102    ELM_CHECK_WIDTYPE(obj, widtype);
4103    Widget_Data *wd = elm_widget_data_get(obj);
4104    if (!wd) return;
4105    if (wd->delay_write)
4106      {
4107         ecore_timer_del(wd->delay_write);
4108         wd->delay_write = NULL;
4109      }
4110    if (wd->autosave) _save(obj);
4111    eina_stringshare_replace(&wd->file, file);
4112    wd->format = format;
4113    _load(obj);
4114 }
4115
4116 /**
4117  * Gets the file to load and save and the file format
4118  *
4119  * @param obj The entry object
4120  * @param file The path to the file to load and save
4121  * @param format The file format
4122  *
4123  * @ingroup Entry
4124  */
4125 EAPI void
4126 elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format)
4127 {
4128    ELM_CHECK_WIDTYPE(obj, widtype);
4129    Widget_Data *wd = elm_widget_data_get(obj);
4130    if (!wd) return;
4131    if (file) *file = wd->file;
4132    if (format) *format = wd->format;
4133 }
4134
4135 /**
4136  * This function writes any changes made to the file set with
4137  * elm_entry_file_set()
4138  *
4139  * @param obj The entry object
4140  *
4141  * @ingroup Entry
4142  */
4143 EAPI void
4144 elm_entry_file_save(Evas_Object *obj)
4145 {
4146    ELM_CHECK_WIDTYPE(obj, widtype);
4147    Widget_Data *wd = elm_widget_data_get(obj);
4148    if (!wd) return;
4149    if (wd->delay_write)
4150      {
4151         ecore_timer_del(wd->delay_write);
4152         wd->delay_write = NULL;
4153      }
4154    _save(obj);
4155    wd->delay_write = ecore_timer_add(2.0, _delay_write, obj);
4156 }
4157
4158 /**
4159  * This sets the entry object to 'autosave' the loaded text file or not.
4160  *
4161  * @param obj The entry object
4162  * @param autosave Autosave the loaded file or not
4163  *
4164  * @ingroup Entry
4165  */
4166 EAPI void
4167 elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave)
4168 {
4169    ELM_CHECK_WIDTYPE(obj, widtype);
4170    Widget_Data *wd = elm_widget_data_get(obj);
4171    if (!wd) return;
4172    wd->autosave = !!autosave;
4173 }
4174
4175 /**
4176  * This gets the entry object's 'autosave' status.
4177  *
4178  * @param obj The entry object
4179  * @return Autosave the loaded file or not
4180  *
4181  * @ingroup Entry
4182  */
4183 EAPI Eina_Bool
4184 elm_entry_autosave_get(const Evas_Object *obj)
4185 {
4186    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4187    Widget_Data *wd = elm_widget_data_get(obj);
4188    if (!wd) return EINA_FALSE;
4189    return wd->autosave;
4190 }
4191
4192 /**
4193  * Control pasting of text and images for the widget.
4194  *
4195  * Normally the entry allows both text and images to be pasted.  By setting
4196  * textonly to be true, this prevents images from being pasted.
4197  *
4198  * Note this only changes the behaviour of text.
4199  *
4200  * @param obj The entry object
4201  * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is text+image+other.
4202  *
4203  * @ingroup Entry
4204  */
4205 EAPI void
4206 elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly)
4207 {
4208    Elm_Sel_Format format = ELM_SEL_FORMAT_MARKUP;
4209    ELM_CHECK_WIDTYPE(obj, widtype);
4210    Widget_Data *wd = elm_widget_data_get(obj);
4211    if (!wd) return;
4212    textonly = !!textonly;
4213    if (wd->textonly == textonly) return;
4214    wd->textonly = !!textonly;
4215    if (!textonly) format |= ELM_SEL_FORMAT_IMAGE;
4216 #ifdef HAVE_ELEMENTARY_X
4217    elm_drop_target_add(obj, format, _drag_drop_cb, NULL);
4218 #endif
4219 }
4220
4221 /**
4222  * Getting elm_entry text paste/drop mode.
4223  *
4224  * In textonly mode, only text may be pasted or dropped into the widget.
4225  *
4226  * @param obj The entry object
4227  * @return If the widget only accepts text from pastes.
4228  *
4229  * @ingroup Entry
4230  */
4231 EAPI Eina_Bool
4232 elm_entry_cnp_textonly_get(const Evas_Object *obj)
4233 {
4234    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4235    Widget_Data *wd = elm_widget_data_get(obj);
4236    if (!wd) return EINA_FALSE;
4237    return wd->textonly;
4238 }
4239
4240 /**
4241  * Enable or disable scrolling in entry
4242  *
4243  * Normally the entry is not scrollable unless you enable it with this call.
4244  *
4245  * @param obj The entry object
4246  * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
4247  *
4248  * @ingroup Entry
4249  */
4250 EAPI void
4251 elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll)
4252 {
4253    ELM_CHECK_WIDTYPE(obj, widtype);
4254    Widget_Data *wd = elm_widget_data_get(obj);
4255    if (!wd) return;
4256    scroll = !!scroll;
4257    if (wd->scroll == scroll) return;
4258    wd->scroll = scroll;
4259    if (wd->scroll)
4260      {
4261         elm_widget_sub_object_del(obj, wd->scroller);
4262         elm_widget_resize_object_set(obj, wd->scroller);
4263         elm_widget_sub_object_add(obj, wd->ent);
4264         elm_smart_scroller_child_set(wd->scroller, wd->ent);
4265         evas_object_show(wd->scroller);
4266         elm_widget_on_show_region_hook_set(obj, _show_region_hook, obj);
4267         if (wd->single_line)
4268           {
4269              elm_smart_scroller_policy_set(wd->scroller,
4270                                            ELM_SMART_SCROLLER_POLICY_OFF,
4271                                            ELM_SMART_SCROLLER_POLICY_OFF);
4272              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
4273           }
4274         else
4275           {
4276              const Elm_Scroller_Policy map[3] =
4277                {
4278                   ELM_SMART_SCROLLER_POLICY_AUTO,
4279                   ELM_SMART_SCROLLER_POLICY_ON,
4280                   ELM_SMART_SCROLLER_POLICY_OFF
4281                };
4282              elm_smart_scroller_policy_set(wd->scroller,
4283                                            map[wd->policy_h],
4284                                            map[wd->policy_v]);
4285              elm_smart_scroller_bounce_allow_set(wd->scroller, EINA_FALSE, EINA_FALSE);
4286           }
4287      }
4288    else
4289      {
4290         elm_smart_scroller_child_set(wd->scroller, NULL);
4291         elm_widget_sub_object_del(obj, wd->ent);
4292         elm_widget_resize_object_set(obj, wd->ent);
4293         evas_object_smart_member_add(wd->scroller, obj);
4294         elm_widget_sub_object_add(obj, wd->scroller);
4295         evas_object_hide(wd->scroller);
4296         elm_widget_on_show_region_hook_set(obj, NULL, NULL);
4297      }
4298    wd->lastw = -1;
4299    _theme_hook(obj);
4300 }
4301
4302 /**
4303  * Get the scrollable state of the entry
4304  *
4305  * Normally the entry is not scrollable. This gets the scrollable state
4306  * of the entry. See elm_entry_scrollable_set() for more information.
4307  *
4308  * @param obj The entry object
4309  * @return The scrollable state
4310  *
4311  * @ingroup Entry
4312  */
4313 EAPI Eina_Bool
4314 elm_entry_scrollable_get(const Evas_Object *obj)
4315 {
4316    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
4317    Widget_Data *wd = elm_widget_data_get(obj);
4318    if (!wd) return EINA_FALSE;
4319    return wd->scroll;
4320 }
4321
4322 /**
4323  * This sets a widget to be displayed to the left of a scrolled entry.
4324  *
4325  * @param obj The scrolled entry object
4326  * @param icon The widget to display on the left side of the scrolled
4327  * entry.
4328  *
4329  * @note A previously set widget will be destroyed.
4330  * @note If the object being set does not have minimum size hints set,
4331  * it won't get properly displayed.
4332  *
4333  * @ingroup Entry
4334  * @see elm_entry_end_set
4335  */
4336 EAPI void
4337 elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon)
4338 {
4339    ELM_CHECK_WIDTYPE(obj, widtype);
4340    Widget_Data *wd = elm_widget_data_get(obj);
4341    Evas_Object *edje;
4342    if (!wd) return;
4343    EINA_SAFETY_ON_NULL_RETURN(icon);
4344    if (wd->icon == icon) return;
4345    if (wd->icon) evas_object_del(wd->icon);
4346    wd->icon = icon;
4347    edje = elm_smart_scroller_edje_object_get(wd->scroller);
4348    if (!edje) return;
4349    edje_object_part_swallow(edje, "elm.swallow.icon", wd->icon);
4350    edje_object_signal_emit(edje, "elm,action,show,icon", "elm");
4351    _sizing_eval(obj);
4352 }
4353
4354 /**
4355  * Gets the leftmost widget of the scrolled entry. This object is
4356  * owned by the scrolled entry and should not be modified.
4357  *
4358  * @param obj The scrolled entry object
4359  * @return the left widget inside the scroller
4360  *
4361  * @ingroup Entry
4362  */
4363 EAPI Evas_Object *
4364 elm_entry_icon_get(const Evas_Object *obj)
4365 {
4366    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4367    Widget_Data *wd = elm_widget_data_get(obj);
4368    if (!wd) return NULL;
4369    return wd->icon;
4370 }
4371
4372 /**
4373  * Unset the leftmost widget of the scrolled entry, unparenting and
4374  * returning it.
4375  *
4376  * @param obj The scrolled entry object
4377  * @return the previously set icon sub-object of this entry, on
4378  * success.
4379  *
4380  * @see elm_entry_icon_set()
4381  *
4382  * @ingroup Entry
4383  */
4384 EAPI Evas_Object *
4385 elm_entry_icon_unset(Evas_Object *obj)
4386 {
4387    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4388    Widget_Data *wd = elm_widget_data_get(obj);
4389    Evas_Object *ret = NULL;
4390    if (!wd) return NULL;
4391    if (wd->icon)
4392      {
4393         Evas_Object *edje = elm_smart_scroller_edje_object_get(wd->scroller);
4394         if (!edje) return NULL;
4395         ret = wd->icon;
4396         edje_object_part_unswallow(edje, wd->icon);
4397         edje_object_signal_emit(edje, "elm,action,hide,icon", "elm");
4398         wd->icon = NULL;
4399         _sizing_eval(obj);
4400      }
4401    return ret;
4402 }
4403
4404 /**
4405  * Sets the visibility of the left-side widget of the scrolled entry,
4406  * set by @elm_entry_icon_set().
4407  *
4408  * @param obj The scrolled entry object
4409  * @param setting EINA_TRUE if the object should be displayed,
4410  * EINA_FALSE if not.
4411  *
4412  * @ingroup Entry
4413  */
4414 EAPI void
4415 elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting)
4416 {
4417    ELM_CHECK_WIDTYPE(obj, widtype);
4418    Widget_Data *wd = elm_widget_data_get(obj);
4419    if ((!wd) || (!wd->icon)) return;
4420    if (setting)
4421       evas_object_hide(wd->icon);
4422    else
4423       evas_object_show(wd->icon);
4424    _sizing_eval(obj);
4425 }
4426
4427 /**
4428  * This sets a widget to be displayed to the end of a scrolled entry.
4429  *
4430  * @param obj The scrolled entry object
4431  * @param end The widget to display on the right side of the scrolled
4432  * entry.
4433  *
4434  * @note A previously set widget will be destroyed.
4435  * @note If the object being set does not have minimum size hints set,
4436  * it won't get properly displayed.
4437  *
4438  * @ingroup Entry
4439  * @see elm_entry_icon_set
4440  */
4441 EAPI void
4442 elm_entry_end_set(Evas_Object *obj, Evas_Object *end)
4443 {
4444    ELM_CHECK_WIDTYPE(obj, widtype);
4445    Widget_Data *wd = elm_widget_data_get(obj);
4446    Evas_Object *edje;
4447    if (!wd) return;
4448    EINA_SAFETY_ON_NULL_RETURN(end);
4449    if (wd->end == end) return;
4450    if (wd->end) evas_object_del(wd->end);
4451    wd->end = end;
4452    edje = elm_smart_scroller_edje_object_get(wd->scroller);
4453    if (!edje) return;
4454    edje_object_part_swallow(edje, "elm.swallow.end", wd->end);
4455    edje_object_signal_emit(edje, "elm,action,show,end", "elm");
4456    _sizing_eval(obj);
4457 }
4458
4459 /**
4460  * Gets the endmost widget of the scrolled entry. This object is owned
4461  * by the scrolled entry and should not be modified.
4462  *
4463  * @param obj The scrolled entry object
4464  * @return the right widget inside the scroller
4465  *
4466  * @ingroup Entry
4467  */
4468 EAPI Evas_Object *
4469 elm_entry_end_get(const Evas_Object *obj)
4470 {
4471    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4472    Widget_Data *wd = elm_widget_data_get(obj);
4473    if (!wd) return NULL;
4474    return wd->end;
4475 }
4476
4477 /**
4478  * Unset the endmost widget of the scrolled entry, unparenting and
4479  * returning it.
4480  *
4481  * @param obj The scrolled entry object
4482  * @return the previously set icon sub-object of this entry, on
4483  * success.
4484  *
4485  * @see elm_entry_icon_set()
4486  *
4487  * @ingroup Entry
4488  */
4489 EAPI Evas_Object *
4490 elm_entry_end_unset(Evas_Object *obj)
4491 {
4492    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4493    Widget_Data *wd = elm_widget_data_get(obj);
4494    Evas_Object *ret = NULL;
4495    if (!wd) return NULL;
4496    if (wd->end)
4497      {
4498         Evas_Object *edje = elm_smart_scroller_edje_object_get(wd->scroller);
4499         if (!edje) return NULL;
4500         ret = wd->end;
4501         edje_object_part_unswallow(edje, wd->end);
4502         edje_object_signal_emit(edje, "elm,action,hide,end", "elm");
4503         wd->end = NULL;
4504         _sizing_eval(obj);
4505      }
4506    return ret;
4507 }
4508
4509 /**
4510  * Sets the visibility of the end widget of the scrolled entry, set by
4511  * @elm_entry_end_set().
4512  *
4513  * @param obj The scrolled entry object
4514  * @param setting EINA_TRUE if the object should be displayed,
4515  * EINA_FALSE if not.
4516  *
4517  * @ingroup Entry
4518  */
4519 EAPI void
4520 elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting)
4521 {
4522    ELM_CHECK_WIDTYPE(obj, widtype);
4523    Widget_Data *wd = elm_widget_data_get(obj);
4524    if ((!wd) || (!wd->end)) return;
4525    if (setting)
4526       evas_object_hide(wd->end);
4527    else
4528       evas_object_show(wd->end);
4529    _sizing_eval(obj);
4530 }
4531
4532 /**
4533  * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling them).
4534  *
4535  * @param obj The scrolled entry object
4536  * @param h The horizontal scrollbar policy to apply
4537  * @param v The vertical scrollbar policy to apply
4538  *
4539  * @ingroup Entry
4540  */
4541 EAPI void
4542 elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v)
4543 {
4544    ELM_CHECK_WIDTYPE(obj, widtype);
4545    Widget_Data *wd = elm_widget_data_get(obj);
4546    const Elm_Scroller_Policy map[3] =
4547      {
4548         ELM_SMART_SCROLLER_POLICY_AUTO,
4549         ELM_SMART_SCROLLER_POLICY_ON,
4550         ELM_SMART_SCROLLER_POLICY_OFF
4551      };
4552    if (!wd) return;
4553    wd->policy_h = h;
4554    wd->policy_v = v;
4555    elm_smart_scroller_policy_set(wd->scroller,
4556                                  map[wd->policy_h],
4557                                  map[wd->policy_v]);
4558 }
4559
4560 /**
4561  * This enables/disables bouncing within the entry.
4562  *
4563  * @param obj The scrolled entry object
4564  * @param h The horizontal bounce state
4565  * @param v The vertical bounce state
4566  *
4567  * @ingroup Entry
4568  */
4569 EAPI void
4570 elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce)
4571 {
4572    ELM_CHECK_WIDTYPE(obj, widtype);
4573    Widget_Data *wd = elm_widget_data_get(obj);
4574    if (!wd) return;
4575    elm_smart_scroller_bounce_allow_set(wd->scroller, h_bounce, v_bounce);
4576 }
4577
4578 /**
4579  * Get the bounce mode
4580  *
4581  * @param obj The Entry object
4582  * @param h_bounce Allow bounce horizontally
4583  * @param v_bounce Allow bounce vertically
4584  *
4585  * @ingroup Entry
4586  */
4587 EAPI void
4588 elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce)
4589 {
4590    ELM_CHECK_WIDTYPE(obj, widtype);
4591    Widget_Data *wd = elm_widget_data_get(obj);
4592    if (!wd) return;
4593    elm_smart_scroller_bounce_allow_get(wd->scroller, h_bounce, v_bounce);
4594 }
4595
4596 EINA_DEPRECATED EAPI void
4597 elm_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap)
4598 {
4599    if (wrap) elm_entry_line_wrap_set(obj, ELM_WRAP_CHAR);
4600 }
4601
4602 /**
4603  * Set background color of the entry
4604  *
4605  * @param obj The entry object
4606  * @param r Red property background color of The entry object
4607  * @param g Green property background color of The entry object
4608  * @param b Blue property background color of The entry object
4609  * @param a Alpha property background alpha of The entry object
4610  * @ingroup Entry
4611  */
4612 EAPI void
4613 elm_entry_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a)
4614 {
4615    ELM_CHECK_WIDTYPE(obj, widtype);
4616    Widget_Data *wd = elm_widget_data_get(obj);
4617    evas_object_color_set(wd->bg, r, g, b, a);
4618
4619    if (wd->bgcolor == EINA_FALSE)
4620      {
4621        wd->bgcolor = 1;
4622        edje_object_part_swallow(wd->ent, "entry.swallow.background", wd->bg);
4623      }
4624 }
4625
4626 /**
4627  * Set whether entry should support auto capitalization
4628  *
4629  * @param obj The entry object
4630  * @param on If true, entry suports auto capitalization.
4631  *
4632  * @ingroup Entry
4633  */
4634 EAPI void
4635 elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap)
4636 {
4637    ELM_CHECK_WIDTYPE(obj, widtype);
4638    Widget_Data *wd = elm_widget_data_get(obj);
4639    if (!wd) return;
4640
4641    if (wd->password)
4642      wd->autocapital = EINA_FALSE;
4643    else
4644      wd->autocapital = autocap;
4645
4646    if (wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_URL ||
4647        wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_EMAIL)
4648      wd->autocapital = EINA_FALSE;
4649
4650    edje_object_part_text_autocapitalization_set(wd->ent, "elm.text", wd->autocapital);
4651 }
4652
4653 /**
4654  * Set whether entry should support auto period
4655  *
4656  * @param obj The entry object
4657  * @param on If true, entry suports auto period.
4658  *
4659  * @ingroup Entry
4660  */
4661 EAPI void
4662 elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod)
4663 {
4664    ELM_CHECK_WIDTYPE(obj, widtype);
4665    Widget_Data *wd = elm_widget_data_get(obj);
4666    if (!wd) return;
4667
4668    if (wd->password)
4669      wd->autoperiod = EINA_FALSE;
4670    else
4671      wd->autoperiod = autoperiod;
4672
4673    if (wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_URL ||
4674        wd->input_panel_layout == ELM_INPUT_PANEL_LAYOUT_EMAIL)
4675      wd->autoperiod = EINA_FALSE;
4676
4677    edje_object_part_text_autoperiod_set(wd->ent, "elm.text", wd->autoperiod);
4678 }
4679
4680 /**
4681  * Set whether entry should enable the return key on soft keyboard automatically
4682  *
4683  * @param obj The entry object
4684  * @param on If true, entry enables the return key on soft keyboard automatically.
4685  *
4686  * @ingroup Entry
4687  */
4688 EAPI void
4689 elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on)
4690 {
4691    ELM_CHECK_WIDTYPE(obj, widtype);
4692    Widget_Data *wd = elm_widget_data_get(obj);
4693    if (!wd) return;
4694
4695    wd->autoreturnkey = on;
4696    _check_enable_returnkey(obj);
4697 }
4698
4699 /**
4700  * This sets the attribute to show the input panel automatically.
4701  *
4702  * @param obj The entry object
4703  * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
4704  *
4705  * @ingroup Entry
4706  */
4707 EAPI void
4708 elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled)
4709 {
4710    ELM_CHECK_WIDTYPE(obj, widtype);
4711    Widget_Data *wd = elm_widget_data_get(obj);
4712    if (!wd) return;
4713
4714    wd->input_panel_enable = enabled;
4715    edje_object_part_text_input_panel_enabled_set(wd->ent, "elm.text", enabled);
4716 }
4717
4718 /**
4719  * Set the input panel layout of the entry
4720  *
4721  * @param obj The entry object
4722  * @param layout the layout to set
4723  *
4724  * @ingroup Entry
4725  */
4726 EAPI void
4727 elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout)
4728 {
4729    ELM_CHECK_WIDTYPE(obj, widtype);
4730    Widget_Data *wd = elm_widget_data_get(obj);
4731    if (!wd) return;
4732
4733    Ecore_IMF_Context *ic = elm_entry_imf_context_get(obj);
4734    if (!ic) return;
4735
4736    wd->input_panel_layout = layout;
4737
4738    ecore_imf_context_input_panel_layout_set(ic, (Ecore_IMF_Input_Panel_Layout)layout);
4739 }
4740
4741 /**
4742  * Get the input method context in the entry widget
4743  *
4744  * @param obj The entry object
4745  * @return The input method context
4746  *
4747  * @ingroup Entry
4748  */
4749 EAPI Ecore_IMF_Context *elm_entry_imf_context_get(Evas_Object *obj)
4750 {
4751    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
4752    Widget_Data *wd = elm_widget_data_get(obj);
4753    if (!wd || !wd->ent) return NULL;
4754
4755    return edje_object_part_text_imf_context_get(wd->ent, "elm.text");
4756 }
4757
4758 EAPI void
4759 elm_entry_matchlist_set(Evas_Object *obj, Eina_List *match_list, Eina_Bool case_sensitive)
4760 {
4761    Widget_Data *wd = elm_widget_data_get(obj);
4762    if (!wd) return;
4763
4764    if (match_list)
4765      {
4766         Evas_Coord max_w = 9999, max_h = 9999;
4767         const char* key_data = NULL;
4768
4769         wd->matchlist_threshold = 1;
4770         wd->hover = elm_hover_add(elm_widget_parent_get(obj));
4771         elm_hover_parent_set(wd->hover, elm_widget_parent_get(obj));
4772         elm_hover_target_set(wd->hover, obj);
4773         elm_object_style_set(wd->hover, "matchlist");
4774
4775         wd->layout = elm_layout_add(wd->hover);
4776         elm_layout_theme_set(wd->layout, "entry", "matchlist", "default");
4777         wd->list = elm_list_add(wd->layout);
4778         evas_object_size_hint_weight_set(wd->list, EVAS_HINT_EXPAND, 0.0);
4779         evas_object_size_hint_align_set(wd->list, EVAS_HINT_FILL, EVAS_HINT_FILL);
4780         elm_list_mode_set(wd->list, ELM_LIST_EXPAND);
4781         elm_object_style_set(wd->list, "matchlist");
4782
4783         key_data = edje_object_data_get(elm_layout_edje_get(wd->layout), "max_width");
4784         if (key_data) max_w = atoi(key_data);
4785         key_data = edje_object_data_get(elm_layout_edje_get(wd->layout), "max_height");
4786         if (key_data) max_h = atoi(key_data);
4787
4788         elm_list_go(wd->list);
4789         evas_object_size_hint_max_set(wd->list, max_w, max_h);
4790         evas_object_smart_callback_add(wd->list, "selected", _matchlist_list_clicked, obj);
4791         elm_layout_content_set(wd->layout, "elm.swallow.content", wd->list);
4792         elm_hover_content_set(wd->hover, "bottom", wd->layout);
4793
4794         wd->match_list = match_list;
4795      }
4796    else
4797      {
4798         if (wd->hover)
4799           evas_object_del(wd->hover);
4800
4801         wd->match_list = NULL;
4802      }
4803
4804    wd->matchlist_case_sensitive = case_sensitive;
4805 }
4806
4807 /**
4808  * Set the magnifier style of the entry
4809  *
4810  * @param obj The entry object
4811  * @param type the magnifier style to set
4812  *
4813  * @ingroup Entry
4814  */
4815 EAPI void
4816 elm_entry_magnifier_type_set(Evas_Object *obj, int type)
4817 {
4818    ELM_CHECK_WIDTYPE(obj, widtype);
4819    Widget_Data *wd = elm_widget_data_get(obj);
4820    if (!wd) return;
4821
4822    wd->mgf_type = type;
4823    _magnifier_create(obj);
4824 }
4825
4826 /**
4827  * Set wrap width of the entry
4828  *
4829  * @param obj The entry object
4830  * @param w The wrap width in pixels at a minimum where words need to wrap
4831  * @ingroup Entry
4832  */
4833 EAPI void
4834 elm_entry_wrap_width_set(Evas_Object *obj, Evas_Coord w)
4835 {
4836    Widget_Data *wd = elm_widget_data_get(obj);
4837    if (wd->wrap_w == w) return;
4838    wd->wrap_w = w;
4839    _sizing_eval(obj);
4840 }
4841
4842 /**
4843  * get wrap width of the entry
4844  *
4845  * @param obj The entry object
4846  * @return The wrap width in pixels at a minimum where words need to wrap
4847  * @ingroup Entry
4848  */
4849 EAPI Evas_Coord
4850 elm_entry_wrap_width_get(const Evas_Object *obj)
4851 {
4852    Widget_Data *wd = elm_widget_data_get(obj);
4853    return wd->wrap_w;
4854 }
4855
4856 /**
4857  * Set the font size on the entry object
4858  *
4859  * @param obj The entry object
4860  * @param size font size
4861  *
4862  * @ingroup Entry
4863  */
4864 EAPI void
4865 elm_entry_fontsize_set(Evas_Object *obj, int fontsize)
4866 {
4867    ELM_CHECK_WIDTYPE(obj, widtype);
4868    Widget_Data *wd = elm_widget_data_get(obj);
4869    Eina_Strbuf *fontbuf = NULL;
4870    int removeflag = 0;
4871    const char *t;
4872
4873    if (!wd) return;
4874    t = eina_stringshare_add(elm_entry_entry_get(obj));
4875    fontbuf = eina_strbuf_new();
4876    eina_strbuf_append_printf(fontbuf, "%d", fontsize);
4877
4878    if (fontsize == 0) removeflag = 1; // remove fontsize tag
4879
4880    if (_stringshare_key_value_replace(&t, "font_size", eina_strbuf_string_get(fontbuf), removeflag) == 0)
4881      {
4882        elm_entry_entry_set(obj, t);
4883        wd->changed = 1;
4884        _sizing_eval(obj);
4885      }
4886    eina_strbuf_free(fontbuf);
4887    eina_stringshare_del(t);
4888 }
4889
4890 /**
4891  * Set the text color on the entry object
4892  *
4893  * @param obj The entry object
4894  * @param r Red property background color of The entry object
4895  * @param g Green property background color of The entry object
4896  * @param b Blue property background color of The entry object
4897  * @param a Alpha property background alpha of The entry object
4898  *
4899  * @ingroup Entry
4900  */
4901 EAPI void
4902 elm_entry_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a)
4903 {
4904    ELM_CHECK_WIDTYPE(obj, widtype);
4905    Widget_Data *wd = elm_widget_data_get(obj);
4906    Eina_Strbuf *colorbuf = NULL;
4907    const char *t;
4908    int len;
4909
4910    if (!wd) return;
4911    t = eina_stringshare_add(elm_entry_entry_get(obj));
4912    len = strlen(t);
4913    if (len <= 0) return;
4914    colorbuf = eina_strbuf_new();
4915    eina_strbuf_append_printf(colorbuf, "#%02X%02X%02X%02X", r, g, b, a);
4916
4917    if (_stringshare_key_value_replace(&t, "color", eina_strbuf_string_get(colorbuf), 0) == 0)
4918      {
4919        elm_entry_entry_set(obj, t);
4920        wd->changed = 1;
4921        _sizing_eval(obj);
4922      }
4923    eina_strbuf_free(colorbuf);
4924    eina_stringshare_del(t);
4925 }
4926
4927 /**
4928  * Set the text align on the entry object
4929  *
4930  * @param obj The entry object
4931  * @param align align mode
4932  *
4933  * @ingroup Entry
4934  */
4935 EAPI void
4936 elm_entry_text_align_set(Evas_Object *obj, const char *alignmode)
4937 {
4938    ELM_CHECK_WIDTYPE(obj, widtype);
4939    Widget_Data *wd = elm_widget_data_get(obj);
4940    int len;
4941    const char *t;
4942
4943    if (!wd) return;
4944    t = eina_stringshare_add(elm_entry_entry_get(obj));
4945    len = strlen(t);
4946    if (len <= 0) return;
4947
4948    if (_stringshare_key_value_replace(&t, "align", alignmode, 0) == 0)
4949      elm_entry_entry_set(obj, t);
4950
4951    wd->changed = 1;
4952    _sizing_eval(obj);
4953    eina_stringshare_del(t);
4954 }