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