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