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