[Magnifier,Selection] Selection refactoring, implement copy&paste v1.2, GUI 0.6
[framework/uifw/elementary.git] / src / lib / elm_entry.h
1 /**
2  * @defgroup Entry Entry
3  * @ingroup Elementary
4  *
5  * @image html entry_inheritance_tree.png
6  * @image latex entry_inheritance_tree.eps
7  *
8  * @image html img/widget/entry/preview-00.png
9  * @image latex img/widget/entry/preview-00.eps width=\textwidth
10  * @image html img/widget/entry/preview-01.png
11  * @image latex img/widget/entry/preview-01.eps width=\textwidth
12  * @image html img/widget/entry/preview-02.png
13  * @image latex img/widget/entry/preview-02.eps width=\textwidth
14  * @image html img/widget/entry/preview-03.png
15  * @image latex img/widget/entry/preview-03.eps width=\textwidth
16  *
17  * An entry is a convenience widget which shows a box that the user can
18  * enter text into. Entries by default don't scroll, so they grow to
19  * accommodate the entire text, resizing the parent window as needed. This
20  * can be changed with the elm_entry_scrollable_set() function.
21  *
22  * They can also be single line or multi line (the default) and when set
23  * to multi line mode they support text wrapping in any of the modes
24  * indicated by #Elm_Wrap_Type.
25  *
26  * Other features include password mode, filtering of inserted text with
27  * elm_entry_markup_filter_append() and related functions, inline "items" and
28  * formatted markup text.
29  *
30  * This widget inherits from the @ref Layout one, so that all the
31  * functions acting on it also work for entry objects (@since 1.8).
32  *
33  * This widget implements the @b @ref elm-scrollable-interface
34  * interface, so that all (non-deprecated) functions for the base
35  * @ref Scroller widget also work for entries (@since 1.8).
36  *
37  * Some calls on the entry's API are marked as @b deprecated, as they
38  * just wrap the scrollable widgets counterpart functions. Use the
39  * ones we point you to, for each case of deprecation here, instead --
40  * eventually the deprecated ones will be discarded (next major
41  * release).
42  *
43  * @section entry-markup Formatted text
44  *
45  * The markup tags supported by the Entry are defined by the theme, but
46  * even when writing new themes or extensions it's a good idea to stick to
47  * a sane default, to maintain coherency and avoid application breakages.
48  * Currently defined by the default theme are the following tags:
49  * @li \<br\>: Inserts a line break.
50  * @li \<ps\>: Inserts a paragraph separator. This is preferred over line
51  * breaks.
52  * @li \<tab\>: Inserts a tab.
53  * @li \<em\>...\</em\>: Emphasis. Sets the @em oblique style for the
54  * enclosed text.
55  * @li \<b\>...\</b\>: Sets the @b bold style for the enclosed text.
56  * @li \<link\>...\</link\>: Underlines the enclosed text.
57  * @li \<hilight\>...\</hilight\>: Highlights the enclosed text.
58  *
59  * @section entry-special Special markups
60  *
61  * Besides those used to format text, entries support two special markup
62  * tags used to insert click-able portions of text or items inlined within
63  * the text.
64  *
65  * @subsection entry-anchors Anchors
66  *
67  * Anchors are similar to HTML anchors. Text can be surrounded by \<a\> and
68  * \</a\> tags and an event will be generated when this text is clicked,
69  * like this:
70  *
71  * @code
72  * This text is outside <a href=anc-01>but this one is an anchor</a>
73  * @endcode
74  *
75  * The @c href attribute in the opening tag gives the name that will be
76  * used to identify the anchor and it can be any valid utf8 string.
77  *
78  * When an anchor is clicked, an @c "anchor,clicked" signal is emitted with
79  * an #Elm_Entry_Anchor_Info in the @c event_info parameter for the
80  * callback function. The same applies for "anchor,in" (mouse in), "anchor,out"
81  * (mouse out), "anchor,down" (mouse down), and "anchor,up" (mouse up) events on
82  * an anchor.
83  *
84  * @subsection entry-items Items
85  *
86  * Inlined in the text, any other @c Evas_Object can be inserted by using
87  * \<item\> tags this way:
88  *
89  * @code
90  * <item size=16x16 vsize=full href=emoticon/haha></item>
91  * @endcode
92  *
93  * Just like with anchors, the @c href identifies each item, but these need,
94  * in addition, to indicate their size, which is done using any one of
95  * @c size, @c absize or @c relsize attributes. These attributes take their
96  * value in the WxH format, where W is the width and H the height of the
97  * item.
98  *
99  * @li absize: Absolute pixel size for the item. Whatever value is set will
100  * be the item's size regardless of any scale value the object may have
101  * been set to. The final line height will be adjusted to fit larger items.
102  * @li size: Similar to @c absize, but it's adjusted to the scale value set
103  * for the object.
104  * @li relsize: Size is adjusted for the item to fit within the current
105  * line height.
106  *
107  * Besides their size, items are specified a @c vsize value that affects
108  * how their final size and position are calculated. The possible values
109  * are:
110  * @li ascent: Item will be placed within the line's baseline and its
111  * ascent. That is, the height between the line where all characters are
112  * positioned and the highest point in the line. For @c size and @c absize
113  * items, the descent value will be added to the total line height to make
114  * them fit. @c relsize items will be adjusted to fit within this space.
115  * @li full: Items will be placed between the descent and ascent, or the
116  * lowest point in the line and its highest.
117  *
118  * The next image shows different configurations of items and how
119  * the previously mentioned options affect their sizes. In all cases,
120  * the green line indicates the ascent, blue for the baseline and red for
121  * the descent.
122  *
123  * @image html entry_item.png
124  * @image latex entry_item.eps width=\textwidth
125  *
126  * And another one to show how size differs from absize. In the first one,
127  * the scale value is set to 1.0, while the second one is using one of 2.0.
128  *
129  * @image html entry_item_scale.png
130  * @image latex entry_item_scale.eps width=\textwidth
131  *
132  * After the size for an item is calculated, the entry will request an
133  * object to place in its space. For this, the functions set with
134  * elm_entry_item_provider_append() and related functions will be called
135  * in order until one of them returns a @c non-NULL value. If no providers
136  * are available, or all of them return @c NULL, then the entry falls back
137  * to one of the internal defaults, provided the name matches with one of
138  * them.
139  *
140  * All of the following are currently supported:
141  *
142  * - emoticon/angry
143  * - emoticon/angry-shout
144  * - emoticon/crazy-laugh
145  * - emoticon/evil-laugh
146  * - emoticon/evil
147  * - emoticon/goggle-smile
148  * - emoticon/grumpy
149  * - emoticon/grumpy-smile
150  * - emoticon/guilty
151  * - emoticon/guilty-smile
152  * - emoticon/haha
153  * - emoticon/half-smile
154  * - emoticon/happy-panting
155  * - emoticon/happy
156  * - emoticon/indifferent
157  * - emoticon/kiss
158  * - emoticon/knowing-grin
159  * - emoticon/laugh
160  * - emoticon/little-bit-sorry
161  * - emoticon/love-lots
162  * - emoticon/love
163  * - emoticon/minimal-smile
164  * - emoticon/not-happy
165  * - emoticon/not-impressed
166  * - emoticon/omg
167  * - emoticon/opensmile
168  * - emoticon/smile
169  * - emoticon/sorry
170  * - emoticon/squint-laugh
171  * - emoticon/surprised
172  * - emoticon/suspicious
173  * - emoticon/tongue-dangling
174  * - emoticon/tongue-poke
175  * - emoticon/uh
176  * - emoticon/unhappy
177  * - emoticon/very-sorry
178  * - emoticon/what
179  * - emoticon/wink
180  * - emoticon/worried
181  * - emoticon/wtf
182  *
183  * Alternatively, an item may reference an image by its path, using
184  * the URI form @c file:///path/to/an/image.png and the entry will then
185  * use that image for the item.
186  *
187  * @section entry-style-set Setting entry's style
188  *
189  * There are 2 major ways to change the entry's style:
190  * - Theme - set the "base" field to the desired style.
191  * - User style - Pushing overrides to the theme style to the textblock object by using evas_object_textblock_style_user_push().
192  *
193  * You should modify the theme when you would like to change the style for
194  * aesthetic reasons. While the user style should be changed when you would
195  * like to change the style to something specific defined at run-time, e.g,
196  * setting font or font size in a text editor.
197  *
198  * @section entry-files Loading and saving files
199  *
200  * Entries have convenience functions to load text from a file and save
201  * changes back to it after a short delay. The automatic saving is enabled
202  * by default, but can be disabled with elm_entry_autosave_set() and files
203  * can be loaded directly as plain text or have any markup in them
204  * recognized. See elm_entry_file_set() for more details.
205  *
206  * @section entry-signals Emitted signals
207  *
208  * This widget emits the following signals, besides the ones sent from
209  * @ref Layout:
210  * @li "changed": The text within the entry was changed.
211  * @li "changed,user": The text within the entry was changed because of user interaction.
212  * @li "activated": The enter key was pressed on a single line entry.
213  * @li "aborted": The escape key was pressed on a single line entry. (since 1.7)
214  * @li "press": A mouse button has been pressed on the entry.
215  * @li "longpressed": A mouse button has been pressed and held for a couple
216  * seconds.
217  * @li "clicked": The entry has been clicked (mouse press and release).
218  * @li "clicked,double": The entry has been double clicked.
219  * @li "clicked,triple": The entry has been triple clicked.
220  * @li "focused": The entry has received focus.
221  * @li "unfocused": The entry has lost focus.
222  * @li "selection,paste": A paste of the clipboard contents was requested.
223  * @li "selection,copy": A copy of the selected text into the clipboard was
224  * requested.
225  * @li "selection,cut": A cut of the selected text into the clipboard was
226  * requested.
227  * @li "selection,start": A selection has begun and no previous selection
228  * existed.
229  * @li "selection,changed": The current selection has changed.
230  * @li "selection,cleared": The current selection has been cleared.
231  * @li "cursor,changed": The cursor has changed position.
232  * @li "anchor,clicked": An anchor has been clicked. The event_info
233  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
234  * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
235  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
236  * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
237  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
238  * @li "anchor,up": Mouse button has been unpressed on an anchor. The event_info
239  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
240  * @li "anchor,down": Mouse button has been pressed on an anchor. The event_info
241  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
242  * @li "preedit,changed": The preedit string has changed.
243  * @li "language,changed": Program language changed.
244  *
245  * Default content parts of the entry items that you can use for are:
246  * @li "icon" - An icon in the entry
247  * @li "end" - A content in the end of the entry
248  *
249  * Default text parts of the entry that you can use for are:
250  * @li "default" - text of the entry
251  *
252  * Supported elm_object common APIs.
253  * @li @ref elm_object_signal_emit
254  * @li @ref elm_object_part_text_set
255  * @li @ref elm_object_part_text_get
256  * @li @ref elm_object_part_content_set
257  * @li @ref elm_object_part_content_get
258  * @li @ref elm_object_part_content_unset
259  * @li @ref elm_object_signal_callback_add
260  * @li @ref elm_object_signal_callback_del
261  * @li @ref elm_object_disabled_set
262  * @li @ref elm_object_disabled_get
263  *
264  * @section entry-examples
265  *
266  * An overview of the Entry API can be seen in @ref entry_example
267  *
268  * @{
269  */
270
271 /**
272  * @typedef Elm_Text_Format
273  *
274  * Text Format types.
275  *
276  * @see elm_entry_file_set()
277  */
278 typedef enum
279 {
280    ELM_TEXT_FORMAT_PLAIN_UTF8,  /**< Plain UTF8 type */
281    ELM_TEXT_FORMAT_MARKUP_UTF8  /**< Markup UTF8 type */
282 } Elm_Text_Format;
283
284 /**
285  * @typedef Elm_Wrap_Type
286  *
287  * Line wrapping types.
288  *
289  * @see elm_entry_line_wrap_set()
290  */
291 typedef enum
292 {
293    ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
294    ELM_WRAP_CHAR,     /**< Char wrap - wrap between characters */
295    ELM_WRAP_WORD,     /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
296    ELM_WRAP_MIXED,    /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
297    ELM_WRAP_LAST
298 } Elm_Wrap_Type; /**< Type of word or character wrapping to use */
299
300 /**
301  * @typedef Elm_Input_Panel_Layout
302  *
303  * Input panel (virtual keyboard) layout types.
304  *
305  * @see elm_entry_input_panel_layout_set()
306  */
307 typedef enum
308 {
309    ELM_INPUT_PANEL_LAYOUT_NORMAL,      /**< Default layout */
310    ELM_INPUT_PANEL_LAYOUT_NUMBER,      /**< Number layout */
311    ELM_INPUT_PANEL_LAYOUT_EMAIL,       /**< Email layout */
312    ELM_INPUT_PANEL_LAYOUT_URL,         /**< URL layout */
313    ELM_INPUT_PANEL_LAYOUT_PHONENUMBER, /**< Phone Number layout */
314    ELM_INPUT_PANEL_LAYOUT_IP,          /**< IP layout */
315    ELM_INPUT_PANEL_LAYOUT_MONTH,       /**< Month layout */
316    ELM_INPUT_PANEL_LAYOUT_NUMBERONLY,  /**< Number Only layout */
317    ELM_INPUT_PANEL_LAYOUT_INVALID,     /**< Never use this */
318    ELM_INPUT_PANEL_LAYOUT_HEX,         /**< Hexadecimal layout */
319    ELM_INPUT_PANEL_LAYOUT_TERMINAL,    /**< Command-line terminal layout including esc, alt, ctrl key, so on (no auto-correct, no auto-capitalization) */
320    ELM_INPUT_PANEL_LAYOUT_PASSWORD     /**< Like normal, but no auto-correct, no auto-capitalization etc. */
321 } Elm_Input_Panel_Layout; /**< Type of input panel (virtual keyboard) to use - this is a hint and may not provide exactly what is desired. */
322
323 /**
324  * @typedef Elm_Input_Panel_Lang
325  *
326  * Input panel (virtual keyboard) language modes.
327  *
328  * @see elm_entry_input_panel_language_set()
329  */
330 typedef enum
331 {
332    ELM_INPUT_PANEL_LANG_AUTOMATIC,    /**< Automatic */
333    ELM_INPUT_PANEL_LANG_ALPHABET      /**< Alphabet */
334 } Elm_Input_Panel_Lang;
335
336 /**
337  * @typedef Elm_Autocapital_Type
338  *
339  * Autocapitalization Types.
340  *
341  * @see elm_entry_autocapital_type_set()
342  */
343 typedef enum
344 {
345    ELM_AUTOCAPITAL_TYPE_NONE,         /**< No auto-capitalization when typing */
346    ELM_AUTOCAPITAL_TYPE_WORD,         /**< Autocapitalize each word typed */
347    ELM_AUTOCAPITAL_TYPE_SENTENCE,     /**< Autocapitalize the start of each sentence */
348    ELM_AUTOCAPITAL_TYPE_ALLCHARACTER, /**< Autocapitalize all letters */
349 } Elm_Autocapital_Type; /**< Choose method of auto-capitalization */
350
351 /**
352  * @typedef Elm_Input_Panel_Return_Key_Type
353  *
354  * "Return" Key types on the input panel (virtual keyboard).
355  *
356  * @see elm_entry_input_panel_return_key_type_set()
357  */
358 typedef enum
359 {
360    ELM_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT, /**< Default */
361    ELM_INPUT_PANEL_RETURN_KEY_TYPE_DONE,    /**< Done */
362    ELM_INPUT_PANEL_RETURN_KEY_TYPE_GO,      /**< Go */
363    ELM_INPUT_PANEL_RETURN_KEY_TYPE_JOIN,    /**< Join */
364    ELM_INPUT_PANEL_RETURN_KEY_TYPE_LOGIN,   /**< Login */
365    ELM_INPUT_PANEL_RETURN_KEY_TYPE_NEXT,    /**< Next */
366    ELM_INPUT_PANEL_RETURN_KEY_TYPE_SEARCH,  /**< Search string or magnifier icon */
367    ELM_INPUT_PANEL_RETURN_KEY_TYPE_SEND,    /**< Send */
368    ELM_INPUT_PANEL_RETURN_KEY_TYPE_SIGNIN   /**< Sign-in @since 1.8 */
369 } Elm_Input_Panel_Return_Key_Type;
370
371 /**
372  * @typedef Elm_Entry_Anchor_Info
373  *
374  * The info sent in the callback for the "anchor,clicked" signals emitted
375  * by entries.
376  */
377 typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
378
379 /**
380  * @struct _Elm_Entry_Anchor_Info
381  *
382  * The info sent in the callback for the "anchor,clicked" signals emitted
383  * by entries.
384  */
385 struct _Elm_Entry_Anchor_Info
386 {
387    const char *name; /**< The name of the anchor, as stated in its href */
388    int         button; /**< The mouse button used to click on it */
389    Evas_Coord  x, /**< Anchor geometry, relative to canvas */
390                y, /**< Anchor geometry, relative to canvas */
391                w, /**< Anchor geometry, relative to canvas */
392                h; /**< Anchor geometry, relative to canvas */
393 };
394
395 /**
396  * @typedef Elm_Entry_Anchor_Hover_Info
397  *
398  * The info sent in the callback for "anchor,clicked" signals emitted by
399  * the Anchor_Hover widget.
400  */
401 typedef struct _Elm_Entry_Anchor_Hover_Info Elm_Entry_Anchor_Hover_Info;
402
403 /**
404  * @struct _Elm_Entry_Anchor_Hover_Info
405  *
406  * The info sent in the callback for "anchor,clicked" signals emitted by
407  * the Anchor_Hover widget.
408  */
409 struct _Elm_Entry_Anchor_Hover_Info
410 {
411    const Elm_Entry_Anchor_Info *anchor_info; /**< The actual anchor info. */
412    Evas_Object *hover; /**< The hover object to use for the popup */
413    struct
414    {
415       Evas_Coord x, y, w, h;
416    } hover_parent; /**< Geometry of the object used as parent by the
417                         hover */
418    Eina_Bool    hover_left : 1; /**< Hint indicating if there's space
419                                      for content on the left side of
420                                      the hover. Before calling the
421                                      callback, the widget will make the
422                                      necessary calculations to check
423                                      which sides are fit to be set with
424                                      content, based on the position the
425                                      hover is activated and its distance
426                                      to the edges of its parent object
427                                  */
428    Eina_Bool    hover_right : 1; /**< Hint indicating content fits on
429                                       the right side of the hover.
430                                       See @ref hover_left */
431    Eina_Bool    hover_top : 1; /**< Hint indicating content fits on top
432                                     of the hover. See @ref hover_left */
433    Eina_Bool    hover_bottom : 1; /**< Hint indicating content fits
434                                        below the hover. See @ref
435                                        hover_left */
436 };
437
438 /**
439  * @typedef Elm_Entry_Item_Provider_Cb
440  * This callback type is used to provide items.
441  * If it returns an object handle other than NULL (it should create an
442  * object to do this), then this object is used to replace the current item.
443  * If not the next provider is called until one provides an item object, or the
444  * default provider in entry does.
445  * @param data The data specified as the last param when adding the provider
446  * @param entry The entry object
447  * @param text A pointer to the item href string in the text
448  * @return The object to be placed in the entry like an icon, or other element
449  * @see elm_entry_item_provider_append
450  * @see elm_entry_item_provider_prepend
451  * @see elm_entry_item_provider_remove
452  */
453 typedef Evas_Object * (*Elm_Entry_Item_Provider_Cb)(void *data, Evas_Object * entry, const char *item);
454
455 /**
456  * @typedef Elm_Entry_Filter_Cb
457  * This callback type is used by entry filters to modify text.
458  * @param data The data specified as the last param when adding the filter
459  * @param entry The entry object
460  * @param text A pointer to the location of the text being filtered. The type of text is always markup. This data can be modified, but any additional allocations must be managed by the user.
461  * @see elm_entry_markup_filter_append
462  * @see elm_entry_markup_filter_prepend
463  * @see elm_entry_markup_filter_remove
464  */
465 typedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text);
466
467 /**
468  * @typedef Elm_Entry_Change_Info
469  * This corresponds to Edje_Entry_Change_Info. Includes information about
470  * a change in the entry.
471  */
472 typedef Edje_Entry_Change_Info Elm_Entry_Change_Info;
473
474 /**
475  * This adds an entry to @p parent object.
476  *
477  * By default, entries are:
478  * @li not scrolled
479  * @li multi-line
480  * @li word wrapped
481  * @li autosave is enabled
482  *
483  * @param parent The parent object
484  * @return The new object or NULL if it cannot be created
485  *
486  * @ingroup Entry
487  */
488 EAPI Evas_Object       *elm_entry_add(Evas_Object *parent);
489
490 /**
491  * Push the style to the top of user style stack.
492  * If there is styles in the user style stack, the properties in the top style
493  * of user style stack will replace the properties in current theme.
494  * The input style is specified in format tag='property=value' (i.e. DEFAULT='font=Sans font_size=60'hilight=' + font_weight=Bold').
495  *
496  * @param obj The entry object
497  * @param style The style user to push
498  *
499  * @since 1.7
500  */
501 EAPI void      elm_entry_text_style_user_push(Evas_Object *obj, const char *style);
502
503 /**
504  * Remove the style in the top of user style stack.
505  *
506  * @param  obj The entry object
507  *
508  * @see elm_entry_text_style_user_push()
509  *
510  * @since 1.7
511  */
512 EAPI void     elm_entry_text_style_user_pop(Evas_Object *obj);
513
514 /**
515  * Retrieve the style on the top of user style stack.
516  *
517  * @param obj The entry object
518  * @return style on the top of user style stack if exist, otherwise NULL.
519  *
520  * @see elm_entry_text_style_user_push()
521  *
522  * @since 1.7
523  */
524 EAPI const char*      elm_entry_text_style_user_peek(const Evas_Object *obj);
525
526 /**
527  * Sets the entry to single line mode.
528  *
529  * In single line mode, entries don't ever wrap when the text reaches the
530  * edge, and instead they keep growing horizontally. Pressing the @c Enter
531  * key will generate an @c "activate" event instead of adding a new line.
532  *
533  * When @p single_line is @c EINA_FALSE, line wrapping takes effect again
534  * and pressing enter will break the text into a different line
535  * without generating any events.
536  *
537  * @param obj The entry object
538  * @param single_line If true, the text in the entry
539  * will be on a single line.
540  *
541  * @ingroup Entry
542  */
543 EAPI void               elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line);
544
545 /**
546  * Gets whether the entry is set to be single line.
547  *
548  * @param obj The entry object
549  * @return single_line If true, the text in the entry is set to display
550  * on a single line.
551  *
552  * @see elm_entry_single_line_set()
553  *
554  * @ingroup Entry
555  */
556 EAPI Eina_Bool          elm_entry_single_line_get(const Evas_Object *obj);
557
558 /**
559  * Sets the entry to password mode.
560  *
561  * In password mode, entries are implicitly single line and the display of
562  * any text in them is replaced with asterisks (*).
563  *
564  * @param obj The entry object
565  * @param password If true, password mode is enabled.
566  *
567  * @ingroup Entry
568  */
569 EAPI void               elm_entry_password_set(Evas_Object *obj, Eina_Bool password);
570
571 /**
572  * Gets whether the entry is set to password mode.
573  *
574  * @param obj The entry object
575  * @return If true, the entry is set to display all characters
576  * as asterisks (*).
577  *
578  * @see elm_entry_password_set()
579  *
580  * @ingroup Entry
581  */
582 EAPI Eina_Bool          elm_entry_password_get(const Evas_Object *obj);
583
584 /**
585  * This sets the text displayed within the entry to @p entry.
586  *
587  * @param obj The entry object
588  * @param entry The text to be displayed
589  *
590  * @note Using this function bypasses text filters
591  *
592  * @ingroup Entry
593  */
594 EAPI void               elm_entry_entry_set(Evas_Object *obj, const char *entry);
595
596 /**
597  * This returns the text currently shown in object @p entry.
598  * See also elm_entry_entry_set().
599  *
600  * @param obj The entry object
601  * @return The currently displayed text or NULL on failure
602  *
603  * @ingroup Entry
604  */
605 EAPI const char        *elm_entry_entry_get(const Evas_Object *obj);
606
607 /**
608  * Appends @p entry to the text of the entry.
609  *
610  * Adds the text in @p entry to the end of any text already present in the
611  * widget.
612  *
613  * The appended text is subject to any filters set for the widget.
614  *
615  * @param obj The entry object
616  * @param entry The text to be displayed
617  *
618  * @see elm_entry_markup_filter_append()
619  *
620  * @ingroup Entry
621  */
622 EAPI void               elm_entry_entry_append(Evas_Object *obj, const char *entry);
623
624 /**
625  * Gets whether the entry is empty.
626  *
627  * Empty means no text at all. If there are any markup tags, like an item
628  * tag for which no provider finds anything, and no text is displayed, this
629  * function still returns EINA_FALSE.
630  *
631  * @param obj The entry object
632  * @return EINA_TRUE if the entry is empty, EINA_FALSE otherwise.
633  *
634  * @ingroup Entry
635  */
636 EAPI Eina_Bool          elm_entry_is_empty(const Evas_Object *obj);
637
638 /**
639  * Gets any selected text within the entry.
640  *
641  * If there's any selected text in the entry, this function returns it as
642  * a string in markup format. NULL is returned if no selection exists or
643  * if an error occurred.
644  *
645  * The returned value points to an internal string and should not be freed
646  * or modified in any way. If the @p entry object is deleted or its
647  * contents are changed, the returned pointer should be considered invalid.
648  *
649  * @param obj The entry object
650  * @return The selected text within the entry or NULL on failure
651  *
652  * @ingroup Entry
653  */
654 EAPI const char        *elm_entry_selection_get(const Evas_Object *obj);
655
656 /**
657  * Returns the actual textblock object of the entry.
658  *
659  * This function exposes the internal textblock object that actually
660  * contains and draws the text. This should be used for low-level
661  * manipulations that are otherwise not possible.
662  *
663  * Changing the textblock directly from here will not notify edje/elm to
664  * recalculate the textblock size automatically, so any modifications
665  * done to the textblock returned by this function should be followed by
666  * a call to elm_entry_calc_force().
667  *
668  * The return value is marked as const as an additional warning.
669  * One should not use the returned object with any of the generic evas
670  * functions (geometry_get/resize/move and etc), but only with the textblock
671  * functions; The former will either not work at all, or break the correct
672  * functionality.
673  *
674  * IMPORTANT: Many functions may change (i.e delete and create a new one)
675  * the internal textblock object. Do NOT cache the returned object, and try
676  * not to mix calls on this object with regular elm_entry calls (which may
677  * change the internal textblock object). This applies to all cursors
678  * returned from textblock calls, and all the other derivative values.
679  *
680  * @param obj The entry object
681  * @return The textblock object.
682  *
683  * @ingroup Entry
684  */
685 EAPI Evas_Object *      elm_entry_textblock_get(Evas_Object *obj);
686
687 /**
688  * Forces calculation of the entry size and text layouting.
689  *
690  * This should be used after modifying the textblock object directly. See
691  * elm_entry_textblock_get() for more information.
692  *
693  * @param obj The entry object
694  *
695  * @see elm_entry_textblock_get()
696  *
697  * @ingroup Entry
698  */
699 EAPI void               elm_entry_calc_force(Evas_Object *obj);
700
701 /**
702  * Inserts the given text into the entry at the current cursor position.
703  *
704  * This inserts text at the cursor position as if it was typed
705  * by the user (note that this also allows markup which a user
706  * can't just "type" as it would be converted to escaped text, so this
707  * call can be used to insert things like emoticon items or bold push/pop
708  * tags, other font and color change tags etc.)
709  *
710  * If any selection exists, it will be replaced by the inserted text.
711  *
712  * The inserted text is subject to any filters set for the widget.
713  *
714  * @param obj The entry object
715  * @param entry The text to insert
716  *
717  * @see elm_entry_markup_filter_append()
718  *
719  * @ingroup Entry
720  */
721 EAPI void               elm_entry_entry_insert(Evas_Object *obj, const char *entry);
722
723 /**
724  * Set the line wrap type to use on multi-line entries.
725  *
726  * Sets the wrap type used by the entry to any of the specified in
727  * Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
728  * line (without inserting a line break or paragraph separator) when it
729  * reaches the far edge of the widget.
730  *
731  * Note that this only makes sense for multi-line entries. A widget set
732  * to be single line will never wrap.
733  *
734  * @param obj The entry object
735  * @param wrap The wrap mode to use. See Elm_Wrap_Type for details on them
736  */
737 EAPI void               elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap);
738
739 /**
740  * Gets the wrap mode the entry was set to use.
741  *
742  * @param obj The entry object
743  * @return Wrap type
744  *
745  * @see also elm_entry_line_wrap_set()
746  *
747  * @ingroup Entry
748  */
749 EAPI Elm_Wrap_Type      elm_entry_line_wrap_get(const Evas_Object *obj);
750
751 /**
752  * Sets if the entry is to be editable or not.
753  *
754  * By default, entries are editable and when focused, any text input by the
755  * user will be inserted at the current cursor position. But calling this
756  * function with @p editable as EINA_FALSE will prevent the user from
757  * inputting text into the entry.
758  *
759  * The only way to change the text of a non-editable entry is to use
760  * elm_object_text_set(), elm_entry_entry_insert() and other related
761  * functions.
762  *
763  * @param obj The entry object
764  * @param editable If EINA_TRUE, user input will be inserted in the entry,
765  * if not, the entry is read-only and no user input is allowed.
766  *
767  * @ingroup Entry
768  */
769 EAPI void               elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable);
770
771 /**
772  * Gets whether the entry is editable or not.
773  *
774  * @param obj The entry object
775  * @return If true, the entry is editable by the user.
776  * If false, it is not editable by the user
777  *
778  * @see elm_entry_editable_set()
779  *
780  * @ingroup Entry
781  */
782 EAPI Eina_Bool          elm_entry_editable_get(const Evas_Object *obj);
783
784 /**
785  * This drops any existing text selection within the entry.
786  *
787  * @param obj The entry object
788  *
789  * @ingroup Entry
790  */
791 EAPI void               elm_entry_select_none(Evas_Object *obj);
792
793 /**
794  * This selects all text within the entry.
795  *
796  * @param obj The entry object
797  *
798  * @ingroup Entry
799  */
800 EAPI void               elm_entry_select_all(Evas_Object *obj);
801
802 /**
803  * This moves the cursor one place to the right within the entry.
804  *
805  * @param obj The entry object
806  * @return EINA_TRUE upon success, EINA_FALSE upon failure
807  *
808  * @ingroup Entry
809  */
810 EAPI Eina_Bool          elm_entry_cursor_next(Evas_Object *obj);
811
812 /**
813  * This moves the cursor one place to the left within the entry.
814  *
815  * @param obj The entry object
816  * @return EINA_TRUE upon success, EINA_FALSE upon failure
817  *
818  * @ingroup Entry
819  */
820 EAPI Eina_Bool          elm_entry_cursor_prev(Evas_Object *obj);
821
822 /**
823  * This moves the cursor one line up within the entry.
824  *
825  * @param obj The entry object
826  * @return EINA_TRUE upon success, EINA_FALSE upon failure
827  *
828  * @ingroup Entry
829  */
830 EAPI Eina_Bool          elm_entry_cursor_up(Evas_Object *obj);
831
832 /**
833  * This moves the cursor one line down within the entry.
834  *
835  * @param obj The entry object
836  * @return EINA_TRUE upon success, EINA_FALSE upon failure
837  *
838  * @ingroup Entry
839  */
840 EAPI Eina_Bool          elm_entry_cursor_down(Evas_Object *obj);
841
842 /**
843  * This moves the cursor to the beginning of the entry.
844  *
845  * @param obj The entry object
846  *
847  * @ingroup Entry
848  */
849 EAPI void               elm_entry_cursor_begin_set(Evas_Object *obj);
850
851 /**
852  * This moves the cursor to the end of the entry.
853  *
854  * @param obj The entry object
855  *
856  * @ingroup Entry
857  */
858 EAPI void               elm_entry_cursor_end_set(Evas_Object *obj);
859
860 /**
861  * This moves the cursor to the beginning of the current line.
862  *
863  * @param obj The entry object
864  *
865  * @ingroup Entry
866  */
867 EAPI void               elm_entry_cursor_line_begin_set(Evas_Object *obj);
868
869 /**
870  * This moves the cursor to the end of the current line.
871  *
872  * @param obj The entry object
873  *
874  * @ingroup Entry
875  */
876 EAPI void               elm_entry_cursor_line_end_set(Evas_Object *obj);
877
878 /**
879  * This begins a selection within the entry as though
880  * the user were holding down the mouse button to make a selection.
881  *
882  * @param obj The entry object
883  *
884  * @ingroup Entry
885  */
886 EAPI void               elm_entry_cursor_selection_begin(Evas_Object *obj);
887
888 /**
889  * This ends a selection within the entry as though
890  * the user had just released the mouse button while making a selection.
891  *
892  * @param obj The entry object
893  *
894  * @ingroup Entry
895  */
896 EAPI void               elm_entry_cursor_selection_end(Evas_Object *obj);
897
898 /**
899  * Gets whether a format node exists at the current cursor position.
900  *
901  * A format node is anything that defines how the text is rendered. It can
902  * be a visible format node, such as a line break or a paragraph separator,
903  * or an invisible one, such as bold begin or end tag.
904  * This function returns whether any format node exists at the current
905  * cursor position.
906  *
907  * @param obj The entry object
908  * @return EINA_TRUE if the current cursor position contains a format node,
909  * EINA_FALSE otherwise.
910  *
911  * @see elm_entry_cursor_is_visible_format_get()
912  *
913  * @ingroup Entry
914  */
915 EAPI Eina_Bool          elm_entry_cursor_is_format_get(const Evas_Object *obj);
916
917 /**
918  * Gets if the current cursor position holds a visible format node.
919  *
920  * @param obj The entry object
921  * @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
922  * if it's an invisible one or no format exists.
923  *
924  * @see elm_entry_cursor_is_format_get()
925  *
926  * @ingroup Entry
927  */
928 EAPI Eina_Bool          elm_entry_cursor_is_visible_format_get(const Evas_Object *obj);
929
930 /**
931  * Gets the character pointed by the cursor at its current position.
932  *
933  * This function returns a string with the utf8 character stored at the
934  * current cursor position.
935  * Only the text is returned, any format that may exist will not be part
936  * of the return value. You must free the string when done with free().
937  *
938  * @param obj The entry object
939  * @return The text pointed by the cursors.
940  *
941  * @ingroup Entry
942  */
943 EAPI char              *elm_entry_cursor_content_get(const Evas_Object *obj);
944
945 /**
946  * This function returns the geometry of the cursor.
947  *
948  * It's useful if you want to draw something on the cursor (or where it is),
949  * or for example in the case of scrolled entry where you want to show the
950  * cursor.
951  *
952  * @param obj The entry object
953  * @param x returned geometry
954  * @param y returned geometry
955  * @param w returned geometry
956  * @param h returned geometry
957  * @return EINA_TRUE upon success, EINA_FALSE upon failure
958  *
959  * @ingroup Entry
960  */
961 EAPI Eina_Bool          elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
962
963 /**
964  * Sets the cursor position in the entry to the given value
965  *
966  * The value in @p pos is the index of the character position within the
967  * contents of the string as returned by elm_entry_cursor_pos_get().
968  *
969  * @param obj The entry object
970  * @param pos The position of the cursor
971  *
972  * @ingroup Entry
973  */
974 EAPI void               elm_entry_cursor_pos_set(Evas_Object *obj, int pos);
975
976 /**
977  * Retrieves the current position of the cursor in the entry
978  *
979  * @param obj The entry object
980  * @return The cursor position
981  *
982  * @ingroup Entry
983  */
984 EAPI int                elm_entry_cursor_pos_get(const Evas_Object *obj);
985
986 /**
987  * This executes a "cut" action on the selected text in the entry.
988  *
989  * @param obj The entry object
990  *
991  * @ingroup Entry
992  */
993 EAPI void               elm_entry_selection_cut(Evas_Object *obj);
994
995 /**
996  * This executes a "copy" action on the selected text in the entry.
997  *
998  * @param obj The entry object
999  *
1000  * @ingroup Entry
1001  */
1002 EAPI void               elm_entry_selection_copy(Evas_Object *obj);
1003
1004 /**
1005  * This executes a "paste" action in the entry.
1006  *
1007  * @param obj The entry object
1008  *
1009  * @ingroup Entry
1010  */
1011 EAPI void               elm_entry_selection_paste(Evas_Object *obj);
1012
1013 /**
1014  * This clears and frees the items in a entry's contextual (longpress)
1015  * menu.
1016  *
1017  * @param obj The entry object
1018  *
1019  * @see elm_entry_context_menu_item_add()
1020  *
1021  * @ingroup Entry
1022  */
1023 EAPI void               elm_entry_context_menu_clear(Evas_Object *obj);
1024
1025 /**
1026  * This adds an item to the entry's contextual menu.
1027  *
1028  * A longpress on an entry will make the contextual menu show up, if this
1029  * hasn't been disabled with elm_entry_context_menu_disabled_set().
1030  * By default, this menu provides a few options like enabling selection mode,
1031  * which is useful on embedded devices that need to be explicit about it,
1032  * and when a selection exists it also shows the copy and cut actions.
1033  *
1034  * With this function, developers can add other options to this menu to
1035  * perform any action they deem necessary.
1036  *
1037  * @param obj The entry object
1038  * @param label The item's text label
1039  * @param icon_file The item's icon file
1040  * @param icon_type The item's icon type
1041  * @param func The callback to execute when the item is clicked
1042  * @param data The data to associate with the item for related functions
1043  *
1044  * @ingroup Entry
1045  */
1046 EAPI void               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);
1047
1048 /**
1049  * This disables the entry's contextual (longpress) menu.
1050  *
1051  * @param obj The entry object
1052  * @param disabled If true, the menu is disabled
1053  *
1054  * @ingroup Entry
1055  */
1056 EAPI void               elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled);
1057
1058 /**
1059  * This returns whether the entry's contextual (longpress) menu is
1060  * disabled.
1061  *
1062  * @param obj The entry object
1063  * @return If true, the menu is disabled
1064  *
1065  * @ingroup Entry
1066  */
1067 EAPI Eina_Bool          elm_entry_context_menu_disabled_get(const Evas_Object *obj);
1068
1069 /**
1070  * This enables selection in entry.
1071  *
1072  * @param obj The entry object
1073  * @param allow If true, enable selection in entry, otherwise, disable.
1074  *
1075  * @ingroup Entry
1076  */
1077 EAPI void               elm_entry_select_allow_set(Evas_Object *obj, Eina_Bool allow);
1078
1079 /**
1080  * This returns whether selection in entry is allowed or not.
1081  *
1082  * @param obj The entry object
1083  * @return If true, enable selection in entry, otherwise, disable.
1084  *
1085  * @ingroup Entry
1086  */
1087 EAPI Eina_Bool               elm_entry_select_allow_get(const Evas_Object *obj);
1088
1089 /**
1090  * This disables the entry's cursor handler.
1091  *
1092  * @param obj The entry object
1093  * @param disabled If true, the cursor handler is disabled
1094  *
1095  * @ingroup Entry
1096  */
1097 EAPI void               elm_entry_cursor_handler_disabled_set(Evas_Object *obj, Eina_Bool disabled);
1098
1099 /**
1100  * This returns whether the entry's cursor handler is disabled.
1101  *
1102  * @param obj The entry object
1103  * @return If true, the cursor handlers are disabled
1104  *
1105  * @ingroup Entry
1106  */
1107 EAPI Eina_Bool          elm_entry_cursor_handler_disabled_get(const Evas_Object *obj);
1108
1109 /**
1110  * This appends a custom item provider to the list for that entry
1111  *
1112  * This appends the given callback. The list is walked from beginning to end
1113  * with each function called given the item href string in the text. If the
1114  * function returns an object handle other than NULL (it should create an
1115  * object to do this), then this object is used to replace that item. If
1116  * not the next provider is called until one provides an item object, or the
1117  * default provider in entry does.
1118  *
1119  * @param obj The entry object
1120  * @param func The function called to provide the item object
1121  * @param data The data passed to @p func
1122  *
1123  * @see @ref entry-items
1124  *
1125  * @ingroup Entry
1126  */
1127 EAPI void               elm_entry_item_provider_append(Evas_Object *obj, Elm_Entry_Item_Provider_Cb func, void *data);
1128
1129 /**
1130  * This prepends a custom item provider to the list for that entry
1131  *
1132  * This prepends the given callback. See elm_entry_item_provider_append() for
1133  * more information
1134  *
1135  * @param obj The entry object
1136  * @param func The function called to provide the item object
1137  * @param data The data passed to @p func
1138  *
1139  * @ingroup Entry
1140  */
1141 EAPI void               elm_entry_item_provider_prepend(Evas_Object *obj, Elm_Entry_Item_Provider_Cb func, void *data);
1142
1143 /**
1144  * This removes a custom item provider to the list for that entry
1145  *
1146  * This removes the given callback. See elm_entry_item_provider_append() for
1147  * more information
1148  *
1149  * @param obj The entry object
1150  * @param func The function called to provide the item object
1151  * @param data The data passed to @p func
1152  *
1153  * @ingroup Entry
1154  */
1155 EAPI void               elm_entry_item_provider_remove(Evas_Object *obj, Elm_Entry_Item_Provider_Cb func, void *data);
1156
1157 /**
1158  * Append a markup filter function for text inserted in the entry
1159  *
1160  * Append the given callback to the list. This functions will be called
1161  * whenever any text is inserted into the entry, with the text to be inserted
1162  * as a parameter. The type of given text is always markup.
1163  * The callback function is free to alter the text in any way it wants, but
1164  * it must remember to free the given pointer and update it.
1165  * If the new text is to be discarded, the function can free it and set its
1166  * text parameter to NULL. This will also prevent any following filters from
1167  * being called.
1168  *
1169  * @param obj The entry object
1170  * @param func The function to use as text filter
1171  * @param data User data to pass to @p func
1172  *
1173  * @ingroup Entry
1174  */
1175 EAPI void               elm_entry_markup_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
1176
1177 /**
1178  * Prepend a markup filter function for text inserted in the entry
1179  *
1180  * Prepend the given callback to the list. See elm_entry_markup_filter_append()
1181  * for more information
1182  *
1183  * @param obj The entry object
1184  * @param func The function to use as text filter
1185  * @param data User data to pass to @p func
1186  *
1187  * @ingroup Entry
1188  */
1189 EAPI void               elm_entry_markup_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
1190
1191 /**
1192  * Remove a markup filter from the list
1193  *
1194  * Removes the given callback from the filter list. See
1195  * elm_entry_markup_filter_append() for more information.
1196  *
1197  * @param obj The entry object
1198  * @param func The filter function to remove
1199  * @param data The user data passed when adding the function
1200  *
1201  * @ingroup Entry
1202  */
1203 EAPI void               elm_entry_markup_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
1204
1205 /**
1206  * This converts a markup (HTML-like) string into UTF-8.
1207  *
1208  * The returned string is a malloc'ed buffer and it should be freed when
1209  * not needed anymore.
1210  *
1211  * @param s The string (in markup) to be converted
1212  * @return The converted string (in UTF-8). It should be freed.
1213  *
1214  * @ingroup Entry
1215  */
1216 EAPI char              *elm_entry_markup_to_utf8(const char *s);
1217
1218 /**
1219  * This converts a UTF-8 string into markup (HTML-like).
1220  *
1221  * The returned string is a malloc'ed buffer and it should be freed when
1222  * not needed anymore.
1223  *
1224  * @param s The string (in UTF-8) to be converted
1225  * @return The converted string (in markup). It should be freed.
1226  *
1227  * @ingroup Entry
1228  */
1229 EAPI char              *elm_entry_utf8_to_markup(const char *s);
1230
1231 /**
1232  * This sets the file (and implicitly loads it) for the text to display and
1233  * then edit. All changes are written back to the file after a short delay if
1234  * the entry object is set to autosave (which is the default).
1235  *
1236  * If the entry had any other file set previously, any changes made to it
1237  * will be saved if the autosave feature is enabled, otherwise, the file
1238  * will be silently discarded and any non-saved changes will be lost.
1239  *
1240  * @param obj The entry object
1241  * @param file The path to the file to load and save
1242  * @param format The file format
1243  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise
1244  *
1245  * @ingroup Entry
1246  */
1247 EAPI Eina_Bool          elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format);
1248
1249 /**
1250  * Gets the file being edited by the entry.
1251  *
1252  * This function can be used to retrieve any file set on the entry for
1253  * edition, along with the format used to load and save it.
1254  *
1255  * @param obj The entry object
1256  * @param file The path to the file to load and save
1257  * @param format The file format
1258  *
1259  * @ingroup Entry
1260  */
1261 EAPI void               elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format);
1262
1263 /**
1264  * This function writes any changes made to the file set with
1265  * elm_entry_file_set()
1266  *
1267  * @param obj The entry object
1268  *
1269  * @ingroup Entry
1270  */
1271 EAPI void               elm_entry_file_save(Evas_Object *obj);
1272
1273 /**
1274  * This sets the entry object to 'autosave' the loaded text file or not.
1275  *
1276  * @param obj The entry object
1277  * @param autosave Autosave the loaded file or not
1278  *
1279  * @see elm_entry_file_set()
1280  *
1281  * @ingroup Entry
1282  */
1283 EAPI void               elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave);
1284
1285 /**
1286  * This gets the entry object's 'autosave' status.
1287  *
1288  * @param obj The entry object
1289  * @return Autosave the loaded file or not
1290  *
1291  * @see elm_entry_file_set()
1292  *
1293  * @ingroup Entry
1294  */
1295 EAPI Eina_Bool          elm_entry_autosave_get(const Evas_Object *obj);
1296
1297 /**
1298  * Enable or disable scrolling in entry
1299  *
1300  * Normally the entry is not scrollable unless you enable it with this call.
1301  *
1302  * @param obj The entry object
1303  * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
1304  *
1305  * @ingroup Entry
1306  */
1307 EAPI void               elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
1308
1309 /**
1310  * Get the scrollable state of the entry
1311  *
1312  * Normally the entry is not scrollable. This gets the scrollable state
1313  * of the entry. See elm_entry_scrollable_set() for more information.
1314  *
1315  * @param obj The entry object
1316  * @return The scrollable state
1317  *
1318  * @ingroup Entry
1319  */
1320 EAPI Eina_Bool          elm_entry_scrollable_get(const Evas_Object *obj);
1321
1322 /**
1323  * Sets the visibility of the left-side widget of the entry,
1324  * set by elm_object_part_content_set().
1325  *
1326  * @param obj The entry object
1327  * @param setting EINA_TRUE if the object should be displayed,
1328  * EINA_FALSE if not.
1329  *
1330  * @ingroup Entry
1331  */
1332 EAPI void               elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
1333
1334 /**
1335  * Sets the visibility of the end widget of the entry, set by
1336  * elm_object_part_content_set(ent, "end", content).
1337  *
1338  * @param obj The entry object
1339  * @param setting EINA_TRUE if the object should be displayed,
1340  * EINA_FALSE if not.
1341  *
1342  * @ingroup Entry
1343  */
1344 EAPI void               elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
1345
1346 /**
1347  * This sets the entry's scrollbar policy (i.e. enabling/disabling
1348  * them).
1349  *
1350  * Setting an entry to single-line mode with elm_entry_single_line_set()
1351  * will automatically disable the display of scrollbars when the entry
1352  * moves inside its scroller.
1353  *
1354  * @param obj The entry object
1355  * @param h The horizontal scrollbar policy to apply
1356  * @param v The vertical scrollbar policy to apply
1357  *
1358  * @deprecated Use elm_scroller_policy_set() instead.
1359  *
1360  * @ingroup Entry
1361  */
1362 EINA_DEPRECATED EAPI void elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
1363
1364 /**
1365  * This enables/disables bouncing within the entry.
1366  *
1367  * This function sets whether the entry will bounce when scrolling reaches
1368  * the end of the contained entry.
1369  *
1370  * @param obj The entry object
1371  * @param h_bounce The horizontal bounce state
1372  * @param v_bounce The vertical bounce state
1373  *
1374  * @deprecated Use elm_scroller_bounce_set() instead.
1375  *
1376  * @ingroup Entry
1377  */
1378 EINA_DEPRECATED EAPI void elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
1379
1380 /**
1381  * Get the bounce mode
1382  *
1383  * @param obj The Entry object
1384  * @param h_bounce Allow bounce horizontally
1385  * @param v_bounce Allow bounce vertically
1386  *
1387  * @deprecated Use elm_scroller_bounce_get() instead.
1388  *
1389  * @ingroup Entry
1390  */
1391 EINA_DEPRECATED EAPI void elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
1392
1393 /**
1394  * Set the input panel layout of the entry
1395  *
1396  * @param obj The entry object
1397  * @param layout layout type
1398  *
1399  * @ingroup Entry
1400  */
1401 EAPI void                   elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout);
1402
1403 /**
1404  * Get the input panel layout of the entry
1405  *
1406  * @param obj The entry object
1407  * @return layout type
1408  *
1409  * @see elm_entry_input_panel_layout_set
1410  *
1411  * @ingroup Entry
1412  */
1413 EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(const Evas_Object *obj);
1414
1415 /**
1416  * Set the autocapitalization type on the immodule.
1417  *
1418  * @param obj The entry object
1419  * @param autocapital_type The type of autocapitalization
1420  *
1421  * @ingroup Entry
1422  */
1423 EAPI void                   elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type);
1424
1425 /**
1426  * Retrieve the autocapitalization type on the immodule.
1427  *
1428  * @param obj The entry object
1429  * @return autocapitalization type
1430  *
1431  * @ingroup Entry
1432  */
1433 EAPI Elm_Autocapital_Type   elm_entry_autocapital_type_get(const Evas_Object *obj);
1434
1435 /**
1436  * Sets the attribute to show the input panel automatically.
1437  *
1438  * @param obj The entry object
1439  * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
1440  *
1441  * @ingroup Entry
1442  */
1443 EAPI void                   elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled);
1444
1445 /**
1446  * Retrieve the attribute to show the input panel automatically.
1447  *
1448  * @param obj The entry object
1449  * @return EINA_TRUE if input panel will be appeared when the entry is clicked or has a focus, EINA_FALSE otherwise
1450  *
1451  * @ingroup Entry
1452  */
1453 EAPI Eina_Bool              elm_entry_input_panel_enabled_get(const Evas_Object *obj);
1454
1455 /**
1456  * Show the input panel (virtual keyboard) based on the input panel property of entry such as layout, autocapital types, and so on.
1457  *
1458  * Note that input panel is shown or hidden automatically according to the focus state of entry widget.
1459  * This API can be used in the case of manually controlling by using elm_entry_input_panel_enabled_set(en, EINA_FALSE).
1460  *
1461  * @param obj The entry object
1462  *
1463  * @ingroup Entry
1464  */
1465 EAPI void                   elm_entry_input_panel_show(Evas_Object *obj);
1466
1467 /**
1468  * Hide the input panel (virtual keyboard).
1469  *
1470  * Note that input panel is shown or hidden automatically according to the focus state of entry widget.
1471  * This API can be used in the case of manually controlling by using elm_entry_input_panel_enabled_set(en, EINA_FALSE)
1472  *
1473  * @param obj The entry object
1474  *
1475  * @ingroup Entry
1476  */
1477 EAPI void                   elm_entry_input_panel_hide(Evas_Object *obj);
1478
1479 /**
1480  * Set the language mode of the input panel.
1481  *
1482  * This API can be used if you want to show the alphabet keyboard mode.
1483  *
1484  * @param obj The entry object
1485  * @param lang language to be set to the input panel.
1486  *
1487  * @ingroup Entry
1488  */
1489 EAPI void                   elm_entry_input_panel_language_set(Evas_Object *obj, Elm_Input_Panel_Lang lang);
1490
1491 /**
1492  * Get the language mode of the input panel.
1493  *
1494  * See @ref elm_entry_input_panel_language_set for more details.
1495  *
1496  * @param obj The entry object
1497  * @return input panel language type
1498  *
1499  * @ingroup Entry
1500  */
1501 EAPI Elm_Input_Panel_Lang   elm_entry_input_panel_language_get(const Evas_Object *obj);
1502
1503 /**
1504  * Set the input panel-specific data to deliver to the input panel.
1505  *
1506  * This API is used by applications to deliver specific data to the input panel.
1507  * The data format MUST be negotiated by both application and the input panel.
1508  * The size and format of data are defined by the input panel.
1509  *
1510  * @param obj The entry object
1511  * @param data The specific data to be set to the input panel.
1512  * @param len the length of data, in bytes, to send to the input panel
1513  *
1514  * @ingroup Entry
1515  */
1516 EAPI void                   elm_entry_input_panel_imdata_set(Evas_Object *obj, const void *data, int len);
1517
1518 /**
1519  * Get the specific data of the current input panel.
1520  *
1521  * See @ref elm_entry_input_panel_imdata_set for more details.
1522  *
1523  * @param obj The entry object
1524  * @param data The specific data to be got from the input panel
1525  * @param len The length of data
1526  *
1527  * @ingroup Entry
1528  */
1529 EAPI void                   elm_entry_input_panel_imdata_get(const Evas_Object *obj, void *data, int *len);
1530
1531 /**
1532  * Set the "return" key type. This type is used to set string or icon on the "return" key of the input panel.
1533  *
1534  * An input panel displays the string or icon associated with this type
1535  *
1536  * @param obj The entry object
1537  * @param return_key_type The type of "return" key on the input panel
1538  *
1539  * @ingroup Entry
1540  */
1541 EAPI void                   elm_entry_input_panel_return_key_type_set(Evas_Object *obj, Elm_Input_Panel_Return_Key_Type return_key_type);
1542
1543 /**
1544  * Get the "return" key type.
1545  *
1546  * @see elm_entry_input_panel_return_key_type_set() for more details
1547  *
1548  * @param obj The entry object
1549  * @return The type of "return" key on the input panel
1550  *
1551  * @ingroup Entry
1552  */
1553 EAPI Elm_Input_Panel_Return_Key_Type elm_entry_input_panel_return_key_type_get(const Evas_Object *obj);
1554
1555 /**
1556  * Set the return key on the input panel to be disabled.
1557  *
1558  * @param obj The entry object
1559  * @param disabled The state to put in in: @c EINA_TRUE for
1560  *        disabled, @c EINA_FALSE for enabled
1561  *
1562  * @ingroup Entry
1563  */
1564 EAPI void                   elm_entry_input_panel_return_key_disabled_set(Evas_Object *obj, Eina_Bool disabled);
1565
1566 /**
1567  * Get whether the return key on the input panel should be disabled or not.
1568  *
1569  * @param obj The entry object
1570  * @return EINA_TRUE if it should be disabled
1571  *
1572  * @ingroup Entry
1573  */
1574 EAPI Eina_Bool              elm_entry_input_panel_return_key_disabled_get(const Evas_Object *obj);
1575
1576 /**
1577  * Set whether the return key on the input panel is disabled automatically when entry has no text.
1578  *
1579  * If @p enabled is EINA_TRUE, The return key on input panel is disabled when the entry has no text.
1580  * The return key on the input panel is automatically enabled when the entry has text.
1581  * The default value is EINA_FALSE.
1582  *
1583  * @param obj The entry object
1584  * @param enabled If @p enabled is EINA_TRUE, the return key is automatically disabled when the entry has no text.
1585  *
1586  * @ingroup Entry
1587  */
1588 EAPI void                   elm_entry_input_panel_return_key_autoenabled_set(Evas_Object *obj, Eina_Bool enabled);
1589
1590 /**
1591  * Reset the input method context of the entry if needed.
1592  *
1593  * This can be necessary in the case where modifying the buffer would confuse on-going input method behavior.
1594  * This will typically cause the Input Method Context to clear the preedit state.
1595  * @param obj The entry object
1596  *
1597  * @ingroup Entry
1598  */
1599 EAPI void                   elm_entry_imf_context_reset(Evas_Object *obj);
1600
1601 /**
1602  * Set whether the entry should allow to use the text prediction.
1603  *
1604  * @param obj The entry object
1605  * @param prediction Whether the entry should allow to use the text prediction.
1606  *
1607  * @ingroup Entry
1608  */
1609 EAPI void                   elm_entry_prediction_allow_set(Evas_Object *obj, Eina_Bool prediction);
1610
1611 /**
1612  * Get whether the entry should allow to use the text prediction.
1613  *
1614  * @param obj The entry object
1615  * @return EINA_TRUE if it allows to use the text prediction, otherwise EINA_FALSE.
1616  *
1617  * @ingroup Entry
1618  */
1619 EAPI Eina_Bool              elm_entry_prediction_allow_get(const Evas_Object *obj);
1620
1621 /* pre-made filters for entries */
1622
1623 /**
1624  * @typedef Elm_Entry_Filter_Limit_Size
1625  *
1626  * Data for the elm_entry_filter_limit_size() entry filter.
1627  */
1628 typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
1629
1630 /**
1631  * @struct _Elm_Entry_Filter_Limit_Size
1632  *
1633  * Data for the elm_entry_filter_limit_size() entry filter.
1634  */
1635 struct _Elm_Entry_Filter_Limit_Size
1636 {
1637    int max_char_count;      /**< The maximum number of characters allowed. */
1638    int max_byte_count;      /**< The maximum number of bytes allowed*/
1639 };
1640
1641 /**
1642  * Filter inserted text based on user defined character and byte limits
1643  *
1644  * Add this filter to an entry to limit the characters that it will accept
1645  * based the contents of the provided #Elm_Entry_Filter_Limit_Size.
1646  * The function works on the UTF-8 representation of the string, converting
1647  * it from the set markup, thus not accounting for any format in it.
1648  *
1649  * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
1650  * it as data when setting the filter. In it, it's possible to set limits
1651  * by character count or bytes (any of them is disabled if 0), and both can
1652  * be set at the same time. In that case, it first checks for characters,
1653  * then bytes. The #Elm_Entry_Filter_Limit_Size structure must be alive and
1654  * valid for as long as the entry is alive AND the elm_entry_filter_limit_size
1655  * filter is set.
1656  *
1657  * The function will cut the inserted text in order to allow only the first
1658  * number of characters that are still allowed. The cut is made in
1659  * characters, even when limiting by bytes, in order to always contain
1660  * valid ones and avoid half unicode characters making it in.
1661  *
1662  * This filter, like any others, does not apply when setting the entry text
1663  * directly with elm_object_text_set().
1664  *
1665  * @ingroup Entry
1666  */
1667 EAPI void elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text);
1668
1669 /**
1670  * @typedef Elm_Entry_Filter_Accept_Set
1671  *
1672  * Data for the elm_entry_filter_accept_set() entry filter.
1673  */
1674 typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
1675
1676 /**
1677  * @struct _Elm_Entry_Filter_Accept_Set
1678  *
1679  * Data for the elm_entry_filter_accept_set() entry filter.
1680  */
1681 struct _Elm_Entry_Filter_Accept_Set
1682 {
1683    const char *accepted;      /**< Set of characters accepted in the entry. */
1684    const char *rejected;      /**< Set of characters rejected from the entry. */
1685 };
1686
1687 /**
1688  * Filter inserted text based on accepted or rejected sets of characters
1689  *
1690  * Add this filter to an entry to restrict the set of accepted characters
1691  * based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
1692  * This structure contains both accepted and rejected sets, but they are
1693  * mutually exclusive. This structure must be available for as long as
1694  * the entry is alive AND the elm_entry_filter_accept_set is being used.
1695  *
1696  * The @c accepted set takes preference, so if it is set, the filter will
1697  * only work based on the accepted characters, ignoring anything in the
1698  * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.
1699  *
1700  * In both cases, the function filters by matching utf8 characters to the
1701  * raw markup text, so it can be used to remove formatting tags.
1702  *
1703  * This filter, like any others, does not apply when setting the entry text
1704  * directly with elm_object_text_set()
1705  *
1706  * @ingroup Entry
1707  */
1708 EAPI void                   elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text);
1709
1710 /**
1711  * Returns the input method context of the entry.
1712  *
1713  * This function exposes the internal input method context.
1714  *
1715  * IMPORTANT: Many functions may change (i.e delete and create a new one)
1716  * the internal input method context. Do NOT cache the returned object.
1717  *
1718  * @param obj The entry object
1719  * @return The input method context (Ecore_IMF_Context *) in entry.
1720  *
1721  * @ingroup Entry
1722  */
1723 EAPI void                  *elm_entry_imf_context_get(Evas_Object *obj);
1724
1725 /**
1726  * @typedef Elm_Cnp_Mode
1727  * Enum of entry's copy & paste policy.
1728  *
1729  * @see elm_entry_cnp_mode_set()
1730  * @see elm_entry_cnp_mode_get()
1731  */
1732 typedef enum {
1733    ELM_CNP_MODE_MARKUP,   /**< copy & paste text with markup tag */
1734    ELM_CNP_MODE_NO_IMAGE, /**< copy & paste text without item(image) tag */
1735    ELM_CNP_MODE_PLAINTEXT /**< copy & paste text without markup tag */
1736 } Elm_Cnp_Mode;
1737
1738 /**
1739  * Control pasting of text and images for the widget.
1740  *
1741  * Normally the entry allows both text and images to be pasted.
1742  * By setting cnp_mode to be #ELM_CNP_MODE_NO_IMAGE, this prevents images from being copy or past.
1743  * By setting cnp_mode to be #ELM_CNP_MODE_PLAINTEXT, this remove all tags in text .
1744  *
1745  * @note this only changes the behaviour of text.
1746  *
1747  * @param obj The entry object
1748  * @param cnp_mode One of #Elm_Cnp_Mode: #ELM_CNP_MODE_MARKUP, #ELM_CNP_MODE_NO_IMAGE, #ELM_CNP_MODE_PLAINTEXT.
1749  *
1750  * @ingroup Entry
1751  */
1752 EAPI void         elm_entry_cnp_mode_set(Evas_Object *obj, Elm_Cnp_Mode cnp_mode);
1753
1754 /**
1755  * Getting elm_entry text paste/drop mode.
1756  *
1757  * Normally the entry allows both text and images to be pasted.
1758  * This gets the copy & paste mode of the entry.
1759  *
1760  * @param obj The entry object
1761  * @return mode One of #Elm_Cnp_Mode: #ELM_CNP_MODE_MARKUP, #ELM_CNP_MODE_NO_IMAGE, #ELM_CNP_MODE_PLAINTEXT.
1762  *
1763  * @ingroup Entry
1764  */
1765 EAPI Elm_Cnp_Mode elm_entry_cnp_mode_get(const Evas_Object *obj);
1766
1767 /**
1768  * Set the parent of the hover popup
1769  *
1770  * Sets the parent object to use by the hover created by the entry
1771  * when an anchor is clicked. See @ref Hover for more details on this.
1772  *
1773  * @param obj The entry object
1774  * @param parent The object to use as parent for the hover
1775  *
1776  * @ingroup Entry
1777  */
1778 EAPI void                        elm_entry_anchor_hover_parent_set(Evas_Object *obj, Evas_Object *parent);
1779
1780 /**
1781  * Get the parent of the hover popup
1782  *
1783  * Get the object used as parent for the hover created by the entry
1784  * widget. See @ref Hover for more details on this.
1785  * If no parent is set, the same entry object will be used.
1786  *
1787  * @param obj The entry object
1788  * @return The object used as parent for the hover, NULL if none is set.
1789  *
1790  * @ingroup Entry
1791  */
1792 EAPI Evas_Object                *elm_entry_anchor_hover_parent_get(const Evas_Object *obj);
1793
1794 /**
1795  * Set the style that the hover should use
1796  *
1797  * When creating the popup hover, entry will request that it's
1798  * themed according to @p style.
1799  *
1800  * Setting style no @c NULL means disabling automatic hover.
1801  *
1802  * @param obj The entry object
1803  * @param style The style to use for the underlying hover
1804  *
1805  * @see elm_object_style_set()
1806  *
1807  * @ingroup Entry
1808  */
1809 EAPI void                        elm_entry_anchor_hover_style_set(Evas_Object *obj, const char *style);
1810
1811 /**
1812  * Get the style that the hover should use
1813  *
1814  * Get the style, the hover created by entry will use.
1815  *
1816  * @param obj The entry object
1817  * @return The style to use by the hover. @c NULL means the default is used.
1818  *
1819  * @see elm_object_style_set()
1820  *
1821  * @ingroup Entry
1822  */
1823 EAPI const char                 *elm_entry_anchor_hover_style_get(const Evas_Object *obj);
1824
1825 /**
1826  * Ends the hover popup in the entry
1827  *
1828  * When an anchor is clicked, the entry widget will create a hover
1829  * object to use as a popup with user provided content. This function
1830  * terminates this popup, returning the entry to its normal state.
1831  *
1832  * @param obj The entry object
1833  *
1834  * @ingroup Entry
1835  */
1836 EAPI void                        elm_entry_anchor_hover_end(Evas_Object *obj);
1837
1838
1839 ///////////////////// TIZEN ONLY APIs
1840 /**
1841  * This disables the entry's magnifer feature.
1842  *
1843  * @param obj The entry object
1844  * @param disabled If true, the magnifier is not displayed
1845  */
1846
1847 EAPI void                        elm_entry_magnifier_disabled_set(Evas_Object *obj, Eina_Bool disabled);
1848 /**
1849  * This returns whether the entry's magnifier feature is disabled.
1850  *
1851  * @param obj The entry object
1852  * @return If true, the feature is disabled
1853  */
1854 EAPI Eina_Bool                   elm_entry_magnifier_disabled_get(const Evas_Object *obj);
1855
1856 /**
1857   * NEED DOCUMENTATION
1858   */
1859 EAPI void                        elm_entry_magnifier_type_set(Evas_Object *obj, int type);
1860 ///////////////////////////////////////////
1861 /**
1862  * @}
1863  */