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