[elm_entry] fixing typo error
[framework/uifw/elementary.git] / src / lib / elm_entry.c
1 /*
2  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
3  */
4 #include <Elementary.h>
5 #include "elm_priv.h"
6 #include "elm_module_priv.h"
7 /**
8  * @defgroup Entry Entry
9  * @ingroup Elementary
10  *
11  * An entry is a convenience widget which shows
12  * a box that the user can enter text into.  Unlike a
13  * @ref Scrolled_Entry widget, entries DO NOT scroll with user
14  * input.  Entry widgets are capable of expanding past the
15  * boundaries of the window, thus resizing the window to its
16  * own length.
17  * 
18  * You can also insert "items" in the entry with:
19  * 
20  * \<item size=16x16 vsize=full href=emoticon/haha\>\</item\>
21  * 
22  * for example. sizing can be set bu size=WxH, relsize=WxH or absize=WxH with
23  * vsize=ascent or vsize=full. the href=NAME sets the item name. Entry
24  * supports a list of emoticon names by default. These are:
25  * 
26  * - emoticon/angry
27  * - emoticon/angry-shout
28  * - emoticon/crazy-laugh
29  * - emoticon/evil-laugh
30  * - emoticon/evil
31  * - emoticon/goggle-smile
32  * - emoticon/grumpy
33  * - emoticon/grumpy-smile
34  * - emoticon/guilty
35  * - emoticon/guilty-smile
36  * - emoticon/haha
37  * - emoticon/half-smile
38  * - emoticon/happy-panting
39  * - emoticon/happy
40  * - emoticon/indifferent
41  * - emoticon/kiss
42  * - emoticon/knowing-grin
43  * - emoticon/laugh
44  * - emoticon/little-bit-sorry
45  * - emoticon/love-lots
46  * - emoticon/love
47  * - emoticon/minimal-smile
48  * - emoticon/not-happy
49  * - emoticon/not-impressed
50  * - emoticon/omg
51  * - emoticon/opensmile
52  * - emoticon/smile
53  * - emoticon/sorry
54  * - emoticon/squint-laugh
55  * - emoticon/surprised
56  * - emoticon/suspicious
57  * - emoticon/tongue-dangling
58  * - emoticon/tongue-poke
59  * - emoticon/uh
60  * - emoticon/unhappy
61  * - emoticon/very-sorry
62  * - emoticon/what
63  * - emoticon/wink
64  * - emoticon/worried
65  * - emoticon/wtf
66  *
67  * These are built-in currently, but you can add your own item provieer that
68  * can create inlined objects in the text and fill the space allocated to the
69  * item with a custom object of your own.
70  * 
71  * See the entry test for some more examples of use of this.
72  * 
73  * Signals that you can add callbacks for are:
74  * - "changed" - The text within the entry was changed
75  * - "activated" - The entry has received focus and the cursor
76  * - "press" - The entry has been clicked
77  * - "longpressed" - The entry has been clicked for a couple seconds
78  * - "clicked" - The entry has been clicked
79  * - "clicked,double" - The entry has been double clicked
80  * - "focused" - The entry has received focus
81  * - "unfocused" - The entry has lost focus
82  * - "selection,paste" - A paste action has occurred
83  * - "selection,copy" - A copy action has occurred
84  * - "selection,cut" - A cut action has occurred
85  * - "selection,start" - A selection has begun
86  * - "selection,changed" - The selection has changed
87  * - "selection,cleared" - The selection has been cleared
88  * - "cursor,changed" - The cursor has changed
89  * - "anchor,clicked" - The anchor has been clicked
90  */
91
92 typedef struct _Mod_Api Mod_Api;
93
94 typedef struct _Widget_Data Widget_Data;
95 typedef struct _Elm_Entry_Item_Provider Elm_Entry_Item_Provider;
96
97 struct _Widget_Data
98 {
99    Evas_Object *ent;
100    Evas_Object *popup;/*copy paste UI - elm_popup*/
101    Evas_Object *ctxpopup;/*copy paste UI - elm_ctxpopup*/
102    Evas_Object *bg;   
103    Evas_Object *hoversel;
104    Ecore_Job *deferred_recalc_job;
105    Ecore_Event_Handler *sel_notify_handler;
106    Ecore_Event_Handler *sel_clear_handler;
107    Ecore_Timer *longpress_timer;
108    /* Only for clipboard */
109    const char *cut_sel;
110    const char *text;
111    Evas_Coord wrap_w;
112    int ellipsis_threshold;
113    Evas_Coord lastw;
114    Evas_Coord downx, downy;
115    Evas_Coord cx, cy, cw, ch;
116    Eina_List *items;
117    Eina_List *item_providers;
118    Ecore_Job *hovdeljob;
119    Mod_Api *api; // module api if supplied
120    int max_no_of_bytes;
121    Eina_Bool changed : 1;
122    Eina_Bool linewrap : 1;
123    Eina_Bool char_linewrap : 1;
124    Eina_Bool single_line : 1;
125    Eina_Bool password : 1;
126    Eina_Bool show_last_character : 1;
127    Eina_Bool editable : 1;
128    Eina_Bool selection_asked : 1;
129    Eina_Bool have_selection : 1;
130    Eina_Bool selmode : 1;
131    Eina_Bool deferred_cur : 1;
132    Eina_Bool disabled : 1;
133    Eina_Bool context_menu : 1;
134    Eina_Bool bgcolor : 1;
135    Eina_Bool ellipsis : 1;
136    Eina_Bool autoreturnkey : 1;
137    Eina_Bool input_panel_enable : 1;
138    Eina_Bool autocapitalize : 1;
139    Elm_Input_Panel_Layout input_panel_layout;
140    Eina_Bool autoperiod : 1;
141 };
142
143 struct _Elm_Entry_Item_Provider
144 {
145    Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item);
146    void *data;
147 };
148
149 static const char *widtype = NULL;
150 static void _del_hook(Evas_Object *obj);
151 static void _theme_hook(Evas_Object *obj);
152 static void _disable_hook(Evas_Object *obj);
153 static void _sizing_eval(Evas_Object *obj);
154 static void _on_focus_hook(void *data, Evas_Object *obj);
155 static void _resize(void *data, Evas *e, Evas_Object *obj, void *event_info);
156 static const char *_getbase(Evas_Object *obj);
157 static void _signal_entry_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
158 static void _signal_selection_start(void *data, Evas_Object *obj, const char *emission, const char *source);
159 static void _signal_selection_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
160 static void _signal_selection_cleared(void *data, Evas_Object *obj, const char *emission, const char *source);
161 static void _signal_entry_paste_request(void *data, Evas_Object *obj, const char *emission, const char *source);
162 static void _signal_entry_copy_notify(void *data, Evas_Object *obj, const char *emission, const char *source);
163 static void _signal_entry_cut_notify(void *data, Evas_Object *obj, const char *emission, const char *source);
164 static void _signal_cursor_changed(void *data, Evas_Object *obj, const char *emission, const char *source);
165 static int _get_value_in_key_string(const char *oldstring, char *key, char **value);
166 static int _strbuf_key_value_replace(Eina_Strbuf *srcbuf, char *key, const char *value, int deleteflag);
167 static int _stringshare_key_value_replace(const char **srcstring, char *key, const char *value, int deleteflag);
168 static int _is_width_over(Evas_Object *obj);
169 static void _ellipsis_entry_to_width(Evas_Object *obj);
170 static void _reverse_ellipsis_entry(Evas_Object *obj);
171 static int _textinput_control_function(void *data,void *input_data);
172 static int _entry_length_get(Evas_Object *obj);
173
174 static const char SIG_CHANGED[] = "changed";
175 static const char SIG_ACTIVATED[] = "activated";
176 static const char SIG_PRESS[] = "press";
177 static const char SIG_LONGPRESSED[] = "longpressed";
178 static const char SIG_CLICKED[] = "clicked";
179 static const char SIG_CLICKED_DOUBLE[] = "clicked,double";
180 static const char SIG_FOCUSED[] = "focused";
181 static const char SIG_UNFOCUSED[] = "unfocused";
182 static const char SIG_SELECTION_PASTE[] = "selection,paste";
183 static const char SIG_SELECTION_COPY[] = "selection,copy";
184 static const char SIG_SELECTION_CUT[] = "selection,cut";
185 static const char SIG_SELECTION_START[] = "selection,start";
186 static const char SIG_SELECTION_CHANGED[] = "selection,changed";
187 static const char SIG_SELECTION_CLEARED[] = "selection,cleared";
188 static const char SIG_CURSOR_CHANGED[] = "cursor,changed";
189 static const char SIG_ANCHOR_CLICKED[] = "anchor,clicked";
190 static const Evas_Smart_Cb_Description _signals[] = {
191   {SIG_CHANGED, ""},
192   {SIG_ACTIVATED, ""},
193   {SIG_PRESS, ""},
194   {SIG_LONGPRESSED, ""},
195   {SIG_CLICKED, ""},
196   {SIG_CLICKED_DOUBLE, ""},
197   {SIG_FOCUSED, ""},
198   {SIG_UNFOCUSED, ""},
199   {SIG_SELECTION_PASTE, ""},
200   {SIG_SELECTION_COPY, ""},
201   {SIG_SELECTION_CUT, ""},
202   {SIG_SELECTION_START, ""},
203   {SIG_SELECTION_CHANGED, ""},
204   {SIG_SELECTION_CLEARED, ""},
205   {SIG_CURSOR_CHANGED, ""},
206   {SIG_ANCHOR_CLICKED, ""},
207   {NULL, NULL}
208 };
209
210 static Eina_List *entries = NULL;
211
212 struct _Mod_Api
213 {
214    void (*obj_hook) (Evas_Object *obj);
215    void (*obj_unhook) (Evas_Object *obj);
216    void (*obj_longpress) (Evas_Object *obj);
217    void (*obj_mouseup) (Evas_Object *obj);
218 };
219
220 static Mod_Api *
221 _module(Evas_Object *obj __UNUSED__)
222 {
223    static Elm_Module *m = NULL;
224    if (m) goto ok; // already found - just use
225    if (!(m = _elm_module_find_as("entry/api"))) return NULL;
226    // get module api
227    m->api = malloc(sizeof(Mod_Api));
228    if (!m->api) return NULL;
229    ((Mod_Api *)(m->api)      )->obj_hook = // called on creation
230      _elm_module_symbol_get(m, "obj_hook");
231    ((Mod_Api *)(m->api)      )->obj_unhook = // called on deletion
232      _elm_module_symbol_get(m, "obj_unhook");
233    ((Mod_Api *)(m->api)      )->obj_longpress = // called on long press menu
234      _elm_module_symbol_get(m, "obj_longpress");
235     ((Mod_Api *)(m->api)      )->obj_mouseup = // called on mouseup
236    _elm_module_symbol_get(m, "obj_mouseup");
237    ok: // ok - return api
238    return m->api;
239 }
240
241 static void
242 _del_hook(Evas_Object *obj)
243 {
244    Widget_Data *wd = elm_widget_data_get(obj);
245    Elm_Entry_Context_Menu_Item *it;
246    Elm_Entry_Item_Provider *ip;
247
248    if (wd->hovdeljob) ecore_job_del(wd->hovdeljob);
249    if ((wd->api) && (wd->api->obj_unhook)) wd->api->obj_unhook(obj); // module - unhook
250
251    entries = eina_list_remove(entries, obj);
252 #ifdef HAVE_ELEMENTARY_X
253    ecore_event_handler_del(wd->sel_notify_handler);
254    ecore_event_handler_del(wd->sel_clear_handler);
255 #endif
256    if (wd->cut_sel) eina_stringshare_del(wd->cut_sel);
257    if (wd->text) eina_stringshare_del(wd->text);
258    if (wd->bg) evas_object_del(wd->bg);
259    if (wd->deferred_recalc_job) ecore_job_del(wd->deferred_recalc_job);
260    if (wd->longpress_timer) ecore_timer_del(wd->longpress_timer);
261    EINA_LIST_FREE(wd->items, it)
262      {
263         eina_stringshare_del(it->label);
264         eina_stringshare_del(it->icon_file);
265         eina_stringshare_del(it->icon_group);
266         free(it);
267      }
268    EINA_LIST_FREE(wd->item_providers, ip)
269      {
270         free(ip);
271      }
272    free(wd);
273 }
274
275 static void
276 _theme_hook(Evas_Object *obj)
277 {
278    Widget_Data *wd = elm_widget_data_get(obj);
279    const char *t;
280    Ecore_IMF_Context *ic;
281
282    t = eina_stringshare_add(elm_entry_entry_get(obj));
283    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
284    elm_entry_entry_set(obj, t);
285    eina_stringshare_del(t);
286    edje_object_scale_set(wd->ent, elm_widget_scale_get(obj) * _elm_config->scale);
287    edje_object_part_text_autocapitalization_set(wd->ent, "elm.text", wd->autocapitalize);
288 //   edje_object_part_text_autoperiod_set(wd->ent, "elm.text", wd->autoperiod);
289    edje_object_part_text_input_panel_enabled_set(wd->ent, "elm.text", wd->input_panel_enable);
290
291    ic = edje_object_part_text_imf_context_get(wd->ent, "elm.text");
292    if (ic)
293      {
294         ecore_imf_context_input_panel_layout_set(ic, (Ecore_IMF_Input_Panel_Layout)wd->input_panel_layout);
295      }
296
297    _sizing_eval(obj);
298 }
299
300 static void
301 _disable_hook(Evas_Object *obj)
302 {
303    Widget_Data *wd = elm_widget_data_get(obj);
304
305    if (elm_widget_disabled_get(obj))
306      {
307         edje_object_signal_emit(wd->ent, "elm,state,disabled", "elm");
308         wd->disabled = EINA_TRUE;
309      }
310    else
311      {
312         edje_object_signal_emit(wd->ent, "elm,state,enabled", "elm");
313         wd->disabled = EINA_FALSE;
314      }
315 }
316
317 static void
318 _elm_win_recalc_job(void *data)
319 {
320    Widget_Data *wd = elm_widget_data_get(data);
321    Evas_Coord minw = -1, minh = -1, maxh = -1;
322    Evas_Coord resw, resh, minminw;
323    if (!wd) return;
324    wd->deferred_recalc_job = NULL;
325    evas_object_geometry_get(wd->ent, NULL, NULL, &resw, &resh);
326    resh = 0;
327    minminw = 0;
328    edje_object_size_min_restricted_calc(wd->ent, &minw, &minh, 0, 0);
329    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
330    minminw = minw;
331    edje_object_size_min_restricted_calc(wd->ent, &minw, &minh, resw, 0);
332    elm_coords_finger_size_adjust(1, &minw, 1, &minh);
333    evas_object_size_hint_min_set(data, minminw, minh);
334    if (wd->single_line) maxh = minh;
335    evas_object_size_hint_max_set(data, -1, maxh);
336    if (wd->deferred_cur)
337      elm_widget_show_region_set(data, wd->cx, wd->cy, wd->cw, wd->ch);
338 }
339
340 static void
341 _sizing_eval(Evas_Object *obj)
342 {
343    Widget_Data *wd = elm_widget_data_get(obj);
344    Evas_Coord minw = -1, minh = -1, maxw = -1, maxh = -1;
345    Evas_Coord resw, resh;
346    if (!wd) return;
347    if (wd->linewrap || wd->char_linewrap)
348      {
349         evas_object_geometry_get(wd->ent, NULL, NULL, &resw, &resh);
350         if ((resw == wd->lastw) && (!wd->changed)) return;
351         wd->changed = EINA_FALSE;
352         wd->lastw = resw;
353         if (wd->deferred_recalc_job) ecore_job_del(wd->deferred_recalc_job);
354         wd->deferred_recalc_job = ecore_job_add(_elm_win_recalc_job, obj);
355      }
356    else
357      {
358         evas_object_geometry_get(wd->ent, NULL, NULL, &resw, &resh);
359         edje_object_size_min_calc(wd->ent, &minw, &minh);
360         elm_coords_finger_size_adjust(1, &minw, 1, &minh);
361         evas_object_size_hint_min_set(obj, minw, minh);
362         if (wd->single_line) maxh = minh;
363         evas_object_size_hint_max_set(obj, maxw, maxh);
364
365         if (wd->ellipsis && wd->single_line)
366           {
367             if (_is_width_over(obj))
368               _ellipsis_entry_to_width(obj);
369                         else if (wd->ellipsis_threshold > 1 && _entry_length_get(obj) < wd->ellipsis_threshold)
370               _reverse_ellipsis_entry(obj);
371           }
372      }
373 }
374
375 static void
376 _check_enable_returnkey(Evas_Object *obj)
377 {
378     Widget_Data *wd = elm_widget_data_get(obj);
379     if (!wd) return;
380
381     Ecore_IMF_Context *ic = elm_entry_imf_context_get(obj);
382     if (!ic) return;
383
384    if (!wd->autoreturnkey) return;
385
386    if (_entry_length_get(obj) == 0) 
387      {
388         ecore_imf_context_input_panel_key_disabled_set(ic, ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL, ECORE_IMF_INPUT_PANEL_KEY_ENTER, EINA_TRUE);
389      }
390    else 
391      {
392         ecore_imf_context_input_panel_key_disabled_set(ic, ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL, ECORE_IMF_INPUT_PANEL_KEY_ENTER, EINA_FALSE);
393      }
394 }
395
396 static void
397 _on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
398 {
399    Widget_Data *wd = elm_widget_data_get(obj);
400    Evas_Object *top = elm_widget_top_get(obj);
401    if (!wd) return;
402    if (!wd->editable) return;
403    if (elm_widget_focus_get(obj))
404      {
405         evas_object_focus_set(wd->ent, 1);
406         edje_object_signal_emit(wd->ent, "elm,action,focus", "elm");
407
408         if (top) elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_ON);
409         // start for cbhm
410         if (top) 
411         {
412                 ecore_x_selection_secondary_set(elm_win_xwindow_get(obj), "",1);
413         }
414         // end for cbhm
415         evas_object_smart_callback_call(obj, SIG_FOCUSED, NULL);
416         _check_enable_returnkey(obj);
417      }
418    else
419      {
420         edje_object_signal_emit(wd->ent, "elm,action,unfocus", "elm");
421         edje_object_part_text_set(wd->ent, "elm_entry_remain_byte_count", "");
422         evas_object_focus_set(wd->ent, 0);
423         if (top) elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_OFF);
424         evas_object_smart_callback_call(obj, SIG_UNFOCUSED, NULL);
425      }
426 }
427
428 static void
429 _signal_emit_hook(Evas_Object *obj, const char *emission, const char *source)
430 {
431    Widget_Data *wd = elm_widget_data_get(obj);
432    if (!wd) return;
433    edje_object_signal_emit(wd->ent, emission, source);
434 }
435
436 static void
437 _hoversel_position(Evas_Object *obj)
438 {
439    Widget_Data *wd = elm_widget_data_get(obj);
440    Evas_Coord cx, cy, cw, ch, x, y, mw, mh;
441    if (!wd) return;
442    evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
443    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
444                                              &cx, &cy, &cw, &ch);
445    evas_object_size_hint_min_get(wd->hoversel, &mw, &mh);
446    if (cw < mw)
447      {
448         cx += (cw - mw) / 2;
449         cw = mw;
450      }
451    if (ch < mh)
452      {
453         cy += (ch - mh) / 2;
454         ch = mh;
455      }
456    evas_object_move(wd->hoversel, x + cx, y + cy);
457    evas_object_resize(wd->hoversel, cw, ch);
458 }
459
460 static void
461 _move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
462 {
463    Widget_Data *wd = elm_widget_data_get(data);
464
465    if (wd->hoversel) _hoversel_position(data);
466 }
467
468 static void
469 _resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
470 {
471    Widget_Data *wd = elm_widget_data_get(data);
472    if (!wd) return;
473    if (wd->linewrap || wd->char_linewrap)
474      {
475         _sizing_eval(data);
476      }
477    if (wd->hoversel) _hoversel_position(data);
478 //   Evas_Coord ww, hh;
479 //   evas_object_geometry_get(wd->ent, NULL, NULL, &ww, &hh);
480 }
481
482 static void
483 _hover_del(void *data)
484 {
485    Widget_Data *wd = elm_widget_data_get(data);
486    if (!wd) return;
487    
488    if (wd->hoversel)
489      {
490         evas_object_del(wd->hoversel);
491         wd->hoversel = NULL;
492      }
493    wd->hovdeljob = NULL;
494 }
495
496 static void
497 _dismissed(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
498 {
499    Widget_Data *wd = elm_widget_data_get(data);
500    if (!wd) return; 
501    if (wd->hoversel) evas_object_hide(wd->hoversel);
502    if (wd->selmode)
503      {
504         if (!wd->password)
505           edje_object_part_text_select_allow_set(wd->ent, "elm.text", 1);
506      }
507    elm_widget_scroll_freeze_pop(data);
508    if (wd->hovdeljob) ecore_job_del(wd->hovdeljob);
509    wd->hovdeljob = ecore_job_add(_hover_del, data);
510 }
511
512 static void
513 _select(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
514 {
515    Widget_Data *wd = elm_widget_data_get(data);
516    if (!wd) return;
517    wd->selmode = EINA_TRUE;
518    edje_object_part_text_select_none(wd->ent, "elm.text");
519    if (!wd->password)
520      edje_object_part_text_select_allow_set(wd->ent, "elm.text", 1);
521    edje_object_signal_emit(wd->ent, "elm,state,select,on", "elm");
522    elm_widget_scroll_hold_push(data);
523 }
524
525 static void
526 _paste(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
527 {
528    Widget_Data *wd = elm_widget_data_get(data);
529    if (!wd) return;
530    evas_object_smart_callback_call(data, SIG_SELECTION_PASTE, NULL);
531    if (wd->sel_notify_handler)
532      {
533 #ifdef HAVE_ELEMENTARY_X
534         wd->selection_asked = EINA_TRUE;
535         elm_selection_get(ELM_SEL_CLIPBOARD, ELM_SEL_MARKUP, data);
536 #endif
537      }
538 }
539
540 static void
541 _store_selection(enum _elm_sel_type seltype, Evas_Object *obj)
542 {
543    Widget_Data *wd = elm_widget_data_get(obj);
544    const char *sel;
545
546    if (!wd) return;
547    sel = edje_object_part_text_selection_get(wd->ent, "elm.text");
548    elm_selection_set(seltype, obj, ELM_SEL_MARKUP, sel);
549    if (seltype == ELM_SEL_CLIPBOARD)
550            eina_stringshare_replace(&wd->cut_sel, sel);
551 }
552
553 static void
554 _cut(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
555 {
556    Widget_Data *wd = elm_widget_data_get(data);
557
558    /* Store it */
559    wd->selmode = EINA_FALSE;
560    edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
561    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
562    elm_widget_scroll_hold_pop(data);
563    _store_selection(ELM_SEL_CLIPBOARD, data);
564    edje_object_part_text_insert(wd->ent, "elm.text", "");
565    edje_object_part_text_select_none(wd->ent, "elm.text");
566 }
567
568 static void
569 _copy(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
570 {
571    Widget_Data *wd = elm_widget_data_get(data);
572    if (!wd) return;
573    wd->selmode = EINA_FALSE;
574    edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
575    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
576    elm_widget_scroll_hold_pop(data);
577    _store_selection(ELM_SEL_CLIPBOARD, data);
578 //   edje_object_part_text_select_none(wd->ent, "elm.text");
579 }
580
581 static void
582 _cancel(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
583 {
584    Widget_Data *wd = elm_widget_data_get(data);
585    if (!wd) return;
586    wd->selmode = EINA_FALSE;
587    edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
588    edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
589    elm_widget_scroll_hold_pop(data);
590    edje_object_part_text_select_none(wd->ent, "elm.text");
591 }
592
593 static void
594 _item_clicked(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
595 {
596    Elm_Entry_Context_Menu_Item *it = data;
597    Evas_Object *obj2 = it->obj;
598    if (it->func) it->func(it->data, obj2, NULL);
599 }
600
601 static Eina_Bool
602 _long_press(void *data)
603 {
604    Widget_Data *wd = elm_widget_data_get(data);
605    Evas_Object *top;
606    const Eina_List *l;
607    const Elm_Entry_Context_Menu_Item *it;
608    if (!wd) return ECORE_CALLBACK_CANCEL;
609    if ((wd->api) && (wd->api->obj_longpress))
610      {
611         wd->api->obj_longpress(data);
612      }
613    else if (wd->context_menu)
614      {
615         const char *context_menu_orientation;
616
617         if (wd->hoversel) evas_object_del(wd->hoversel);
618         else elm_widget_scroll_freeze_push(data);
619         wd->hoversel = elm_hoversel_add(data);
620         context_menu_orientation = edje_object_data_get
621           (wd->ent, "context_menu_orientation");
622         if ((context_menu_orientation) &&
623             (!strcmp(context_menu_orientation, "horizontal")))
624           elm_hoversel_horizontal_set(wd->hoversel, 1);
625         elm_object_style_set(wd->hoversel, "entry");
626         elm_widget_sub_object_add(data, wd->hoversel);
627         elm_hoversel_label_set(wd->hoversel, "Text");
628         top = elm_widget_top_get(data);
629         if (top) elm_hoversel_hover_parent_set(wd->hoversel, top);
630         evas_object_smart_callback_add(wd->hoversel, "dismissed", _dismissed, data);
631         if (!wd->selmode)
632           {
633              if (!wd->password)
634                elm_hoversel_item_add(wd->hoversel, "Select", NULL, ELM_ICON_NONE,
635                                      _select, data);
636              if (1) // need way to detect if someone has a selection
637                {
638                   if (wd->editable)
639                     elm_hoversel_item_add(wd->hoversel, "Paste", NULL, ELM_ICON_NONE,
640                                           _paste, data);
641                }
642           }
643         else
644           {
645              if (!wd->password)
646                {
647                   if (wd->have_selection)
648                     {
649                        elm_hoversel_item_add(wd->hoversel, "Copy", NULL, ELM_ICON_NONE,
650                                              _copy, data);
651                        if (wd->editable)
652                          elm_hoversel_item_add(wd->hoversel, "Cut", NULL, ELM_ICON_NONE,
653                                                _cut, data);
654                     }
655                   elm_hoversel_item_add(wd->hoversel, "Cancel", NULL, ELM_ICON_NONE,
656                                         _cancel, data);
657                }
658           }
659         EINA_LIST_FOREACH(wd->items, l, it)
660           {
661              elm_hoversel_item_add(wd->hoversel, it->label, it->icon_file,
662                                    it->icon_type, _item_clicked, it);
663           }
664         if (wd->hoversel)
665           {
666              _hoversel_position(data);
667              evas_object_show(wd->hoversel);
668              elm_hoversel_hover_begin(wd->hoversel);
669           }
670         edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
671         edje_object_part_text_select_abort(wd->ent, "elm.text");
672      }
673    wd->longpress_timer = NULL;
674    evas_object_smart_callback_call(data, SIG_LONGPRESSED, NULL);
675    return ECORE_CALLBACK_CANCEL;
676 }
677
678 static void
679 _mouse_down(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
680 {
681    Widget_Data *wd = elm_widget_data_get(data);
682    Evas_Event_Mouse_Down *ev = event_info;
683    if (!wd) return;
684    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) return;
685    if (ev->button != 1) return;
686    //   if (ev->flags & EVAS_BUTTON_DOUBLE_CLICK)
687    if (wd->longpress_timer) ecore_timer_del(wd->longpress_timer);
688    wd->longpress_timer = ecore_timer_add(1.0, _long_press, data);
689    wd->downx = ev->canvas.x;
690    wd->downy = ev->canvas.y;
691 }
692
693 static void
694 _mouse_up(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
695 {
696    Widget_Data *wd = elm_widget_data_get(data);
697    Evas_Event_Mouse_Up *ev = event_info;
698    if (!wd) return;
699    if (ev->button != 1) return;
700    if ((wd->api) && (wd->api->obj_mouseup))
701      {
702         wd->api->obj_mouseup(data);
703      } 
704    if (wd->longpress_timer)
705      {
706         ecore_timer_del(wd->longpress_timer);
707         wd->longpress_timer = NULL;
708      }  
709 }
710
711 static void
712 _mouse_move(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info)
713 {
714    Widget_Data *wd = elm_widget_data_get(data);
715    Evas_Event_Mouse_Move *ev = event_info;
716    if (!wd) return;
717    if (!wd->selmode)
718      {
719         if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
720           {
721              if (wd->longpress_timer)
722                {
723                   ecore_timer_del(wd->longpress_timer);
724                   wd->longpress_timer = NULL;
725                }
726           }
727         else if (wd->longpress_timer)
728           {
729              Evas_Coord dx, dy;
730
731              dx = wd->downx - ev->cur.canvas.x;
732              dx *= dx;
733              dy = wd->downy - ev->cur.canvas.y;
734              dy *= dy;
735              if ((dx + dy) >
736                  ((_elm_config->finger_size / 2) *
737                   (_elm_config->finger_size / 2)))
738                {
739                   ecore_timer_del(wd->longpress_timer);
740                   wd->longpress_timer = NULL;
741                }
742           }
743      }
744    else if (wd->longpress_timer)
745      {
746         Evas_Coord dx, dy;
747
748         dx = wd->downx - ev->cur.canvas.x;
749         dx *= dx;
750         dy = wd->downy - ev->cur.canvas.y;
751         dy *= dy;
752         if ((dx + dy) >
753             ((_elm_config->finger_size / 2) *
754              (_elm_config->finger_size / 2)))
755           {
756              ecore_timer_del(wd->longpress_timer);
757              wd->longpress_timer = NULL;
758           }
759      }
760 }
761
762 static const char *
763 _getbase(Evas_Object *obj)
764 {
765    Widget_Data *wd = elm_widget_data_get(obj);
766    if (!wd) return "base";
767    if (wd->editable)
768      {
769         if((wd->password)&&(wd->show_last_character)) return "custom-password"; 
770         else if(wd->password) return "base-password";
771         else
772           {
773              if (wd->single_line) return "base-single";
774              else
775                {
776                   if (wd->linewrap) return "base";
777                   else if (wd->char_linewrap) return "base-charwrap";
778                   else  return "base-nowrap";
779                }
780           }
781      }
782    else
783      {
784         if((wd->password)&&(wd->show_last_character)) return "custom-password"; 
785         else if(wd->password) return "base-password";
786         else
787           {
788              if (wd->single_line) return "base-single-noedit";
789              else
790                {
791                   if (wd->linewrap) return "base-noedit";
792                   else if (wd->char_linewrap) return "base-noedit-charwrap";
793                   else  return "base-nowrap-noedit";
794                }
795           }
796      }
797    return "base";
798 }
799
800 static char *
801 _str_append(char *str, const char *txt, int *len, int *alloc)
802 {
803    int txt_len = strlen(txt);
804
805    if (txt_len <= 0) return str;
806    if ((*len + txt_len) >= *alloc)
807      {
808         char *str2;
809         int alloc2;
810
811         alloc2 = *alloc + txt_len + 128;
812         str2 = realloc(str, alloc2);
813         if (!str2) return str;
814         *alloc = alloc2;
815         str = str2;
816      }
817    strcpy(str + *len, txt);
818    *len += txt_len;
819    return str;
820 }
821
822 /*FIXME: Sholud be implemented somewhere else, it really depends on the context
823  * because some markups can be implemented otherwise according to style.
824  * probably doing it in textblock and making it translate according to it's
825  * style is correct. */
826 static char *
827 _strncpy(char* dest, const char* src, size_t count)
828 {
829    if (!dest) 
830      {
831         ERR( "dest is NULL" );
832         return NULL;
833      }
834    if (!src) 
835      {
836         ERR( "src is NULL" );
837         return NULL;
838      }
839    if (count < 0)
840      {
841         ERR( "count is smaller than 0" );
842         return NULL;
843      }
844
845    return strncpy( dest, src, count );
846 }
847
848 static char *
849 _mkup_to_text(const char *mkup)
850 {
851    char *str = NULL;
852    int str_len = 0, str_alloc = 0;
853    char *s, *p;
854    char *tag_start, *tag_end, *esc_start, *esc_end, *ts;
855
856    if (!mkup) return NULL;
857    s=p=NULL;
858    tag_start = tag_end = esc_start = esc_end = NULL;
859    p = (char *)mkup;
860    s = p;
861    for (;;)
862      {
863         if (((p!=NULL)&&(*p == 0)) ||
864             (tag_end) || (esc_end) ||
865             (tag_start) || (esc_start))
866           {
867              if (tag_end)
868                {
869                   char *ttag;
870
871                   ttag = malloc(tag_end - tag_start);
872                   if (ttag)
873                     {
874                        _strncpy(ttag, tag_start + 1, tag_end - tag_start - 1);
875                        ttag[tag_end - tag_start - 1] = 0;
876                        if (!strcmp(ttag, "br"))
877                          str = _str_append(str, "\n", &str_len, &str_alloc);
878                        else if (!strcmp(ttag, "\n"))
879                          str = _str_append(str, "\n", &str_len, &str_alloc);
880                        else if (!strcmp(ttag, "\\n"))
881                          str = _str_append(str, "\n", &str_len, &str_alloc);
882                        else if (!strcmp(ttag, "\t"))
883                          str = _str_append(str, "\t", &str_len, &str_alloc);
884                        else if (!strcmp(ttag, "\\t"))
885                          str = _str_append(str, "\t", &str_len, &str_alloc);
886                        else if (!strcmp(ttag, "ps")) /* Unicode paragraph separator */
887                          str = _str_append(str, "\xE2\x80\xA9", &str_len, &str_alloc);
888                        free(ttag);
889                     }
890                   tag_start = tag_end = NULL;
891                }
892              else if (esc_end)
893                {
894                   ts = malloc(esc_end - esc_start + 1);
895                   if (ts)
896                     {
897                        const char *esc;
898                        _strncpy(ts, esc_start, esc_end - esc_start);
899                        ts[esc_end - esc_start] = 0;
900                        esc = evas_textblock_escape_string_get(ts);
901                        if (esc)
902                          str = _str_append(str, esc, &str_len, &str_alloc);
903                        free(ts);
904                     }
905                   esc_start = esc_end = NULL;
906                }
907              else if ((p!=NULL)&&(*p == 0))
908                {
909                   ts = malloc(p - s + 1);
910                   if (ts)
911                     {
912                        _strncpy(ts, s, p - s);
913                        ts[p - s] = 0;
914                        str = _str_append(str, ts, &str_len, &str_alloc);
915                        free(ts);
916                     }
917                   break;
918                }
919           }
920         if ((p!=NULL)&&(*p == '<'))
921           {
922              if (!esc_start)
923                {
924                   tag_start = p;
925                   tag_end = NULL;
926                   ts = malloc(p - s + 1);
927                   if (ts)
928                     {
929                        _strncpy(ts, s, p - s);
930                        ts[p - s] = 0;
931                        str = _str_append(str, ts, &str_len, &str_alloc);
932                        free(ts);
933                     }
934                   s = NULL;
935                }
936           }
937         else if ((p!=NULL)&&(*p == '>'))
938           {
939              if (tag_start)
940                {
941                   tag_end = p;
942                   s = p + 1;
943                }
944           }
945         else if ((p!=NULL)&&(*p == '&'))
946           {
947              if (!tag_start)
948                {
949                   esc_start = p;
950                   esc_end = NULL;
951                   ts = malloc(p - s + 1);
952                   if (ts)
953                     {
954                        _strncpy(ts, s, p - s);
955                        ts[p - s] = 0;
956                        str = _str_append(str, ts, &str_len, &str_alloc);
957                        free(ts);
958                     }
959                   s = NULL;
960                }
961           }
962         else if ((p!=NULL)&&(*p == ';'))
963           {
964              if (esc_start)
965                {
966                   esc_end = p;
967                   s = p + 1;
968                }
969           }
970         p++;
971      }
972    return str;
973 }
974
975 static int
976 _entry_length_get(Evas_Object *obj)
977 {
978    int len;
979    const char *str = elm_entry_entry_get(obj);
980    if (!str) return 0;
981
982    char *plain_str = _mkup_to_text(str);
983    if (!plain_str) return 0;
984
985    len = strlen(plain_str);
986    free(plain_str);
987
988    return len;
989 }
990
991 static char *
992 _text_to_mkup(const char *text)
993 {
994    char *str = NULL;
995    int str_len = 0, str_alloc = 0;
996    int ch, pos = 0, pos2 = 0;
997
998    if (!text) return NULL;
999    for (;;)
1000      {
1001         pos = pos2;
1002         pos2 = evas_string_char_next_get((char *)(text), pos2, &ch);
1003         if ((ch <= 0) || (pos2 <= 0)) break;
1004         if (ch == '\n')
1005           str = _str_append(str, "<br>", &str_len, &str_alloc);
1006         else if (ch == '\t')
1007           str = _str_append(str, "<\t>", &str_len, &str_alloc);
1008         else if (ch == '<')
1009           str = _str_append(str, "&lt;", &str_len, &str_alloc);
1010         else if (ch == '>')
1011           str = _str_append(str, "&gt;", &str_len, &str_alloc);
1012         else if (ch == '&')
1013           str = _str_append(str, "&amp;", &str_len, &str_alloc);
1014         else
1015           {
1016              char tstr[16];
1017
1018              _strncpy(tstr, text + pos, pos2 - pos);
1019              tstr[pos2 - pos] = 0;
1020              str = _str_append(str, tstr, &str_len, &str_alloc);
1021           }
1022      }
1023    return str;
1024 }
1025
1026 static void
1027 _signal_entry_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1028 {
1029    Widget_Data *wd = elm_widget_data_get(data);
1030    if (!wd) return;
1031    wd->changed = EINA_TRUE;
1032    _sizing_eval(data);
1033    if (wd->text) eina_stringshare_del(wd->text);
1034    wd->text = NULL;
1035    _check_enable_returnkey(data);   
1036    evas_object_smart_callback_call(data, SIG_CHANGED, NULL);
1037 }
1038
1039 static void
1040 _signal_selection_start(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1041 {
1042    Widget_Data *wd = elm_widget_data_get(data);
1043    const Eina_List *l;
1044    Evas_Object *entry;
1045    if (!wd) return;
1046    EINA_LIST_FOREACH(entries, l, entry)
1047      {
1048         if (entry != data) elm_entry_select_none(entry);
1049      }
1050    wd->have_selection = EINA_TRUE;
1051    evas_object_smart_callback_call(data, SIG_SELECTION_START, NULL);
1052 #ifdef HAVE_ELEMENTARY_X
1053    if (wd->sel_notify_handler)
1054      {
1055         const char *txt = elm_entry_selection_get(data);
1056         Evas_Object *top;
1057
1058         top = elm_widget_top_get(data);
1059         if ((top) && (elm_win_xwindow_get(top)))
1060              elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_MARKUP, txt);
1061      }
1062 #endif
1063 }
1064
1065 static void
1066 _signal_selection_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1067 {
1068    Widget_Data *wd = elm_widget_data_get(data);
1069    if (!wd) return;
1070    wd->have_selection = EINA_TRUE;
1071    evas_object_smart_callback_call(data, SIG_SELECTION_CHANGED, NULL);
1072    elm_selection_set(ELM_SEL_PRIMARY, obj, ELM_SEL_MARKUP,
1073                    elm_entry_selection_get(data));
1074 }
1075
1076 static void
1077 _signal_selection_cleared(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1078 {
1079    Widget_Data *wd = elm_widget_data_get(data);
1080    if (!wd) return;
1081    if (!wd->have_selection) return;
1082    wd->have_selection = EINA_FALSE;
1083    evas_object_smart_callback_call(data, SIG_SELECTION_CLEARED, NULL);
1084    if (wd->sel_notify_handler)
1085      {
1086         if (wd->cut_sel)
1087           {
1088 #ifdef HAVE_ELEMENTARY_X
1089              Evas_Object *top;
1090
1091              top = elm_widget_top_get(data);
1092              if ((top) && (elm_win_xwindow_get(top)))
1093                  elm_selection_set(ELM_SEL_PRIMARY, data, ELM_SEL_MARKUP,
1094                                        wd->cut_sel);
1095 #endif
1096              eina_stringshare_del(wd->cut_sel);
1097              wd->cut_sel = NULL;
1098           }
1099         else
1100           {
1101 #ifdef HAVE_ELEMENTARY_X
1102              Evas_Object *top;
1103
1104              top = elm_widget_top_get(data);
1105              if ((top) && (elm_win_xwindow_get(top)))
1106                 elm_selection_clear(ELM_SEL_PRIMARY, data);
1107 #endif
1108           }
1109      }
1110 }
1111
1112 static void
1113 _signal_entry_paste_request(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1114 {
1115    Widget_Data *wd = elm_widget_data_get(data);
1116    if (!wd) return;
1117    evas_object_smart_callback_call(data, SIG_SELECTION_PASTE, NULL);
1118    if (wd->sel_notify_handler)
1119      {
1120 #ifdef HAVE_ELEMENTARY_X
1121         Evas_Object *top;
1122
1123         top = elm_widget_top_get(data);
1124         if ((top) && (elm_win_xwindow_get(top)))
1125           {
1126              wd->selection_asked = EINA_TRUE;
1127              elm_selection_get(ELM_SEL_CLIPBOARD, ELM_SEL_MARKUP, data);
1128           }
1129 #endif
1130      }
1131 }
1132
1133 static void
1134 _signal_entry_copy_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1135 {
1136    Widget_Data *wd = elm_widget_data_get(data);
1137    if (!wd) return;
1138    evas_object_smart_callback_call(data, SIG_SELECTION_COPY, NULL);
1139    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_MARKUP,
1140                         elm_entry_selection_get(data));
1141 }
1142
1143 static void
1144 _signal_entry_cut_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1145 {
1146    Widget_Data *wd = elm_widget_data_get(data);
1147    if (!wd) return;
1148    evas_object_smart_callback_call(data, SIG_SELECTION_CUT, NULL);
1149    elm_selection_set(ELM_SEL_CLIPBOARD, obj, ELM_SEL_MARKUP,
1150                         elm_entry_selection_get(data));
1151    edje_object_part_text_insert(wd->ent, "elm.text", "");
1152    wd->changed = EINA_TRUE;
1153    _sizing_eval(data);
1154 }
1155
1156 static void
1157 _signal_cursor_changed(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1158 {
1159    Widget_Data *wd = elm_widget_data_get(data);
1160    Evas_Coord cx, cy, cw, ch;
1161    if (!wd) return;
1162    evas_object_smart_callback_call(data, SIG_CURSOR_CHANGED, NULL);
1163    edje_object_part_text_cursor_geometry_get(wd->ent, "elm.text",
1164                                              &cx, &cy, &cw, &ch);
1165    if (!wd->deferred_recalc_job)
1166      elm_widget_show_region_set(data, cx, cy, cw, ch);
1167    else
1168      {
1169         wd->deferred_cur = EINA_TRUE;
1170         wd->cx = cx;
1171         wd->cy = cy;
1172         wd->cw = cw;
1173         wd->ch = ch;
1174      }
1175 }
1176
1177 static void
1178 _signal_anchor_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1179 {
1180    Widget_Data *wd = elm_widget_data_get(data);
1181    if (!wd) return;
1182 }
1183
1184 static void
1185 _signal_anchor_up(void *data, Evas_Object *obj __UNUSED__, const char *emission, const char *source __UNUSED__)
1186 {
1187    Widget_Data *wd = elm_widget_data_get(data);
1188    Elm_Entry_Anchor_Info ei;
1189    char *buf2, *p, *p2, *n;
1190    if (!wd) return;
1191    p = strrchr(emission, ',');
1192    if (p)
1193      {
1194         const Eina_List *geoms;
1195
1196         n = p + 1;
1197         p2 = p -1;
1198         while (p2 >= emission)
1199           {
1200              if (*p2 == ',') break;
1201              p2--;
1202           }
1203         p2++;
1204         buf2 = alloca(5 + p - p2);
1205         strncpy(buf2, p2, p - p2);
1206         buf2[p - p2] = 0;
1207         ei.name = n;
1208         ei.button = atoi(buf2);
1209         ei.x = ei.y = ei.w = ei.h = 0;
1210         geoms =
1211           edje_object_part_text_anchor_geometry_get(wd->ent, "elm.text", ei.name);
1212         if (geoms)
1213           {
1214              Evas_Textblock_Rectangle *r;
1215              const Eina_List *l;
1216              Evas_Coord px, py, x, y;
1217
1218              evas_object_geometry_get(wd->ent, &x, &y, NULL, NULL);
1219              evas_pointer_output_xy_get(evas_object_evas_get(wd->ent), &px, &py);
1220              EINA_LIST_FOREACH(geoms, l, r)
1221                {
1222                   if (((r->x + x) <= px) && ((r->y + y) <= py) &&
1223                       ((r->x + x + r->w) > px) && ((r->y + y + r->h) > py))
1224                     {
1225                        ei.x = r->x + x;
1226                        ei.y = r->y + y;
1227                        ei.w = r->w;
1228                        ei.h = r->h;
1229                        break;
1230                     }
1231                }
1232           }
1233         if (!wd->disabled)
1234           evas_object_smart_callback_call(data, SIG_ANCHOR_CLICKED, &ei);
1235      }
1236 }
1237
1238 static void
1239 _signal_anchor_move(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1240 {
1241    Widget_Data *wd = elm_widget_data_get(data);
1242    if (!wd) return;
1243 }
1244
1245 static void
1246 _signal_anchor_in(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1247 {
1248    Widget_Data *wd = elm_widget_data_get(data);
1249    if (!wd) return;
1250 }
1251
1252 static void
1253 _signal_anchor_out(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1254 {
1255    Widget_Data *wd = elm_widget_data_get(data);
1256    if (!wd) return;
1257 }
1258
1259 static void
1260 _signal_key_enter(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1261 {
1262    Widget_Data *wd = elm_widget_data_get(data);
1263    if (!wd) return;
1264    evas_object_smart_callback_call(data, SIG_ACTIVATED, NULL);
1265 }
1266
1267 static void
1268 _signal_mouse_down(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1269 {
1270    Widget_Data *wd = elm_widget_data_get(data);
1271    if (!wd) return;
1272    evas_object_smart_callback_call(data, SIG_PRESS, NULL);
1273 }
1274
1275 static void
1276 _signal_mouse_up(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1277 {
1278    Widget_Data *wd = elm_widget_data_get(data);
1279    if (!wd) return;
1280    evas_object_smart_callback_call(data, SIG_CLICKED, NULL);
1281 }
1282
1283 static void
1284 _signal_mouse_double(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
1285 {
1286    Widget_Data *wd = elm_widget_data_get(data);
1287    if (!wd) return;
1288    evas_object_smart_callback_call(data, SIG_CLICKED_DOUBLE, NULL);
1289 }
1290
1291 #ifdef HAVE_ELEMENTARY_X
1292 static Eina_Bool
1293 _event_selection_notify(void *data, int type __UNUSED__, void *event)
1294 {
1295    Widget_Data *wd = elm_widget_data_get(data);
1296    Ecore_X_Event_Selection_Notify *ev = event;
1297    if (!wd) return ECORE_CALLBACK_PASS_ON;
1298    if (!wd->selection_asked) return ECORE_CALLBACK_PASS_ON;
1299
1300    if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
1301        (ev->selection == ECORE_X_SELECTION_PRIMARY))
1302      {
1303         Ecore_X_Selection_Data_Text *text_data;
1304
1305         text_data = ev->data;
1306         if (text_data->data.content == ECORE_X_SELECTION_CONTENT_TEXT)
1307           {
1308              if (text_data->text)
1309                {
1310                   char *txt = _text_to_mkup(text_data->text);
1311
1312                   if (txt)
1313                     {
1314                        elm_entry_entry_insert(data, txt);
1315                        free(txt);
1316                     }
1317                }
1318           }
1319         wd->selection_asked = EINA_FALSE;
1320      }
1321    return ECORE_CALLBACK_PASS_ON;
1322 }
1323
1324 static Eina_Bool
1325 _event_selection_clear(void *data, int type __UNUSED__, void *event)
1326 {
1327 /*
1328    Widget_Data *wd = elm_widget_data_get(data);
1329    Ecore_X_Event_Selection_Clear *ev = event;
1330    if (!wd) return 1;
1331    if (!wd->have_selection) return 1;
1332    if ((ev->selection == ECORE_X_SELECTION_CLIPBOARD) ||
1333        (ev->selection == ECORE_X_SELECTION_PRIMARY))
1334      {
1335         elm_entry_select_none(data);
1336      }
1337    return 1;*/
1338
1339         // start for cbhm
1340    Evas_Object *top = elm_widget_top_get(data);
1341    Ecore_X_Event_Selection_Clear *ev = event;
1342
1343    if (!top)
1344            return ECORE_CALLBACK_PASS_ON;
1345
1346         if (ev->selection != ECORE_X_SELECTION_SECONDARY)
1347         {
1348                 return ECORE_CALLBACK_PASS_ON;
1349         }
1350
1351         elm_selection_get(1/*ELM_SEL_SECONDARY*/,0x1/*Markup */,data);
1352         // end for cbhm
1353    return ECORE_CALLBACK_PASS_ON;
1354 }
1355 #endif
1356
1357 static Evas_Object *
1358 _get_item(void *data, Evas_Object *edje __UNUSED__, const char *part __UNUSED__, const char *item)
1359 {
1360    Widget_Data *wd = elm_widget_data_get(data);
1361    Evas_Object *o;
1362    Eina_List *l;
1363    Elm_Entry_Item_Provider *ip;
1364    int ok = 0;
1365
1366    EINA_LIST_FOREACH(wd->item_providers, l, ip)
1367      {
1368         o = ip->func(ip->data, data, item);
1369         if (o) return o;
1370      }
1371    o = edje_object_add(evas_object_evas_get(data));
1372    if (!strncmp(item, "emoticon/", 9))
1373      ok = _elm_theme_object_set(data, o, "entry", item, elm_widget_style_get(data));
1374    if (!ok)
1375      _elm_theme_object_set(data, o, "entry/emoticon", "wtf", elm_widget_style_get(data));
1376    return o;
1377 }
1378
1379 static int
1380 _get_value_in_key_string(const char *oldstring, char *key, char **value)
1381 {
1382    char *curlocater, *starttag, *endtag;
1383    int firstindex = 0, foundflag = -1;
1384
1385    curlocater = strstr(oldstring, key);
1386    if (curlocater)
1387      {
1388         starttag = curlocater;
1389         endtag = curlocater + strlen(key);
1390         if (endtag == NULL || *endtag != '=') 
1391           {
1392             foundflag = 0;
1393             return -1;
1394           }
1395
1396         firstindex = abs(oldstring - curlocater);
1397         firstindex += strlen(key)+1; // strlen("key") + strlen("=")
1398         *value = (char*)oldstring + firstindex;
1399
1400         while (oldstring != starttag)
1401           {
1402             if (*starttag == '>')
1403               {
1404                 foundflag = 0;
1405                 break;
1406               }
1407             if (*starttag == '<') 
1408               break;
1409             else 
1410               starttag--;
1411             if (starttag == NULL) break;
1412           }
1413
1414         while (NULL != endtag)
1415           {
1416             if (*endtag == '<')
1417               {
1418                 foundflag = 0;
1419                 break;
1420               }
1421             if (*endtag == '>') 
1422               break;
1423             else 
1424               endtag++;
1425             if (endtag == NULL) break;
1426           }
1427
1428         if (foundflag != 0 && *starttag == '<' && *endtag == '>') 
1429           foundflag = 1;
1430         else 
1431           foundflag = 0;
1432      }
1433    else
1434      {
1435        foundflag = 0;
1436      }
1437
1438    if (foundflag == 1) return 0;
1439
1440    return -1;
1441 }
1442
1443 static int
1444 _strbuf_key_value_replace(Eina_Strbuf *srcbuf, char *key, const char *value, int deleteflag)
1445 {
1446    const char *srcstring = NULL;
1447    Eina_Strbuf *repbuf = NULL, *diffbuf = NULL;
1448    char *curlocater, *replocater;
1449    char *starttag, *endtag;
1450    int tagtxtlen = 0, insertflag = 0;
1451
1452    srcstring = eina_strbuf_string_get(srcbuf);
1453    curlocater = strstr(srcstring, key);
1454
1455    if (curlocater == NULL)
1456      {
1457        insertflag = 1;
1458      }
1459    else
1460      {
1461        do 
1462          {
1463            starttag = strchr(srcstring, '<');
1464            endtag = strchr(srcstring, '>');
1465            tagtxtlen = endtag - starttag;
1466            if (tagtxtlen <= 0) tagtxtlen = 0;
1467            if (starttag < curlocater && curlocater < endtag) break;
1468            if (endtag != NULL && endtag+1 != NULL)
1469              srcstring = endtag+1;
1470            else
1471              break;
1472          } while (strlen(srcstring) > 1);
1473
1474        if (starttag && endtag && tagtxtlen > strlen(key))
1475          {
1476            repbuf = eina_strbuf_new();
1477            diffbuf = eina_strbuf_new();
1478            eina_strbuf_append_n(repbuf, starttag, tagtxtlen);
1479            srcstring = eina_strbuf_string_get(repbuf);
1480            curlocater = strstr(srcstring, key);
1481
1482            if (curlocater != NULL)
1483              {
1484                replocater = curlocater + strlen(key) + 1;
1485
1486                while (*replocater == ' ' || *replocater == '=')
1487                            {
1488                  replocater++;
1489                            }
1490
1491                 while (*replocater != NULL && *replocater != ' ' && *replocater != '>')
1492                   replocater++;
1493
1494                if (replocater-curlocater > strlen(key)+1)
1495                  {
1496                    replocater--;
1497                    eina_strbuf_append_n(diffbuf, curlocater, replocater-curlocater+1);
1498                  }
1499                else
1500                  insertflag = 1;
1501              }
1502            else
1503              {
1504                insertflag = 1;
1505              }
1506            eina_strbuf_reset(repbuf);
1507          }
1508        else
1509          {
1510            insertflag = 1; 
1511          }
1512      }
1513
1514    if (repbuf == NULL) repbuf = eina_strbuf_new();
1515    if (diffbuf == NULL) diffbuf = eina_strbuf_new();
1516
1517    if (insertflag)
1518      {
1519        eina_strbuf_append_printf(repbuf, "<%s=%s>", key, value);
1520        eina_strbuf_prepend(srcbuf, eina_strbuf_string_get(repbuf));
1521      }
1522    else
1523      {
1524         if (deleteflag)
1525           {
1526             eina_strbuf_prepend(diffbuf, "<");
1527             eina_strbuf_append(diffbuf, ">");
1528             eina_strbuf_replace_first(srcbuf, eina_strbuf_string_get(diffbuf), "");
1529           }
1530         else
1531           {
1532             eina_strbuf_append_printf(repbuf, "%s=%s", key, value);
1533             eina_strbuf_replace_first(srcbuf, eina_strbuf_string_get(diffbuf), eina_strbuf_string_get(repbuf));
1534           }
1535      }
1536
1537    if (repbuf) eina_strbuf_free(repbuf);
1538    if (diffbuf) eina_strbuf_free(diffbuf);
1539   
1540    return 0;           
1541 }
1542
1543 static int
1544 _stringshare_key_value_replace(const char **srcstring, char *key, const char *value, int deleteflag)
1545 {
1546    Eina_Strbuf *sharebuf = NULL;   
1547    
1548    sharebuf = eina_strbuf_new();
1549    eina_strbuf_append(sharebuf, *srcstring);
1550    _strbuf_key_value_replace(sharebuf, key, value, deleteflag);
1551    eina_stringshare_del(*srcstring);
1552    *srcstring = eina_stringshare_add(eina_strbuf_string_get(sharebuf));
1553    eina_strbuf_free(sharebuf);
1554
1555    return 0;
1556 }
1557
1558 static int
1559 _is_width_over(Evas_Object *obj)
1560 {
1561    Evas_Coord x, y, w, h;
1562    Evas_Coord vx, vy, vw, vh;
1563    Widget_Data *wd = elm_widget_data_get(obj);
1564
1565    if (!wd) return 0;
1566
1567    edje_object_part_geometry_get(wd->ent,"elm.text",&x,&y,&w,&h);
1568
1569    evas_object_geometry_get (obj, &vx,&vy,&vw,&vh);
1570
1571    if (x >= 0 && y >= 0)
1572            return 0;
1573
1574    if (4 < wd->wrap_w && w > wd->wrap_w)
1575            return 1;
1576
1577    return 0;
1578 }
1579
1580 static void
1581 _reverse_ellipsis_entry(Evas_Object *obj)
1582 {
1583    Widget_Data *wd = elm_widget_data_get(obj);
1584    int cur_fontsize = 0;
1585    Eina_Strbuf *fontbuf = NULL, *txtbuf = NULL;
1586    char **kvalue = NULL;
1587    const char *minfont, *deffont, *maxfont;
1588    const char *ellipsis_string = "...";
1589    int minfontsize, maxfontsize, minshowcount;
1590
1591    minshowcount = strlen(ellipsis_string) + 1;
1592    minfont = edje_object_data_get(wd->ent, "min_font_size");
1593    if (minfont) minfontsize = atoi(minfont);
1594    else minfontsize = 1;
1595    maxfont = edje_object_data_get(wd->ent, "max_font_size");
1596    if (maxfont) maxfontsize = atoi(maxfont);
1597    else maxfontsize = 1;
1598    deffont = edje_object_data_get(wd->ent, "default_font_size");
1599    if (deffont) cur_fontsize = atoi(deffont);
1600    else cur_fontsize = 1;
1601    if (minfontsize == maxfontsize || cur_fontsize == 1) return; // theme is not ready for ellipsis
1602    if (strlen(edje_object_part_text_get(wd->ent, "elm.text")) <= 0) return;
1603
1604    if (_get_value_in_key_string(edje_object_part_text_get(wd->ent, "elm.text"), "font_size", &kvalue) == 0)
1605      {
1606        if (*kvalue != NULL) cur_fontsize = atoi((char*)kvalue);
1607      }
1608
1609    txtbuf = eina_strbuf_new();
1610    eina_strbuf_append(txtbuf, edje_object_part_text_get(wd->ent, "elm.text"));
1611
1612    if (cur_fontsize >= atoi(deffont))
1613      {
1614        if (txtbuf) eina_strbuf_free(txtbuf);
1615        return;
1616      }
1617
1618    if (_is_width_over(obj) != 1)
1619      {
1620        int rev_fontsize = cur_fontsize;
1621   
1622        do {
1623            rev_fontsize++;
1624            if (rev_fontsize > atoi(deffont))
1625              break;
1626
1627            if (fontbuf != NULL)
1628              {
1629                eina_strbuf_free(fontbuf);
1630                fontbuf = NULL;
1631              }
1632            fontbuf = eina_strbuf_new();
1633            eina_strbuf_append_printf(fontbuf, "%d", rev_fontsize);
1634            _strbuf_key_value_replace(txtbuf, "font_size", eina_strbuf_string_get(fontbuf), 0);
1635            edje_object_part_text_set(wd->ent, "elm.text", eina_strbuf_string_get(txtbuf));
1636
1637            eina_strbuf_free(fontbuf);
1638            fontbuf = NULL;
1639          } while (_is_width_over(obj) != 1);
1640
1641        while (_is_width_over(obj))
1642          {
1643            rev_fontsize--;
1644            if (rev_fontsize < atoi(deffont))
1645              break;
1646
1647            if (fontbuf != NULL)
1648              {
1649                eina_strbuf_free(fontbuf);
1650                fontbuf = NULL;
1651              }
1652            fontbuf = eina_strbuf_new();
1653            eina_strbuf_append_printf(fontbuf, "%d", rev_fontsize);
1654            _strbuf_key_value_replace(txtbuf, "font_size", eina_strbuf_string_get(fontbuf), 0);
1655            edje_object_part_text_set(wd->ent, "elm.text", eina_strbuf_string_get(txtbuf));
1656            eina_strbuf_free(fontbuf);
1657            fontbuf = NULL;
1658          }
1659      }
1660
1661    if (txtbuf) eina_strbuf_free(txtbuf);
1662    wd->changed = 1;
1663    _sizing_eval(obj);
1664 }
1665
1666 static void
1667 _ellipsis_entry_to_width(Evas_Object *obj)
1668 {
1669    Widget_Data *wd = elm_widget_data_get(obj);
1670    int cur_fontsize = 0, len, jumpcount;
1671    Eina_Strbuf *fontbuf = NULL, *txtbuf = NULL;
1672    char **kvalue = NULL;
1673    const char *minfont, *deffont, *maxfont;
1674    const char *ellipsis_string = "...";
1675    int minfontsize, maxfontsize, minshowcount;
1676    int i, tagend, cur_len;
1677    char *cur_str;
1678
1679    minshowcount = strlen(ellipsis_string) + 1;
1680    minfont = edje_object_data_get(wd->ent, "min_font_size");
1681    if (minfont) minfontsize = atoi(minfont);
1682    else minfontsize = 1;
1683    maxfont = edje_object_data_get(wd->ent, "max_font_size");
1684    if (maxfont) maxfontsize = atoi(maxfont);
1685    else maxfontsize = 1;
1686    deffont = edje_object_data_get(wd->ent, "default_font_size");
1687    if (deffont) cur_fontsize = atoi(deffont);
1688    else cur_fontsize = 1;
1689    if (minfontsize == maxfontsize || cur_fontsize == 1) return; // theme is not ready for ellipsis
1690    if (strlen(edje_object_part_text_get(wd->ent, "elm.text")) <= 0) return;
1691
1692    if (_get_value_in_key_string(edje_object_part_text_get(wd->ent, "elm.text"), "font_size", &kvalue) == 0)
1693      {
1694        if (*kvalue != NULL) cur_fontsize = atoi((char*)kvalue);
1695      }
1696
1697    txtbuf = eina_strbuf_new();
1698    eina_strbuf_append(txtbuf, edje_object_part_text_get(wd->ent, "elm.text"));
1699
1700    while (_is_width_over(obj))
1701      {
1702        if (wd->ellipsis_threshold == 0)
1703          wd->ellipsis_threshold = _entry_length_get(obj);
1704        if (cur_fontsize > minfontsize)
1705          {
1706            cur_fontsize--;
1707            if (fontbuf != NULL)
1708              {
1709                eina_strbuf_free(fontbuf);
1710                fontbuf = NULL;
1711              }
1712            fontbuf = eina_strbuf_new();
1713            eina_strbuf_append_printf(fontbuf, "%d", cur_fontsize);
1714            _strbuf_key_value_replace(txtbuf, "font_size", eina_strbuf_string_get(fontbuf), 0);
1715            edje_object_part_text_set(wd->ent, "elm.text", eina_strbuf_string_get(txtbuf));
1716            eina_strbuf_free(fontbuf);
1717            fontbuf = NULL;
1718                    edje_object_part_text_cursor_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
1719          }
1720        else
1721          {
1722            len = _entry_length_get(obj);
1723            cur_str = edje_object_part_text_get(wd->ent, "elm.text");
1724            cur_len = strlen(cur_str);
1725            tagend = 0;
1726            for (i = 0; i < len; i++)
1727              {
1728                if(cur_str[i] == '>' && cur_str[i+1] != NULL && 
1729                   cur_str[i+1] != '<')
1730                  {
1731                    tagend = i;
1732                    break;
1733                  }
1734              }
1735            jumpcount = 0;
1736            while (jumpcount < len-strlen(ellipsis_string))
1737              {
1738                cur_str = edje_object_part_text_get(wd->ent, "elm.text");
1739
1740                if (txtbuf != NULL)
1741                  {
1742                    eina_strbuf_free(txtbuf);
1743                    txtbuf = NULL;
1744                  }
1745                txtbuf = eina_strbuf_new();
1746                eina_strbuf_append_n(txtbuf, cur_str, tagend+1);
1747                eina_strbuf_append(txtbuf, ellipsis_string);
1748                eina_strbuf_append(txtbuf, cur_str+tagend+jumpcount+1);
1749                edje_object_part_text_set(wd->ent, "elm.text", eina_strbuf_string_get(txtbuf));
1750                edje_object_part_text_cursor_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
1751
1752                if (_is_width_over(obj)) 
1753                  jumpcount++;
1754                else 
1755                  break;
1756              }
1757          }
1758      }
1759
1760    if (txtbuf) eina_strbuf_free(txtbuf);
1761    wd->changed = 1;
1762    _sizing_eval(obj);
1763 }
1764
1765 static int _textinput_control_function(void *data,void *input_data)
1766 {
1767    /*calculate character count*/
1768    Evas_Object *entry = (Evas_Object *)data;
1769    Widget_Data *wd = elm_widget_data_get((Evas_Object *)data);
1770    char buf[10]="\0";
1771    size_t byte_len;
1772    size_t insert_text_len=0;
1773    char *text = edje_object_part_text_get(wd->ent, "elm.text");
1774    char *insert_text;  
1775    size_t remain_bytes;
1776    if(text!=NULL)
1777      {
1778        byte_len = strlen(text);/*no of bytes*/
1779        remain_bytes = wd->max_no_of_bytes-byte_len;
1780        sprintf(buf,"%d",remain_bytes);
1781        edje_object_part_text_set(wd->ent, "elm_entry_remain_byte_count", buf);
1782        if(input_data)
1783          {
1784            insert_text =  (char *)input_data;
1785            insert_text_len = strlen(insert_text);
1786            if(remain_bytes<insert_text_len)
1787              {
1788                evas_object_smart_callback_call(entry, "maxlength,reached", NULL);
1789                return EINA_TRUE;
1790              }
1791            if(byte_len>=wd->max_no_of_bytes)
1792              {
1793                evas_object_smart_callback_call(entry, "maxlength,reached", NULL);
1794                return EINA_TRUE;
1795              }
1796          }
1797      }
1798    return EINA_FALSE;  
1799 }
1800
1801 /**
1802  * This adds an entry to @p parent object.
1803  *
1804  * @param parent The parent object
1805  * @return The new object or NULL if it cannot be created
1806  *
1807  * @ingroup Entry
1808  */
1809 EAPI Evas_Object *
1810 elm_entry_add(Evas_Object *parent)
1811 {
1812    Evas_Object *obj, *top;
1813    Evas *e;
1814    Widget_Data *wd;
1815
1816    wd = ELM_NEW(Widget_Data);
1817    e = evas_object_evas_get(parent);
1818    wd->bgcolor = EINA_FALSE;
1819    wd->bg = evas_object_rectangle_add(e);
1820    evas_object_color_set(wd->bg, 0, 0, 0, 0);
1821    obj = elm_widget_add(e);
1822    ELM_SET_WIDTYPE(widtype, "entry");
1823    elm_widget_type_set(obj, "entry");
1824    elm_widget_sub_object_add(parent, obj);
1825    elm_widget_on_focus_hook_set(obj, _on_focus_hook, NULL);
1826    elm_widget_data_set(obj, wd);
1827    elm_widget_del_hook_set(obj, _del_hook);
1828    elm_widget_theme_hook_set(obj, _theme_hook);
1829    elm_widget_disable_hook_set(obj, _disable_hook);
1830    elm_widget_signal_emit_hook_set(obj, _signal_emit_hook);
1831    elm_widget_can_focus_set(obj, 1);
1832
1833    wd->linewrap     = EINA_TRUE;
1834    wd->ellipsis     = EINA_FALSE;
1835    wd->char_linewrap= EINA_FALSE;
1836    wd->editable     = EINA_TRUE;
1837    wd->disabled     = EINA_FALSE;
1838    wd->context_menu = EINA_TRUE;
1839
1840    wd->ellipsis_threshold = 0;
1841
1842    wd->ent = edje_object_add(e);
1843    edje_object_item_provider_set(wd->ent, _get_item, obj);
1844    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOVE, _move, obj);
1845    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_RESIZE, _resize, obj);
1846    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_DOWN,
1847                                   _mouse_down, obj);
1848    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_UP,
1849                                   _mouse_up, obj);
1850    evas_object_event_callback_add(wd->ent, EVAS_CALLBACK_MOUSE_MOVE,
1851                                   _mouse_move, obj);
1852
1853    _elm_theme_object_set(obj, wd->ent, "entry", "base", "default");
1854    edje_object_signal_callback_add(wd->ent, "entry,changed", "elm.text",
1855                                    _signal_entry_changed, obj);
1856    edje_object_signal_callback_add(wd->ent, "selection,start", "elm.text",
1857                                    _signal_selection_start, obj);
1858    edje_object_signal_callback_add(wd->ent, "selection,changed", "elm.text",
1859                                    _signal_selection_changed, obj);
1860    edje_object_signal_callback_add(wd->ent, "selection,cleared", "elm.text",
1861                                    _signal_selection_cleared, obj);
1862    edje_object_signal_callback_add(wd->ent, "entry,paste,request", "elm.text",
1863                                    _signal_entry_paste_request, obj);
1864    edje_object_signal_callback_add(wd->ent, "entry,copy,notify", "elm.text",
1865                                    _signal_entry_copy_notify, obj);
1866    edje_object_signal_callback_add(wd->ent, "entry,cut,notify", "elm.text",
1867                                    _signal_entry_cut_notify, obj);
1868    edje_object_signal_callback_add(wd->ent, "cursor,changed", "elm.text",
1869                                    _signal_cursor_changed, obj);
1870    edje_object_signal_callback_add(wd->ent, "anchor,mouse,down,*", "elm.text",
1871                                    _signal_anchor_down, obj);
1872    edje_object_signal_callback_add(wd->ent, "anchor,mouse,up,*", "elm.text",
1873                                    _signal_anchor_up, obj);
1874    edje_object_signal_callback_add(wd->ent, "anchor,mouse,move,*", "elm.text",
1875                                    _signal_anchor_move, obj);
1876    edje_object_signal_callback_add(wd->ent, "anchor,mouse,in,*", "elm.text",
1877                                    _signal_anchor_in, obj);
1878    edje_object_signal_callback_add(wd->ent, "anchor,mouse,out,*", "elm.text",
1879                                    _signal_anchor_out, obj);
1880    edje_object_signal_callback_add(wd->ent, "entry,key,enter", "elm.text",
1881                                    _signal_key_enter, obj);
1882    edje_object_signal_callback_add(wd->ent, "mouse,down,1", "elm.text",
1883                                    _signal_mouse_down, obj);
1884    edje_object_signal_callback_add(wd->ent, "mouse,up,1", "elm.text",
1885                                    _signal_mouse_up, obj);
1886    edje_object_signal_callback_add(wd->ent, "mouse,down,1,double", "elm.text",
1887                                    _signal_mouse_double, obj);
1888    edje_object_part_text_set(wd->ent, "elm.text", "");
1889    elm_widget_resize_object_set(obj, wd->ent);
1890    _sizing_eval(obj);
1891
1892    wd->input_panel_enable = edje_object_part_text_input_panel_enabled_get(wd->ent, "elm.text");
1893
1894 #ifdef HAVE_ELEMENTARY_X
1895    top = elm_widget_top_get(obj);
1896    if ((top) && (elm_win_xwindow_get(top)))
1897      {
1898        wd->sel_notify_handler =
1899          ecore_event_handler_add(ECORE_X_EVENT_SELECTION_NOTIFY,
1900          _event_selection_notify, obj);
1901        wd->sel_clear_handler =
1902          ecore_event_handler_add(ECORE_X_EVENT_SELECTION_CLEAR,
1903          _event_selection_clear, obj);
1904      }
1905 #endif
1906
1907    entries = eina_list_prepend(entries, obj);
1908
1909    // module - find module for entry
1910    wd->api = _module(obj);
1911    // if found - hook in
1912    if ((wd->api) && (wd->api->obj_hook)) wd->api->obj_hook(obj);
1913
1914    // TODO: convert Elementary to subclassing of Evas_Smart_Class
1915    // TODO: and save some bytes, making descriptions per-class and not instance!
1916    evas_object_smart_callbacks_descriptions_set(obj, _signals);
1917    return obj;
1918 }
1919
1920 EAPI void elm_entry_extension_module_data_get(Evas_Object *obj,Elm_Entry_Extension_data *ext_mod)
1921 {
1922    ELM_CHECK_WIDTYPE(obj, widtype);
1923    Widget_Data *wd = elm_widget_data_get(obj);
1924    if (!wd) return;
1925    ext_mod->cancel = _cancel;
1926    ext_mod->copy = _copy;
1927    ext_mod->cut = _cut;
1928    ext_mod->paste = _paste;
1929    ext_mod->select = _select;
1930    ext_mod->selectall = NULL; /* to be implemented*/
1931    ext_mod->ent = wd->ent;
1932    ext_mod->items = wd->items;
1933    ext_mod->longpress_timer = wd->longpress_timer;
1934    ext_mod->editable = wd->editable;
1935    ext_mod->have_selection = wd->have_selection;
1936    ext_mod->password = wd->password;
1937    ext_mod->selmode = wd->selmode;
1938    ext_mod->context_menu = wd->context_menu;
1939 }
1940
1941 /**
1942  * This sets the entry object not to line wrap.  All input will
1943  * be on a single line, and the entry box will extend with user input.
1944  *
1945  * @param obj The entry object
1946  * @param single_line If true, the text in the entry
1947  * will be on a single line.
1948  *
1949  * @ingroup Entry
1950  */
1951 EAPI void
1952 elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line)
1953 {
1954    ELM_CHECK_WIDTYPE(obj, widtype);
1955    Widget_Data *wd = elm_widget_data_get(obj);
1956    const char *t;
1957    Ecore_IMF_Context *ic;
1958    if (!wd) return;
1959    if (wd->single_line == single_line) return;
1960    wd->single_line = single_line;
1961    wd->linewrap = EINA_FALSE;
1962    wd->char_linewrap = EINA_FALSE;
1963    t = eina_stringshare_add(elm_entry_entry_get(obj));
1964    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
1965    elm_entry_entry_set(obj, t);
1966    edje_object_part_text_autocapitalization_set(wd->ent, "elm.text", wd->autocapitalize);
1967 //   edje_object_part_text_autoperiod_set(wd->ent, "elm.text", wd->autoperiod);
1968    ic = elm_entry_imf_context_get(obj);
1969    if (ic)
1970      {
1971         ecore_imf_context_input_panel_layout_set(ic, wd->input_panel_layout);
1972      }
1973
1974    eina_stringshare_del(t);
1975    _sizing_eval(obj);
1976 }
1977
1978 /**
1979  * This returns true if the entry has been set to single line mode.
1980  * See also elm_entry_single_line_set().
1981  *
1982  * @param obj The entry object
1983  * @return single_line If true, the text in the entry is set to display
1984  * on a single line.
1985  *
1986  * @ingroup Entry
1987  */
1988 EAPI Eina_Bool
1989 elm_entry_single_line_get(const Evas_Object *obj)
1990 {
1991    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1992    Widget_Data *wd = elm_widget_data_get(obj);
1993    if (!wd) return EINA_FALSE;
1994    return wd->single_line;
1995 }
1996
1997 /**
1998  * This set's the maximum bytes that can be added in entry.
1999  *
2000  * @param obj The entry object
2001  * @param max_no_of_bytes Maximum number of bytes entry can have.
2002  * 
2003  * @ingroup Entry
2004  */
2005 EAPI void
2006 elm_entry_maximum_bytes_set(Evas_Object *obj, int max_no_of_bytes)
2007 {
2008    Widget_Data *wd = elm_widget_data_get(obj);
2009
2010    wd->max_no_of_bytes = max_no_of_bytes;
2011    edje_object_signal_emit(wd->ent, "elm,state,remain,bytes,show", "elm");
2012    edje_object_part_textinput_callback_set(wd->ent, "elm.text", _textinput_control_function,obj);
2013  }
2014
2015
2016 /**
2017  * This sets the entry object to password mode.  All text entered
2018  * and/or displayed within the widget will be replaced with asterisks (*).
2019  *
2020  * @param obj The entry object
2021  * @param password If true, password mode is enabled.
2022  *
2023  * @ingroup Entry
2024  */
2025 EAPI void
2026 elm_entry_password_set(Evas_Object *obj, Eina_Bool password)
2027 {
2028    ELM_CHECK_WIDTYPE(obj, widtype);
2029    Widget_Data *wd = elm_widget_data_get(obj);
2030    Ecore_IMF_Context *ic;
2031    const char *t;
2032    if (!wd) return;
2033    if (wd->password == password) return;
2034    wd->password = password;
2035    wd->show_last_character = EINA_FALSE;
2036    wd->single_line = EINA_TRUE;
2037    wd->linewrap = EINA_FALSE;
2038    wd->char_linewrap = EINA_FALSE;
2039    t = eina_stringshare_add(elm_entry_entry_get(obj));
2040    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
2041    elm_entry_entry_set(obj, t);
2042
2043    ic = elm_entry_imf_context_get(obj);
2044    if (ic)
2045      {
2046         ecore_imf_context_input_panel_layout_set(ic, wd->input_panel_layout);
2047      }
2048
2049    eina_stringshare_del(t);
2050    _sizing_eval(obj);
2051 }
2052
2053 /**
2054  * This set's the entry in password mode with out masking the last character entered by user,
2055  * and later masking the character after 2 seconds.
2056  
2057  * @param obj The entry object
2058  * @param show_last_character The show_last_character flag (1 for "password mode along with showing last character" 
2059  * 0 for default).
2060  *
2061  * @ingroup Entry
2062  */
2063 EAPI void         
2064 elm_entry_password_show_last_character_set(Evas_Object *obj, Eina_Bool show_last_character)
2065 {
2066    Widget_Data *wd = elm_widget_data_get(obj);
2067    const char *t;
2068    if (!wd) return;
2069    if ((wd->password == show_last_character)&&(wd->show_last_character ==show_last_character))  return;
2070    wd->show_last_character = show_last_character;
2071    wd->password = show_last_character;
2072    wd->single_line = EINA_TRUE;
2073    wd->linewrap = EINA_FALSE;
2074    wd->char_linewrap = EINA_FALSE;
2075    t = eina_stringshare_add(elm_entry_entry_get(obj));
2076     _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
2077    elm_entry_entry_set(obj, t);
2078    eina_stringshare_del(t);
2079    _sizing_eval(obj);
2080 }
2081
2082 /**
2083  * This returns whether password mode is enabled.
2084  * See also elm_entry_password_set().
2085  *
2086  * @param obj The entry object
2087  * @return If true, the entry is set to display all characters
2088  * as asterisks (*).
2089  *
2090  * @ingroup Entry
2091  */
2092 EAPI Eina_Bool
2093 elm_entry_password_get(const Evas_Object *obj)
2094 {
2095    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2096    Widget_Data *wd = elm_widget_data_get(obj);
2097    if (!wd) return EINA_FALSE;
2098    return wd->password;
2099 }
2100
2101 /**
2102  * This sets the text displayed within the entry to @p entry.
2103  *
2104  * @param obj The entry object
2105  * @param entry The text to be displayed
2106  *
2107  * @ingroup Entry
2108  */
2109 EAPI void
2110 elm_entry_entry_set(Evas_Object *obj, const char *entry)
2111 {
2112    ELM_CHECK_WIDTYPE(obj, widtype);
2113    Widget_Data *wd = elm_widget_data_get(obj);
2114    if (!wd) return;
2115    if (!entry) entry = "";
2116    if(wd->max_no_of_bytes)
2117      {
2118        int len = strlen(entry);
2119        if(len > wd->max_no_of_bytes)
2120        {
2121          ERR("[ERROR]the length of the text set is more than max no of bytes, text cannot be set");
2122          return;
2123        }
2124      }
2125    edje_object_part_text_set(wd->ent, "elm.text", entry);
2126    if (wd->text) eina_stringshare_del(wd->text);
2127    wd->text = NULL;
2128    wd->changed = EINA_TRUE;
2129    _sizing_eval(obj);
2130 }
2131
2132 /**
2133  * This returns the text currently shown in object @p entry.
2134  * See also elm_entry_entry_set().
2135  *
2136  * @param obj The entry object
2137  * @return The currently displayed text or NULL on failure
2138  *
2139  * @ingroup Entry
2140  */
2141 EAPI const char *
2142 elm_entry_entry_get(const Evas_Object *obj)
2143 {
2144    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2145    Widget_Data *wd = elm_widget_data_get(obj);
2146    const char *text;
2147    if (!wd) return NULL;
2148    if (wd->text) return wd->text;
2149    text = edje_object_part_text_get(wd->ent, "elm.text");
2150    if (!text)
2151      {
2152 ERR("text=NULL for edje %p, part 'elm.text'", wd->ent);
2153 return NULL;
2154      }
2155    eina_stringshare_replace(&wd->text, text);
2156    return wd->text;
2157 }
2158
2159 /**
2160  * This returns all selected text within the entry.
2161  *
2162  * @param obj The entry object
2163  * @return The selected text within the entry or NULL on failure
2164  *
2165  * @ingroup Entry
2166  */
2167 EAPI const char *
2168 elm_entry_selection_get(const Evas_Object *obj)
2169 {
2170    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2171    Widget_Data *wd = elm_widget_data_get(obj);
2172    if (!wd) return NULL;
2173    return edje_object_part_text_selection_get(wd->ent, "elm.text");
2174 }
2175
2176 /**
2177  * This inserts text in @p entry at the beginning of the entry
2178  * object.
2179  *
2180  * @param obj The entry object
2181  * @param entry The text to insert
2182  *
2183  * @ingroup Entry
2184  */
2185 EAPI void
2186 elm_entry_entry_insert(Evas_Object *obj, const char *entry)
2187 {
2188    ELM_CHECK_WIDTYPE(obj, widtype);
2189    Widget_Data *wd = elm_widget_data_get(obj);
2190    if (!wd) return;
2191    edje_object_part_text_insert(wd->ent, "elm.text", entry);
2192    wd->changed = EINA_TRUE;
2193    _sizing_eval(obj);
2194 }
2195
2196 /**
2197  * This enables word line wrapping in the entry object.  It is the opposite
2198  * of elm_entry_single_line_set().  Additionally, setting this disables
2199  * character line wrapping.
2200  * See also elm_entry_line_char_wrap_set().
2201  *
2202  * @param obj The entry object
2203  * @param wrap If true, the entry will be wrapped once it reaches the end
2204  * of the object. Wrapping will occur at the end of the word before the end of the
2205  * object.
2206  *
2207  * @ingroup Entry
2208  */
2209 EAPI void
2210 elm_entry_line_wrap_set(Evas_Object *obj, Eina_Bool wrap)
2211 {
2212    ELM_CHECK_WIDTYPE(obj, widtype);
2213    Widget_Data *wd = elm_widget_data_get(obj);
2214    const char *t;
2215    if (!wd) return;
2216    if (wd->linewrap == wrap) return;
2217    wd->linewrap = wrap;
2218    if(wd->linewrap)
2219        wd->char_linewrap = EINA_FALSE;
2220    t = eina_stringshare_add(elm_entry_entry_get(obj));
2221    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
2222    elm_entry_entry_set(obj, t);
2223    eina_stringshare_del(t);
2224    _sizing_eval(obj);
2225 }
2226
2227 /**
2228  * Set wrap width of the entry
2229  *
2230  * @param obj The entry object
2231  * @param w The wrap width in pixels at a minimum where words need to wrap
2232  * @ingroup Entry
2233  */
2234 EAPI void
2235 elm_entry_wrap_width_set(Evas_Object *obj, Evas_Coord w)
2236 {
2237    Widget_Data *wd = elm_widget_data_get(obj);
2238    if (wd->wrap_w == w) return;
2239    wd->wrap_w = w;
2240    _sizing_eval(obj);
2241 }
2242
2243 /**
2244  * get wrap width of the entry
2245  *
2246  * @param obj The entry object
2247  * @return The wrap width in pixels at a minimum where words need to wrap
2248  * @ingroup Entry
2249  */
2250 EAPI Evas_Coord
2251 elm_entry_wrap_width_get(const Evas_Object *obj)
2252 {
2253    Widget_Data *wd = elm_widget_data_get(obj);
2254    return wd->wrap_w;
2255 }
2256
2257 /**
2258  * This enables character line wrapping in the entry object.  It is the opposite
2259  * of elm_entry_single_line_set().  Additionally, setting this disables
2260  * word line wrapping.
2261  * See also elm_entry_line_wrap_set().
2262  *
2263  * @param obj The entry object
2264  * @param wrap If true, the entry will be wrapped once it reaches the end
2265  * of the object. Wrapping will occur immediately upon reaching the end of the object.
2266  *
2267  * @ingroup Entry
2268  */
2269 EAPI void
2270 elm_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap)
2271 {
2272    ELM_CHECK_WIDTYPE(obj, widtype);
2273    Widget_Data *wd = elm_widget_data_get(obj);
2274    const char *t;
2275    if (!wd) return;
2276    if (wd->char_linewrap == wrap) return;
2277    wd->char_linewrap = wrap;
2278    if(wd->char_linewrap)
2279        wd->linewrap = EINA_FALSE;
2280    t = eina_stringshare_add(elm_entry_entry_get(obj));
2281    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
2282    elm_entry_entry_set(obj, t);
2283    eina_stringshare_del(t);
2284    _sizing_eval(obj);
2285 }
2286
2287 /**
2288  * This sets the editable attribute of the entry.
2289  *
2290  * @param obj The entry object
2291  * @param editable If true, the entry will be editable by the user.
2292  * If false, it will be set to the disabled state.
2293  *
2294  * @ingroup Entry
2295  */
2296 EAPI void
2297 elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable)
2298 {
2299    ELM_CHECK_WIDTYPE(obj, widtype);
2300    Widget_Data *wd = elm_widget_data_get(obj);
2301    const char *t;
2302    if (!wd) return;
2303    if (wd->editable == editable) return;
2304    wd->editable = editable;
2305    t = eina_stringshare_add(elm_entry_entry_get(obj));
2306    _elm_theme_object_set(obj, wd->ent, "entry", _getbase(obj), elm_widget_style_get(obj));
2307    elm_entry_entry_set(obj, t);
2308    eina_stringshare_del(t);
2309    _sizing_eval(obj);
2310 }
2311
2312 /**
2313  * This gets the editable attribute of the entry.
2314  * See also elm_entry_editable_set().
2315  *
2316  * @param obj The entry object
2317  * @return If true, the entry is editable by the user.
2318  * If false, it is not editable by the user
2319  *
2320  * @ingroup Entry
2321  */
2322 EAPI Eina_Bool
2323 elm_entry_editable_get(const Evas_Object *obj)
2324 {
2325    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2326    Widget_Data *wd = elm_widget_data_get(obj);
2327    if (!wd) return EINA_FALSE;
2328    return wd->editable;
2329 }
2330
2331 /**
2332  * This drops any existing text selection within the entry.
2333  *
2334  * @param obj The entry object
2335  *
2336  * @ingroup Entry
2337  */
2338 EAPI void
2339 elm_entry_select_none(Evas_Object *obj)
2340 {
2341    ELM_CHECK_WIDTYPE(obj, widtype);
2342    Widget_Data *wd = elm_widget_data_get(obj);
2343    if (!wd) return;
2344    if (wd->selmode)
2345      {
2346        wd->selmode = EINA_FALSE;
2347        edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
2348        edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
2349      }
2350    wd->have_selection = EINA_FALSE;
2351    edje_object_part_text_select_none(wd->ent, "elm.text");
2352 }
2353
2354 /**
2355  * This selects all text within the entry.
2356  *
2357  * @param obj The entry object
2358  *
2359  * @ingroup Entry
2360  */
2361 EAPI void
2362 elm_entry_select_all(Evas_Object *obj)
2363 {
2364    ELM_CHECK_WIDTYPE(obj, widtype);
2365    Widget_Data *wd = elm_widget_data_get(obj);
2366    if (!wd) return;
2367    if (wd->selmode)
2368      {
2369        wd->selmode = EINA_FALSE;
2370        edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
2371        edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
2372      }
2373    wd->have_selection = EINA_TRUE;
2374    edje_object_part_text_select_all(wd->ent, "elm.text");
2375 }
2376
2377 /**
2378  * This moves the cursor one place to the right within the entry.
2379  *
2380  * @param obj The entry object
2381  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2382  *
2383  * @ingroup Entry
2384  */
2385 EAPI Eina_Bool
2386 elm_entry_cursor_next(Evas_Object *obj)
2387 {
2388    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2389    Widget_Data *wd = elm_widget_data_get(obj);
2390    if (!wd) return EINA_FALSE;
2391    return edje_object_part_text_cursor_next(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2392 }
2393
2394 /**
2395  * This moves the cursor one place to the left within the entry.
2396  *
2397  * @param obj The entry object
2398  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2399  *
2400  * @ingroup Entry
2401  */
2402 EAPI Eina_Bool
2403 elm_entry_cursor_prev(Evas_Object *obj)
2404 {
2405    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2406    Widget_Data *wd = elm_widget_data_get(obj);
2407    if (!wd) return EINA_FALSE;
2408    return edje_object_part_text_cursor_prev(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2409 }
2410
2411 /**
2412  * This moves the cursor one line up within the entry.
2413  *
2414  * @param obj The entry object
2415  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2416  *
2417  * @ingroup Entry
2418  */
2419 EAPI Eina_Bool
2420 elm_entry_cursor_up(Evas_Object *obj)
2421 {
2422    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2423    Widget_Data *wd = elm_widget_data_get(obj);
2424    if (!wd) return EINA_FALSE;
2425    return edje_object_part_text_cursor_up(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2426 }
2427
2428 /**
2429  * This moves the cursor one line down within the entry.
2430  *
2431  * @param obj The entry object
2432  * @return EINA_TRUE upon success, EINA_FALSE upon failure
2433  *
2434  * @ingroup Entry
2435  */
2436 EAPI Eina_Bool
2437 elm_entry_cursor_down(Evas_Object *obj)
2438 {
2439    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2440    Widget_Data *wd = elm_widget_data_get(obj);
2441    if (!wd) return EINA_FALSE;
2442    return edje_object_part_text_cursor_down(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2443 }
2444
2445 /**
2446  * This moves the cursor to the beginning of the entry.
2447  *
2448  * @param obj The entry object
2449  *
2450  * @ingroup Entry
2451  */
2452 EAPI void
2453 elm_entry_cursor_begin_set(Evas_Object *obj)
2454 {
2455    ELM_CHECK_WIDTYPE(obj, widtype);
2456    Widget_Data *wd = elm_widget_data_get(obj);
2457    if (!wd) return;
2458    edje_object_part_text_cursor_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2459 }
2460
2461 /**
2462  * This moves the cursor to the end of the entry.
2463  *
2464  * @param obj The entry object
2465  *
2466  * @ingroup Entry
2467  */
2468 EAPI void
2469 elm_entry_cursor_end_set(Evas_Object *obj)
2470 {
2471    ELM_CHECK_WIDTYPE(obj, widtype);
2472    Widget_Data *wd = elm_widget_data_get(obj);
2473    if (!wd) return;
2474    edje_object_part_text_cursor_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2475 }
2476
2477 /**
2478  * This moves the cursor to the beginning of the current line.
2479  *
2480  * @param obj The entry object
2481  *
2482  * @ingroup Entry
2483  */
2484 EAPI void
2485 elm_entry_cursor_line_begin_set(Evas_Object *obj)
2486 {
2487    ELM_CHECK_WIDTYPE(obj, widtype);
2488    Widget_Data *wd = elm_widget_data_get(obj);
2489    if (!wd) return;
2490    edje_object_part_text_cursor_line_begin_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2491 }
2492
2493 /**
2494  * This moves the cursor to the end of the current line.
2495  *
2496  * @param obj The entry object
2497  *
2498  * @ingroup Entry
2499  */
2500 EAPI void
2501 elm_entry_cursor_line_end_set(Evas_Object *obj)
2502 {
2503    ELM_CHECK_WIDTYPE(obj, widtype);
2504    Widget_Data *wd = elm_widget_data_get(obj);
2505    if (!wd) return;
2506    edje_object_part_text_cursor_line_end_set(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2507 }
2508
2509 /**
2510  * This begins a selection within the entry as though
2511  * the user were holding down the mouse button to make a selection.
2512  *
2513  * @param obj The entry object
2514  *
2515  * @ingroup Entry
2516  */
2517 EAPI void
2518 elm_entry_cursor_selection_begin(Evas_Object *obj)
2519 {
2520    ELM_CHECK_WIDTYPE(obj, widtype);
2521    Widget_Data *wd = elm_widget_data_get(obj);
2522    if (!wd) return;
2523    edje_object_part_text_select_begin(wd->ent, "elm.text");
2524 }
2525
2526 /**
2527  * This ends a selection within the entry as though
2528  * the user had just released the mouse button while making a selection.
2529  *
2530  * @param obj The entry object
2531  *
2532  * @ingroup Entry
2533  */
2534 EAPI void
2535 elm_entry_cursor_selection_end(Evas_Object *obj)
2536 {
2537    ELM_CHECK_WIDTYPE(obj, widtype);
2538    Widget_Data *wd = elm_widget_data_get(obj);
2539    if (!wd) return;
2540    edje_object_part_text_select_extend(wd->ent, "elm.text");
2541 }
2542
2543 /**
2544  * TODO: fill this in
2545  *
2546  * @param obj The entry object
2547  * @return TODO: fill this in
2548  *
2549  * @ingroup Entry
2550  */
2551 EAPI Eina_Bool
2552 elm_entry_cursor_is_format_get(const Evas_Object *obj)
2553 {
2554    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2555    Widget_Data *wd = elm_widget_data_get(obj);
2556    if (!wd) return EINA_FALSE;
2557    return edje_object_part_text_cursor_is_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2558 }
2559
2560 /**
2561  * This returns whether the cursor is visible.
2562  *
2563  * @param obj The entry object
2564  * @return If true, the cursor is visible.
2565  *
2566  * @ingroup Entry
2567  */
2568 EAPI Eina_Bool
2569 elm_entry_cursor_is_visible_format_get(const Evas_Object *obj)
2570 {
2571    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2572    Widget_Data *wd = elm_widget_data_get(obj);
2573    if (!wd) return EINA_FALSE;
2574    return edje_object_part_text_cursor_is_visible_format_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2575 }
2576
2577 /**
2578  * TODO: fill this in
2579  *
2580  * @param obj The entry object
2581  * @return TODO: fill this in
2582  *
2583  * @ingroup Entry
2584  */
2585 EAPI const char *
2586 elm_entry_cursor_content_get(const Evas_Object *obj)
2587 {
2588    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2589    Widget_Data *wd = elm_widget_data_get(obj);
2590    if (!wd) return NULL;
2591    return edje_object_part_text_cursor_content_get(wd->ent, "elm.text", EDJE_CURSOR_MAIN);
2592 }
2593
2594 /**
2595  * This executes a "cut" action on the selected text in the entry.
2596  *
2597  * @param obj The entry object
2598  *
2599  * @ingroup Entry
2600  */
2601 EAPI void
2602 elm_entry_selection_cut(Evas_Object *obj)
2603 {
2604    ELM_CHECK_WIDTYPE(obj, widtype);
2605    Widget_Data *wd = elm_widget_data_get(obj);
2606    if (!wd) return;
2607    _cut(obj, NULL, NULL);
2608 }
2609
2610 /**
2611  * This executes a "copy" action on the selected text in the entry.
2612  *
2613  * @param obj The entry object
2614  *
2615  * @ingroup Entry
2616  */
2617 EAPI void
2618 elm_entry_selection_copy(Evas_Object *obj)
2619 {
2620    ELM_CHECK_WIDTYPE(obj, widtype);
2621    Widget_Data *wd = elm_widget_data_get(obj);
2622    if (!wd) return;
2623    _copy(obj, NULL, NULL);
2624 }
2625
2626 /**
2627  * This executes a "paste" action in the entry.
2628  *
2629  * @param obj The entry object
2630  *
2631  * @ingroup Entry
2632  */
2633 EAPI void
2634 elm_entry_selection_paste(Evas_Object *obj)
2635 {
2636    ELM_CHECK_WIDTYPE(obj, widtype);
2637    Widget_Data *wd = elm_widget_data_get(obj);
2638    if (!wd) return;
2639    _paste(obj, NULL, NULL);
2640 }
2641
2642 /**
2643  * This clears and frees the items in a entry's contextual (right click) menu.
2644  *
2645  * @param obj The entry object
2646  *
2647  * @ingroup Entry
2648  */
2649 EAPI void
2650 elm_entry_context_menu_clear(Evas_Object *obj)
2651 {
2652    ELM_CHECK_WIDTYPE(obj, widtype);
2653    Widget_Data *wd = elm_widget_data_get(obj);
2654    Elm_Entry_Context_Menu_Item *it;
2655    if (!wd) return;
2656    EINA_LIST_FREE(wd->items, it)
2657      {
2658         eina_stringshare_del(it->label);
2659         eina_stringshare_del(it->icon_file);
2660         eina_stringshare_del(it->icon_group);
2661         free(it);
2662      }
2663 }
2664
2665 /**
2666  * This adds an item to the entry's contextual menu.
2667  *
2668  * @param obj The entry object
2669  * @param label The item's text label
2670  * @param icon_file The item's icon file
2671  * @param icon_type The item's icon type
2672  * @param func The callback to execute when the item is clicked
2673  * @param data The data to associate with the item for related functions
2674  *
2675  * @ingroup Entry
2676  */
2677 EAPI void
2678 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)
2679 {
2680    ELM_CHECK_WIDTYPE(obj, widtype);
2681    Widget_Data *wd = elm_widget_data_get(obj);
2682    Elm_Entry_Context_Menu_Item *it;
2683    if (!wd) return;
2684    it = calloc(1, sizeof(Elm_Entry_Context_Menu_Item));
2685    if (!it) return;
2686    wd->items = eina_list_append(wd->items, it);
2687    it->obj = obj;
2688    it->label = eina_stringshare_add(label);
2689    it->icon_file = eina_stringshare_add(icon_file);
2690    it->icon_type = icon_type;
2691    it->func = func;
2692    it->data = (void *)data;
2693 }
2694
2695 /**
2696  * This disables the entry's contextual (right click) menu.
2697  *
2698  * @param obj The entry object
2699  * @param disabled If true, the menu is disabled
2700  *
2701  * @ingroup Entry
2702  */
2703 EAPI void
2704 elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled)
2705 {
2706    ELM_CHECK_WIDTYPE(obj, widtype);
2707    Widget_Data *wd = elm_widget_data_get(obj);
2708    if (!wd) return;
2709    if (wd->context_menu == !disabled) return;
2710    wd->context_menu = !disabled;
2711 }
2712
2713 /**
2714  * This returns whether the entry's contextual (right click) menu is disabled.
2715  *
2716  * @param obj The entry object
2717  * @return If true, the menu is disabled
2718  *
2719  * @ingroup Entry
2720  */
2721 EAPI Eina_Bool
2722 elm_entry_context_menu_disabled_get(const Evas_Object *obj)
2723 {
2724    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2725    Widget_Data *wd = elm_widget_data_get(obj);
2726    if (!wd) return EINA_FALSE;
2727    return !wd->context_menu;
2728 }
2729
2730 /**
2731  * This appends a custom item provider to the list for that entry
2732  *
2733  * This appends the given callback. The list is walked from beginning to end
2734  * with each function called given the item href string in the text. If the
2735  * function returns an object handle other than NULL (it should create an
2736  * and object to do this), then this object is used to replace that item. If
2737  * not the next provider is called until one provides an item object, or the
2738  * default provider in entry does.
2739  * 
2740  * @param obj The entry object
2741  * @param func The function called to provide the item object
2742  * @param data The data passed to @p func
2743  *
2744  * @ingroup Entry
2745  */
2746 EAPI void
2747 elm_entry_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
2748 {
2749    ELM_CHECK_WIDTYPE(obj, widtype);
2750    Widget_Data *wd = elm_widget_data_get(obj);
2751    if (!wd) return;
2752    if (!func) return;
2753    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
2754    if (!ip) return;
2755    ip->func = func;
2756    ip->data = data;
2757    wd->item_providers = eina_list_append(wd->item_providers, ip);
2758 }
2759
2760 /**
2761  * This prepends a custom item provider to the list for that entry
2762  *
2763  * This prepends the given callback. See elm_entry_item_provider_append() for
2764  * more information
2765  * 
2766  * @param obj The entry object
2767  * @param func The function called to provide the item object
2768  * @param data The data passed to @p func
2769  *
2770  * @ingroup Entry
2771  */
2772 EAPI void
2773 elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
2774 {
2775    ELM_CHECK_WIDTYPE(obj, widtype);
2776    Widget_Data *wd = elm_widget_data_get(obj);
2777    if (!wd) return;
2778    if (!func) return;
2779    Elm_Entry_Item_Provider *ip = calloc(1, sizeof(Elm_Entry_Item_Provider));
2780    if (!ip) return;
2781    ip->func = func;
2782    ip->data = data;
2783    wd->item_providers = eina_list_prepend(wd->item_providers, ip);
2784 }
2785
2786 /**
2787  * This removes a custom item provider to the list for that entry
2788  *
2789  * This removes the given callback. See elm_entry_item_provider_append() for
2790  * more information
2791  * 
2792  * @param obj The entry object
2793  * @param func The function called to provide the item object
2794  * @param data The data passed to @p func
2795  *
2796  * @ingroup Entry
2797  */
2798 EAPI void
2799 elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data)
2800 {
2801    ELM_CHECK_WIDTYPE(obj, widtype);
2802    Widget_Data *wd = elm_widget_data_get(obj);
2803    Eina_List *l;
2804    Elm_Entry_Item_Provider *ip;
2805    if (!wd) return;
2806    if (!func) return;
2807    EINA_LIST_FOREACH(wd->item_providers, l, ip)
2808      {
2809         if ((ip->func == func) && (ip->data == data))
2810           {
2811              wd->item_providers = eina_list_remove_list(wd->item_providers, l);
2812              free(ip);
2813              return;
2814           }
2815      }
2816 }
2817
2818 /**
2819  * This converts a markup (HTML-like) string into UTF-8.
2820  *
2821  * @param s The string (in markup) to be converted
2822  * @return The converted string (in UTF-8)
2823  *
2824  * @ingroup Entry
2825  */
2826 EAPI char *
2827 elm_entry_markup_to_utf8(const char *s)
2828 {
2829    char *ss = _mkup_to_text(s);
2830    if (!ss) ss = strdup("");
2831    return ss;
2832 }
2833
2834 /**
2835  * This converts a UTF-8 string into markup (HTML-like).
2836  *
2837  * @param s The string (in UTF-8) to be converted
2838  * @return The converted string (in markup)
2839  *
2840  * @ingroup Entry
2841  */
2842 EAPI char *
2843 elm_entry_utf8_to_markup(const char *s)
2844 {
2845    char *ss = _text_to_mkup(s);
2846    if (!ss) ss = strdup("");
2847    return ss;
2848 }
2849
2850 /**
2851  * Get the input method context in the entry widget
2852  *
2853  * @param obj The entry object
2854  * @return The input method context
2855  *
2856  * @ingroup Entry
2857  */
2858 EAPI Ecore_IMF_Context *elm_entry_imf_context_get(Evas_Object *obj)
2859 {
2860    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2861    Widget_Data *wd = elm_widget_data_get(obj);
2862    if (!wd || !wd->ent) return NULL;
2863   
2864    return edje_object_part_text_imf_context_get(wd->ent, "elm.text");
2865 }
2866
2867 /**
2868  * Set whether entry should enable the return key on soft keyboard automatically
2869  *
2870  * @param obj The entry object
2871  * @param on If true, entry enables the return key on soft keyboard automatically.
2872  *
2873  * @ingroup Entry
2874  */
2875 EAPI void 
2876 elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on)
2877 {
2878    ELM_CHECK_WIDTYPE(obj, widtype);
2879    Widget_Data *wd = elm_widget_data_get(obj);
2880    if (!wd) return;
2881
2882    wd->autoreturnkey = on;
2883    _check_enable_returnkey(obj);
2884 }
2885
2886 /**
2887  * Set whether entry should support auto capitalization
2888  *
2889  * @param obj The entry object
2890  * @param on If true, entry suports auto capitalization.
2891  *
2892  * @ingroup Entry
2893  */
2894 EAPI void 
2895 elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap)
2896 {
2897    ELM_CHECK_WIDTYPE(obj, widtype);
2898    Widget_Data *wd = elm_widget_data_get(obj);
2899    if (!wd) return;
2900
2901    if (wd->password)
2902        wd->autocapitalize = EINA_FALSE;
2903    else
2904        wd->autocapitalize = autocap;
2905
2906    edje_object_part_text_autocapitalization_set(wd->ent, "elm.text", wd->autocapitalize);
2907 }
2908
2909 /**
2910  * Set whether entry should support auto period
2911  *
2912  * @param obj The entry object
2913  * @param on If true, entry suports auto period.
2914  *
2915  * @ingroup Entry
2916  */
2917 EAPI void 
2918 elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod)
2919 {
2920    ELM_CHECK_WIDTYPE(obj, widtype);
2921    Widget_Data *wd = elm_widget_data_get(obj);
2922    if (!wd) return;
2923
2924    if (wd->password)
2925        wd->autoperiod = EINA_FALSE;
2926    else
2927        wd->autoperiod = autoperiod;
2928
2929 //   edje_object_part_text_autoperiod_set(wd->ent, "elm.text", wd->autoperiod);
2930 }
2931
2932 /**
2933  * Set the font size on the entry object
2934  *
2935  * @param obj The entry object
2936  * @param size font size
2937  *
2938  * @ingroup Entry
2939  */
2940 EAPI void
2941 elm_entry_fontsize_set(Evas_Object *obj, int fontsize)
2942 {
2943    ELM_CHECK_WIDTYPE(obj, widtype);
2944    Widget_Data *wd = elm_widget_data_get(obj);
2945    Eina_Strbuf *fontbuf = NULL;
2946    int removeflag = 0;
2947    const char *t;
2948
2949    if (!wd) return;
2950    t = eina_stringshare_add(elm_entry_entry_get(obj));
2951    fontbuf = eina_strbuf_new();
2952    eina_strbuf_append_printf(fontbuf, "%d", fontsize);
2953
2954    if (fontsize == 0) removeflag = 1; // remove fontsize tag
2955
2956    if (_stringshare_key_value_replace(&t, "font_size", eina_strbuf_string_get(fontbuf), removeflag) == 0)
2957      {
2958        elm_entry_entry_set(obj, t);
2959        wd->changed = 1;
2960        _sizing_eval(obj);
2961      }
2962    eina_strbuf_free(fontbuf);
2963    eina_stringshare_del(t);
2964 }
2965
2966 /**
2967  * Set the text align on the entry object
2968  *
2969  * @param obj The entry object
2970  * @param align align mode
2971  *
2972  * @ingroup Entry
2973  */
2974 EAPI void
2975 elm_entry_text_align_set(Evas_Object *obj, const char *alignmode)
2976 {
2977    ELM_CHECK_WIDTYPE(obj, widtype);
2978    Widget_Data *wd = elm_widget_data_get(obj);
2979    int len;
2980    const char *t;
2981
2982    if (!wd) return;
2983    t = eina_stringshare_add(elm_entry_entry_get(obj));
2984    len = strlen(t);
2985    if (len <= 0) return;
2986
2987    if (_stringshare_key_value_replace(&t, "align", alignmode, 0) == 0)
2988      elm_entry_entry_set(obj, t);
2989
2990    wd->changed = 1;
2991    _sizing_eval(obj);
2992    eina_stringshare_del(t);
2993 }
2994
2995 /**
2996  * Set the text color on the entry object
2997  *
2998  * @param obj The entry object
2999  * @param r Red property background color of The entry object 
3000  * @param g Green property background color of The entry object 
3001  * @param b Blue property background color of The entry object 
3002  * @param a Alpha property background alpha of The entry object 
3003  *
3004  * @ingroup Entry
3005  */
3006 EAPI void
3007 elm_entry_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a)
3008 {
3009    ELM_CHECK_WIDTYPE(obj, widtype);
3010    Widget_Data *wd = elm_widget_data_get(obj);
3011    Eina_Strbuf *colorbuf = NULL;
3012    const char *t;
3013    int len;
3014
3015    if (!wd) return;
3016    t = eina_stringshare_add(elm_entry_entry_get(obj));
3017    len = strlen(t);
3018    if (len <= 0) return;
3019    colorbuf = eina_strbuf_new();
3020    eina_strbuf_append_printf(colorbuf, "#%02X%02X%02X%02X", r, g, b, a);
3021
3022    if (_stringshare_key_value_replace(&t, "color", eina_strbuf_string_get(colorbuf), 0) == 0)
3023      {
3024        elm_entry_entry_set(obj, t);
3025        wd->changed = 1;
3026        _sizing_eval(obj);
3027      }
3028    eina_strbuf_free(colorbuf);
3029    eina_stringshare_del(t);
3030 }
3031
3032
3033 /**
3034  * Set background color of the entry
3035  *
3036  * @param obj The entry object
3037  * @param r Red property background color of The entry object 
3038  * @param g Green property background color of The entry object 
3039  * @param b Blue property background color of The entry object 
3040  * @param a Alpha property background alpha of The entry object 
3041  * @ingroup Entry
3042  */
3043 EAPI void
3044 elm_entry_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a)
3045 {
3046    ELM_CHECK_WIDTYPE(obj, widtype);
3047    Widget_Data *wd = elm_widget_data_get(obj);
3048    evas_object_color_set(wd->bg, r, g, b, a);
3049
3050    if (wd->bgcolor == EINA_FALSE)
3051      {
3052        wd->bgcolor = 1;
3053        edje_object_part_swallow(wd->ent, "entry.swallow.background", wd->bg);
3054      }
3055 }
3056
3057 /**
3058  * Set the ellipsis behavior of the entry
3059  *
3060  * @param obj The entry object
3061  * @param ellipsis To ellipsis text or not
3062  * @ingroup Entry
3063  */
3064 EAPI void
3065 elm_entry_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis)
3066 {
3067    ELM_CHECK_WIDTYPE(obj, widtype);
3068    Widget_Data *wd = elm_widget_data_get(obj);
3069    if (wd->ellipsis == ellipsis) return;
3070    wd->ellipsis = ellipsis;
3071    wd->changed = 1;
3072    _sizing_eval(obj);
3073 }
3074
3075 /**
3076  * This sets the attribute to show the input panel automatically.
3077  *
3078  * @param obj The entry object
3079  * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
3080  *
3081  * @ingroup Entry
3082  */
3083 EAPI void
3084 elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled)
3085 {
3086    ELM_CHECK_WIDTYPE(obj, widtype);
3087    Widget_Data *wd = elm_widget_data_get(obj);
3088    if (!wd) return;
3089
3090    wd->input_panel_enable = enabled;
3091    edje_object_part_text_input_panel_enabled_set(wd->ent, "elm.text", enabled);
3092 }
3093
3094 /**
3095  * Set the input panel layout of the entry
3096  *
3097  * @param obj The entry object
3098  * @param layout the layout to set
3099  *
3100  * @ingroup Entry
3101  */
3102 EAPI void
3103 elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout)
3104 {
3105    ELM_CHECK_WIDTYPE(obj, widtype);
3106    Widget_Data *wd = elm_widget_data_get(obj);
3107    if (!wd) return;
3108    
3109    Ecore_IMF_Context *ic = elm_entry_imf_context_get(obj);
3110    if (!ic) return;
3111
3112    wd->input_panel_layout = layout;
3113    
3114    ecore_imf_context_input_panel_layout_set(ic, (Ecore_IMF_Input_Panel_Layout)layout);
3115 }