6dd79983b20e55b6b6b01b2133ed93fd56cfc82b
[framework/uifw/elementary.git] / src / lib / elm_entry.h
1 typedef enum
2 {
3    ELM_TEXT_FORMAT_PLAIN_UTF8,
4    ELM_TEXT_FORMAT_MARKUP_UTF8
5 } Elm_Text_Format;
6
7 /**
8  * Line wrapping types.
9  */
10 typedef enum
11 {
12    ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
13    ELM_WRAP_CHAR, /**< Char wrap - wrap between characters */
14    ELM_WRAP_WORD, /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
15    ELM_WRAP_MIXED, /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
16    ELM_WRAP_LAST
17 } Elm_Wrap_Type; /**< Type of word or character wrapping to use */
18
19 typedef enum
20 {
21    ELM_INPUT_PANEL_LAYOUT_NORMAL, /**< Default layout */
22    ELM_INPUT_PANEL_LAYOUT_NUMBER, /**< Number layout */
23    ELM_INPUT_PANEL_LAYOUT_EMAIL, /**< Email layout */
24    ELM_INPUT_PANEL_LAYOUT_URL, /**< URL layout */
25    ELM_INPUT_PANEL_LAYOUT_PHONENUMBER, /**< Phone Number layout */
26    ELM_INPUT_PANEL_LAYOUT_IP, /**< IP layout */
27    ELM_INPUT_PANEL_LAYOUT_MONTH, /**< Month layout */
28    ELM_INPUT_PANEL_LAYOUT_NUMBERONLY, /**< Number Only layout */
29    ELM_INPUT_PANEL_LAYOUT_INVALID // XXX: remove this so we can expand
30 } Elm_Input_Panel_Layout; /**< Type of input panel (virtual keyboard) to use */
31
32 typedef enum
33 {
34    ELM_AUTOCAPITAL_TYPE_NONE, /**< No auto-capitalization when typing */
35    ELM_AUTOCAPITAL_TYPE_WORD, /**< Autocapitalize each word typed */
36    ELM_AUTOCAPITAL_TYPE_SENTENCE, /**< Autocapitalize the start of each sentence */
37    ELM_AUTOCAPITAL_TYPE_ALLCHARACTER, /**< Autocapitalize all letters */
38 } Elm_Autocapital_Type; /**< Choose method of auto-capitalization */
39
40 /**
41  * @defgroup Entry Entry
42  *
43  * @image html img/widget/entry/preview-00.png
44  * @image latex img/widget/entry/preview-00.eps width=\textwidth
45  * @image html img/widget/entry/preview-01.png
46  * @image latex img/widget/entry/preview-01.eps width=\textwidth
47  * @image html img/widget/entry/preview-02.png
48  * @image latex img/widget/entry/preview-02.eps width=\textwidth
49  * @image html img/widget/entry/preview-03.png
50  * @image latex img/widget/entry/preview-03.eps width=\textwidth
51  *
52  * An entry is a convenience widget which shows a box that the user can
53  * enter text into. Entries by default don't scroll, so they grow to
54  * accomodate the entire text, resizing the parent window as needed. This
55  * can be changed with the elm_entry_scrollable_set() function.
56  *
57  * They can also be single line or multi line (the default) and when set
58  * to multi line mode they support text wrapping in any of the modes
59  * indicated by Elm_Wrap_Type.
60  *
61  * Other features include password mode, filtering of inserted text with
62  * elm_entry_text_filter_append() and related functions, inline "items" and
63  * formatted markup text.
64  *
65  * @section entry-markup Formatted text
66  *
67  * The markup tags supported by the Entry are defined by the theme, but
68  * even when writing new themes or extensions it's a good idea to stick to
69  * a sane default, to maintain coherency and avoid application breakages.
70  * Currently defined by the default theme are the following tags:
71  * @li \<br\>: Inserts a line break.
72  * @li \<ps\>: Inserts a paragraph separator. This is preferred over line
73  * breaks.
74  * @li \<tab\>: Inserts a tab.
75  * @li \<em\>...\</em\>: Emphasis. Sets the @em oblique style for the
76  * enclosed text.
77  * @li \<b\>...\</b\>: Sets the @b bold style for the enclosed text.
78  * @li \<link\>...\</link\>: Underlines the enclosed text.
79  * @li \<hilight\>...\</hilight\>: Hilights the enclosed text.
80  *
81  * @section entry-special Special markups
82  *
83  * Besides those used to format text, entries support two special markup
84  * tags used to insert clickable portions of text or items inlined within
85  * the text.
86  *
87  * @subsection entry-anchors Anchors
88  *
89  * Anchors are similar to HTML anchors. Text can be surrounded by \<a\> and
90  * \</a\> tags and an event will be generated when this text is clicked,
91  * like this:
92  *
93  * @code
94  * This text is outside <a href=anc-01>but this one is an anchor</a>
95  * @endcode
96  *
97  * The @c href attribute in the opening tag gives the name that will be
98  * used to identify the anchor and it can be any valid utf8 string.
99  *
100  * When an anchor is clicked, an @c "anchor,clicked" signal is emitted with
101  * an #Elm_Entry_Anchor_Info in the @c event_info parameter for the
102  * callback function. The same applies for "anchor,in" (mouse in), "anchor,out"
103  * (mouse out), "anchor,down" (mouse down), and "anchor,up" (mouse up) events on
104  * an anchor.
105  *
106  * @subsection entry-items Items
107  *
108  * Inlined in the text, any other @c Evas_Object can be inserted by using
109  * \<item\> tags this way:
110  *
111  * @code
112  * <item size=16x16 vsize=full href=emoticon/haha></item>
113  * @endcode
114  *
115  * Just like with anchors, the @c href identifies each item, but these need,
116  * in addition, to indicate their size, which is done using any one of
117  * @c size, @c absize or @c relsize attributes. These attributes take their
118  * value in the WxH format, where W is the width and H the height of the
119  * item.
120  *
121  * @li absize: Absolute pixel size for the item. Whatever value is set will
122  * be the item's size regardless of any scale value the object may have
123  * been set to. The final line height will be adjusted to fit larger items.
124  * @li size: Similar to @c absize, but it's adjusted to the scale value set
125  * for the object.
126  * @li relsize: Size is adjusted for the item to fit within the current
127  * line height.
128  *
129  * Besides their size, items are specificed a @c vsize value that affects
130  * how their final size and position are calculated. The possible values
131  * are:
132  * @li ascent: Item will be placed within the line's baseline and its
133  * ascent. That is, the height between the line where all characters are
134  * positioned and the highest point in the line. For @c size and @c absize
135  * items, the descent value will be added to the total line height to make
136  * them fit. @c relsize items will be adjusted to fit within this space.
137  * @li full: Items will be placed between the descent and ascent, or the
138  * lowest point in the line and its highest.
139  *
140  * The next image shows different configurations of items and how
141  * the previously mentioned options affect their sizes. In all cases,
142  * the green line indicates the ascent, blue for the baseline and red for
143  * the descent.
144  *
145  * @image html entry_item.png
146  * @image latex entry_item.eps width=\textwidth
147  *
148  * And another one to show how size differs from absize. In the first one,
149  * the scale value is set to 1.0, while the second one is using one of 2.0.
150  *
151  * @image html entry_item_scale.png
152  * @image latex entry_item_scale.eps width=\textwidth
153  *
154  * After the size for an item is calculated, the entry will request an
155  * object to place in its space. For this, the functions set with
156  * elm_entry_item_provider_append() and related functions will be called
157  * in order until one of them returns a @c non-NULL value. If no providers
158  * are available, or all of them return @c NULL, then the entry falls back
159  * to one of the internal defaults, provided the name matches with one of
160  * them.
161  *
162  * All of the following are currently supported:
163  *
164  * - emoticon/angry
165  * - emoticon/angry-shout
166  * - emoticon/crazy-laugh
167  * - emoticon/evil-laugh
168  * - emoticon/evil
169  * - emoticon/goggle-smile
170  * - emoticon/grumpy
171  * - emoticon/grumpy-smile
172  * - emoticon/guilty
173  * - emoticon/guilty-smile
174  * - emoticon/haha
175  * - emoticon/half-smile
176  * - emoticon/happy-panting
177  * - emoticon/happy
178  * - emoticon/indifferent
179  * - emoticon/kiss
180  * - emoticon/knowing-grin
181  * - emoticon/laugh
182  * - emoticon/little-bit-sorry
183  * - emoticon/love-lots
184  * - emoticon/love
185  * - emoticon/minimal-smile
186  * - emoticon/not-happy
187  * - emoticon/not-impressed
188  * - emoticon/omg
189  * - emoticon/opensmile
190  * - emoticon/smile
191  * - emoticon/sorry
192  * - emoticon/squint-laugh
193  * - emoticon/surprised
194  * - emoticon/suspicious
195  * - emoticon/tongue-dangling
196  * - emoticon/tongue-poke
197  * - emoticon/uh
198  * - emoticon/unhappy
199  * - emoticon/very-sorry
200  * - emoticon/what
201  * - emoticon/wink
202  * - emoticon/worried
203  * - emoticon/wtf
204  *
205  * Alternatively, an item may reference an image by its path, using
206  * the URI form @c file:///path/to/an/image.png and the entry will then
207  * use that image for the item.
208  *
209  * @section entry-files Loading and saving files
210  *
211  * Entries have convinience functions to load text from a file and save
212  * changes back to it after a short delay. The automatic saving is enabled
213  * by default, but can be disabled with elm_entry_autosave_set() and files
214  * can be loaded directly as plain text or have any markup in them
215  * recognized. See elm_entry_file_set() for more details.
216  *
217  * @section entry-signals Emitted signals
218  *
219  * This widget emits the following signals:
220  *
221  * @li "changed": The text within the entry was changed.
222  * @li "changed,user": The text within the entry was changed because of user interaction.
223  * @li "activated": The enter key was pressed on a single line entry.
224  * @li "press": A mouse button has been pressed on the entry.
225  * @li "longpressed": A mouse button has been pressed and held for a couple
226  * seconds.
227  * @li "clicked": The entry has been clicked (mouse press and release).
228  * @li "clicked,double": The entry has been double clicked.
229  * @li "clicked,triple": The entry has been triple clicked.
230  * @li "focused": The entry has received focus.
231  * @li "unfocused": The entry has lost focus.
232  * @li "selection,paste": A paste of the clipboard contents was requested.
233  * @li "selection,copy": A copy of the selected text into the clipboard was
234  * requested.
235  * @li "selection,cut": A cut of the selected text into the clipboard was
236  * requested.
237  * @li "selection,start": A selection has begun and no previous selection
238  * existed.
239  * @li "selection,changed": The current selection has changed.
240  * @li "selection,cleared": The current selection has been cleared.
241  * @li "cursor,changed": The cursor has changed position.
242  * @li "anchor,clicked": An anchor has been clicked. The event_info
243  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
244  * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
245  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
246  * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
247  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
248  * @li "anchor,up": Mouse button has been unpressed on an anchor. The event_info
249  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
250  * @li "anchor,down": Mouse button has been pressed on an anchor. The event_info
251  * parameter for the callback will be an #Elm_Entry_Anchor_Info.
252  * @li "preedit,changed": The preedit string has changed.
253  * @li "language,changed": Program language changed.
254  *
255  * @section entry-examples
256  *
257  * An overview of the Entry API can be seen in @ref entry_example_01
258  *
259  * @{
260  */
261
262 /**
263  * @typedef Elm_Entry_Anchor_Info
264  *
265  * The info sent in the callback for the "anchor,clicked" signals emitted
266  * by entries.
267  */
268 typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
269
270 /**
271  * @struct _Elm_Entry_Anchor_Info
272  *
273  * The info sent in the callback for the "anchor,clicked" signals emitted
274  * by entries.
275  */
276 struct _Elm_Entry_Anchor_Info
277 {
278    const char *name; /**< The name of the anchor, as stated in its href */
279    int         button; /**< The mouse button used to click on it */
280    Evas_Coord  x, /**< Anchor geometry, relative to canvas */
281                y, /**< Anchor geometry, relative to canvas */
282                w, /**< Anchor geometry, relative to canvas */
283                h; /**< Anchor geometry, relative to canvas */
284 };
285
286 /**
287  * @typedef Elm_Entry_Filter_Cb
288  * This callback type is used by entry filters to modify text.
289  * @param data The data specified as the last param when adding the filter
290  * @param entry The entry object
291  * @param text A pointer to the location of the text being filtered. This data can be modified,
292  * but any additional allocations must be managed by the user.
293  * @see elm_entry_text_filter_append
294  * @see elm_entry_text_filter_prepend
295  */
296 typedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text);
297
298 /**
299  * @typedef Elm_Entry_Change_Info
300  * This corresponds to Edje_Entry_Change_Info. Includes information about
301  * a change in the entry.
302  */
303 typedef Edje_Entry_Change_Info Elm_Entry_Change_Info;
304
305 /**
306  * This adds an entry to @p parent object.
307  *
308  * By default, entries are:
309  * @li not scrolled
310  * @li multi-line
311  * @li word wrapped
312  * @li autosave is enabled
313  *
314  * @param parent The parent object
315  * @return The new object or NULL if it cannot be created
316  */
317 EAPI Evas_Object       *elm_entry_add(Evas_Object *parent);
318
319 /**
320  * Sets the entry to single line mode.
321  *
322  * In single line mode, entries don't ever wrap when the text reaches the
323  * edge, and instead they keep growing horizontally. Pressing the @c Enter
324  * key will generate an @c "activate" event instead of adding a new line.
325  *
326  * When @p single_line is @c EINA_FALSE, line wrapping takes effect again
327  * and pressing enter will break the text into a different line
328  * without generating any events.
329  *
330  * @param obj The entry object
331  * @param single_line If true, the text in the entry
332  * will be on a single line.
333  */
334 EAPI void               elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line);
335
336 /**
337  * Gets whether the entry is set to be single line.
338  *
339  * @param obj The entry object
340  * @return single_line If true, the text in the entry is set to display
341  * on a single line.
342  *
343  * @see elm_entry_single_line_set()
344  */
345 EAPI Eina_Bool          elm_entry_single_line_get(const Evas_Object *obj);
346
347 /**
348  * Sets the entry to password mode.
349  *
350  * In password mode, entries are implicitly single line and the display of
351  * any text in them is replaced with asterisks (*).
352  *
353  * @param obj The entry object
354  * @param password If true, password mode is enabled.
355  */
356 EAPI void               elm_entry_password_set(Evas_Object *obj, Eina_Bool password);
357
358 /**
359  * Gets whether the entry is set to password mode.
360  *
361  * @param obj The entry object
362  * @return If true, the entry is set to display all characters
363  * as asterisks (*).
364  *
365  * @see elm_entry_password_set()
366  */
367 EAPI Eina_Bool          elm_entry_password_get(const Evas_Object *obj);
368
369 /**
370  * Appends @p entry to the text of the entry.
371  *
372  * Adds the text in @p entry to the end of any text already present in the
373  * widget.
374  *
375  * The appended text is subject to any filters set for the widget.
376  *
377  * @param obj The entry object
378  * @param entry The text to be displayed
379  *
380  * @see elm_entry_text_filter_append()
381  */
382 EAPI void               elm_entry_entry_append(Evas_Object *obj, const char *entry);
383
384 /**
385  * Gets whether the entry is empty.
386  *
387  * Empty means no text at all. If there are any markup tags, like an item
388  * tag for which no provider finds anything, and no text is displayed, this
389  * function still returns EINA_FALSE.
390  *
391  * @param obj The entry object
392  * @return EINA_TRUE if the entry is empty, EINA_FALSE otherwise.
393  */
394 EAPI Eina_Bool          elm_entry_is_empty(const Evas_Object *obj);
395
396 /**
397  * Gets any selected text within the entry.
398  *
399  * If there's any selected text in the entry, this function returns it as
400  * a string in markup format. NULL is returned if no selection exists or
401  * if an error occurred.
402  *
403  * The returned value points to an internal string and should not be freed
404  * or modified in any way. If the @p entry object is deleted or its
405  * contents are changed, the returned pointer should be considered invalid.
406  *
407  * @param obj The entry object
408  * @return The selected text within the entry or NULL on failure
409  */
410 EAPI const char        *elm_entry_selection_get(const Evas_Object *obj);
411
412 /**
413  * Returns the actual textblock object of the entry.
414  *
415  * This function exposes the internal textblock object that actually
416  * contains and draws the text. This should be used for low-level
417  * manipulations that are otherwise not possible.
418  *
419  * Changing the textblock directly from here will not notify edje/elm to
420  * recalculate the textblock size automatically, so any modifications
421  * done to the textblock returned by this function should be followed by
422  * a call to elm_entry_calc_force().
423  *
424  * The return value is marked as const as an additional warning.
425  * One should not use the returned object with any of the generic evas
426  * functions (geometry_get/resize/move and etc), but only with the textblock
427  * functions; The former will either not work at all, or break the correct
428  * functionality.
429  *
430  * IMPORTANT: Many functions may change (i.e delete and create a new one)
431  * the internal textblock object. Do NOT cache the returned object, and try
432  * not to mix calls on this object with regular elm_entry calls (which may
433  * change the internal textblock object). This applies to all cursors
434  * returned from textblock calls, and all the other derivative values.
435  *
436  * @param obj The entry object
437  * @return The textblock object.
438  */
439 EAPI const Evas_Object *elm_entry_textblock_get(const Evas_Object *obj);
440
441 /**
442  * Forces calculation of the entry size and text layouting.
443  *
444  * This should be used after modifying the textblock object directly. See
445  * elm_entry_textblock_get() for more information.
446  *
447  * @param obj The entry object
448  *
449  * @see elm_entry_textblock_get()
450  */
451 EAPI void               elm_entry_calc_force(const Evas_Object *obj);
452
453 /**
454  * Inserts the given text into the entry at the current cursor position.
455  *
456  * This inserts text at the cursor position as if it was typed
457  * by the user (note that this also allows markup which a user
458  * can't just "type" as it would be converted to escaped text, so this
459  * call can be used to insert things like emoticon items or bold push/pop
460  * tags, other font and color change tags etc.)
461  *
462  * If any selection exists, it will be replaced by the inserted text.
463  *
464  * The inserted text is subject to any filters set for the widget.
465  *
466  * @param obj The entry object
467  * @param entry The text to insert
468  *
469  * @see elm_entry_text_filter_append()
470  */
471 EAPI void               elm_entry_entry_insert(Evas_Object *obj, const char *entry);
472
473 /**
474  * Set the line wrap type to use on multi-line entries.
475  *
476  * Sets the wrap type used by the entry to any of the specified in
477  * Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
478  * line (without inserting a line break or paragraph separator) when it
479  * reaches the far edge of the widget.
480  *
481  * Note that this only makes sense for multi-line entries. A widget set
482  * to be single line will never wrap.
483  *
484  * @param obj The entry object
485  * @param wrap The wrap mode to use. See Elm_Wrap_Type for details on them
486  */
487 EAPI void               elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap);
488
489 /**
490  * Gets the wrap mode the entry was set to use.
491  *
492  * @param obj The entry object
493  * @return Wrap type
494  *
495  * @see also elm_entry_line_wrap_set()
496  */
497 EAPI Elm_Wrap_Type      elm_entry_line_wrap_get(const Evas_Object *obj);
498
499 /**
500  * Sets if the entry is to be editable or not.
501  *
502  * By default, entries are editable and when focused, any text input by the
503  * user will be inserted at the current cursor position. But calling this
504  * function with @p editable as EINA_FALSE will prevent the user from
505  * inputting text into the entry.
506  *
507  * The only way to change the text of a non-editable entry is to use
508  * elm_object_text_set(), elm_entry_entry_insert() and other related
509  * functions.
510  *
511  * @param obj The entry object
512  * @param editable If EINA_TRUE, user input will be inserted in the entry,
513  * if not, the entry is read-only and no user input is allowed.
514  */
515 EAPI void               elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable);
516
517 /**
518  * Gets whether the entry is editable or not.
519  *
520  * @param obj The entry object
521  * @return If true, the entry is editable by the user.
522  * If false, it is not editable by the user
523  *
524  * @see elm_entry_editable_set()
525  */
526 EAPI Eina_Bool          elm_entry_editable_get(const Evas_Object *obj);
527
528 /**
529  * This drops any existing text selection within the entry.
530  *
531  * @param obj The entry object
532  */
533 EAPI void               elm_entry_select_none(Evas_Object *obj);
534
535 /**
536  * This selects all text within the entry.
537  *
538  * @param obj The entry object
539  */
540 EAPI void               elm_entry_select_all(Evas_Object *obj);
541
542 /**
543  * This moves the cursor one place to the right within the entry.
544  *
545  * @param obj The entry object
546  * @return EINA_TRUE upon success, EINA_FALSE upon failure
547  */
548 EAPI Eina_Bool          elm_entry_cursor_next(Evas_Object *obj);
549
550 /**
551  * This moves the cursor one place to the left within the entry.
552  *
553  * @param obj The entry object
554  * @return EINA_TRUE upon success, EINA_FALSE upon failure
555  */
556 EAPI Eina_Bool          elm_entry_cursor_prev(Evas_Object *obj);
557
558 /**
559  * This moves the cursor one line up within the entry.
560  *
561  * @param obj The entry object
562  * @return EINA_TRUE upon success, EINA_FALSE upon failure
563  */
564 EAPI Eina_Bool          elm_entry_cursor_up(Evas_Object *obj);
565
566 /**
567  * This moves the cursor one line down within the entry.
568  *
569  * @param obj The entry object
570  * @return EINA_TRUE upon success, EINA_FALSE upon failure
571  */
572 EAPI Eina_Bool          elm_entry_cursor_down(Evas_Object *obj);
573
574 /**
575  * This moves the cursor to the beginning of the entry.
576  *
577  * @param obj The entry object
578  */
579 EAPI void               elm_entry_cursor_begin_set(Evas_Object *obj);
580
581 /**
582  * This moves the cursor to the end of the entry.
583  *
584  * @param obj The entry object
585  */
586 EAPI void               elm_entry_cursor_end_set(Evas_Object *obj);
587
588 /**
589  * This moves the cursor to the beginning of the current line.
590  *
591  * @param obj The entry object
592  */
593 EAPI void               elm_entry_cursor_line_begin_set(Evas_Object *obj);
594
595 /**
596  * This moves the cursor to the end of the current line.
597  *
598  * @param obj The entry object
599  */
600 EAPI void               elm_entry_cursor_line_end_set(Evas_Object *obj);
601
602 /**
603  * This begins a selection within the entry as though
604  * the user were holding down the mouse button to make a selection.
605  *
606  * @param obj The entry object
607  */
608 EAPI void               elm_entry_cursor_selection_begin(Evas_Object *obj);
609
610 /**
611  * This ends a selection within the entry as though
612  * the user had just released the mouse button while making a selection.
613  *
614  * @param obj The entry object
615  */
616 EAPI void               elm_entry_cursor_selection_end(Evas_Object *obj);
617
618 /**
619  * Gets whether a format node exists at the current cursor position.
620  *
621  * A format node is anything that defines how the text is rendered. It can
622  * be a visible format node, such as a line break or a paragraph separator,
623  * or an invisible one, such as bold begin or end tag.
624  * This function returns whether any format node exists at the current
625  * cursor position.
626  *
627  * @param obj The entry object
628  * @return EINA_TRUE if the current cursor position contains a format node,
629  * EINA_FALSE otherwise.
630  *
631  * @see elm_entry_cursor_is_visible_format_get()
632  */
633 EAPI Eina_Bool          elm_entry_cursor_is_format_get(const Evas_Object *obj);
634
635 /**
636  * Gets if the current cursor position holds a visible format node.
637  *
638  * @param obj The entry object
639  * @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
640  * if it's an invisible one or no format exists.
641  *
642  * @see elm_entry_cursor_is_format_get()
643  */
644 EAPI Eina_Bool          elm_entry_cursor_is_visible_format_get(const Evas_Object *obj);
645
646 /**
647  * Gets the character pointed by the cursor at its current position.
648  *
649  * This function returns a string with the utf8 character stored at the
650  * current cursor position.
651  * Only the text is returned, any format that may exist will not be part
652  * of the return value.
653  *
654  * @param obj The entry object
655  * @return The text pointed by the cursors.
656  */
657 EAPI const char        *elm_entry_cursor_content_get(const Evas_Object *obj);
658
659 /**
660  * This function returns the geometry of the cursor.
661  *
662  * It's useful if you want to draw something on the cursor (or where it is),
663  * or for example in the case of scrolled entry where you want to show the
664  * cursor.
665  *
666  * @param obj The entry object
667  * @param x returned geometry
668  * @param y returned geometry
669  * @param w returned geometry
670  * @param h returned geometry
671  * @return EINA_TRUE upon success, EINA_FALSE upon failure
672  */
673 EAPI Eina_Bool          elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
674
675 /**
676  * Sets the cursor position in the entry to the given value
677  *
678  * The value in @p pos is the index of the character position within the
679  * contents of the string as returned by elm_entry_cursor_pos_get().
680  *
681  * @param obj The entry object
682  * @param pos The position of the cursor
683  */
684 EAPI void               elm_entry_cursor_pos_set(Evas_Object *obj, int pos);
685
686 /**
687  * Retrieves the current position of the cursor in the entry
688  *
689  * @param obj The entry object
690  * @return The cursor position
691  */
692 EAPI int                elm_entry_cursor_pos_get(const Evas_Object *obj);
693
694 /**
695  * This executes a "cut" action on the selected text in the entry.
696  *
697  * @param obj The entry object
698  */
699 EAPI void               elm_entry_selection_cut(Evas_Object *obj);
700
701 /**
702  * This executes a "copy" action on the selected text in the entry.
703  *
704  * @param obj The entry object
705  */
706 EAPI void               elm_entry_selection_copy(Evas_Object *obj);
707
708 /**
709  * This executes a "paste" action in the entry.
710  *
711  * @param obj The entry object
712  */
713 EAPI void               elm_entry_selection_paste(Evas_Object *obj);
714
715 /**
716  * This clears and frees the items in a entry's contextual (longpress)
717  * menu.
718  *
719  * @param obj The entry object
720  *
721  * @see elm_entry_context_menu_item_add()
722  */
723 EAPI void               elm_entry_context_menu_clear(Evas_Object *obj);
724
725 /**
726  * This adds an item to the entry's contextual menu.
727  *
728  * A longpress on an entry will make the contextual menu show up, if this
729  * hasn't been disabled with elm_entry_context_menu_disabled_set().
730  * By default, this menu provides a few options like enabling selection mode,
731  * which is useful on embedded devices that need to be explicit about it,
732  * and when a selection exists it also shows the copy and cut actions.
733  *
734  * With this function, developers can add other options to this menu to
735  * perform any action they deem necessary.
736  *
737  * @param obj The entry object
738  * @param label The item's text label
739  * @param icon_file The item's icon file
740  * @param icon_type The item's icon type
741  * @param func The callback to execute when the item is clicked
742  * @param data The data to associate with the item for related functions
743  */
744 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);
745
746 /**
747  * This disables the entry's contextual (longpress) menu.
748  *
749  * @param obj The entry object
750  * @param disabled If true, the menu is disabled
751  */
752 EAPI void               elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled);
753
754 /**
755  * This returns whether the entry's contextual (longpress) menu is
756  * disabled.
757  *
758  * @param obj The entry object
759  * @return If true, the menu is disabled
760  */
761 EAPI Eina_Bool          elm_entry_context_menu_disabled_get(const Evas_Object *obj);
762
763 /**
764  * This appends a custom item provider to the list for that entry
765  *
766  * This appends the given callback. The list is walked from beginning to end
767  * with each function called given the item href string in the text. If the
768  * function returns an object handle other than NULL (it should create an
769  * object to do this), then this object is used to replace that item. If
770  * not the next provider is called until one provides an item object, or the
771  * default provider in entry does.
772  *
773  * @param obj The entry object
774  * @param func The function called to provide the item object
775  * @param data The data passed to @p func
776  *
777  * @see @ref entry-items
778  */
779 EAPI void               elm_entry_item_provider_append(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
780
781 /**
782  * This prepends a custom item provider to the list for that entry
783  *
784  * This prepends the given callback. See elm_entry_item_provider_append() for
785  * more information
786  *
787  * @param obj The entry object
788  * @param func The function called to provide the item object
789  * @param data The data passed to @p func
790  */
791 EAPI void               elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
792
793 /**
794  * This removes a custom item provider to the list for that entry
795  *
796  * This removes the given callback. See elm_entry_item_provider_append() for
797  * more information
798  *
799  * @param obj The entry object
800  * @param func The function called to provide the item object
801  * @param data The data passed to @p func
802  */
803 EAPI void               elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * entry, const char *item), void *data);
804
805 /**
806  * Append a filter function for text inserted in the entry
807  *
808  * Append the given callback to the list. This functions will be called
809  * whenever any text is inserted into the entry, with the text to be inserted
810  * as a parameter. The callback function is free to alter the text in any way
811  * it wants, but it must remember to free the given pointer and update it.
812  * If the new text is to be discarded, the function can free it and set its
813  * text parameter to NULL. This will also prevent any following filters from
814  * being called.
815  *
816  * @param obj The entry object
817  * @param func The function to use as text filter
818  * @param data User data to pass to @p func
819  */
820 EAPI void               elm_entry_text_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
821
822 /**
823  * Prepend a filter function for text insdrted in the entry
824  *
825  * Prepend the given callback to the list. See elm_entry_text_filter_append()
826  * for more information
827  *
828  * @param obj The entry object
829  * @param func The function to use as text filter
830  * @param data User data to pass to @p func
831  */
832 EAPI void               elm_entry_text_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
833
834 /**
835  * Remove a filter from the list
836  *
837  * Removes the given callback from the filter list. See
838  * elm_entry_text_filter_append() for more information.
839  *
840  * @param obj The entry object
841  * @param func The filter function to remove
842  * @param data The user data passed when adding the function
843  */
844 EAPI void               elm_entry_text_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data);
845
846 /**
847  * This converts a markup (HTML-like) string into UTF-8.
848  *
849  * The returned string is a malloc'ed buffer and it should be freed when
850  * not needed anymore.
851  *
852  * @param s The string (in markup) to be converted
853  * @return The converted string (in UTF-8). It should be freed.
854  */
855 EAPI char              *elm_entry_markup_to_utf8(const char *s)
856 EINA_MALLOC EINA_WARN_UNUSED_RESULT;
857
858 /**
859  * This converts a UTF-8 string into markup (HTML-like).
860  *
861  * The returned string is a malloc'ed buffer and it should be freed when
862  * not needed anymore.
863  *
864  * @param s The string (in UTF-8) to be converted
865  * @return The converted string (in markup). It should be freed.
866  */
867 EAPI char              *elm_entry_utf8_to_markup(const char *s)
868 EINA_MALLOC EINA_WARN_UNUSED_RESULT;
869
870 /**
871  * This sets the file (and implicitly loads it) for the text to display and
872  * then edit. All changes are written back to the file after a short delay if
873  * the entry object is set to autosave (which is the default).
874  *
875  * If the entry had any other file set previously, any changes made to it
876  * will be saved if the autosave feature is enabled, otherwise, the file
877  * will be silently discarded and any non-saved changes will be lost.
878  *
879  * @param obj The entry object
880  * @param file The path to the file to load and save
881  * @param format The file format
882  */
883 EAPI void               elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format);
884
885 /**
886  * Gets the file being edited by the entry.
887  *
888  * This function can be used to retrieve any file set on the entry for
889  * edition, along with the format used to load and save it.
890  *
891  * @param obj The entry object
892  * @param file The path to the file to load and save
893  * @param format The file format
894  */
895 EAPI void               elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format);
896
897 /**
898  * This function writes any changes made to the file set with
899  * elm_entry_file_set()
900  *
901  * @param obj The entry object
902  */
903 EAPI void               elm_entry_file_save(Evas_Object *obj);
904
905 /**
906  * This sets the entry object to 'autosave' the loaded text file or not.
907  *
908  * @param obj The entry object
909  * @param autosave Autosave the loaded file or not
910  *
911  * @see elm_entry_file_set()
912  */
913 EAPI void               elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave);
914
915 /**
916  * This gets the entry object's 'autosave' status.
917  *
918  * @param obj The entry object
919  * @return Autosave the loaded file or not
920  *
921  * @see elm_entry_file_set()
922  */
923 EAPI Eina_Bool          elm_entry_autosave_get(const Evas_Object *obj);
924
925 /**
926  * Control pasting of text and images for the widget.
927  *
928  * Normally the entry allows both text and images to be pasted.  By setting
929  * textonly to be true, this prevents images from being pasted.
930  *
931  * Note this only changes the behaviour of text.
932  *
933  * @param obj The entry object
934  * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is
935  * text+image+other.
936  */
937 EAPI void               elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly);
938
939 /**
940  * Getting elm_entry text paste/drop mode.
941  *
942  * In textonly mode, only text may be pasted or dropped into the widget.
943  *
944  * @param obj The entry object
945  * @return If the widget only accepts text from pastes.
946  */
947 EAPI Eina_Bool          elm_entry_cnp_textonly_get(const Evas_Object *obj);
948
949 /**
950  * Enable or disable scrolling in entry
951  *
952  * Normally the entry is not scrollable unless you enable it with this call.
953  *
954  * @param obj The entry object
955  * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
956  */
957 EAPI void               elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
958
959 /**
960  * Get the scrollable state of the entry
961  *
962  * Normally the entry is not scrollable. This gets the scrollable state
963  * of the entry. See elm_entry_scrollable_set() for more information.
964  *
965  * @param obj The entry object
966  * @return The scrollable state
967  */
968 EAPI Eina_Bool          elm_entry_scrollable_get(const Evas_Object *obj);
969
970 /**
971  * This sets a widget to be displayed to the left of a scrolled entry.
972  *
973  * @param obj The scrolled entry object
974  * @param icon The widget to display on the left side of the scrolled
975  * entry.
976  *
977  * @note A previously set widget will be destroyed.
978  * @note If the object being set does not have minimum size hints set,
979  * it won't get properly displayed.
980  *
981  * @see elm_entry_end_set()
982  */
983 EAPI void               elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
984
985 /**
986  * Gets the leftmost widget of the scrolled entry. This object is
987  * owned by the scrolled entry and should not be modified.
988  *
989  * @param obj The scrolled entry object
990  * @return the left widget inside the scroller
991  */
992 EAPI Evas_Object       *elm_entry_icon_get(const Evas_Object *obj);
993
994 /**
995  * Unset the leftmost widget of the scrolled entry, unparenting and
996  * returning it.
997  *
998  * @param obj The scrolled entry object
999  * @return the previously set icon sub-object of this entry, on
1000  * success.
1001  *
1002  * @see elm_entry_icon_set()
1003  */
1004 EAPI Evas_Object       *elm_entry_icon_unset(Evas_Object *obj);
1005
1006 /**
1007  * Sets the visibility of the left-side widget of the scrolled entry,
1008  * set by elm_entry_icon_set().
1009  *
1010  * @param obj The scrolled entry object
1011  * @param setting EINA_TRUE if the object should be displayed,
1012  * EINA_FALSE if not.
1013  */
1014 EAPI void               elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
1015
1016 /**
1017  * This sets a widget to be displayed to the end of a scrolled entry.
1018  *
1019  * @param obj The scrolled entry object
1020  * @param end The widget to display on the right side of the scrolled
1021  * entry.
1022  *
1023  * @note A previously set widget will be destroyed.
1024  * @note If the object being set does not have minimum size hints set,
1025  * it won't get properly displayed.
1026  *
1027  * @see elm_entry_icon_set
1028  */
1029 EAPI void               elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
1030
1031 /**
1032  * Gets the endmost widget of the scrolled entry. This object is owned
1033  * by the scrolled entry and should not be modified.
1034  *
1035  * @param obj The scrolled entry object
1036  * @return the right widget inside the scroller
1037  */
1038 EAPI Evas_Object       *elm_entry_end_get(const Evas_Object *obj);
1039
1040 /**
1041  * Unset the endmost widget of the scrolled entry, unparenting and
1042  * returning it.
1043  *
1044  * @param obj The scrolled entry object
1045  * @return the previously set icon sub-object of this entry, on
1046  * success.
1047  *
1048  * @see elm_entry_icon_set()
1049  */
1050 EAPI Evas_Object       *elm_entry_end_unset(Evas_Object *obj);
1051
1052 /**
1053  * Sets the visibility of the end widget of the scrolled entry, set by
1054  * elm_entry_end_set().
1055  *
1056  * @param obj The scrolled entry object
1057  * @param setting EINA_TRUE if the object should be displayed,
1058  * EINA_FALSE if not.
1059  */
1060 EAPI void               elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
1061
1062 /**
1063  * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling
1064  * them).
1065  *
1066  * Setting an entry to single-line mode with elm_entry_single_line_set()
1067  * will automatically disable the display of scrollbars when the entry
1068  * moves inside its scroller.
1069  *
1070  * @param obj The scrolled entry object
1071  * @param h The horizontal scrollbar policy to apply
1072  * @param v The vertical scrollbar policy to apply
1073  */
1074 EAPI void               elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
1075
1076 /**
1077  * This enables/disables bouncing within the entry.
1078  *
1079  * This function sets whether the entry will bounce when scrolling reaches
1080  * the end of the contained entry.
1081  *
1082  * @param obj The scrolled entry object
1083  * @param h_bounce The horizontal bounce state
1084  * @param v_bounce The vertical bounce state
1085  */
1086 EAPI void               elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
1087
1088 /**
1089  * Get the bounce mode
1090  *
1091  * @param obj The Entry object
1092  * @param h_bounce Allow bounce horizontally
1093  * @param v_bounce Allow bounce vertically
1094  */
1095 EAPI void               elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
1096
1097 /* pre-made filters for entries */
1098 /**
1099  * @typedef Elm_Entry_Filter_Limit_Size
1100  *
1101  * Data for the elm_entry_filter_limit_size() entry filter.
1102  */
1103 typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
1104
1105 /**
1106  * @struct _Elm_Entry_Filter_Limit_Size
1107  *
1108  * Data for the elm_entry_filter_limit_size() entry filter.
1109  */
1110 struct _Elm_Entry_Filter_Limit_Size
1111 {
1112    int max_char_count;      /**< The maximum number of characters allowed. */
1113    int max_byte_count;      /**< The maximum number of bytes allowed*/
1114 };
1115
1116 /**
1117  * Filter inserted text based on user defined character and byte limits
1118  *
1119  * Add this filter to an entry to limit the characters that it will accept
1120  * based the the contents of the provided #Elm_Entry_Filter_Limit_Size.
1121  * The funtion works on the UTF-8 representation of the string, converting
1122  * it from the set markup, thus not accounting for any format in it.
1123  *
1124  * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
1125  * it as data when setting the filter. In it, it's possible to set limits
1126  * by character count or bytes (any of them is disabled if 0), and both can
1127  * be set at the same time. In that case, it first checks for characters,
1128  * then bytes.
1129  *
1130  * The function will cut the inserted text in order to allow only the first
1131  * number of characters that are still allowed. The cut is made in
1132  * characters, even when limiting by bytes, in order to always contain
1133  * valid ones and avoid half unicode characters making it in.
1134  *
1135  * This filter, like any others, does not apply when setting the entry text
1136  * directly with elm_object_text_set().
1137  */
1138 EAPI void elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text);
1139
1140 /**
1141  * @typedef Elm_Entry_Filter_Accept_Set
1142  *
1143  * Data for the elm_entry_filter_accept_set() entry filter.
1144  */
1145 typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
1146
1147 /**
1148  * @struct _Elm_Entry_Filter_Accept_Set
1149  *
1150  * Data for the elm_entry_filter_accept_set() entry filter.
1151  */
1152 struct _Elm_Entry_Filter_Accept_Set
1153 {
1154    const char *accepted;      /**< Set of characters accepted in the entry. */
1155    const char *rejected;      /**< Set of characters rejected from the entry. */
1156 };
1157
1158 /**
1159  * Filter inserted text based on accepted or rejected sets of characters
1160  *
1161  * Add this filter to an entry to restrict the set of accepted characters
1162  * based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
1163  * This structure contains both accepted and rejected sets, but they are
1164  * mutually exclusive.
1165  *
1166  * The @c accepted set takes preference, so if it is set, the filter will
1167  * only work based on the accepted characters, ignoring anything in the
1168  * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.
1169  *
1170  * In both cases, the function filters by matching utf8 characters to the
1171  * raw markup text, so it can be used to remove formatting tags.
1172  *
1173  * This filter, like any others, does not apply when setting the entry text
1174  * directly with elm_object_text_set()
1175  */
1176 EAPI void                   elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text);
1177 /**
1178  * Set the input panel layout of the entry
1179  *
1180  * @param obj The entry object
1181  * @param layout layout type
1182  */
1183 EAPI void                   elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout);
1184
1185 /**
1186  * Get the input panel layout of the entry
1187  *
1188  * @param obj The entry object
1189  * @return layout type
1190  *
1191  * @see elm_entry_input_panel_layout_set
1192  */
1193 EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj);
1194
1195 /**
1196  * Set the autocapitalization type on the immodule.
1197  *
1198  * @param obj The entry object
1199  * @param autocapital_type The type of autocapitalization
1200  */
1201 EAPI void                   elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type);
1202
1203 /**
1204  * Retrieve the autocapitalization type on the immodule.
1205  *
1206  * @param obj The entry object
1207  * @return autocapitalization type
1208  */
1209 EAPI Elm_Autocapital_Type   elm_entry_autocapital_type_get(Evas_Object *obj);
1210
1211 /**
1212  * Sets the attribute to show the input panel automatically.
1213  *
1214  * @param obj The entry object
1215  * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
1216  */
1217 EAPI void                   elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled);
1218
1219 /**
1220  * Retrieve the attribute to show the input panel automatically.
1221  *
1222  * @param obj The entry object
1223  * @return EINA_TRUE if input panel will be appeared when the entry is clicked or has a focus, EINA_FALSE otherwise
1224  */
1225 EAPI Eina_Bool              elm_entry_input_panel_enabled_get(Evas_Object *obj);
1226
1227 /**
1228  * @}
1229  */