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