+elm_toolbar_item_icon_file_set()
[framework/uifw/elementary.git] / src / lib / Elementary.h.in
1 /*
2  *
3  * vim:ts=8:sw=3:sts=3:expandtab:cino=>5n-3f0^-2{2(0W1st0
4  */
5
6 /**
7 @file Elementary.h.in
8 @brief Elementary Widget Library
9 */
10
11 /**
12 @mainpage Elementary
13 @image html  elementary.png
14 @version 0.8.0
15 @date 2008-2011
16
17 @section intro What is Elementary?
18
19 This is a VERY SIMPLE toolkit. It is not meant for writing extensive desktop
20 applications (yet). Small simple ones with simple needs.
21
22 It is meant to make the programmers work almost brainless but give them lots
23 of flexibility.
24
25 @li @ref Start - Go here to quickly get started with writing Apps
26
27 @section organization Organization
28
29 One can divide Elemementary into three main groups:
30 @li @ref infralist - These are modules that deal with Elementary as a whole.
31 @li @ref widgetslist - These are the widgets you'll compose your UI out of.
32 @li @ref containerslist - These are the containers which hold the widgets.
33
34 @section license License
35
36 LGPL v2 (see COPYING in the base of Elementary's source). This applies to
37 all files in the source tree.
38
39 @section ack Acknowledgements
40 There is a lot that goes into making a widget set, and they don't happen out of
41 nothing. It's like trying to make everyone everywhere happy, regardless of age,
42 gender, race or nationality - and that is really tough. So thanks to people and
43 organisations behind this, as listed in the @ref authors page.
44 */
45
46
47 /**
48  * @defgroup Start Getting Started
49  *
50  * To write an Elementary app, you can get started with the following:
51  *
52 @code
53 #include <Elementary.h>
54 EAPI_MAIN int
55 elm_main(int argc, char **argv)
56 {
57    // create window(s) here and do any application init
58    elm_run(); // run main loop
59    elm_shutdown(); // after mainloop finishes running, shutdown
60    return 0; // exit 0 for exit code
61 }
62 ELM_MAIN()
63 @endcode
64  *
65  * To use autotools (which helps in many ways in the long run, like being able
66  * to immediately create releases of your software directly from your tree
67  * and ensure everything needed to build it is there) you will need a
68  * configure.ac, Makefile.am and autogen.sh file.
69  *
70  * configure.ac:
71  *
72 @verbatim
73 AC_INIT(myapp, 0.0.0, myname@mydomain.com)
74 AC_PREREQ(2.52)
75 AC_CONFIG_SRCDIR(configure.ac)
76 AM_CONFIG_HEADER(config.h)
77 AC_PROG_CC
78 AM_INIT_AUTOMAKE(1.6 dist-bzip2)
79 PKG_CHECK_MODULES([ELEMENTARY], elementary)
80 AC_OUTPUT(Makefile)
81 @endverbatim
82  *
83  * Makefile.am:
84  *
85 @verbatim
86 AUTOMAKE_OPTIONS = 1.4 foreign
87 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in configure depcomp install-sh missing
88
89 INCLUDES = -I$(top_srcdir)
90
91 bin_PROGRAMS = myapp
92
93 myapp_SOURCES = main.c
94 myapp_LDADD = @ELEMENTARY_LIBS@
95 myapp_CFLAGS = @ELEMENTARY_CFLAGS@
96 @endverbatim
97  *
98  * autogen.sh:
99  *
100 @verbatim
101 #!/bin/sh
102 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
103 echo "Running autoheader..." ; autoheader || exit 1
104 echo "Running autoconf..." ; autoconf || exit 1
105 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
106 ./configure "$@"
107 @endverbatim
108  *
109  * To generate all the things needed to bootstrap just run:
110  *
111 @verbatim
112 ./autogen.sh
113 @endverbatim
114  *
115  * This will generate Makefile.in's, the confgure script and everything else.
116  * After this it works like all normal autotools projects:
117 @verbatim
118 ./configure
119 make
120 sudo make install
121 @endverbatim
122  *
123  * Note sudo was assumed to get root permissions, as this would install in
124  * /usr/local which is system-owned. Use any way you like to gain root, or
125  * specify a different prefix with configure:
126  *
127 @verbatim
128 ./confiugre --prefix=$HOME/mysoftware
129 @endverbatim
130  *
131  * Also remember that autotools buys you some useful commands like:
132 @verbatim
133 make uninstall
134 @endverbatim
135  *
136  * This uninstalls the software after it was installed with "make install".
137  * It is very useful to clear up what you built if you wish to clean the
138  * system.
139  *
140 @verbatim
141 make distcheck
142 @endverbatim
143  *
144  * This firstly checks if your build tree is "clean" and ready for
145  * distribution. It also builds a tarball (myapp-0.0.0.tar.gz) that is
146  * ready to upload and distribute to the world, that contains the generated
147  * Makefile.in's and configure script. The users do not need to run
148  * autogen.sh - just configure and on. They don't need autotools installed.
149  * This tarball also builds cleanly, has all the sources it needs to build
150  * included (that is sources for your application, not libraries it depends
151  * on like Elementary). It builds cleanly in a buildroot and does not
152  * contain any files that are temporarily generated like binaries and other
153  * build-generated files, so the tarball is clean, and no need to worry
154  * about cleaning up your tree before packaging.
155  *
156 @verbatim
157 make clean
158 @endverbatim
159  *
160  * This cleans up all build files (binaries, objects etc.) from the tree.
161  *
162 @verbatim
163 make distclean
164 @endverbatim
165  *
166  * This cleans out all files from the build and from configure's output too.
167  *
168 @verbatim
169 make maintainer-clean
170 @endverbatim
171  *
172  * This deletes all the files autogen.sh will produce so the tree is clean
173  * to be put into a revision-control system (like CVS, SVN or GIT for example).
174  *
175  * There is a more advanced way of making use of the quicklaunch infrastructure
176  * in Elementary (which will not be covered here due to its more advanced
177  * nature).
178  *
179  * Now let's actually create an interactive "Hello World" gui that you can
180  * click the ok button to exit. It's more code because this now does something
181  * much more significant, but it's still very simple:
182  *
183 @code
184 #include <Elementary.h>
185
186 static void
187 on_done(void *data, Evas_Object *obj, void *event_info)
188 {
189    // quit the mainloop (elm_run function will return)
190    elm_exit();
191 }
192
193 EAPI_MAIN int
194 elm_main(int argc, char **argv)
195 {
196    Evas_Object *win, *bg, *box, *lab, *btn;
197
198    // new window - do the usual and give it a name (hello) and title (Hello)
199    win = elm_win_util_standard_add("hello", "Hello");
200    // when the user clicks "close" on a window there is a request to delete
201    evas_object_smart_callback_add(win, "delete,request", on_done, NULL);
202
203    // add a box object - default is vertical. a box holds children in a row,
204    // either horizontally or vertically. nothing more.
205    box = elm_box_add(win);
206    // make the box hotizontal
207    elm_box_horizontal_set(box, EINA_TRUE);
208    // add object as a resize object for the window (controls window minimum
209    // size as well as gets resized if window is resized)
210    elm_win_resize_object_add(win, box);
211    evas_object_show(box);
212
213    // add a label widget, set the text and put it in the pad frame
214    lab = elm_label_add(win);
215    // set default text of the label
216    elm_object_text_set(lab, "Hello out there world!");
217    // pack the label at the end of the box
218    elm_box_pack_end(box, lab);
219    evas_object_show(lab);
220
221    // add an ok button
222    btn = elm_button_add(win);
223    // set default text of button to "OK"
224    elm_object_text_set(btn, "OK");
225    // pack the button at the end of the box
226    elm_box_pack_end(box, btn);
227    evas_object_show(btn);
228    // call on_done when button is clicked
229    evas_object_smart_callback_add(btn, "clicked", on_done, NULL);
230
231    // now we are done, show the window
232    evas_object_show(win);
233
234    // run the mainloop and process events and callbacks
235    elm_run();
236    return 0;
237 }
238 ELM_MAIN()
239 @endcode
240    *
241    */
242
243 /**
244 @page authors Authors
245 @author Carsten Haitzler <raster@@rasterman.com>
246 @author Gustavo Sverzut Barbieri <barbieri@@profusion.mobi>
247 @author Cedric Bail <cedric.bail@@free.fr>
248 @author Vincent Torri <vtorri@@univ-evry.fr>
249 @author Daniel Kolesa <quaker66@@gmail.com>
250 @author Jaime Thomas <avi.thomas@@gmail.com>
251 @author Swisscom - http://www.swisscom.ch/
252 @author Christopher Michael <devilhorns@@comcast.net>
253 @author Marco Trevisan (TreviƱo) <mail@@3v1n0.net>
254 @author Michael Bouchaud <michael.bouchaud@@gmail.com>
255 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
256 @author Brian Wang <brian.wang.0721@@gmail.com>
257 @author Mike Blumenkrantz (discomfitor/zmike) <michael.blumenkrantz@@gmail.com>
258 @author Samsung Electronics <tbd>
259 @author Samsung SAIT <tbd>
260 @author Brett Nash <nash@@nash.id.au>
261 @author Bruno Dilly <bdilly@@profusion.mobi>
262 @author Rafael Fonseca <rfonseca@@profusion.mobi>
263 @author Chuneon Park <hermet@@hermet.pe.kr>
264 @author Woohyun Jung <wh0705.jung@@samsung.com>
265 @author Jaehwan Kim <jae.hwan.kim@@samsung.com>
266 @author Wonguk Jeong <wonguk.jeong@@samsung.com>
267 @author Leandro A. F. Pereira <leandro@@profusion.mobi>
268 @author Helen Fornazier <helen.fornazier@@profusion.mobi>
269 @author Gustavo Lima Chaves <glima@@profusion.mobi>
270 @author Fabiano FidĆŖncio <fidencio@@profusion.mobi>
271 @author Tiago FalcĆ£o <tiago@@profusion.mobi>
272 @author Otavio Pontes <otavio@@profusion.mobi>
273 @author Viktor Kojouharov <vkojouharov@@gmail.com>
274 @author Daniel Juyung Seo (SeoZ) <juyung.seo@@samsung.com> <seojuyung2@@gmail.com>
275 @author Sangho Park <sangho.g.park@@samsung.com> <gouache95@@gmail.com>
276 @author Rajeev Ranjan (Rajeev) <rajeev.r@@samsung.com> <rajeev.jnnce@@gmail.com>
277 @author Seunggyun Kim <sgyun.kim@@samsung.com> <tmdrbs@@gmail.com>
278 @author Sohyun Kim <anna1014.kim@@samsung.com> <sohyun.anna@@gmail.com>
279 @author Jihoon Kim <jihoon48.kim@@samsung.com>
280 @author Jeonghyun Yun (arosis) <jh0506.yun@@samsung.com>
281 @author Tom Hacohen <tom@@stosb.com>
282 @author Aharon Hillel <a.hillel@@partner.samsung.com>
283 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
284 @author Shinwoo Kim <kimcinoo@@gmail.com>
285 @author Govindaraju SM <govi.sm@@samsung.com> <govism@@gmail.com>
286 @author Prince Kumar Dubey <prince.dubey@@samsung.com> <prince.dubey@@gmail.com>
287 @author Sung W. Park <sungwoo@@gmail.com>
288 @author Thierry el Borgi <thierry@@substantiel.fr>
289 @author Shilpa Singh <shilpa.singh@@samsung.com> <shilpasingh.o@@gmail.com>
290 @author Chanwook Jung <joey.jung@@samsung.com>
291 @author Hyoyoung Chang <hyoyoung.chang@@samsung.com>
292 @author Guillaume "Kuri" Friloux <guillaume.friloux@@asp64.com>
293 @author Kim Yunhan <spbear@@gmail.com>
294 @author Bluezery <ohpowel@@gmail.com>
295 @author Nicolas Aguirre <aguirre.nicolas@@gmail.com>
296 @author Sanjeev BA <iamsanjeev@@gmail.com>
297
298 Please contact <enlightenment-devel@lists.sourceforge.net> to get in
299 contact with the developers and maintainers.
300  */
301
302 #ifndef ELEMENTARY_H
303 #define ELEMENTARY_H
304
305 /**
306  * @file Elementary.h
307  * @brief Elementary's API
308  *
309  * Elementary API.
310  */
311
312 @ELM_UNIX_DEF@ ELM_UNIX
313 @ELM_WIN32_DEF@ ELM_WIN32
314 @ELM_WINCE_DEF@ ELM_WINCE
315 @ELM_EDBUS_DEF@ ELM_EDBUS
316 @ELM_EFREET_DEF@ ELM_EFREET
317 @ELM_ETHUMB_DEF@ ELM_ETHUMB
318 @ELM_WEB_DEF@ ELM_WEB
319 @ELM_EMAP_DEF@ ELM_EMAP
320 @ELM_DEBUG_DEF@ ELM_DEBUG
321 @ELM_ALLOCA_H_DEF@ ELM_ALLOCA_H
322 @ELM_LIBINTL_H_DEF@ ELM_LIBINTL_H
323 @ELM_DIRENT_H_DEF@ ELM_DIRENT_H
324
325 /* Standard headers for standard system calls etc. */
326 #include <stdio.h>
327 #include <stdlib.h>
328 #include <unistd.h>
329 #include <string.h>
330 #include <sys/types.h>
331 #include <sys/stat.h>
332 #include <sys/time.h>
333 #include <sys/param.h>
334 #include <math.h>
335 #include <fnmatch.h>
336 #include <limits.h>
337 #include <ctype.h>
338 #include <time.h>
339 #ifdef ELM_DIRENT_H
340 # include <dirent.h>
341 #endif
342 #include <pwd.h>
343 #include <errno.h>
344
345 #ifdef ELM_UNIX
346 # include <locale.h>
347 # ifdef ELM_LIBINTL_H
348 #  include <libintl.h>
349 # endif
350 # include <signal.h>
351 # include <grp.h>
352 # include <glob.h>
353 #endif
354
355 #ifdef ELM_ALLOCA_H
356 # include <alloca.h>
357 #endif
358
359 #if defined (ELM_WIN32) || defined (ELM_WINCE)
360 # include <malloc.h>
361 # ifndef alloca
362 #  define alloca _alloca
363 # endif
364 #endif
365
366
367 /* EFL headers */
368 #include <Eina.h>
369 #include <Eet.h>
370 #include <Evas.h>
371 // disabled - evas 1.1 won't have this.
372 //#include <Evas_GL.h>
373 #include <Ecore.h>
374 #include <Ecore_Evas.h>
375 #include <Ecore_File.h>
376 @ELEMENTARY_ECORE_IMF_INC@
377 @ELEMENTARY_ECORE_CON_INC@
378 #include <Edje.h>
379
380 #ifdef ELM_EDBUS
381 # include <E_DBus.h>
382 #endif
383
384 #ifdef ELM_EFREET
385 # include <Efreet.h>
386 # include <Efreet_Mime.h>
387 # include <Efreet_Trash.h>
388 #endif
389
390 #ifdef ELM_ETHUMB
391 # include <Ethumb_Client.h>
392 #endif
393
394 #ifdef ELM_EMAP
395 # include <EMap.h>
396 #endif
397
398 #ifdef EAPI
399 # undef EAPI
400 #endif
401
402 #ifdef _WIN32
403 # ifdef ELEMENTARY_BUILD
404 #  ifdef DLL_EXPORT
405 #   define EAPI __declspec(dllexport)
406 #  else
407 #   define EAPI
408 #  endif /* ! DLL_EXPORT */
409 # else
410 #  define EAPI __declspec(dllimport)
411 # endif /* ! EFL_EVAS_BUILD */
412 #else
413 # ifdef __GNUC__
414 #  if __GNUC__ >= 4
415 #   define EAPI __attribute__ ((visibility("default")))
416 #  else
417 #   define EAPI
418 #  endif
419 # else
420 #  define EAPI
421 # endif
422 #endif /* ! _WIN32 */
423
424 #ifdef _WIN32
425 # define EAPI_MAIN
426 #else
427 # define EAPI_MAIN EAPI
428 #endif
429
430 /* allow usage from c++ */
431 #ifdef __cplusplus
432 extern "C" {
433 #endif
434
435 #define ELM_VERSION_MAJOR @VMAJ@
436 #define ELM_VERSION_MINOR @VMIN@
437
438    typedef struct _Elm_Version
439      {
440         int major;
441         int minor;
442         int micro;
443         int revision;
444      } Elm_Version;
445
446    EAPI extern Elm_Version *elm_version;
447
448 /* handy macros */
449 #define ELM_RECTS_INTERSECT(x, y, w, h, xx, yy, ww, hh) (((x) < ((xx) + (ww))) && ((y) < ((yy) + (hh))) && (((x) + (w)) > (xx)) && (((y) + (h)) > (yy)))
450 #define ELM_PI 3.14159265358979323846
451
452    /**
453     * @defgroup General General
454     *
455     * @brief General Elementary API. Functions that don't relate to
456     * Elementary objects specifically.
457     *
458     * Here are documented functions which init/shutdown the library,
459     * that apply to generic Elementary objects, that deal with
460     * configuration, et cetera.
461     *
462     * @ref general_functions_example_page "This" example contemplates
463     * some of these functions.
464     */
465
466    /**
467     * @addtogroup General
468     * @{
469     */
470
471   /**
472    * Defines couple of standard Evas_Object layers to be used
473    * with evas_object_layer_set().
474    *
475    * @note whenever extending with new values, try to keep some padding
476    *       to siblings so there is room for further extensions.
477    */
478   typedef enum _Elm_Object_Layer
479     {
480        ELM_OBJECT_LAYER_BACKGROUND = EVAS_LAYER_MIN + 64, /**< where to place backgrounds */
481        ELM_OBJECT_LAYER_DEFAULT = 0, /**< Evas_Object default layer (and thus for Elementary) */
482        ELM_OBJECT_LAYER_FOCUS = EVAS_LAYER_MAX - 128, /**< where focus object visualization is */
483        ELM_OBJECT_LAYER_TOOLTIP = EVAS_LAYER_MAX - 64, /**< where to show tooltips */
484        ELM_OBJECT_LAYER_CURSOR = EVAS_LAYER_MAX - 32, /**< where to show cursors */
485        ELM_OBJECT_LAYER_LAST /**< last layer known by Elementary */
486     } Elm_Object_Layer;
487
488 /**************************************************************************/
489    EAPI extern int ELM_ECORE_EVENT_ETHUMB_CONNECT;
490
491    /**
492     * Emitted when the application has reconfigured elementary settings due
493     * to an external configuration tool asking it to.
494     */
495    EAPI extern int ELM_EVENT_CONFIG_ALL_CHANGED;
496
497    /**
498     * Emitted when any Elementary's policy value is changed.
499     */
500    EAPI extern int ELM_EVENT_POLICY_CHANGED;
501
502    /**
503     * @typedef Elm_Event_Policy_Changed
504     *
505     * Data on the event when an Elementary policy has changed
506     */
507     typedef struct _Elm_Event_Policy_Changed Elm_Event_Policy_Changed;
508
509    /**
510     * @struct _Elm_Event_Policy_Changed
511     *
512     * Data on the event when an Elementary policy has changed
513     */
514     struct _Elm_Event_Policy_Changed
515      {
516         unsigned int policy; /**< the policy identifier */
517         int          new_value; /**< value the policy had before the change */
518         int          old_value; /**< new value the policy got */
519     };
520
521    /**
522     * Policy identifiers.
523     */
524     typedef enum _Elm_Policy
525     {
526         ELM_POLICY_QUIT, /**< under which circumstances the application
527                           * should quit automatically. @see
528                           * Elm_Policy_Quit.
529                           */
530         ELM_POLICY_LAST
531     } Elm_Policy; /**< Elementary policy identifiers/groups enumeration.  @see elm_policy_set()
532  */
533
534    typedef enum _Elm_Policy_Quit
535      {
536         ELM_POLICY_QUIT_NONE = 0, /**< never quit the application
537                                    * automatically */
538         ELM_POLICY_QUIT_LAST_WINDOW_CLOSED /**< quit when the
539                                             * application's last
540                                             * window is closed */
541      } Elm_Policy_Quit; /**< Possible values for the #ELM_POLICY_QUIT policy */
542
543    typedef enum _Elm_Focus_Direction
544      {
545         ELM_FOCUS_PREVIOUS,
546         ELM_FOCUS_NEXT
547      } Elm_Focus_Direction;
548
549    typedef enum _Elm_Text_Format
550      {
551         ELM_TEXT_FORMAT_PLAIN_UTF8,
552         ELM_TEXT_FORMAT_MARKUP_UTF8
553      } Elm_Text_Format;
554
555    /**
556     * Line wrapping types.
557     */
558    typedef enum _Elm_Wrap_Type
559      {
560         ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
561         ELM_WRAP_CHAR, /**< Char wrap - wrap between characters */
562         ELM_WRAP_WORD, /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
563         ELM_WRAP_MIXED, /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
564         ELM_WRAP_LAST
565      } Elm_Wrap_Type;
566
567    typedef enum
568      {
569         ELM_INPUT_PANEL_LAYOUT_NORMAL,          /**< Default layout */
570         ELM_INPUT_PANEL_LAYOUT_NUMBER,          /**< Number layout */
571         ELM_INPUT_PANEL_LAYOUT_EMAIL,           /**< Email layout */
572         ELM_INPUT_PANEL_LAYOUT_URL,             /**< URL layout */
573         ELM_INPUT_PANEL_LAYOUT_PHONENUMBER,     /**< Phone Number layout */
574         ELM_INPUT_PANEL_LAYOUT_IP,              /**< IP layout */
575         ELM_INPUT_PANEL_LAYOUT_MONTH,           /**< Month layout */
576         ELM_INPUT_PANEL_LAYOUT_NUMBERONLY,      /**< Number Only layout */
577         ELM_INPUT_PANEL_LAYOUT_INVALID
578      } Elm_Input_Panel_Layout;
579
580    typedef enum
581      {
582         ELM_AUTOCAPITAL_TYPE_NONE,
583         ELM_AUTOCAPITAL_TYPE_WORD,
584         ELM_AUTOCAPITAL_TYPE_SENTENCE,
585         ELM_AUTOCAPITAL_TYPE_ALLCHARACTER,
586      } Elm_Autocapital_Type;
587
588    /**
589     * @typedef Elm_Object_Item
590     * An Elementary Object item handle.
591     * @ingroup General
592     */
593    typedef struct _Elm_Object_Item Elm_Object_Item;
594
595
596    /**
597     * Called back when a widget's tooltip is activated and needs content.
598     * @param data user-data given to elm_object_tooltip_content_cb_set()
599     * @param obj owner widget.
600     * @param tooltip The tooltip object (affix content to this!)
601     */
602    typedef Evas_Object *(*Elm_Tooltip_Content_Cb) (void *data, Evas_Object *obj, Evas_Object *tooltip);
603
604    /**
605     * Called back when a widget's item tooltip is activated and needs content.
606     * @param data user-data given to elm_object_tooltip_content_cb_set()
607     * @param obj owner widget.
608     * @param tooltip The tooltip object (affix content to this!)
609     * @param item context dependent item. As an example, if tooltip was
610     *        set on Elm_List_Item, then it is of this type.
611     */
612    typedef Evas_Object *(*Elm_Tooltip_Item_Content_Cb) (void *data, Evas_Object *obj, Evas_Object *tooltip, void *item);
613
614    typedef Eina_Bool (*Elm_Event_Cb) (void *data, Evas_Object *obj, Evas_Object *src, Evas_Callback_Type type, void *event_info); /**< Function prototype definition for callbacks on input events happening on Elementary widgets. @a data will receive the user data pointer passed to elm_object_event_callback_add(). @a src will be a pointer to the widget on which the input event took place. @a type will get the type of this event and @a event_info, the struct with details on this event. */
615
616 #ifndef ELM_LIB_QUICKLAUNCH
617 #define ELM_MAIN() int main(int argc, char **argv) {elm_init(argc, argv); return elm_main(argc, argv);} /**< macro to be used after the elm_main() function */
618 #else
619 #define ELM_MAIN() int main(int argc, char **argv) {return elm_quicklaunch_fallback(argc, argv);} /**< macro to be used after the elm_main() function */
620 #endif
621
622 /**************************************************************************/
623    /* General calls */
624
625    /**
626     * Initialize Elementary
627     *
628     * @param[in] argc System's argument count value
629     * @param[in] argv System's pointer to array of argument strings
630     * @return The init counter value.
631     *
632     * This function initializes Elementary and increments a counter of
633     * the number of calls to it. It returns the new counter's value.
634     *
635     * @warning This call is exported only for use by the @c ELM_MAIN()
636     * macro. There is no need to use this if you use this macro (which
637     * is highly advisable). An elm_main() should contain the entry
638     * point code for your application, having the same prototype as
639     * elm_init(), and @b not being static (putting the @c EAPI symbol
640     * in front of its type declaration is advisable). The @c
641     * ELM_MAIN() call should be placed just after it.
642     *
643     * Example:
644     * @dontinclude bg_example_01.c
645     * @skip static void
646     * @until ELM_MAIN
647     *
648     * See the full @ref bg_example_01_c "example".
649     *
650     * @see elm_shutdown().
651     * @ingroup General
652     */
653    EAPI int          elm_init(int argc, char **argv);
654
655    /**
656     * Shut down Elementary
657     *
658     * @return The init counter value.
659     *
660     * This should be called at the end of your application, just
661     * before it ceases to do any more processing. This will clean up
662     * any permanent resources your application may have allocated via
663     * Elementary that would otherwise persist.
664     *
665     * @see elm_init() for an example
666     *
667     * @ingroup General
668     */
669    EAPI int          elm_shutdown(void);
670
671    /**
672     * Run Elementary's main loop
673     *
674     * This call should be issued just after all initialization is
675     * completed. This function will not return until elm_exit() is
676     * called. It will keep looping, running the main
677     * (event/processing) loop for Elementary.
678     *
679     * @see elm_init() for an example
680     *
681     * @ingroup General
682     */
683    EAPI void         elm_run(void);
684
685    /**
686     * Exit Elementary's main loop
687     *
688     * If this call is issued, it will flag the main loop to cease
689     * processing and return back to its parent function (usually your
690     * elm_main() function).
691     *
692     * @see elm_init() for an example. There, just after a request to
693     * close the window comes, the main loop will be left.
694     *
695     * @note By using the appropriate #ELM_POLICY_QUIT on your Elementary
696     * applications, you'll be able to get this function called automatically for you.
697     *
698     * @ingroup General
699     */
700    EAPI void         elm_exit(void);
701
702    /**
703     * Provide information in order to make Elementary determine the @b
704     * run time location of the software in question, so other data files
705     * such as images, sound files, executable utilities, libraries,
706     * modules and locale files can be found.
707     *
708     * @param mainfunc This is your application's main function name,
709     *        whose binary's location is to be found. Providing @c NULL
710     *        will make Elementary not to use it
711     * @param dom This will be used as the application's "domain", in the
712     *        form of a prefix to any environment variables that may
713     *        override prefix detection and the directory name, inside the
714     *        standard share or data directories, where the software's
715     *        data files will be looked for.
716     * @param checkfile This is an (optional) magic file's path to check
717     *        for existence (and it must be located in the data directory,
718     *        under the share directory provided above). Its presence will
719     *        help determine the prefix found was correct. Pass @c NULL if
720     *        the check is not to be done.
721     *
722     * This function allows one to re-locate the application somewhere
723     * else after compilation, if the developer wishes for easier
724     * distribution of pre-compiled binaries.
725     *
726     * The prefix system is designed to locate where the given software is
727     * installed (under a common path prefix) at run time and then report
728     * specific locations of this prefix and common directories inside
729     * this prefix like the binary, library, data and locale directories,
730     * through the @c elm_app_*_get() family of functions.
731     *
732     * Call elm_app_info_set() early on before you change working
733     * directory or anything about @c argv[0], so it gets accurate
734     * information.
735     *
736     * It will then try and trace back which file @p mainfunc comes from,
737     * if provided, to determine the application's prefix directory.
738     *
739     * The @p dom parameter provides a string prefix to prepend before
740     * environment variables, allowing a fallback to @b specific
741     * environment variables to locate the software. You would most
742     * probably provide a lowercase string there, because it will also
743     * serve as directory domain, explained next. For environment
744     * variables purposes, this string is made uppercase. For example if
745     * @c "myapp" is provided as the prefix, then the program would expect
746     * @c "MYAPP_PREFIX" as a master environment variable to specify the
747     * exact install prefix for the software, or more specific environment
748     * variables like @c "MYAPP_BIN_DIR", @c "MYAPP_LIB_DIR", @c
749     * "MYAPP_DATA_DIR" and @c "MYAPP_LOCALE_DIR", which could be set by
750     * the user or scripts before launching. If not provided (@c NULL),
751     * environment variables will not be used to override compiled-in
752     * defaults or auto detections.
753     *
754     * The @p dom string also provides a subdirectory inside the system
755     * shared data directory for data files. For example, if the system
756     * directory is @c /usr/local/share, then this directory name is
757     * appended, creating @c /usr/local/share/myapp, if it @p was @c
758     * "myapp". It is expected that the application installs data files in
759     * this directory.
760     *
761     * The @p checkfile is a file name or path of something inside the
762     * share or data directory to be used to test that the prefix
763     * detection worked. For example, your app will install a wallpaper
764     * image as @c /usr/local/share/myapp/images/wallpaper.jpg and so to
765     * check that this worked, provide @c "images/wallpaper.jpg" as the @p
766     * checkfile string.
767     *
768     * @see elm_app_compile_bin_dir_set()
769     * @see elm_app_compile_lib_dir_set()
770     * @see elm_app_compile_data_dir_set()
771     * @see elm_app_compile_locale_set()
772     * @see elm_app_prefix_dir_get()
773     * @see elm_app_bin_dir_get()
774     * @see elm_app_lib_dir_get()
775     * @see elm_app_data_dir_get()
776     * @see elm_app_locale_dir_get()
777     */
778    EAPI void         elm_app_info_set(void *mainfunc, const char *dom, const char *checkfile);
779
780    /**
781     * Provide information on the @b fallback application's binaries
782     * directory, in scenarios where they get overriden by
783     * elm_app_info_set().
784     *
785     * @param dir The path to the default binaries directory (compile time
786     * one)
787     *
788     * @note Elementary will as well use this path to determine actual
789     * names of binaries' directory paths, maybe changing it to be @c
790     * something/local/bin instead of @c something/bin, only, for
791     * example.
792     *
793     * @warning You should call this function @b before
794     * elm_app_info_set().
795     */
796    EAPI void         elm_app_compile_bin_dir_set(const char *dir);
797
798    /**
799     * Provide information on the @b fallback application's libraries
800     * directory, on scenarios where they get overriden by
801     * elm_app_info_set().
802     *
803     * @param dir The path to the default libraries directory (compile
804     * time one)
805     *
806     * @note Elementary will as well use this path to determine actual
807     * names of libraries' directory paths, maybe changing it to be @c
808     * something/lib32 or @c something/lib64 instead of @c something/lib,
809     * only, for example.
810     *
811     * @warning You should call this function @b before
812     * elm_app_info_set().
813     */
814    EAPI void         elm_app_compile_lib_dir_set(const char *dir);
815
816    /**
817     * Provide information on the @b fallback application's data
818     * directory, on scenarios where they get overriden by
819     * elm_app_info_set().
820     *
821     * @param dir The path to the default data directory (compile time
822     * one)
823     *
824     * @note Elementary will as well use this path to determine actual
825     * names of data directory paths, maybe changing it to be @c
826     * something/local/share instead of @c something/share, only, for
827     * example.
828     *
829     * @warning You should call this function @b before
830     * elm_app_info_set().
831     */
832    EAPI void         elm_app_compile_data_dir_set(const char *dir);
833
834    /**
835     * Provide information on the @b fallback application's locale
836     * directory, on scenarios where they get overriden by
837     * elm_app_info_set().
838     *
839     * @param dir The path to the default locale directory (compile time
840     * one)
841     *
842     * @warning You should call this function @b before
843     * elm_app_info_set().
844     */
845    EAPI void         elm_app_compile_locale_set(const char *dir);
846
847    /**
848     * Retrieve the application's run time prefix directory, as set by
849     * elm_app_info_set() and the way (environment) the application was
850     * run from.
851     *
852     * @return The directory prefix the application is actually using.
853     */
854    EAPI const char  *elm_app_prefix_dir_get(void);
855
856    /**
857     * Retrieve the application's run time binaries prefix directory, as
858     * set by elm_app_info_set() and the way (environment) the application
859     * was run from.
860     *
861     * @return The binaries directory prefix the application is actually
862     * using.
863     */
864    EAPI const char  *elm_app_bin_dir_get(void);
865
866    /**
867     * Retrieve the application's run time libraries prefix directory, as
868     * set by elm_app_info_set() and the way (environment) the application
869     * was run from.
870     *
871     * @return The libraries directory prefix the application is actually
872     * using.
873     */
874    EAPI const char  *elm_app_lib_dir_get(void);
875
876    /**
877     * Retrieve the application's run time data prefix directory, as
878     * set by elm_app_info_set() and the way (environment) the application
879     * was run from.
880     *
881     * @return The data directory prefix the application is actually
882     * using.
883     */
884    EAPI const char  *elm_app_data_dir_get(void);
885
886    /**
887     * Retrieve the application's run time locale prefix directory, as
888     * set by elm_app_info_set() and the way (environment) the application
889     * was run from.
890     *
891     * @return The locale directory prefix the application is actually
892     * using.
893     */
894    EAPI const char  *elm_app_locale_dir_get(void);
895
896    /**
897     * Exposed symbol used only by macros and should not be used by apps
898     */
899    EAPI void         elm_quicklaunch_mode_set(Eina_Bool ql_on);
900    
901    /**
902     * Exposed symbol used only by macros and should not be used by apps
903     */
904    EAPI Eina_Bool    elm_quicklaunch_mode_get(void);
905    
906    /**
907     * Exposed symbol used only by macros and should not be used by apps
908     */
909    EAPI int          elm_quicklaunch_init(int argc, char **argv);
910    
911    /**
912     * Exposed symbol used only by macros and should not be used by apps
913     */
914    EAPI int          elm_quicklaunch_sub_init(int argc, char **argv);
915    
916    /**
917     * Exposed symbol used only by macros and should not be used by apps
918     */
919    EAPI int          elm_quicklaunch_sub_shutdown(void);
920    
921    /**
922     * Exposed symbol used only by macros and should not be used by apps
923     */
924    EAPI int          elm_quicklaunch_shutdown(void);
925    
926    /**
927     * Exposed symbol used only by macros and should not be used by apps
928     */
929    EAPI void         elm_quicklaunch_seed(void);
930    
931    /**
932     * Exposed symbol used only by macros and should not be used by apps
933     */
934    EAPI Eina_Bool    elm_quicklaunch_prepare(int argc, char **argv);
935    
936    /**
937     * Exposed symbol used only by macros and should not be used by apps
938     */
939    EAPI Eina_Bool    elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (postfork_func) (void *data), void *postfork_data);
940    
941    /**
942     * Exposed symbol used only by macros and should not be used by apps
943     */
944    EAPI void         elm_quicklaunch_cleanup(void);
945    
946    /**
947     * Exposed symbol used only by macros and should not be used by apps
948     */
949    EAPI int          elm_quicklaunch_fallback(int argc, char **argv);
950    
951    /**
952     * Exposed symbol used only by macros and should not be used by apps
953     */
954    EAPI char        *elm_quicklaunch_exe_path_get(const char *exe);
955
956    /**
957     * Request that your elementary application needs efreet
958     * 
959     * This initializes the Efreet library when called and if support exists
960     * it returns EINA_TRUE, otherwise returns EINA_FALSE. This must be called
961     * before any efreet calls.
962     * 
963     * @return EINA_TRUE if support exists and initialization succeeded.
964     * 
965     * @ingroup Efreet
966     */
967    EAPI Eina_Bool    elm_need_efreet(void);
968    
969    /**
970     * Request that your elementary application needs e_dbus
971     * 
972     * This initializes the E_dbus library when called and if support exists
973     * it returns EINA_TRUE, otherwise returns EINA_FALSE. This must be called
974     * before any e_dbus calls.
975     * 
976     * @return EINA_TRUE if support exists and initialization succeeded.
977     * 
978     * @ingroup E_dbus
979     */
980    EAPI Eina_Bool    elm_need_e_dbus(void);
981
982    /**
983     * Request that your elementary application needs ethumb
984     * 
985     * This initializes the Ethumb library when called and if support exists
986     * it returns EINA_TRUE, otherwise returns EINA_FALSE.
987     * This must be called before any other function that deals with
988     * elm_thumb objects or ethumb_client instances.
989     *
990     * @ingroup Thumb
991     */
992    EAPI Eina_Bool    elm_need_ethumb(void);
993
994    /**
995     * Request that your elementary application needs web support
996     * 
997     * This initializes the Ewebkit library when called and if support exists
998     * it returns EINA_TRUE, otherwise returns EINA_FALSE.
999     * This must be called before any other function that deals with
1000     * elm_web objects or ewk_view instances.
1001     *
1002     * @ingroup Web
1003     */
1004    EAPI Eina_Bool    elm_need_web(void);
1005
1006    /**
1007     * Set a new policy's value (for a given policy group/identifier).
1008     *
1009     * @param policy policy identifier, as in @ref Elm_Policy.
1010     * @param value policy value, which depends on the identifier
1011     *
1012     * @return @c EINA_TRUE on success or @c EINA_FALSE, on error.
1013     *
1014     * Elementary policies define applications' behavior,
1015     * somehow. These behaviors are divided in policy groups (see
1016     * #Elm_Policy enumeration). This call will emit the Ecore event
1017     * #ELM_EVENT_POLICY_CHANGED, which can be hooked at with
1018     * handlers. An #Elm_Event_Policy_Changed struct will be passed,
1019     * then.
1020     *
1021     * @note Currently, we have only one policy identifier/group
1022     * (#ELM_POLICY_QUIT), which has two possible values.
1023     *
1024     * @ingroup General
1025     */
1026    EAPI Eina_Bool    elm_policy_set(unsigned int policy, int value);
1027
1028    /**
1029     * Gets the policy value for given policy identifier.
1030     *
1031     * @param policy policy identifier, as in #Elm_Policy.
1032     * @return The currently set policy value, for that
1033     * identifier. Will be @c 0 if @p policy passed is invalid.
1034     *
1035     * @ingroup General
1036     */
1037    EAPI int          elm_policy_get(unsigned int policy);
1038
1039    /**
1040     * Change the language of the current application
1041     *
1042     * The @p lang passed must be the full name of the locale to use, for
1043     * example "en_US.utf8" or "es_ES@euro".
1044     *
1045     * Changing language with this function will make Elementary run through
1046     * all its widgets, translating strings set with
1047     * elm_object_domain_translatable_text_part_set(). This way, an entire
1048     * UI can have its language changed without having to restart the program.
1049     *
1050     * For more complex cases, like having formatted strings that need
1051     * translation, widgets will also emit a "language,changed" signal that
1052     * the user can listen to to manually translate the text.
1053     *
1054     * @param lang Language to set, must be the full name of the locale
1055     *
1056     * @ingroup General
1057     */
1058    EAPI void         elm_language_set(const char *lang);
1059
1060    /**
1061     * Set a label of an object
1062     *
1063     * @param obj The Elementary object
1064     * @param part The text part name to set (NULL for the default label)
1065     * @param label The new text of the label
1066     *
1067     * @note Elementary objects may have many labels (e.g. Action Slider)
1068     * @deprecated Use elm_object_part_text_set() instead.
1069     * @ingroup General
1070     */
1071    EINA_DEPRECATED EAPI void elm_object_text_part_set(Evas_Object *obj, const char *part, const char *label);
1072
1073    /**
1074     * Set a label of an object
1075     *
1076     * @param obj The Elementary object
1077     * @param part The text part name to set (NULL for the default label)
1078     * @param label The new text of the label
1079     *
1080     * @note Elementary objects may have many labels (e.g. Action Slider)
1081     *
1082     * @ingroup General
1083     */
1084    EAPI void elm_object_part_text_set(Evas_Object *obj, const char *part, const char *label);
1085
1086 #define elm_object_text_set(obj, label) elm_object_part_text_set((obj), NULL, (label))
1087
1088    /**
1089     * Get a label of an object
1090     *
1091     * @param obj The Elementary object
1092     * @param part The text part name to get (NULL for the default label)
1093     * @return text of the label or NULL for any error
1094     *
1095     * @note Elementary objects may have many labels (e.g. Action Slider)
1096     * @deprecated Use elm_object_part_text_get() instead.
1097     * @ingroup General
1098     */
1099    EINA_DEPRECATED EAPI const char  *elm_object_text_part_get(const Evas_Object *obj, const char *part);
1100
1101    /**
1102     * Get a label of an object
1103     *
1104     * @param obj The Elementary object
1105     * @param part The text part name to get (NULL for the default label)
1106     * @return text of the label or NULL for any error
1107     *
1108     * @note Elementary objects may have many labels (e.g. Action Slider)
1109     *
1110     * @ingroup General
1111     */
1112    EAPI const char  *elm_object_part_text_get(const Evas_Object *obj, const char *part);
1113
1114 #define elm_object_text_get(obj) elm_object_part_text_get((obj), NULL)
1115
1116    /**
1117     * Set the text for an objects' part, marking it as translatable.
1118     *
1119     * The string to set as @p text must be the original one. Do not pass the
1120     * return of @c gettext() here. Elementary will translate the string
1121     * internally and set it on the object using elm_object_part_text_set(),
1122     * also storing the original string so that it can be automatically
1123     * translated when the language is changed with elm_language_set().
1124     *
1125     * The @p domain will be stored along to find the translation in the
1126     * correct catalog. It can be NULL, in which case it will use whatever
1127     * domain was set by the application with @c textdomain(). This is useful
1128     * in case you are building a library on top of Elementary that will have
1129     * its own translatable strings, that should not be mixed with those of
1130     * programs using the library.
1131     *
1132     * @param obj The object containing the text part
1133     * @param part The name of the part to set
1134     * @param domain The translation domain to use
1135     * @param text The original, non-translated text to set
1136     *
1137     * @ingroup General
1138     */
1139    EAPI void         elm_object_domain_translatable_text_part_set(Evas_Object *obj, const char *part, const char *domain, const char *text);
1140
1141 #define elm_object_domain_translatable_text_set(obj, domain, text) elm_object_domain_translatable_text_part_set((obj), NULL, (domain), (text))
1142
1143 #define elm_object_translatable_text_set(obj, text) elm_object_domain_translatable_text_part_set((obj), NULL, NULL, (text))
1144
1145    /**
1146     * Gets the original string set as translatable for an object
1147     *
1148     * When setting translated strings, the function elm_object_part_text_get()
1149     * will return the translation returned by @c gettext(). To get the
1150     * original string use this function.
1151     *
1152     * @param obj The object
1153     * @param part The name of the part that was set
1154     *
1155     * @return The original, untranslated string
1156     *
1157     * @ingroup General
1158     */
1159    EAPI const char  *elm_object_translatable_text_part_get(const Evas_Object *obj, const char *part);
1160
1161 #define elm_object_translatable_text_get(obj) elm_object_translatable_text_part_get((obj), NULL)
1162
1163    /**
1164     * Set a content of an object
1165     *
1166     * @param obj The Elementary object
1167     * @param part The content part name to set (NULL for the default content)
1168     * @param content The new content of the object
1169     *
1170     * @note Elementary objects may have many contents
1171     * @deprecated Use elm_object_part_content_set instead.
1172     * @ingroup General
1173     */
1174    EINA_DEPRECATED EAPI void elm_object_content_part_set(Evas_Object *obj, const char *part, Evas_Object *content);
1175
1176    /**
1177     * Set a content of an object
1178     *
1179     * @param obj The Elementary object
1180     * @param part The content part name to set (NULL for the default content)
1181     * @param content The new content of the object
1182     *
1183     * @note Elementary objects may have many contents
1184     *
1185     * @ingroup General
1186     */
1187    EAPI void elm_object_part_content_set(Evas_Object *obj, const char *part, Evas_Object *content);
1188
1189 #define elm_object_content_set(obj, content) elm_object_part_content_set((obj), NULL, (content))
1190
1191    /**
1192     * Get a content of an object
1193     *
1194     * @param obj The Elementary object
1195     * @param item The content part name to get (NULL for the default content)
1196     * @return content of the object or NULL for any error
1197     *
1198     * @note Elementary objects may have many contents
1199     * @deprecated Use elm_object_part_content_get instead.
1200     * @ingroup General
1201     */
1202    EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_get(const Evas_Object *obj, const char *part);
1203
1204    /**
1205     * Get a content of an object
1206     *
1207     * @param obj The Elementary object
1208     * @param item The content part name to get (NULL for the default content)
1209     * @return content of the object or NULL for any error
1210     *
1211     * @note Elementary objects may have many contents
1212     *
1213     * @ingroup General
1214     */
1215    EAPI Evas_Object *elm_object_part_content_get(const Evas_Object *obj, const char *part);
1216
1217 #define elm_object_content_get(obj) elm_object_part_content_get((obj), NULL)
1218
1219    /**
1220     * Unset a content of an object
1221     *
1222     * @param obj The Elementary object
1223     * @param item The content part name to unset (NULL for the default content)
1224     *
1225     * @note Elementary objects may have many contents
1226     * @deprecated Use elm_object_part_content_unset instead.
1227     * @ingroup General
1228     */
1229    EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj, const char *part);
1230
1231    /**
1232     * Unset a content of an object
1233     *
1234     * @param obj The Elementary object
1235     * @param item The content part name to unset (NULL for the default content)
1236     *
1237     * @note Elementary objects may have many contents
1238     *
1239     * @ingroup General
1240     */
1241    EAPI Evas_Object *elm_object_part_content_unset(Evas_Object *obj, const char *part);
1242
1243 #define elm_object_content_unset(obj) elm_object_part_content_unset((obj), NULL)
1244
1245    /**
1246     * Set the text to read out when in accessibility mode
1247     *
1248     * @param obj The object which is to be described
1249     * @param txt The text that describes the widget to people with poor or no vision
1250     *
1251     * @ingroup General
1252     */
1253    EAPI void elm_object_access_info_set(Evas_Object *obj, const char *txt);
1254
1255    /**
1256     * Get the widget object's handle which contains a given item
1257     *
1258     * @param item The Elementary object item
1259     * @return The widget object
1260     *
1261     * @note This returns the widget object itself that an item belongs to.
1262     *
1263     * @ingroup General
1264     */
1265    EAPI Evas_Object *elm_object_item_object_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
1266
1267    /**
1268     * Set a content of an object item
1269     *
1270     * @param it The Elementary object item
1271     * @param part The content part name to set (NULL for the default content)
1272     * @param content The new content of the object item
1273     *
1274     * @note Elementary object items may have many contents
1275     * @deprecated Use elm_object_item_part_content_set instead.
1276     * @ingroup General
1277     */
1278    EINA_DEPRECATED EAPI void elm_object_item_content_part_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
1279
1280    /**
1281     * Set a content of an object item
1282     *
1283     * @param it The Elementary object item
1284     * @param part The content part name to set (NULL for the default content)
1285     * @param content The new content of the object item
1286     *
1287     * @note Elementary object items may have many contents
1288     *
1289     * @ingroup General
1290     */
1291    EAPI void elm_object_item_part_content_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
1292
1293 #define elm_object_item_content_set(it, content) elm_object_item_part_content_set((it), NULL, (content))
1294
1295    /**
1296     * Get a content of an object item
1297     *
1298     * @param it The Elementary object item
1299     * @param part The content part name to unset (NULL for the default content)
1300     * @return content of the object item or NULL for any error
1301     *
1302     * @note Elementary object items may have many contents
1303     * @deprecated Use elm_object_item_part_content_get instead.
1304     * @ingroup General
1305     */
1306    EAPI Evas_Object *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *part);
1307
1308    /**
1309     * Get a content of an object item
1310     *
1311     * @param it The Elementary object item
1312     * @param part The content part name to unset (NULL for the default content)
1313     * @return content of the object item or NULL for any error
1314     *
1315     * @note Elementary object items may have many contents
1316     *
1317     * @ingroup General
1318     */
1319    EAPI Evas_Object *elm_object_item_part_content_get(const Elm_Object_Item *it, const char *part);
1320
1321 #define elm_object_item_content_get(it) elm_object_item_part_content_get((it), NULL)
1322
1323    /**
1324     * Unset a content of an object item
1325     *
1326     * @param it The Elementary object item
1327     * @param part The content part name to unset (NULL for the default content)
1328     *
1329     * @note Elementary object items may have many contents
1330     * @deprecated Use elm_object_item_part_content_unset instead.
1331     * @ingroup General
1332     */
1333    EINA_DEPRECATED EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_Item *it, const char *part);
1334
1335    /**
1336     * Unset a content of an object item
1337     *
1338     * @param it The Elementary object item
1339     * @param part The content part name to unset (NULL for the default content)
1340     *
1341     * @note Elementary object items may have many contents
1342     *
1343     * @ingroup General
1344     */
1345    EAPI Evas_Object *elm_object_item_part_content_unset(Elm_Object_Item *it, const char *part);
1346
1347 #define elm_object_item_content_unset(it) elm_object_item_part_content_unset((it), NULL)
1348
1349    /**
1350     * Set a label of an object item
1351     *
1352     * @param it The Elementary object item
1353     * @param part The text part name to set (NULL for the default label)
1354     * @param label The new text of the label
1355     *
1356     * @note Elementary object items may have many labels
1357     * @deprecated Use elm_object_item_part_text_set instead.
1358     * @ingroup General
1359     */
1360    EINA_DEPRECATED EAPI void elm_object_item_text_part_set(Elm_Object_Item *it, const char *part, const char *label);
1361
1362    /**
1363     * Set a label of an object item
1364     *
1365     * @param it The Elementary object item
1366     * @param part The text part name to set (NULL for the default label)
1367     * @param label The new text of the label
1368     *
1369     * @note Elementary object items may have many labels
1370     *
1371     * @ingroup General
1372     */
1373    EAPI void elm_object_item_part_text_set(Elm_Object_Item *it, const char *part, const char *label);
1374
1375 #define elm_object_item_text_set(it, label) elm_object_item_part_text_set((it), NULL, (label))
1376
1377    /**
1378     * Get a label of an object item
1379     *
1380     * @param it The Elementary object item
1381     * @param part The text part name to get (NULL for the default label)
1382     * @return text of the label or NULL for any error
1383     *
1384     * @note Elementary object items may have many labels
1385     * @deprecated Use elm_object_item_part_text_get instead.
1386     * @ingroup General
1387     */
1388    EINA_DEPRECATED EAPI const char *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
1389    /**
1390     * Get a label of an object item
1391     *
1392     * @param it The Elementary object item
1393     * @param part The text part name to get (NULL for the default label)
1394     * @return text of the label or NULL for any error
1395     *
1396     * @note Elementary object items may have many labels
1397     *
1398     * @ingroup General
1399     */
1400    EAPI const char *elm_object_item_part_text_get(const Elm_Object_Item *it, const char *part);
1401
1402 #define elm_object_item_text_get(it) elm_object_item_part_text_get((it), NULL)
1403
1404    /**
1405     * Set the text to read out when in accessibility mode
1406     *
1407     * @param it The object item which is to be described
1408     * @param txt The text that describes the widget to people with poor or no vision
1409     *
1410     * @ingroup General
1411     */
1412    EAPI void elm_object_item_access_info_set(Elm_Object_Item *it, const char *txt);
1413
1414    /**
1415     * Get the data associated with an object item
1416     * @param it The Elementary object item
1417     * @return The data associated with @p it
1418     *
1419     * @ingroup General
1420     */
1421    EAPI void *elm_object_item_data_get(const Elm_Object_Item *it);
1422
1423    /**
1424     * Set the data associated with an object item
1425     * @param it The Elementary object item
1426     * @param data The data to be associated with @p it
1427     *
1428     * @ingroup General
1429     */
1430    EAPI void elm_object_item_data_set(Elm_Object_Item *it, void *data);
1431
1432    /**
1433     * Send a signal to the edje object of the widget item.
1434     *
1435     * This function sends a signal to the edje object of the obj item. An
1436     * edje program can respond to a signal by specifying matching
1437     * 'signal' and 'source' fields.
1438     *
1439     * @param it The Elementary object item
1440     * @param emission The signal's name.
1441     * @param source The signal's source.
1442     * @ingroup General
1443     */
1444    EAPI void elm_object_item_signal_emit(Elm_Object_Item *it, const char *emission, const char *source) EINA_ARG_NONNULL(1);
1445
1446    /**
1447     * Set the disabled state of an widget item.
1448     *
1449     * @param obj The Elementary object item
1450     * @param disabled The state to put in in: @c EINA_TRUE for
1451     *        disabled, @c EINA_FALSE for enabled
1452     *
1453     * Elementary object item can be @b disabled, in which state they won't
1454     * receive input and, in general, will be themed differently from
1455     * their normal state, usually greyed out. Useful for contexts
1456     * where you don't want your users to interact with some of the
1457     * parts of you interface.
1458     *
1459     * This sets the state for the widget item, either disabling it or
1460     * enabling it back.
1461     *
1462     * @ingroup Styles
1463     */
1464    EAPI void elm_object_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
1465
1466    /**
1467     * Get the disabled state of an widget item.
1468     *
1469     * @param obj The Elementary object
1470     * @return @c EINA_TRUE, if the widget item is disabled, @c EINA_FALSE
1471     *            if it's enabled (or on errors)
1472     *
1473     * This gets the state of the widget, which might be enabled or disabled.
1474     *
1475     * @ingroup Styles
1476     */
1477    EAPI Eina_Bool    elm_object_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
1478
1479    /**
1480     * @}
1481     */
1482
1483    /**
1484     * @defgroup Caches Caches
1485     *
1486     * These are functions which let one fine-tune some cache values for
1487     * Elementary applications, thus allowing for performance adjustments.
1488     *
1489     * @{
1490     */
1491
1492    /**
1493     * @brief Flush all caches.
1494     *
1495     * Frees all data that was in cache and is not currently being used to reduce
1496     * memory usage. This frees Edje's, Evas' and Eet's cache. This is equivalent
1497     * to calling all of the following functions:
1498     * @li edje_file_cache_flush()
1499     * @li edje_collection_cache_flush()
1500     * @li eet_clearcache()
1501     * @li evas_image_cache_flush()
1502     * @li evas_font_cache_flush()
1503     * @li evas_render_dump()
1504     * @note Evas caches are flushed for every canvas associated with a window.
1505     *
1506     * @ingroup Caches
1507     */
1508    EAPI void         elm_all_flush(void);
1509
1510    /**
1511     * Get the configured cache flush interval time
1512     *
1513     * This gets the globally configured cache flush interval time, in
1514     * ticks
1515     *
1516     * @return The cache flush interval time
1517     * @ingroup Caches
1518     *
1519     * @see elm_all_flush()
1520     */
1521    EAPI int          elm_cache_flush_interval_get(void);
1522
1523    /**
1524     * Set the configured cache flush interval time
1525     *
1526     * This sets the globally configured cache flush interval time, in ticks
1527     *
1528     * @param size The cache flush interval time
1529     * @ingroup Caches
1530     *
1531     * @see elm_all_flush()
1532     */
1533    EAPI void         elm_cache_flush_interval_set(int size);
1534
1535    /**
1536     * Set the configured cache flush interval time for all applications on the
1537     * display
1538     *
1539     * This sets the globally configured cache flush interval time -- in ticks
1540     * -- for all applications on the display.
1541     *
1542     * @param size The cache flush interval time
1543     * @ingroup Caches
1544     */
1545    EAPI void         elm_cache_flush_interval_all_set(int size);
1546
1547    /**
1548     * Get the configured cache flush enabled state
1549     *
1550     * This gets the globally configured cache flush state - if it is enabled
1551     * or not. When cache flushing is enabled, elementary will regularly
1552     * (see elm_cache_flush_interval_get() ) flush caches and dump data out of
1553     * memory and allow usage to re-seed caches and data in memory where it
1554     * can do so. An idle application will thus minimise its memory usage as
1555     * data will be freed from memory and not be re-loaded as it is idle and
1556     * not rendering or doing anything graphically right now.
1557     *
1558     * @return The cache flush state
1559     * @ingroup Caches
1560     *
1561     * @see elm_all_flush()
1562     */
1563    EAPI Eina_Bool    elm_cache_flush_enabled_get(void);
1564
1565    /**
1566     * Set the configured cache flush enabled state
1567     *
1568     * This sets the globally configured cache flush enabled state.
1569     *
1570     * @param size The cache flush enabled state
1571     * @ingroup Caches
1572     *
1573     * @see elm_all_flush()
1574     */
1575    EAPI void         elm_cache_flush_enabled_set(Eina_Bool enabled);
1576
1577    /**
1578     * Set the configured cache flush enabled state for all applications on the
1579     * display
1580     *
1581     * This sets the globally configured cache flush enabled state for all
1582     * applications on the display.
1583     *
1584     * @param size The cache flush enabled state
1585     * @ingroup Caches
1586     */
1587    EAPI void         elm_cache_flush_enabled_all_set(Eina_Bool enabled);
1588
1589    /**
1590     * Get the configured font cache size
1591     *
1592     * This gets the globally configured font cache size, in bytes.
1593     *
1594     * @return The font cache size
1595     * @ingroup Caches
1596     */
1597    EAPI int          elm_font_cache_get(void);
1598
1599    /**
1600     * Set the configured font cache size
1601     *
1602     * This sets the globally configured font cache size, in bytes
1603     *
1604     * @param size The font cache size
1605     * @ingroup Caches
1606     */
1607    EAPI void         elm_font_cache_set(int size);
1608
1609    /**
1610     * Set the configured font cache size for all applications on the
1611     * display
1612     *
1613     * This sets the globally configured font cache size -- in bytes
1614     * -- for all applications on the display.
1615     *
1616     * @param size The font cache size
1617     * @ingroup Caches
1618     */
1619    EAPI void         elm_font_cache_all_set(int size);
1620
1621    /**
1622     * Get the configured image cache size
1623     *
1624     * This gets the globally configured image cache size, in bytes
1625     *
1626     * @return The image cache size
1627     * @ingroup Caches
1628     */
1629    EAPI int          elm_image_cache_get(void);
1630
1631    /**
1632     * Set the configured image cache size
1633     *
1634     * This sets the globally configured image cache size, in bytes
1635     *
1636     * @param size The image cache size
1637     * @ingroup Caches
1638     */
1639    EAPI void         elm_image_cache_set(int size);
1640
1641    /**
1642     * Set the configured image cache size for all applications on the
1643     * display
1644     *
1645     * This sets the globally configured image cache size -- in bytes
1646     * -- for all applications on the display.
1647     *
1648     * @param size The image cache size
1649     * @ingroup Caches
1650     */
1651    EAPI void         elm_image_cache_all_set(int size);
1652
1653    /**
1654     * Get the configured edje file cache size.
1655     *
1656     * This gets the globally configured edje file cache size, in number
1657     * of files.
1658     *
1659     * @return The edje file cache size
1660     * @ingroup Caches
1661     */
1662    EAPI int          elm_edje_file_cache_get(void);
1663
1664    /**
1665     * Set the configured edje file cache size
1666     *
1667     * This sets the globally configured edje file cache size, in number
1668     * of files.
1669     *
1670     * @param size The edje file cache size
1671     * @ingroup Caches
1672     */
1673    EAPI void         elm_edje_file_cache_set(int size);
1674
1675    /**
1676     * Set the configured edje file cache size for all applications on the
1677     * display
1678     *
1679     * This sets the globally configured edje file cache size -- in number
1680     * of files -- for all applications on the display.
1681     *
1682     * @param size The edje file cache size
1683     * @ingroup Caches
1684     */
1685    EAPI void         elm_edje_file_cache_all_set(int size);
1686
1687    /**
1688     * Get the configured edje collections (groups) cache size.
1689     *
1690     * This gets the globally configured edje collections cache size, in
1691     * number of collections.
1692     *
1693     * @return The edje collections cache size
1694     * @ingroup Caches
1695     */
1696    EAPI int          elm_edje_collection_cache_get(void);
1697
1698    /**
1699     * Set the configured edje collections (groups) cache size
1700     *
1701     * This sets the globally configured edje collections cache size, in
1702     * number of collections.
1703     *
1704     * @param size The edje collections cache size
1705     * @ingroup Caches
1706     */
1707    EAPI void         elm_edje_collection_cache_set(int size);
1708
1709    /**
1710     * Set the configured edje collections (groups) cache size for all
1711     * applications on the display
1712     *
1713     * This sets the globally configured edje collections cache size -- in
1714     * number of collections -- for all applications on the display.
1715     *
1716     * @param size The edje collections cache size
1717     * @ingroup Caches
1718     */
1719    EAPI void         elm_edje_collection_cache_all_set(int size);
1720
1721    /**
1722     * @}
1723     */
1724
1725    /**
1726     * @defgroup Scaling Widget Scaling
1727     *
1728     * Different widgets can be scaled independently. These functions
1729     * allow you to manipulate this scaling on a per-widget basis. The
1730     * object and all its children get their scaling factors multiplied
1731     * by the scale factor set. This is multiplicative, in that if a
1732     * child also has a scale size set it is in turn multiplied by its
1733     * parent's scale size. @c 1.0 means ā€œdon't scaleā€, @c 2.0 is
1734     * double size, @c 0.5 is half, etc.
1735     *
1736     * @ref general_functions_example_page "This" example contemplates
1737     * some of these functions.
1738     */
1739
1740    /**
1741     * Get the global scaling factor
1742     *
1743     * This gets the globally configured scaling factor that is applied to all
1744     * objects.
1745     *
1746     * @return The scaling factor
1747     * @ingroup Scaling
1748     */
1749    EAPI double       elm_scale_get(void);
1750
1751    /**
1752     * Set the global scaling factor
1753     *
1754     * This sets the globally configured scaling factor that is applied to all
1755     * objects.
1756     *
1757     * @param scale The scaling factor to set
1758     * @ingroup Scaling
1759     */
1760    EAPI void         elm_scale_set(double scale);
1761
1762    /**
1763     * Set the global scaling factor for all applications on the display
1764     *
1765     * This sets the globally configured scaling factor that is applied to all
1766     * objects for all applications.
1767     * @param scale The scaling factor to set
1768     * @ingroup Scaling
1769     */
1770    EAPI void         elm_scale_all_set(double scale);
1771
1772    /**
1773     * Set the scaling factor for a given Elementary object
1774     *
1775     * @param obj The Elementary to operate on
1776     * @param scale Scale factor (from @c 0.0 up, with @c 1.0 meaning
1777     * no scaling)
1778     *
1779     * @ingroup Scaling
1780     */
1781    EAPI void         elm_object_scale_set(Evas_Object *obj, double scale) EINA_ARG_NONNULL(1);
1782
1783    /**
1784     * Get the scaling factor for a given Elementary object
1785     *
1786     * @param obj The object
1787     * @return The scaling factor set by elm_object_scale_set()
1788     *
1789     * @ingroup Scaling
1790     */
1791    EAPI double       elm_object_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1792
1793    /**
1794     * @defgroup Password_last_show Password last input show
1795     *
1796     * Last show feature of password mode enables user to view
1797     * the last input entered for few seconds before masking it.
1798     * These functions allow to set this feature in password mode
1799     * of entry widget and also allow to manipulate the duration
1800     * for which the input has to be visible.
1801     *
1802     * @{
1803     */
1804
1805    /**
1806     * Get show last setting of password mode.
1807     *
1808     * This gets the show last input setting of password mode which might be
1809     * enabled or disabled.
1810     *
1811     * @return @c EINA_TRUE, if the last input show setting is enabled, @c EINA_FALSE
1812     *            if it's disabled.
1813     * @ingroup Password_last_show
1814     */
1815    EAPI Eina_Bool elm_password_show_last_get(void);
1816
1817    /**
1818     * Set show last setting in password mode.
1819     *
1820     * This enables or disables show last setting of password mode.
1821     *
1822     * @param password_show_last If EINA_TRUE enable's last input show in password mode.
1823     * @see elm_password_show_last_timeout_set()
1824     * @ingroup Password_last_show
1825     */
1826    EAPI void elm_password_show_last_set(Eina_Bool password_show_last);
1827
1828    /**
1829     * Get's the timeout value in last show password mode.
1830     *
1831     * This gets the time out value for which the last input entered in password
1832     * mode will be visible.
1833     *
1834     * @return The timeout value of last show password mode.
1835     * @ingroup Password_last_show
1836     */
1837    EAPI double elm_password_show_last_timeout_get(void);
1838
1839    /**
1840     * Set's the timeout value in last show password mode.
1841     *
1842     * This sets the time out value for which the last input entered in password
1843     * mode will be visible.
1844     *
1845     * @param password_show_last_timeout The timeout value.
1846     * @see elm_password_show_last_set()
1847     * @ingroup Password_last_show
1848     */
1849    EAPI void elm_password_show_last_timeout_set(double password_show_last_timeout);
1850
1851    /**
1852     * @}
1853     */
1854
1855    /**
1856     * @defgroup UI-Mirroring Selective Widget mirroring
1857     *
1858     * These functions allow you to set ui-mirroring on specific
1859     * widgets or the whole interface. Widgets can be in one of two
1860     * modes, automatic and manual.  Automatic means they'll be changed
1861     * according to the system mirroring mode and manual means only
1862     * explicit changes will matter. You are not supposed to change
1863     * mirroring state of a widget set to automatic, will mostly work,
1864     * but the behavior is not really defined.
1865     *
1866     * @{
1867     */
1868
1869    EAPI Eina_Bool    elm_mirrored_get(void);
1870    EAPI void         elm_mirrored_set(Eina_Bool mirrored);
1871
1872    /**
1873     * Get the system mirrored mode. This determines the default mirrored mode
1874     * of widgets.
1875     *
1876     * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
1877     */
1878    EAPI Eina_Bool    elm_object_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1879
1880    /**
1881     * Set the system mirrored mode. This determines the default mirrored mode
1882     * of widgets.
1883     *
1884     * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
1885     */
1886    EAPI void         elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
1887
1888    /**
1889     * Returns the widget's mirrored mode setting.
1890     *
1891     * @param obj The widget.
1892     * @return mirrored mode setting of the object.
1893     *
1894     **/
1895    EAPI Eina_Bool    elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1896
1897    /**
1898     * Sets the widget's mirrored mode setting.
1899     * When widget in automatic mode, it follows the system mirrored mode set by
1900     * elm_mirrored_set().
1901     * @param obj The widget.
1902     * @param automatic EINA_TRUE for auto mirrored mode. EINA_FALSE for manual.
1903     */
1904    EAPI void         elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
1905
1906    /**
1907     * @}
1908     */
1909
1910    /**
1911     * Set the style to use by a widget
1912     *
1913     * Sets the style name that will define the appearance of a widget. Styles
1914     * vary from widget to widget and may also be defined by other themes
1915     * by means of extensions and overlays.
1916     *
1917     * @param obj The Elementary widget to style
1918     * @param style The style name to use
1919     *
1920     * @see elm_theme_extension_add()
1921     * @see elm_theme_extension_del()
1922     * @see elm_theme_overlay_add()
1923     * @see elm_theme_overlay_del()
1924     *
1925     * @ingroup Styles
1926     */
1927    EAPI void         elm_object_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
1928    /**
1929     * Get the style used by the widget
1930     *
1931     * This gets the style being used for that widget. Note that the string
1932     * pointer is only valid as longas the object is valid and the style doesn't
1933     * change.
1934     *
1935     * @param obj The Elementary widget to query for its style
1936     * @return The style name used
1937     *
1938     * @see elm_object_style_set()
1939     *
1940     * @ingroup Styles
1941     */
1942    EAPI const char  *elm_object_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1943
1944    /**
1945     * @defgroup Styles Styles
1946     *
1947     * Widgets can have different styles of look. These generic API's
1948     * set styles of widgets, if they support them (and if the theme(s)
1949     * do).
1950     *
1951     * @ref general_functions_example_page "This" example contemplates
1952     * some of these functions.
1953     */
1954
1955    /**
1956     * Set the disabled state of an Elementary object.
1957     *
1958     * @param obj The Elementary object to operate on
1959     * @param disabled The state to put in in: @c EINA_TRUE for
1960     *        disabled, @c EINA_FALSE for enabled
1961     *
1962     * Elementary objects can be @b disabled, in which state they won't
1963     * receive input and, in general, will be themed differently from
1964     * their normal state, usually greyed out. Useful for contexts
1965     * where you don't want your users to interact with some of the
1966     * parts of you interface.
1967     *
1968     * This sets the state for the widget, either disabling it or
1969     * enabling it back.
1970     *
1971     * @ingroup Styles
1972     */
1973    EAPI void         elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
1974
1975    /**
1976     * Get the disabled state of an Elementary object.
1977     *
1978     * @param obj The Elementary object to operate on
1979     * @return @c EINA_TRUE, if the widget is disabled, @c EINA_FALSE
1980     *            if it's enabled (or on errors)
1981     *
1982     * This gets the state of the widget, which might be enabled or disabled.
1983     *
1984     * @ingroup Styles
1985     */
1986    EAPI Eina_Bool    elm_object_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1987
1988    /**
1989     * @defgroup WidgetNavigation Widget Tree Navigation.
1990     *
1991     * How to check if an Evas Object is an Elementary widget? How to
1992     * get the first elementary widget that is parent of the given
1993     * object?  These are all covered in widget tree navigation.
1994     *
1995     * @ref general_functions_example_page "This" example contemplates
1996     * some of these functions.
1997     */
1998
1999    /**
2000     * Check if the given Evas Object is an Elementary widget.
2001     *
2002     * @param obj the object to query.
2003     * @return @c EINA_TRUE if it is an elementary widget variant,
2004     *         @c EINA_FALSE otherwise
2005     * @ingroup WidgetNavigation
2006     */
2007    EAPI Eina_Bool    elm_object_widget_check(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2008
2009    /**
2010     * Get the first parent of the given object that is an Elementary
2011     * widget.
2012     *
2013     * @param obj the Elementary object to query parent from.
2014     * @return the parent object that is an Elementary widget, or @c
2015     *         NULL, if it was not found.
2016     *
2017     * Use this to query for an object's parent widget.
2018     *
2019     * @note Most of Elementary users wouldn't be mixing non-Elementary
2020     * smart objects in the objects tree of an application, as this is
2021     * an advanced usage of Elementary with Evas. So, except for the
2022     * application's window, which is the root of that tree, all other
2023     * objects would have valid Elementary widget parents.
2024     *
2025     * @ingroup WidgetNavigation
2026     */
2027    EAPI Evas_Object *elm_object_parent_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2028
2029    /**
2030     * Get the top level parent of an Elementary widget.
2031     *
2032     * @param obj The object to query.
2033     * @return The top level Elementary widget, or @c NULL if parent cannot be
2034     * found.
2035     * @ingroup WidgetNavigation
2036     */
2037    EAPI Evas_Object *elm_object_top_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2038
2039    /**
2040     * Get the string that represents this Elementary widget.
2041     *
2042     * @note Elementary is weird and exposes itself as a single
2043     *       Evas_Object_Smart_Class of type "elm_widget", so
2044     *       evas_object_type_get() always return that, making debug and
2045     *       language bindings hard. This function tries to mitigate this
2046     *       problem, but the solution is to change Elementary to use
2047     *       proper inheritance.
2048     *
2049     * @param obj the object to query.
2050     * @return Elementary widget name, or @c NULL if not a valid widget.
2051     * @ingroup WidgetNavigation
2052     */
2053    EAPI const char  *elm_object_widget_type_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2054
2055    /**
2056     * @defgroup Config Elementary Config
2057     *
2058     * Elementary configuration is formed by a set options bounded to a
2059     * given @ref Profile profile, like @ref Theme theme, @ref Fingers
2060     * "finger size", etc. These are functions with which one syncronizes
2061     * changes made to those values to the configuration storing files, de
2062     * facto. You most probably don't want to use the functions in this
2063     * group unlees you're writing an elementary configuration manager.
2064     *
2065     * @{
2066     */
2067
2068    /**
2069     * Save back Elementary's configuration, so that it will persist on
2070     * future sessions.
2071     *
2072     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
2073     * @ingroup Config
2074     *
2075     * This function will take effect -- thus, do I/O -- immediately. Use
2076     * it when you want to apply all configuration changes at once. The
2077     * current configuration set will get saved onto the current profile
2078     * configuration file.
2079     *
2080     */
2081    EAPI Eina_Bool    elm_config_save(void);
2082
2083    /**
2084     * Reload Elementary's configuration, bounded to current selected
2085     * profile.
2086     *
2087     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
2088     * @ingroup Config
2089     *
2090     * Useful when you want to force reloading of configuration values for
2091     * a profile. If one removes user custom configuration directories,
2092     * for example, it will force a reload with system values instead.
2093     *
2094     */
2095    EAPI void         elm_config_reload(void);
2096
2097    /**
2098     * @}
2099     */
2100
2101    /**
2102     * @defgroup Profile Elementary Profile
2103     *
2104     * Profiles are pre-set options that affect the whole look-and-feel of
2105     * Elementary-based applications. There are, for example, profiles
2106     * aimed at desktop computer applications and others aimed at mobile,
2107     * touchscreen-based ones. You most probably don't want to use the
2108     * functions in this group unlees you're writing an elementary
2109     * configuration manager.
2110     *
2111     * @{
2112     */
2113
2114    /**
2115     * Get Elementary's profile in use.
2116     *
2117     * This gets the global profile that is applied to all Elementary
2118     * applications.
2119     *
2120     * @return The profile's name
2121     * @ingroup Profile
2122     */
2123    EAPI const char  *elm_profile_current_get(void);
2124
2125    /**
2126     * Get an Elementary's profile directory path in the filesystem. One
2127     * may want to fetch a system profile's dir or an user one (fetched
2128     * inside $HOME).
2129     *
2130     * @param profile The profile's name
2131     * @param is_user Whether to lookup for an user profile (@c EINA_TRUE)
2132     *                or a system one (@c EINA_FALSE)
2133     * @return The profile's directory path.
2134     * @ingroup Profile
2135     *
2136     * @note You must free it with elm_profile_dir_free().
2137     */
2138    EAPI const char  *elm_profile_dir_get(const char *profile, Eina_Bool is_user);
2139
2140    /**
2141     * Free an Elementary's profile directory path, as returned by
2142     * elm_profile_dir_get().
2143     *
2144     * @param p_dir The profile's path
2145     * @ingroup Profile
2146     *
2147     */
2148    EAPI void         elm_profile_dir_free(const char *p_dir);
2149
2150    /**
2151     * Get Elementary's list of available profiles.
2152     *
2153     * @return The profiles list. List node data are the profile name
2154     *         strings.
2155     * @ingroup Profile
2156     *
2157     * @note One must free this list, after usage, with the function
2158     *       elm_profile_list_free().
2159     */
2160    EAPI Eina_List   *elm_profile_list_get(void);
2161
2162    /**
2163     * Free Elementary's list of available profiles.
2164     *
2165     * @param l The profiles list, as returned by elm_profile_list_get().
2166     * @ingroup Profile
2167     *
2168     */
2169    EAPI void         elm_profile_list_free(Eina_List *l);
2170
2171    /**
2172     * Set Elementary's profile.
2173     *
2174     * This sets the global profile that is applied to Elementary
2175     * applications. Just the process the call comes from will be
2176     * affected.
2177     *
2178     * @param profile The profile's name
2179     * @ingroup Profile
2180     *
2181     */
2182    EAPI void         elm_profile_set(const char *profile);
2183
2184    /**
2185     * Set Elementary's profile.
2186     *
2187     * This sets the global profile that is applied to all Elementary
2188     * applications. All running Elementary windows will be affected.
2189     *
2190     * @param profile The profile's name
2191     * @ingroup Profile
2192     *
2193     */
2194    EAPI void         elm_profile_all_set(const char *profile);
2195
2196    /**
2197     * @}
2198     */
2199
2200    /**
2201     * @defgroup Engine Elementary Engine
2202     *
2203     * These are functions setting and querying which rendering engine
2204     * Elementary will use for drawing its windows' pixels.
2205     *
2206     * The following are the available engines:
2207     * @li "software_x11"
2208     * @li "fb"
2209     * @li "directfb"
2210     * @li "software_16_x11"
2211     * @li "software_8_x11"
2212     * @li "xrender_x11"
2213     * @li "opengl_x11"
2214     * @li "software_gdi"
2215     * @li "software_16_wince_gdi"
2216     * @li "sdl"
2217     * @li "software_16_sdl"
2218     * @li "opengl_sdl"
2219     * @li "buffer"
2220     * @li "ews"
2221     * @li "opengl_cocoa"
2222     * @li "psl1ght"
2223     *
2224     * @{
2225     */
2226
2227    /**
2228     * @brief Get Elementary's rendering engine in use.
2229     *
2230     * @return The rendering engine's name
2231     * @note there's no need to free the returned string, here.
2232     *
2233     * This gets the global rendering engine that is applied to all Elementary
2234     * applications.
2235     *
2236     * @see elm_engine_set()
2237     */
2238    EAPI const char  *elm_engine_current_get(void);
2239
2240    /**
2241     * @brief Set Elementary's rendering engine for use.
2242     *
2243     * @param engine The rendering engine's name
2244     *
2245     * This sets global rendering engine that is applied to all Elementary
2246     * applications. Note that it will take effect only to Elementary windows
2247     * created after this is called.
2248     *
2249     * @see elm_win_add()
2250     */
2251    EAPI void         elm_engine_set(const char *engine);
2252
2253    /**
2254     * @}
2255     */
2256
2257    /**
2258     * @defgroup Fonts Elementary Fonts
2259     *
2260     * These are functions dealing with font rendering, selection and the
2261     * like for Elementary applications. One might fetch which system
2262     * fonts are there to use and set custom fonts for individual classes
2263     * of UI items containing text (text classes).
2264     *
2265     * @{
2266     */
2267
2268   typedef struct _Elm_Text_Class
2269     {
2270        const char *name;
2271        const char *desc;
2272     } Elm_Text_Class;
2273
2274   typedef struct _Elm_Font_Overlay
2275     {
2276        const char     *text_class;
2277        const char     *font;
2278        Evas_Font_Size  size;
2279     } Elm_Font_Overlay;
2280
2281   typedef struct _Elm_Font_Properties
2282     {
2283        const char *name;
2284        Eina_List  *styles;
2285     } Elm_Font_Properties;
2286
2287    /**
2288     * Get Elementary's list of supported text classes.
2289     *
2290     * @return The text classes list, with @c Elm_Text_Class blobs as data.
2291     * @ingroup Fonts
2292     *
2293     * Release the list with elm_text_classes_list_free().
2294     */
2295    EAPI const Eina_List     *elm_text_classes_list_get(void);
2296
2297    /**
2298     * Free Elementary's list of supported text classes.
2299     *
2300     * @ingroup Fonts
2301     *
2302     * @see elm_text_classes_list_get().
2303     */
2304    EAPI void                 elm_text_classes_list_free(const Eina_List *list);
2305
2306    /**
2307     * Get Elementary's list of font overlays, set with
2308     * elm_font_overlay_set().
2309     *
2310     * @return The font overlays list, with @c Elm_Font_Overlay blobs as
2311     * data.
2312     *
2313     * @ingroup Fonts
2314     *
2315     * For each text class, one can set a <b>font overlay</b> for it,
2316     * overriding the default font properties for that class coming from
2317     * the theme in use. There is no need to free this list.
2318     *
2319     * @see elm_font_overlay_set() and elm_font_overlay_unset().
2320     */
2321    EAPI const Eina_List     *elm_font_overlay_list_get(void);
2322
2323    /**
2324     * Set a font overlay for a given Elementary text class.
2325     *
2326     * @param text_class Text class name
2327     * @param font Font name and style string
2328     * @param size Font size
2329     *
2330     * @ingroup Fonts
2331     *
2332     * @p font has to be in the format returned by
2333     * elm_font_fontconfig_name_get(). @see elm_font_overlay_list_get()
2334     * and elm_font_overlay_unset().
2335     */
2336    EAPI void                 elm_font_overlay_set(const char *text_class, const char *font, Evas_Font_Size size);
2337
2338    /**
2339     * Unset a font overlay for a given Elementary text class.
2340     *
2341     * @param text_class Text class name
2342     *
2343     * @ingroup Fonts
2344     *
2345     * This will bring back text elements belonging to text class
2346     * @p text_class back to their default font settings.
2347     */
2348    EAPI void                 elm_font_overlay_unset(const char *text_class);
2349
2350    /**
2351     * Apply the changes made with elm_font_overlay_set() and
2352     * elm_font_overlay_unset() on the current Elementary window.
2353     *
2354     * @ingroup Fonts
2355     *
2356     * This applies all font overlays set to all objects in the UI.
2357     */
2358    EAPI void                 elm_font_overlay_apply(void);
2359
2360    /**
2361     * Apply the changes made with elm_font_overlay_set() and
2362     * elm_font_overlay_unset() on all Elementary application windows.
2363     *
2364     * @ingroup Fonts
2365     *
2366     * This applies all font overlays set to all objects in the UI.
2367     */
2368    EAPI void                 elm_font_overlay_all_apply(void);
2369
2370    /**
2371     * Translate a font (family) name string in fontconfig's font names
2372     * syntax into an @c Elm_Font_Properties struct.
2373     *
2374     * @param font The font name and styles string
2375     * @return the font properties struct
2376     *
2377     * @ingroup Fonts
2378     *
2379     * @note The reverse translation can be achived with
2380     * elm_font_fontconfig_name_get(), for one style only (single font
2381     * instance, not family).
2382     */
2383    EAPI Elm_Font_Properties *elm_font_properties_get(const char *font) EINA_ARG_NONNULL(1);
2384
2385    /**
2386     * Free font properties return by elm_font_properties_get().
2387     *
2388     * @param efp the font properties struct
2389     *
2390     * @ingroup Fonts
2391     */
2392    EAPI void                 elm_font_properties_free(Elm_Font_Properties *efp) EINA_ARG_NONNULL(1);
2393
2394    /**
2395     * Translate a font name, bound to a style, into fontconfig's font names
2396     * syntax.
2397     *
2398     * @param name The font (family) name
2399     * @param style The given style (may be @c NULL)
2400     *
2401     * @return the font name and style string
2402     *
2403     * @ingroup Fonts
2404     *
2405     * @note The reverse translation can be achived with
2406     * elm_font_properties_get(), for one style only (single font
2407     * instance, not family).
2408     */
2409    EAPI const char          *elm_font_fontconfig_name_get(const char *name, const char *style) EINA_ARG_NONNULL(1);
2410
2411    /**
2412     * Free the font string return by elm_font_fontconfig_name_get().
2413     *
2414     * @param efp the font properties struct
2415     *
2416     * @ingroup Fonts
2417     */
2418    EAPI void                 elm_font_fontconfig_name_free(const char *name) EINA_ARG_NONNULL(1);
2419
2420    /**
2421     * Create a font hash table of available system fonts.
2422     *
2423     * One must call it with @p list being the return value of
2424     * evas_font_available_list(). The hash will be indexed by font
2425     * (family) names, being its values @c Elm_Font_Properties blobs.
2426     *
2427     * @param list The list of available system fonts, as returned by
2428     * evas_font_available_list().
2429     * @return the font hash.
2430     *
2431     * @ingroup Fonts
2432     *
2433     * @note The user is supposed to get it populated at least with 3
2434     * default font families (Sans, Serif, Monospace), which should be
2435     * present on most systems.
2436     */
2437    EAPI Eina_Hash           *elm_font_available_hash_add(Eina_List *list);
2438
2439    /**
2440     * Free the hash return by elm_font_available_hash_add().
2441     *
2442     * @param hash the hash to be freed.
2443     *
2444     * @ingroup Fonts
2445     */
2446    EAPI void                 elm_font_available_hash_del(Eina_Hash *hash);
2447
2448    /**
2449     * @}
2450     */
2451
2452    /**
2453     * @defgroup Fingers Fingers
2454     *
2455     * Elementary is designed to be finger-friendly for touchscreens,
2456     * and so in addition to scaling for display resolution, it can
2457     * also scale based on finger "resolution" (or size). You can then
2458     * customize the granularity of the areas meant to receive clicks
2459     * on touchscreens.
2460     *
2461     * Different profiles may have pre-set values for finger sizes.
2462     *
2463     * @ref general_functions_example_page "This" example contemplates
2464     * some of these functions.
2465     *
2466     * @{
2467     */
2468
2469    /**
2470     * Get the configured "finger size"
2471     *
2472     * @return The finger size
2473     *
2474     * This gets the globally configured finger size, <b>in pixels</b>
2475     *
2476     * @ingroup Fingers
2477     */
2478    EAPI Evas_Coord       elm_finger_size_get(void);
2479
2480    /**
2481     * Set the configured finger size
2482     *
2483     * This sets the globally configured finger size in pixels
2484     *
2485     * @param size The finger size
2486     * @ingroup Fingers
2487     */
2488    EAPI void             elm_finger_size_set(Evas_Coord size);
2489
2490    /**
2491     * Set the configured finger size for all applications on the display
2492     *
2493     * This sets the globally configured finger size in pixels for all
2494     * applications on the display
2495     *
2496     * @param size The finger size
2497     * @ingroup Fingers
2498     */
2499    EAPI void             elm_finger_size_all_set(Evas_Coord size);
2500
2501    /**
2502     * @}
2503     */
2504
2505    /**
2506     * @defgroup Focus Focus
2507     *
2508     * An Elementary application has, at all times, one (and only one)
2509     * @b focused object. This is what determines where the input
2510     * events go to within the application's window. Also, focused
2511     * objects can be decorated differently, in order to signal to the
2512     * user where the input is, at a given moment.
2513     *
2514     * Elementary applications also have the concept of <b>focus
2515     * chain</b>: one can cycle through all the windows' focusable
2516     * objects by input (tab key) or programmatically. The default
2517     * focus chain for an application is the one define by the order in
2518     * which the widgets where added in code. One will cycle through
2519     * top level widgets, and, for each one containg sub-objects, cycle
2520     * through them all, before returning to the level
2521     * above. Elementary also allows one to set @b custom focus chains
2522     * for their applications.
2523     *
2524     * Besides the focused decoration a widget may exhibit, when it
2525     * gets focus, Elementary has a @b global focus highlight object
2526     * that can be enabled for a window. If one chooses to do so, this
2527     * extra highlight effect will surround the current focused object,
2528     * too.
2529     *
2530     * @note Some Elementary widgets are @b unfocusable, after
2531     * creation, by their very nature: they are not meant to be
2532     * interacted with input events, but are there just for visual
2533     * purposes.
2534     *
2535     * @ref general_functions_example_page "This" example contemplates
2536     * some of these functions.
2537     */
2538
2539    /**
2540     * Get the enable status of the focus highlight
2541     *
2542     * This gets whether the highlight on focused objects is enabled or not
2543     * @ingroup Focus
2544     */
2545    EAPI Eina_Bool        elm_focus_highlight_enabled_get(void);
2546
2547    /**
2548     * Set the enable status of the focus highlight
2549     *
2550     * Set whether to show or not the highlight on focused objects
2551     * @param enable Enable highlight if EINA_TRUE, disable otherwise
2552     * @ingroup Focus
2553     */
2554    EAPI void             elm_focus_highlight_enabled_set(Eina_Bool enable);
2555
2556    /**
2557     * Get the enable status of the highlight animation
2558     *
2559     * Get whether the focus highlight, if enabled, will animate its switch from
2560     * one object to the next
2561     * @ingroup Focus
2562     */
2563    EAPI Eina_Bool        elm_focus_highlight_animate_get(void);
2564
2565    /**
2566     * Set the enable status of the highlight animation
2567     *
2568     * Set whether the focus highlight, if enabled, will animate its switch from
2569     * one object to the next
2570     * @param animate Enable animation if EINA_TRUE, disable otherwise
2571     * @ingroup Focus
2572     */
2573    EAPI void             elm_focus_highlight_animate_set(Eina_Bool animate);
2574
2575    /**
2576     * Get the whether an Elementary object has the focus or not.
2577     *
2578     * @param obj The Elementary object to get the information from
2579     * @return @c EINA_TRUE, if the object is focused, @c EINA_FALSE if
2580     *            not (and on errors).
2581     *
2582     * @see elm_object_focus_set()
2583     *
2584     * @ingroup Focus
2585     */
2586    EAPI Eina_Bool        elm_object_focus_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2587
2588    /**
2589     * Set/unset focus to a given Elementary object.
2590     *
2591     * @param obj The Elementary object to operate on.
2592     * @param enable @c EINA_TRUE Set focus to a given object,
2593     *               @c EINA_FALSE Unset focus to a given object.
2594     *
2595     * @note When you set focus to this object, if it can handle focus, will
2596     * take the focus away from the one who had it previously and will, for
2597     * now on, be the one receiving input events. Unsetting focus will remove
2598     * the focus from @p obj, passing it back to the previous element in the
2599     * focus chain list.
2600     *
2601     * @see elm_object_focus_get(), elm_object_focus_custom_chain_get()
2602     *
2603     * @ingroup Focus
2604     */
2605    EAPI void             elm_object_focus_set(Evas_Object *obj, Eina_Bool focus) EINA_ARG_NONNULL(1);
2606
2607    /**
2608     * Make a given Elementary object the focused one.
2609     *
2610     * @param obj The Elementary object to make focused.
2611     *
2612     * @note This object, if it can handle focus, will take the focus
2613     * away from the one who had it previously and will, for now on, be
2614     * the one receiving input events.
2615     *
2616     * @see elm_object_focus_get()
2617     * @deprecated use elm_object_focus_set() instead.
2618     *
2619     * @ingroup Focus
2620     */
2621    EINA_DEPRECATED EAPI void             elm_object_focus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2622
2623    /**
2624     * Remove the focus from an Elementary object
2625     *
2626     * @param obj The Elementary to take focus from
2627     *
2628     * This removes the focus from @p obj, passing it back to the
2629     * previous element in the focus chain list.
2630     *
2631     * @see elm_object_focus() and elm_object_focus_custom_chain_get()
2632     * @deprecated use elm_object_focus_set() instead.
2633     *
2634     * @ingroup Focus
2635     */
2636    EINA_DEPRECATED EAPI void             elm_object_unfocus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2637
2638    /**
2639     * Set the ability for an Element object to be focused
2640     *
2641     * @param obj The Elementary object to operate on
2642     * @param enable @c EINA_TRUE if the object can be focused, @c
2643     *        EINA_FALSE if not (and on errors)
2644     *
2645     * This sets whether the object @p obj is able to take focus or
2646     * not. Unfocusable objects do nothing when programmatically
2647     * focused, being the nearest focusable parent object the one
2648     * really getting focus. Also, when they receive mouse input, they
2649     * will get the event, but not take away the focus from where it
2650     * was previously.
2651     *
2652     * @ingroup Focus
2653     */
2654    EAPI void             elm_object_focus_allow_set(Evas_Object *obj, Eina_Bool enable) EINA_ARG_NONNULL(1);
2655
2656    /**
2657     * Get whether an Elementary object is focusable or not
2658     *
2659     * @param obj The Elementary object to operate on
2660     * @return @c EINA_TRUE if the object is allowed to be focused, @c
2661     *             EINA_FALSE if not (and on errors)
2662     *
2663     * @note Objects which are meant to be interacted with by input
2664     * events are created able to be focused, by default. All the
2665     * others are not.
2666     *
2667     * @ingroup Focus
2668     */
2669    EAPI Eina_Bool        elm_object_focus_allow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2670
2671    /**
2672     * Set custom focus chain.
2673     *
2674     * This function overwrites any previous custom focus chain within
2675     * the list of objects. The previous list will be deleted and this list
2676     * will be managed by elementary. After it is set, don't modify it.
2677     *
2678     * @note On focus cycle, only will be evaluated children of this container.
2679     *
2680     * @param obj The container object
2681     * @param objs Chain of objects to pass focus
2682     * @ingroup Focus
2683     */
2684    EAPI void             elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
2685
2686    /**
2687     * Unset a custom focus chain on a given Elementary widget
2688     *
2689     * @param obj The container object to remove focus chain from
2690     *
2691     * Any focus chain previously set on @p obj (for its child objects)
2692     * is removed entirely after this call.
2693     *
2694     * @ingroup Focus
2695     */
2696    EAPI void             elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
2697
2698    /**
2699     * Get custom focus chain
2700     *
2701     * @param obj The container object
2702     * @ingroup Focus
2703     */
2704    EAPI const Eina_List *elm_object_focus_custom_chain_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2705
2706    /**
2707     * Append object to custom focus chain.
2708     *
2709     * @note If relative_child equal to NULL or not in custom chain, the object
2710     * will be added in end.
2711     *
2712     * @note On focus cycle, only will be evaluated children of this container.
2713     *
2714     * @param obj The container object
2715     * @param child The child to be added in custom chain
2716     * @param relative_child The relative object to position the child
2717     * @ingroup Focus
2718     */
2719    EAPI void             elm_object_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2720
2721    /**
2722     * Prepend object to custom focus chain.
2723     *
2724     * @note If relative_child equal to NULL or not in custom chain, the object
2725     * will be added in begin.
2726     *
2727     * @note On focus cycle, only will be evaluated children of this container.
2728     *
2729     * @param obj The container object
2730     * @param child The child to be added in custom chain
2731     * @param relative_child The relative object to position the child
2732     * @ingroup Focus
2733     */
2734    EAPI void             elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2735
2736    /**
2737     * Give focus to next object in object tree.
2738     *
2739     * Give focus to next object in focus chain of one object sub-tree.
2740     * If the last object of chain already have focus, the focus will go to the
2741     * first object of chain.
2742     *
2743     * @param obj The object root of sub-tree
2744     * @param dir Direction to cycle the focus
2745     *
2746     * @ingroup Focus
2747     */
2748    EAPI void             elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir) EINA_ARG_NONNULL(1);
2749
2750    /**
2751     * Give focus to near object in one direction.
2752     *
2753     * Give focus to near object in direction of one object.
2754     * If none focusable object in given direction, the focus will not change.
2755     *
2756     * @param obj The reference object
2757     * @param x Horizontal component of direction to focus
2758     * @param y Vertical component of direction to focus
2759     *
2760     * @ingroup Focus
2761     */
2762    EAPI void             elm_object_focus_direction_go(Evas_Object *obj, int x, int y) EINA_ARG_NONNULL(1);
2763
2764    /**
2765     * Make the elementary object and its children to be unfocusable
2766     * (or focusable).
2767     *
2768     * @param obj The Elementary object to operate on
2769     * @param tree_unfocusable @c EINA_TRUE for unfocusable,
2770     *        @c EINA_FALSE for focusable.
2771     *
2772     * This sets whether the object @p obj and its children objects
2773     * are able to take focus or not. If the tree is set as unfocusable,
2774     * newest focused object which is not in this tree will get focus.
2775     * This API can be helpful for an object to be deleted.
2776     * When an object will be deleted soon, it and its children may not
2777     * want to get focus (by focus reverting or by other focus controls).
2778     * Then, just use this API before deleting.
2779     *
2780     * @see elm_object_tree_unfocusable_get()
2781     *
2782     * @ingroup Focus
2783     */
2784    EAPI void             elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable) EINA_ARG_NONNULL(1);
2785
2786    /**
2787     * Get whether an Elementary object and its children are unfocusable or not.
2788     *
2789     * @param obj The Elementary object to get the information from
2790     * @return @c EINA_TRUE, if the tree is unfocussable,
2791     *         @c EINA_FALSE if not (and on errors).
2792     *
2793     * @see elm_object_tree_unfocusable_set()
2794     *
2795     * @ingroup Focus
2796     */
2797    EAPI Eina_Bool        elm_object_tree_unfocusable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2798
2799    /**
2800     * @defgroup Scrolling Scrolling
2801     *
2802     * These are functions setting how scrollable views in Elementary
2803     * widgets should behave on user interaction.
2804     *
2805     * @{
2806     */
2807
2808    /**
2809     * Get whether scrollers should bounce when they reach their
2810     * viewport's edge during a scroll.
2811     *
2812     * @return the thumb scroll bouncing state
2813     *
2814     * This is the default behavior for touch screens, in general.
2815     * @ingroup Scrolling
2816     */
2817    EAPI Eina_Bool        elm_scroll_bounce_enabled_get(void);
2818
2819    /**
2820     * Set whether scrollers should bounce when they reach their
2821     * viewport's edge during a scroll.
2822     *
2823     * @param enabled the thumb scroll bouncing state
2824     *
2825     * @see elm_thumbscroll_bounce_enabled_get()
2826     * @ingroup Scrolling
2827     */
2828    EAPI void             elm_scroll_bounce_enabled_set(Eina_Bool enabled);
2829
2830    /**
2831     * Set whether scrollers should bounce when they reach their
2832     * viewport's edge during a scroll, for all Elementary application
2833     * windows.
2834     *
2835     * @param enabled the thumb scroll bouncing state
2836     *
2837     * @see elm_thumbscroll_bounce_enabled_get()
2838     * @ingroup Scrolling
2839     */
2840    EAPI void             elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
2841
2842    /**
2843     * Get the amount of inertia a scroller will impose at bounce
2844     * animations.
2845     *
2846     * @return the thumb scroll bounce friction
2847     *
2848     * @ingroup Scrolling
2849     */
2850    EAPI double           elm_scroll_bounce_friction_get(void);
2851
2852    /**
2853     * Set the amount of inertia a scroller will impose at bounce
2854     * animations.
2855     *
2856     * @param friction the thumb scroll bounce friction
2857     *
2858     * @see elm_thumbscroll_bounce_friction_get()
2859     * @ingroup Scrolling
2860     */
2861    EAPI void             elm_scroll_bounce_friction_set(double friction);
2862
2863    /**
2864     * Set the amount of inertia a scroller will impose at bounce
2865     * animations, for all Elementary application windows.
2866     *
2867     * @param friction the thumb scroll bounce friction
2868     *
2869     * @see elm_thumbscroll_bounce_friction_get()
2870     * @ingroup Scrolling
2871     */
2872    EAPI void             elm_scroll_bounce_friction_all_set(double friction);
2873
2874    /**
2875     * Get the amount of inertia a <b>paged</b> scroller will impose at
2876     * page fitting animations.
2877     *
2878     * @return the page scroll friction
2879     *
2880     * @ingroup Scrolling
2881     */
2882    EAPI double           elm_scroll_page_scroll_friction_get(void);
2883
2884    /**
2885     * Set the amount of inertia a <b>paged</b> scroller will impose at
2886     * page fitting animations.
2887     *
2888     * @param friction the page scroll friction
2889     *
2890     * @see elm_thumbscroll_page_scroll_friction_get()
2891     * @ingroup Scrolling
2892     */
2893    EAPI void             elm_scroll_page_scroll_friction_set(double friction);
2894
2895    /**
2896     * Set the amount of inertia a <b>paged</b> scroller will impose at
2897     * page fitting animations, for all Elementary application windows.
2898     *
2899     * @param friction the page scroll friction
2900     *
2901     * @see elm_thumbscroll_page_scroll_friction_get()
2902     * @ingroup Scrolling
2903     */
2904    EAPI void             elm_scroll_page_scroll_friction_all_set(double friction);
2905
2906    /**
2907     * Get the amount of inertia a scroller will impose at region bring
2908     * animations.
2909     *
2910     * @return the bring in scroll friction
2911     *
2912     * @ingroup Scrolling
2913     */
2914    EAPI double           elm_scroll_bring_in_scroll_friction_get(void);
2915
2916    /**
2917     * Set the amount of inertia a scroller will impose at region bring
2918     * animations.
2919     *
2920     * @param friction the bring in scroll friction
2921     *
2922     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2923     * @ingroup Scrolling
2924     */
2925    EAPI void             elm_scroll_bring_in_scroll_friction_set(double friction);
2926
2927    /**
2928     * Set the amount of inertia a scroller will impose at region bring
2929     * animations, for all Elementary application windows.
2930     *
2931     * @param friction the bring in scroll friction
2932     *
2933     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2934     * @ingroup Scrolling
2935     */
2936    EAPI void             elm_scroll_bring_in_scroll_friction_all_set(double friction);
2937
2938    /**
2939     * Get the amount of inertia scrollers will impose at animations
2940     * triggered by Elementary widgets' zooming API.
2941     *
2942     * @return the zoom friction
2943     *
2944     * @ingroup Scrolling
2945     */
2946    EAPI double           elm_scroll_zoom_friction_get(void);
2947
2948    /**
2949     * Set the amount of inertia scrollers will impose at animations
2950     * triggered by Elementary widgets' zooming API.
2951     *
2952     * @param friction the zoom friction
2953     *
2954     * @see elm_thumbscroll_zoom_friction_get()
2955     * @ingroup Scrolling
2956     */
2957    EAPI void             elm_scroll_zoom_friction_set(double friction);
2958
2959    /**
2960     * Set the amount of inertia scrollers will impose at animations
2961     * triggered by Elementary widgets' zooming API, for all Elementary
2962     * application windows.
2963     *
2964     * @param friction the zoom friction
2965     *
2966     * @see elm_thumbscroll_zoom_friction_get()
2967     * @ingroup Scrolling
2968     */
2969    EAPI void             elm_scroll_zoom_friction_all_set(double friction);
2970
2971    /**
2972     * Get whether scrollers should be draggable from any point in their
2973     * views.
2974     *
2975     * @return the thumb scroll state
2976     *
2977     * @note This is the default behavior for touch screens, in general.
2978     * @note All other functions namespaced with "thumbscroll" will only
2979     *       have effect if this mode is enabled.
2980     *
2981     * @ingroup Scrolling
2982     */
2983    EAPI Eina_Bool        elm_scroll_thumbscroll_enabled_get(void);
2984
2985    /**
2986     * Set whether scrollers should be draggable from any point in their
2987     * views.
2988     *
2989     * @param enabled the thumb scroll state
2990     *
2991     * @see elm_thumbscroll_enabled_get()
2992     * @ingroup Scrolling
2993     */
2994    EAPI void             elm_scroll_thumbscroll_enabled_set(Eina_Bool enabled);
2995
2996    /**
2997     * Set whether scrollers should be draggable from any point in their
2998     * views, for all Elementary application windows.
2999     *
3000     * @param enabled the thumb scroll state
3001     *
3002     * @see elm_thumbscroll_enabled_get()
3003     * @ingroup Scrolling
3004     */
3005    EAPI void             elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
3006
3007    /**
3008     * Get the number of pixels one should travel while dragging a
3009     * scroller's view to actually trigger scrolling.
3010     *
3011     * @return the thumb scroll threshould
3012     *
3013     * One would use higher values for touch screens, in general, because
3014     * of their inherent imprecision.
3015     * @ingroup Scrolling
3016     */
3017    EAPI unsigned int     elm_scroll_thumbscroll_threshold_get(void);
3018
3019    /**
3020     * Set the number of pixels one should travel while dragging a
3021     * scroller's view to actually trigger scrolling.
3022     *
3023     * @param threshold the thumb scroll threshould
3024     *
3025     * @see elm_thumbscroll_threshould_get()
3026     * @ingroup Scrolling
3027     */
3028    EAPI void             elm_scroll_thumbscroll_threshold_set(unsigned int threshold);
3029
3030    /**
3031     * Set the number of pixels one should travel while dragging a
3032     * scroller's view to actually trigger scrolling, for all Elementary
3033     * application windows.
3034     *
3035     * @param threshold the thumb scroll threshould
3036     *
3037     * @see elm_thumbscroll_threshould_get()
3038     * @ingroup Scrolling
3039     */
3040    EAPI void             elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
3041
3042    /**
3043     * Get the minimum speed of mouse cursor movement which will trigger
3044     * list self scrolling animation after a mouse up event
3045     * (pixels/second).
3046     *
3047     * @return the thumb scroll momentum threshould
3048     *
3049     * @ingroup Scrolling
3050     */
3051    EAPI double           elm_scroll_thumbscroll_momentum_threshold_get(void);
3052
3053    /**
3054     * Set the minimum speed of mouse cursor movement which will trigger
3055     * list self scrolling animation after a mouse up event
3056     * (pixels/second).
3057     *
3058     * @param threshold the thumb scroll momentum threshould
3059     *
3060     * @see elm_thumbscroll_momentum_threshould_get()
3061     * @ingroup Scrolling
3062     */
3063    EAPI void             elm_scroll_thumbscroll_momentum_threshold_set(double threshold);
3064
3065    /**
3066     * Set the minimum speed of mouse cursor movement which will trigger
3067     * list self scrolling animation after a mouse up event
3068     * (pixels/second), for all Elementary application windows.
3069     *
3070     * @param threshold the thumb scroll momentum threshould
3071     *
3072     * @see elm_thumbscroll_momentum_threshould_get()
3073     * @ingroup Scrolling
3074     */
3075    EAPI void             elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
3076
3077    /**
3078     * Get the amount of inertia a scroller will impose at self scrolling
3079     * animations.
3080     *
3081     * @return the thumb scroll friction
3082     *
3083     * @ingroup Scrolling
3084     */
3085    EAPI double           elm_scroll_thumbscroll_friction_get(void);
3086
3087    /**
3088     * Set the amount of inertia a scroller will impose at self scrolling
3089     * animations.
3090     *
3091     * @param friction the thumb scroll friction
3092     *
3093     * @see elm_thumbscroll_friction_get()
3094     * @ingroup Scrolling
3095     */
3096    EAPI void             elm_scroll_thumbscroll_friction_set(double friction);
3097
3098    /**
3099     * Set the amount of inertia a scroller will impose at self scrolling
3100     * animations, for all Elementary application windows.
3101     *
3102     * @param friction the thumb scroll friction
3103     *
3104     * @see elm_thumbscroll_friction_get()
3105     * @ingroup Scrolling
3106     */
3107    EAPI void             elm_scroll_thumbscroll_friction_all_set(double friction);
3108
3109    /**
3110     * Get the amount of lag between your actual mouse cursor dragging
3111     * movement and a scroller's view movement itself, while pushing it
3112     * into bounce state manually.
3113     *
3114     * @return the thumb scroll border friction
3115     *
3116     * @ingroup Scrolling
3117     */
3118    EAPI double           elm_scroll_thumbscroll_border_friction_get(void);
3119
3120    /**
3121     * Set the amount of lag between your actual mouse cursor dragging
3122     * movement and a scroller's view movement itself, while pushing it
3123     * into bounce state manually.
3124     *
3125     * @param friction the thumb scroll border friction. @c 0.0 for
3126     *        perfect synchrony between two movements, @c 1.0 for maximum
3127     *        lag.
3128     *
3129     * @see elm_thumbscroll_border_friction_get()
3130     * @note parameter value will get bound to 0.0 - 1.0 interval, always
3131     *
3132     * @ingroup Scrolling
3133     */
3134    EAPI void             elm_scroll_thumbscroll_border_friction_set(double friction);
3135
3136    /**
3137     * Set the amount of lag between your actual mouse cursor dragging
3138     * movement and a scroller's view movement itself, while pushing it
3139     * into bounce state manually, for all Elementary application windows.
3140     *
3141     * @param friction the thumb scroll border friction. @c 0.0 for
3142     *        perfect synchrony between two movements, @c 1.0 for maximum
3143     *        lag.
3144     *
3145     * @see elm_thumbscroll_border_friction_get()
3146     * @note parameter value will get bound to 0.0 - 1.0 interval, always
3147     *
3148     * @ingroup Scrolling
3149     */
3150    EAPI void             elm_scroll_thumbscroll_border_friction_all_set(double friction);
3151
3152    /**
3153     * Get the sensitivity amount which is be multiplied by the length of
3154     * mouse dragging.
3155     *
3156     * @return the thumb scroll sensitivity friction
3157     *
3158     * @ingroup Scrolling
3159     */
3160    EAPI double           elm_scroll_thumbscroll_sensitivity_friction_get(void);
3161
3162    /**
3163     * Set the sensitivity amount which is be multiplied by the length of
3164     * mouse dragging.
3165     *
3166     * @param friction the thumb scroll sensitivity friction. @c 0.1 for
3167     *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
3168     *        is proper.
3169     *
3170     * @see elm_thumbscroll_sensitivity_friction_get()
3171     * @note parameter value will get bound to 0.1 - 1.0 interval, always
3172     *
3173     * @ingroup Scrolling
3174     */
3175    EAPI void             elm_scroll_thumbscroll_sensitivity_friction_set(double friction);
3176
3177    /**
3178     * Set the sensitivity amount which is be multiplied by the length of
3179     * mouse dragging, for all Elementary application windows.
3180     *
3181     * @param friction the thumb scroll sensitivity friction. @c 0.1 for
3182     *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
3183     *        is proper.
3184     *
3185     * @see elm_thumbscroll_sensitivity_friction_get()
3186     * @note parameter value will get bound to 0.1 - 1.0 interval, always
3187     *
3188     * @ingroup Scrolling
3189     */
3190    EAPI void             elm_scroll_thumbscroll_sensitivity_friction_all_set(double friction);
3191
3192    /**
3193     * @}
3194     */
3195
3196    /**
3197     * @defgroup Scrollhints Scrollhints
3198     *
3199     * Objects when inside a scroller can scroll, but this may not always be
3200     * desirable in certain situations. This allows an object to hint to itself
3201     * and parents to "not scroll" in one of 2 ways. If any child object of a
3202     * scroller has pushed a scroll freeze or hold then it affects all parent
3203     * scrollers until all children have released them.
3204     *
3205     * 1. To hold on scrolling. This means just flicking and dragging may no
3206     * longer scroll, but pressing/dragging near an edge of the scroller will
3207     * still scroll. This is automatically used by the entry object when
3208     * selecting text.
3209     *
3210     * 2. To totally freeze scrolling. This means it stops. until
3211     * popped/released.
3212     *
3213     * @{
3214     */
3215
3216    /**
3217     * Push the scroll hold by 1
3218     *
3219     * This increments the scroll hold count by one. If it is more than 0 it will
3220     * take effect on the parents of the indicated object.
3221     *
3222     * @param obj The object
3223     * @ingroup Scrollhints
3224     */
3225    EAPI void             elm_object_scroll_hold_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
3226
3227    /**
3228     * Pop the scroll hold by 1
3229     *
3230     * This decrements the scroll hold count by one. If it is more than 0 it will
3231     * take effect on the parents of the indicated object.
3232     *
3233     * @param obj The object
3234     * @ingroup Scrollhints
3235     */
3236    EAPI void             elm_object_scroll_hold_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
3237
3238    /**
3239     * Push the scroll freeze by 1
3240     *
3241     * This increments the scroll freeze count by one. If it is more
3242     * than 0 it will take effect on the parents of the indicated
3243     * object.
3244     *
3245     * @param obj The object
3246     * @ingroup Scrollhints
3247     */
3248    EAPI void             elm_object_scroll_freeze_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
3249
3250    /**
3251     * Pop the scroll freeze by 1
3252     *
3253     * This decrements the scroll freeze count by one. If it is more
3254     * than 0 it will take effect on the parents of the indicated
3255     * object.
3256     *
3257     * @param obj The object
3258     * @ingroup Scrollhints
3259     */
3260    EAPI void             elm_object_scroll_freeze_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
3261
3262    /**
3263     * Lock the scrolling of the given widget (and thus all parents)
3264     *
3265     * This locks the given object from scrolling in the X axis (and implicitly
3266     * also locks all parent scrollers too from doing the same).
3267     *
3268     * @param obj The object
3269     * @param lock The lock state (1 == locked, 0 == unlocked)
3270     * @ingroup Scrollhints
3271     */
3272    EAPI void             elm_object_scroll_lock_x_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
3273
3274    /**
3275     * Lock the scrolling of the given widget (and thus all parents)
3276     *
3277     * This locks the given object from scrolling in the Y axis (and implicitly
3278     * also locks all parent scrollers too from doing the same).
3279     *
3280     * @param obj The object
3281     * @param lock The lock state (1 == locked, 0 == unlocked)
3282     * @ingroup Scrollhints
3283     */
3284    EAPI void             elm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
3285
3286    /**
3287     * Get the scrolling lock of the given widget
3288     *
3289     * This gets the lock for X axis scrolling.
3290     *
3291     * @param obj The object
3292     * @ingroup Scrollhints
3293     */
3294    EAPI Eina_Bool        elm_object_scroll_lock_x_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3295
3296    /**
3297     * Get the scrolling lock of the given widget
3298     *
3299     * This gets the lock for X axis scrolling.
3300     *
3301     * @param obj The object
3302     * @ingroup Scrollhints
3303     */
3304    EAPI Eina_Bool        elm_object_scroll_lock_y_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3305
3306    /**
3307     * @}
3308     */
3309
3310    /**
3311     * Send a signal to the widget edje object.
3312     *
3313     * This function sends a signal to the edje object of the obj. An
3314     * edje program can respond to a signal by specifying matching
3315     * 'signal' and 'source' fields.
3316     *
3317     * @param obj The object
3318     * @param emission The signal's name.
3319     * @param source The signal's source.
3320     * @ingroup General
3321     */
3322    EAPI void             elm_object_signal_emit(Evas_Object *obj, const char *emission, const char *source) EINA_ARG_NONNULL(1);
3323
3324    /**
3325     * Add a callback for a signal emitted by widget edje object.
3326     *
3327     * This function connects a callback function to a signal emitted by the
3328     * edje object of the obj.
3329     * Globs can occur in either the emission or source name.
3330     *
3331     * @param obj The object
3332     * @param emission The signal's name.
3333     * @param source The signal's source.
3334     * @param func The callback function to be executed when the signal is
3335     * emitted.
3336     * @param data A pointer to data to pass in to the callback function.
3337     * @ingroup General
3338     */
3339    EAPI void             elm_object_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func, void *data) EINA_ARG_NONNULL(1, 4);
3340
3341    /**
3342     * Remove a signal-triggered callback from a widget edje object.
3343     *
3344     * This function removes a callback, previoulsy attached to a
3345     * signal emitted by the edje object of the obj.  The parameters
3346     * emission, source and func must match exactly those passed to a
3347     * previous call to elm_object_signal_callback_add(). The data
3348     * pointer that was passed to this call will be returned.
3349     *
3350     * @param obj The object
3351     * @param emission The signal's name.
3352     * @param source The signal's source.
3353     * @param func The callback function to be executed when the signal is
3354     * emitted.
3355     * @return The data pointer
3356     * @ingroup General
3357     */
3358    EAPI void            *elm_object_signal_callback_del(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func) EINA_ARG_NONNULL(1, 4);
3359
3360    /**
3361     * Add a callback for input events (key up, key down, mouse wheel)
3362     * on a given Elementary widget
3363     *
3364     * @param obj The widget to add an event callback on
3365     * @param func The callback function to be executed when the event
3366     * happens
3367     * @param data Data to pass in to @p func
3368     *
3369     * Every widget in an Elementary interface set to receive focus,
3370     * with elm_object_focus_allow_set(), will propagate @b all of its
3371     * key up, key down and mouse wheel input events up to its parent
3372     * object, and so on. All of the focusable ones in this chain which
3373     * had an event callback set, with this call, will be able to treat
3374     * those events. There are two ways of making the propagation of
3375     * these event upwards in the tree of widgets to @b cease:
3376     * - Just return @c EINA_TRUE on @p func. @c EINA_FALSE will mean
3377     *   the event was @b not processed, so the propagation will go on.
3378     * - The @c event_info pointer passed to @p func will contain the
3379     *   event's structure and, if you OR its @c event_flags inner
3380     *   value to @c EVAS_EVENT_FLAG_ON_HOLD, you're telling Elementary
3381     *   one has already handled it, thus killing the event's
3382     *   propagation, too.
3383     *
3384     * @note Your event callback will be issued on those events taking
3385     * place only if no other child widget of @obj has consumed the
3386     * event already.
3387     *
3388     * @note Not to be confused with @c
3389     * evas_object_event_callback_add(), which will add event callbacks
3390     * per type on general Evas objects (no event propagation
3391     * infrastructure taken in account).
3392     *
3393     * @note Not to be confused with @c
3394     * elm_object_signal_callback_add(), which will add callbacks to @b
3395     * signals coming from a widget's theme, not input events.
3396     *
3397     * @note Not to be confused with @c
3398     * edje_object_signal_callback_add(), which does the same as
3399     * elm_object_signal_callback_add(), but directly on an Edje
3400     * object.
3401     *
3402     * @note Not to be confused with @c
3403     * evas_object_smart_callback_add(), which adds callbacks to smart
3404     * objects' <b>smart events</b>, and not input events.
3405     *
3406     * @see elm_object_event_callback_del()
3407     *
3408     * @ingroup General
3409     */
3410    EAPI void             elm_object_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3411
3412    /**
3413     * Remove an event callback from a widget.
3414     *
3415     * This function removes a callback, previoulsy attached to event emission
3416     * by the @p obj.
3417     * The parameters func and data must match exactly those passed to
3418     * a previous call to elm_object_event_callback_add(). The data pointer that
3419     * was passed to this call will be returned.
3420     *
3421     * @param obj The object
3422     * @param func The callback function to be executed when the event is
3423     * emitted.
3424     * @param data Data to pass in to the callback function.
3425     * @return The data pointer
3426     * @ingroup General
3427     */
3428    EAPI void            *elm_object_event_callback_del(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3429
3430    /**
3431     * Adjust size of an element for finger usage.
3432     *
3433     * @param times_w How many fingers should fit horizontally
3434     * @param w Pointer to the width size to adjust
3435     * @param times_h How many fingers should fit vertically
3436     * @param h Pointer to the height size to adjust
3437     *
3438     * This takes width and height sizes (in pixels) as input and a
3439     * size multiple (which is how many fingers you want to place
3440     * within the area, being "finger" the size set by
3441     * elm_finger_size_set()), and adjusts the size to be large enough
3442     * to accommodate the resulting size -- if it doesn't already
3443     * accommodate it. On return the @p w and @p h sizes pointed to by
3444     * these parameters will be modified, on those conditions.
3445     *
3446     * @note This is kind of a low level Elementary call, most useful
3447     * on size evaluation times for widgets. An external user wouldn't
3448     * be calling, most of the time.
3449     *
3450     * @ingroup Fingers
3451     */
3452    EAPI void             elm_coords_finger_size_adjust(int times_w, Evas_Coord *w, int times_h, Evas_Coord *h);
3453
3454    /**
3455     * Get the duration for occuring long press event.
3456     *
3457     * @return Timeout for long press event
3458     * @ingroup Longpress
3459     */
3460    EAPI double           elm_longpress_timeout_get(void);
3461
3462    /**
3463     * Set the duration for occuring long press event.
3464     *
3465     * @param lonpress_timeout Timeout for long press event
3466     * @ingroup Longpress
3467     */
3468    EAPI void             elm_longpress_timeout_set(double longpress_timeout);
3469
3470    /**
3471     * @defgroup Debug Debug
3472     * don't use it unless you are sure
3473     *
3474     * @{
3475     */
3476
3477    /**
3478     * Print Tree object hierarchy in stdout
3479     *
3480     * @param obj The root object
3481     * @ingroup Debug
3482     */
3483    EAPI void             elm_object_tree_dump(const Evas_Object *top);
3484
3485    /**
3486     * Print Elm Objects tree hierarchy in file as dot(graphviz) syntax.
3487     *
3488     * @param obj The root object
3489     * @param file The path of output file
3490     * @ingroup Debug
3491     */
3492    EAPI void             elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
3493
3494    /**
3495     * @}
3496     */
3497
3498    /**
3499     * @defgroup Theme Theme
3500     *
3501     * Elementary uses Edje to theme its widgets, naturally. But for the most
3502     * part this is hidden behind a simpler interface that lets the user set
3503     * extensions and choose the style of widgets in a much easier way.
3504     *
3505     * Instead of thinking in terms of paths to Edje files and their groups
3506     * each time you want to change the appearance of a widget, Elementary
3507     * works so you can add any theme file with extensions or replace the
3508     * main theme at one point in the application, and then just set the style
3509     * of widgets with elm_object_style_set() and related functions. Elementary
3510     * will then look in its list of themes for a matching group and apply it,
3511     * and when the theme changes midway through the application, all widgets
3512     * will be updated accordingly.
3513     *
3514     * There are three concepts you need to know to understand how Elementary
3515     * theming works: default theme, extensions and overlays.
3516     *
3517     * Default theme, obviously enough, is the one that provides the default
3518     * look of all widgets. End users can change the theme used by Elementary
3519     * by setting the @c ELM_THEME environment variable before running an
3520     * application, or globally for all programs using the @c elementary_config
3521     * utility. Applications can change the default theme using elm_theme_set(),
3522     * but this can go against the user wishes, so it's not an adviced practice.
3523     *
3524     * Ideally, applications should find everything they need in the already
3525     * provided theme, but there may be occasions when that's not enough and
3526     * custom styles are required to correctly express the idea. For this
3527     * cases, Elementary has extensions.
3528     *
3529     * Extensions allow the application developer to write styles of its own
3530     * to apply to some widgets. This requires knowledge of how each widget
3531     * is themed, as extensions will always replace the entire group used by
3532     * the widget, so important signals and parts need to be there for the
3533     * object to behave properly (see documentation of Edje for details).
3534     * Once the theme for the extension is done, the application needs to add
3535     * it to the list of themes Elementary will look into, using
3536     * elm_theme_extension_add(), and set the style of the desired widgets as
3537     * he would normally with elm_object_style_set().
3538     *
3539     * Overlays, on the other hand, can replace the look of all widgets by
3540     * overriding the default style. Like extensions, it's up to the application
3541     * developer to write the theme for the widgets it wants, the difference
3542     * being that when looking for the theme, Elementary will check first the
3543     * list of overlays, then the set theme and lastly the list of extensions,
3544     * so with overlays it's possible to replace the default view and every
3545     * widget will be affected. This is very much alike to setting the whole
3546     * theme for the application and will probably clash with the end user
3547     * options, not to mention the risk of ending up with not matching styles
3548     * across the program. Unless there's a very special reason to use them,
3549     * overlays should be avoided for the resons exposed before.
3550     *
3551     * All these theme lists are handled by ::Elm_Theme instances. Elementary
3552     * keeps one default internally and every function that receives one of
3553     * these can be called with NULL to refer to this default (except for
3554     * elm_theme_free()). It's possible to create a new instance of a
3555     * ::Elm_Theme to set other theme for a specific widget (and all of its
3556     * children), but this is as discouraged, if not even more so, than using
3557     * overlays. Don't use this unless you really know what you are doing.
3558     *
3559     * But to be less negative about things, you can look at the following
3560     * examples:
3561     * @li @ref theme_example_01 "Using extensions"
3562     * @li @ref theme_example_02 "Using overlays"
3563     *
3564     * @{
3565     */
3566    /**
3567     * @typedef Elm_Theme
3568     *
3569     * Opaque handler for the list of themes Elementary looks for when
3570     * rendering widgets.
3571     *
3572     * Stay out of this unless you really know what you are doing. For most
3573     * cases, sticking to the default is all a developer needs.
3574     */
3575    typedef struct _Elm_Theme Elm_Theme;
3576
3577    /**
3578     * Create a new specific theme
3579     *
3580     * This creates an empty specific theme that only uses the default theme. A
3581     * specific theme has its own private set of extensions and overlays too
3582     * (which are empty by default). Specific themes do not fall back to themes
3583     * of parent objects. They are not intended for this use. Use styles, overlays
3584     * and extensions when needed, but avoid specific themes unless there is no
3585     * other way (example: you want to have a preview of a new theme you are
3586     * selecting in a "theme selector" window. The preview is inside a scroller
3587     * and should display what the theme you selected will look like, but not
3588     * actually apply it yet. The child of the scroller will have a specific
3589     * theme set to show this preview before the user decides to apply it to all
3590     * applications).
3591     */
3592    EAPI Elm_Theme       *elm_theme_new(void);
3593    /**
3594     * Free a specific theme
3595     *
3596     * @param th The theme to free
3597     *
3598     * This frees a theme created with elm_theme_new().
3599     */
3600    EAPI void             elm_theme_free(Elm_Theme *th);
3601    /**
3602     * Copy the theme fom the source to the destination theme
3603     *
3604     * @param th The source theme to copy from
3605     * @param thdst The destination theme to copy data to
3606     *
3607     * This makes a one-time static copy of all the theme config, extensions
3608     * and overlays from @p th to @p thdst. If @p th references a theme, then
3609     * @p thdst is also set to reference it, with all the theme settings,
3610     * overlays and extensions that @p th had.
3611     */
3612    EAPI void             elm_theme_copy(Elm_Theme *th, Elm_Theme *thdst);
3613    /**
3614     * Tell the source theme to reference the ref theme
3615     *
3616     * @param th The theme that will do the referencing
3617     * @param thref The theme that is the reference source
3618     *
3619     * This clears @p th to be empty and then sets it to refer to @p thref
3620     * so @p th acts as an override to @p thref, but where its overrides
3621     * don't apply, it will fall through to @p thref for configuration.
3622     */
3623    EAPI void             elm_theme_ref_set(Elm_Theme *th, Elm_Theme *thref);
3624    /**
3625     * Return the theme referred to
3626     *
3627     * @param th The theme to get the reference from
3628     * @return The referenced theme handle
3629     *
3630     * This gets the theme set as the reference theme by elm_theme_ref_set().
3631     * If no theme is set as a reference, NULL is returned.
3632     */
3633    EAPI Elm_Theme       *elm_theme_ref_get(Elm_Theme *th);
3634    /**
3635     * Return the default theme
3636     *
3637     * @return The default theme handle
3638     *
3639     * This returns the internal default theme setup handle that all widgets
3640     * use implicitly unless a specific theme is set. This is also often use
3641     * as a shorthand of NULL.
3642     */
3643    EAPI Elm_Theme       *elm_theme_default_get(void);
3644    /**
3645     * Prepends a theme overlay to the list of overlays
3646     *
3647     * @param th The theme to add to, or if NULL, the default theme
3648     * @param item The Edje file path to be used
3649     *
3650     * Use this if your application needs to provide some custom overlay theme
3651     * (An Edje file that replaces some default styles of widgets) where adding
3652     * new styles, or changing system theme configuration is not possible. Do
3653     * NOT use this instead of a proper system theme configuration. Use proper
3654     * configuration files, profiles, environment variables etc. to set a theme
3655     * so that the theme can be altered by simple confiugration by a user. Using
3656     * this call to achieve that effect is abusing the API and will create lots
3657     * of trouble.
3658     *
3659     * @see elm_theme_extension_add()
3660     */
3661    EAPI void             elm_theme_overlay_add(Elm_Theme *th, const char *item);
3662    /**
3663     * Delete a theme overlay from the list of overlays
3664     *
3665     * @param th The theme to delete from, or if NULL, the default theme
3666     * @param item The name of the theme overlay
3667     *
3668     * @see elm_theme_overlay_add()
3669     */
3670    EAPI void             elm_theme_overlay_del(Elm_Theme *th, const char *item);
3671    /**
3672     * Appends a theme extension to the list of extensions.
3673     *
3674     * @param th The theme to add to, or if NULL, the default theme
3675     * @param item The Edje file path to be used
3676     *
3677     * This is intended when an application needs more styles of widgets or new
3678     * widget themes that the default does not provide (or may not provide). The
3679     * application has "extended" usage by coming up with new custom style names
3680     * for widgets for specific uses, but as these are not "standard", they are
3681     * not guaranteed to be provided by a default theme. This means the
3682     * application is required to provide these extra elements itself in specific
3683     * Edje files. This call adds one of those Edje files to the theme search
3684     * path to be search after the default theme. The use of this call is
3685     * encouraged when default styles do not meet the needs of the application.
3686     * Use this call instead of elm_theme_overlay_add() for almost all cases.
3687     *
3688     * @see elm_object_style_set()
3689     */
3690    EAPI void             elm_theme_extension_add(Elm_Theme *th, const char *item);
3691    /**
3692     * Deletes a theme extension from the list of extensions.
3693     *
3694     * @param th The theme to delete from, or if NULL, the default theme
3695     * @param item The name of the theme extension
3696     *
3697     * @see elm_theme_extension_add()
3698     */
3699    EAPI void             elm_theme_extension_del(Elm_Theme *th, const char *item);
3700    /**
3701     * Set the theme search order for the given theme
3702     *
3703     * @param th The theme to set the search order, or if NULL, the default theme
3704     * @param theme Theme search string
3705     *
3706     * This sets the search string for the theme in path-notation from first
3707     * theme to search, to last, delimited by the : character. Example:
3708     *
3709     * "shiny:/path/to/file.edj:default"
3710     *
3711     * See the ELM_THEME environment variable for more information.
3712     *
3713     * @see elm_theme_get()
3714     * @see elm_theme_list_get()
3715     */
3716    EAPI void             elm_theme_set(Elm_Theme *th, const char *theme);
3717    /**
3718     * Return the theme search order
3719     *
3720     * @param th The theme to get the search order, or if NULL, the default theme
3721     * @return The internal search order path
3722     *
3723     * This function returns a colon separated string of theme elements as
3724     * returned by elm_theme_list_get().
3725     *
3726     * @see elm_theme_set()
3727     * @see elm_theme_list_get()
3728     */
3729    EAPI const char      *elm_theme_get(Elm_Theme *th);
3730    /**
3731     * Return a list of theme elements to be used in a theme.
3732     *
3733     * @param th Theme to get the list of theme elements from.
3734     * @return The internal list of theme elements
3735     *
3736     * This returns the internal list of theme elements (will only be valid as
3737     * long as the theme is not modified by elm_theme_set() or theme is not
3738     * freed by elm_theme_free(). This is a list of strings which must not be
3739     * altered as they are also internal. If @p th is NULL, then the default
3740     * theme element list is returned.
3741     *
3742     * A theme element can consist of a full or relative path to a .edj file,
3743     * or a name, without extension, for a theme to be searched in the known
3744     * theme paths for Elemementary.
3745     *
3746     * @see elm_theme_set()
3747     * @see elm_theme_get()
3748     */
3749    EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
3750    /**
3751     * Return the full patrh for a theme element
3752     *
3753     * @param f The theme element name
3754     * @param in_search_path Pointer to a boolean to indicate if item is in the search path or not
3755     * @return The full path to the file found.
3756     *
3757     * This returns a string you should free with free() on success, NULL on
3758     * failure. This will search for the given theme element, and if it is a
3759     * full or relative path element or a simple searchable name. The returned
3760     * path is the full path to the file, if searched, and the file exists, or it
3761     * is simply the full path given in the element or a resolved path if
3762     * relative to home. The @p in_search_path boolean pointed to is set to
3763     * EINA_TRUE if the file was a searchable file andis in the search path,
3764     * and EINA_FALSE otherwise.
3765     */
3766    EAPI char            *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path);
3767    /**
3768     * Flush the current theme.
3769     *
3770     * @param th Theme to flush
3771     *
3772     * This flushes caches that let elementary know where to find theme elements
3773     * in the given theme. If @p th is NULL, then the default theme is flushed.
3774     * Call this function if source theme data has changed in such a way as to
3775     * make any caches Elementary kept invalid.
3776     */
3777    EAPI void             elm_theme_flush(Elm_Theme *th);
3778    /**
3779     * This flushes all themes (default and specific ones).
3780     *
3781     * This will flush all themes in the current application context, by calling
3782     * elm_theme_flush() on each of them.
3783     */
3784    EAPI void             elm_theme_full_flush(void);
3785    /**
3786     * Set the theme for all elementary using applications on the current display
3787     *
3788     * @param theme The name of the theme to use. Format same as the ELM_THEME
3789     * environment variable.
3790     */
3791    EAPI void             elm_theme_all_set(const char *theme);
3792    /**
3793     * Return a list of theme elements in the theme search path
3794     *
3795     * @return A list of strings that are the theme element names.
3796     *
3797     * This lists all available theme files in the standard Elementary search path
3798     * for theme elements, and returns them in alphabetical order as theme
3799     * element names in a list of strings. Free this with
3800     * elm_theme_name_available_list_free() when you are done with the list.
3801     */
3802    EAPI Eina_List       *elm_theme_name_available_list_new(void);
3803    /**
3804     * Free the list returned by elm_theme_name_available_list_new()
3805     *
3806     * This frees the list of themes returned by
3807     * elm_theme_name_available_list_new(). Once freed the list should no longer
3808     * be used. a new list mys be created.
3809     */
3810    EAPI void             elm_theme_name_available_list_free(Eina_List *list);
3811    /**
3812     * Set a specific theme to be used for this object and its children
3813     *
3814     * @param obj The object to set the theme on
3815     * @param th The theme to set
3816     *
3817     * This sets a specific theme that will be used for the given object and any
3818     * child objects it has. If @p th is NULL then the theme to be used is
3819     * cleared and the object will inherit its theme from its parent (which
3820     * ultimately will use the default theme if no specific themes are set).
3821     *
3822     * Use special themes with great care as this will annoy users and make
3823     * configuration difficult. Avoid any custom themes at all if it can be
3824     * helped.
3825     */
3826    EAPI void             elm_object_theme_set(Evas_Object *obj, Elm_Theme *th) EINA_ARG_NONNULL(1);
3827    /**
3828     * Get the specific theme to be used
3829     *
3830     * @param obj The object to get the specific theme from
3831     * @return The specifc theme set.
3832     *
3833     * This will return a specific theme set, or NULL if no specific theme is
3834     * set on that object. It will not return inherited themes from parents, only
3835     * the specific theme set for that specific object. See elm_object_theme_set()
3836     * for more information.
3837     */
3838    EAPI Elm_Theme       *elm_object_theme_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3839
3840    /**
3841     * Get a data item from a theme
3842     *
3843     * @param th The theme, or NULL for default theme
3844     * @param key The data key to search with
3845     * @return The data value, or NULL on failure
3846     *
3847     * This function is used to return data items from edc in @p th, an overlay, or an extension.
3848     * It works the same way as edje_file_data_get() except that the return is stringshared.
3849     */
3850    EAPI const char      *elm_theme_data_get(Elm_Theme *th, const char *key) EINA_ARG_NONNULL(2);
3851    /**
3852     * @}
3853     */
3854
3855    /* win */
3856    /** @defgroup Win Win
3857     *
3858     * @image html img/widget/win/preview-00.png
3859     * @image latex img/widget/win/preview-00.eps
3860     *
3861     * The window class of Elementary.  Contains functions to manipulate
3862     * windows. The Evas engine used to render the window contents is specified
3863     * in the system or user elementary config files (whichever is found last),
3864     * and can be overridden with the ELM_ENGINE environment variable for
3865     * testing.  Engines that may be supported (depending on Evas and Ecore-Evas
3866     * compilation setup and modules actually installed at runtime) are (listed
3867     * in order of best supported and most likely to be complete and work to
3868     * lowest quality).
3869     *
3870     * @li "x11", "x", "software-x11", "software_x11" (Software rendering in X11)
3871     * @li "gl", "opengl", "opengl-x11", "opengl_x11" (OpenGL or OpenGL-ES2
3872     * rendering in X11)
3873     * @li "shot:..." (Virtual screenshot renderer - renders to output file and
3874     * exits)
3875     * @li "fb", "software-fb", "software_fb" (Linux framebuffer direct software
3876     * rendering)
3877     * @li "sdl", "software-sdl", "software_sdl" (SDL software rendering to SDL
3878     * buffer)
3879     * @li "gl-sdl", "gl_sdl", "opengl-sdl", "opengl_sdl" (OpenGL or OpenGL-ES2
3880     * rendering using SDL as the buffer)
3881     * @li "gdi", "software-gdi", "software_gdi" (Windows WIN32 rendering via
3882     * GDI with software)
3883     * @li "dfb", "directfb" (Rendering to a DirectFB window)
3884     * @li "x11-8", "x8", "software-8-x11", "software_8_x11" (Rendering in
3885     * grayscale using dedicated 8bit software engine in X11)
3886     * @li "x11-16", "x16", "software-16-x11", "software_16_x11" (Rendering in
3887     * X11 using 16bit software engine)
3888     * @li "wince-gdi", "software-16-wince-gdi", "software_16_wince_gdi"
3889     * (Windows CE rendering via GDI with 16bit software renderer)
3890     * @li "sdl-16", "software-16-sdl", "software_16_sdl" (Rendering to SDL
3891     * buffer with 16bit software renderer)
3892     * @li "ews" (rendering to EWS - Ecore + Evas Single Process Windowing System)
3893     * @li "gl-cocoa", "gl_cocoa", "opengl-cocoa", "opengl_cocoa" (OpenGL rendering in Cocoa)
3894     * @li "psl1ght" (PS3 rendering using PSL1GHT)
3895     *
3896     * All engines use a simple string to select the engine to render, EXCEPT
3897     * the "shot" engine. This actually encodes the output of the virtual
3898     * screenshot and how long to delay in the engine string. The engine string
3899     * is encoded in the following way:
3900     *
3901     *   "shot:[delay=XX][:][repeat=DDD][:][file=XX]"
3902     *
3903     * Where options are separated by a ":" char if more than one option is
3904     * given, with delay, if provided being the first option and file the last
3905     * (order is important). The delay specifies how long to wait after the
3906     * window is shown before doing the virtual "in memory" rendering and then
3907     * save the output to the file specified by the file option (and then exit).
3908     * If no delay is given, the default is 0.5 seconds. If no file is given the
3909     * default output file is "out.png". Repeat option is for continous
3910     * capturing screenshots. Repeat range is from 1 to 999 and filename is
3911     * fixed to "out001.png" Some examples of using the shot engine:
3912     *
3913     *   ELM_ENGINE="shot:delay=1.0:repeat=5:file=elm_test.png" elementary_test
3914     *   ELM_ENGINE="shot:delay=1.0:file=elm_test.png" elementary_test
3915     *   ELM_ENGINE="shot:file=elm_test2.png" elementary_test
3916     *   ELM_ENGINE="shot:delay=2.0" elementary_test
3917     *   ELM_ENGINE="shot:" elementary_test
3918     *
3919     * Signals that you can add callbacks for are:
3920     *
3921     * @li "delete,request": the user requested to close the window. See
3922     * elm_win_autodel_set().
3923     * @li "focus,in": window got focus
3924     * @li "focus,out": window lost focus
3925     * @li "moved": window that holds the canvas was moved
3926     *
3927     * Examples:
3928     * @li @ref win_example_01
3929     *
3930     * @{
3931     */
3932    /**
3933     * Defines the types of window that can be created
3934     *
3935     * These are hints set on the window so that a running Window Manager knows
3936     * how the window should be handled and/or what kind of decorations it
3937     * should have.
3938     *
3939     * Currently, only the X11 backed engines use them.
3940     */
3941    typedef enum _Elm_Win_Type
3942      {
3943         ELM_WIN_BASIC, /**< A normal window. Indicates a normal, top-level
3944                          window. Almost every window will be created with this
3945                          type. */
3946         ELM_WIN_DIALOG_BASIC, /**< Used for simple dialog windows/ */
3947         ELM_WIN_DESKTOP, /**< For special desktop windows, like a background
3948                            window holding desktop icons. */
3949         ELM_WIN_DOCK, /**< The window is used as a dock or panel. Usually would
3950                         be kept on top of any other window by the Window
3951                         Manager. */
3952         ELM_WIN_TOOLBAR, /**< The window is used to hold a floating toolbar, or
3953                            similar. */
3954         ELM_WIN_MENU, /**< Similar to #ELM_WIN_TOOLBAR. */
3955         ELM_WIN_UTILITY, /**< A persistent utility window, like a toolbox or
3956                            pallete. */
3957         ELM_WIN_SPLASH, /**< Splash window for a starting up application. */
3958         ELM_WIN_DROPDOWN_MENU, /**< The window is a dropdown menu, as when an
3959                                  entry in a menubar is clicked. Typically used
3960                                  with elm_win_override_set(). This hint exists
3961                                  for completion only, as the EFL way of
3962                                  implementing a menu would not normally use a
3963                                  separate window for its contents. */
3964         ELM_WIN_POPUP_MENU, /**< Like #ELM_WIN_DROPDOWN_MENU, but for the menu
3965                               triggered by right-clicking an object. */
3966         ELM_WIN_TOOLTIP, /**< The window is a tooltip. A short piece of
3967                            explanatory text that typically appear after the
3968                            mouse cursor hovers over an object for a while.
3969                            Typically used with elm_win_override_set() and also
3970                            not very commonly used in the EFL. */
3971         ELM_WIN_NOTIFICATION, /**< A notification window, like a warning about
3972                                 battery life or a new E-Mail received. */
3973         ELM_WIN_COMBO, /**< A window holding the contents of a combo box. Not
3974                          usually used in the EFL. */
3975         ELM_WIN_DND, /**< Used to indicate the window is a representation of an
3976                        object being dragged across different windows, or even
3977                        applications. Typically used with
3978                        elm_win_override_set(). */
3979         ELM_WIN_INLINED_IMAGE, /**< The window is rendered onto an image
3980                                  buffer. No actual window is created for this
3981                                  type, instead the window and all of its
3982                                  contents will be rendered to an image buffer.
3983                                  This allows to have children window inside a
3984                                  parent one just like any other object would
3985                                  be, and do other things like applying @c
3986                                  Evas_Map effects to it. This is the only type
3987                                  of window that requires the @c parent
3988                                  parameter of elm_win_add() to be a valid @c
3989                                  Evas_Object. */
3990      } Elm_Win_Type;
3991
3992    /**
3993     * The differents layouts that can be requested for the virtual keyboard.
3994     *
3995     * When the application window is being managed by Illume, it may request
3996     * any of the following layouts for the virtual keyboard.
3997     */
3998    typedef enum _Elm_Win_Keyboard_Mode
3999      {
4000         ELM_WIN_KEYBOARD_UNKNOWN, /**< Unknown keyboard state */
4001         ELM_WIN_KEYBOARD_OFF, /**< Request to deactivate the keyboard */
4002         ELM_WIN_KEYBOARD_ON, /**< Enable keyboard with default layout */
4003         ELM_WIN_KEYBOARD_ALPHA, /**< Alpha (a-z) keyboard layout */
4004         ELM_WIN_KEYBOARD_NUMERIC, /**< Numeric keyboard layout */
4005         ELM_WIN_KEYBOARD_PIN, /**< PIN keyboard layout */
4006         ELM_WIN_KEYBOARD_PHONE_NUMBER, /**< Phone keyboard layout */
4007         ELM_WIN_KEYBOARD_HEX, /**< Hexadecimal numeric keyboard layout */
4008         ELM_WIN_KEYBOARD_TERMINAL, /**< Full (QUERTY) keyboard layout */
4009         ELM_WIN_KEYBOARD_PASSWORD, /**< Password keyboard layout */
4010         ELM_WIN_KEYBOARD_IP, /**< IP keyboard layout */
4011         ELM_WIN_KEYBOARD_HOST, /**< Host keyboard layout */
4012         ELM_WIN_KEYBOARD_FILE, /**< File keyboard layout */
4013         ELM_WIN_KEYBOARD_URL, /**< URL keyboard layout */
4014         ELM_WIN_KEYBOARD_KEYPAD, /**< Keypad layout */
4015         ELM_WIN_KEYBOARD_J2ME /**< J2ME keyboard layout */
4016      } Elm_Win_Keyboard_Mode;
4017
4018    /**
4019     * Available commands that can be sent to the Illume manager.
4020     *
4021     * When running under an Illume session, a window may send commands to the
4022     * Illume manager to perform different actions.
4023     */
4024    typedef enum _Elm_Illume_Command
4025      {
4026         ELM_ILLUME_COMMAND_FOCUS_BACK, /**< Reverts focus to the previous
4027                                          window */
4028         ELM_ILLUME_COMMAND_FOCUS_FORWARD, /**< Sends focus to the next window\
4029                                             in the list */
4030         ELM_ILLUME_COMMAND_FOCUS_HOME, /**< Hides all windows to show the Home
4031                                          screen */
4032         ELM_ILLUME_COMMAND_CLOSE /**< Closes the currently active window */
4033      } Elm_Illume_Command;
4034
4035    /**
4036     * Adds a window object. If this is the first window created, pass NULL as
4037     * @p parent.
4038     *
4039     * @param parent Parent object to add the window to, or NULL
4040     * @param name The name of the window
4041     * @param type The window type, one of #Elm_Win_Type.
4042     *
4043     * The @p parent paramter can be @c NULL for every window @p type except
4044     * #ELM_WIN_INLINED_IMAGE, which needs a parent to retrieve the canvas on
4045     * which the image object will be created.
4046     *
4047     * @return The created object, or NULL on failure
4048     */
4049    EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type);
4050    /**
4051     * Adds a window object with standard setup
4052     *
4053     * @param name The name of the window
4054     * @param title The title for the window
4055     *
4056     * This creates a window like elm_win_add() but also puts in a standard
4057     * background with elm_bg_add(), as well as setting the window title to
4058     * @p title. The window type created is of type ELM_WIN_BASIC, with NULL
4059     * as the parent widget.
4060     *
4061     * @return The created object, or NULL on failure
4062     *
4063     * @see elm_win_add()
4064     */
4065    EAPI Evas_Object *elm_win_util_standard_add(const char *name, const char *title);
4066    /**
4067     * Add @p subobj as a resize object of window @p obj.
4068     *
4069     *
4070     * Setting an object as a resize object of the window means that the
4071     * @p subobj child's size and position will be controlled by the window
4072     * directly. That is, the object will be resized to match the window size
4073     * and should never be moved or resized manually by the developer.
4074     *
4075     * In addition, resize objects of the window control what the minimum size
4076     * of it will be, as well as whether it can or not be resized by the user.
4077     *
4078     * For the end user to be able to resize a window by dragging the handles
4079     * or borders provided by the Window Manager, or using any other similar
4080     * mechanism, all of the resize objects in the window should have their
4081     * evas_object_size_hint_weight_set() set to EVAS_HINT_EXPAND.
4082     *
4083     * Also notice that the window can get resized to the current size of the
4084     * object if the EVAS_HINT_EXPAND is set @b after the call to
4085     * elm_win_resize_object_add(). So if the object should get resized to the
4086     * size of the window, set this hint @b before adding it as a resize object
4087     * (this happens because the size of the window and the object are evaluated
4088     * as soon as the object is added to the window).
4089     *
4090     * @param obj The window object
4091     * @param subobj The resize object to add
4092     */
4093    EAPI void         elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
4094    /**
4095     * Delete @p subobj as a resize object of window @p obj.
4096     *
4097     * This function removes the object @p subobj from the resize objects of
4098     * the window @p obj. It will not delete the object itself, which will be
4099     * left unmanaged and should be deleted by the developer, manually handled
4100     * or set as child of some other container.
4101     *
4102     * @param obj The window object
4103     * @param subobj The resize object to add
4104     */
4105    EAPI void         elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
4106    /**
4107     * Set the title of the window
4108     *
4109     * @param obj The window object
4110     * @param title The title to set
4111     */
4112    EAPI void         elm_win_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
4113    /**
4114     * Get the title of the window
4115     *
4116     * The returned string is an internal one and should not be freed or
4117     * modified. It will also be rendered invalid if a new title is set or if
4118     * the window is destroyed.
4119     *
4120     * @param obj The window object
4121     * @return The title
4122     */
4123    EAPI const char  *elm_win_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4124    /**
4125     * Set the window's autodel state.
4126     *
4127     * When closing the window in any way outside of the program control, like
4128     * pressing the X button in the titlebar or using a command from the
4129     * Window Manager, a "delete,request" signal is emitted to indicate that
4130     * this event occurred and the developer can take any action, which may
4131     * include, or not, destroying the window object.
4132     *
4133     * When the @p autodel parameter is set, the window will be automatically
4134     * destroyed when this event occurs, after the signal is emitted.
4135     * If @p autodel is @c EINA_FALSE, then the window will not be destroyed
4136     * and is up to the program to do so when it's required.
4137     *
4138     * @param obj The window object
4139     * @param autodel If true, the window will automatically delete itself when
4140     * closed
4141     */
4142    EAPI void         elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel) EINA_ARG_NONNULL(1);
4143    /**
4144     * Get the window's autodel state.
4145     *
4146     * @param obj The window object
4147     * @return If the window will automatically delete itself when closed
4148     *
4149     * @see elm_win_autodel_set()
4150     */
4151    EAPI Eina_Bool    elm_win_autodel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4152    /**
4153     * Activate a window object.
4154     *
4155     * This function sends a request to the Window Manager to activate the
4156     * window pointed by @p obj. If honored by the WM, the window will receive
4157     * the keyboard focus.
4158     *
4159     * @note This is just a request that a Window Manager may ignore, so calling
4160     * this function does not ensure in any way that the window will be the
4161     * active one after it.
4162     *
4163     * @param obj The window object
4164     */
4165    EAPI void         elm_win_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
4166    /**
4167     * Lower a window object.
4168     *
4169     * Places the window pointed by @p obj at the bottom of the stack, so that
4170     * no other window is covered by it.
4171     *
4172     * If elm_win_override_set() is not set, the Window Manager may ignore this
4173     * request.
4174     *
4175     * @param obj The window object
4176     */
4177    EAPI void         elm_win_lower(Evas_Object *obj) EINA_ARG_NONNULL(1);
4178    /**
4179     * Raise a window object.
4180     *
4181     * Places the window pointed by @p obj at the top of the stack, so that it's
4182     * not covered by any other window.
4183     *
4184     * If elm_win_override_set() is not set, the Window Manager may ignore this
4185     * request.
4186     *
4187     * @param obj The window object
4188     */
4189    EAPI void         elm_win_raise(Evas_Object *obj) EINA_ARG_NONNULL(1);
4190    /**
4191     * Set the borderless state of a window.
4192     *
4193     * This function requests the Window Manager to not draw any decoration
4194     * around the window.
4195     *
4196     * @param obj The window object
4197     * @param borderless If true, the window is borderless
4198     */
4199    EAPI void         elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless) EINA_ARG_NONNULL(1);
4200    /**
4201     * Get the borderless state of a window.
4202     *
4203     * @param obj The window object
4204     * @return If true, the window is borderless
4205     */
4206    EAPI Eina_Bool    elm_win_borderless_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4207    /**
4208     * Set the shaped state of a window.
4209     *
4210     * Shaped windows, when supported, will render the parts of the window that
4211     * has no content, transparent.
4212     *
4213     * If @p shaped is EINA_FALSE, then it is strongly adviced to have some
4214     * background object or cover the entire window in any other way, or the
4215     * parts of the canvas that have no data will show framebuffer artifacts.
4216     *
4217     * @param obj The window object
4218     * @param shaped If true, the window is shaped
4219     *
4220     * @see elm_win_alpha_set()
4221     */
4222    EAPI void         elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped) EINA_ARG_NONNULL(1);
4223    /**
4224     * Get the shaped state of a window.
4225     *
4226     * @param obj The window object
4227     * @return If true, the window is shaped
4228     *
4229     * @see elm_win_shaped_set()
4230     */
4231    EAPI Eina_Bool    elm_win_shaped_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4232    /**
4233     * Set the alpha channel state of a window.
4234     *
4235     * If @p alpha is EINA_TRUE, the alpha channel of the canvas will be enabled
4236     * possibly making parts of the window completely or partially transparent.
4237     * This is also subject to the underlying system supporting it, like for
4238     * example, running under a compositing manager. If no compositing is
4239     * available, enabling this option will instead fallback to using shaped
4240     * windows, with elm_win_shaped_set().
4241     *
4242     * @param obj The window object
4243     * @param alpha If true, the window has an alpha channel
4244     *
4245     * @see elm_win_alpha_set()
4246     */
4247    EAPI void         elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
4248    /**
4249     * Get the transparency state of a window.
4250     *
4251     * @param obj The window object
4252     * @return If true, the window is transparent
4253     *
4254     * @see elm_win_transparent_set()
4255     */
4256    EAPI Eina_Bool    elm_win_transparent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4257    /**
4258     * Set the transparency state of a window.
4259     *
4260     * Use elm_win_alpha_set() instead.
4261     *
4262     * @param obj The window object
4263     * @param transparent If true, the window is transparent
4264     *
4265     * @see elm_win_alpha_set()
4266     */
4267    EAPI void         elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent) EINA_ARG_NONNULL(1);
4268    /**
4269     * Get the alpha channel state of a window.
4270     *
4271     * @param obj The window object
4272     * @return If true, the window has an alpha channel
4273     */
4274    EAPI Eina_Bool    elm_win_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4275    /**
4276     * Set the override state of a window.
4277     *
4278     * A window with @p override set to EINA_TRUE will not be managed by the
4279     * Window Manager. This means that no decorations of any kind will be shown
4280     * for it, moving and resizing must be handled by the application, as well
4281     * as the window visibility.
4282     *
4283     * This should not be used for normal windows, and even for not so normal
4284     * ones, it should only be used when there's a good reason and with a lot
4285     * of care. Mishandling override windows may result situations that
4286     * disrupt the normal workflow of the end user.
4287     *
4288     * @param obj The window object
4289     * @param override If true, the window is overridden
4290     */
4291    EAPI void         elm_win_override_set(Evas_Object *obj, Eina_Bool override) EINA_ARG_NONNULL(1);
4292    /**
4293     * Get the override state of a window.
4294     *
4295     * @param obj The window object
4296     * @return If true, the window is overridden
4297     *
4298     * @see elm_win_override_set()
4299     */
4300    EAPI Eina_Bool    elm_win_override_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4301    /**
4302     * Set the fullscreen state of a window.
4303     *
4304     * @param obj The window object
4305     * @param fullscreen If true, the window is fullscreen
4306     */
4307    EAPI void         elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen) EINA_ARG_NONNULL(1);
4308    /**
4309     * Get the fullscreen state of a window.
4310     *
4311     * @param obj The window object
4312     * @return If true, the window is fullscreen
4313     */
4314    EAPI Eina_Bool    elm_win_fullscreen_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4315    /**
4316     * Set the maximized state of a window.
4317     *
4318     * @param obj The window object
4319     * @param maximized If true, the window is maximized
4320     */
4321    EAPI void         elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized) EINA_ARG_NONNULL(1);
4322    /**
4323     * Get the maximized state of a window.
4324     *
4325     * @param obj The window object
4326     * @return If true, the window is maximized
4327     */
4328    EAPI Eina_Bool    elm_win_maximized_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4329    /**
4330     * Set the iconified state of a window.
4331     *
4332     * @param obj The window object
4333     * @param iconified If true, the window is iconified
4334     */
4335    EAPI void         elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified) EINA_ARG_NONNULL(1);
4336    /**
4337     * Get the iconified state of a window.
4338     *
4339     * @param obj The window object
4340     * @return If true, the window is iconified
4341     */
4342    EAPI Eina_Bool    elm_win_iconified_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4343    /**
4344     * Set the layer of the window.
4345     *
4346     * What this means exactly will depend on the underlying engine used.
4347     *
4348     * In the case of X11 backed engines, the value in @p layer has the
4349     * following meanings:
4350     * @li < 3: The window will be placed below all others.
4351     * @li > 5: The window will be placed above all others.
4352     * @li other: The window will be placed in the default layer.
4353     *
4354     * @param obj The window object
4355     * @param layer The layer of the window
4356     */
4357    EAPI void         elm_win_layer_set(Evas_Object *obj, int layer) EINA_ARG_NONNULL(1);
4358    /**
4359     * Get the layer of the window.
4360     *
4361     * @param obj The window object
4362     * @return The layer of the window
4363     *
4364     * @see elm_win_layer_set()
4365     */
4366    EAPI int          elm_win_layer_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4367    /**
4368     * Set the rotation of the window.
4369     *
4370     * Most engines only work with multiples of 90.
4371     *
4372     * This function is used to set the orientation of the window @p obj to
4373     * match that of the screen. The window itself will be resized to adjust
4374     * to the new geometry of its contents. If you want to keep the window size,
4375     * see elm_win_rotation_with_resize_set().
4376     *
4377     * @param obj The window object
4378     * @param rotation The rotation of the window, in degrees (0-360),
4379     * counter-clockwise.
4380     */
4381    EAPI void         elm_win_rotation_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
4382    /**
4383     * Rotates the window and resizes it.
4384     *
4385     * Like elm_win_rotation_set(), but it also resizes the window's contents so
4386     * that they fit inside the current window geometry.
4387     *
4388     * @param obj The window object
4389     * @param layer The rotation of the window in degrees (0-360),
4390     * counter-clockwise.
4391     */
4392    EAPI void         elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
4393    /**
4394     * Get the rotation of the window.
4395     *
4396     * @param obj The window object
4397     * @return The rotation of the window in degrees (0-360)
4398     *
4399     * @see elm_win_rotation_set()
4400     * @see elm_win_rotation_with_resize_set()
4401     */
4402    EAPI int          elm_win_rotation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4403    /**
4404     * Set the sticky state of the window.
4405     *
4406     * Hints the Window Manager that the window in @p obj should be left fixed
4407     * at its position even when the virtual desktop it's on moves or changes.
4408     *
4409     * @param obj The window object
4410     * @param sticky If true, the window's sticky state is enabled
4411     */
4412    EAPI void         elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky) EINA_ARG_NONNULL(1);
4413    /**
4414     * Get the sticky state of the window.
4415     *
4416     * @param obj The window object
4417     * @return If true, the window's sticky state is enabled
4418     *
4419     * @see elm_win_sticky_set()
4420     */
4421    EAPI Eina_Bool    elm_win_sticky_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4422    /**
4423     * Set if this window is an illume conformant window
4424     *
4425     * @param obj The window object
4426     * @param conformant The conformant flag (1 = conformant, 0 = non-conformant)
4427     */
4428    EAPI void         elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant) EINA_ARG_NONNULL(1);
4429    /**
4430     * Get if this window is an illume conformant window
4431     *
4432     * @param obj The window object
4433     * @return A boolean if this window is illume conformant or not
4434     */
4435    EAPI Eina_Bool    elm_win_conformant_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4436    /**
4437     * Set a window to be an illume quickpanel window
4438     *
4439     * By default window objects are not quickpanel windows.
4440     *
4441     * @param obj The window object
4442     * @param quickpanel The quickpanel flag (1 = quickpanel, 0 = normal window)
4443     */
4444    EAPI void         elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel) EINA_ARG_NONNULL(1);
4445    /**
4446     * Get if this window is a quickpanel or not
4447     *
4448     * @param obj The window object
4449     * @return A boolean if this window is a quickpanel or not
4450     */
4451    EAPI Eina_Bool    elm_win_quickpanel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4452    /**
4453     * Set the major priority of a quickpanel window
4454     *
4455     * @param obj The window object
4456     * @param priority The major priority for this quickpanel
4457     */
4458    EAPI void         elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4459    /**
4460     * Get the major priority of a quickpanel window
4461     *
4462     * @param obj The window object
4463     * @return The major priority of this quickpanel
4464     */
4465    EAPI int          elm_win_quickpanel_priority_major_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4466    /**
4467     * Set the minor priority of a quickpanel window
4468     *
4469     * @param obj The window object
4470     * @param priority The minor priority for this quickpanel
4471     */
4472    EAPI void         elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4473    /**
4474     * Get the minor priority of a quickpanel window
4475     *
4476     * @param obj The window object
4477     * @return The minor priority of this quickpanel
4478     */
4479    EAPI int          elm_win_quickpanel_priority_minor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4480    /**
4481     * Set which zone this quickpanel should appear in
4482     *
4483     * @param obj The window object
4484     * @param zone The requested zone for this quickpanel
4485     */
4486    EAPI void         elm_win_quickpanel_zone_set(Evas_Object *obj, int zone) EINA_ARG_NONNULL(1);
4487    /**
4488     * Get which zone this quickpanel should appear in
4489     *
4490     * @param obj The window object
4491     * @return The requested zone for this quickpanel
4492     */
4493    EAPI int          elm_win_quickpanel_zone_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4494    /**
4495     * Set the window to be skipped by keyboard focus
4496     *
4497     * This sets the window to be skipped by normal keyboard input. This means
4498     * a window manager will be asked to not focus this window as well as omit
4499     * it from things like the taskbar, pager, "alt-tab" list etc. etc.
4500     *
4501     * Call this and enable it on a window BEFORE you show it for the first time,
4502     * otherwise it may have no effect.
4503     *
4504     * Use this for windows that have only output information or might only be
4505     * interacted with by the mouse or fingers, and never for typing input.
4506     * Be careful that this may have side-effects like making the window
4507     * non-accessible in some cases unless the window is specially handled. Use
4508     * this with care.
4509     *
4510     * @param obj The window object
4511     * @param skip The skip flag state (EINA_TRUE if it is to be skipped)
4512     */
4513    EAPI void         elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip) EINA_ARG_NONNULL(1);
4514    /**
4515     * Send a command to the windowing environment
4516     *
4517     * This is intended to work in touchscreen or small screen device
4518     * environments where there is a more simplistic window management policy in
4519     * place. This uses the window object indicated to select which part of the
4520     * environment to control (the part that this window lives in), and provides
4521     * a command and an optional parameter structure (use NULL for this if not
4522     * needed).
4523     *
4524     * @param obj The window object that lives in the environment to control
4525     * @param command The command to send
4526     * @param params Optional parameters for the command
4527     */
4528    EAPI void         elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params) EINA_ARG_NONNULL(1);
4529    /**
4530     * Get the inlined image object handle
4531     *
4532     * When you create a window with elm_win_add() of type ELM_WIN_INLINED_IMAGE,
4533     * then the window is in fact an evas image object inlined in the parent
4534     * canvas. You can get this object (be careful to not manipulate it as it
4535     * is under control of elementary), and use it to do things like get pixel
4536     * data, save the image to a file, etc.
4537     *
4538     * @param obj The window object to get the inlined image from
4539     * @return The inlined image object, or NULL if none exists
4540     */
4541    EAPI Evas_Object *elm_win_inlined_image_object_get(Evas_Object *obj);
4542    /**
4543     * Determine whether a window has focus
4544     * @param obj The window to query
4545     * @return EINA_TRUE if the window exists and has focus, else EINA_FALSE
4546     */
4547    EAPI Eina_Bool    elm_win_focus_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4548    /**
4549     * Get screen geometry details for the screen that a window is on
4550     * @param obj The window to query
4551     * @param x where to return the horizontal offset value. May be NULL.
4552     * @param y  where to return the vertical offset value. May be NULL.
4553     * @param w  where to return the width value. May be NULL.
4554     * @param h  where to return the height value. May be NULL.
4555     */
4556    EAPI void         elm_win_screen_size_get(const Evas_Object *obj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
4557    /**
4558     * Set the enabled status for the focus highlight in a window
4559     *
4560     * This function will enable or disable the focus highlight only for the
4561     * given window, regardless of the global setting for it
4562     *
4563     * @param obj The window where to enable the highlight
4564     * @param enabled The enabled value for the highlight
4565     */
4566    EAPI void         elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
4567    /**
4568     * Get the enabled value of the focus highlight for this window
4569     *
4570     * @param obj The window in which to check if the focus highlight is enabled
4571     *
4572     * @return EINA_TRUE if enabled, EINA_FALSE otherwise
4573     */
4574    EAPI Eina_Bool    elm_win_focus_highlight_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4575    /**
4576     * Set the style for the focus highlight on this window
4577     *
4578     * Sets the style to use for theming the highlight of focused objects on
4579     * the given window. If @p style is NULL, the default will be used.
4580     *
4581     * @param obj The window where to set the style
4582     * @param style The style to set
4583     */
4584    EAPI void         elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
4585    /**
4586     * Get the style set for the focus highlight object
4587     *
4588     * Gets the style set for this windows highilght object, or NULL if none
4589     * is set.
4590     *
4591     * @param obj The window to retrieve the highlights style from
4592     *
4593     * @return The style set or NULL if none was. Default is used in that case.
4594     */
4595    EAPI const char  *elm_win_focus_highlight_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4596    /*...
4597     * ecore_x_icccm_hints_set -> accepts_focus (add to ecore_evas)
4598     * ecore_x_icccm_hints_set -> window_group (add to ecore_evas)
4599     * ecore_x_icccm_size_pos_hints_set -> request_pos (add to ecore_evas)
4600     * ecore_x_icccm_client_leader_set -> l (add to ecore_evas)
4601     * ecore_x_icccm_window_role_set -> role (add to ecore_evas)
4602     * ecore_x_icccm_transient_for_set -> forwin (add to ecore_evas)
4603     * ecore_x_netwm_window_type_set -> type (add to ecore_evas)
4604     *
4605     * (add to ecore_x) set netwm argb icon! (add to ecore_evas)
4606     * (blank mouse, private mouse obj, defaultmouse)
4607     *
4608     */
4609    /**
4610     * Sets the keyboard mode of the window.
4611     *
4612     * @param obj The window object
4613     * @param mode The mode to set, one of #Elm_Win_Keyboard_Mode
4614     */
4615    EAPI void                  elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode) EINA_ARG_NONNULL(1);
4616    /**
4617     * Gets the keyboard mode of the window.
4618     *
4619     * @param obj The window object
4620     * @return The mode, one of #Elm_Win_Keyboard_Mode
4621     */
4622    EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4623    /**
4624     * Sets whether the window is a keyboard.
4625     *
4626     * @param obj The window object
4627     * @param is_keyboard If true, the window is a virtual keyboard
4628     */
4629    EAPI void                  elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard) EINA_ARG_NONNULL(1);
4630    /**
4631     * Gets whether the window is a keyboard.
4632     *
4633     * @param obj The window object
4634     * @return If the window is a virtual keyboard
4635     */
4636    EAPI Eina_Bool             elm_win_keyboard_win_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4637
4638    /**
4639     * Get the screen position of a window.
4640     *
4641     * @param obj The window object
4642     * @param x The int to store the x coordinate to
4643     * @param y The int to store the y coordinate to
4644     */
4645    EAPI void                  elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y) EINA_ARG_NONNULL(1);
4646    /**
4647     * @}
4648     */
4649
4650    /**
4651     * @defgroup Inwin Inwin
4652     *
4653     * @image html img/widget/inwin/preview-00.png
4654     * @image latex img/widget/inwin/preview-00.eps
4655     * @image html img/widget/inwin/preview-01.png
4656     * @image latex img/widget/inwin/preview-01.eps
4657     * @image html img/widget/inwin/preview-02.png
4658     * @image latex img/widget/inwin/preview-02.eps
4659     *
4660     * An inwin is a window inside a window that is useful for a quick popup.
4661     * It does not hover.
4662     *
4663     * It works by creating an object that will occupy the entire window, so it
4664     * must be created using an @ref Win "elm_win" as parent only. The inwin
4665     * object can be hidden or restacked below every other object if it's
4666     * needed to show what's behind it without destroying it. If this is done,
4667     * the elm_win_inwin_activate() function can be used to bring it back to
4668     * full visibility again.
4669     *
4670     * There are three styles available in the default theme. These are:
4671     * @li default: The inwin is sized to take over most of the window it's
4672     * placed in.
4673     * @li minimal: The size of the inwin will be the minimum necessary to show
4674     * its contents.
4675     * @li minimal_vertical: Horizontally, the inwin takes as much space as
4676     * possible, but it's sized vertically the most it needs to fit its\
4677     * contents.
4678     *
4679     * Some examples of Inwin can be found in the following:
4680     * @li @ref inwin_example_01
4681     *
4682     * @{
4683     */
4684    /**
4685     * Adds an inwin to the current window
4686     *
4687     * The @p obj used as parent @b MUST be an @ref Win "Elementary Window".
4688     * Never call this function with anything other than the top-most window
4689     * as its parameter, unless you are fond of undefined behavior.
4690     *
4691     * After creating the object, the widget will set itself as resize object
4692     * for the window with elm_win_resize_object_add(), so when shown it will
4693     * appear to cover almost the entire window (how much of it depends on its
4694     * content and the style used). It must not be added into other container
4695     * objects and it needs not be moved or resized manually.
4696     *
4697     * @param parent The parent object
4698     * @return The new object or NULL if it cannot be created
4699     */
4700    EAPI Evas_Object          *elm_win_inwin_add(Evas_Object *obj) EINA_ARG_NONNULL(1);
4701    /**
4702     * Activates an inwin object, ensuring its visibility
4703     *
4704     * This function will make sure that the inwin @p obj is completely visible
4705     * by calling evas_object_show() and evas_object_raise() on it, to bring it
4706     * to the front. It also sets the keyboard focus to it, which will be passed
4707     * onto its content.
4708     *
4709     * The object's theme will also receive the signal "elm,action,show" with
4710     * source "elm".
4711     *
4712     * @param obj The inwin to activate
4713     */
4714    EAPI void                  elm_win_inwin_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
4715    /**
4716     * Set the content of an inwin object.
4717     *
4718     * Once the content object is set, a previously set one will be deleted.
4719     * If you want to keep that old content object, use the
4720     * elm_win_inwin_content_unset() function.
4721     *
4722     * @param obj The inwin object
4723     * @param content The object to set as content
4724     */
4725    EAPI void                  elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
4726    /**
4727     * Get the content of an inwin object.
4728     *
4729     * Return the content object which is set for this widget.
4730     *
4731     * The returned object is valid as long as the inwin is still alive and no
4732     * other content is set on it. Deleting the object will notify the inwin
4733     * about it and this one will be left empty.
4734     *
4735     * If you need to remove an inwin's content to be reused somewhere else,
4736     * see elm_win_inwin_content_unset().
4737     *
4738     * @param obj The inwin object
4739     * @return The content that is being used
4740     */
4741    EAPI Evas_Object          *elm_win_inwin_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4742    /**
4743     * Unset the content of an inwin object.
4744     *
4745     * Unparent and return the content object which was set for this widget.
4746     *
4747     * @param obj The inwin object
4748     * @return The content that was being used
4749     */
4750    EAPI Evas_Object          *elm_win_inwin_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4751    /**
4752     * @}
4753     */
4754    /* X specific calls - won't work on non-x engines (return 0) */
4755
4756    /**
4757     * Get the Ecore_X_Window of an Evas_Object
4758     *
4759     * @param obj The object
4760     *
4761     * @return The Ecore_X_Window of @p obj
4762     *
4763     * @ingroup Win
4764     */
4765    EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4766
4767    /* smart callbacks called:
4768     * "delete,request" - the user requested to delete the window
4769     * "focus,in" - window got focus
4770     * "focus,out" - window lost focus
4771     * "moved" - window that holds the canvas was moved
4772     */
4773
4774    /**
4775     * @defgroup Bg Bg
4776     *
4777     * @image html img/widget/bg/preview-00.png
4778     * @image latex img/widget/bg/preview-00.eps
4779     *
4780     * @brief Background object, used for setting a solid color, image or Edje
4781     * group as background to a window or any container object.
4782     *
4783     * The bg object is used for setting a solid background to a window or
4784     * packing into any container object. It works just like an image, but has
4785     * some properties useful to a background, like setting it to tiled,
4786     * centered, scaled or stretched.
4787     *
4788     * Default contents parts of the bg widget that you can use for are:
4789     * @li "overlay" - overlay of the bg
4790     *
4791     * Here is some sample code using it:
4792     * @li @ref bg_01_example_page
4793     * @li @ref bg_02_example_page
4794     * @li @ref bg_03_example_page
4795     */
4796
4797    /* bg */
4798    typedef enum _Elm_Bg_Option
4799      {
4800         ELM_BG_OPTION_CENTER,  /**< center the background */
4801         ELM_BG_OPTION_SCALE,   /**< scale the background retaining aspect ratio */
4802         ELM_BG_OPTION_STRETCH, /**< stretch the background to fill */
4803         ELM_BG_OPTION_TILE     /**< tile background at its original size */
4804      } Elm_Bg_Option;
4805
4806    /**
4807     * Add a new background to the parent
4808     *
4809     * @param parent The parent object
4810     * @return The new object or NULL if it cannot be created
4811     *
4812     * @ingroup Bg
4813     */
4814    EAPI Evas_Object  *elm_bg_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4815
4816    /**
4817     * Set the file (image or edje) used for the background
4818     *
4819     * @param obj The bg object
4820     * @param file The file path
4821     * @param group Optional key (group in Edje) within the file
4822     *
4823     * This sets the image file used in the background object. The image (or edje)
4824     * will be stretched (retaining aspect if its an image file) to completely fill
4825     * the bg object. This may mean some parts are not visible.
4826     *
4827     * @note  Once the image of @p obj is set, a previously set one will be deleted,
4828     * even if @p file is NULL.
4829     *
4830     * @ingroup Bg
4831     */
4832    EAPI void          elm_bg_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
4833
4834    /**
4835     * Get the file (image or edje) used for the background
4836     *
4837     * @param obj The bg object
4838     * @param file The file path
4839     * @param group Optional key (group in Edje) within the file
4840     *
4841     * @ingroup Bg
4842     */
4843    EAPI void          elm_bg_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4844
4845    /**
4846     * Set the option used for the background image
4847     *
4848     * @param obj The bg object
4849     * @param option The desired background option (TILE, SCALE)
4850     *
4851     * This sets the option used for manipulating the display of the background
4852     * image. The image can be tiled or scaled.
4853     *
4854     * @ingroup Bg
4855     */
4856    EAPI void          elm_bg_option_set(Evas_Object *obj, Elm_Bg_Option option) EINA_ARG_NONNULL(1);
4857
4858    /**
4859     * Get the option used for the background image
4860     *
4861     * @param obj The bg object
4862     * @return The desired background option (CENTER, SCALE, STRETCH or TILE)
4863     *
4864     * @ingroup Bg
4865     */
4866    EAPI Elm_Bg_Option elm_bg_option_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4867    /**
4868     * Set the option used for the background color
4869     *
4870     * @param obj The bg object
4871     * @param r
4872     * @param g
4873     * @param b
4874     *
4875     * This sets the color used for the background rectangle. Its range goes
4876     * from 0 to 255.
4877     *
4878     * @ingroup Bg
4879     */
4880    EAPI void          elm_bg_color_set(Evas_Object *obj, int r, int g, int b) EINA_ARG_NONNULL(1);
4881    /**
4882     * Get the option used for the background color
4883     *
4884     * @param obj The bg object
4885     * @param r
4886     * @param g
4887     * @param b
4888     *
4889     * @ingroup Bg
4890     */
4891    EAPI void          elm_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b) EINA_ARG_NONNULL(1);
4892
4893    /**
4894     * Set the overlay object used for the background object.
4895     *
4896     * @param obj The bg object
4897     * @param overlay The overlay object
4898     *
4899     * This provides a way for elm_bg to have an 'overlay' that will be on top
4900     * of the bg. Once the over object is set, a previously set one will be
4901     * deleted, even if you set the new one to NULL. If you want to keep that
4902     * old content object, use the elm_bg_overlay_unset() function.
4903     *
4904     * @deprecated use elm_object_part_content_set() instead
4905     *
4906     * @ingroup Bg
4907     */
4908
4909    EINA_DEPRECATED EAPI void          elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay) EINA_ARG_NONNULL(1);
4910
4911    /**
4912     * Get the overlay object used for the background object.
4913     *
4914     * @param obj The bg object
4915     * @return The content that is being used
4916     *
4917     * Return the content object which is set for this widget
4918     *
4919     * @deprecated use elm_object_part_content_get() instead
4920     *
4921     * @ingroup Bg
4922     */
4923    EINA_DEPRECATED EAPI Evas_Object  *elm_bg_overlay_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4924
4925    /**
4926     * Get the overlay object used for the background object.
4927     *
4928     * @param obj The bg object
4929     * @return The content that was being used
4930     *
4931     * Unparent and return the overlay object which was set for this widget
4932     *
4933     * @deprecated use elm_object_part_content_unset() instead
4934     *
4935     * @ingroup Bg
4936     */
4937    EINA_DEPRECATED EAPI Evas_Object  *elm_bg_overlay_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4938
4939    /**
4940     * Set the size of the pixmap representation of the image.
4941     *
4942     * This option just makes sense if an image is going to be set in the bg.
4943     *
4944     * @param obj The bg object
4945     * @param w The new width of the image pixmap representation.
4946     * @param h The new height of the image pixmap representation.
4947     *
4948     * This function sets a new size for pixmap representation of the given bg
4949     * image. It allows the image to be loaded already in the specified size,
4950     * reducing the memory usage and load time when loading a big image with load
4951     * size set to a smaller size.
4952     *
4953     * NOTE: this is just a hint, the real size of the pixmap may differ
4954     * depending on the type of image being loaded, being bigger than requested.
4955     *
4956     * @ingroup Bg
4957     */
4958    EAPI void          elm_bg_load_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
4959    /* smart callbacks called:
4960     */
4961
4962    /**
4963     * @defgroup Icon Icon
4964     *
4965     * @image html img/widget/icon/preview-00.png
4966     * @image latex img/widget/icon/preview-00.eps
4967     *
4968     * An object that provides standard icon images (delete, edit, arrows, etc.)
4969     * or a custom file (PNG, JPG, EDJE, etc.) used for an icon.
4970     *
4971     * The icon image requested can be in the elementary theme, or in the
4972     * freedesktop.org paths. It's possible to set the order of preference from
4973     * where the image will be used.
4974     *
4975     * This API is very similar to @ref Image, but with ready to use images.
4976     *
4977     * Default images provided by the theme are described below.
4978     *
4979     * The first list contains icons that were first intended to be used in
4980     * toolbars, but can be used in many other places too:
4981     * @li home
4982     * @li close
4983     * @li apps
4984     * @li arrow_up
4985     * @li arrow_down
4986     * @li arrow_left
4987     * @li arrow_right
4988     * @li chat
4989     * @li clock
4990     * @li delete
4991     * @li edit
4992     * @li refresh
4993     * @li folder
4994     * @li file
4995     *
4996     * Now some icons that were designed to be used in menus (but again, you can
4997     * use them anywhere else):
4998     * @li menu/home
4999     * @li menu/close
5000     * @li menu/apps
5001     * @li menu/arrow_up
5002     * @li menu/arrow_down
5003     * @li menu/arrow_left
5004     * @li menu/arrow_right
5005     * @li menu/chat
5006     * @li menu/clock
5007     * @li menu/delete
5008     * @li menu/edit
5009     * @li menu/refresh
5010     * @li menu/folder
5011     * @li menu/file
5012     *
5013     * And here we have some media player specific icons:
5014     * @li media_player/forward
5015     * @li media_player/info
5016     * @li media_player/next
5017     * @li media_player/pause
5018     * @li media_player/play
5019     * @li media_player/prev
5020     * @li media_player/rewind
5021     * @li media_player/stop
5022     *
5023     * Signals that you can add callbacks for are:
5024     *
5025     * "clicked" - This is called when a user has clicked the icon
5026     *
5027     * An example of usage for this API follows:
5028     * @li @ref tutorial_icon
5029     */
5030
5031    /**
5032     * @addtogroup Icon
5033     * @{
5034     */
5035
5036    typedef enum _Elm_Icon_Type
5037      {
5038         ELM_ICON_NONE,
5039         ELM_ICON_FILE,
5040         ELM_ICON_STANDARD
5041      } Elm_Icon_Type;
5042    /**
5043     * @enum _Elm_Icon_Lookup_Order
5044     * @typedef Elm_Icon_Lookup_Order
5045     *
5046     * Lookup order used by elm_icon_standard_set(). Should look for icons in the
5047     * theme, FDO paths, or both?
5048     *
5049     * @ingroup Icon
5050     */
5051    typedef enum _Elm_Icon_Lookup_Order
5052      {
5053         ELM_ICON_LOOKUP_FDO_THEME, /**< icon look up order: freedesktop, theme */
5054         ELM_ICON_LOOKUP_THEME_FDO, /**< icon look up order: theme, freedesktop */
5055         ELM_ICON_LOOKUP_FDO,       /**< icon look up order: freedesktop */
5056         ELM_ICON_LOOKUP_THEME      /**< icon look up order: theme */
5057      } Elm_Icon_Lookup_Order;
5058
5059    /**
5060     * Add a new icon object to the parent.
5061     *
5062     * @param parent The parent object
5063     * @return The new object or NULL if it cannot be created
5064     *
5065     * @see elm_icon_file_set()
5066     *
5067     * @ingroup Icon
5068     */
5069    EAPI Evas_Object          *elm_icon_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5070    /**
5071     * Set the file that will be used as icon.
5072     *
5073     * @param obj The icon object
5074     * @param file The path to file that will be used as icon image
5075     * @param group The group that the icon belongs to an edje file
5076     *
5077     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5078     *
5079     * @note The icon image set by this function can be changed by
5080     * elm_icon_standard_set().
5081     *
5082     * @see elm_icon_file_get()
5083     *
5084     * @ingroup Icon
5085     */
5086    EAPI Eina_Bool             elm_icon_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5087    /**
5088     * Set a location in memory to be used as an icon
5089     *
5090     * @param obj The icon object
5091     * @param img The binary data that will be used as an image
5092     * @param size The size of binary data @p img
5093     * @param format Optional format of @p img to pass to the image loader
5094     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
5095     *
5096     * The @p format string should be something like "png", "jpg", "tga",
5097     * "tiff", "bmp" etc. if it is provided (NULL if not). This improves
5098     * the loader performance as it tries the "correct" loader first before
5099     * trying a range of other possible loaders until one succeeds.
5100     * 
5101     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5102     *
5103     * @note The icon image set by this function can be changed by
5104     * elm_icon_standard_set().
5105     *
5106     * @ingroup Icon
5107     */
5108    EAPI Eina_Bool             elm_icon_memfile_set(Evas_Object *obj, const void *img, size_t size, const char *format, const char *key) EINA_ARG_NONNULL(1, 2);
5109    /**
5110     * Get the file that will be used as icon.
5111     *
5112     * @param obj The icon object
5113     * @param file The path to file that will be used as the icon image
5114     * @param group The group that the icon belongs to, in edje file
5115     *
5116     * @see elm_icon_file_set()
5117     *
5118     * @ingroup Icon
5119     */
5120    EAPI void                  elm_icon_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
5121    /**
5122     * Set the file that will be used, but use a generated thumbnail.
5123     *
5124     * @param obj The icon object
5125     * @param file The path to file that will be used as icon image
5126     * @param group The group that the icon belongs to an edje file
5127     *
5128     * This functions like elm_icon_file_set() but requires the Ethumb library
5129     * support to be enabled successfully with elm_need_ethumb(). When set
5130     * the file indicated has a thumbnail generated and cached on disk for
5131     * future use or will directly use an existing cached thumbnail if it
5132     * is valid.
5133     * 
5134     * @see elm_icon_file_set()
5135     *
5136     * @ingroup Icon
5137     */
5138    EAPI void                  elm_icon_thumb_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5139    /**
5140     * Set the icon by icon standards names.
5141     *
5142     * @param obj The icon object
5143     * @param name The icon name
5144     *
5145     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5146     *
5147     * For example, freedesktop.org defines standard icon names such as "home",
5148     * "network", etc. There can be different icon sets to match those icon
5149     * keys. The @p name given as parameter is one of these "keys", and will be
5150     * used to look in the freedesktop.org paths and elementary theme. One can
5151     * change the lookup order with elm_icon_order_lookup_set().
5152     *
5153     * If name is not found in any of the expected locations and it is the
5154     * absolute path of an image file, this image will be used.
5155     *
5156     * @note The icon image set by this function can be changed by
5157     * elm_icon_file_set().
5158     *
5159     * @see elm_icon_standard_get()
5160     * @see elm_icon_file_set()
5161     *
5162     * @ingroup Icon
5163     */
5164    EAPI Eina_Bool             elm_icon_standard_set(Evas_Object *obj, const char *name) EINA_ARG_NONNULL(1);
5165    /**
5166     * Get the icon name set by icon standard names.
5167     *
5168     * @param obj The icon object
5169     * @return The icon name
5170     *
5171     * If the icon image was set using elm_icon_file_set() instead of
5172     * elm_icon_standard_set(), then this function will return @c NULL.
5173     *
5174     * @see elm_icon_standard_set()
5175     *
5176     * @ingroup Icon
5177     */
5178    EAPI const char           *elm_icon_standard_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5179    /**
5180     * Set the smooth scaling for an icon object.
5181     *
5182     * @param obj The icon object
5183     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
5184     * otherwise. Default is @c EINA_TRUE.
5185     *
5186     * Set the scaling algorithm to be used when scaling the icon image. Smooth
5187     * scaling provides a better resulting image, but is slower.
5188     *
5189     * The smooth scaling should be disabled when making animations that change
5190     * the icon size, since they will be faster. Animations that don't require
5191     * resizing of the icon can keep the smooth scaling enabled (even if the icon
5192     * is already scaled, since the scaled icon image will be cached).
5193     *
5194     * @see elm_icon_smooth_get()
5195     *
5196     * @ingroup Icon
5197     */
5198    EAPI void                  elm_icon_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
5199    /**
5200     * Get whether smooth scaling is enabled for an icon object.
5201     *
5202     * @param obj The icon object
5203     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
5204     *
5205     * @see elm_icon_smooth_set()
5206     *
5207     * @ingroup Icon
5208     */
5209    EAPI Eina_Bool             elm_icon_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5210    /**
5211     * Disable scaling of this object.
5212     *
5213     * @param obj The icon object.
5214     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
5215     * otherwise. Default is @c EINA_FALSE.
5216     *
5217     * This function disables scaling of the icon object through the function
5218     * elm_object_scale_set(). However, this does not affect the object
5219     * size/resize in any way. For that effect, take a look at
5220     * elm_icon_scale_set().
5221     *
5222     * @see elm_icon_no_scale_get()
5223     * @see elm_icon_scale_set()
5224     * @see elm_object_scale_set()
5225     *
5226     * @ingroup Icon
5227     */
5228    EAPI void                  elm_icon_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
5229    /**
5230     * Get whether scaling is disabled on the object.
5231     *
5232     * @param obj The icon object
5233     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
5234     *
5235     * @see elm_icon_no_scale_set()
5236     *
5237     * @ingroup Icon
5238     */
5239    EAPI Eina_Bool             elm_icon_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5240    /**
5241     * Set if the object is (up/down) resizable.
5242     *
5243     * @param obj The icon object
5244     * @param scale_up A bool to set if the object is resizable up. Default is
5245     * @c EINA_TRUE.
5246     * @param scale_down A bool to set if the object is resizable down. Default
5247     * is @c EINA_TRUE.
5248     *
5249     * This function limits the icon object resize ability. If @p scale_up is set to
5250     * @c EINA_FALSE, the object can't have its height or width resized to a value
5251     * higher than the original icon size. Same is valid for @p scale_down.
5252     *
5253     * @see elm_icon_scale_get()
5254     *
5255     * @ingroup Icon
5256     */
5257    EAPI void                  elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
5258    /**
5259     * Get if the object is (up/down) resizable.
5260     *
5261     * @param obj The icon object
5262     * @param scale_up A bool to set if the object is resizable up
5263     * @param scale_down A bool to set if the object is resizable down
5264     *
5265     * @see elm_icon_scale_set()
5266     *
5267     * @ingroup Icon
5268     */
5269    EAPI void                  elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
5270    /**
5271     * Get the object's image size
5272     *
5273     * @param obj The icon object
5274     * @param w A pointer to store the width in
5275     * @param h A pointer to store the height in
5276     *
5277     * @ingroup Icon
5278     */
5279    EAPI void                  elm_icon_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
5280    /**
5281     * Set if the icon fill the entire object area.
5282     *
5283     * @param obj The icon object
5284     * @param fill_outside @c EINA_TRUE if the object is filled outside,
5285     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5286     *
5287     * When the icon object is resized to a different aspect ratio from the
5288     * original icon image, the icon image will still keep its aspect. This flag
5289     * tells how the image should fill the object's area. They are: keep the
5290     * entire icon inside the limits of height and width of the object (@p
5291     * fill_outside is @c EINA_FALSE) or let the extra width or height go outside
5292     * of the object, and the icon will fill the entire object (@p fill_outside
5293     * is @c EINA_TRUE).
5294     *
5295     * @note Unlike @ref Image, there's no option in icon to set the aspect ratio
5296     * retain property to false. Thus, the icon image will always keep its
5297     * original aspect ratio.
5298     *
5299     * @see elm_icon_fill_outside_get()
5300     * @see elm_image_fill_outside_set()
5301     *
5302     * @ingroup Icon
5303     */
5304    EAPI void                  elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5305    /**
5306     * Get if the object is filled outside.
5307     *
5308     * @param obj The icon object
5309     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5310     *
5311     * @see elm_icon_fill_outside_set()
5312     *
5313     * @ingroup Icon
5314     */
5315    EAPI Eina_Bool             elm_icon_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5316    /**
5317     * Set the prescale size for the icon.
5318     *
5319     * @param obj The icon object
5320     * @param size The prescale size. This value is used for both width and
5321     * height.
5322     *
5323     * This function sets a new size for pixmap representation of the given
5324     * icon. It allows the icon to be loaded already in the specified size,
5325     * reducing the memory usage and load time when loading a big icon with load
5326     * size set to a smaller size.
5327     *
5328     * It's equivalent to the elm_bg_load_size_set() function for bg.
5329     *
5330     * @note this is just a hint, the real size of the pixmap may differ
5331     * depending on the type of icon being loaded, being bigger than requested.
5332     *
5333     * @see elm_icon_prescale_get()
5334     * @see elm_bg_load_size_set()
5335     *
5336     * @ingroup Icon
5337     */
5338    EAPI void                  elm_icon_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5339    /**
5340     * Get the prescale size for the icon.
5341     *
5342     * @param obj The icon object
5343     * @return The prescale size
5344     *
5345     * @see elm_icon_prescale_set()
5346     *
5347     * @ingroup Icon
5348     */
5349    EAPI int                   elm_icon_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5350    /**
5351     * Gets the image object of the icon. DO NOT MODIFY THIS.
5352     *
5353     * @param obj The icon object
5354     * @return The internal icon object
5355     *
5356     * @ingroup Icon
5357     */
5358    EAPI Evas_Object          *elm_icon_object_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
5359    /**
5360     * Sets the icon lookup order used by elm_icon_standard_set().
5361     *
5362     * @param obj The icon object
5363     * @param order The icon lookup order (can be one of
5364     * ELM_ICON_LOOKUP_FDO_THEME, ELM_ICON_LOOKUP_THEME_FDO, ELM_ICON_LOOKUP_FDO
5365     * or ELM_ICON_LOOKUP_THEME)
5366     *
5367     * @see elm_icon_order_lookup_get()
5368     * @see Elm_Icon_Lookup_Order
5369     *
5370     * @ingroup Icon
5371     */
5372    EAPI void                  elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
5373    /**
5374     * Gets the icon lookup order.
5375     *
5376     * @param obj The icon object
5377     * @return The icon lookup order
5378     *
5379     * @see elm_icon_order_lookup_set()
5380     * @see Elm_Icon_Lookup_Order
5381     *
5382     * @ingroup Icon
5383     */
5384    EAPI Elm_Icon_Lookup_Order elm_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5385    /**
5386     * Enable or disable preloading of the icon
5387     *
5388     * @param obj The icon object
5389     * @param disable If EINA_TRUE, preloading will be disabled
5390     * @ingroup Icon
5391     */
5392    EAPI void                  elm_icon_preload_set(Evas_Object *obj, Eina_Bool disable) EINA_ARG_NONNULL(1);
5393    /**
5394     * Get if the icon supports animation or not.
5395     *
5396     * @param obj The icon object
5397     * @return @c EINA_TRUE if the icon supports animation,
5398     *         @c EINA_FALSE otherwise.
5399     *
5400     * Return if this elm icon's image can be animated. Currently Evas only
5401     * supports gif animation. If the return value is EINA_FALSE, other
5402     * elm_icon_animated_XXX APIs won't work.
5403     * @ingroup Icon
5404     */
5405    EAPI Eina_Bool           elm_icon_animated_available_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5406    /**
5407     * Set animation mode of the icon.
5408     *
5409     * @param obj The icon object
5410     * @param anim @c EINA_TRUE if the object do animation job,
5411     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5412     *
5413     * Since the default animation mode is set to EINA_FALSE,
5414     * the icon is shown without animation. Files like animated GIF files
5415     * can animate, and this is supported if you enable animated support
5416     * on the icon.
5417     * Set it to EINA_TRUE when the icon needs to be animated.
5418     * @ingroup Icon
5419     */
5420    EAPI void                elm_icon_animated_set(Evas_Object *obj, Eina_Bool animated) EINA_ARG_NONNULL(1);
5421    /**
5422     * Get animation mode of the icon.
5423     *
5424     * @param obj The icon object
5425     * @return The animation mode of the icon object
5426     * @see elm_icon_animated_set
5427     * @ingroup Icon
5428     */
5429    EAPI Eina_Bool           elm_icon_animated_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5430    /**
5431     * Set animation play mode of the icon.
5432     *
5433     * @param obj The icon object
5434     * @param play @c EINA_TRUE the object play animation images,
5435     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5436     *
5437     * To play elm icon's animation, set play to EINA_TURE.
5438     * For example, you make gif player using this set/get API and click event.
5439     * This literally lets you control current play or paused state. To have
5440     * this work with animated GIF files for example, you first, before
5441     * setting the file have to use elm_icon_animated_set() to enable animation
5442     * at all on the icon.
5443     *
5444     * 1. Click event occurs
5445     * 2. Check play flag using elm_icon_animaged_play_get
5446     * 3. If elm icon was playing, set play to EINA_FALSE.
5447     *    Then animation will be stopped and vice versa
5448     * @ingroup Icon
5449     */
5450    EAPI void                elm_icon_animated_play_set(Evas_Object *obj, Eina_Bool play) EINA_ARG_NONNULL(1);
5451    /**
5452     * Get animation play mode of the icon.
5453     *
5454     * @param obj The icon object
5455     * @return The play mode of the icon object
5456     *
5457     * @see elm_icon_animated_play_get
5458     * @ingroup Icon
5459     */
5460    EAPI Eina_Bool           elm_icon_animated_play_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5461
5462    /**
5463     * @}
5464     */
5465
5466    /**
5467     * @defgroup Image Image
5468     *
5469     * @image html img/widget/image/preview-00.png
5470     * @image latex img/widget/image/preview-00.eps
5471
5472     *
5473     * An object that allows one to load an image file to it. It can be used
5474     * anywhere like any other elementary widget.
5475     *
5476     * This widget provides most of the functionality provided from @ref Bg or @ref
5477     * Icon, but with a slightly different API (use the one that fits better your
5478     * needs).
5479     *
5480     * The features not provided by those two other image widgets are:
5481     * @li allowing to get the basic @c Evas_Object with elm_image_object_get();
5482     * @li change the object orientation with elm_image_orient_set();
5483     * @li and turning the image editable with elm_image_editable_set().
5484     *
5485     * Signals that you can add callbacks for are:
5486     *
5487     * @li @c "clicked" - This is called when a user has clicked the image
5488     *
5489     * An example of usage for this API follows:
5490     * @li @ref tutorial_image
5491     */
5492
5493    /**
5494     * @addtogroup Image
5495     * @{
5496     */
5497
5498    /**
5499     * @enum _Elm_Image_Orient
5500     * @typedef Elm_Image_Orient
5501     *
5502     * Possible orientation options for elm_image_orient_set().
5503     *
5504     * @image html elm_image_orient_set.png
5505     * @image latex elm_image_orient_set.eps width=\textwidth
5506     *
5507     * @ingroup Image
5508     */
5509    typedef enum _Elm_Image_Orient
5510      {
5511         ELM_IMAGE_ORIENT_NONE = 0, /**< no orientation change */
5512         ELM_IMAGE_ORIENT_0 = 0, /**< no orientation change */
5513         ELM_IMAGE_ROTATE_90 = 1, /**< rotate 90 degrees clockwise */
5514         ELM_IMAGE_ROTATE_180 = 2, /**< rotate 180 degrees clockwise */
5515         ELM_IMAGE_ROTATE_270 = 3, /**< rotate 90 degrees counter-clockwise (i.e. 270 degrees clockwise) */
5516         /*EINA_DEPRECATED*/ELM_IMAGE_ROTATE_90_CW = 1, /**< rotate 90 degrees clockwise */
5517         /*EINA_DEPRECATED*/ELM_IMAGE_ROTATE_180_CW = 2, /**< rotate 180 degrees clockwise */
5518         /*EINA_DEPRECATED*/ELM_IMAGE_ROTATE_90_CCW = 3, /**< rotate 90 degrees counter-clockwise (i.e. 270 degrees clockwise) */
5519         ELM_IMAGE_FLIP_HORIZONTAL = 4, /**< flip image horizontally */
5520         ELM_IMAGE_FLIP_VERTICAL = 5, /**< flip image vertically */
5521         ELM_IMAGE_FLIP_TRANSPOSE = 6, /**< flip the image along the y = (width - x) line (bottom-left to top-right) */
5522         ELM_IMAGE_FLIP_TRANSVERSE = 7 /**< flip the image along the y = x line (top-left to bottom-right) */
5523      } Elm_Image_Orient;
5524
5525    /**
5526     * Add a new image to the parent.
5527     *
5528     * @param parent The parent object
5529     * @return The new object or NULL if it cannot be created
5530     *
5531     * @see elm_image_file_set()
5532     *
5533     * @ingroup Image
5534     */
5535    EAPI Evas_Object     *elm_image_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5536    /**
5537     * Set the file that will be used as image.
5538     *
5539     * @param obj The image object
5540     * @param file The path to file that will be used as image
5541     * @param group The group that the image belongs in edje file (if it's an
5542     * edje image)
5543     *
5544     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5545     *
5546     * @see elm_image_file_get()
5547     *
5548     * @ingroup Image
5549     */
5550    EAPI Eina_Bool        elm_image_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5551    /**
5552     * Get the file that will be used as image.
5553     *
5554     * @param obj The image object
5555     * @param file The path to file
5556     * @param group The group that the image belongs in edje file
5557     *
5558     * @see elm_image_file_set()
5559     *
5560     * @ingroup Image
5561     */
5562    EAPI void             elm_image_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
5563    /**
5564     * Set the smooth effect for an image.
5565     *
5566     * @param obj The image object
5567     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
5568     * otherwise. Default is @c EINA_TRUE.
5569     *
5570     * Set the scaling algorithm to be used when scaling the image. Smooth
5571     * scaling provides a better resulting image, but is slower.
5572     *
5573     * The smooth scaling should be disabled when making animations that change
5574     * the image size, since it will be faster. Animations that don't require
5575     * resizing of the image can keep the smooth scaling enabled (even if the
5576     * image is already scaled, since the scaled image will be cached).
5577     *
5578     * @see elm_image_smooth_get()
5579     *
5580     * @ingroup Image
5581     */
5582    EAPI void             elm_image_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
5583    /**
5584     * Get the smooth effect for an image.
5585     *
5586     * @param obj The image object
5587     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
5588     *
5589     * @see elm_image_smooth_get()
5590     *
5591     * @ingroup Image
5592     */
5593    EAPI Eina_Bool        elm_image_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5594
5595    /**
5596     * Gets the current size of the image.
5597     *
5598     * @param obj The image object.
5599     * @param w Pointer to store width, or NULL.
5600     * @param h Pointer to store height, or NULL.
5601     *
5602     * This is the real size of the image, not the size of the object.
5603     *
5604     * On error, neither w and h will be fileld with 0.
5605     *
5606     * @ingroup Image
5607     */
5608    EAPI void             elm_image_object_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
5609    /**
5610     * Disable scaling of this object.
5611     *
5612     * @param obj The image object.
5613     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
5614     * otherwise. Default is @c EINA_FALSE.
5615     *
5616     * This function disables scaling of the elm_image widget through the
5617     * function elm_object_scale_set(). However, this does not affect the widget
5618     * size/resize in any way. For that effect, take a look at
5619     * elm_image_scale_set().
5620     *
5621     * @see elm_image_no_scale_get()
5622     * @see elm_image_scale_set()
5623     * @see elm_object_scale_set()
5624     *
5625     * @ingroup Image
5626     */
5627    EAPI void             elm_image_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
5628    /**
5629     * Get whether scaling is disabled on the object.
5630     *
5631     * @param obj The image object
5632     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
5633     *
5634     * @see elm_image_no_scale_set()
5635     *
5636     * @ingroup Image
5637     */
5638    EAPI Eina_Bool        elm_image_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5639    /**
5640     * Set if the object is (up/down) resizable.
5641     *
5642     * @param obj The image object
5643     * @param scale_up A bool to set if the object is resizable up. Default is
5644     * @c EINA_TRUE.
5645     * @param scale_down A bool to set if the object is resizable down. Default
5646     * is @c EINA_TRUE.
5647     *
5648     * This function limits the image resize ability. If @p scale_up is set to
5649     * @c EINA_FALSE, the object can't have its height or width resized to a value
5650     * higher than the original image size. Same is valid for @p scale_down.
5651     *
5652     * @see elm_image_scale_get()
5653     *
5654     * @ingroup Image
5655     */
5656    EAPI void             elm_image_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
5657    /**
5658     * Get if the object is (up/down) resizable.
5659     *
5660     * @param obj The image object
5661     * @param scale_up A bool to set if the object is resizable up
5662     * @param scale_down A bool to set if the object is resizable down
5663     *
5664     * @see elm_image_scale_set()
5665     *
5666     * @ingroup Image
5667     */
5668    EAPI void             elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
5669    /**
5670     * Set if the image fills the entire object area, when keeping the aspect ratio.
5671     *
5672     * @param obj The image object
5673     * @param fill_outside @c EINA_TRUE if the object is filled outside,
5674     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5675     *
5676     * When the image should keep its aspect ratio even if resized to another
5677     * aspect ratio, there are two possibilities to resize it: keep the entire
5678     * image inside the limits of height and width of the object (@p fill_outside
5679     * is @c EINA_FALSE) or let the extra width or height go outside of the object,
5680     * and the image will fill the entire object (@p fill_outside is @c EINA_TRUE).
5681     *
5682     * @note This option will have no effect if
5683     * elm_image_aspect_ratio_retained_set() is set to @c EINA_FALSE.
5684     *
5685     * @see elm_image_fill_outside_get()
5686     * @see elm_image_aspect_ratio_retained_set()
5687     *
5688     * @ingroup Image
5689     */
5690    EAPI void             elm_image_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5691    /**
5692     * Get if the object is filled outside
5693     *
5694     * @param obj The image object
5695     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5696     *
5697     * @see elm_image_fill_outside_set()
5698     *
5699     * @ingroup Image
5700     */
5701    EAPI Eina_Bool        elm_image_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5702    /**
5703     * Set the prescale size for the image
5704     *
5705     * @param obj The image object
5706     * @param size The prescale size. This value is used for both width and
5707     * height.
5708     *
5709     * This function sets a new size for pixmap representation of the given
5710     * image. It allows the image to be loaded already in the specified size,
5711     * reducing the memory usage and load time when loading a big image with load
5712     * size set to a smaller size.
5713     *
5714     * It's equivalent to the elm_bg_load_size_set() function for bg.
5715     *
5716     * @note this is just a hint, the real size of the pixmap may differ
5717     * depending on the type of image being loaded, being bigger than requested.
5718     *
5719     * @see elm_image_prescale_get()
5720     * @see elm_bg_load_size_set()
5721     *
5722     * @ingroup Image
5723     */
5724    EAPI void             elm_image_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5725    /**
5726     * Get the prescale size for the image
5727     *
5728     * @param obj The image object
5729     * @return The prescale size
5730     *
5731     * @see elm_image_prescale_set()
5732     *
5733     * @ingroup Image
5734     */
5735    EAPI int              elm_image_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5736    /**
5737     * Set the image orientation.
5738     *
5739     * @param obj The image object
5740     * @param orient The image orientation @ref Elm_Image_Orient
5741     *  Default is #ELM_IMAGE_ORIENT_NONE.
5742     *
5743     * This function allows to rotate or flip the given image.
5744     *
5745     * @see elm_image_orient_get()
5746     * @see @ref Elm_Image_Orient
5747     *
5748     * @ingroup Image
5749     */
5750    EAPI void             elm_image_orient_set(Evas_Object *obj, Elm_Image_Orient orient) EINA_ARG_NONNULL(1);
5751    /**
5752     * Get the image orientation.
5753     *
5754     * @param obj The image object
5755     * @return The image orientation @ref Elm_Image_Orient
5756     *
5757     * @see elm_image_orient_set()
5758     * @see @ref Elm_Image_Orient
5759     *
5760     * @ingroup Image
5761     */
5762    EAPI Elm_Image_Orient elm_image_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5763    /**
5764     * Make the image 'editable'.
5765     *
5766     * @param obj Image object.
5767     * @param set Turn on or off editability. Default is @c EINA_FALSE.
5768     *
5769     * This means the image is a valid drag target for drag and drop, and can be
5770     * cut or pasted too.
5771     *
5772     * @ingroup Image
5773     */
5774    EAPI void             elm_image_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
5775    /**
5776     * Check if the image 'editable'.
5777     *
5778     * @param obj Image object.
5779     * @return Editability.
5780     *
5781     * A return value of EINA_TRUE means the image is a valid drag target
5782     * for drag and drop, and can be cut or pasted too.
5783     *
5784     * @ingroup Image
5785     */
5786    EAPI Eina_Bool        elm_image_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5787    /**
5788     * Get the basic Evas_Image object from this object (widget).
5789     *
5790     * @param obj The image object to get the inlined image from
5791     * @return The inlined image object, or NULL if none exists
5792     *
5793     * This function allows one to get the underlying @c Evas_Object of type
5794     * Image from this elementary widget. It can be useful to do things like get
5795     * the pixel data, save the image to a file, etc.
5796     *
5797     * @note Be careful to not manipulate it, as it is under control of
5798     * elementary.
5799     *
5800     * @ingroup Image
5801     */
5802    EAPI Evas_Object     *elm_image_object_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5803    /**
5804     * Set whether the original aspect ratio of the image should be kept on resize.
5805     *
5806     * @param obj The image object.
5807     * @param retained @c EINA_TRUE if the image should retain the aspect,
5808     * @c EINA_FALSE otherwise.
5809     *
5810     * The original aspect ratio (width / height) of the image is usually
5811     * distorted to match the object's size. Enabling this option will retain
5812     * this original aspect, and the way that the image is fit into the object's
5813     * area depends on the option set by elm_image_fill_outside_set().
5814     *
5815     * @see elm_image_aspect_ratio_retained_get()
5816     * @see elm_image_fill_outside_set()
5817     *
5818     * @ingroup Image
5819     */
5820    EAPI void             elm_image_aspect_ratio_retained_set(Evas_Object *obj, Eina_Bool retained) EINA_ARG_NONNULL(1);
5821    /**
5822     * Get if the object retains the original aspect ratio.
5823     *
5824     * @param obj The image object.
5825     * @return @c EINA_TRUE if the object keeps the original aspect, @c EINA_FALSE
5826     * otherwise.
5827     *
5828     * @ingroup Image
5829     */
5830    EAPI Eina_Bool        elm_image_aspect_ratio_retained_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5831
5832    /**
5833     * @}
5834     */
5835
5836    /* box */
5837    /**
5838     * @defgroup Box Box
5839     *
5840     * @image html img/widget/box/preview-00.png
5841     * @image latex img/widget/box/preview-00.eps width=\textwidth
5842     *
5843     * @image html img/box.png
5844     * @image latex img/box.eps width=\textwidth
5845     *
5846     * A box arranges objects in a linear fashion, governed by a layout function
5847     * that defines the details of this arrangement.
5848     *
5849     * By default, the box will use an internal function to set the layout to
5850     * a single row, either vertical or horizontal. This layout is affected
5851     * by a number of parameters, such as the homogeneous flag set by
5852     * elm_box_homogeneous_set(), the values given by elm_box_padding_set() and
5853     * elm_box_align_set() and the hints set to each object in the box.
5854     *
5855     * For this default layout, it's possible to change the orientation with
5856     * elm_box_horizontal_set(). The box will start in the vertical orientation,
5857     * placing its elements ordered from top to bottom. When horizontal is set,
5858     * the order will go from left to right. If the box is set to be
5859     * homogeneous, every object in it will be assigned the same space, that
5860     * of the largest object. Padding can be used to set some spacing between
5861     * the cell given to each object. The alignment of the box, set with
5862     * elm_box_align_set(), determines how the bounding box of all the elements
5863     * will be placed within the space given to the box widget itself.
5864     *
5865     * The size hints of each object also affect how they are placed and sized
5866     * within the box. evas_object_size_hint_min_set() will give the minimum
5867     * size the object can have, and the box will use it as the basis for all
5868     * latter calculations. Elementary widgets set their own minimum size as
5869     * needed, so there's rarely any need to use it manually.
5870     *
5871     * evas_object_size_hint_weight_set(), when not in homogeneous mode, is
5872     * used to tell whether the object will be allocated the minimum size it
5873     * needs or if the space given to it should be expanded. It's important
5874     * to realize that expanding the size given to the object is not the same
5875     * thing as resizing the object. It could very well end being a small
5876     * widget floating in a much larger empty space. If not set, the weight
5877     * for objects will normally be 0.0 for both axis, meaning the widget will
5878     * not be expanded. To take as much space possible, set the weight to
5879     * EVAS_HINT_EXPAND (defined to 1.0) for the desired axis to expand.
5880     *
5881     * Besides how much space each object is allocated, it's possible to control
5882     * how the widget will be placed within that space using
5883     * evas_object_size_hint_align_set(). By default, this value will be 0.5
5884     * for both axis, meaning the object will be centered, but any value from
5885     * 0.0 (left or top, for the @c x and @c y axis, respectively) to 1.0
5886     * (right or bottom) can be used. The special value EVAS_HINT_FILL, which
5887     * is -1.0, means the object will be resized to fill the entire space it
5888     * was allocated.
5889     *
5890     * In addition, customized functions to define the layout can be set, which
5891     * allow the application developer to organize the objects within the box
5892     * in any number of ways.
5893     *
5894     * The special elm_box_layout_transition() function can be used
5895     * to switch from one layout to another, animating the motion of the
5896     * children of the box.
5897     *
5898     * @note Objects should not be added to box objects using _add() calls.
5899     *
5900     * Some examples on how to use boxes follow:
5901     * @li @ref box_example_01
5902     * @li @ref box_example_02
5903     *
5904     * @{
5905     */
5906    /**
5907     * @typedef Elm_Box_Transition
5908     *
5909     * Opaque handler containing the parameters to perform an animated
5910     * transition of the layout the box uses.
5911     *
5912     * @see elm_box_transition_new()
5913     * @see elm_box_layout_set()
5914     * @see elm_box_layout_transition()
5915     */
5916    typedef struct _Elm_Box_Transition Elm_Box_Transition;
5917
5918    /**
5919     * Add a new box to the parent
5920     *
5921     * By default, the box will be in vertical mode and non-homogeneous.
5922     *
5923     * @param parent The parent object
5924     * @return The new object or NULL if it cannot be created
5925     */
5926    EAPI Evas_Object        *elm_box_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5927    /**
5928     * Set the horizontal orientation
5929     *
5930     * By default, box object arranges their contents vertically from top to
5931     * bottom.
5932     * By calling this function with @p horizontal as EINA_TRUE, the box will
5933     * become horizontal, arranging contents from left to right.
5934     *
5935     * @note This flag is ignored if a custom layout function is set.
5936     *
5937     * @param obj The box object
5938     * @param horizontal The horizontal flag (EINA_TRUE = horizontal,
5939     * EINA_FALSE = vertical)
5940     */
5941    EAPI void                elm_box_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
5942    /**
5943     * Get the horizontal orientation
5944     *
5945     * @param obj The box object
5946     * @return EINA_TRUE if the box is set to horizontal mode, EINA_FALSE otherwise
5947     */
5948    EAPI Eina_Bool           elm_box_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5949    /**
5950     * Set the box to arrange its children homogeneously
5951     *
5952     * If enabled, homogeneous layout makes all items the same size, according
5953     * to the size of the largest of its children.
5954     *
5955     * @note This flag is ignored if a custom layout function is set.
5956     *
5957     * @param obj The box object
5958     * @param homogeneous The homogeneous flag
5959     */
5960    EAPI void                elm_box_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
5961    /**
5962     * Get whether the box is using homogeneous mode or not
5963     *
5964     * @param obj The box object
5965     * @return EINA_TRUE if it's homogeneous, EINA_FALSE otherwise
5966     */
5967    EAPI Eina_Bool           elm_box_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5968    /**
5969     * Add an object to the beginning of the pack list
5970     *
5971     * Pack @p subobj into the box @p obj, placing it first in the list of
5972     * children objects. The actual position the object will get on screen
5973     * depends on the layout used. If no custom layout is set, it will be at
5974     * the top or left, depending if the box is vertical or horizontal,
5975     * respectively.
5976     *
5977     * @param obj The box object
5978     * @param subobj The object to add to the box
5979     *
5980     * @see elm_box_pack_end()
5981     * @see elm_box_pack_before()
5982     * @see elm_box_pack_after()
5983     * @see elm_box_unpack()
5984     * @see elm_box_unpack_all()
5985     * @see elm_box_clear()
5986     */
5987    EAPI void                elm_box_pack_start(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5988    /**
5989     * Add an object at the end of the pack list
5990     *
5991     * Pack @p subobj into the box @p obj, placing it last in the list of
5992     * children objects. The actual position the object will get on screen
5993     * depends on the layout used. If no custom layout is set, it will be at
5994     * the bottom or right, depending if the box is vertical or horizontal,
5995     * respectively.
5996     *
5997     * @param obj The box object
5998     * @param subobj The object to add to the box
5999     *
6000     * @see elm_box_pack_start()
6001     * @see elm_box_pack_before()
6002     * @see elm_box_pack_after()
6003     * @see elm_box_unpack()
6004     * @see elm_box_unpack_all()
6005     * @see elm_box_clear()
6006     */
6007    EAPI void                elm_box_pack_end(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
6008    /**
6009     * Adds an object to the box before the indicated object
6010     *
6011     * This will add the @p subobj to the box indicated before the object
6012     * indicated with @p before. If @p before is not already in the box, results
6013     * are undefined. Before means either to the left of the indicated object or
6014     * above it depending on orientation.
6015     *
6016     * @param obj The box object
6017     * @param subobj The object to add to the box
6018     * @param before The object before which to add it
6019     *
6020     * @see elm_box_pack_start()
6021     * @see elm_box_pack_end()
6022     * @see elm_box_pack_after()
6023     * @see elm_box_unpack()
6024     * @see elm_box_unpack_all()
6025     * @see elm_box_clear()
6026     */
6027    EAPI void                elm_box_pack_before(Evas_Object *obj, Evas_Object *subobj, Evas_Object *before) EINA_ARG_NONNULL(1);
6028    /**
6029     * Adds an object to the box after the indicated object
6030     *
6031     * This will add the @p subobj to the box indicated after the object
6032     * indicated with @p after. If @p after is not already in the box, results
6033     * are undefined. After means either to the right of the indicated object or
6034     * below it depending on orientation.
6035     *
6036     * @param obj The box object
6037     * @param subobj The object to add to the box
6038     * @param after The object after which to add it
6039     *
6040     * @see elm_box_pack_start()
6041     * @see elm_box_pack_end()
6042     * @see elm_box_pack_before()
6043     * @see elm_box_unpack()
6044     * @see elm_box_unpack_all()
6045     * @see elm_box_clear()
6046     */
6047    EAPI void                elm_box_pack_after(Evas_Object *obj, Evas_Object *subobj, Evas_Object *after) EINA_ARG_NONNULL(1);
6048    /**
6049     * Clear the box of all children
6050     *
6051     * Remove all the elements contained by the box, deleting the respective
6052     * objects.
6053     *
6054     * @param obj The box object
6055     *
6056     * @see elm_box_unpack()
6057     * @see elm_box_unpack_all()
6058     */
6059    EAPI void                elm_box_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
6060    /**
6061     * Unpack a box item
6062     *
6063     * Remove the object given by @p subobj from the box @p obj without
6064     * deleting it.
6065     *
6066     * @param obj The box object
6067     *
6068     * @see elm_box_unpack_all()
6069     * @see elm_box_clear()
6070     */
6071    EAPI void                elm_box_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
6072    /**
6073     * Remove all items from the box, without deleting them
6074     *
6075     * Clear the box from all children, but don't delete the respective objects.
6076     * If no other references of the box children exist, the objects will never
6077     * be deleted, and thus the application will leak the memory. Make sure
6078     * when using this function that you hold a reference to all the objects
6079     * in the box @p obj.
6080     *
6081     * @param obj The box object
6082     *
6083     * @see elm_box_clear()
6084     * @see elm_box_unpack()
6085     */
6086    EAPI void                elm_box_unpack_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
6087    /**
6088     * Retrieve a list of the objects packed into the box
6089     *
6090     * Returns a new @c Eina_List with a pointer to @c Evas_Object in its nodes.
6091     * The order of the list corresponds to the packing order the box uses.
6092     *
6093     * You must free this list with eina_list_free() once you are done with it.
6094     *
6095     * @param obj The box object
6096     */
6097    EAPI const Eina_List    *elm_box_children_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6098    /**
6099     * Set the space (padding) between the box's elements.
6100     *
6101     * Extra space in pixels that will be added between a box child and its
6102     * neighbors after its containing cell has been calculated. This padding
6103     * is set for all elements in the box, besides any possible padding that
6104     * individual elements may have through their size hints.
6105     *
6106     * @param obj The box object
6107     * @param horizontal The horizontal space between elements
6108     * @param vertical The vertical space between elements
6109     */
6110    EAPI void                elm_box_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
6111    /**
6112     * Get the space (padding) between the box's elements.
6113     *
6114     * @param obj The box object
6115     * @param horizontal The horizontal space between elements
6116     * @param vertical The vertical space between elements
6117     *
6118     * @see elm_box_padding_set()
6119     */
6120    EAPI void                elm_box_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
6121    /**
6122     * Set the alignment of the whole bouding box of contents.
6123     *
6124     * Sets how the bounding box containing all the elements of the box, after
6125     * their sizes and position has been calculated, will be aligned within
6126     * the space given for the whole box widget.
6127     *
6128     * @param obj The box object
6129     * @param horizontal The horizontal alignment of elements
6130     * @param vertical The vertical alignment of elements
6131     */
6132    EAPI void                elm_box_align_set(Evas_Object *obj, double horizontal, double vertical) EINA_ARG_NONNULL(1);
6133    /**
6134     * Get the alignment of the whole bouding box of contents.
6135     *
6136     * @param obj The box object
6137     * @param horizontal The horizontal alignment of elements
6138     * @param vertical The vertical alignment of elements
6139     *
6140     * @see elm_box_align_set()
6141     */
6142    EAPI void                elm_box_align_get(const Evas_Object *obj, double *horizontal, double *vertical) EINA_ARG_NONNULL(1);
6143
6144    /**
6145     * Force the box to recalculate its children packing.
6146     *
6147     * If any children was added or removed, box will not calculate the
6148     * values immediately rather leaving it to the next main loop
6149     * iteration. While this is great as it would save lots of
6150     * recalculation, whenever you need to get the position of a just
6151     * added item you must force recalculate before doing so.
6152     *
6153     * @param obj The box object.
6154     */
6155    EAPI void                 elm_box_recalculate(Evas_Object *obj);
6156
6157    /**
6158     * Set the layout defining function to be used by the box
6159     *
6160     * Whenever anything changes that requires the box in @p obj to recalculate
6161     * the size and position of its elements, the function @p cb will be called
6162     * to determine what the layout of the children will be.
6163     *
6164     * Once a custom function is set, everything about the children layout
6165     * is defined by it. The flags set by elm_box_horizontal_set() and
6166     * elm_box_homogeneous_set() no longer have any meaning, and the values
6167     * given by elm_box_padding_set() and elm_box_align_set() are up to this
6168     * layout function to decide if they are used and how. These last two
6169     * will be found in the @c priv parameter, of type @c Evas_Object_Box_Data,
6170     * passed to @p cb. The @c Evas_Object the function receives is not the
6171     * Elementary widget, but the internal Evas Box it uses, so none of the
6172     * functions described here can be used on it.
6173     *
6174     * Any of the layout functions in @c Evas can be used here, as well as the
6175     * special elm_box_layout_transition().
6176     *
6177     * The final @p data argument received by @p cb is the same @p data passed
6178     * here, and the @p free_data function will be called to free it
6179     * whenever the box is destroyed or another layout function is set.
6180     *
6181     * Setting @p cb to NULL will revert back to the default layout function.
6182     *
6183     * @param obj The box object
6184     * @param cb The callback function used for layout
6185     * @param data Data that will be passed to layout function
6186     * @param free_data Function called to free @p data
6187     *
6188     * @see elm_box_layout_transition()
6189     */
6190    EAPI void                elm_box_layout_set(Evas_Object *obj, Evas_Object_Box_Layout cb, const void *data, void (*free_data)(void *data)) EINA_ARG_NONNULL(1);
6191    /**
6192     * Special layout function that animates the transition from one layout to another
6193     *
6194     * Normally, when switching the layout function for a box, this will be
6195     * reflected immediately on screen on the next render, but it's also
6196     * possible to do this through an animated transition.
6197     *
6198     * This is done by creating an ::Elm_Box_Transition and setting the box
6199     * layout to this function.
6200     *
6201     * For example:
6202     * @code
6203     * Elm_Box_Transition *t = elm_box_transition_new(1.0,
6204     *                            evas_object_box_layout_vertical, // start
6205     *                            NULL, // data for initial layout
6206     *                            NULL, // free function for initial data
6207     *                            evas_object_box_layout_horizontal, // end
6208     *                            NULL, // data for final layout
6209     *                            NULL, // free function for final data
6210     *                            anim_end, // will be called when animation ends
6211     *                            NULL); // data for anim_end function\
6212     * elm_box_layout_set(box, elm_box_layout_transition, t,
6213     *                    elm_box_transition_free);
6214     * @endcode
6215     *
6216     * @note This function can only be used with elm_box_layout_set(). Calling
6217     * it directly will not have the expected results.
6218     *
6219     * @see elm_box_transition_new
6220     * @see elm_box_transition_free
6221     * @see elm_box_layout_set
6222     */
6223    EAPI void                elm_box_layout_transition(Evas_Object *obj, Evas_Object_Box_Data *priv, void *data);
6224    /**
6225     * Create a new ::Elm_Box_Transition to animate the switch of layouts
6226     *
6227     * If you want to animate the change from one layout to another, you need
6228     * to set the layout function of the box to elm_box_layout_transition(),
6229     * passing as user data to it an instance of ::Elm_Box_Transition with the
6230     * necessary information to perform this animation. The free function to
6231     * set for the layout is elm_box_transition_free().
6232     *
6233     * The parameters to create an ::Elm_Box_Transition sum up to how long
6234     * will it be, in seconds, a layout function to describe the initial point,
6235     * another for the final position of the children and one function to be
6236     * called when the whole animation ends. This last function is useful to
6237     * set the definitive layout for the box, usually the same as the end
6238     * layout for the animation, but could be used to start another transition.
6239     *
6240     * @param start_layout The layout function that will be used to start the animation
6241     * @param start_layout_data The data to be passed the @p start_layout function
6242     * @param start_layout_free_data Function to free @p start_layout_data
6243     * @param end_layout The layout function that will be used to end the animation
6244     * @param end_layout_free_data The data to be passed the @p end_layout function
6245     * @param end_layout_free_data Function to free @p end_layout_data
6246     * @param transition_end_cb Callback function called when animation ends
6247     * @param transition_end_data Data to be passed to @p transition_end_cb
6248     * @return An instance of ::Elm_Box_Transition
6249     *
6250     * @see elm_box_transition_new
6251     * @see elm_box_layout_transition
6252     */
6253    EAPI Elm_Box_Transition *elm_box_transition_new(const double duration, Evas_Object_Box_Layout start_layout, void *start_layout_data, void(*start_layout_free_data)(void *data), Evas_Object_Box_Layout end_layout, void *end_layout_data, void(*end_layout_free_data)(void *data), void(*transition_end_cb)(void *data), void *transition_end_data) EINA_ARG_NONNULL(2, 5);
6254    /**
6255     * Free a Elm_Box_Transition instance created with elm_box_transition_new().
6256     *
6257     * This function is mostly useful as the @c free_data parameter in
6258     * elm_box_layout_set() when elm_box_layout_transition().
6259     *
6260     * @param data The Elm_Box_Transition instance to be freed.
6261     *
6262     * @see elm_box_transition_new
6263     * @see elm_box_layout_transition
6264     */
6265    EAPI void                elm_box_transition_free(void *data);
6266    /**
6267     * @}
6268     */
6269
6270    /* button */
6271    /**
6272     * @defgroup Button Button
6273     *
6274     * @image html img/widget/button/preview-00.png
6275     * @image latex img/widget/button/preview-00.eps
6276     * @image html img/widget/button/preview-01.png
6277     * @image latex img/widget/button/preview-01.eps
6278     * @image html img/widget/button/preview-02.png
6279     * @image latex img/widget/button/preview-02.eps
6280     *
6281     * This is a push-button. Press it and run some function. It can contain
6282     * a simple label and icon object and it also has an autorepeat feature.
6283     *
6284     * This widgets emits the following signals:
6285     * @li "clicked": the user clicked the button (press/release).
6286     * @li "repeated": the user pressed the button without releasing it.
6287     * @li "pressed": button was pressed.
6288     * @li "unpressed": button was released after being pressed.
6289     * In all three cases, the @c event parameter of the callback will be
6290     * @c NULL.
6291     *
6292     * Also, defined in the default theme, the button has the following styles
6293     * available:
6294     * @li default: a normal button.
6295     * @li anchor: Like default, but the button fades away when the mouse is not
6296     * over it, leaving only the text or icon.
6297     * @li hoversel_vertical: Internally used by @ref Hoversel to give a
6298     * continuous look across its options.
6299     * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
6300     *
6301     * Default contents parts of the button widget that you can use for are:
6302     * @li "icon" - An icon of the button
6303     *
6304     * Default text parts of the button widget that you can use for are:
6305     * @li "default" - Label of the button
6306     *
6307     * Follow through a complete example @ref button_example_01 "here".
6308     * @{
6309     */
6310    /**
6311     * Add a new button to the parent's canvas
6312     *
6313     * @param parent The parent object
6314     * @return The new object or NULL if it cannot be created
6315     */
6316    EAPI Evas_Object *elm_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6317    /**
6318     * Set the label used in the button
6319     *
6320     * The passed @p label can be NULL to clean any existing text in it and
6321     * leave the button as an icon only object.
6322     *
6323     * @param obj The button object
6324     * @param label The text will be written on the button
6325     * @deprecated use elm_object_text_set() instead.
6326     */
6327    EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6328    /**
6329     * Get the label set for the button
6330     *
6331     * The string returned is an internal pointer and should not be freed or
6332     * altered. It will also become invalid when the button is destroyed.
6333     * The string returned, if not NULL, is a stringshare, so if you need to
6334     * keep it around even after the button is destroyed, you can use
6335     * eina_stringshare_ref().
6336     *
6337     * @param obj The button object
6338     * @return The text set to the label, or NULL if nothing is set
6339     * @deprecated use elm_object_text_set() instead.
6340     */
6341    EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6342    /**
6343     * Set the icon used for the button
6344     *
6345     * Setting a new icon will delete any other that was previously set, making
6346     * any reference to them invalid. If you need to maintain the previous
6347     * object alive, unset it first with elm_button_icon_unset().
6348     *
6349     * @param obj The button object
6350     * @param icon The icon object for the button
6351     * @deprecated use elm_object_part_content_set() instead.
6352     */
6353    EINA_DEPRECATED EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6354    /**
6355     * Get the icon used for the button
6356     *
6357     * Return the icon object which is set for this widget. If the button is
6358     * destroyed or another icon is set, the returned object will be deleted
6359     * and any reference to it will be invalid.
6360     *
6361     * @param obj The button object
6362     * @return The icon object that is being used
6363     *
6364     * @deprecated use elm_object_part_content_get() instead
6365     */
6366    EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6367    /**
6368     * Remove the icon set without deleting it and return the object
6369     *
6370     * This function drops the reference the button holds of the icon object
6371     * and returns this last object. It is used in case you want to remove any
6372     * icon, or set another one, without deleting the actual object. The button
6373     * will be left without an icon set.
6374     *
6375     * @param obj The button object
6376     * @return The icon object that was being used
6377     * @deprecated use elm_object_part_content_unset() instead.
6378     */
6379    EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6380    /**
6381     * Turn on/off the autorepeat event generated when the button is kept pressed
6382     *
6383     * When off, no autorepeat is performed and buttons emit a normal @c clicked
6384     * signal when they are clicked.
6385     *
6386     * When on, keeping a button pressed will continuously emit a @c repeated
6387     * signal until the button is released. The time it takes until it starts
6388     * emitting the signal is given by
6389     * elm_button_autorepeat_initial_timeout_set(), and the time between each
6390     * new emission by elm_button_autorepeat_gap_timeout_set().
6391     *
6392     * @param obj The button object
6393     * @param on  A bool to turn on/off the event
6394     */
6395    EAPI void         elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on) EINA_ARG_NONNULL(1);
6396    /**
6397     * Get whether the autorepeat feature is enabled
6398     *
6399     * @param obj The button object
6400     * @return EINA_TRUE if autorepeat is on, EINA_FALSE otherwise
6401     *
6402     * @see elm_button_autorepeat_set()
6403     */
6404    EAPI Eina_Bool    elm_button_autorepeat_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6405    /**
6406     * Set the initial timeout before the autorepeat event is generated
6407     *
6408     * Sets the timeout, in seconds, since the button is pressed until the
6409     * first @c repeated signal is emitted. If @p t is 0.0 or less, there
6410     * won't be any delay and the even will be fired the moment the button is
6411     * pressed.
6412     *
6413     * @param obj The button object
6414     * @param t   Timeout in seconds
6415     *
6416     * @see elm_button_autorepeat_set()
6417     * @see elm_button_autorepeat_gap_timeout_set()
6418     */
6419    EAPI void         elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6420    /**
6421     * Get the initial timeout before the autorepeat event is generated
6422     *
6423     * @param obj The button object
6424     * @return Timeout in seconds
6425     *
6426     * @see elm_button_autorepeat_initial_timeout_set()
6427     */
6428    EAPI double       elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6429    /**
6430     * Set the interval between each generated autorepeat event
6431     *
6432     * After the first @c repeated event is fired, all subsequent ones will
6433     * follow after a delay of @p t seconds for each.
6434     *
6435     * @param obj The button object
6436     * @param t   Interval in seconds
6437     *
6438     * @see elm_button_autorepeat_initial_timeout_set()
6439     */
6440    EAPI void         elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6441    /**
6442     * Get the interval between each generated autorepeat event
6443     *
6444     * @param obj The button object
6445     * @return Interval in seconds
6446     */
6447    EAPI double       elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6448    /**
6449     * @}
6450     */
6451
6452    /**
6453     * @defgroup File_Selector_Button File Selector Button
6454     *
6455     * @image html img/widget/fileselector_button/preview-00.png
6456     * @image latex img/widget/fileselector_button/preview-00.eps
6457     * @image html img/widget/fileselector_button/preview-01.png
6458     * @image latex img/widget/fileselector_button/preview-01.eps
6459     * @image html img/widget/fileselector_button/preview-02.png
6460     * @image latex img/widget/fileselector_button/preview-02.eps
6461     *
6462     * This is a button that, when clicked, creates an Elementary
6463     * window (or inner window) <b> with a @ref Fileselector "file
6464     * selector widget" within</b>. When a file is chosen, the (inner)
6465     * window is closed and the button emits a signal having the
6466     * selected file as it's @c event_info.
6467     *
6468     * This widget encapsulates operations on its internal file
6469     * selector on its own API. There is less control over its file
6470     * selector than that one would have instatiating one directly.
6471     *
6472     * The following styles are available for this button:
6473     * @li @c "default"
6474     * @li @c "anchor"
6475     * @li @c "hoversel_vertical"
6476     * @li @c "hoversel_vertical_entry"
6477     *
6478     * Smart callbacks one can register to:
6479     * - @c "file,chosen" - the user has selected a path, whose string
6480     *   pointer comes as the @c event_info data (a stringshared
6481     *   string)
6482     *
6483     * Here is an example on its usage:
6484     * @li @ref fileselector_button_example
6485     *
6486     * @see @ref File_Selector_Entry for a similar widget.
6487     * @{
6488     */
6489
6490    /**
6491     * Add a new file selector button widget to the given parent
6492     * Elementary (container) object
6493     *
6494     * @param parent The parent object
6495     * @return a new file selector button widget handle or @c NULL, on
6496     * errors
6497     */
6498    EAPI Evas_Object *elm_fileselector_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6499
6500    /**
6501     * Set the label for a given file selector button widget
6502     *
6503     * @param obj The file selector button widget
6504     * @param label The text label to be displayed on @p obj
6505     *
6506     * @deprecated use elm_object_text_set() instead.
6507     */
6508    EINA_DEPRECATED EAPI void         elm_fileselector_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6509
6510    /**
6511     * Get the label set for a given file selector button widget
6512     *
6513     * @param obj The file selector button widget
6514     * @return The button label
6515     *
6516     * @deprecated use elm_object_text_set() instead.
6517     */
6518    EINA_DEPRECATED EAPI const char  *elm_fileselector_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6519
6520    /**
6521     * Set the icon on a given file selector button widget
6522     *
6523     * @param obj The file selector button widget
6524     * @param icon The icon object for the button
6525     *
6526     * Once the icon object is set, a previously set one will be
6527     * deleted. If you want to keep the latter, use the
6528     * elm_fileselector_button_icon_unset() function.
6529     *
6530     * @see elm_fileselector_button_icon_get()
6531     */
6532    EAPI void         elm_fileselector_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6533
6534    /**
6535     * Get the icon set for a given file selector button widget
6536     *
6537     * @param obj The file selector button widget
6538     * @return The icon object currently set on @p obj or @c NULL, if
6539     * none is
6540     *
6541     * @see elm_fileselector_button_icon_set()
6542     */
6543    EAPI Evas_Object *elm_fileselector_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6544
6545    /**
6546     * Unset the icon used in a given file selector button widget
6547     *
6548     * @param obj The file selector button widget
6549     * @return The icon object that was being used on @p obj or @c
6550     * NULL, on errors
6551     *
6552     * Unparent and return the icon object which was set for this
6553     * widget.
6554     *
6555     * @see elm_fileselector_button_icon_set()
6556     */
6557    EAPI Evas_Object *elm_fileselector_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6558
6559    /**
6560     * Set the title for a given file selector button widget's window
6561     *
6562     * @param obj The file selector button widget
6563     * @param title The title string
6564     *
6565     * This will change the window's title, when the file selector pops
6566     * out after a click on the button. Those windows have the default
6567     * (unlocalized) value of @c "Select a file" as titles.
6568     *
6569     * @note It will only take any effect if the file selector
6570     * button widget is @b not under "inwin mode".
6571     *
6572     * @see elm_fileselector_button_window_title_get()
6573     */
6574    EAPI void         elm_fileselector_button_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6575
6576    /**
6577     * Get the title set for a given file selector button widget's
6578     * window
6579     *
6580     * @param obj The file selector button widget
6581     * @return Title of the file selector button's window
6582     *
6583     * @see elm_fileselector_button_window_title_get() for more details
6584     */
6585    EAPI const char  *elm_fileselector_button_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6586
6587    /**
6588     * Set the size of a given file selector button widget's window,
6589     * holding the file selector itself.
6590     *
6591     * @param obj The file selector button widget
6592     * @param width The window's width
6593     * @param height The window's height
6594     *
6595     * @note it will only take any effect if the file selector button
6596     * widget is @b not under "inwin mode". The default size for the
6597     * window (when applicable) is 400x400 pixels.
6598     *
6599     * @see elm_fileselector_button_window_size_get()
6600     */
6601    EAPI void         elm_fileselector_button_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6602
6603    /**
6604     * Get the size of a given file selector button widget's window,
6605     * holding the file selector itself.
6606     *
6607     * @param obj The file selector button widget
6608     * @param width Pointer into which to store the width value
6609     * @param height Pointer into which to store the height value
6610     *
6611     * @note Use @c NULL pointers on the size values you're not
6612     * interested in: they'll be ignored by the function.
6613     *
6614     * @see elm_fileselector_button_window_size_set(), for more details
6615     */
6616    EAPI void         elm_fileselector_button_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6617
6618    /**
6619     * Set the initial file system path for a given file selector
6620     * button widget
6621     *
6622     * @param obj The file selector button widget
6623     * @param path The path string
6624     *
6625     * It must be a <b>directory</b> path, which will have the contents
6626     * displayed initially in the file selector's view, when invoked
6627     * from @p obj. The default initial path is the @c "HOME"
6628     * environment variable's value.
6629     *
6630     * @see elm_fileselector_button_path_get()
6631     */
6632    EAPI void         elm_fileselector_button_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6633
6634    /**
6635     * Get the initial file system path set for a given file selector
6636     * button widget
6637     *
6638     * @param obj The file selector button widget
6639     * @return path The path string
6640     *
6641     * @see elm_fileselector_button_path_set() for more details
6642     */
6643    EAPI const char  *elm_fileselector_button_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6644
6645    /**
6646     * Enable/disable a tree view in the given file selector button
6647     * widget's internal file selector
6648     *
6649     * @param obj The file selector button widget
6650     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6651     * disable
6652     *
6653     * This has the same effect as elm_fileselector_expandable_set(),
6654     * but now applied to a file selector button's internal file
6655     * selector.
6656     *
6657     * @note There's no way to put a file selector button's internal
6658     * file selector in "grid mode", as one may do with "pure" file
6659     * selectors.
6660     *
6661     * @see elm_fileselector_expandable_get()
6662     */
6663    EAPI void         elm_fileselector_button_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6664
6665    /**
6666     * Get whether tree view is enabled for the given file selector
6667     * button widget's internal file selector
6668     *
6669     * @param obj The file selector button widget
6670     * @return @c EINA_TRUE if @p obj widget's internal file selector
6671     * is in tree view, @c EINA_FALSE otherwise (and or errors)
6672     *
6673     * @see elm_fileselector_expandable_set() for more details
6674     */
6675    EAPI Eina_Bool    elm_fileselector_button_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6676
6677    /**
6678     * Set whether a given file selector button widget's internal file
6679     * selector is to display folders only or the directory contents,
6680     * as well.
6681     *
6682     * @param obj The file selector button widget
6683     * @param only @c EINA_TRUE to make @p obj widget's internal file
6684     * selector only display directories, @c EINA_FALSE to make files
6685     * to be displayed in it too
6686     *
6687     * This has the same effect as elm_fileselector_folder_only_set(),
6688     * but now applied to a file selector button's internal file
6689     * selector.
6690     *
6691     * @see elm_fileselector_folder_only_get()
6692     */
6693    EAPI void         elm_fileselector_button_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6694
6695    /**
6696     * Get whether a given file selector button widget's internal file
6697     * selector is displaying folders only or the directory contents,
6698     * as well.
6699     *
6700     * @param obj The file selector button widget
6701     * @return @c EINA_TRUE if @p obj widget's internal file
6702     * selector is only displaying directories, @c EINA_FALSE if files
6703     * are being displayed in it too (and on errors)
6704     *
6705     * @see elm_fileselector_button_folder_only_set() for more details
6706     */
6707    EAPI Eina_Bool    elm_fileselector_button_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6708
6709    /**
6710     * Enable/disable the file name entry box where the user can type
6711     * in a name for a file, in a given file selector button widget's
6712     * internal file selector.
6713     *
6714     * @param obj The file selector button widget
6715     * @param is_save @c EINA_TRUE to make @p obj widget's internal
6716     * file selector a "saving dialog", @c EINA_FALSE otherwise
6717     *
6718     * This has the same effect as elm_fileselector_is_save_set(),
6719     * but now applied to a file selector button's internal file
6720     * selector.
6721     *
6722     * @see elm_fileselector_is_save_get()
6723     */
6724    EAPI void         elm_fileselector_button_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6725
6726    /**
6727     * Get whether the given file selector button widget's internal
6728     * file selector is in "saving dialog" mode
6729     *
6730     * @param obj The file selector button widget
6731     * @return @c EINA_TRUE, if @p obj widget's internal file selector
6732     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
6733     * errors)
6734     *
6735     * @see elm_fileselector_button_is_save_set() for more details
6736     */
6737    EAPI Eina_Bool    elm_fileselector_button_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6738
6739    /**
6740     * Set whether a given file selector button widget's internal file
6741     * selector will raise an Elementary "inner window", instead of a
6742     * dedicated Elementary window. By default, it won't.
6743     *
6744     * @param obj The file selector button widget
6745     * @param value @c EINA_TRUE to make it use an inner window, @c
6746     * EINA_TRUE to make it use a dedicated window
6747     *
6748     * @see elm_win_inwin_add() for more information on inner windows
6749     * @see elm_fileselector_button_inwin_mode_get()
6750     */
6751    EAPI void         elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6752
6753    /**
6754     * Get whether a given file selector button widget's internal file
6755     * selector will raise an Elementary "inner window", instead of a
6756     * dedicated Elementary window.
6757     *
6758     * @param obj The file selector button widget
6759     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
6760     * if it will use a dedicated window
6761     *
6762     * @see elm_fileselector_button_inwin_mode_set() for more details
6763     */
6764    EAPI Eina_Bool    elm_fileselector_button_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6765
6766    /**
6767     * @}
6768     */
6769
6770     /**
6771     * @defgroup File_Selector_Entry File Selector Entry
6772     *
6773     * @image html img/widget/fileselector_entry/preview-00.png
6774     * @image latex img/widget/fileselector_entry/preview-00.eps
6775     *
6776     * This is an entry made to be filled with or display a <b>file
6777     * system path string</b>. Besides the entry itself, the widget has
6778     * a @ref File_Selector_Button "file selector button" on its side,
6779     * which will raise an internal @ref Fileselector "file selector widget",
6780     * when clicked, for path selection aided by file system
6781     * navigation.
6782     *
6783     * This file selector may appear in an Elementary window or in an
6784     * inner window. When a file is chosen from it, the (inner) window
6785     * is closed and the selected file's path string is exposed both as
6786     * an smart event and as the new text on the entry.
6787     *
6788     * This widget encapsulates operations on its internal file
6789     * selector on its own API. There is less control over its file
6790     * selector than that one would have instatiating one directly.
6791     *
6792     * Smart callbacks one can register to:
6793     * - @c "changed" - The text within the entry was changed
6794     * - @c "activated" - The entry has had editing finished and
6795     *   changes are to be "committed"
6796     * - @c "press" - The entry has been clicked
6797     * - @c "longpressed" - The entry has been clicked (and held) for a
6798     *   couple seconds
6799     * - @c "clicked" - The entry has been clicked
6800     * - @c "clicked,double" - The entry has been double clicked
6801     * - @c "focused" - The entry has received focus
6802     * - @c "unfocused" - The entry has lost focus
6803     * - @c "selection,paste" - A paste action has occurred on the
6804     *   entry
6805     * - @c "selection,copy" - A copy action has occurred on the entry
6806     * - @c "selection,cut" - A cut action has occurred on the entry
6807     * - @c "unpressed" - The file selector entry's button was released
6808     *   after being pressed.
6809     * - @c "file,chosen" - The user has selected a path via the file
6810     *   selector entry's internal file selector, whose string pointer
6811     *   comes as the @c event_info data (a stringshared string)
6812     *
6813     * Here is an example on its usage:
6814     * @li @ref fileselector_entry_example
6815     *
6816     * @see @ref File_Selector_Button for a similar widget.
6817     * @{
6818     */
6819
6820    /**
6821     * Add a new file selector entry widget to the given parent
6822     * Elementary (container) object
6823     *
6824     * @param parent The parent object
6825     * @return a new file selector entry widget handle or @c NULL, on
6826     * errors
6827     */
6828    EAPI Evas_Object *elm_fileselector_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6829
6830    /**
6831     * Set the label for a given file selector entry widget's button
6832     *
6833     * @param obj The file selector entry widget
6834     * @param label The text label to be displayed on @p obj widget's
6835     * button
6836     *
6837     * @deprecated use elm_object_text_set() instead.
6838     */
6839    EINA_DEPRECATED EAPI void         elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6840
6841    /**
6842     * Get the label set for a given file selector entry widget's button
6843     *
6844     * @param obj The file selector entry widget
6845     * @return The widget button's label
6846     *
6847     * @deprecated use elm_object_text_set() instead.
6848     */
6849    EINA_DEPRECATED EAPI const char  *elm_fileselector_entry_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6850
6851    /**
6852     * Set the icon on a given file selector entry widget's button
6853     *
6854     * @param obj The file selector entry widget
6855     * @param icon The icon object for the entry's button
6856     *
6857     * Once the icon object is set, a previously set one will be
6858     * deleted. If you want to keep the latter, use the
6859     * elm_fileselector_entry_button_icon_unset() function.
6860     *
6861     * @see elm_fileselector_entry_button_icon_get()
6862     */
6863    EAPI void         elm_fileselector_entry_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6864
6865    /**
6866     * Get the icon set for a given file selector entry widget's button
6867     *
6868     * @param obj The file selector entry widget
6869     * @return The icon object currently set on @p obj widget's button
6870     * or @c NULL, if none is
6871     *
6872     * @see elm_fileselector_entry_button_icon_set()
6873     */
6874    EAPI Evas_Object *elm_fileselector_entry_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6875
6876    /**
6877     * Unset the icon used in a given file selector entry widget's
6878     * button
6879     *
6880     * @param obj The file selector entry widget
6881     * @return The icon object that was being used on @p obj widget's
6882     * button or @c NULL, on errors
6883     *
6884     * Unparent and return the icon object which was set for this
6885     * widget's button.
6886     *
6887     * @see elm_fileselector_entry_button_icon_set()
6888     */
6889    EAPI Evas_Object *elm_fileselector_entry_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6890
6891    /**
6892     * Set the title for a given file selector entry widget's window
6893     *
6894     * @param obj The file selector entry widget
6895     * @param title The title string
6896     *
6897     * This will change the window's title, when the file selector pops
6898     * out after a click on the entry's button. Those windows have the
6899     * default (unlocalized) value of @c "Select a file" as titles.
6900     *
6901     * @note It will only take any effect if the file selector
6902     * entry widget is @b not under "inwin mode".
6903     *
6904     * @see elm_fileselector_entry_window_title_get()
6905     */
6906    EAPI void         elm_fileselector_entry_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6907
6908    /**
6909     * Get the title set for a given file selector entry widget's
6910     * window
6911     *
6912     * @param obj The file selector entry widget
6913     * @return Title of the file selector entry's window
6914     *
6915     * @see elm_fileselector_entry_window_title_get() for more details
6916     */
6917    EAPI const char  *elm_fileselector_entry_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6918
6919    /**
6920     * Set the size of a given file selector entry widget's window,
6921     * holding the file selector itself.
6922     *
6923     * @param obj The file selector entry widget
6924     * @param width The window's width
6925     * @param height The window's height
6926     *
6927     * @note it will only take any effect if the file selector entry
6928     * widget is @b not under "inwin mode". The default size for the
6929     * window (when applicable) is 400x400 pixels.
6930     *
6931     * @see elm_fileselector_entry_window_size_get()
6932     */
6933    EAPI void         elm_fileselector_entry_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6934
6935    /**
6936     * Get the size of a given file selector entry widget's window,
6937     * holding the file selector itself.
6938     *
6939     * @param obj The file selector entry widget
6940     * @param width Pointer into which to store the width value
6941     * @param height Pointer into which to store the height value
6942     *
6943     * @note Use @c NULL pointers on the size values you're not
6944     * interested in: they'll be ignored by the function.
6945     *
6946     * @see elm_fileselector_entry_window_size_set(), for more details
6947     */
6948    EAPI void         elm_fileselector_entry_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6949
6950    /**
6951     * Set the initial file system path and the entry's path string for
6952     * a given file selector entry widget
6953     *
6954     * @param obj The file selector entry widget
6955     * @param path The path string
6956     *
6957     * It must be a <b>directory</b> path, which will have the contents
6958     * displayed initially in the file selector's view, when invoked
6959     * from @p obj. The default initial path is the @c "HOME"
6960     * environment variable's value.
6961     *
6962     * @see elm_fileselector_entry_path_get()
6963     */
6964    EAPI void         elm_fileselector_entry_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6965
6966    /**
6967     * Get the entry's path string for a given file selector entry
6968     * widget
6969     *
6970     * @param obj The file selector entry widget
6971     * @return path The path string
6972     *
6973     * @see elm_fileselector_entry_path_set() for more details
6974     */
6975    EAPI const char  *elm_fileselector_entry_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6976
6977    /**
6978     * Enable/disable a tree view in the given file selector entry
6979     * widget's internal file selector
6980     *
6981     * @param obj The file selector entry widget
6982     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6983     * disable
6984     *
6985     * This has the same effect as elm_fileselector_expandable_set(),
6986     * but now applied to a file selector entry's internal file
6987     * selector.
6988     *
6989     * @note There's no way to put a file selector entry's internal
6990     * file selector in "grid mode", as one may do with "pure" file
6991     * selectors.
6992     *
6993     * @see elm_fileselector_expandable_get()
6994     */
6995    EAPI void         elm_fileselector_entry_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6996
6997    /**
6998     * Get whether tree view is enabled for the given file selector
6999     * entry widget's internal file selector
7000     *
7001     * @param obj The file selector entry widget
7002     * @return @c EINA_TRUE if @p obj widget's internal file selector
7003     * is in tree view, @c EINA_FALSE otherwise (and or errors)
7004     *
7005     * @see elm_fileselector_expandable_set() for more details
7006     */
7007    EAPI Eina_Bool    elm_fileselector_entry_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7008
7009    /**
7010     * Set whether a given file selector entry widget's internal file
7011     * selector is to display folders only or the directory contents,
7012     * as well.
7013     *
7014     * @param obj The file selector entry widget
7015     * @param only @c EINA_TRUE to make @p obj widget's internal file
7016     * selector only display directories, @c EINA_FALSE to make files
7017     * to be displayed in it too
7018     *
7019     * This has the same effect as elm_fileselector_folder_only_set(),
7020     * but now applied to a file selector entry's internal file
7021     * selector.
7022     *
7023     * @see elm_fileselector_folder_only_get()
7024     */
7025    EAPI void         elm_fileselector_entry_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
7026
7027    /**
7028     * Get whether a given file selector entry widget's internal file
7029     * selector is displaying folders only or the directory contents,
7030     * as well.
7031     *
7032     * @param obj The file selector entry widget
7033     * @return @c EINA_TRUE if @p obj widget's internal file
7034     * selector is only displaying directories, @c EINA_FALSE if files
7035     * are being displayed in it too (and on errors)
7036     *
7037     * @see elm_fileselector_entry_folder_only_set() for more details
7038     */
7039    EAPI Eina_Bool    elm_fileselector_entry_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7040
7041    /**
7042     * Enable/disable the file name entry box where the user can type
7043     * in a name for a file, in a given file selector entry widget's
7044     * internal file selector.
7045     *
7046     * @param obj The file selector entry widget
7047     * @param is_save @c EINA_TRUE to make @p obj widget's internal
7048     * file selector a "saving dialog", @c EINA_FALSE otherwise
7049     *
7050     * This has the same effect as elm_fileselector_is_save_set(),
7051     * but now applied to a file selector entry's internal file
7052     * selector.
7053     *
7054     * @see elm_fileselector_is_save_get()
7055     */
7056    EAPI void         elm_fileselector_entry_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
7057
7058    /**
7059     * Get whether the given file selector entry widget's internal
7060     * file selector is in "saving dialog" mode
7061     *
7062     * @param obj The file selector entry widget
7063     * @return @c EINA_TRUE, if @p obj widget's internal file selector
7064     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
7065     * errors)
7066     *
7067     * @see elm_fileselector_entry_is_save_set() for more details
7068     */
7069    EAPI Eina_Bool    elm_fileselector_entry_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7070
7071    /**
7072     * Set whether a given file selector entry widget's internal file
7073     * selector will raise an Elementary "inner window", instead of a
7074     * dedicated Elementary window. By default, it won't.
7075     *
7076     * @param obj The file selector entry widget
7077     * @param value @c EINA_TRUE to make it use an inner window, @c
7078     * EINA_TRUE to make it use a dedicated window
7079     *
7080     * @see elm_win_inwin_add() for more information on inner windows
7081     * @see elm_fileselector_entry_inwin_mode_get()
7082     */
7083    EAPI void         elm_fileselector_entry_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
7084
7085    /**
7086     * Get whether a given file selector entry widget's internal file
7087     * selector will raise an Elementary "inner window", instead of a
7088     * dedicated Elementary window.
7089     *
7090     * @param obj The file selector entry widget
7091     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
7092     * if it will use a dedicated window
7093     *
7094     * @see elm_fileselector_entry_inwin_mode_set() for more details
7095     */
7096    EAPI Eina_Bool    elm_fileselector_entry_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7097
7098    /**
7099     * Set the initial file system path for a given file selector entry
7100     * widget
7101     *
7102     * @param obj The file selector entry widget
7103     * @param path The path string
7104     *
7105     * It must be a <b>directory</b> path, which will have the contents
7106     * displayed initially in the file selector's view, when invoked
7107     * from @p obj. The default initial path is the @c "HOME"
7108     * environment variable's value.
7109     *
7110     * @see elm_fileselector_entry_path_get()
7111     */
7112    EAPI void         elm_fileselector_entry_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
7113
7114    /**
7115     * Get the parent directory's path to the latest file selection on
7116     * a given filer selector entry widget
7117     *
7118     * @param obj The file selector object
7119     * @return The (full) path of the directory of the last selection
7120     * on @p obj widget, a @b stringshared string
7121     *
7122     * @see elm_fileselector_entry_path_set()
7123     */
7124    EAPI const char  *elm_fileselector_entry_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7125
7126    /**
7127     * @}
7128     */
7129
7130    /**
7131     * @defgroup Scroller Scroller
7132     *
7133     * A scroller holds a single object and "scrolls it around". This means that
7134     * it allows the user to use a scrollbar (or a finger) to drag the viewable
7135     * region around, allowing to move through a much larger object that is
7136     * contained in the scroller. The scroller will always have a small minimum
7137     * size by default as it won't be limited by the contents of the scroller.
7138     *
7139     * Signals that you can add callbacks for are:
7140     * @li "edge,left" - the left edge of the content has been reached
7141     * @li "edge,right" - the right edge of the content has been reached
7142     * @li "edge,top" - the top edge of the content has been reached
7143     * @li "edge,bottom" - the bottom edge of the content has been reached
7144     * @li "scroll" - the content has been scrolled (moved)
7145     * @li "scroll,anim,start" - scrolling animation has started
7146     * @li "scroll,anim,stop" - scrolling animation has stopped
7147     * @li "scroll,drag,start" - dragging the contents around has started
7148     * @li "scroll,drag,stop" - dragging the contents around has stopped
7149     * @note The "scroll,anim,*" and "scroll,drag,*" signals are only emitted by
7150     * user intervetion.
7151     *
7152     * @note When Elemementary is in embedded mode the scrollbars will not be
7153     * dragable, they appear merely as indicators of how much has been scrolled.
7154     * @note When Elementary is in desktop mode the thumbscroll(a.k.a.
7155     * fingerscroll) won't work.
7156     *
7157     * Default contents parts of the scroller widget that you can use for are:
7158     * @li "default" - A content of the scroller
7159     *
7160     * In @ref tutorial_scroller you'll find an example of how to use most of
7161     * this API.
7162     * @{
7163     */
7164    /**
7165     * @brief Type that controls when scrollbars should appear.
7166     *
7167     * @see elm_scroller_policy_set()
7168     */
7169    typedef enum _Elm_Scroller_Policy
7170      {
7171         ELM_SCROLLER_POLICY_AUTO = 0, /**< Show scrollbars as needed */
7172         ELM_SCROLLER_POLICY_ON, /**< Always show scrollbars */
7173         ELM_SCROLLER_POLICY_OFF, /**< Never show scrollbars */
7174         ELM_SCROLLER_POLICY_LAST
7175      } Elm_Scroller_Policy;
7176    /**
7177     * @brief Add a new scroller to the parent
7178     *
7179     * @param parent The parent object
7180     * @return The new object or NULL if it cannot be created
7181     */
7182    EAPI Evas_Object *elm_scroller_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7183    /**
7184     * @brief Set the content of the scroller widget (the object to be scrolled around).
7185     *
7186     * @param obj The scroller object
7187     * @param content The new content object
7188     *
7189     * Once the content object is set, a previously set one will be deleted.
7190     * If you want to keep that old content object, use the
7191     * elm_scroller_content_unset() function.
7192     * @deprecated use elm_object_content_set() instead
7193     */
7194    EINA_DEPRECATED EAPI void elm_scroller_content_set(Evas_Object *obj, Evas_Object *child) EINA_ARG_NONNULL(1);
7195    /**
7196     * @brief Get the content of the scroller widget
7197     *
7198     * @param obj The slider object
7199     * @return The content that is being used
7200     *
7201     * Return the content object which is set for this widget
7202     *
7203     * @see elm_scroller_content_set()
7204     * @deprecated use elm_object_content_get() instead.
7205     */
7206    EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7207    /**
7208     * @brief Unset the content of the scroller widget
7209     *
7210     * @param obj The slider object
7211     * @return The content that was being used
7212     *
7213     * Unparent and return the content object which was set for this widget
7214     *
7215     * @see elm_scroller_content_set()
7216     * @deprecated use elm_object_content_unset() instead.
7217     */
7218    EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7219    /**
7220     * @brief Set custom theme elements for the scroller
7221     *
7222     * @param obj The scroller object
7223     * @param widget The widget name to use (default is "scroller")
7224     * @param base The base name to use (default is "base")
7225     */
7226    EAPI void         elm_scroller_custom_widget_base_theme_set(Evas_Object *obj, const char *widget, const char *base) EINA_ARG_NONNULL(1, 2, 3);
7227    /**
7228     * @brief Make the scroller minimum size limited to the minimum size of the content
7229     *
7230     * @param obj The scroller object
7231     * @param w Enable limiting minimum size horizontally
7232     * @param h Enable limiting minimum size vertically
7233     *
7234     * By default the scroller will be as small as its design allows,
7235     * irrespective of its content. This will make the scroller minimum size the
7236     * right size horizontally and/or vertically to perfectly fit its content in
7237     * that direction.
7238     */
7239    EAPI void         elm_scroller_content_min_limit(Evas_Object *obj, Eina_Bool w, Eina_Bool h) EINA_ARG_NONNULL(1);
7240    /**
7241     * @brief Show a specific virtual region within the scroller content object
7242     *
7243     * @param obj The scroller object
7244     * @param x X coordinate of the region
7245     * @param y Y coordinate of the region
7246     * @param w Width of the region
7247     * @param h Height of the region
7248     *
7249     * This will ensure all (or part if it does not fit) of the designated
7250     * region in the virtual content object (0, 0 starting at the top-left of the
7251     * virtual content object) is shown within the scroller.
7252     */
7253    EAPI void         elm_scroller_region_show(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
7254    /**
7255     * @brief Set the scrollbar visibility policy
7256     *
7257     * @param obj The scroller object
7258     * @param policy_h Horizontal scrollbar policy
7259     * @param policy_v Vertical scrollbar policy
7260     *
7261     * This sets the scrollbar visibility policy for the given scroller.
7262     * ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it is
7263     * needed, and otherwise kept hidden. ELM_SCROLLER_POLICY_ON turns it on all
7264     * the time, and ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
7265     * respectively for the horizontal and vertical scrollbars.
7266     */
7267    EAPI void         elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
7268    /**
7269     * @brief Gets scrollbar visibility policy
7270     *
7271     * @param obj The scroller object
7272     * @param policy_h Horizontal scrollbar policy
7273     * @param policy_v Vertical scrollbar policy
7274     *
7275     * @see elm_scroller_policy_set()
7276     */
7277    EAPI void         elm_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
7278    /**
7279     * @brief Get the currently visible content region
7280     *
7281     * @param obj The scroller object
7282     * @param x X coordinate of the region
7283     * @param y Y coordinate of the region
7284     * @param w Width of the region
7285     * @param h Height of the region
7286     *
7287     * This gets the current region in the content object that is visible through
7288     * the scroller. The region co-ordinates are returned in the @p x, @p y, @p
7289     * w, @p h values pointed to.
7290     *
7291     * @note All coordinates are relative to the content.
7292     *
7293     * @see elm_scroller_region_show()
7294     */
7295    EAPI void         elm_scroller_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
7296    /**
7297     * @brief Get the size of the content object
7298     *
7299     * @param obj The scroller object
7300     * @param w Width of the content object.
7301     * @param h Height of the content object.
7302     *
7303     * This gets the size of the content object of the scroller.
7304     */
7305    EAPI void         elm_scroller_child_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
7306    /**
7307     * @brief Set bouncing behavior
7308     *
7309     * @param obj The scroller object
7310     * @param h_bounce Allow bounce horizontally
7311     * @param v_bounce Allow bounce vertically
7312     *
7313     * When scrolling, the scroller may "bounce" when reaching an edge of the
7314     * content object. This is a visual way to indicate the end has been reached.
7315     * This is enabled by default for both axis. This API will set if it is enabled
7316     * for the given axis with the boolean parameters for each axis.
7317     */
7318    EAPI void         elm_scroller_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
7319    /**
7320     * @brief Get the bounce behaviour
7321     *
7322     * @param obj The Scroller object
7323     * @param h_bounce Will the scroller bounce horizontally or not
7324     * @param v_bounce Will the scroller bounce vertically or not
7325     *
7326     * @see elm_scroller_bounce_set()
7327     */
7328    EAPI void         elm_scroller_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
7329    /**
7330     * @brief Set scroll page size relative to viewport size.
7331     *
7332     * @param obj The scroller object
7333     * @param h_pagerel The horizontal page relative size
7334     * @param v_pagerel The vertical page relative size
7335     *
7336     * The scroller is capable of limiting scrolling by the user to "pages". That
7337     * is to jump by and only show a "whole page" at a time as if the continuous
7338     * area of the scroller content is split into page sized pieces. This sets
7339     * the size of a page relative to the viewport of the scroller. 1.0 is "1
7340     * viewport" is size (horizontally or vertically). 0.0 turns it off in that
7341     * axis. This is mutually exclusive with page size
7342     * (see elm_scroller_page_size_set()  for more information). Likewise 0.5
7343     * is "half a viewport". Sane usable values are normally between 0.0 and 1.0
7344     * including 1.0. If you only want 1 axis to be page "limited", use 0.0 for
7345     * the other axis.
7346     */
7347    EAPI void         elm_scroller_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
7348    /**
7349     * @brief Set scroll page size.
7350     *
7351     * @param obj The scroller object
7352     * @param h_pagesize The horizontal page size
7353     * @param v_pagesize The vertical page size
7354     *
7355     * This sets the page size to an absolute fixed value, with 0 turning it off
7356     * for that axis.
7357     *
7358     * @see elm_scroller_page_relative_set()
7359     */
7360    EAPI void         elm_scroller_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
7361    /**
7362     * @brief Get scroll current page number.
7363     *
7364     * @param obj The scroller object
7365     * @param h_pagenumber The horizontal page number
7366     * @param v_pagenumber The vertical page number
7367     *
7368     * The page number starts from 0. 0 is the first page.
7369     * Current page means the page which meets the top-left of the viewport.
7370     * If there are two or more pages in the viewport, it returns the number of the page
7371     * which meets the top-left of the viewport.
7372     *
7373     * @see elm_scroller_last_page_get()
7374     * @see elm_scroller_page_show()
7375     * @see elm_scroller_page_brint_in()
7376     */
7377    EAPI void         elm_scroller_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7378    /**
7379     * @brief Get scroll last page number.
7380     *
7381     * @param obj The scroller object
7382     * @param h_pagenumber The horizontal page number
7383     * @param v_pagenumber The vertical page number
7384     *
7385     * The page number starts from 0. 0 is the first page.
7386     * This returns the last page number among the pages.
7387     *
7388     * @see elm_scroller_current_page_get()
7389     * @see elm_scroller_page_show()
7390     * @see elm_scroller_page_brint_in()
7391     */
7392    EAPI void         elm_scroller_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7393    /**
7394     * Show a specific virtual region within the scroller content object by page number.
7395     *
7396     * @param obj The scroller object
7397     * @param h_pagenumber The horizontal page number
7398     * @param v_pagenumber The vertical page number
7399     *
7400     * 0, 0 of the indicated page is located at the top-left of the viewport.
7401     * This will jump to the page directly without animation.
7402     *
7403     * Example of usage:
7404     *
7405     * @code
7406     * sc = elm_scroller_add(win);
7407     * elm_scroller_content_set(sc, content);
7408     * elm_scroller_page_relative_set(sc, 1, 0);
7409     * elm_scroller_current_page_get(sc, &h_page, &v_page);
7410     * elm_scroller_page_show(sc, h_page + 1, v_page);
7411     * @endcode
7412     *
7413     * @see elm_scroller_page_bring_in()
7414     */
7415    EAPI void         elm_scroller_page_show(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7416    /**
7417     * Show a specific virtual region within the scroller content object by page number.
7418     *
7419     * @param obj The scroller object
7420     * @param h_pagenumber The horizontal page number
7421     * @param v_pagenumber The vertical page number
7422     *
7423     * 0, 0 of the indicated page is located at the top-left of the viewport.
7424     * This will slide to the page with animation.
7425     *
7426     * Example of usage:
7427     *
7428     * @code
7429     * sc = elm_scroller_add(win);
7430     * elm_scroller_content_set(sc, content);
7431     * elm_scroller_page_relative_set(sc, 1, 0);
7432     * elm_scroller_last_page_get(sc, &h_page, &v_page);
7433     * elm_scroller_page_bring_in(sc, h_page, v_page);
7434     * @endcode
7435     *
7436     * @see elm_scroller_page_show()
7437     */
7438    EAPI void         elm_scroller_page_bring_in(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7439    /**
7440     * @brief Show a specific virtual region within the scroller content object.
7441     *
7442     * @param obj The scroller object
7443     * @param x X coordinate of the region
7444     * @param y Y coordinate of the region
7445     * @param w Width of the region
7446     * @param h Height of the region
7447     *
7448     * This will ensure all (or part if it does not fit) of the designated
7449     * region in the virtual content object (0, 0 starting at the top-left of the
7450     * virtual content object) is shown within the scroller. Unlike
7451     * elm_scroller_region_show(), this allow the scroller to "smoothly slide"
7452     * to this location (if configuration in general calls for transitions). It
7453     * may not jump immediately to the new location and make take a while and
7454     * show other content along the way.
7455     *
7456     * @see elm_scroller_region_show()
7457     */
7458    EAPI void         elm_scroller_region_bring_in(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
7459    /**
7460     * @brief Set event propagation on a scroller
7461     *
7462     * @param obj The scroller object
7463     * @param propagation If propagation is enabled or not
7464     *
7465     * This enables or disabled event propagation from the scroller content to
7466     * the scroller and its parent. By default event propagation is disabled.
7467     */
7468    EAPI void         elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation) EINA_ARG_NONNULL(1);
7469    /**
7470     * @brief Get event propagation for a scroller
7471     *
7472     * @param obj The scroller object
7473     * @return The propagation state
7474     *
7475     * This gets the event propagation for a scroller.
7476     *
7477     * @see elm_scroller_propagate_events_set()
7478     */
7479    EAPI Eina_Bool    elm_scroller_propagate_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7480    /**
7481     * @brief Set scrolling gravity on a scroller
7482     *
7483     * @param obj The scroller object
7484     * @param x The scrolling horizontal gravity
7485     * @param y The scrolling vertical gravity
7486     *
7487     * The gravity, defines how the scroller will adjust its view
7488     * when the size of the scroller contents increase.
7489     *
7490     * The scroller will adjust the view to glue itself as follows.
7491     *
7492     *  x=0.0, for showing the left most region of the content.
7493     *  x=1.0, for showing the right most region of the content.
7494     *  y=0.0, for showing the bottom most region of the content.
7495     *  y=1.0, for showing the top most region of the content.
7496     *
7497     * Default values for x and y are 0.0
7498     */
7499    EAPI void         elm_scroller_gravity_set(Evas_Object *obj, double x, double y) EINA_ARG_NONNULL(1);
7500    /**
7501     * @brief Get scrolling gravity values for a scroller
7502     *
7503     * @param obj The scroller object
7504     * @param x The scrolling horizontal gravity
7505     * @param y The scrolling vertical gravity
7506     *
7507     * This gets gravity values for a scroller.
7508     *
7509     * @see elm_scroller_gravity_set()
7510     *
7511     */
7512    EAPI void         elm_scroller_gravity_get(const Evas_Object *obj, double *x, double *y) EINA_ARG_NONNULL(1);
7513    /**
7514     * @}
7515     */
7516
7517    /**
7518     * @defgroup Label Label
7519     *
7520     * @image html img/widget/label/preview-00.png
7521     * @image latex img/widget/label/preview-00.eps
7522     *
7523     * @brief Widget to display text, with simple html-like markup.
7524     *
7525     * The Label widget @b doesn't allow text to overflow its boundaries, if the
7526     * text doesn't fit the geometry of the label it will be ellipsized or be
7527     * cut. Elementary provides several styles for this widget:
7528     * @li default - No animation
7529     * @li marker - Centers the text in the label and make it bold by default
7530     * @li slide_long - The entire text appears from the right of the screen and
7531     * slides until it disappears in the left of the screen(reappering on the
7532     * right again).
7533     * @li slide_short - The text appears in the left of the label and slides to
7534     * the right to show the overflow. When all of the text has been shown the
7535     * position is reset.
7536     * @li slide_bounce - The text appears in the left of the label and slides to
7537     * the right to show the overflow. When all of the text has been shown the
7538     * animation reverses, moving the text to the left.
7539     *
7540     * Custom themes can of course invent new markup tags and style them any way
7541     * they like.
7542     *
7543     * The following signals may be emitted by the label widget:
7544     * @li "language,changed": The program's language changed.
7545     *
7546     * See @ref tutorial_label for a demonstration of how to use a label widget.
7547     * @{
7548     */
7549    /**
7550     * @brief Add a new label to the parent
7551     *
7552     * @param parent The parent object
7553     * @return The new object or NULL if it cannot be created
7554     */
7555    EAPI Evas_Object *elm_label_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7556    /**
7557     * @brief Set the label on the label object
7558     *
7559     * @param obj The label object
7560     * @param label The label will be used on the label object
7561     * @deprecated See elm_object_text_set()
7562     */
7563    EINA_DEPRECATED EAPI void elm_label_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1); /* deprecated, use elm_object_text_set instead */
7564    /**
7565     * @brief Get the label used on the label object
7566     *
7567     * @param obj The label object
7568     * @return The string inside the label
7569     * @deprecated See elm_object_text_get()
7570     */
7571    EINA_DEPRECATED EAPI const char *elm_label_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1); /* deprecated, use elm_object_text_get instead */
7572    /**
7573     * @brief Set the wrapping behavior of the label
7574     *
7575     * @param obj The label object
7576     * @param wrap To wrap text or not
7577     *
7578     * By default no wrapping is done. Possible values for @p wrap are:
7579     * @li ELM_WRAP_NONE - No wrapping
7580     * @li ELM_WRAP_CHAR - wrap between characters
7581     * @li ELM_WRAP_WORD - wrap between words
7582     * @li ELM_WRAP_MIXED - Word wrap, and if that fails, char wrap
7583     */
7584    EAPI void         elm_label_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
7585    /**
7586     * @brief Get the wrapping behavior of the label
7587     *
7588     * @param obj The label object
7589     * @return Wrap type
7590     *
7591     * @see elm_label_line_wrap_set()
7592     */
7593    EAPI Elm_Wrap_Type elm_label_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7594    /**
7595     * @brief Set wrap width of the label
7596     *
7597     * @param obj The label object
7598     * @param w The wrap width in pixels at a minimum where words need to wrap
7599     *
7600     * This function sets the maximum width size hint of the label.
7601     *
7602     * @warning This is only relevant if the label is inside a container.
7603     */
7604    EAPI void         elm_label_wrap_width_set(Evas_Object *obj, Evas_Coord w) EINA_ARG_NONNULL(1);
7605    /**
7606     * @brief Get wrap width of the label
7607     *
7608     * @param obj The label object
7609     * @return The wrap width in pixels at a minimum where words need to wrap
7610     *
7611     * @see elm_label_wrap_width_set()
7612     */
7613    EAPI Evas_Coord   elm_label_wrap_width_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7614    /**
7615     * @brief Set wrap height of the label
7616     *
7617     * @param obj The label object
7618     * @param h The wrap height in pixels at a minimum where words need to wrap
7619     *
7620     * This function sets the maximum height size hint of the label.
7621     *
7622     * @warning This is only relevant if the label is inside a container.
7623     */
7624    EAPI void         elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h) EINA_ARG_NONNULL(1);
7625    /**
7626     * @brief get wrap width of the label
7627     *
7628     * @param obj The label object
7629     * @return The wrap height in pixels at a minimum where words need to wrap
7630     */
7631    EAPI Evas_Coord   elm_label_wrap_height_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7632    /**
7633     * @brief Set the font size on the label object.
7634     *
7635     * @param obj The label object
7636     * @param size font size
7637     *
7638     * @warning NEVER use this. It is for hyper-special cases only. use styles
7639     * instead. e.g. "default", "marker", "slide_long" etc.
7640     */
7641    EAPI void         elm_label_fontsize_set(Evas_Object *obj, int fontsize) EINA_ARG_NONNULL(1);
7642    /**
7643     * @brief Set the text color on the label object
7644     *
7645     * @param obj The label object
7646     * @param r Red property background color of The label object
7647     * @param g Green property background color of The label object
7648     * @param b Blue property background color of The label object
7649     * @param a Alpha property background color of The label object
7650     *
7651     * @warning NEVER use this. It is for hyper-special cases only. use styles
7652     * instead. e.g. "default", "marker", "slide_long" etc.
7653     */
7654    EAPI void         elm_label_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a) EINA_ARG_NONNULL(1);
7655    /**
7656     * @brief Set the text align on the label object
7657     *
7658     * @param obj The label object
7659     * @param align align mode ("left", "center", "right")
7660     *
7661     * @warning NEVER use this. It is for hyper-special cases only. use styles
7662     * instead. e.g. "default", "marker", "slide_long" etc.
7663     */
7664    EAPI void         elm_label_text_align_set(Evas_Object *obj, const char *alignmode) EINA_ARG_NONNULL(1);
7665    /**
7666     * @brief Set background color of the label
7667     *
7668     * @param obj The label object
7669     * @param r Red property background color of The label object
7670     * @param g Green property background color of The label object
7671     * @param b Blue property background color of The label object
7672     * @param a Alpha property background alpha of The label object
7673     *
7674     * @warning NEVER use this. It is for hyper-special cases only. use styles
7675     * instead. e.g. "default", "marker", "slide_long" etc.
7676     */
7677    EAPI void         elm_label_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a) EINA_ARG_NONNULL(1);
7678    /**
7679     * @brief Set the ellipsis behavior of the label
7680     *
7681     * @param obj The label object
7682     * @param ellipsis To ellipsis text or not
7683     *
7684     * If set to true and the text doesn't fit in the label an ellipsis("...")
7685     * will be shown at the end of the widget.
7686     *
7687     * @warning This doesn't work with slide(elm_label_slide_set()) or if the
7688     * choosen wrap method was ELM_WRAP_WORD.
7689     */
7690    EAPI void         elm_label_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis) EINA_ARG_NONNULL(1);
7691    /**
7692     * @brief Set the text slide of the label
7693     *
7694     * @param obj The label object
7695     * @param slide To start slide or stop
7696     *
7697     * If set to true, the text of the label will slide/scroll through the length of
7698     * label.
7699     *
7700     * @warning This only works with the themes "slide_short", "slide_long" and
7701     * "slide_bounce".
7702     */
7703    EAPI void         elm_label_slide_set(Evas_Object *obj, Eina_Bool slide) EINA_ARG_NONNULL(1);
7704    /**
7705     * @brief Get the text slide mode of the label
7706     *
7707     * @param obj The label object
7708     * @return slide slide mode value
7709     *
7710     * @see elm_label_slide_set()
7711     */
7712    EAPI Eina_Bool    elm_label_slide_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7713    /**
7714     * @brief Set the slide duration(speed) of the label
7715     *
7716     * @param obj The label object
7717     * @return The duration in seconds in moving text from slide begin position
7718     * to slide end position
7719     */
7720    EAPI void         elm_label_slide_duration_set(Evas_Object *obj, double duration) EINA_ARG_NONNULL(1);
7721    /**
7722     * @brief Get the slide duration(speed) of the label
7723     *
7724     * @param obj The label object
7725     * @return The duration time in moving text from slide begin position to slide end position
7726     *
7727     * @see elm_label_slide_duration_set()
7728     */
7729    EAPI double       elm_label_slide_duration_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7730    /**
7731     * @}
7732     */
7733
7734    /**
7735     * @defgroup Toggle Toggle
7736     *
7737     * @image html img/widget/toggle/preview-00.png
7738     * @image latex img/widget/toggle/preview-00.eps
7739     *
7740     * @brief A toggle is a slider which can be used to toggle between
7741     * two values.  It has two states: on and off.
7742     *
7743     * This widget is deprecated. Please use elm_check_add() instead using the
7744     * toggle style like:
7745     *
7746     * @code
7747     * obj = elm_check_add(parent);
7748     * elm_object_style_set(obj, "toggle");
7749     * elm_object_part_text_set(obj, "on", "ON");
7750     * elm_object_part_text_set(obj, "off", "OFF");
7751     * @endcode
7752     *
7753     * Signals that you can add callbacks for are:
7754     * @li "changed" - Whenever the toggle value has been changed.  Is not called
7755     *                 until the toggle is released by the cursor (assuming it
7756     *                 has been triggered by the cursor in the first place).
7757     *
7758     * Default contents parts of the toggle widget that you can use for are:
7759     * @li "icon" - An icon of the toggle
7760     *
7761     * Default text parts of the toggle widget that you can use for are:
7762     * @li "elm.text" - Label of the toggle
7763     *
7764     * @ref tutorial_toggle show how to use a toggle.
7765     * @{
7766     */
7767    /**
7768     * @brief Add a toggle to @p parent.
7769     *
7770     * @param parent The parent object
7771     *
7772     * @return The toggle object
7773     */
7774    EINA_DEPRECATED EAPI Evas_Object *elm_toggle_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7775    /**
7776     * @brief Sets the label to be displayed with the toggle.
7777     *
7778     * @param obj The toggle object
7779     * @param label The label to be displayed
7780     *
7781     * @deprecated use elm_object_text_set() instead.
7782     */
7783    EINA_DEPRECATED EAPI void         elm_toggle_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7784    /**
7785     * @brief Gets the label of the toggle
7786     *
7787     * @param obj  toggle object
7788     * @return The label of the toggle
7789     *
7790     * @deprecated use elm_object_text_get() instead.
7791     */
7792    EINA_DEPRECATED EAPI const char  *elm_toggle_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7793    /**
7794     * @brief Set the icon used for the toggle
7795     *
7796     * @param obj The toggle object
7797     * @param icon The icon object for the button
7798     *
7799     * Once the icon object is set, a previously set one will be deleted
7800     * If you want to keep that old content object, use the
7801     * elm_toggle_icon_unset() function.
7802     *
7803     * @deprecated use elm_object_part_content_set() instead.
7804     */
7805    EINA_DEPRECATED EAPI void         elm_toggle_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
7806    /**
7807     * @brief Get the icon used for the toggle
7808     *
7809     * @param obj The toggle object
7810     * @return The icon object that is being used
7811     *
7812     * Return the icon object which is set for this widget.
7813     *
7814     * @see elm_toggle_icon_set()
7815     *
7816     * @deprecated use elm_object_part_content_get() instead.
7817     */
7818    EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7819    /**
7820     * @brief Unset the icon used for the toggle
7821     *
7822     * @param obj The toggle object
7823     * @return The icon object that was being used
7824     *
7825     * Unparent and return the icon object which was set for this widget.
7826     *
7827     * @see elm_toggle_icon_set()
7828     *
7829     * @deprecated use elm_object_part_content_unset() instead.
7830     */
7831    EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7832    /**
7833     * @brief Sets the labels to be associated with the on and off states of the toggle.
7834     *
7835     * @param obj The toggle object
7836     * @param onlabel The label displayed when the toggle is in the "on" state
7837     * @param offlabel The label displayed when the toggle is in the "off" state
7838     *
7839     * @deprecated use elm_object_part_text_set() for "on" and "off" parts
7840     * instead.
7841     */
7842    EINA_DEPRECATED EAPI void         elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel) EINA_ARG_NONNULL(1);
7843    /**
7844     * @brief Gets the labels associated with the on and off states of the
7845     * toggle.
7846     *
7847     * @param obj The toggle object
7848     * @param onlabel A char** to place the onlabel of @p obj into
7849     * @param offlabel A char** to place the offlabel of @p obj into
7850     *
7851     * @deprecated use elm_object_part_text_get() for "on" and "off" parts
7852     * instead.
7853     */
7854    EINA_DEPRECATED EAPI void         elm_toggle_states_labels_get(const Evas_Object *obj, const char **onlabel, const char **offlabel) EINA_ARG_NONNULL(1);
7855    /**
7856     * @brief Sets the state of the toggle to @p state.
7857     *
7858     * @param obj The toggle object
7859     * @param state The state of @p obj
7860     *
7861     * @deprecated use elm_check_state_set() instead.
7862     */
7863    EINA_DEPRECATED EAPI void         elm_toggle_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
7864    /**
7865     * @brief Gets the state of the toggle to @p state.
7866     *
7867     * @param obj The toggle object
7868     * @return The state of @p obj
7869     *
7870     * @deprecated use elm_check_state_get() instead.
7871     */
7872    EINA_DEPRECATED EAPI Eina_Bool    elm_toggle_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7873    /**
7874     * @brief Sets the state pointer of the toggle to @p statep.
7875     *
7876     * @param obj The toggle object
7877     * @param statep The state pointer of @p obj
7878     *
7879     * @deprecated use elm_check_state_pointer_set() instead.
7880     */
7881    EINA_DEPRECATED EAPI void         elm_toggle_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
7882    /**
7883     * @}
7884     */
7885
7886    /**
7887     * @defgroup Frame Frame
7888     *
7889     * @image html img/widget/frame/preview-00.png
7890     * @image latex img/widget/frame/preview-00.eps
7891     *
7892     * @brief Frame is a widget that holds some content and has a title.
7893     *
7894     * The default look is a frame with a title, but Frame supports multple
7895     * styles:
7896     * @li default
7897     * @li pad_small
7898     * @li pad_medium
7899     * @li pad_large
7900     * @li pad_huge
7901     * @li outdent_top
7902     * @li outdent_bottom
7903     *
7904     * Of all this styles only default shows the title. Frame emits no signals.
7905     *
7906     * Default contents parts of the frame widget that you can use for are:
7907     * @li "default" - A content of the frame
7908     *
7909     * Default text parts of the frame widget that you can use for are:
7910     * @li "elm.text" - Label of the frame
7911     *
7912     * For a detailed example see the @ref tutorial_frame.
7913     *
7914     * @{
7915     */
7916    /**
7917     * @brief Add a new frame to the parent
7918     *
7919     * @param parent The parent object
7920     * @return The new object or NULL if it cannot be created
7921     */
7922    EAPI Evas_Object *elm_frame_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7923    /**
7924     * @brief Set the frame label
7925     *
7926     * @param obj The frame object
7927     * @param label The label of this frame object
7928     *
7929     * @deprecated use elm_object_text_set() instead.
7930     */
7931    EINA_DEPRECATED EAPI void         elm_frame_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7932    /**
7933     * @brief Get the frame label
7934     *
7935     * @param obj The frame object
7936     *
7937     * @return The label of this frame objet or NULL if unable to get frame
7938     *
7939     * @deprecated use elm_object_text_get() instead.
7940     */
7941    EINA_DEPRECATED EAPI const char  *elm_frame_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7942    /**
7943     * @brief Set the content of the frame widget
7944     *
7945     * Once the content object is set, a previously set one will be deleted.
7946     * If you want to keep that old content object, use the
7947     * elm_frame_content_unset() function.
7948     *
7949     * @param obj The frame object
7950     * @param content The content will be filled in this frame object
7951     *
7952     * @deprecated use elm_object_content_set() instead.
7953     */
7954    EINA_DEPRECATED EAPI void         elm_frame_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
7955    /**
7956     * @brief Get the content of the frame widget
7957     *
7958     * Return the content object which is set for this widget
7959     *
7960     * @param obj The frame object
7961     * @return The content that is being used
7962     *
7963     * @deprecated use elm_object_content_get() instead.
7964     */
7965    EINA_DEPRECATED EAPI Evas_Object *elm_frame_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7966    /**
7967     * @brief Unset the content of the frame widget
7968     *
7969     * Unparent and return the content object which was set for this widget
7970     *
7971     * @param obj The frame object
7972     * @return The content that was being used
7973     *
7974     * @deprecated use elm_object_content_unset() instead.
7975     */
7976    EINA_DEPRECATED EAPI Evas_Object *elm_frame_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7977    /**
7978     * @}
7979     */
7980
7981    /**
7982     * @defgroup Table Table
7983     *
7984     * A container widget to arrange other widgets in a table where items can
7985     * also span multiple columns or rows - even overlap (and then be raised or
7986     * lowered accordingly to adjust stacking if they do overlap).
7987     *
7988     * For a Table widget the row/column count is not fixed.
7989     * The table widget adjusts itself when subobjects are added to it dynamically.
7990     *
7991     * The followin are examples of how to use a table:
7992     * @li @ref tutorial_table_01
7993     * @li @ref tutorial_table_02
7994     *
7995     * @{
7996     */
7997    /**
7998     * @brief Add a new table to the parent
7999     *
8000     * @param parent The parent object
8001     * @return The new object or NULL if it cannot be created
8002     */
8003    EAPI Evas_Object *elm_table_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
8004    /**
8005     * @brief Set the homogeneous layout in the table
8006     *
8007     * @param obj The layout object
8008     * @param homogeneous A boolean to set if the layout is homogeneous in the
8009     * table (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
8010     */
8011    EAPI void         elm_table_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
8012    /**
8013     * @brief Get the current table homogeneous mode.
8014     *
8015     * @param obj The table object
8016     * @return A boolean to indicating if the layout is homogeneous in the table
8017     * (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
8018     */
8019    EAPI Eina_Bool    elm_table_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8020    /**
8021     * @brief Set padding between cells.
8022     *
8023     * @param obj The layout object.
8024     * @param horizontal set the horizontal padding.
8025     * @param vertical set the vertical padding.
8026     *
8027     * Default value is 0.
8028     */
8029    EAPI void         elm_table_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
8030    /**
8031     * @brief Get padding between cells.
8032     *
8033     * @param obj The layout object.
8034     * @param horizontal set the horizontal padding.
8035     * @param vertical set the vertical padding.
8036     */
8037    EAPI void         elm_table_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
8038    /**
8039     * @brief Add a subobject on the table with the coordinates passed
8040     *
8041     * @param obj The table object
8042     * @param subobj The subobject to be added to the table
8043     * @param x Row number
8044     * @param y Column number
8045     * @param w rowspan
8046     * @param h colspan
8047     *
8048     * @note All positioning inside the table is relative to rows and columns, so
8049     * a value of 0 for x and y, means the top left cell of the table, and a
8050     * value of 1 for w and h means @p subobj only takes that 1 cell.
8051     */
8052    EAPI void         elm_table_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
8053    /**
8054     * @brief Remove child from table.
8055     *
8056     * @param obj The table object
8057     * @param subobj The subobject
8058     */
8059    EAPI void         elm_table_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
8060    /**
8061     * @brief Faster way to remove all child objects from a table object.
8062     *
8063     * @param obj The table object
8064     * @param clear If true, will delete children, else just remove from table.
8065     */
8066    EAPI void         elm_table_clear(Evas_Object *obj, Eina_Bool clear) EINA_ARG_NONNULL(1);
8067    /**
8068     * @brief Set the packing location of an existing child of the table
8069     *
8070     * @param subobj The subobject to be modified in the table
8071     * @param x Row number
8072     * @param y Column number
8073     * @param w rowspan
8074     * @param h colspan
8075     *
8076     * Modifies the position of an object already in the table.
8077     *
8078     * @note All positioning inside the table is relative to rows and columns, so
8079     * a value of 0 for x and y, means the top left cell of the table, and a
8080     * value of 1 for w and h means @p subobj only takes that 1 cell.
8081     */
8082    EAPI void         elm_table_pack_set(Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
8083    /**
8084     * @brief Get the packing location of an existing child of the table
8085     *
8086     * @param subobj The subobject to be modified in the table
8087     * @param x Row number
8088     * @param y Column number
8089     * @param w rowspan
8090     * @param h colspan
8091     *
8092     * @see elm_table_pack_set()
8093     */
8094    EAPI void         elm_table_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
8095    /**
8096     * @}
8097     */
8098
8099    /* TEMPORARY: DOCS WILL BE FILLED IN WITH CNP/SED */
8100    typedef struct Elm_Gen_Item Elm_Gen_Item;
8101    typedef struct _Elm_Gen_Item_Class Elm_Gen_Item_Class;
8102    typedef struct _Elm_Gen_Item_Class_Func Elm_Gen_Item_Class_Func; /**< Class functions for gen item classes. */
8103    typedef char        *(*Elm_Gen_Item_Text_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< Label fetching class function for gen item classes. */
8104    typedef Evas_Object *(*Elm_Gen_Item_Content_Get_Cb)  (void *data, Evas_Object *obj, const char *part); /**< Content(swallowed object) fetching class function for gen item classes. */
8105    typedef Eina_Bool    (*Elm_Gen_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< State fetching class function for gen item classes. */
8106    typedef void         (*Elm_Gen_Item_Del_Cb)      (void *data, Evas_Object *obj); /**< Deletion class function for gen item classes. */
8107    struct _Elm_Gen_Item_Class
8108      {
8109         const char             *item_style;
8110         struct _Elm_Gen_Item_Class_Func
8111           {
8112              Elm_Gen_Item_Text_Get_Cb  text_get;
8113              Elm_Gen_Item_Content_Get_Cb  content_get;
8114              Elm_Gen_Item_State_Get_Cb state_get;
8115              Elm_Gen_Item_Del_Cb       del;
8116           } func;
8117      };
8118    EINA_DEPRECATED EAPI void elm_gen_clear(Evas_Object *obj);
8119    EINA_DEPRECATED EAPI void elm_gen_item_selected_set(Elm_Gen_Item *it, Eina_Bool selected);
8120    EINA_DEPRECATED EAPI Eina_Bool elm_gen_item_selected_get(const Elm_Gen_Item *it);
8121    EINA_DEPRECATED EAPI void elm_gen_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
8122    EINA_DEPRECATED EAPI Eina_Bool elm_gen_always_select_mode_get(const Evas_Object *obj);
8123    EINA_DEPRECATED EAPI void elm_gen_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
8124    EINA_DEPRECATED EAPI Eina_Bool elm_gen_no_select_mode_get(const Evas_Object *obj);
8125    EINA_DEPRECATED EAPI void elm_gen_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
8126    EINA_DEPRECATED EAPI void elm_gen_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
8127    EINA_DEPRECATED EAPI void elm_gen_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel);
8128    EINA_DEPRECATED EAPI void elm_gen_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel);
8129
8130    EINA_DEPRECATED EAPI void elm_gen_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize);
8131    EINA_DEPRECATED EAPI void elm_gen_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
8132    EINA_DEPRECATED EAPI void elm_gen_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
8133    EINA_DEPRECATED EAPI void elm_gen_page_show(const Evas_Object *obj, int h_pagenumber, int v_pagenumber);
8134    EINA_DEPRECATED EAPI void elm_gen_page_bring_in(const Evas_Object *obj, int h_pagenumber, int v_pagenumber);
8135    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_first_item_get(const Evas_Object *obj);
8136    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_last_item_get(const Evas_Object *obj);
8137    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_item_next_get(const Elm_Gen_Item *it);
8138    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_item_prev_get(const Elm_Gen_Item *it);
8139    EINA_DEPRECATED EAPI Evas_Object *elm_gen_item_widget_get(const Elm_Gen_Item *it);
8140
8141    /**
8142     * @defgroup Gengrid Gengrid (Generic grid)
8143     *
8144     * This widget aims to position objects in a grid layout while
8145     * actually creating and rendering only the visible ones, using the
8146     * same idea as the @ref Genlist "genlist": the user defines a @b
8147     * class for each item, specifying functions that will be called at
8148     * object creation, deletion, etc. When those items are selected by
8149     * the user, a callback function is issued. Users may interact with
8150     * a gengrid via the mouse (by clicking on items to select them and
8151     * clicking on the grid's viewport and swiping to pan the whole
8152     * view) or via the keyboard, navigating through item with the
8153     * arrow keys.
8154     *
8155     * @section Gengrid_Layouts Gengrid layouts
8156     *
8157     * Gengrid may layout its items in one of two possible layouts:
8158     * - horizontal or
8159     * - vertical.
8160     *
8161     * When in "horizontal mode", items will be placed in @b columns,
8162     * from top to bottom and, when the space for a column is filled,
8163     * another one is started on the right, thus expanding the grid
8164     * horizontally, making for horizontal scrolling. When in "vertical
8165     * mode" , though, items will be placed in @b rows, from left to
8166     * right and, when the space for a row is filled, another one is
8167     * started below, thus expanding the grid vertically (and making
8168     * for vertical scrolling).
8169     *
8170     * @section Gengrid_Items Gengrid items
8171     *
8172     * An item in a gengrid can have 0 or more texts (they can be
8173     * regular text or textblock Evas objects - that's up to the style
8174     * to determine), 0 or more contents (which are simply objects
8175     * swallowed into the gengrid item's theming Edje object) and 0 or
8176     * more <b>boolean states</b>, which have the behavior left to the
8177     * user to define. The Edje part names for each of these properties
8178     * will be looked up, in the theme file for the gengrid, under the
8179     * Edje (string) data items named @c "texts", @c "contents" and @c
8180     * "states", respectively. For each of those properties, if more
8181     * than one part is provided, they must have names listed separated
8182     * by spaces in the data fields. For the default gengrid item
8183     * theme, we have @b one text part (@c "elm.text"), @b two content 
8184     * parts (@c "elm.swalllow.icon" and @c "elm.swallow.end") and @b
8185     * no state parts.
8186     *
8187     * A gengrid item may be at one of several styles. Elementary
8188     * provides one by default - "default", but this can be extended by
8189     * system or application custom themes/overlays/extensions (see
8190     * @ref Theme "themes" for more details).
8191     *
8192     * @section Gengrid_Item_Class Gengrid item classes
8193     *
8194     * In order to have the ability to add and delete items on the fly,
8195     * gengrid implements a class (callback) system where the
8196     * application provides a structure with information about that
8197     * type of item (gengrid may contain multiple different items with
8198     * different classes, states and styles). Gengrid will call the
8199     * functions in this struct (methods) when an item is "realized"
8200     * (i.e., created dynamically, while the user is scrolling the
8201     * grid). All objects will simply be deleted when no longer needed
8202     * with evas_object_del(). The #Elm_GenGrid_Item_Class structure
8203     * contains the following members:
8204     * - @c item_style - This is a constant string and simply defines
8205     * the name of the item style. It @b must be specified and the
8206     * default should be @c "default".
8207     * - @c func.text_get - This function is called when an item
8208     * object is actually created. The @c data parameter will point to
8209     * the same data passed to elm_gengrid_item_append() and related
8210     * item creation functions. The @c obj parameter is the gengrid
8211     * object itself, while the @c part one is the name string of one
8212     * of the existing text parts in the Edje group implementing the
8213     * item's theme. This function @b must return a strdup'()ed string,
8214     * as the caller will free() it when done. See
8215     * #Elm_Gengrid_Item_Text_Get_Cb.
8216     * - @c func.content_get - This function is called when an item object
8217     * is actually created. The @c data parameter will point to the
8218     * same data passed to elm_gengrid_item_append() and related item
8219     * creation functions. The @c obj parameter is the gengrid object
8220     * itself, while the @c part one is the name string of one of the
8221     * existing (content) swallow parts in the Edje group implementing the
8222     * item's theme. It must return @c NULL, when no content is desired,
8223     * or a valid object handle, otherwise. The object will be deleted
8224     * by the gengrid on its deletion or when the item is "unrealized".
8225     * See #Elm_Gengrid_Item_Content_Get_Cb.
8226     * - @c func.state_get - This function is called when an item
8227     * object is actually created. The @c data parameter will point to
8228     * the same data passed to elm_gengrid_item_append() and related
8229     * item creation functions. The @c obj parameter is the gengrid
8230     * object itself, while the @c part one is the name string of one
8231     * of the state parts in the Edje group implementing the item's
8232     * theme. Return @c EINA_FALSE for false/off or @c EINA_TRUE for
8233     * true/on. Gengrids will emit a signal to its theming Edje object
8234     * with @c "elm,state,XXX,active" and @c "elm" as "emission" and
8235     * "source" arguments, respectively, when the state is true (the
8236     * default is false), where @c XXX is the name of the (state) part.
8237     * See #Elm_Gengrid_Item_State_Get_Cb.
8238     * - @c func.del - This is called when elm_gengrid_item_del() is
8239     * called on an item or elm_gengrid_clear() is called on the
8240     * gengrid. This is intended for use when gengrid items are
8241     * deleted, so any data attached to the item (e.g. its data
8242     * parameter on creation) can be deleted. See #Elm_Gengrid_Item_Del_Cb.
8243     *
8244     * @section Gengrid_Usage_Hints Usage hints
8245     *
8246     * If the user wants to have multiple items selected at the same
8247     * time, elm_gengrid_multi_select_set() will permit it. If the
8248     * gengrid is single-selection only (the default), then
8249     * elm_gengrid_select_item_get() will return the selected item or
8250     * @c NULL, if none is selected. If the gengrid is under
8251     * multi-selection, then elm_gengrid_selected_items_get() will
8252     * return a list (that is only valid as long as no items are
8253     * modified (added, deleted, selected or unselected) of child items
8254     * on a gengrid.
8255     *
8256     * If an item changes (internal (boolean) state, text or content
8257     * changes), then use elm_gengrid_item_update() to have gengrid
8258     * update the item with the new state. A gengrid will re-"realize"
8259     * the item, thus calling the functions in the
8260     * #Elm_Gengrid_Item_Class set for that item.
8261     *
8262     * To programmatically (un)select an item, use
8263     * elm_gengrid_item_selected_set(). To get its selected state use
8264     * elm_gengrid_item_selected_get(). To make an item disabled
8265     * (unable to be selected and appear differently) use
8266     * elm_gengrid_item_disabled_set() to set this and
8267     * elm_gengrid_item_disabled_get() to get the disabled state.
8268     *
8269     * Grid cells will only have their selection smart callbacks called
8270     * when firstly getting selected. Any further clicks will do
8271     * nothing, unless you enable the "always select mode", with
8272     * elm_gengrid_always_select_mode_set(), thus making every click to
8273     * issue selection callbacks. elm_gengrid_no_select_mode_set() will
8274     * turn off the ability to select items entirely in the widget and
8275     * they will neither appear selected nor call the selection smart
8276     * callbacks.
8277     *
8278     * Remember that you can create new styles and add your own theme
8279     * augmentation per application with elm_theme_extension_add(). If
8280     * you absolutely must have a specific style that overrides any
8281     * theme the user or system sets up you can use
8282     * elm_theme_overlay_add() to add such a file.
8283     *
8284     * @section Gengrid_Smart_Events Gengrid smart events
8285     *
8286     * Smart events that you can add callbacks for are:
8287     * - @c "activated" - The user has double-clicked or pressed
8288     *   (enter|return|spacebar) on an item. The @c event_info parameter
8289     *   is the gengrid item that was activated.
8290     * - @c "clicked,double" - The user has double-clicked an item.
8291     *   The @c event_info parameter is the gengrid item that was double-clicked.
8292     * - @c "longpressed" - This is called when the item is pressed for a certain
8293     *   amount of time. By default it's 1 second.
8294     * - @c "selected" - The user has made an item selected. The
8295     *   @c event_info parameter is the gengrid item that was selected.
8296     * - @c "unselected" - The user has made an item unselected. The
8297     *   @c event_info parameter is the gengrid item that was unselected.
8298     * - @c "realized" - This is called when the item in the gengrid
8299     *   has its implementing Evas object instantiated, de facto. @c
8300     *   event_info is the gengrid item that was created. The object
8301     *   may be deleted at any time, so it is highly advised to the
8302     *   caller @b not to use the object pointer returned from
8303     *   elm_gengrid_item_object_get(), because it may point to freed
8304     *   objects.
8305     * - @c "unrealized" - This is called when the implementing Evas
8306     *   object for this item is deleted. @c event_info is the gengrid
8307     *   item that was deleted.
8308     * - @c "changed" - Called when an item is added, removed, resized
8309     *   or moved and when the gengrid is resized or gets "horizontal"
8310     *   property changes.
8311     * - @c "scroll,anim,start" - This is called when scrolling animation has
8312     *   started.
8313     * - @c "scroll,anim,stop" - This is called when scrolling animation has
8314     *   stopped.
8315     * - @c "drag,start,up" - Called when the item in the gengrid has
8316     *   been dragged (not scrolled) up.
8317     * - @c "drag,start,down" - Called when the item in the gengrid has
8318     *   been dragged (not scrolled) down.
8319     * - @c "drag,start,left" - Called when the item in the gengrid has
8320     *   been dragged (not scrolled) left.
8321     * - @c "drag,start,right" - Called when the item in the gengrid has
8322     *   been dragged (not scrolled) right.
8323     * - @c "drag,stop" - Called when the item in the gengrid has
8324     *   stopped being dragged.
8325     * - @c "drag" - Called when the item in the gengrid is being
8326     *   dragged.
8327     * - @c "scroll" - called when the content has been scrolled
8328     *   (moved).
8329     * - @c "scroll,drag,start" - called when dragging the content has
8330     *   started.
8331     * - @c "scroll,drag,stop" - called when dragging the content has
8332     *   stopped.
8333     * - @c "edge,top" - This is called when the gengrid is scrolled until
8334     *   the top edge.
8335     * - @c "edge,bottom" - This is called when the gengrid is scrolled
8336     *   until the bottom edge.
8337     * - @c "edge,left" - This is called when the gengrid is scrolled
8338     *   until the left edge.
8339     * - @c "edge,right" - This is called when the gengrid is scrolled
8340     *   until the right edge.
8341     *
8342     * List of gengrid examples:
8343     * @li @ref gengrid_example
8344     */
8345
8346    /**
8347     * @addtogroup Gengrid
8348     * @{
8349     */
8350
8351    typedef struct _Elm_Gengrid_Item_Class Elm_Gengrid_Item_Class; /**< Gengrid item class definition structs */
8352    #define Elm_Gengrid_Item_Class Elm_Gen_Item_Class
8353    typedef struct _Elm_Gengrid_Item Elm_Gengrid_Item; /**< Gengrid item handles */
8354    #define Elm_Gengrid_Item Elm_Gen_Item /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
8355    typedef struct _Elm_Gengrid_Item_Class_Func Elm_Gengrid_Item_Class_Func; /**< Class functions for gengrid item classes. */
8356    /**
8357     * Text fetching class function for Elm_Gen_Item_Class.
8358     * @param data The data passed in the item creation function
8359     * @param obj The base widget object
8360     * @param part The part name of the swallow
8361     * @return The allocated (NOT stringshared) string to set as the text 
8362     */
8363    typedef char        *(*Elm_Gengrid_Item_Text_Get_Cb) (void *data, Evas_Object *obj, const char *part);
8364    /**
8365     * Content (swallowed object) fetching class function for Elm_Gen_Item_Class.
8366     * @param data The data passed in the item creation function
8367     * @param obj The base widget object
8368     * @param part The part name of the swallow
8369     * @return The content object to swallow
8370     */
8371    typedef Evas_Object *(*Elm_Gengrid_Item_Content_Get_Cb)  (void *data, Evas_Object *obj, const char *part);
8372    /**
8373     * State fetching class function for Elm_Gen_Item_Class.
8374     * @param data The data passed in the item creation function
8375     * @param obj The base widget object
8376     * @param part The part name of the swallow
8377     * @return The hell if I know
8378     */
8379    typedef Eina_Bool    (*Elm_Gengrid_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part);
8380    /**
8381     * Deletion class function for Elm_Gen_Item_Class.
8382     * @param data The data passed in the item creation function
8383     * @param obj The base widget object
8384     */
8385    typedef void         (*Elm_Gengrid_Item_Del_Cb)      (void *data, Evas_Object *obj);
8386
8387    /**
8388     * @struct _Elm_Gengrid_Item_Class
8389     *
8390     * Gengrid item class definition. See @ref Gengrid_Item_Class for
8391     * field details.
8392     */
8393    struct _Elm_Gengrid_Item_Class
8394      {
8395         const char             *item_style;
8396         struct _Elm_Gengrid_Item_Class_Func
8397           {
8398              Elm_Gengrid_Item_Text_Get_Cb    text_get; /**< Text fetching class function for gengrid item classes.*/
8399              Elm_Gengrid_Item_Content_Get_Cb content_get; /**< Content fetching class function for gengrid item classes. */
8400              Elm_Gengrid_Item_State_Get_Cb   state_get; /**< State fetching class function for gengrid item classes. */
8401              Elm_Gengrid_Item_Del_Cb         del; /**< Deletion class function for gengrid item classes. */
8402           } func;
8403      }; /**< #Elm_Gengrid_Item_Class member definitions */
8404    #define Elm_Gengrid_Item_Class_Func Elm_Gen_Item_Class_Func
8405    /**
8406     * Add a new gengrid widget to the given parent Elementary
8407     * (container) object
8408     *
8409     * @param parent The parent object
8410     * @return a new gengrid widget handle or @c NULL, on errors
8411     *
8412     * This function inserts a new gengrid widget on the canvas.
8413     *
8414     * @see elm_gengrid_item_size_set()
8415     * @see elm_gengrid_group_item_size_set()
8416     * @see elm_gengrid_horizontal_set()
8417     * @see elm_gengrid_item_append()
8418     * @see elm_gengrid_item_del()
8419     * @see elm_gengrid_clear()
8420     *
8421     * @ingroup Gengrid
8422     */
8423    EAPI Evas_Object       *elm_gengrid_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
8424
8425    /**
8426     * Set the size for the items of a given gengrid widget
8427     *
8428     * @param obj The gengrid object.
8429     * @param w The items' width.
8430     * @param h The items' height;
8431     *
8432     * A gengrid, after creation, has still no information on the size
8433     * to give to each of its cells. So, you most probably will end up
8434     * with squares one @ref Fingers "finger" wide, the default
8435     * size. Use this function to force a custom size for you items,
8436     * making them as big as you wish.
8437     *
8438     * @see elm_gengrid_item_size_get()
8439     *
8440     * @ingroup Gengrid
8441     */
8442    EAPI void               elm_gengrid_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8443
8444    /**
8445     * Get the size set for the items of a given gengrid widget
8446     *
8447     * @param obj The gengrid object.
8448     * @param w Pointer to a variable where to store the items' width.
8449     * @param h Pointer to a variable where to store the items' height.
8450     *
8451     * @note Use @c NULL pointers on the size values you're not
8452     * interested in: they'll be ignored by the function.
8453     *
8454     * @see elm_gengrid_item_size_get() for more details
8455     *
8456     * @ingroup Gengrid
8457     */
8458    EAPI void               elm_gengrid_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8459
8460    /**
8461     * Set the size for the group items of a given gengrid widget
8462     *
8463     * @param obj The gengrid object.
8464     * @param w The group items' width.
8465     * @param h The group items' height;
8466     *
8467     * A gengrid, after creation, has still no information on the size
8468     * to give to each of its cells. So, you most probably will end up
8469     * with squares one @ref Fingers "finger" wide, the default
8470     * size. Use this function to force a custom size for you group items,
8471     * making them as big as you wish.
8472     *
8473     * @see elm_gengrid_group_item_size_get()
8474     *
8475     * @ingroup Gengrid
8476     */
8477    EAPI void               elm_gengrid_group_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8478
8479    /**
8480     * Get the size set for the group items of a given gengrid widget
8481     *
8482     * @param obj The gengrid object.
8483     * @param w Pointer to a variable where to store the group items' width.
8484     * @param h Pointer to a variable where to store the group items' height.
8485     *
8486     * @note Use @c NULL pointers on the size values you're not
8487     * interested in: they'll be ignored by the function.
8488     *
8489     * @see elm_gengrid_group_item_size_get() for more details
8490     *
8491     * @ingroup Gengrid
8492     */
8493    EAPI void               elm_gengrid_group_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8494
8495    /**
8496     * Set the items grid's alignment within a given gengrid widget
8497     *
8498     * @param obj The gengrid object.
8499     * @param align_x Alignment in the horizontal axis (0 <= align_x <= 1).
8500     * @param align_y Alignment in the vertical axis (0 <= align_y <= 1).
8501     *
8502     * This sets the alignment of the whole grid of items of a gengrid
8503     * within its given viewport. By default, those values are both
8504     * 0.5, meaning that the gengrid will have its items grid placed
8505     * exactly in the middle of its viewport.
8506     *
8507     * @note If given alignment values are out of the cited ranges,
8508     * they'll be changed to the nearest boundary values on the valid
8509     * ranges.
8510     *
8511     * @see elm_gengrid_align_get()
8512     *
8513     * @ingroup Gengrid
8514     */
8515    EAPI void               elm_gengrid_align_set(Evas_Object *obj, double align_x, double align_y) EINA_ARG_NONNULL(1);
8516
8517    /**
8518     * Get the items grid's alignment values within a given gengrid
8519     * widget
8520     *
8521     * @param obj The gengrid object.
8522     * @param align_x Pointer to a variable where to store the
8523     * horizontal alignment.
8524     * @param align_y Pointer to a variable where to store the vertical
8525     * alignment.
8526     *
8527     * @note Use @c NULL pointers on the alignment values you're not
8528     * interested in: they'll be ignored by the function.
8529     *
8530     * @see elm_gengrid_align_set() for more details
8531     *
8532     * @ingroup Gengrid
8533     */
8534    EAPI void               elm_gengrid_align_get(const Evas_Object *obj, double *align_x, double *align_y) EINA_ARG_NONNULL(1);
8535
8536    /**
8537     * Set whether a given gengrid widget is or not able have items
8538     * @b reordered
8539     *
8540     * @param obj The gengrid object
8541     * @param reorder_mode Use @c EINA_TRUE to turn reoderding on,
8542     * @c EINA_FALSE to turn it off
8543     *
8544     * If a gengrid is set to allow reordering, a click held for more
8545     * than 0.5 over a given item will highlight it specially,
8546     * signalling the gengrid has entered the reordering state. From
8547     * that time on, the user will be able to, while still holding the
8548     * mouse button down, move the item freely in the gengrid's
8549     * viewport, replacing to said item to the locations it goes to.
8550     * The replacements will be animated and, whenever the user
8551     * releases the mouse button, the item being replaced gets a new
8552     * definitive place in the grid.
8553     *
8554     * @see elm_gengrid_reorder_mode_get()
8555     *
8556     * @ingroup Gengrid
8557     */
8558    EAPI void               elm_gengrid_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
8559
8560    /**
8561     * Get whether a given gengrid widget is or not able have items
8562     * @b reordered
8563     *
8564     * @param obj The gengrid object
8565     * @return @c EINA_TRUE, if reoderding is on, @c EINA_FALSE if it's
8566     * off
8567     *
8568     * @see elm_gengrid_reorder_mode_set() for more details
8569     *
8570     * @ingroup Gengrid
8571     */
8572    EAPI Eina_Bool          elm_gengrid_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8573
8574    /**
8575     * Append a new item in a given gengrid widget.
8576     *
8577     * @param obj The gengrid object.
8578     * @param gic The item class for the item.
8579     * @param data The item data.
8580     * @param func Convenience function called when the item is
8581     * selected.
8582     * @param func_data Data to be passed to @p func.
8583     * @return A handle to the item added or @c NULL, on errors.
8584     *
8585     * This adds an item to the beginning of the gengrid.
8586     *
8587     * @see elm_gengrid_item_prepend()
8588     * @see elm_gengrid_item_insert_before()
8589     * @see elm_gengrid_item_insert_after()
8590     * @see elm_gengrid_item_del()
8591     *
8592     * @ingroup Gengrid
8593     */
8594    EAPI Elm_Gengrid_Item  *elm_gengrid_item_append(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8595
8596    /**
8597     * Prepend a new item in a given gengrid widget.
8598     *
8599     * @param obj The gengrid object.
8600     * @param gic The item class for the item.
8601     * @param data The item data.
8602     * @param func Convenience function called when the item is
8603     * selected.
8604     * @param func_data Data to be passed to @p func.
8605     * @return A handle to the item added or @c NULL, on errors.
8606     *
8607     * This adds an item to the end of the gengrid.
8608     *
8609     * @see elm_gengrid_item_append()
8610     * @see elm_gengrid_item_insert_before()
8611     * @see elm_gengrid_item_insert_after()
8612     * @see elm_gengrid_item_del()
8613     *
8614     * @ingroup Gengrid
8615     */
8616    EAPI Elm_Gengrid_Item  *elm_gengrid_item_prepend(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8617
8618    /**
8619     * Insert an item before another in a gengrid widget
8620     *
8621     * @param obj The gengrid object.
8622     * @param gic The item class for the item.
8623     * @param data The item data.
8624     * @param relative The item to place this new one before.
8625     * @param func Convenience function called when the item is
8626     * selected.
8627     * @param func_data Data to be passed to @p func.
8628     * @return A handle to the item added or @c NULL, on errors.
8629     *
8630     * This inserts an item before another in the gengrid.
8631     *
8632     * @see elm_gengrid_item_append()
8633     * @see elm_gengrid_item_prepend()
8634     * @see elm_gengrid_item_insert_after()
8635     * @see elm_gengrid_item_del()
8636     *
8637     * @ingroup Gengrid
8638     */
8639    EAPI Elm_Gengrid_Item  *elm_gengrid_item_insert_before(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Elm_Gengrid_Item *relative, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8640
8641    /**
8642     * Insert an item after another in a gengrid widget
8643     *
8644     * @param obj The gengrid object.
8645     * @param gic The item class for the item.
8646     * @param data The item data.
8647     * @param relative The item to place this new one after.
8648     * @param func Convenience function called when the item is
8649     * selected.
8650     * @param func_data Data to be passed to @p func.
8651     * @return A handle to the item added or @c NULL, on errors.
8652     *
8653     * This inserts an item after another in the gengrid.
8654     *
8655     * @see elm_gengrid_item_append()
8656     * @see elm_gengrid_item_prepend()
8657     * @see elm_gengrid_item_insert_after()
8658     * @see elm_gengrid_item_del()
8659     *
8660     * @ingroup Gengrid
8661     */
8662    EAPI Elm_Gengrid_Item  *elm_gengrid_item_insert_after(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Elm_Gengrid_Item *relative, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8663
8664    /**
8665     * Insert an item in a gengrid widget using a user-defined sort function.
8666     *
8667     * @param obj The gengrid object.
8668     * @param gic The item class for the item.
8669     * @param data The item data.
8670     * @param comp User defined comparison function that defines the sort order based on
8671     * Elm_Gen_Item and its data param.
8672     * @param func Convenience function called when the item is selected.
8673     * @param func_data Data to be passed to @p func.
8674     * @return A handle to the item added or @c NULL, on errors.
8675     *
8676     * This inserts an item in the gengrid based on user defined comparison function.
8677     *
8678     * @see elm_gengrid_item_append()
8679     * @see elm_gengrid_item_prepend()
8680     * @see elm_gengrid_item_insert_after()
8681     * @see elm_gengrid_item_del()
8682     * @see elm_gengrid_item_direct_sorted_insert()
8683     *
8684     * @ingroup Gengrid
8685     */
8686    EAPI Elm_Gengrid_Item  *elm_gengrid_item_sorted_insert(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8687
8688    /**
8689     * Insert an item in a gengrid widget using a user-defined sort function.
8690     *
8691     * @param obj The gengrid object.
8692     * @param gic The item class for the item.
8693     * @param data The item data.
8694     * @param comp User defined comparison function that defines the sort order based on
8695     * Elm_Gen_Item.
8696     * @param func Convenience function called when the item is selected.
8697     * @param func_data Data to be passed to @p func.
8698     * @return A handle to the item added or @c NULL, on errors.
8699     *
8700     * This inserts an item in the gengrid based on user defined comparison function.
8701     *
8702     * @see elm_gengrid_item_append()
8703     * @see elm_gengrid_item_prepend()
8704     * @see elm_gengrid_item_insert_after()
8705     * @see elm_gengrid_item_del()
8706     * @see elm_gengrid_item_sorted_insert()
8707     *
8708     * @ingroup Gengrid
8709     */
8710    EAPI Elm_Gengrid_Item  *elm_gengrid_item_direct_sorted_insert(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data);
8711
8712    /**
8713     * Set whether items on a given gengrid widget are to get their
8714     * selection callbacks issued for @b every subsequent selection
8715     * click on them or just for the first click.
8716     *
8717     * @param obj The gengrid object
8718     * @param always_select @c EINA_TRUE to make items "always
8719     * selected", @c EINA_FALSE, otherwise
8720     *
8721     * By default, grid items will only call their selection callback
8722     * function when firstly getting selected, any subsequent further
8723     * clicks will do nothing. With this call, you make those
8724     * subsequent clicks also to issue the selection callbacks.
8725     *
8726     * @note <b>Double clicks</b> will @b always be reported on items.
8727     *
8728     * @see elm_gengrid_always_select_mode_get()
8729     *
8730     * @ingroup Gengrid
8731     */
8732    EAPI void               elm_gengrid_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
8733
8734    /**
8735     * Get whether items on a given gengrid widget have their selection
8736     * callbacks issued for @b every subsequent selection click on them
8737     * or just for the first click.
8738     *
8739     * @param obj The gengrid object.
8740     * @return @c EINA_TRUE if the gengrid items are "always selected",
8741     * @c EINA_FALSE, otherwise
8742     *
8743     * @see elm_gengrid_always_select_mode_set() for more details
8744     *
8745     * @ingroup Gengrid
8746     */
8747    EAPI Eina_Bool          elm_gengrid_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8748
8749    /**
8750     * Set whether items on a given gengrid widget can be selected or not.
8751     *
8752     * @param obj The gengrid object
8753     * @param no_select @c EINA_TRUE to make items selectable,
8754     * @c EINA_FALSE otherwise
8755     *
8756     * This will make items in @p obj selectable or not. In the latter
8757     * case, any user interaction on the gengrid items will neither make
8758     * them appear selected nor them call their selection callback
8759     * functions.
8760     *
8761     * @see elm_gengrid_no_select_mode_get()
8762     *
8763     * @ingroup Gengrid
8764     */
8765    EAPI void               elm_gengrid_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
8766
8767    /**
8768     * Get whether items on a given gengrid widget can be selected or
8769     * not.
8770     *
8771     * @param obj The gengrid object
8772     * @return @c EINA_TRUE, if items are selectable, @c EINA_FALSE
8773     * otherwise
8774     *
8775     * @see elm_gengrid_no_select_mode_set() for more details
8776     *
8777     * @ingroup Gengrid
8778     */
8779    EAPI Eina_Bool          elm_gengrid_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8780
8781    /**
8782     * Enable or disable multi-selection in a given gengrid widget
8783     *
8784     * @param obj The gengrid object.
8785     * @param multi @c EINA_TRUE, to enable multi-selection,
8786     * @c EINA_FALSE to disable it.
8787     *
8788     * Multi-selection is the ability to have @b more than one
8789     * item selected, on a given gengrid, simultaneously. When it is
8790     * enabled, a sequence of clicks on different items will make them
8791     * all selected, progressively. A click on an already selected item
8792     * will unselect it. If interacting via the keyboard,
8793     * multi-selection is enabled while holding the "Shift" key.
8794     *
8795     * @note By default, multi-selection is @b disabled on gengrids
8796     *
8797     * @see elm_gengrid_multi_select_get()
8798     *
8799     * @ingroup Gengrid
8800     */
8801    EAPI void               elm_gengrid_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
8802
8803    /**
8804     * Get whether multi-selection is enabled or disabled for a given
8805     * gengrid widget
8806     *
8807     * @param obj The gengrid object.
8808     * @return @c EINA_TRUE, if multi-selection is enabled, @c
8809     * EINA_FALSE otherwise
8810     *
8811     * @see elm_gengrid_multi_select_set() for more details
8812     *
8813     * @ingroup Gengrid
8814     */
8815    EAPI Eina_Bool          elm_gengrid_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8816
8817    /**
8818     * Enable or disable bouncing effect for a given gengrid widget
8819     *
8820     * @param obj The gengrid object
8821     * @param h_bounce @c EINA_TRUE, to enable @b horizontal bouncing,
8822     * @c EINA_FALSE to disable it
8823     * @param v_bounce @c EINA_TRUE, to enable @b vertical bouncing,
8824     * @c EINA_FALSE to disable it
8825     *
8826     * The bouncing effect occurs whenever one reaches the gengrid's
8827     * edge's while panning it -- it will scroll past its limits a
8828     * little bit and return to the edge again, in a animated for,
8829     * automatically.
8830     *
8831     * @note By default, gengrids have bouncing enabled on both axis
8832     *
8833     * @see elm_gengrid_bounce_get()
8834     *
8835     * @ingroup Gengrid
8836     */
8837    EAPI void               elm_gengrid_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
8838
8839    /**
8840     * Get whether bouncing effects are enabled or disabled, for a
8841     * given gengrid widget, on each axis
8842     *
8843     * @param obj The gengrid object
8844     * @param h_bounce Pointer to a variable where to store the
8845     * horizontal bouncing flag.
8846     * @param v_bounce Pointer to a variable where to store the
8847     * vertical bouncing flag.
8848     *
8849     * @see elm_gengrid_bounce_set() for more details
8850     *
8851     * @ingroup Gengrid
8852     */
8853    EAPI void               elm_gengrid_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
8854
8855    /**
8856     * Set a given gengrid widget's scrolling page size, relative to
8857     * its viewport size.
8858     *
8859     * @param obj The gengrid object
8860     * @param h_pagerel The horizontal page (relative) size
8861     * @param v_pagerel The vertical page (relative) size
8862     *
8863     * The gengrid's scroller is capable of binding scrolling by the
8864     * user to "pages". It means that, while scrolling and, specially
8865     * after releasing the mouse button, the grid will @b snap to the
8866     * nearest displaying page's area. When page sizes are set, the
8867     * grid's continuous content area is split into (equal) page sized
8868     * pieces.
8869     *
8870     * This function sets the size of a page <b>relatively to the
8871     * viewport dimensions</b> of the gengrid, for each axis. A value
8872     * @c 1.0 means "the exact viewport's size", in that axis, while @c
8873     * 0.0 turns paging off in that axis. Likewise, @c 0.5 means "half
8874     * a viewport". Sane usable values are, than, between @c 0.0 and @c
8875     * 1.0. Values beyond those will make it behave behave
8876     * inconsistently. If you only want one axis to snap to pages, use
8877     * the value @c 0.0 for the other one.
8878     *
8879     * There is a function setting page size values in @b absolute
8880     * values, too -- elm_gengrid_page_size_set(). Naturally, its use
8881     * is mutually exclusive to this one.
8882     *
8883     * @see elm_gengrid_page_relative_get()
8884     *
8885     * @ingroup Gengrid
8886     */
8887    EAPI void               elm_gengrid_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
8888
8889    /**
8890     * Get a given gengrid widget's scrolling page size, relative to
8891     * its viewport size.
8892     *
8893     * @param obj The gengrid object
8894     * @param h_pagerel Pointer to a variable where to store the
8895     * horizontal page (relative) size
8896     * @param v_pagerel Pointer to a variable where to store the
8897     * vertical page (relative) size
8898     *
8899     * @see elm_gengrid_page_relative_set() for more details
8900     *
8901     * @ingroup Gengrid
8902     */
8903    EAPI void               elm_gengrid_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel) EINA_ARG_NONNULL(1);
8904
8905    /**
8906     * Set a given gengrid widget's scrolling page size
8907     *
8908     * @param obj The gengrid object
8909     * @param h_pagerel The horizontal page size, in pixels
8910     * @param v_pagerel The vertical page size, in pixels
8911     *
8912     * The gengrid's scroller is capable of binding scrolling by the
8913     * user to "pages". It means that, while scrolling and, specially
8914     * after releasing the mouse button, the grid will @b snap to the
8915     * nearest displaying page's area. When page sizes are set, the
8916     * grid's continuous content area is split into (equal) page sized
8917     * pieces.
8918     *
8919     * This function sets the size of a page of the gengrid, in pixels,
8920     * for each axis. Sane usable values are, between @c 0 and the
8921     * dimensions of @p obj, for each axis. Values beyond those will
8922     * make it behave behave inconsistently. If you only want one axis
8923     * to snap to pages, use the value @c 0 for the other one.
8924     *
8925     * There is a function setting page size values in @b relative
8926     * values, too -- elm_gengrid_page_relative_set(). Naturally, its
8927     * use is mutually exclusive to this one.
8928     *
8929     * @ingroup Gengrid
8930     */
8931    EAPI void               elm_gengrid_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
8932
8933    /**
8934     * @brief Get gengrid current page number.
8935     *
8936     * @param obj The gengrid object
8937     * @param h_pagenumber The horizontal page number
8938     * @param v_pagenumber The vertical page number
8939     *
8940     * The page number starts from 0. 0 is the first page.
8941     * Current page means the page which meet the top-left of the viewport.
8942     * If there are two or more pages in the viewport, it returns the number of page
8943     * which meet the top-left of the viewport.
8944     *
8945     * @see elm_gengrid_last_page_get()
8946     * @see elm_gengrid_page_show()
8947     * @see elm_gengrid_page_brint_in()
8948     */
8949    EAPI void         elm_gengrid_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
8950
8951    /**
8952     * @brief Get scroll last page number.
8953     *
8954     * @param obj The gengrid object
8955     * @param h_pagenumber The horizontal page number
8956     * @param v_pagenumber The vertical page number
8957     *
8958     * The page number starts from 0. 0 is the first page.
8959     * This returns the last page number among the pages.
8960     *
8961     * @see elm_gengrid_current_page_get()
8962     * @see elm_gengrid_page_show()
8963     * @see elm_gengrid_page_brint_in()
8964     */
8965    EAPI void         elm_gengrid_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
8966
8967    /**
8968     * Show a specific virtual region within the gengrid content object by page number.
8969     *
8970     * @param obj The gengrid object
8971     * @param h_pagenumber The horizontal page number
8972     * @param v_pagenumber The vertical page number
8973     *
8974     * 0, 0 of the indicated page is located at the top-left of the viewport.
8975     * This will jump to the page directly without animation.
8976     *
8977     * Example of usage:
8978     *
8979     * @code
8980     * sc = elm_gengrid_add(win);
8981     * elm_gengrid_content_set(sc, content);
8982     * elm_gengrid_page_relative_set(sc, 1, 0);
8983     * elm_gengrid_current_page_get(sc, &h_page, &v_page);
8984     * elm_gengrid_page_show(sc, h_page + 1, v_page);
8985     * @endcode
8986     *
8987     * @see elm_gengrid_page_bring_in()
8988     */
8989    EAPI void         elm_gengrid_page_show(const Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
8990
8991    /**
8992     * Show a specific virtual region within the gengrid content object by page number.
8993     *
8994     * @param obj The gengrid object
8995     * @param h_pagenumber The horizontal page number
8996     * @param v_pagenumber The vertical page number
8997     *
8998     * 0, 0 of the indicated page is located at the top-left of the viewport.
8999     * This will slide to the page with animation.
9000     *
9001     * Example of usage:
9002     *
9003     * @code
9004     * sc = elm_gengrid_add(win);
9005     * elm_gengrid_content_set(sc, content);
9006     * elm_gengrid_page_relative_set(sc, 1, 0);
9007     * elm_gengrid_last_page_get(sc, &h_page, &v_page);
9008     * elm_gengrid_page_bring_in(sc, h_page, v_page);
9009     * @endcode
9010     *
9011     * @see elm_gengrid_page_show()
9012     */
9013     EAPI void         elm_gengrid_page_bring_in(const Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
9014
9015    /**
9016     * Set the direction in which a given gengrid widget will expand while
9017     * placing its items.
9018     *
9019     * @param obj The gengrid object.
9020     * @param setting @c EINA_TRUE to make the gengrid expand
9021     * horizontally, @c EINA_FALSE to expand vertically.
9022     *
9023     * When in "horizontal mode" (@c EINA_TRUE), items will be placed
9024     * in @b columns, from top to bottom and, when the space for a
9025     * column is filled, another one is started on the right, thus
9026     * expanding the grid horizontally. When in "vertical mode"
9027     * (@c EINA_FALSE), though, items will be placed in @b rows, from left
9028     * to right and, when the space for a row is filled, another one is
9029     * started below, thus expanding the grid vertically.
9030     *
9031     * @see elm_gengrid_horizontal_get()
9032     *
9033     * @ingroup Gengrid
9034     */
9035    EAPI void               elm_gengrid_horizontal_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
9036
9037    /**
9038     * Get for what direction a given gengrid widget will expand while
9039     * placing its items.
9040     *
9041     * @param obj The gengrid object.
9042     * @return @c EINA_TRUE, if @p obj is set to expand horizontally,
9043     * @c EINA_FALSE if it's set to expand vertically.
9044     *
9045     * @see elm_gengrid_horizontal_set() for more detais
9046     *
9047     * @ingroup Gengrid
9048     */
9049    EAPI Eina_Bool          elm_gengrid_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9050
9051    /**
9052     * Get the first item in a given gengrid widget
9053     *
9054     * @param obj The gengrid object
9055     * @return The first item's handle or @c NULL, if there are no
9056     * items in @p obj (and on errors)
9057     *
9058     * This returns the first item in the @p obj's internal list of
9059     * items.
9060     *
9061     * @see elm_gengrid_last_item_get()
9062     *
9063     * @ingroup Gengrid
9064     */
9065    EAPI Elm_Gengrid_Item  *elm_gengrid_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9066
9067    /**
9068     * Get the last item in a given gengrid widget
9069     *
9070     * @param obj The gengrid object
9071     * @return The last item's handle or @c NULL, if there are no
9072     * items in @p obj (and on errors)
9073     *
9074     * This returns the last item in the @p obj's internal list of
9075     * items.
9076     *
9077     * @see elm_gengrid_first_item_get()
9078     *
9079     * @ingroup Gengrid
9080     */
9081    EAPI Elm_Gengrid_Item  *elm_gengrid_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9082
9083    /**
9084     * Get the @b next item in a gengrid widget's internal list of items,
9085     * given a handle to one of those items.
9086     *
9087     * @param item The gengrid item to fetch next from
9088     * @return The item after @p item, or @c NULL if there's none (and
9089     * on errors)
9090     *
9091     * This returns the item placed after the @p item, on the container
9092     * gengrid.
9093     *
9094     * @see elm_gengrid_item_prev_get()
9095     *
9096     * @ingroup Gengrid
9097     */
9098    EAPI Elm_Gengrid_Item  *elm_gengrid_item_next_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9099
9100    /**
9101     * Get the @b previous item in a gengrid widget's internal list of items,
9102     * given a handle to one of those items.
9103     *
9104     * @param item The gengrid item to fetch previous from
9105     * @return The item before @p item, or @c NULL if there's none (and
9106     * on errors)
9107     *
9108     * This returns the item placed before the @p item, on the container
9109     * gengrid.
9110     *
9111     * @see elm_gengrid_item_next_get()
9112     *
9113     * @ingroup Gengrid
9114     */
9115    EAPI Elm_Gengrid_Item  *elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9116
9117    /**
9118     * Get the gengrid object's handle which contains a given gengrid
9119     * item
9120     *
9121     * @param item The item to fetch the container from
9122     * @return The gengrid (parent) object
9123     *
9124     * This returns the gengrid object itself that an item belongs to.
9125     *
9126     * @ingroup Gengrid
9127     */
9128    EAPI Evas_Object       *elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9129
9130    /**
9131     * Remove a gengrid item from its parent, deleting it.
9132     *
9133     * @param item The item to be removed.
9134     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
9135     *
9136     * @see elm_gengrid_clear(), to remove all items in a gengrid at
9137     * once.
9138     *
9139     * @ingroup Gengrid
9140     */
9141    EAPI void               elm_gengrid_item_del(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9142
9143    /**
9144     * Update the contents of a given gengrid item
9145     *
9146     * @param item The gengrid item
9147     *
9148     * This updates an item by calling all the item class functions
9149     * again to get the contents, texts and states. Use this when the
9150     * original item data has changed and you want the changes to be
9151     * reflected.
9152     *
9153     * @ingroup Gengrid
9154     */
9155    EAPI void               elm_gengrid_item_update(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9156
9157    /**
9158     * Get the Gengrid Item class for the given Gengrid Item.
9159     *
9160     * @param item The gengrid item
9161     *
9162     * This returns the Gengrid_Item_Class for the given item. It can be used to examine
9163     * the function pointers and item_style.
9164     *
9165     * @ingroup Gengrid
9166     */
9167    EAPI const Elm_Gengrid_Item_Class *elm_gengrid_item_item_class_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9168
9169    /**
9170     * Get the Gengrid Item class for the given Gengrid Item.
9171     *
9172     * This sets the Gengrid_Item_Class for the given item. It can be used to examine
9173     * the function pointers and item_style.
9174     *
9175     * @param item The gengrid item
9176     * @param gic The gengrid item class describing the function pointers and the item style.
9177     *
9178     * @ingroup Gengrid
9179     */
9180    EAPI void               elm_gengrid_item_item_class_set(Elm_Gengrid_Item *item, const Elm_Gengrid_Item_Class *gic) EINA_ARG_NONNULL(1, 2);
9181
9182    /**
9183     * Return the data associated to a given gengrid item
9184     *
9185     * @param item The gengrid item.
9186     * @return the data associated with this item.
9187     *
9188     * This returns the @c data value passed on the
9189     * elm_gengrid_item_append() and related item addition calls.
9190     *
9191     * @see elm_gengrid_item_append()
9192     * @see elm_gengrid_item_data_set()
9193     *
9194     * @ingroup Gengrid
9195     */
9196    EAPI void              *elm_gengrid_item_data_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9197
9198    /**
9199     * Set the data associated with a given gengrid item
9200     *
9201     * @param item The gengrid item
9202     * @param data The data pointer to set on it
9203     *
9204     * This @b overrides the @c data value passed on the
9205     * elm_gengrid_item_append() and related item addition calls. This
9206     * function @b won't call elm_gengrid_item_update() automatically,
9207     * so you'd issue it afterwards if you want to have the item
9208     * updated to reflect the new data.
9209     *
9210     * @see elm_gengrid_item_data_get()
9211     * @see elm_gengrid_item_update()
9212     *
9213     * @ingroup Gengrid
9214     */
9215    EAPI void               elm_gengrid_item_data_set(Elm_Gengrid_Item *item, const void *data) EINA_ARG_NONNULL(1);
9216
9217    /**
9218     * Get a given gengrid item's position, relative to the whole
9219     * gengrid's grid area.
9220     *
9221     * @param item The Gengrid item.
9222     * @param x Pointer to variable to store the item's <b>row number</b>.
9223     * @param y Pointer to variable to store the item's <b>column number</b>.
9224     *
9225     * This returns the "logical" position of the item within the
9226     * gengrid. For example, @c (0, 1) would stand for first row,
9227     * second column.
9228     *
9229     * @ingroup Gengrid
9230     */
9231    EAPI void               elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item, unsigned int *x, unsigned int *y) EINA_ARG_NONNULL(1);
9232
9233    /**
9234     * Set whether a given gengrid item is selected or not
9235     *
9236     * @param item The gengrid item
9237     * @param selected Use @c EINA_TRUE, to make it selected, @c
9238     * EINA_FALSE to make it unselected
9239     *
9240     * This sets the selected state of an item. If multi-selection is
9241     * not enabled on the containing gengrid and @p selected is @c
9242     * EINA_TRUE, any other previously selected items will get
9243     * unselected in favor of this new one.
9244     *
9245     * @see elm_gengrid_item_selected_get()
9246     *
9247     * @ingroup Gengrid
9248     */
9249    EAPI void elm_gengrid_item_selected_set(Elm_Gengrid_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
9250
9251    /**
9252     * Get whether a given gengrid item is selected or not
9253     *
9254     * @param item The gengrid item
9255     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
9256     *
9257     * This API returns EINA_TRUE for all the items selected in multi-select mode as well.
9258     *
9259     * @see elm_gengrid_item_selected_set() for more details
9260     *
9261     * @ingroup Gengrid
9262     */
9263    EAPI Eina_Bool elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9264
9265    /**
9266     * Get the real Evas object created to implement the view of a
9267     * given gengrid item
9268     *
9269     * @param item The gengrid item.
9270     * @return the Evas object implementing this item's view.
9271     *
9272     * This returns the actual Evas object used to implement the
9273     * specified gengrid item's view. This may be @c NULL, as it may
9274     * not have been created or may have been deleted, at any time, by
9275     * the gengrid. <b>Do not modify this object</b> (move, resize,
9276     * show, hide, etc.), as the gengrid is controlling it. This
9277     * function is for querying, emitting custom signals or hooking
9278     * lower level callbacks for events on that object. Do not delete
9279     * this object under any circumstances.
9280     *
9281     * @see elm_gengrid_item_data_get()
9282     *
9283     * @ingroup Gengrid
9284     */
9285    EAPI const Evas_Object *elm_gengrid_item_object_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9286
9287    /**
9288     * Show the portion of a gengrid's internal grid containing a given
9289     * item, @b immediately.
9290     *
9291     * @param item The item to display
9292     *
9293     * This causes gengrid to @b redraw its viewport's contents to the
9294     * region contining the given @p item item, if it is not fully
9295     * visible.
9296     *
9297     * @see elm_gengrid_item_bring_in()
9298     *
9299     * @ingroup Gengrid
9300     */
9301    EAPI void               elm_gengrid_item_show(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9302
9303    /**
9304     * Animatedly bring in, to the visible area of a gengrid, a given
9305     * item on it.
9306     *
9307     * @param item The gengrid item to display
9308     *
9309     * This causes gengrid to jump to the given @p item and show
9310     * it (by scrolling), if it is not fully visible. This will use
9311     * animation to do so and take a period of time to complete.
9312     *
9313     * @see elm_gengrid_item_show()
9314     *
9315     * @ingroup Gengrid
9316     */
9317    EAPI void               elm_gengrid_item_bring_in(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9318
9319    /**
9320     * Set whether a given gengrid item is disabled or not.
9321     *
9322     * @param item The gengrid item
9323     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
9324     * to enable it back.
9325     *
9326     * A disabled item cannot be selected or unselected. It will also
9327     * change its appearance, to signal the user it's disabled.
9328     *
9329     * @see elm_gengrid_item_disabled_get()
9330     *
9331     * @ingroup Gengrid
9332     */
9333    EAPI void               elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
9334
9335    /**
9336     * Get whether a given gengrid item is disabled or not.
9337     *
9338     * @param item The gengrid item
9339     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
9340     * (and on errors).
9341     *
9342     * @see elm_gengrid_item_disabled_set() for more details
9343     *
9344     * @ingroup Gengrid
9345     */
9346    EAPI Eina_Bool          elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9347
9348    /**
9349     * Set the text to be shown in a given gengrid item's tooltips.
9350     *
9351     * @param item The gengrid item
9352     * @param text The text to set in the content
9353     *
9354     * This call will setup the text to be used as tooltip to that item
9355     * (analogous to elm_object_tooltip_text_set(), but being item
9356     * tooltips with higher precedence than object tooltips). It can
9357     * have only one tooltip at a time, so any previous tooltip data
9358     * will get removed.
9359     *
9360     * @ingroup Gengrid
9361     */
9362    EAPI void               elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item, const char *text) EINA_ARG_NONNULL(1);
9363
9364    /**
9365     * Set the content to be shown in a given gengrid item's tooltip
9366     *
9367     * @param item The gengrid item.
9368     * @param func The function returning the tooltip contents.
9369     * @param data What to provide to @a func as callback data/context.
9370     * @param del_cb Called when data is not needed anymore, either when
9371     *        another callback replaces @p func, the tooltip is unset with
9372     *        elm_gengrid_item_tooltip_unset() or the owner @p item
9373     *        dies. This callback receives as its first parameter the
9374     *        given @p data, being @c event_info the item handle.
9375     *
9376     * This call will setup the tooltip's contents to @p item
9377     * (analogous to elm_object_tooltip_content_cb_set(), but being
9378     * item tooltips with higher precedence than object tooltips). It
9379     * can have only one tooltip at a time, so any previous tooltip
9380     * content will get removed. @p func (with @p data) will be called
9381     * every time Elementary needs to show the tooltip and it should
9382     * return a valid Evas object, which will be fully managed by the
9383     * tooltip system, getting deleted when the tooltip is gone.
9384     *
9385     * @ingroup Gengrid
9386     */
9387    EAPI void               elm_gengrid_item_tooltip_content_cb_set(Elm_Gengrid_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
9388
9389    /**
9390     * Unset a tooltip from a given gengrid item
9391     *
9392     * @param item gengrid item to remove a previously set tooltip from.
9393     *
9394     * This call removes any tooltip set on @p item. The callback
9395     * provided as @c del_cb to
9396     * elm_gengrid_item_tooltip_content_cb_set() will be called to
9397     * notify it is not used anymore (and have resources cleaned, if
9398     * need be).
9399     *
9400     * @see elm_gengrid_item_tooltip_content_cb_set()
9401     *
9402     * @ingroup Gengrid
9403     */
9404    EAPI void               elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9405
9406    /**
9407     * Set a different @b style for a given gengrid item's tooltip.
9408     *
9409     * @param item gengrid item with tooltip set
9410     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
9411     * "default", @c "transparent", etc)
9412     *
9413     * Tooltips can have <b>alternate styles</b> to be displayed on,
9414     * which are defined by the theme set on Elementary. This function
9415     * works analogously as elm_object_tooltip_style_set(), but here
9416     * applied only to gengrid item objects. The default style for
9417     * tooltips is @c "default".
9418     *
9419     * @note before you set a style you should define a tooltip with
9420     *       elm_gengrid_item_tooltip_content_cb_set() or
9421     *       elm_gengrid_item_tooltip_text_set()
9422     *
9423     * @see elm_gengrid_item_tooltip_style_get()
9424     *
9425     * @ingroup Gengrid
9426     */
9427    EAPI void               elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
9428
9429    /**
9430     * Get the style set a given gengrid item's tooltip.
9431     *
9432     * @param item gengrid item with tooltip already set on.
9433     * @return style the theme style in use, which defaults to
9434     *         "default". If the object does not have a tooltip set,
9435     *         then @c NULL is returned.
9436     *
9437     * @see elm_gengrid_item_tooltip_style_set() for more details
9438     *
9439     * @ingroup Gengrid
9440     */
9441    EAPI const char        *elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9442    /**
9443     * @brief Disable size restrictions on an object's tooltip
9444     * @param item The tooltip's anchor object
9445     * @param disable If EINA_TRUE, size restrictions are disabled
9446     * @return EINA_FALSE on failure, EINA_TRUE on success
9447     *
9448     * This function allows a tooltip to expand beyond its parant window's canvas.
9449     * It will instead be limited only by the size of the display.
9450     */
9451    EAPI Eina_Bool          elm_gengrid_item_tooltip_size_restrict_disable(Elm_Gengrid_Item *item, Eina_Bool disable);
9452    /**
9453     * @brief Retrieve size restriction state of an object's tooltip
9454     * @param item The tooltip's anchor object
9455     * @return If EINA_TRUE, size restrictions are disabled
9456     *
9457     * This function returns whether a tooltip is allowed to expand beyond
9458     * its parant window's canvas.
9459     * It will instead be limited only by the size of the display.
9460     */
9461    EAPI Eina_Bool          elm_gengrid_item_tooltip_size_restrict_disabled_get(const Elm_Gengrid_Item *item);
9462    /**
9463     * Set the type of mouse pointer/cursor decoration to be shown,
9464     * when the mouse pointer is over the given gengrid widget item
9465     *
9466     * @param item gengrid item to customize cursor on
9467     * @param cursor the cursor type's name
9468     *
9469     * This function works analogously as elm_object_cursor_set(), but
9470     * here the cursor's changing area is restricted to the item's
9471     * area, and not the whole widget's. Note that that item cursors
9472     * have precedence over widget cursors, so that a mouse over @p
9473     * item will always show cursor @p type.
9474     *
9475     * If this function is called twice for an object, a previously set
9476     * cursor will be unset on the second call.
9477     *
9478     * @see elm_object_cursor_set()
9479     * @see elm_gengrid_item_cursor_get()
9480     * @see elm_gengrid_item_cursor_unset()
9481     *
9482     * @ingroup Gengrid
9483     */
9484    EAPI void               elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
9485
9486    /**
9487     * Get the type of mouse pointer/cursor decoration set to be shown,
9488     * when the mouse pointer is over the given gengrid widget item
9489     *
9490     * @param item gengrid item with custom cursor set
9491     * @return the cursor type's name or @c NULL, if no custom cursors
9492     * were set to @p item (and on errors)
9493     *
9494     * @see elm_object_cursor_get()
9495     * @see elm_gengrid_item_cursor_set() for more details
9496     * @see elm_gengrid_item_cursor_unset()
9497     *
9498     * @ingroup Gengrid
9499     */
9500    EAPI const char        *elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9501
9502    /**
9503     * Unset any custom mouse pointer/cursor decoration set to be
9504     * shown, when the mouse pointer is over the given gengrid widget
9505     * item, thus making it show the @b default cursor again.
9506     *
9507     * @param item a gengrid item
9508     *
9509     * Use this call to undo any custom settings on this item's cursor
9510     * decoration, bringing it back to defaults (no custom style set).
9511     *
9512     * @see elm_object_cursor_unset()
9513     * @see elm_gengrid_item_cursor_set() for more details
9514     *
9515     * @ingroup Gengrid
9516     */
9517    EAPI void               elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9518
9519    /**
9520     * Set a different @b style for a given custom cursor set for a
9521     * gengrid item.
9522     *
9523     * @param item gengrid item with custom cursor set
9524     * @param style the <b>theme style</b> to use (e.g. @c "default",
9525     * @c "transparent", etc)
9526     *
9527     * This function only makes sense when one is using custom mouse
9528     * cursor decorations <b>defined in a theme file</b> , which can
9529     * have, given a cursor name/type, <b>alternate styles</b> on
9530     * it. It works analogously as elm_object_cursor_style_set(), but
9531     * here applied only to gengrid item objects.
9532     *
9533     * @warning Before you set a cursor style you should have defined a
9534     *       custom cursor previously on the item, with
9535     *       elm_gengrid_item_cursor_set()
9536     *
9537     * @see elm_gengrid_item_cursor_engine_only_set()
9538     * @see elm_gengrid_item_cursor_style_get()
9539     *
9540     * @ingroup Gengrid
9541     */
9542    EAPI void               elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
9543
9544    /**
9545     * Get the current @b style set for a given gengrid item's custom
9546     * cursor
9547     *
9548     * @param item gengrid item with custom cursor set.
9549     * @return style the cursor style in use. If the object does not
9550     *         have a cursor set, then @c NULL is returned.
9551     *
9552     * @see elm_gengrid_item_cursor_style_set() for more details
9553     *
9554     * @ingroup Gengrid
9555     */
9556    EAPI const char        *elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9557
9558    /**
9559     * Set if the (custom) cursor for a given gengrid item should be
9560     * searched in its theme, also, or should only rely on the
9561     * rendering engine.
9562     *
9563     * @param item item with custom (custom) cursor already set on
9564     * @param engine_only Use @c EINA_TRUE to have cursors looked for
9565     * only on those provided by the rendering engine, @c EINA_FALSE to
9566     * have them searched on the widget's theme, as well.
9567     *
9568     * @note This call is of use only if you've set a custom cursor
9569     * for gengrid items, with elm_gengrid_item_cursor_set().
9570     *
9571     * @note By default, cursors will only be looked for between those
9572     * provided by the rendering engine.
9573     *
9574     * @ingroup Gengrid
9575     */
9576    EAPI void               elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
9577
9578    /**
9579     * Get if the (custom) cursor for a given gengrid item is being
9580     * searched in its theme, also, or is only relying on the rendering
9581     * engine.
9582     *
9583     * @param item a gengrid item
9584     * @return @c EINA_TRUE, if cursors are being looked for only on
9585     * those provided by the rendering engine, @c EINA_FALSE if they
9586     * are being searched on the widget's theme, as well.
9587     *
9588     * @see elm_gengrid_item_cursor_engine_only_set(), for more details
9589     *
9590     * @ingroup Gengrid
9591     */
9592    EAPI Eina_Bool          elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9593
9594    /**
9595     * Remove all items from a given gengrid widget
9596     *
9597     * @param obj The gengrid object.
9598     *
9599     * This removes (and deletes) all items in @p obj, leaving it
9600     * empty.
9601     *
9602     * @see elm_gengrid_item_del(), to remove just one item.
9603     *
9604     * @ingroup Gengrid
9605     */
9606    EAPI void elm_gengrid_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
9607
9608    /**
9609     * Get the selected item in a given gengrid widget
9610     *
9611     * @param obj The gengrid object.
9612     * @return The selected item's handleor @c NULL, if none is
9613     * selected at the moment (and on errors)
9614     *
9615     * This returns the selected item in @p obj. If multi selection is
9616     * enabled on @p obj (@see elm_gengrid_multi_select_set()), only
9617     * the first item in the list is selected, which might not be very
9618     * useful. For that case, see elm_gengrid_selected_items_get().
9619     *
9620     * @ingroup Gengrid
9621     */
9622    EAPI Elm_Gengrid_Item  *elm_gengrid_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9623
9624    /**
9625     * Get <b>a list</b> of selected items in a given gengrid
9626     *
9627     * @param obj The gengrid object.
9628     * @return The list of selected items or @c NULL, if none is
9629     * selected at the moment (and on errors)
9630     *
9631     * This returns a list of the selected items, in the order that
9632     * they appear in the grid. This list is only valid as long as no
9633     * more items are selected or unselected (or unselected implictly
9634     * by deletion). The list contains #Elm_Gengrid_Item pointers as
9635     * data, naturally.
9636     *
9637     * @see elm_gengrid_selected_item_get()
9638     *
9639     * @ingroup Gengrid
9640     */
9641    EAPI const Eina_List   *elm_gengrid_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9642
9643    /**
9644     * @}
9645     */
9646
9647    /**
9648     * @defgroup Clock Clock
9649     *
9650     * @image html img/widget/clock/preview-00.png
9651     * @image latex img/widget/clock/preview-00.eps
9652     *
9653     * This is a @b digital clock widget. In its default theme, it has a
9654     * vintage "flipping numbers clock" appearance, which will animate
9655     * sheets of individual algarisms individually as time goes by.
9656     *
9657     * A newly created clock will fetch system's time (already
9658     * considering local time adjustments) to start with, and will tick
9659     * accondingly. It may or may not show seconds.
9660     *
9661     * Clocks have an @b edition mode. When in it, the sheets will
9662     * display extra arrow indications on the top and bottom and the
9663     * user may click on them to raise or lower the time values. After
9664     * it's told to exit edition mode, it will keep ticking with that
9665     * new time set (it keeps the difference from local time).
9666     *
9667     * Also, when under edition mode, user clicks on the cited arrows
9668     * which are @b held for some time will make the clock to flip the
9669     * sheet, thus editing the time, continuosly and automatically for
9670     * the user. The interval between sheet flips will keep growing in
9671     * time, so that it helps the user to reach a time which is distant
9672     * from the one set.
9673     *
9674     * The time display is, by default, in military mode (24h), but an
9675     * am/pm indicator may be optionally shown, too, when it will
9676     * switch to 12h.
9677     *
9678     * Smart callbacks one can register to:
9679     * - "changed" - the clock's user changed the time
9680     *
9681     * Here is an example on its usage:
9682     * @li @ref clock_example
9683     */
9684
9685    /**
9686     * @addtogroup Clock
9687     * @{
9688     */
9689
9690    /**
9691     * Identifiers for which clock digits should be editable, when a
9692     * clock widget is in edition mode. Values may be ORed together to
9693     * make a mask, naturally.
9694     *
9695     * @see elm_clock_edit_set()
9696     * @see elm_clock_digit_edit_set()
9697     */
9698    typedef enum _Elm_Clock_Digedit
9699      {
9700         ELM_CLOCK_NONE         = 0, /**< Default value. Means that all digits are editable, when in edition mode. */
9701         ELM_CLOCK_HOUR_DECIMAL = 1 << 0, /**< Decimal algarism of hours value should be editable */
9702         ELM_CLOCK_HOUR_UNIT    = 1 << 1, /**< Unit algarism of hours value should be editable */
9703         ELM_CLOCK_MIN_DECIMAL  = 1 << 2, /**< Decimal algarism of minutes value should be editable */
9704         ELM_CLOCK_MIN_UNIT     = 1 << 3, /**< Unit algarism of minutes value should be editable */
9705         ELM_CLOCK_SEC_DECIMAL  = 1 << 4, /**< Decimal algarism of seconds value should be editable */
9706         ELM_CLOCK_SEC_UNIT     = 1 << 5, /**< Unit algarism of seconds value should be editable */
9707         ELM_CLOCK_ALL          = (1 << 6) - 1 /**< All digits should be editable */
9708      } Elm_Clock_Digedit;
9709
9710    /**
9711     * Add a new clock widget to the given parent Elementary
9712     * (container) object
9713     *
9714     * @param parent The parent object
9715     * @return a new clock widget handle or @c NULL, on errors
9716     *
9717     * This function inserts a new clock widget on the canvas.
9718     *
9719     * @ingroup Clock
9720     */
9721    EAPI Evas_Object      *elm_clock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9722
9723    /**
9724     * Set a clock widget's time, programmatically
9725     *
9726     * @param obj The clock widget object
9727     * @param hrs The hours to set
9728     * @param min The minutes to set
9729     * @param sec The secondes to set
9730     *
9731     * This function updates the time that is showed by the clock
9732     * widget.
9733     *
9734     *  Values @b must be set within the following ranges:
9735     * - 0 - 23, for hours
9736     * - 0 - 59, for minutes
9737     * - 0 - 59, for seconds,
9738     *
9739     * even if the clock is not in "military" mode.
9740     *
9741     * @warning The behavior for values set out of those ranges is @b
9742     * undefined.
9743     *
9744     * @ingroup Clock
9745     */
9746    EAPI void              elm_clock_time_set(Evas_Object *obj, int hrs, int min, int sec) EINA_ARG_NONNULL(1);
9747
9748    /**
9749     * Get a clock widget's time values
9750     *
9751     * @param obj The clock object
9752     * @param[out] hrs Pointer to the variable to get the hours value
9753     * @param[out] min Pointer to the variable to get the minutes value
9754     * @param[out] sec Pointer to the variable to get the seconds value
9755     *
9756     * This function gets the time set for @p obj, returning
9757     * it on the variables passed as the arguments to function
9758     *
9759     * @note Use @c NULL pointers on the time values you're not
9760     * interested in: they'll be ignored by the function.
9761     *
9762     * @ingroup Clock
9763     */
9764    EAPI void              elm_clock_time_get(const Evas_Object *obj, int *hrs, int *min, int *sec) EINA_ARG_NONNULL(1);
9765
9766    /**
9767     * Set whether a given clock widget is under <b>edition mode</b> or
9768     * under (default) displaying-only mode.
9769     *
9770     * @param obj The clock object
9771     * @param edit @c EINA_TRUE to put it in edition, @c EINA_FALSE to
9772     * put it back to "displaying only" mode
9773     *
9774     * This function makes a clock's time to be editable or not <b>by
9775     * user interaction</b>. When in edition mode, clocks @b stop
9776     * ticking, until one brings them back to canonical mode. The
9777     * elm_clock_digit_edit_set() function will influence which digits
9778     * of the clock will be editable. By default, all of them will be
9779     * (#ELM_CLOCK_NONE).
9780     *
9781     * @note am/pm sheets, if being shown, will @b always be editable
9782     * under edition mode.
9783     *
9784     * @see elm_clock_edit_get()
9785     *
9786     * @ingroup Clock
9787     */
9788    EAPI void              elm_clock_edit_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
9789
9790    /**
9791     * Retrieve whether a given clock widget is under <b>edition
9792     * mode</b> or under (default) displaying-only mode.
9793     *
9794     * @param obj The clock object
9795     * @param edit @c EINA_TRUE, if it's in edition mode, @c EINA_FALSE
9796     * otherwise
9797     *
9798     * This function retrieves whether the clock's time can be edited
9799     * or not by user interaction.
9800     *
9801     * @see elm_clock_edit_set() for more details
9802     *
9803     * @ingroup Clock
9804     */
9805    EAPI Eina_Bool         elm_clock_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9806
9807    /**
9808     * Set what digits of the given clock widget should be editable
9809     * when in edition mode.
9810     *
9811     * @param obj The clock object
9812     * @param digedit Bit mask indicating the digits to be editable
9813     * (values in #Elm_Clock_Digedit).
9814     *
9815     * If the @p digedit param is #ELM_CLOCK_NONE, editing will be
9816     * disabled on @p obj (same effect as elm_clock_edit_set(), with @c
9817     * EINA_FALSE).
9818     *
9819     * @see elm_clock_digit_edit_get()
9820     *
9821     * @ingroup Clock
9822     */
9823    EAPI void              elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Digedit digedit) EINA_ARG_NONNULL(1);
9824
9825    /**
9826     * Retrieve what digits of the given clock widget should be
9827     * editable when in edition mode.
9828     *
9829     * @param obj The clock object
9830     * @return Bit mask indicating the digits to be editable
9831     * (values in #Elm_Clock_Digedit).
9832     *
9833     * @see elm_clock_digit_edit_set() for more details
9834     *
9835     * @ingroup Clock
9836     */
9837    EAPI Elm_Clock_Digedit elm_clock_digit_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9838
9839    /**
9840     * Set if the given clock widget must show hours in military or
9841     * am/pm mode
9842     *
9843     * @param obj The clock object
9844     * @param am_pm @c EINA_TRUE to put it in am/pm mode, @c EINA_FALSE
9845     * to military mode
9846     *
9847     * This function sets if the clock must show hours in military or
9848     * am/pm mode. In some countries like Brazil the military mode
9849     * (00-24h-format) is used, in opposition to the USA, where the
9850     * am/pm mode is more commonly used.
9851     *
9852     * @see elm_clock_show_am_pm_get()
9853     *
9854     * @ingroup Clock
9855     */
9856    EAPI void              elm_clock_show_am_pm_set(Evas_Object *obj, Eina_Bool am_pm) EINA_ARG_NONNULL(1);
9857
9858    /**
9859     * Get if the given clock widget shows hours in military or am/pm
9860     * mode
9861     *
9862     * @param obj The clock object
9863     * @return @c EINA_TRUE, if in am/pm mode, @c EINA_FALSE if in
9864     * military
9865     *
9866     * This function gets if the clock shows hours in military or am/pm
9867     * mode.
9868     *
9869     * @see elm_clock_show_am_pm_set() for more details
9870     *
9871     * @ingroup Clock
9872     */
9873    EAPI Eina_Bool         elm_clock_show_am_pm_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9874
9875    /**
9876     * Set if the given clock widget must show time with seconds or not
9877     *
9878     * @param obj The clock object
9879     * @param seconds @c EINA_TRUE to show seconds, @c EINA_FALSE otherwise
9880     *
9881     * This function sets if the given clock must show or not elapsed
9882     * seconds. By default, they are @b not shown.
9883     *
9884     * @see elm_clock_show_seconds_get()
9885     *
9886     * @ingroup Clock
9887     */
9888    EAPI void              elm_clock_show_seconds_set(Evas_Object *obj, Eina_Bool seconds) EINA_ARG_NONNULL(1);
9889
9890    /**
9891     * Get whether the given clock widget is showing time with seconds
9892     * or not
9893     *
9894     * @param obj The clock object
9895     * @return @c EINA_TRUE if it's showing seconds, @c EINA_FALSE otherwise
9896     *
9897     * This function gets whether @p obj is showing or not the elapsed
9898     * seconds.
9899     *
9900     * @see elm_clock_show_seconds_set()
9901     *
9902     * @ingroup Clock
9903     */
9904    EAPI Eina_Bool         elm_clock_show_seconds_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9905
9906    /**
9907     * Set the interval on time updates for an user mouse button hold
9908     * on clock widgets' time edition.
9909     *
9910     * @param obj The clock object
9911     * @param interval The (first) interval value in seconds
9912     *
9913     * This interval value is @b decreased while the user holds the
9914     * mouse pointer either incrementing or decrementing a given the
9915     * clock digit's value.
9916     *
9917     * This helps the user to get to a given time distant from the
9918     * current one easier/faster, as it will start to flip quicker and
9919     * quicker on mouse button holds.
9920     *
9921     * The calculation for the next flip interval value, starting from
9922     * the one set with this call, is the previous interval divided by
9923     * 1.05, so it decreases a little bit.
9924     *
9925     * The default starting interval value for automatic flips is
9926     * @b 0.85 seconds.
9927     *
9928     * @see elm_clock_interval_get()
9929     *
9930     * @ingroup Clock
9931     */
9932    EAPI void              elm_clock_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
9933
9934    /**
9935     * Get the interval on time updates for an user mouse button hold
9936     * on clock widgets' time edition.
9937     *
9938     * @param obj The clock object
9939     * @return The (first) interval value, in seconds, set on it
9940     *
9941     * @see elm_clock_interval_set() for more details
9942     *
9943     * @ingroup Clock
9944     */
9945    EAPI double            elm_clock_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9946
9947    /**
9948     * @}
9949     */
9950
9951    /**
9952     * @defgroup Layout Layout
9953     *
9954     * @image html img/widget/layout/preview-00.png
9955     * @image latex img/widget/layout/preview-00.eps width=\textwidth
9956     *
9957     * @image html img/layout-predefined.png
9958     * @image latex img/layout-predefined.eps width=\textwidth
9959     *
9960     * This is a container widget that takes a standard Edje design file and
9961     * wraps it very thinly in a widget.
9962     *
9963     * An Edje design (theme) file has a very wide range of possibilities to
9964     * describe the behavior of elements added to the Layout. Check out the Edje
9965     * documentation and the EDC reference to get more information about what can
9966     * be done with Edje.
9967     *
9968     * Just like @ref List, @ref Box, and other container widgets, any
9969     * object added to the Layout will become its child, meaning that it will be
9970     * deleted if the Layout is deleted, move if the Layout is moved, and so on.
9971     *
9972     * The Layout widget can contain as many Contents, Boxes or Tables as
9973     * described in its theme file. For instance, objects can be added to
9974     * different Tables by specifying the respective Table part names. The same
9975     * is valid for Content and Box.
9976     *
9977     * The objects added as child of the Layout will behave as described in the
9978     * part description where they were added. There are 3 possible types of
9979     * parts where a child can be added:
9980     *
9981     * @section secContent Content (SWALLOW part)
9982     *
9983     * Only one object can be added to the @c SWALLOW part (but you still can
9984     * have many @c SWALLOW parts and one object on each of them). Use the @c
9985     * elm_object_content_set/get/unset functions to set, retrieve and unset
9986     * objects as content of the @c SWALLOW. After being set to this part, the
9987     * object size, position, visibility, clipping and other description
9988     * properties will be totally controlled by the description of the given part
9989     * (inside the Edje theme file).
9990     *
9991     * One can use @c evas_object_size_hint_* functions on the child to have some
9992     * kind of control over its behavior, but the resulting behavior will still
9993     * depend heavily on the @c SWALLOW part description.
9994     *
9995     * The Edje theme also can change the part description, based on signals or
9996     * scripts running inside the theme. This change can also be animated. All of
9997     * this will affect the child object set as content accordingly. The object
9998     * size will be changed if the part size is changed, it will animate move if
9999     * the part is moving, and so on.
10000     *
10001     * The following picture demonstrates a Layout widget with a child object
10002     * added to its @c SWALLOW:
10003     *
10004     * @image html layout_swallow.png
10005     * @image latex layout_swallow.eps width=\textwidth
10006     *
10007     * @section secBox Box (BOX part)
10008     *
10009     * An Edje @c BOX part is very similar to the Elementary @ref Box widget. It
10010     * allows one to add objects to the box and have them distributed along its
10011     * area, accordingly to the specified @a layout property (now by @a layout we
10012     * mean the chosen layouting design of the Box, not the Layout widget
10013     * itself).
10014     *
10015     * A similar effect for having a box with its position, size and other things
10016     * controlled by the Layout theme would be to create an Elementary @ref Box
10017     * widget and add it as a Content in the @c SWALLOW part.
10018     *
10019     * The main difference of using the Layout Box is that its behavior, the box
10020     * properties like layouting format, padding, align, etc. will be all
10021     * controlled by the theme. This means, for example, that a signal could be
10022     * sent to the Layout theme (with elm_object_signal_emit()) and the theme
10023     * handled the signal by changing the box padding, or align, or both. Using
10024     * the Elementary @ref Box widget is not necessarily harder or easier, it
10025     * just depends on the circunstances and requirements.
10026     *
10027     * The Layout Box can be used through the @c elm_layout_box_* set of
10028     * functions.
10029     *
10030     * The following picture demonstrates a Layout widget with many child objects
10031     * added to its @c BOX part:
10032     *
10033     * @image html layout_box.png
10034     * @image latex layout_box.eps width=\textwidth
10035     *
10036     * @section secTable Table (TABLE part)
10037     *
10038     * Just like the @ref secBox, the Layout Table is very similar to the
10039     * Elementary @ref Table widget. It allows one to add objects to the Table
10040     * specifying the row and column where the object should be added, and any
10041     * column or row span if necessary.
10042     *
10043     * Again, we could have this design by adding a @ref Table widget to the @c
10044     * SWALLOW part using elm_object_part_content_set(). The same difference happens
10045     * here when choosing to use the Layout Table (a @c TABLE part) instead of
10046     * the @ref Table plus @c SWALLOW part. It's just a matter of convenience.
10047     *
10048     * The Layout Table can be used through the @c elm_layout_table_* set of
10049     * functions.
10050     *
10051     * The following picture demonstrates a Layout widget with many child objects
10052     * added to its @c TABLE part:
10053     *
10054     * @image html layout_table.png
10055     * @image latex layout_table.eps width=\textwidth
10056     *
10057     * @section secPredef Predefined Layouts
10058     *
10059     * Another interesting thing about the Layout widget is that it offers some
10060     * predefined themes that come with the default Elementary theme. These
10061     * themes can be set by the call elm_layout_theme_set(), and provide some
10062     * basic functionality depending on the theme used.
10063     *
10064     * Most of them already send some signals, some already provide a toolbar or
10065     * back and next buttons.
10066     *
10067     * These are available predefined theme layouts. All of them have class = @c
10068     * layout, group = @c application, and style = one of the following options:
10069     *
10070     * @li @c toolbar-content - application with toolbar and main content area
10071     * @li @c toolbar-content-back - application with toolbar and main content
10072     * area with a back button and title area
10073     * @li @c toolbar-content-back-next - application with toolbar and main
10074     * content area with a back and next buttons and title area
10075     * @li @c content-back - application with a main content area with a back
10076     * button and title area
10077     * @li @c content-back-next - application with a main content area with a
10078     * back and next buttons and title area
10079     * @li @c toolbar-vbox - application with toolbar and main content area as a
10080     * vertical box
10081     * @li @c toolbar-table - application with toolbar and main content area as a
10082     * table
10083     *
10084     * @section secExamples Examples
10085     *
10086     * Some examples of the Layout widget can be found here:
10087     * @li @ref layout_example_01
10088     * @li @ref layout_example_02
10089     * @li @ref layout_example_03
10090     * @li @ref layout_example_edc
10091     *
10092     */
10093
10094    /**
10095     * Add a new layout to the parent
10096     *
10097     * @param parent The parent object
10098     * @return The new object or NULL if it cannot be created
10099     *
10100     * @see elm_layout_file_set()
10101     * @see elm_layout_theme_set()
10102     *
10103     * @ingroup Layout
10104     */
10105    EAPI Evas_Object       *elm_layout_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10106    /**
10107     * Set the file that will be used as layout
10108     *
10109     * @param obj The layout object
10110     * @param file The path to file (edj) that will be used as layout
10111     * @param group The group that the layout belongs in edje file
10112     *
10113     * @return (1 = success, 0 = error)
10114     *
10115     * @ingroup Layout
10116     */
10117    EAPI Eina_Bool          elm_layout_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
10118    /**
10119     * Set the edje group from the elementary theme that will be used as layout
10120     *
10121     * @param obj The layout object
10122     * @param clas the clas of the group
10123     * @param group the group
10124     * @param style the style to used
10125     *
10126     * @return (1 = success, 0 = error)
10127     *
10128     * @ingroup Layout
10129     */
10130    EAPI Eina_Bool          elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, const char *style) EINA_ARG_NONNULL(1);
10131    /**
10132     * Set the layout content.
10133     *
10134     * @param obj The layout object
10135     * @param swallow The swallow part name in the edje file
10136     * @param content The child that will be added in this layout object
10137     *
10138     * Once the content object is set, a previously set one will be deleted.
10139     * If you want to keep that old content object, use the
10140     * elm_object_part_content_unset() function.
10141     *
10142     * @note In an Edje theme, the part used as a content container is called @c
10143     * SWALLOW. This is why the parameter name is called @p swallow, but it is
10144     * expected to be a part name just like the second parameter of
10145     * elm_layout_box_append().
10146     *
10147     * @see elm_layout_box_append()
10148     * @see elm_object_part_content_get()
10149     * @see elm_object_part_content_unset()
10150     * @see @ref secBox
10151     * @deprecated use elm_object_part_content_set() instead
10152     *
10153     * @ingroup Layout
10154     */
10155    EINA_DEPRECATED EAPI void               elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
10156    /**
10157     * Get the child object in the given content part.
10158     *
10159     * @param obj The layout object
10160     * @param swallow The SWALLOW part to get its content
10161     *
10162     * @return The swallowed object or NULL if none or an error occurred
10163     *
10164     * @deprecated use elm_object_part_content_get() instead
10165     *
10166     * @ingroup Layout
10167     */
10168    EINA_DEPRECATED EAPI Evas_Object       *elm_layout_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10169    /**
10170     * Unset the layout content.
10171     *
10172     * @param obj The layout object
10173     * @param swallow The swallow part name in the edje file
10174     * @return The content that was being used
10175     *
10176     * Unparent and return the content object which was set for this part.
10177     *
10178     * @deprecated use elm_object_part_content_unset() instead
10179     *
10180     * @ingroup Layout
10181     */
10182    EINA_DEPRECATED EAPI Evas_Object       *elm_layout_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10183    /**
10184     * Set the text of the given part
10185     *
10186     * @param obj The layout object
10187     * @param part The TEXT part where to set the text
10188     * @param text The text to set
10189     *
10190     * @ingroup Layout
10191     * @deprecated use elm_object_part_text_set() instead.
10192     */
10193    EINA_DEPRECATED EAPI void               elm_layout_text_set(Evas_Object *obj, const char *part, const char *text) EINA_ARG_NONNULL(1);
10194    /**
10195     * Get the text set in the given part
10196     *
10197     * @param obj The layout object
10198     * @param part The TEXT part to retrieve the text off
10199     *
10200     * @return The text set in @p part
10201     *
10202     * @ingroup Layout
10203     * @deprecated use elm_object_part_text_get() instead.
10204     */
10205    EINA_DEPRECATED EAPI const char        *elm_layout_text_get(const Evas_Object *obj, const char *part) EINA_ARG_NONNULL(1);
10206    /**
10207     * Append child to layout box part.
10208     *
10209     * @param obj the layout object
10210     * @param part the box part to which the object will be appended.
10211     * @param child the child object to append to box.
10212     *
10213     * Once the object is appended, it will become child of the layout. Its
10214     * lifetime will be bound to the layout, whenever the layout dies the child
10215     * will be deleted automatically. One should use elm_layout_box_remove() to
10216     * make this layout forget about the object.
10217     *
10218     * @see elm_layout_box_prepend()
10219     * @see elm_layout_box_insert_before()
10220     * @see elm_layout_box_insert_at()
10221     * @see elm_layout_box_remove()
10222     *
10223     * @ingroup Layout
10224     */
10225    EAPI void               elm_layout_box_append(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
10226    /**
10227     * Prepend child to layout box part.
10228     *
10229     * @param obj the layout object
10230     * @param part the box part to prepend.
10231     * @param child the child object to prepend to box.
10232     *
10233     * Once the object is prepended, it will become child of the layout. Its
10234     * lifetime will be bound to the layout, whenever the layout dies the child
10235     * will be deleted automatically. One should use elm_layout_box_remove() to
10236     * make this layout forget about the object.
10237     *
10238     * @see elm_layout_box_append()
10239     * @see elm_layout_box_insert_before()
10240     * @see elm_layout_box_insert_at()
10241     * @see elm_layout_box_remove()
10242     *
10243     * @ingroup Layout
10244     */
10245    EAPI void               elm_layout_box_prepend(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
10246    /**
10247     * Insert child to layout box part before a reference object.
10248     *
10249     * @param obj the layout object
10250     * @param part the box part to insert.
10251     * @param child the child object to insert into box.
10252     * @param reference another reference object to insert before in box.
10253     *
10254     * Once the object is inserted, it will become child of the layout. Its
10255     * lifetime will be bound to the layout, whenever the layout dies the child
10256     * will be deleted automatically. One should use elm_layout_box_remove() to
10257     * make this layout forget about the object.
10258     *
10259     * @see elm_layout_box_append()
10260     * @see elm_layout_box_prepend()
10261     * @see elm_layout_box_insert_before()
10262     * @see elm_layout_box_remove()
10263     *
10264     * @ingroup Layout
10265     */
10266    EAPI void               elm_layout_box_insert_before(Evas_Object *obj, const char *part, Evas_Object *child, const Evas_Object *reference) EINA_ARG_NONNULL(1);
10267    /**
10268     * Insert child to layout box part at a given position.
10269     *
10270     * @param obj the layout object
10271     * @param part the box part to insert.
10272     * @param child the child object to insert into box.
10273     * @param pos the numeric position >=0 to insert the child.
10274     *
10275     * Once the object is inserted, it will become child of the layout. Its
10276     * lifetime will be bound to the layout, whenever the layout dies the child
10277     * will be deleted automatically. One should use elm_layout_box_remove() to
10278     * make this layout forget about the object.
10279     *
10280     * @see elm_layout_box_append()
10281     * @see elm_layout_box_prepend()
10282     * @see elm_layout_box_insert_before()
10283     * @see elm_layout_box_remove()
10284     *
10285     * @ingroup Layout
10286     */
10287    EAPI void               elm_layout_box_insert_at(Evas_Object *obj, const char *part, Evas_Object *child, unsigned int pos) EINA_ARG_NONNULL(1);
10288    /**
10289     * Remove a child of the given part box.
10290     *
10291     * @param obj The layout object
10292     * @param part The box part name to remove child.
10293     * @param child The object to remove from box.
10294     * @return The object that was being used, or NULL if not found.
10295     *
10296     * The object will be removed from the box part and its lifetime will
10297     * not be handled by the layout anymore. This is equivalent to
10298     * elm_object_part_content_unset() for box.
10299     *
10300     * @see elm_layout_box_append()
10301     * @see elm_layout_box_remove_all()
10302     *
10303     * @ingroup Layout
10304     */
10305    EAPI Evas_Object       *elm_layout_box_remove(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1, 2, 3);
10306    /**
10307     * Remove all children of the given part box.
10308     *
10309     * @param obj The layout object
10310     * @param part The box part name to remove child.
10311     * @param clear If EINA_TRUE, then all objects will be deleted as
10312     *        well, otherwise they will just be removed and will be
10313     *        dangling on the canvas.
10314     *
10315     * The objects will be removed from the box part and their lifetime will
10316     * not be handled by the layout anymore. This is equivalent to
10317     * elm_layout_box_remove() for all box children.
10318     *
10319     * @see elm_layout_box_append()
10320     * @see elm_layout_box_remove()
10321     *
10322     * @ingroup Layout
10323     */
10324    EAPI void               elm_layout_box_remove_all(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
10325    /**
10326     * Insert child to layout table part.
10327     *
10328     * @param obj the layout object
10329     * @param part the box part to pack child.
10330     * @param child_obj the child object to pack into table.
10331     * @param col the column to which the child should be added. (>= 0)
10332     * @param row the row to which the child should be added. (>= 0)
10333     * @param colspan how many columns should be used to store this object. (>=
10334     *        1)
10335     * @param rowspan how many rows should be used to store this object. (>= 1)
10336     *
10337     * Once the object is inserted, it will become child of the table. Its
10338     * lifetime will be bound to the layout, and whenever the layout dies the
10339     * child will be deleted automatically. One should use
10340     * elm_layout_table_remove() to make this layout forget about the object.
10341     *
10342     * If @p colspan or @p rowspan are bigger than 1, that object will occupy
10343     * more space than a single cell. For instance, the following code:
10344     * @code
10345     * elm_layout_table_pack(layout, "table_part", child, 0, 1, 3, 1);
10346     * @endcode
10347     *
10348     * Would result in an object being added like the following picture:
10349     *
10350     * @image html layout_colspan.png
10351     * @image latex layout_colspan.eps width=\textwidth
10352     *
10353     * @see elm_layout_table_unpack()
10354     * @see elm_layout_table_clear()
10355     *
10356     * @ingroup Layout
10357     */
10358    EAPI void               elm_layout_table_pack(Evas_Object *obj, const char *part, Evas_Object *child_obj, unsigned short col, unsigned short row, unsigned short colspan, unsigned short rowspan) EINA_ARG_NONNULL(1);
10359    /**
10360     * Unpack (remove) a child of the given part table.
10361     *
10362     * @param obj The layout object
10363     * @param part The table part name to remove child.
10364     * @param child_obj The object to remove from table.
10365     * @return The object that was being used, or NULL if not found.
10366     *
10367     * The object will be unpacked from the table part and its lifetime
10368     * will not be handled by the layout anymore. This is equivalent to
10369     * elm_object_part_content_unset() for table.
10370     *
10371     * @see elm_layout_table_pack()
10372     * @see elm_layout_table_clear()
10373     *
10374     * @ingroup Layout
10375     */
10376    EAPI Evas_Object       *elm_layout_table_unpack(Evas_Object *obj, const char *part, Evas_Object *child_obj) EINA_ARG_NONNULL(1, 2, 3);
10377    /**
10378     * Remove all the child objects of the given part table.
10379     *
10380     * @param obj The layout object
10381     * @param part The table part name to remove child.
10382     * @param clear If EINA_TRUE, then all objects will be deleted as
10383     *        well, otherwise they will just be removed and will be
10384     *        dangling on the canvas.
10385     *
10386     * The objects will be removed from the table part and their lifetime will
10387     * not be handled by the layout anymore. This is equivalent to
10388     * elm_layout_table_unpack() for all table children.
10389     *
10390     * @see elm_layout_table_pack()
10391     * @see elm_layout_table_unpack()
10392     *
10393     * @ingroup Layout
10394     */
10395    EAPI void               elm_layout_table_clear(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
10396    /**
10397     * Get the edje layout
10398     *
10399     * @param obj The layout object
10400     *
10401     * @return A Evas_Object with the edje layout settings loaded
10402     * with function elm_layout_file_set
10403     *
10404     * This returns the edje object. It is not expected to be used to then
10405     * swallow objects via edje_object_part_swallow() for example. Use
10406     * elm_object_part_content_set() instead so child object handling and sizing is
10407     * done properly.
10408     *
10409     * @note This function should only be used if you really need to call some
10410     * low level Edje function on this edje object. All the common stuff (setting
10411     * text, emitting signals, hooking callbacks to signals, etc.) can be done
10412     * with proper elementary functions.
10413     *
10414     * @see elm_object_signal_callback_add()
10415     * @see elm_object_signal_emit()
10416     * @see elm_object_part_text_set()
10417     * @see elm_object_part_content_set()
10418     * @see elm_layout_box_append()
10419     * @see elm_layout_table_pack()
10420     * @see elm_layout_data_get()
10421     *
10422     * @ingroup Layout
10423     */
10424    EAPI Evas_Object       *elm_layout_edje_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10425    /**
10426     * Get the edje data from the given layout
10427     *
10428     * @param obj The layout object
10429     * @param key The data key
10430     *
10431     * @return The edje data string
10432     *
10433     * This function fetches data specified inside the edje theme of this layout.
10434     * This function return NULL if data is not found.
10435     *
10436     * In EDC this comes from a data block within the group block that @p
10437     * obj was loaded from. E.g.
10438     *
10439     * @code
10440     * collections {
10441     *   group {
10442     *     name: "a_group";
10443     *     data {
10444     *       item: "key1" "value1";
10445     *       item: "key2" "value2";
10446     *     }
10447     *   }
10448     * }
10449     * @endcode
10450     *
10451     * @ingroup Layout
10452     */
10453    EAPI const char        *elm_layout_data_get(const Evas_Object *obj, const char *key) EINA_ARG_NONNULL(1, 2);
10454    /**
10455     * Eval sizing
10456     *
10457     * @param obj The layout object
10458     *
10459     * Manually forces a sizing re-evaluation. This is useful when the minimum
10460     * size required by the edje theme of this layout has changed. The change on
10461     * the minimum size required by the edje theme is not immediately reported to
10462     * the elementary layout, so one needs to call this function in order to tell
10463     * the widget (layout) that it needs to reevaluate its own size.
10464     *
10465     * The minimum size of the theme is calculated based on minimum size of
10466     * parts, the size of elements inside containers like box and table, etc. All
10467     * of this can change due to state changes, and that's when this function
10468     * should be called.
10469     *
10470     * Also note that a standard signal of "size,eval" "elm" emitted from the
10471     * edje object will cause this to happen too.
10472     *
10473     * @ingroup Layout
10474     */
10475    EAPI void               elm_layout_sizing_eval(Evas_Object *obj) EINA_ARG_NONNULL(1);
10476
10477    /**
10478     * Sets a specific cursor for an edje part.
10479     *
10480     * @param obj The layout object.
10481     * @param part_name a part from loaded edje group.
10482     * @param cursor cursor name to use, see Elementary_Cursor.h
10483     *
10484     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10485     *         part not exists or it has "mouse_events: 0".
10486     *
10487     * @ingroup Layout
10488     */
10489    EAPI Eina_Bool          elm_layout_part_cursor_set(Evas_Object *obj, const char *part_name, const char *cursor) EINA_ARG_NONNULL(1, 2);
10490
10491    /**
10492     * Get the cursor to be shown when mouse is over an edje part
10493     *
10494     * @param obj The layout object.
10495     * @param part_name a part from loaded edje group.
10496     * @return the cursor name.
10497     *
10498     * @ingroup Layout
10499     */
10500    EAPI const char        *elm_layout_part_cursor_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10501
10502    /**
10503     * Unsets a cursor previously set with elm_layout_part_cursor_set().
10504     *
10505     * @param obj The layout object.
10506     * @param part_name a part from loaded edje group, that had a cursor set
10507     *        with elm_layout_part_cursor_set().
10508     *
10509     * @ingroup Layout
10510     */
10511    EAPI void               elm_layout_part_cursor_unset(Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10512
10513    /**
10514     * Sets a specific cursor style for an edje part.
10515     *
10516     * @param obj The layout object.
10517     * @param part_name a part from loaded edje group.
10518     * @param style the theme style to use (default, transparent, ...)
10519     *
10520     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10521     *         part not exists or it did not had a cursor set.
10522     *
10523     * @ingroup Layout
10524     */
10525    EAPI Eina_Bool          elm_layout_part_cursor_style_set(Evas_Object *obj, const char *part_name, const char *style) EINA_ARG_NONNULL(1, 2);
10526
10527    /**
10528     * Gets a specific cursor style for an edje part.
10529     *
10530     * @param obj The layout object.
10531     * @param part_name a part from loaded edje group.
10532     *
10533     * @return the theme style in use, defaults to "default". If the
10534     *         object does not have a cursor set, then NULL is returned.
10535     *
10536     * @ingroup Layout
10537     */
10538    EAPI const char        *elm_layout_part_cursor_style_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10539
10540    /**
10541     * Sets if the cursor set should be searched on the theme or should use
10542     * the provided by the engine, only.
10543     *
10544     * @note before you set if should look on theme you should define a
10545     * cursor with elm_layout_part_cursor_set(). By default it will only
10546     * look for cursors provided by the engine.
10547     *
10548     * @param obj The layout object.
10549     * @param part_name a part from loaded edje group.
10550     * @param engine_only if cursors should be just provided by the engine (EINA_TRUE)
10551     *        or should also search on widget's theme as well (EINA_FALSE)
10552     *
10553     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10554     *         part not exists or it did not had a cursor set.
10555     *
10556     * @ingroup Layout
10557     */
10558    EAPI Eina_Bool          elm_layout_part_cursor_engine_only_set(Evas_Object *obj, const char *part_name, Eina_Bool engine_only) EINA_ARG_NONNULL(1, 2);
10559
10560    /**
10561     * Gets a specific cursor engine_only for an edje part.
10562     *
10563     * @param obj The layout object.
10564     * @param part_name a part from loaded edje group.
10565     *
10566     * @return whenever the cursor is just provided by engine or also from theme.
10567     *
10568     * @ingroup Layout
10569     */
10570    EAPI Eina_Bool          elm_layout_part_cursor_engine_only_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10571
10572 /**
10573  * @def elm_layout_icon_set
10574  * Convenience macro to set the icon object in a layout that follows the
10575  * Elementary naming convention for its parts.
10576  *
10577  * @ingroup Layout
10578  */
10579 #define elm_layout_icon_set(_ly, _obj) \
10580   do { \
10581     const char *sig; \
10582     elm_object_part_content_set((_ly), "elm.swallow.icon", (_obj)); \
10583     if ((_obj)) sig = "elm,state,icon,visible"; \
10584     else sig = "elm,state,icon,hidden"; \
10585     elm_object_signal_emit((_ly), sig, "elm"); \
10586   } while (0)
10587
10588 /**
10589  * @def elm_layout_icon_get
10590  * Convienience macro to get the icon object from a layout that follows the
10591  * Elementary naming convention for its parts.
10592  *
10593  * @ingroup Layout
10594  */
10595 #define elm_layout_icon_get(_ly) \
10596   elm_object_part_content_get((_ly), "elm.swallow.icon")
10597
10598 /**
10599  * @def elm_layout_end_set
10600  * Convienience macro to set the end object in a layout that follows the
10601  * Elementary naming convention for its parts.
10602  *
10603  * @ingroup Layout
10604  */
10605 #define elm_layout_end_set(_ly, _obj) \
10606   do { \
10607     const char *sig; \
10608     elm_object_part_content_set((_ly), "elm.swallow.end", (_obj)); \
10609     if ((_obj)) sig = "elm,state,end,visible"; \
10610     else sig = "elm,state,end,hidden"; \
10611     elm_object_signal_emit((_ly), sig, "elm"); \
10612   } while (0)
10613
10614 /**
10615  * @def elm_layout_end_get
10616  * Convienience macro to get the end object in a layout that follows the
10617  * Elementary naming convention for its parts.
10618  *
10619  * @ingroup Layout
10620  */
10621 #define elm_layout_end_get(_ly) \
10622   elm_object_part_content_get((_ly), "elm.swallow.end")
10623
10624 /**
10625  * @def elm_layout_label_set
10626  * Convienience macro to set the label in a layout that follows the
10627  * Elementary naming convention for its parts.
10628  *
10629  * @ingroup Layout
10630  * @deprecated use elm_object_text_set() instead.
10631  */
10632 #define elm_layout_label_set(_ly, _txt) \
10633   elm_layout_text_set((_ly), "elm.text", (_txt))
10634
10635 /**
10636  * @def elm_layout_label_get
10637  * Convenience macro to get the label in a layout that follows the
10638  * Elementary naming convention for its parts.
10639  *
10640  * @ingroup Layout
10641  * @deprecated use elm_object_text_set() instead.
10642  */
10643 #define elm_layout_label_get(_ly) \
10644   elm_layout_text_get((_ly), "elm.text")
10645
10646    /* smart callbacks called:
10647     * "theme,changed" - when elm theme is changed.
10648     */
10649
10650    /**
10651     * @defgroup Notify Notify
10652     *
10653     * @image html img/widget/notify/preview-00.png
10654     * @image latex img/widget/notify/preview-00.eps
10655     *
10656     * Display a container in a particular region of the parent(top, bottom,
10657     * etc).  A timeout can be set to automatically hide the notify. This is so
10658     * that, after an evas_object_show() on a notify object, if a timeout was set
10659     * on it, it will @b automatically get hidden after that time.
10660     *
10661     * Signals that you can add callbacks for are:
10662     * @li "timeout" - when timeout happens on notify and it's hidden
10663     * @li "block,clicked" - when a click outside of the notify happens
10664     *
10665     * Default contents parts of the notify widget that you can use for are:
10666     * @li "default" - A content of the notify
10667     *
10668     * @ref tutorial_notify show usage of the API.
10669     *
10670     * @{
10671     */
10672    /**
10673     * @brief Possible orient values for notify.
10674     *
10675     * This values should be used in conjunction to elm_notify_orient_set() to
10676     * set the position in which the notify should appear(relative to its parent)
10677     * and in conjunction with elm_notify_orient_get() to know where the notify
10678     * is appearing.
10679     */
10680    typedef enum _Elm_Notify_Orient
10681      {
10682         ELM_NOTIFY_ORIENT_TOP, /**< Notify should appear in the top of parent, default */
10683         ELM_NOTIFY_ORIENT_CENTER, /**< Notify should appear in the center of parent */
10684         ELM_NOTIFY_ORIENT_BOTTOM, /**< Notify should appear in the bottom of parent */
10685         ELM_NOTIFY_ORIENT_LEFT, /**< Notify should appear in the left of parent */
10686         ELM_NOTIFY_ORIENT_RIGHT, /**< Notify should appear in the right of parent */
10687         ELM_NOTIFY_ORIENT_TOP_LEFT, /**< Notify should appear in the top left of parent */
10688         ELM_NOTIFY_ORIENT_TOP_RIGHT, /**< Notify should appear in the top right of parent */
10689         ELM_NOTIFY_ORIENT_BOTTOM_LEFT, /**< Notify should appear in the bottom left of parent */
10690         ELM_NOTIFY_ORIENT_BOTTOM_RIGHT, /**< Notify should appear in the bottom right of parent */
10691         ELM_NOTIFY_ORIENT_LAST /**< Sentinel value, @b don't use */
10692      } Elm_Notify_Orient;
10693    /**
10694     * @brief Add a new notify to the parent
10695     *
10696     * @param parent The parent object
10697     * @return The new object or NULL if it cannot be created
10698     */
10699    EAPI Evas_Object      *elm_notify_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10700    /**
10701     * @brief Set the content of the notify widget
10702     *
10703     * @param obj The notify object
10704     * @param content The content will be filled in this notify object
10705     *
10706     * Once the content object is set, a previously set one will be deleted. If
10707     * you want to keep that old content object, use the
10708     * elm_notify_content_unset() function.
10709     *
10710     * @deprecated use elm_object_content_set() instead
10711     *
10712     */
10713    EINA_DEPRECATED EAPI void              elm_notify_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
10714    /**
10715     * @brief Unset the content of the notify widget
10716     *
10717     * @param obj The notify object
10718     * @return The content that was being used
10719     *
10720     * Unparent and return the content object which was set for this widget
10721     *
10722     * @see elm_notify_content_set()
10723     * @deprecated use elm_object_content_unset() instead
10724     *
10725     */
10726    EINA_DEPRECATED EAPI Evas_Object      *elm_notify_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
10727    /**
10728     * @brief Return the content of the notify widget
10729     *
10730     * @param obj The notify object
10731     * @return The content that is being used
10732     *
10733     * @see elm_notify_content_set()
10734     * @deprecated use elm_object_content_get() instead
10735     *
10736     */
10737    EINA_DEPRECATED EAPI Evas_Object      *elm_notify_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10738    /**
10739     * @brief Set the notify parent
10740     *
10741     * @param obj The notify object
10742     * @param content The new parent
10743     *
10744     * Once the parent object is set, a previously set one will be disconnected
10745     * and replaced.
10746     */
10747    EAPI void              elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10748    /**
10749     * @brief Get the notify parent
10750     *
10751     * @param obj The notify object
10752     * @return The parent
10753     *
10754     * @see elm_notify_parent_set()
10755     */
10756    EAPI Evas_Object      *elm_notify_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10757    /**
10758     * @brief Set the orientation
10759     *
10760     * @param obj The notify object
10761     * @param orient The new orientation
10762     *
10763     * Sets the position in which the notify will appear in its parent.
10764     *
10765     * @see @ref Elm_Notify_Orient for possible values.
10766     */
10767    EAPI void              elm_notify_orient_set(Evas_Object *obj, Elm_Notify_Orient orient) EINA_ARG_NONNULL(1);
10768    /**
10769     * @brief Return the orientation
10770     * @param obj The notify object
10771     * @return The orientation of the notification
10772     *
10773     * @see elm_notify_orient_set()
10774     * @see Elm_Notify_Orient
10775     */
10776    EAPI Elm_Notify_Orient elm_notify_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10777    /**
10778     * @brief Set the time interval after which the notify window is going to be
10779     * hidden.
10780     *
10781     * @param obj The notify object
10782     * @param time The timeout in seconds
10783     *
10784     * This function sets a timeout and starts the timer controlling when the
10785     * notify is hidden. Since calling evas_object_show() on a notify restarts
10786     * the timer controlling when the notify is hidden, setting this before the
10787     * notify is shown will in effect mean starting the timer when the notify is
10788     * shown.
10789     *
10790     * @note Set a value <= 0.0 to disable a running timer.
10791     *
10792     * @note If the value > 0.0 and the notify is previously visible, the
10793     * timer will be started with this value, canceling any running timer.
10794     */
10795    EAPI void              elm_notify_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
10796    /**
10797     * @brief Return the timeout value (in seconds)
10798     * @param obj the notify object
10799     *
10800     * @see elm_notify_timeout_set()
10801     */
10802    EAPI double            elm_notify_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10803    /**
10804     * @brief Sets whether events should be passed to by a click outside
10805     * its area.
10806     *
10807     * @param obj The notify object
10808     * @param repeats EINA_TRUE Events are repeats, else no
10809     *
10810     * When true if the user clicks outside the window the events will be caught
10811     * by the others widgets, else the events are blocked.
10812     *
10813     * @note The default value is EINA_TRUE.
10814     */
10815    EAPI void              elm_notify_repeat_events_set(Evas_Object *obj, Eina_Bool repeat) EINA_ARG_NONNULL(1);
10816    /**
10817     * @brief Return true if events are repeat below the notify object
10818     * @param obj the notify object
10819     *
10820     * @see elm_notify_repeat_events_set()
10821     */
10822    EAPI Eina_Bool         elm_notify_repeat_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10823    /**
10824     * @}
10825     */
10826
10827    /**
10828     * @defgroup Hover Hover
10829     *
10830     * @image html img/widget/hover/preview-00.png
10831     * @image latex img/widget/hover/preview-00.eps
10832     *
10833     * A Hover object will hover over its @p parent object at the @p target
10834     * location. Anything in the background will be given a darker coloring to
10835     * indicate that the hover object is on top (at the default theme). When the
10836     * hover is clicked it is dismissed(hidden), if the contents of the hover are
10837     * clicked that @b doesn't cause the hover to be dismissed.
10838     *
10839     * A Hover object has two parents. One parent that owns it during creation
10840     * and the other parent being the one over which the hover object spans.
10841     *
10842     *
10843     * @note The hover object will take up the entire space of @p target
10844     * object.
10845     *
10846     * Elementary has the following styles for the hover widget:
10847     * @li default
10848     * @li popout
10849     * @li menu
10850     * @li hoversel_vertical
10851     *
10852     * The following are the available position for content:
10853     * @li left
10854     * @li top-left
10855     * @li top
10856     * @li top-right
10857     * @li right
10858     * @li bottom-right
10859     * @li bottom
10860     * @li bottom-left
10861     * @li middle
10862     * @li smart
10863     *
10864     * Signals that you can add callbacks for are:
10865     * @li "clicked" - the user clicked the empty space in the hover to dismiss
10866     * @li "smart,changed" - a content object placed under the "smart"
10867     *                   policy was replaced to a new slot direction.
10868     *
10869     * See @ref tutorial_hover for more information.
10870     *
10871     * @{
10872     */
10873    typedef enum _Elm_Hover_Axis
10874      {
10875         ELM_HOVER_AXIS_NONE, /**< ELM_HOVER_AXIS_NONE -- no prefered orientation */
10876         ELM_HOVER_AXIS_HORIZONTAL, /**< ELM_HOVER_AXIS_HORIZONTAL -- horizontal */
10877         ELM_HOVER_AXIS_VERTICAL, /**< ELM_HOVER_AXIS_VERTICAL -- vertical */
10878         ELM_HOVER_AXIS_BOTH /**< ELM_HOVER_AXIS_BOTH -- both */
10879      } Elm_Hover_Axis;
10880    /**
10881     * @brief Adds a hover object to @p parent
10882     *
10883     * @param parent The parent object
10884     * @return The hover object or NULL if one could not be created
10885     */
10886    EAPI Evas_Object *elm_hover_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10887    /**
10888     * @brief Sets the target object for the hover.
10889     *
10890     * @param obj The hover object
10891     * @param target The object to center the hover onto.
10892     *
10893     * This function will cause the hover to be centered on the target object.
10894     */
10895    EAPI void         elm_hover_target_set(Evas_Object *obj, Evas_Object *target) EINA_ARG_NONNULL(1);
10896    /**
10897     * @brief Gets the target object for the hover.
10898     *
10899     * @param obj The hover object
10900     * @return The target object for the hover.
10901     *
10902     * @see elm_hover_target_set()
10903     */
10904    EAPI Evas_Object *elm_hover_target_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10905    /**
10906     * @brief Sets the parent object for the hover.
10907     *
10908     * @param obj The hover object
10909     * @param parent The object to locate the hover over.
10910     *
10911     * This function will cause the hover to take up the entire space that the
10912     * parent object fills.
10913     */
10914    EAPI void         elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10915    /**
10916     * @brief Gets the parent object for the hover.
10917     *
10918     * @param obj The hover object
10919     * @return The parent object to locate the hover over.
10920     *
10921     * @see elm_hover_parent_set()
10922     */
10923    EAPI Evas_Object *elm_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10924    /**
10925     * @brief Sets the content of the hover object and the direction in which it
10926     * will pop out.
10927     *
10928     * @param obj The hover object
10929     * @param swallow The direction that the object will be displayed
10930     * at. Accepted values are "left", "top-left", "top", "top-right",
10931     * "right", "bottom-right", "bottom", "bottom-left", "middle" and
10932     * "smart".
10933     * @param content The content to place at @p swallow
10934     *
10935     * Once the content object is set for a given direction, a previously
10936     * set one (on the same direction) will be deleted. If you want to
10937     * keep that old content object, use the elm_hover_content_unset()
10938     * function.
10939     *
10940     * All directions may have contents at the same time, except for
10941     * "smart". This is a special placement hint and its use case
10942     * independs of the calculations coming from
10943     * elm_hover_best_content_location_get(). Its use is for cases when
10944     * one desires only one hover content, but with a dynamic special
10945     * placement within the hover area. The content's geometry, whenever
10946     * it changes, will be used to decide on a best location, not
10947     * extrapolating the hover's parent object view to show it in (still
10948     * being the hover's target determinant of its medium part -- move and
10949     * resize it to simulate finger sizes, for example). If one of the
10950     * directions other than "smart" are used, a previously content set
10951     * using it will be deleted, and vice-versa.
10952     */
10953    EAPI void         elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
10954    /**
10955     * @brief Get the content of the hover object, in a given direction.
10956     *
10957     * Return the content object which was set for this widget in the
10958     * @p swallow direction.
10959     *
10960     * @param obj The hover object
10961     * @param swallow The direction that the object was display at.
10962     * @return The content that was being used
10963     *
10964     * @see elm_hover_content_set()
10965     */
10966    EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10967    /**
10968     * @brief Unset the content of the hover object, in a given direction.
10969     *
10970     * Unparent and return the content object set at @p swallow direction.
10971     *
10972     * @param obj The hover object
10973     * @param swallow The direction that the object was display at.
10974     * @return The content that was being used.
10975     *
10976     * @see elm_hover_content_set()
10977     */
10978    EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10979    /**
10980     * @brief Returns the best swallow location for content in the hover.
10981     *
10982     * @param obj The hover object
10983     * @param pref_axis The preferred orientation axis for the hover object to use
10984     * @return The edje location to place content into the hover or @c
10985     *         NULL, on errors.
10986     *
10987     * Best is defined here as the location at which there is the most available
10988     * space.
10989     *
10990     * @p pref_axis may be one of
10991     * - @c ELM_HOVER_AXIS_NONE -- no prefered orientation
10992     * - @c ELM_HOVER_AXIS_HORIZONTAL -- horizontal
10993     * - @c ELM_HOVER_AXIS_VERTICAL -- vertical
10994     * - @c ELM_HOVER_AXIS_BOTH -- both
10995     *
10996     * If ELM_HOVER_AXIS_HORIZONTAL is choosen the returned position will
10997     * nescessarily be along the horizontal axis("left" or "right"). If
10998     * ELM_HOVER_AXIS_VERTICAL is choosen the returned position will nescessarily
10999     * be along the vertical axis("top" or "bottom"). Chossing
11000     * ELM_HOVER_AXIS_BOTH or ELM_HOVER_AXIS_NONE has the same effect and the
11001     * returned position may be in either axis.
11002     *
11003     * @see elm_hover_content_set()
11004     */
11005    EAPI const char  *elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis) EINA_ARG_NONNULL(1);
11006    /**
11007     * @}
11008     */
11009
11010    /* entry */
11011    /**
11012     * @defgroup Entry Entry
11013     *
11014     * @image html img/widget/entry/preview-00.png
11015     * @image latex img/widget/entry/preview-00.eps width=\textwidth
11016     * @image html img/widget/entry/preview-01.png
11017     * @image latex img/widget/entry/preview-01.eps width=\textwidth
11018     * @image html img/widget/entry/preview-02.png
11019     * @image latex img/widget/entry/preview-02.eps width=\textwidth
11020     * @image html img/widget/entry/preview-03.png
11021     * @image latex img/widget/entry/preview-03.eps width=\textwidth
11022     *
11023     * An entry is a convenience widget which shows a box that the user can
11024     * enter text into. Entries by default don't scroll, so they grow to
11025     * accomodate the entire text, resizing the parent window as needed. This
11026     * can be changed with the elm_entry_scrollable_set() function.
11027     *
11028     * They can also be single line or multi line (the default) and when set
11029     * to multi line mode they support text wrapping in any of the modes
11030     * indicated by #Elm_Wrap_Type.
11031     *
11032     * Other features include password mode, filtering of inserted text with
11033     * elm_entry_text_filter_append() and related functions, inline "items" and
11034     * formatted markup text.
11035     *
11036     * @section entry-markup Formatted text
11037     *
11038     * The markup tags supported by the Entry are defined by the theme, but
11039     * even when writing new themes or extensions it's a good idea to stick to
11040     * a sane default, to maintain coherency and avoid application breakages.
11041     * Currently defined by the default theme are the following tags:
11042     * @li \<br\>: Inserts a line break.
11043     * @li \<ps\>: Inserts a paragraph separator. This is preferred over line
11044     * breaks.
11045     * @li \<tab\>: Inserts a tab.
11046     * @li \<em\>...\</em\>: Emphasis. Sets the @em oblique style for the
11047     * enclosed text.
11048     * @li \<b\>...\</b\>: Sets the @b bold style for the enclosed text.
11049     * @li \<link\>...\</link\>: Underlines the enclosed text.
11050     * @li \<hilight\>...\</hilight\>: Hilights the enclosed text.
11051     *
11052     * @section entry-special Special markups
11053     *
11054     * Besides those used to format text, entries support two special markup
11055     * tags used to insert clickable portions of text or items inlined within
11056     * the text.
11057     *
11058     * @subsection entry-anchors Anchors
11059     *
11060     * Anchors are similar to HTML anchors. Text can be surrounded by \<a\> and
11061     * \</a\> tags and an event will be generated when this text is clicked,
11062     * like this:
11063     *
11064     * @code
11065     * This text is outside <a href=anc-01>but this one is an anchor</a>
11066     * @endcode
11067     *
11068     * The @c href attribute in the opening tag gives the name that will be
11069     * used to identify the anchor and it can be any valid utf8 string.
11070     *
11071     * When an anchor is clicked, an @c "anchor,clicked" signal is emitted with
11072     * an #Elm_Entry_Anchor_Info in the @c event_info parameter for the
11073     * callback function. The same applies for "anchor,in" (mouse in), "anchor,out"
11074     * (mouse out), "anchor,down" (mouse down), and "anchor,up" (mouse up) events on
11075     * an anchor.
11076     *
11077     * @subsection entry-items Items
11078     *
11079     * Inlined in the text, any other @c Evas_Object can be inserted by using
11080     * \<item\> tags this way:
11081     *
11082     * @code
11083     * <item size=16x16 vsize=full href=emoticon/haha></item>
11084     * @endcode
11085     *
11086     * Just like with anchors, the @c href identifies each item, but these need,
11087     * in addition, to indicate their size, which is done using any one of
11088     * @c size, @c absize or @c relsize attributes. These attributes take their
11089     * value in the WxH format, where W is the width and H the height of the
11090     * item.
11091     *
11092     * @li absize: Absolute pixel size for the item. Whatever value is set will
11093     * be the item's size regardless of any scale value the object may have
11094     * been set to. The final line height will be adjusted to fit larger items.
11095     * @li size: Similar to @c absize, but it's adjusted to the scale value set
11096     * for the object.
11097     * @li relsize: Size is adjusted for the item to fit within the current
11098     * line height.
11099     *
11100     * Besides their size, items are specificed a @c vsize value that affects
11101     * how their final size and position are calculated. The possible values
11102     * are:
11103     * @li ascent: Item will be placed within the line's baseline and its
11104     * ascent. That is, the height between the line where all characters are
11105     * positioned and the highest point in the line. For @c size and @c absize
11106     * items, the descent value will be added to the total line height to make
11107     * them fit. @c relsize items will be adjusted to fit within this space.
11108     * @li full: Items will be placed between the descent and ascent, or the
11109     * lowest point in the line and its highest.
11110     *
11111     * The next image shows different configurations of items and how
11112     * the previously mentioned options affect their sizes. In all cases,
11113     * the green line indicates the ascent, blue for the baseline and red for
11114     * the descent.
11115     *
11116     * @image html entry_item.png
11117     * @image latex entry_item.eps width=\textwidth
11118     *
11119     * And another one to show how size differs from absize. In the first one,
11120     * the scale value is set to 1.0, while the second one is using one of 2.0.
11121     *
11122     * @image html entry_item_scale.png
11123     * @image latex entry_item_scale.eps width=\textwidth
11124     *
11125     * After the size for an item is calculated, the entry will request an
11126     * object to place in its space. For this, the functions set with
11127     * elm_entry_item_provider_append() and related functions will be called
11128     * in order until one of them returns a @c non-NULL value. If no providers
11129     * are available, or all of them return @c NULL, then the entry falls back
11130     * to one of the internal defaults, provided the name matches with one of
11131     * them.
11132     *
11133     * All of the following are currently supported:
11134     *
11135     * - emoticon/angry
11136     * - emoticon/angry-shout
11137     * - emoticon/crazy-laugh
11138     * - emoticon/evil-laugh
11139     * - emoticon/evil
11140     * - emoticon/goggle-smile
11141     * - emoticon/grumpy
11142     * - emoticon/grumpy-smile
11143     * - emoticon/guilty
11144     * - emoticon/guilty-smile
11145     * - emoticon/haha
11146     * - emoticon/half-smile
11147     * - emoticon/happy-panting
11148     * - emoticon/happy
11149     * - emoticon/indifferent
11150     * - emoticon/kiss
11151     * - emoticon/knowing-grin
11152     * - emoticon/laugh
11153     * - emoticon/little-bit-sorry
11154     * - emoticon/love-lots
11155     * - emoticon/love
11156     * - emoticon/minimal-smile
11157     * - emoticon/not-happy
11158     * - emoticon/not-impressed
11159     * - emoticon/omg
11160     * - emoticon/opensmile
11161     * - emoticon/smile
11162     * - emoticon/sorry
11163     * - emoticon/squint-laugh
11164     * - emoticon/surprised
11165     * - emoticon/suspicious
11166     * - emoticon/tongue-dangling
11167     * - emoticon/tongue-poke
11168     * - emoticon/uh
11169     * - emoticon/unhappy
11170     * - emoticon/very-sorry
11171     * - emoticon/what
11172     * - emoticon/wink
11173     * - emoticon/worried
11174     * - emoticon/wtf
11175     *
11176     * Alternatively, an item may reference an image by its path, using
11177     * the URI form @c file:///path/to/an/image.png and the entry will then
11178     * use that image for the item.
11179     *
11180     * @section entry-files Loading and saving files
11181     *
11182     * Entries have convinience functions to load text from a file and save
11183     * changes back to it after a short delay. The automatic saving is enabled
11184     * by default, but can be disabled with elm_entry_autosave_set() and files
11185     * can be loaded directly as plain text or have any markup in them
11186     * recognized. See elm_entry_file_set() for more details.
11187     *
11188     * @section entry-signals Emitted signals
11189     *
11190     * This widget emits the following signals:
11191     *
11192     * @li "changed": The text within the entry was changed.
11193     * @li "changed,user": The text within the entry was changed because of user interaction.
11194     * @li "activated": The enter key was pressed on a single line entry.
11195     * @li "press": A mouse button has been pressed on the entry.
11196     * @li "longpressed": A mouse button has been pressed and held for a couple
11197     * seconds.
11198     * @li "clicked": The entry has been clicked (mouse press and release).
11199     * @li "clicked,double": The entry has been double clicked.
11200     * @li "clicked,triple": The entry has been triple clicked.
11201     * @li "focused": The entry has received focus.
11202     * @li "unfocused": The entry has lost focus.
11203     * @li "selection,paste": A paste of the clipboard contents was requested.
11204     * @li "selection,copy": A copy of the selected text into the clipboard was
11205     * requested.
11206     * @li "selection,cut": A cut of the selected text into the clipboard was
11207     * requested.
11208     * @li "selection,start": A selection has begun and no previous selection
11209     * existed.
11210     * @li "selection,changed": The current selection has changed.
11211     * @li "selection,cleared": The current selection has been cleared.
11212     * @li "cursor,changed": The cursor has changed position.
11213     * @li "anchor,clicked": An anchor has been clicked. The event_info
11214     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11215     * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
11216     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11217     * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
11218     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11219     * @li "anchor,up": Mouse button has been unpressed on an anchor. The event_info
11220     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11221     * @li "anchor,down": Mouse button has been pressed on an anchor. The event_info
11222     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11223     * @li "preedit,changed": The preedit string has changed.
11224     * @li "language,changed": Program language changed.
11225     *
11226     * @section entry-examples
11227     *
11228     * An overview of the Entry API can be seen in @ref entry_example_01
11229     *
11230     * @{
11231     */
11232    /**
11233     * @typedef Elm_Entry_Anchor_Info
11234     *
11235     * The info sent in the callback for the "anchor,clicked" signals emitted
11236     * by entries.
11237     */
11238    typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
11239    /**
11240     * @struct _Elm_Entry_Anchor_Info
11241     *
11242     * The info sent in the callback for the "anchor,clicked" signals emitted
11243     * by entries.
11244     */
11245    struct _Elm_Entry_Anchor_Info
11246      {
11247         const char *name; /**< The name of the anchor, as stated in its href */
11248         int         button; /**< The mouse button used to click on it */
11249         Evas_Coord  x, /**< Anchor geometry, relative to canvas */
11250                     y, /**< Anchor geometry, relative to canvas */
11251                     w, /**< Anchor geometry, relative to canvas */
11252                     h; /**< Anchor geometry, relative to canvas */
11253      };
11254    /**
11255     * @typedef Elm_Entry_Filter_Cb
11256     * This callback type is used by entry filters to modify text.
11257     * @param data The data specified as the last param when adding the filter
11258     * @param entry The entry object
11259     * @param text A pointer to the location of the text being filtered. This data can be modified,
11260     * but any additional allocations must be managed by the user.
11261     * @see elm_entry_text_filter_append
11262     * @see elm_entry_text_filter_prepend
11263     */
11264    typedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text);
11265
11266    /**
11267     * @typedef Elm_Entry_Change_Info
11268     * This corresponds to Edje_Entry_Change_Info. Includes information about
11269     * a change in the entry.
11270     */
11271    typedef Edje_Entry_Change_Info Elm_Entry_Change_Info;
11272
11273
11274    /**
11275     * This adds an entry to @p parent object.
11276     *
11277     * By default, entries are:
11278     * @li not scrolled
11279     * @li multi-line
11280     * @li word wrapped
11281     * @li autosave is enabled
11282     *
11283     * @param parent The parent object
11284     * @return The new object or NULL if it cannot be created
11285     */
11286    EAPI Evas_Object *elm_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11287    /**
11288     * Sets the entry to single line mode.
11289     *
11290     * In single line mode, entries don't ever wrap when the text reaches the
11291     * edge, and instead they keep growing horizontally. Pressing the @c Enter
11292     * key will generate an @c "activate" event instead of adding a new line.
11293     *
11294     * When @p single_line is @c EINA_FALSE, line wrapping takes effect again
11295     * and pressing enter will break the text into a different line
11296     * without generating any events.
11297     *
11298     * @param obj The entry object
11299     * @param single_line If true, the text in the entry
11300     * will be on a single line.
11301     */
11302    EAPI void         elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
11303    /**
11304     * Gets whether the entry is set to be single line.
11305     *
11306     * @param obj The entry object
11307     * @return single_line If true, the text in the entry is set to display
11308     * on a single line.
11309     *
11310     * @see elm_entry_single_line_set()
11311     */
11312    EAPI Eina_Bool    elm_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11313    /**
11314     * Sets the entry to password mode.
11315     *
11316     * In password mode, entries are implicitly single line and the display of
11317     * any text in them is replaced with asterisks (*).
11318     *
11319     * @param obj The entry object
11320     * @param password If true, password mode is enabled.
11321     */
11322    EAPI void         elm_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
11323    /**
11324     * Gets whether the entry is set to password mode.
11325     *
11326     * @param obj The entry object
11327     * @return If true, the entry is set to display all characters
11328     * as asterisks (*).
11329     *
11330     * @see elm_entry_password_set()
11331     */
11332    EAPI Eina_Bool    elm_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11333    /**
11334     * This sets the text displayed within the entry to @p entry.
11335     *
11336     * @param obj The entry object
11337     * @param entry The text to be displayed
11338     *
11339     * @deprecated Use elm_object_text_set() instead.
11340     * @note Using this function bypasses text filters
11341     */
11342    EAPI void         elm_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11343    /**
11344     * This returns the text currently shown in object @p entry.
11345     * See also elm_entry_entry_set().
11346     *
11347     * @param obj The entry object
11348     * @return The currently displayed text or NULL on failure
11349     *
11350     * @deprecated Use elm_object_text_get() instead.
11351     */
11352    EAPI const char  *elm_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11353    /**
11354     * Appends @p entry to the text of the entry.
11355     *
11356     * Adds the text in @p entry to the end of any text already present in the
11357     * widget.
11358     *
11359     * The appended text is subject to any filters set for the widget.
11360     *
11361     * @param obj The entry object
11362     * @param entry The text to be displayed
11363     *
11364     * @see elm_entry_text_filter_append()
11365     */
11366    EAPI void         elm_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11367    /**
11368     * Gets whether the entry is empty.
11369     *
11370     * Empty means no text at all. If there are any markup tags, like an item
11371     * tag for which no provider finds anything, and no text is displayed, this
11372     * function still returns EINA_FALSE.
11373     *
11374     * @param obj The entry object
11375     * @return EINA_TRUE if the entry is empty, EINA_FALSE otherwise.
11376     */
11377    EAPI Eina_Bool    elm_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11378    /**
11379     * Gets any selected text within the entry.
11380     *
11381     * If there's any selected text in the entry, this function returns it as
11382     * a string in markup format. NULL is returned if no selection exists or
11383     * if an error occurred.
11384     *
11385     * The returned value points to an internal string and should not be freed
11386     * or modified in any way. If the @p entry object is deleted or its
11387     * contents are changed, the returned pointer should be considered invalid.
11388     *
11389     * @param obj The entry object
11390     * @return The selected text within the entry or NULL on failure
11391     */
11392    EAPI const char  *elm_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11393    /**
11394     * Returns the actual textblock object of the entry.
11395     *
11396     * This function exposes the internal textblock object that actually
11397     * contains and draws the text. This should be used for low-level
11398     * manipulations that are otherwise not possible.
11399     *
11400     * Changing the textblock directly from here will not notify edje/elm to
11401     * recalculate the textblock size automatically, so any modifications
11402     * done to the textblock returned by this function should be followed by
11403     * a call to elm_entry_calc_force().
11404     *
11405     * The return value is marked as const as an additional warning.
11406     * One should not use the returned object with any of the generic evas
11407     * functions (geometry_get/resize/move and etc), but only with the textblock
11408     * functions; The former will either not work at all, or break the correct
11409     * functionality.
11410     *
11411     * IMPORTANT: Many functions may change (i.e delete and create a new one)
11412     * the internal textblock object. Do NOT cache the returned object, and try
11413     * not to mix calls on this object with regular elm_entry calls (which may
11414     * change the internal textblock object). This applies to all cursors
11415     * returned from textblock calls, and all the other derivative values.
11416     *
11417     * @param obj The entry object
11418     * @return The textblock object.
11419     */
11420    EAPI const Evas_Object *elm_entry_textblock_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11421    /**
11422     * Forces calculation of the entry size and text layouting.
11423     *
11424     * This should be used after modifying the textblock object directly. See
11425     * elm_entry_textblock_get() for more information.
11426     *
11427     * @param obj The entry object
11428     *
11429     * @see elm_entry_textblock_get()
11430     */
11431    EAPI void elm_entry_calc_force(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11432    /**
11433     * Inserts the given text into the entry at the current cursor position.
11434     *
11435     * This inserts text at the cursor position as if it was typed
11436     * by the user (note that this also allows markup which a user
11437     * can't just "type" as it would be converted to escaped text, so this
11438     * call can be used to insert things like emoticon items or bold push/pop
11439     * tags, other font and color change tags etc.)
11440     *
11441     * If any selection exists, it will be replaced by the inserted text.
11442     *
11443     * The inserted text is subject to any filters set for the widget.
11444     *
11445     * @param obj The entry object
11446     * @param entry The text to insert
11447     *
11448     * @see elm_entry_text_filter_append()
11449     */
11450    EAPI void         elm_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11451    /**
11452     * Set the line wrap type to use on multi-line entries.
11453     *
11454     * Sets the wrap type used by the entry to any of the specified in
11455     * #Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
11456     * line (without inserting a line break or paragraph separator) when it
11457     * reaches the far edge of the widget.
11458     *
11459     * Note that this only makes sense for multi-line entries. A widget set
11460     * to be single line will never wrap.
11461     *
11462     * @param obj The entry object
11463     * @param wrap The wrap mode to use. See #Elm_Wrap_Type for details on them
11464     */
11465    EAPI void         elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
11466    /**
11467     * Gets the wrap mode the entry was set to use.
11468     *
11469     * @param obj The entry object
11470     * @return Wrap type
11471     *
11472     * @see also elm_entry_line_wrap_set()
11473     */
11474    EAPI Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11475    /**
11476     * Sets if the entry is to be editable or not.
11477     *
11478     * By default, entries are editable and when focused, any text input by the
11479     * user will be inserted at the current cursor position. But calling this
11480     * function with @p editable as EINA_FALSE will prevent the user from
11481     * inputting text into the entry.
11482     *
11483     * The only way to change the text of a non-editable entry is to use
11484     * elm_object_text_set(), elm_entry_entry_insert() and other related
11485     * functions.
11486     *
11487     * @param obj The entry object
11488     * @param editable If EINA_TRUE, user input will be inserted in the entry,
11489     * if not, the entry is read-only and no user input is allowed.
11490     */
11491    EAPI void         elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
11492    /**
11493     * Gets whether the entry is editable or not.
11494     *
11495     * @param obj The entry object
11496     * @return If true, the entry is editable by the user.
11497     * If false, it is not editable by the user
11498     *
11499     * @see elm_entry_editable_set()
11500     */
11501    EAPI Eina_Bool    elm_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11502    /**
11503     * This drops any existing text selection within the entry.
11504     *
11505     * @param obj The entry object
11506     */
11507    EAPI void         elm_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
11508    /**
11509     * This selects all text within the entry.
11510     *
11511     * @param obj The entry object
11512     */
11513    EAPI void         elm_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
11514    /**
11515     * This moves the cursor one place to the right within the entry.
11516     *
11517     * @param obj The entry object
11518     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11519     */
11520    EAPI Eina_Bool    elm_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
11521    /**
11522     * This moves the cursor one place to the left within the entry.
11523     *
11524     * @param obj The entry object
11525     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11526     */
11527    EAPI Eina_Bool    elm_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
11528    /**
11529     * This moves the cursor one line up within the entry.
11530     *
11531     * @param obj The entry object
11532     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11533     */
11534    EAPI Eina_Bool    elm_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
11535    /**
11536     * This moves the cursor one line down within the entry.
11537     *
11538     * @param obj The entry object
11539     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11540     */
11541    EAPI Eina_Bool    elm_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
11542    /**
11543     * This moves the cursor to the beginning of the entry.
11544     *
11545     * @param obj The entry object
11546     */
11547    EAPI void         elm_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11548    /**
11549     * This moves the cursor to the end of the entry.
11550     *
11551     * @param obj The entry object
11552     */
11553    EAPI void         elm_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11554    /**
11555     * This moves the cursor to the beginning of the current line.
11556     *
11557     * @param obj The entry object
11558     */
11559    EAPI void         elm_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11560    /**
11561     * This moves the cursor to the end of the current line.
11562     *
11563     * @param obj The entry object
11564     */
11565    EAPI void         elm_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11566    /**
11567     * This begins a selection within the entry as though
11568     * the user were holding down the mouse button to make a selection.
11569     *
11570     * @param obj The entry object
11571     */
11572    EAPI void         elm_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
11573    /**
11574     * This ends a selection within the entry as though
11575     * the user had just released the mouse button while making a selection.
11576     *
11577     * @param obj The entry object
11578     */
11579    EAPI void         elm_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
11580    /**
11581     * Gets whether a format node exists at the current cursor position.
11582     *
11583     * A format node is anything that defines how the text is rendered. It can
11584     * be a visible format node, such as a line break or a paragraph separator,
11585     * or an invisible one, such as bold begin or end tag.
11586     * This function returns whether any format node exists at the current
11587     * cursor position.
11588     *
11589     * @param obj The entry object
11590     * @return EINA_TRUE if the current cursor position contains a format node,
11591     * EINA_FALSE otherwise.
11592     *
11593     * @see elm_entry_cursor_is_visible_format_get()
11594     */
11595    EAPI Eina_Bool    elm_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11596    /**
11597     * Gets if the current cursor position holds a visible format node.
11598     *
11599     * @param obj The entry object
11600     * @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
11601     * if it's an invisible one or no format exists.
11602     *
11603     * @see elm_entry_cursor_is_format_get()
11604     */
11605    EAPI Eina_Bool    elm_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11606    /**
11607     * Gets the character pointed by the cursor at its current position.
11608     *
11609     * This function returns a string with the utf8 character stored at the
11610     * current cursor position.
11611     * Only the text is returned, any format that may exist will not be part
11612     * of the return value.
11613     *
11614     * @param obj The entry object
11615     * @return The text pointed by the cursors.
11616     */
11617    EAPI const char  *elm_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11618    /**
11619     * This function returns the geometry of the cursor.
11620     *
11621     * It's useful if you want to draw something on the cursor (or where it is),
11622     * or for example in the case of scrolled entry where you want to show the
11623     * cursor.
11624     *
11625     * @param obj The entry object
11626     * @param x returned geometry
11627     * @param y returned geometry
11628     * @param w returned geometry
11629     * @param h returned geometry
11630     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11631     */
11632    EAPI Eina_Bool    elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
11633    /**
11634     * Sets the cursor position in the entry to the given value
11635     *
11636     * The value in @p pos is the index of the character position within the
11637     * contents of the string as returned by elm_entry_cursor_pos_get().
11638     *
11639     * @param obj The entry object
11640     * @param pos The position of the cursor
11641     */
11642    EAPI void         elm_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
11643    /**
11644     * Retrieves the current position of the cursor in the entry
11645     *
11646     * @param obj The entry object
11647     * @return The cursor position
11648     */
11649    EAPI int          elm_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11650    /**
11651     * This executes a "cut" action on the selected text in the entry.
11652     *
11653     * @param obj The entry object
11654     */
11655    EAPI void         elm_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
11656    /**
11657     * This executes a "copy" action on the selected text in the entry.
11658     *
11659     * @param obj The entry object
11660     */
11661    EAPI void         elm_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
11662    /**
11663     * This executes a "paste" action in the entry.
11664     *
11665     * @param obj The entry object
11666     */
11667    EAPI void         elm_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
11668    /**
11669     * This clears and frees the items in a entry's contextual (longpress)
11670     * menu.
11671     *
11672     * @param obj The entry object
11673     *
11674     * @see elm_entry_context_menu_item_add()
11675     */
11676    EAPI void         elm_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
11677    /**
11678     * This adds an item to the entry's contextual menu.
11679     *
11680     * A longpress on an entry will make the contextual menu show up, if this
11681     * hasn't been disabled with elm_entry_context_menu_disabled_set().
11682     * By default, this menu provides a few options like enabling selection mode,
11683     * which is useful on embedded devices that need to be explicit about it,
11684     * and when a selection exists it also shows the copy and cut actions.
11685     *
11686     * With this function, developers can add other options to this menu to
11687     * perform any action they deem necessary.
11688     *
11689     * @param obj The entry object
11690     * @param label The item's text label
11691     * @param icon_file The item's icon file
11692     * @param icon_type The item's icon type
11693     * @param func The callback to execute when the item is clicked
11694     * @param data The data to associate with the item for related functions
11695     */
11696    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) EINA_ARG_NONNULL(1);
11697    /**
11698     * This disables the entry's contextual (longpress) menu.
11699     *
11700     * @param obj The entry object
11701     * @param disabled If true, the menu is disabled
11702     */
11703    EAPI void         elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
11704    /**
11705     * This returns whether the entry's contextual (longpress) menu is
11706     * disabled.
11707     *
11708     * @param obj The entry object
11709     * @return If true, the menu is disabled
11710     */
11711    EAPI Eina_Bool    elm_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11712    /**
11713     * This appends a custom item provider to the list for that entry
11714     *
11715     * This appends the given callback. The list is walked from beginning to end
11716     * with each function called given the item href string in the text. If the
11717     * function returns an object handle other than NULL (it should create an
11718     * object to do this), then this object is used to replace that item. If
11719     * not the next provider is called until one provides an item object, or the
11720     * default provider in entry does.
11721     *
11722     * @param obj The entry object
11723     * @param func The function called to provide the item object
11724     * @param data The data passed to @p func
11725     *
11726     * @see @ref entry-items
11727     */
11728    EAPI void         elm_entry_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
11729    /**
11730     * This prepends a custom item provider to the list for that entry
11731     *
11732     * This prepends the given callback. See elm_entry_item_provider_append() for
11733     * more information
11734     *
11735     * @param obj The entry object
11736     * @param func The function called to provide the item object
11737     * @param data The data passed to @p func
11738     */
11739    EAPI void         elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
11740    /**
11741     * This removes a custom item provider to the list for that entry
11742     *
11743     * This removes the given callback. See elm_entry_item_provider_append() for
11744     * more information
11745     *
11746     * @param obj The entry object
11747     * @param func The function called to provide the item object
11748     * @param data The data passed to @p func
11749     */
11750    EAPI void         elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
11751    /**
11752     * Append a filter function for text inserted in the entry
11753     *
11754     * Append the given callback to the list. This functions will be called
11755     * whenever any text is inserted into the entry, with the text to be inserted
11756     * as a parameter. The callback function is free to alter the text in any way
11757     * it wants, but it must remember to free the given pointer and update it.
11758     * If the new text is to be discarded, the function can free it and set its
11759     * text parameter to NULL. This will also prevent any following filters from
11760     * being called.
11761     *
11762     * @param obj The entry object
11763     * @param func The function to use as text filter
11764     * @param data User data to pass to @p func
11765     */
11766    EAPI void         elm_entry_text_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11767    /**
11768     * Prepend a filter function for text insdrted in the entry
11769     *
11770     * Prepend the given callback to the list. See elm_entry_text_filter_append()
11771     * for more information
11772     *
11773     * @param obj The entry object
11774     * @param func The function to use as text filter
11775     * @param data User data to pass to @p func
11776     */
11777    EAPI void         elm_entry_text_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11778    /**
11779     * Remove a filter from the list
11780     *
11781     * Removes the given callback from the filter list. See
11782     * elm_entry_text_filter_append() for more information.
11783     *
11784     * @param obj The entry object
11785     * @param func The filter function to remove
11786     * @param data The user data passed when adding the function
11787     */
11788    EAPI void         elm_entry_text_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11789    /**
11790     * This converts a markup (HTML-like) string into UTF-8.
11791     *
11792     * The returned string is a malloc'ed buffer and it should be freed when
11793     * not needed anymore.
11794     *
11795     * @param s The string (in markup) to be converted
11796     * @return The converted string (in UTF-8). It should be freed.
11797     */
11798    EAPI char        *elm_entry_markup_to_utf8(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11799    /**
11800     * This converts a UTF-8 string into markup (HTML-like).
11801     *
11802     * The returned string is a malloc'ed buffer and it should be freed when
11803     * not needed anymore.
11804     *
11805     * @param s The string (in UTF-8) to be converted
11806     * @return The converted string (in markup). It should be freed.
11807     */
11808    EAPI char        *elm_entry_utf8_to_markup(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11809    /**
11810     * This sets the file (and implicitly loads it) for the text to display and
11811     * then edit. All changes are written back to the file after a short delay if
11812     * the entry object is set to autosave (which is the default).
11813     *
11814     * If the entry had any other file set previously, any changes made to it
11815     * will be saved if the autosave feature is enabled, otherwise, the file
11816     * will be silently discarded and any non-saved changes will be lost.
11817     *
11818     * @param obj The entry object
11819     * @param file The path to the file to load and save
11820     * @param format The file format
11821     */
11822    EAPI void         elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
11823    /**
11824     * Gets the file being edited by the entry.
11825     *
11826     * This function can be used to retrieve any file set on the entry for
11827     * edition, along with the format used to load and save it.
11828     *
11829     * @param obj The entry object
11830     * @param file The path to the file to load and save
11831     * @param format The file format
11832     */
11833    EAPI void         elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
11834    /**
11835     * This function writes any changes made to the file set with
11836     * elm_entry_file_set()
11837     *
11838     * @param obj The entry object
11839     */
11840    EAPI void         elm_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
11841    /**
11842     * This sets the entry object to 'autosave' the loaded text file or not.
11843     *
11844     * @param obj The entry object
11845     * @param autosave Autosave the loaded file or not
11846     *
11847     * @see elm_entry_file_set()
11848     */
11849    EAPI void         elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
11850    /**
11851     * This gets the entry object's 'autosave' status.
11852     *
11853     * @param obj The entry object
11854     * @return Autosave the loaded file or not
11855     *
11856     * @see elm_entry_file_set()
11857     */
11858    EAPI Eina_Bool    elm_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11859    /**
11860     * Control pasting of text and images for the widget.
11861     *
11862     * Normally the entry allows both text and images to be pasted.  By setting
11863     * textonly to be true, this prevents images from being pasted.
11864     *
11865     * Note this only changes the behaviour of text.
11866     *
11867     * @param obj The entry object
11868     * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is
11869     * text+image+other.
11870     */
11871    EAPI void         elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
11872    /**
11873     * Getting elm_entry text paste/drop mode.
11874     *
11875     * In textonly mode, only text may be pasted or dropped into the widget.
11876     *
11877     * @param obj The entry object
11878     * @return If the widget only accepts text from pastes.
11879     */
11880    EAPI Eina_Bool    elm_entry_cnp_textonly_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11881    /**
11882     * Enable or disable scrolling in entry
11883     *
11884     * Normally the entry is not scrollable unless you enable it with this call.
11885     *
11886     * @param obj The entry object
11887     * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
11888     */
11889    EAPI void         elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
11890    /**
11891     * Get the scrollable state of the entry
11892     *
11893     * Normally the entry is not scrollable. This gets the scrollable state
11894     * of the entry. See elm_entry_scrollable_set() for more information.
11895     *
11896     * @param obj The entry object
11897     * @return The scrollable state
11898     */
11899    EAPI Eina_Bool    elm_entry_scrollable_get(const Evas_Object *obj);
11900    /**
11901     * This sets a widget to be displayed to the left of a scrolled entry.
11902     *
11903     * @param obj The scrolled entry object
11904     * @param icon The widget to display on the left side of the scrolled
11905     * entry.
11906     *
11907     * @note A previously set widget will be destroyed.
11908     * @note If the object being set does not have minimum size hints set,
11909     * it won't get properly displayed.
11910     *
11911     * @see elm_entry_end_set()
11912     */
11913    EAPI void         elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
11914    /**
11915     * Gets the leftmost widget of the scrolled entry. This object is
11916     * owned by the scrolled entry and should not be modified.
11917     *
11918     * @param obj The scrolled entry object
11919     * @return the left widget inside the scroller
11920     */
11921    EAPI Evas_Object *elm_entry_icon_get(const Evas_Object *obj);
11922    /**
11923     * Unset the leftmost widget of the scrolled entry, unparenting and
11924     * returning it.
11925     *
11926     * @param obj The scrolled entry object
11927     * @return the previously set icon sub-object of this entry, on
11928     * success.
11929     *
11930     * @see elm_entry_icon_set()
11931     */
11932    EAPI Evas_Object *elm_entry_icon_unset(Evas_Object *obj);
11933    /**
11934     * Sets the visibility of the left-side widget of the scrolled entry,
11935     * set by elm_entry_icon_set().
11936     *
11937     * @param obj The scrolled entry object
11938     * @param setting EINA_TRUE if the object should be displayed,
11939     * EINA_FALSE if not.
11940     */
11941    EAPI void         elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
11942    /**
11943     * This sets a widget to be displayed to the end of a scrolled entry.
11944     *
11945     * @param obj The scrolled entry object
11946     * @param end The widget to display on the right side of the scrolled
11947     * entry.
11948     *
11949     * @note A previously set widget will be destroyed.
11950     * @note If the object being set does not have minimum size hints set,
11951     * it won't get properly displayed.
11952     *
11953     * @see elm_entry_icon_set
11954     */
11955    EAPI void         elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
11956    /**
11957     * Gets the endmost widget of the scrolled entry. This object is owned
11958     * by the scrolled entry and should not be modified.
11959     *
11960     * @param obj The scrolled entry object
11961     * @return the right widget inside the scroller
11962     */
11963    EAPI Evas_Object *elm_entry_end_get(const Evas_Object *obj);
11964    /**
11965     * Unset the endmost widget of the scrolled entry, unparenting and
11966     * returning it.
11967     *
11968     * @param obj The scrolled entry object
11969     * @return the previously set icon sub-object of this entry, on
11970     * success.
11971     *
11972     * @see elm_entry_icon_set()
11973     */
11974    EAPI Evas_Object *elm_entry_end_unset(Evas_Object *obj);
11975    /**
11976     * Sets the visibility of the end widget of the scrolled entry, set by
11977     * elm_entry_end_set().
11978     *
11979     * @param obj The scrolled entry object
11980     * @param setting EINA_TRUE if the object should be displayed,
11981     * EINA_FALSE if not.
11982     */
11983    EAPI void         elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
11984    /**
11985     * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling
11986     * them).
11987     *
11988     * Setting an entry to single-line mode with elm_entry_single_line_set()
11989     * will automatically disable the display of scrollbars when the entry
11990     * moves inside its scroller.
11991     *
11992     * @param obj The scrolled entry object
11993     * @param h The horizontal scrollbar policy to apply
11994     * @param v The vertical scrollbar policy to apply
11995     */
11996    EAPI void         elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
11997    /**
11998     * This enables/disables bouncing within the entry.
11999     *
12000     * This function sets whether the entry will bounce when scrolling reaches
12001     * the end of the contained entry.
12002     *
12003     * @param obj The scrolled entry object
12004     * @param h The horizontal bounce state
12005     * @param v The vertical bounce state
12006     */
12007    EAPI void         elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
12008    /**
12009     * Get the bounce mode
12010     *
12011     * @param obj The Entry object
12012     * @param h_bounce Allow bounce horizontally
12013     * @param v_bounce Allow bounce vertically
12014     */
12015    EAPI void         elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
12016
12017    /* pre-made filters for entries */
12018    /**
12019     * @typedef Elm_Entry_Filter_Limit_Size
12020     *
12021     * Data for the elm_entry_filter_limit_size() entry filter.
12022     */
12023    typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
12024    /**
12025     * @struct _Elm_Entry_Filter_Limit_Size
12026     *
12027     * Data for the elm_entry_filter_limit_size() entry filter.
12028     */
12029    struct _Elm_Entry_Filter_Limit_Size
12030      {
12031         int max_char_count; /**< The maximum number of characters allowed. */
12032         int max_byte_count; /**< The maximum number of bytes allowed*/
12033      };
12034    /**
12035     * Filter inserted text based on user defined character and byte limits
12036     *
12037     * Add this filter to an entry to limit the characters that it will accept
12038     * based the the contents of the provided #Elm_Entry_Filter_Limit_Size.
12039     * The funtion works on the UTF-8 representation of the string, converting
12040     * it from the set markup, thus not accounting for any format in it.
12041     *
12042     * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
12043     * it as data when setting the filter. In it, it's possible to set limits
12044     * by character count or bytes (any of them is disabled if 0), and both can
12045     * be set at the same time. In that case, it first checks for characters,
12046     * then bytes.
12047     *
12048     * The function will cut the inserted text in order to allow only the first
12049     * number of characters that are still allowed. The cut is made in
12050     * characters, even when limiting by bytes, in order to always contain
12051     * valid ones and avoid half unicode characters making it in.
12052     *
12053     * This filter, like any others, does not apply when setting the entry text
12054     * directly with elm_object_text_set() (or the deprecated
12055     * elm_entry_entry_set()).
12056     */
12057    EAPI void         elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 2, 3);
12058    /**
12059     * @typedef Elm_Entry_Filter_Accept_Set
12060     *
12061     * Data for the elm_entry_filter_accept_set() entry filter.
12062     */
12063    typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
12064    /**
12065     * @struct _Elm_Entry_Filter_Accept_Set
12066     *
12067     * Data for the elm_entry_filter_accept_set() entry filter.
12068     */
12069    struct _Elm_Entry_Filter_Accept_Set
12070      {
12071         const char *accepted; /**< Set of characters accepted in the entry. */
12072         const char *rejected; /**< Set of characters rejected from the entry. */
12073      };
12074    /**
12075     * Filter inserted text based on accepted or rejected sets of characters
12076     *
12077     * Add this filter to an entry to restrict the set of accepted characters
12078     * based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
12079     * This structure contains both accepted and rejected sets, but they are
12080     * mutually exclusive.
12081     *
12082     * The @c accepted set takes preference, so if it is set, the filter will
12083     * only work based on the accepted characters, ignoring anything in the
12084     * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.
12085     *
12086     * In both cases, the function filters by matching utf8 characters to the
12087     * raw markup text, so it can be used to remove formatting tags.
12088     *
12089     * This filter, like any others, does not apply when setting the entry text
12090     * directly with elm_object_text_set() (or the deprecated
12091     * elm_entry_entry_set()).
12092     */
12093    EAPI void         elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 3);
12094    /**
12095     * Set the input panel layout of the entry
12096     *
12097     * @param obj The entry object
12098     * @param layout layout type
12099     */
12100    EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout) EINA_ARG_NONNULL(1);
12101    /**
12102     * Get the input panel layout of the entry
12103     *
12104     * @param obj The entry object
12105     * @return layout type
12106     *
12107     * @see elm_entry_input_panel_layout_set
12108     */
12109    EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12110    /**
12111     * Set the autocapitalization type on the immodule.
12112     *
12113     * @param obj The entry object
12114     * @param autocapital_type The type of autocapitalization
12115     */
12116    EAPI void         elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type) EINA_ARG_NONNULL(1);
12117    /**
12118     * Retrieve the autocapitalization type on the immodule.
12119     *
12120     * @param obj The entry object
12121     * @return autocapitalization type
12122     */
12123    EAPI Elm_Autocapital_Type elm_entry_autocapital_type_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12124    /**
12125     * Sets the attribute to show the input panel automatically.
12126     *
12127     * @param obj The entry object
12128     * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
12129     */
12130    EAPI void elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
12131    /**
12132     * Retrieve the attribute to show the input panel automatically.
12133     *
12134     * @param obj The entry object
12135     * @return EINA_TRUE if input panel will be appeared when the entry is clicked or has a focus, EINA_FALSE otherwise
12136     */
12137    EAPI Eina_Bool elm_entry_input_panel_enabled_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12138
12139    /**
12140     * @}
12141     */
12142
12143    /* composite widgets - these basically put together basic widgets above
12144     * in convenient packages that do more than basic stuff */
12145
12146    /* anchorview */
12147    /**
12148     * @defgroup Anchorview Anchorview
12149     *
12150     * @image html img/widget/anchorview/preview-00.png
12151     * @image latex img/widget/anchorview/preview-00.eps
12152     *
12153     * Anchorview is for displaying text that contains markup with anchors
12154     * like <c>\<a href=1234\>something\</\></c> in it.
12155     *
12156     * Besides being styled differently, the anchorview widget provides the
12157     * necessary functionality so that clicking on these anchors brings up a
12158     * popup with user defined content such as "call", "add to contacts" or
12159     * "open web page". This popup is provided using the @ref Hover widget.
12160     *
12161     * This widget is very similar to @ref Anchorblock, so refer to that
12162     * widget for an example. The only difference Anchorview has is that the
12163     * widget is already provided with scrolling functionality, so if the
12164     * text set to it is too large to fit in the given space, it will scroll,
12165     * whereas the @ref Anchorblock widget will keep growing to ensure all the
12166     * text can be displayed.
12167     *
12168     * This widget emits the following signals:
12169     * @li "anchor,clicked": will be called when an anchor is clicked. The
12170     * @p event_info parameter on the callback will be a pointer of type
12171     * ::Elm_Entry_Anchorview_Info.
12172     *
12173     * See @ref Anchorblock for an example on how to use both of them.
12174     *
12175     * @see Anchorblock
12176     * @see Entry
12177     * @see Hover
12178     *
12179     * @{
12180     */
12181    /**
12182     * @typedef Elm_Entry_Anchorview_Info
12183     *
12184     * The info sent in the callback for "anchor,clicked" signals emitted by
12185     * the Anchorview widget.
12186     */
12187    typedef struct _Elm_Entry_Anchorview_Info Elm_Entry_Anchorview_Info;
12188    /**
12189     * @struct _Elm_Entry_Anchorview_Info
12190     *
12191     * The info sent in the callback for "anchor,clicked" signals emitted by
12192     * the Anchorview widget.
12193     */
12194    struct _Elm_Entry_Anchorview_Info
12195      {
12196         const char     *name; /**< Name of the anchor, as indicated in its href
12197                                    attribute */
12198         int             button; /**< The mouse button used to click on it */
12199         Evas_Object    *hover; /**< The hover object to use for the popup */
12200         struct {
12201              Evas_Coord    x, y, w, h;
12202         } anchor, /**< Geometry selection of text used as anchor */
12203           hover_parent; /**< Geometry of the object used as parent by the
12204                              hover */
12205         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
12206                                              for content on the left side of
12207                                              the hover. Before calling the
12208                                              callback, the widget will make the
12209                                              necessary calculations to check
12210                                              which sides are fit to be set with
12211                                              content, based on the position the
12212                                              hover is activated and its distance
12213                                              to the edges of its parent object
12214                                              */
12215         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
12216                                               the right side of the hover.
12217                                               See @ref hover_left */
12218         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
12219                                             of the hover. See @ref hover_left */
12220         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
12221                                                below the hover. See @ref
12222                                                hover_left */
12223      };
12224    /**
12225     * Add a new Anchorview object
12226     *
12227     * @param parent The parent object
12228     * @return The new object or NULL if it cannot be created
12229     */
12230    EAPI Evas_Object *elm_anchorview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12231    /**
12232     * Set the text to show in the anchorview
12233     *
12234     * Sets the text of the anchorview to @p text. This text can include markup
12235     * format tags, including <c>\<a href=anchorname\></c> to begin a segment of
12236     * text that will be specially styled and react to click events, ended with
12237     * either of \</a\> or \</\>. When clicked, the anchor will emit an
12238     * "anchor,clicked" signal that you can attach a callback to with
12239     * evas_object_smart_callback_add(). The name of the anchor given in the
12240     * event info struct will be the one set in the href attribute, in this
12241     * case, anchorname.
12242     *
12243     * Other markup can be used to style the text in different ways, but it's
12244     * up to the style defined in the theme which tags do what.
12245     * @deprecated use elm_object_text_set() instead.
12246     */
12247    EINA_DEPRECATED EAPI void         elm_anchorview_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
12248    /**
12249     * Get the markup text set for the anchorview
12250     *
12251     * Retrieves the text set on the anchorview, with markup tags included.
12252     *
12253     * @param obj The anchorview object
12254     * @return The markup text set or @c NULL if nothing was set or an error
12255     * occurred
12256     * @deprecated use elm_object_text_set() instead.
12257     */
12258    EINA_DEPRECATED EAPI const char  *elm_anchorview_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12259    /**
12260     * Set the parent of the hover popup
12261     *
12262     * Sets the parent object to use by the hover created by the anchorview
12263     * when an anchor is clicked. See @ref Hover for more details on this.
12264     * If no parent is set, the same anchorview object will be used.
12265     *
12266     * @param obj The anchorview object
12267     * @param parent The object to use as parent for the hover
12268     */
12269    EAPI void         elm_anchorview_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12270    /**
12271     * Get the parent of the hover popup
12272     *
12273     * Get the object used as parent for the hover created by the anchorview
12274     * widget. See @ref Hover for more details on this.
12275     *
12276     * @param obj The anchorview object
12277     * @return The object used as parent for the hover, NULL if none is set.
12278     */
12279    EAPI Evas_Object *elm_anchorview_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12280    /**
12281     * Set the style that the hover should use
12282     *
12283     * When creating the popup hover, anchorview will request that it's
12284     * themed according to @p style.
12285     *
12286     * @param obj The anchorview object
12287     * @param style The style to use for the underlying hover
12288     *
12289     * @see elm_object_style_set()
12290     */
12291    EAPI void         elm_anchorview_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12292    /**
12293     * Get the style that the hover should use
12294     *
12295     * Get the style the hover created by anchorview will use.
12296     *
12297     * @param obj The anchorview object
12298     * @return The style to use by the hover. NULL means the default is used.
12299     *
12300     * @see elm_object_style_set()
12301     */
12302    EAPI const char  *elm_anchorview_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12303    /**
12304     * Ends the hover popup in the anchorview
12305     *
12306     * When an anchor is clicked, the anchorview widget will create a hover
12307     * object to use as a popup with user provided content. This function
12308     * terminates this popup, returning the anchorview to its normal state.
12309     *
12310     * @param obj The anchorview object
12311     */
12312    EAPI void         elm_anchorview_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12313    /**
12314     * Set bouncing behaviour when the scrolled content reaches an edge
12315     *
12316     * Tell the internal scroller object whether it should bounce or not
12317     * when it reaches the respective edges for each axis.
12318     *
12319     * @param obj The anchorview object
12320     * @param h_bounce Whether to bounce or not in the horizontal axis
12321     * @param v_bounce Whether to bounce or not in the vertical axis
12322     *
12323     * @see elm_scroller_bounce_set()
12324     */
12325    EAPI void         elm_anchorview_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
12326    /**
12327     * Get the set bouncing behaviour of the internal scroller
12328     *
12329     * Get whether the internal scroller should bounce when the edge of each
12330     * axis is reached scrolling.
12331     *
12332     * @param obj The anchorview object
12333     * @param h_bounce Pointer where to store the bounce state of the horizontal
12334     *                 axis
12335     * @param v_bounce Pointer where to store the bounce state of the vertical
12336     *                 axis
12337     *
12338     * @see elm_scroller_bounce_get()
12339     */
12340    EAPI void         elm_anchorview_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
12341    /**
12342     * Appends a custom item provider to the given anchorview
12343     *
12344     * Appends the given function to the list of items providers. This list is
12345     * called, one function at a time, with the given @p data pointer, the
12346     * anchorview object and, in the @p item parameter, the item name as
12347     * referenced in its href string. Following functions in the list will be
12348     * called in order until one of them returns something different to NULL,
12349     * which should be an Evas_Object which will be used in place of the item
12350     * element.
12351     *
12352     * Items in the markup text take the form \<item relsize=16x16 vsize=full
12353     * href=item/name\>\</item\>
12354     *
12355     * @param obj The anchorview object
12356     * @param func The function to add to the list of providers
12357     * @param data User data that will be passed to the callback function
12358     *
12359     * @see elm_entry_item_provider_append()
12360     */
12361    EAPI void         elm_anchorview_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorview, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12362    /**
12363     * Prepend a custom item provider to the given anchorview
12364     *
12365     * Like elm_anchorview_item_provider_append(), but it adds the function
12366     * @p func to the beginning of the list, instead of the end.
12367     *
12368     * @param obj The anchorview object
12369     * @param func The function to add to the list of providers
12370     * @param data User data that will be passed to the callback function
12371     */
12372    EAPI void         elm_anchorview_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorview, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12373    /**
12374     * Remove a custom item provider from the list of the given anchorview
12375     *
12376     * Removes the function and data pairing that matches @p func and @p data.
12377     * That is, unless the same function and same user data are given, the
12378     * function will not be removed from the list. This allows us to add the
12379     * same callback several times, with different @p data pointers and be
12380     * able to remove them later without conflicts.
12381     *
12382     * @param obj The anchorview object
12383     * @param func The function to remove from the list
12384     * @param data The data matching the function to remove from the list
12385     */
12386    EAPI void         elm_anchorview_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorview, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12387    /**
12388     * @}
12389     */
12390
12391    /* anchorblock */
12392    /**
12393     * @defgroup Anchorblock Anchorblock
12394     *
12395     * @image html img/widget/anchorblock/preview-00.png
12396     * @image latex img/widget/anchorblock/preview-00.eps
12397     *
12398     * Anchorblock is for displaying text that contains markup with anchors
12399     * like <c>\<a href=1234\>something\</\></c> in it.
12400     *
12401     * Besides being styled differently, the anchorblock widget provides the
12402     * necessary functionality so that clicking on these anchors brings up a
12403     * popup with user defined content such as "call", "add to contacts" or
12404     * "open web page". This popup is provided using the @ref Hover widget.
12405     *
12406     * This widget emits the following signals:
12407     * @li "anchor,clicked": will be called when an anchor is clicked. The
12408     * @p event_info parameter on the callback will be a pointer of type
12409     * ::Elm_Entry_Anchorblock_Info.
12410     *
12411     * @see Anchorview
12412     * @see Entry
12413     * @see Hover
12414     *
12415     * Since examples are usually better than plain words, we might as well
12416     * try @ref tutorial_anchorblock_example "one".
12417     */
12418    /**
12419     * @addtogroup Anchorblock
12420     * @{
12421     */
12422    /**
12423     * @typedef Elm_Entry_Anchorblock_Info
12424     *
12425     * The info sent in the callback for "anchor,clicked" signals emitted by
12426     * the Anchorblock widget.
12427     */
12428    typedef struct _Elm_Entry_Anchorblock_Info Elm_Entry_Anchorblock_Info;
12429    /**
12430     * @struct _Elm_Entry_Anchorblock_Info
12431     *
12432     * The info sent in the callback for "anchor,clicked" signals emitted by
12433     * the Anchorblock widget.
12434     */
12435    struct _Elm_Entry_Anchorblock_Info
12436      {
12437         const char     *name; /**< Name of the anchor, as indicated in its href
12438                                    attribute */
12439         int             button; /**< The mouse button used to click on it */
12440         Evas_Object    *hover; /**< The hover object to use for the popup */
12441         struct {
12442              Evas_Coord    x, y, w, h;
12443         } anchor, /**< Geometry selection of text used as anchor */
12444           hover_parent; /**< Geometry of the object used as parent by the
12445                              hover */
12446         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
12447                                              for content on the left side of
12448                                              the hover. Before calling the
12449                                              callback, the widget will make the
12450                                              necessary calculations to check
12451                                              which sides are fit to be set with
12452                                              content, based on the position the
12453                                              hover is activated and its distance
12454                                              to the edges of its parent object
12455                                              */
12456         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
12457                                               the right side of the hover.
12458                                               See @ref hover_left */
12459         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
12460                                             of the hover. See @ref hover_left */
12461         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
12462                                                below the hover. See @ref
12463                                                hover_left */
12464      };
12465    /**
12466     * Add a new Anchorblock object
12467     *
12468     * @param parent The parent object
12469     * @return The new object or NULL if it cannot be created
12470     */
12471    EAPI Evas_Object *elm_anchorblock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12472    /**
12473     * Set the text to show in the anchorblock
12474     *
12475     * Sets the text of the anchorblock to @p text. This text can include markup
12476     * format tags, including <c>\<a href=anchorname\></a></c> to begin a segment
12477     * of text that will be specially styled and react to click events, ended
12478     * with either of \</a\> or \</\>. When clicked, the anchor will emit an
12479     * "anchor,clicked" signal that you can attach a callback to with
12480     * evas_object_smart_callback_add(). The name of the anchor given in the
12481     * event info struct will be the one set in the href attribute, in this
12482     * case, anchorname.
12483     *
12484     * Other markup can be used to style the text in different ways, but it's
12485     * up to the style defined in the theme which tags do what.
12486     * @deprecated use elm_object_text_set() instead.
12487     */
12488    EINA_DEPRECATED EAPI void         elm_anchorblock_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
12489    /**
12490     * Get the markup text set for the anchorblock
12491     *
12492     * Retrieves the text set on the anchorblock, with markup tags included.
12493     *
12494     * @param obj The anchorblock object
12495     * @return The markup text set or @c NULL if nothing was set or an error
12496     * occurred
12497     * @deprecated use elm_object_text_set() instead.
12498     */
12499    EINA_DEPRECATED EAPI const char  *elm_anchorblock_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12500    /**
12501     * Set the parent of the hover popup
12502     *
12503     * Sets the parent object to use by the hover created by the anchorblock
12504     * when an anchor is clicked. See @ref Hover for more details on this.
12505     *
12506     * @param obj The anchorblock object
12507     * @param parent The object to use as parent for the hover
12508     */
12509    EAPI void         elm_anchorblock_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12510    /**
12511     * Get the parent of the hover popup
12512     *
12513     * Get the object used as parent for the hover created by the anchorblock
12514     * widget. See @ref Hover for more details on this.
12515     * If no parent is set, the same anchorblock object will be used.
12516     *
12517     * @param obj The anchorblock object
12518     * @return The object used as parent for the hover, NULL if none is set.
12519     */
12520    EAPI Evas_Object *elm_anchorblock_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12521    /**
12522     * Set the style that the hover should use
12523     *
12524     * When creating the popup hover, anchorblock will request that it's
12525     * themed according to @p style.
12526     *
12527     * @param obj The anchorblock object
12528     * @param style The style to use for the underlying hover
12529     *
12530     * @see elm_object_style_set()
12531     */
12532    EAPI void         elm_anchorblock_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12533    /**
12534     * Get the style that the hover should use
12535     *
12536     * Get the style, the hover created by anchorblock will use.
12537     *
12538     * @param obj The anchorblock object
12539     * @return The style to use by the hover. NULL means the default is used.
12540     *
12541     * @see elm_object_style_set()
12542     */
12543    EAPI const char  *elm_anchorblock_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12544    /**
12545     * Ends the hover popup in the anchorblock
12546     *
12547     * When an anchor is clicked, the anchorblock widget will create a hover
12548     * object to use as a popup with user provided content. This function
12549     * terminates this popup, returning the anchorblock to its normal state.
12550     *
12551     * @param obj The anchorblock object
12552     */
12553    EAPI void         elm_anchorblock_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12554    /**
12555     * Appends a custom item provider to the given anchorblock
12556     *
12557     * Appends the given function to the list of items providers. This list is
12558     * called, one function at a time, with the given @p data pointer, the
12559     * anchorblock object and, in the @p item parameter, the item name as
12560     * referenced in its href string. Following functions in the list will be
12561     * called in order until one of them returns something different to NULL,
12562     * which should be an Evas_Object which will be used in place of the item
12563     * element.
12564     *
12565     * Items in the markup text take the form \<item relsize=16x16 vsize=full
12566     * href=item/name\>\</item\>
12567     *
12568     * @param obj The anchorblock object
12569     * @param func The function to add to the list of providers
12570     * @param data User data that will be passed to the callback function
12571     *
12572     * @see elm_entry_item_provider_append()
12573     */
12574    EAPI void         elm_anchorblock_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorblock, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12575    /**
12576     * Prepend a custom item provider to the given anchorblock
12577     *
12578     * Like elm_anchorblock_item_provider_append(), but it adds the function
12579     * @p func to the beginning of the list, instead of the end.
12580     *
12581     * @param obj The anchorblock object
12582     * @param func The function to add to the list of providers
12583     * @param data User data that will be passed to the callback function
12584     */
12585    EAPI void         elm_anchorblock_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorblock, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12586    /**
12587     * Remove a custom item provider from the list of the given anchorblock
12588     *
12589     * Removes the function and data pairing that matches @p func and @p data.
12590     * That is, unless the same function and same user data are given, the
12591     * function will not be removed from the list. This allows us to add the
12592     * same callback several times, with different @p data pointers and be
12593     * able to remove them later without conflicts.
12594     *
12595     * @param obj The anchorblock object
12596     * @param func The function to remove from the list
12597     * @param data The data matching the function to remove from the list
12598     */
12599    EAPI void         elm_anchorblock_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorblock, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12600    /**
12601     * @}
12602     */
12603
12604    /**
12605     * @defgroup Bubble Bubble
12606     *
12607     * @image html img/widget/bubble/preview-00.png
12608     * @image latex img/widget/bubble/preview-00.eps
12609     * @image html img/widget/bubble/preview-01.png
12610     * @image latex img/widget/bubble/preview-01.eps
12611     * @image html img/widget/bubble/preview-02.png
12612     * @image latex img/widget/bubble/preview-02.eps
12613     *
12614     * @brief The Bubble is a widget to show text similar to how speech is
12615     * represented in comics.
12616     *
12617     * The bubble widget contains 5 important visual elements:
12618     * @li The frame is a rectangle with rounded edjes and an "arrow".
12619     * @li The @p icon is an image to which the frame's arrow points to.
12620     * @li The @p label is a text which appears to the right of the icon if the
12621     * corner is "top_left" or "bottom_left" and is right aligned to the frame
12622     * otherwise.
12623     * @li The @p info is a text which appears to the right of the label. Info's
12624     * font is of a ligther color than label.
12625     * @li The @p content is an evas object that is shown inside the frame.
12626     *
12627     * The position of the arrow, icon, label and info depends on which corner is
12628     * selected. The four available corners are:
12629     * @li "top_left" - Default
12630     * @li "top_right"
12631     * @li "bottom_left"
12632     * @li "bottom_right"
12633     *
12634     * Signals that you can add callbacks for are:
12635     * @li "clicked" - This is called when a user has clicked the bubble.
12636     *
12637     * Default contents parts of the bubble that you can use for are:
12638     * @li "default" - A content of the bubble
12639     * @li "icon" - An icon of the bubble
12640     *
12641     * Default text parts of the button widget that you can use for are:
12642     * @li NULL - Label of the bubble
12643     *
12644          * For an example of using a buble see @ref bubble_01_example_page "this".
12645     *
12646     * @{
12647     */
12648
12649    /**
12650     * Add a new bubble to the parent
12651     *
12652     * @param parent The parent object
12653     * @return The new object or NULL if it cannot be created
12654     *
12655     * This function adds a text bubble to the given parent evas object.
12656     */
12657    EAPI Evas_Object *elm_bubble_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12658    /**
12659     * Set the label of the bubble
12660     *
12661     * @param obj The bubble object
12662     * @param label The string to set in the label
12663     *
12664     * This function sets the title of the bubble. Where this appears depends on
12665     * the selected corner.
12666     * @deprecated use elm_object_text_set() instead.
12667     */
12668    EINA_DEPRECATED EAPI void         elm_bubble_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12669    /**
12670     * Get the label of the bubble
12671     *
12672     * @param obj The bubble object
12673     * @return The string of set in the label
12674     *
12675     * This function gets the title of the bubble.
12676     * @deprecated use elm_object_text_get() instead.
12677     */
12678    EINA_DEPRECATED EAPI const char  *elm_bubble_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12679    /**
12680     * Set the info of the bubble
12681     *
12682     * @param obj The bubble object
12683     * @param info The given info about the bubble
12684     *
12685     * This function sets the info of the bubble. Where this appears depends on
12686     * the selected corner.
12687     * @deprecated use elm_object_part_text_set() instead. (with "info" as the parameter).
12688     */
12689    EINA_DEPRECATED EAPI void         elm_bubble_info_set(Evas_Object *obj, const char *info) EINA_ARG_NONNULL(1);
12690    /**
12691     * Get the info of the bubble
12692     *
12693     * @param obj The bubble object
12694     *
12695     * @return The "info" string of the bubble
12696     *
12697     * This function gets the info text.
12698     * @deprecated use elm_object_part_text_get() instead. (with "info" as the parameter).
12699     */
12700    EINA_DEPRECATED EAPI const char  *elm_bubble_info_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12701    /**
12702     * Set the content to be shown in the bubble
12703     *
12704     * Once the content object is set, a previously set one will be deleted.
12705     * If you want to keep the old content object, use the
12706     * elm_bubble_content_unset() function.
12707     *
12708     * @param obj The bubble object
12709     * @param content The given content of the bubble
12710     *
12711     * This function sets the content shown on the middle of the bubble.
12712     *
12713     * @deprecated use elm_object_content_set() instead
12714     *
12715     */
12716    EINA_DEPRECATED EAPI void         elm_bubble_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
12717    /**
12718     * Get the content shown in the bubble
12719     *
12720     * Return the content object which is set for this widget.
12721     *
12722     * @param obj The bubble object
12723     * @return The content that is being used
12724     *
12725     * @deprecated use elm_object_content_get() instead
12726     *
12727     */
12728    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12729    /**
12730     * Unset the content shown in the bubble
12731     *
12732     * Unparent and return the content object which was set for this widget.
12733     *
12734     * @param obj The bubble object
12735     * @return The content that was being used
12736     *
12737     * @deprecated use elm_object_content_unset() instead
12738     *
12739     */
12740    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12741    /**
12742     * Set the icon of the bubble
12743     *
12744     * Once the icon object is set, a previously set one will be deleted.
12745     * If you want to keep the old content object, use the
12746     * elm_icon_content_unset() function.
12747     *
12748     * @param obj The bubble object
12749     * @param icon The given icon for the bubble
12750     *
12751     * @deprecated use elm_object_part_content_set() instead
12752     *
12753     */
12754    EINA_DEPRECATED EAPI void         elm_bubble_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12755    /**
12756     * Get the icon of the bubble
12757     *
12758     * @param obj The bubble object
12759     * @return The icon for the bubble
12760     *
12761     * This function gets the icon shown on the top left of bubble.
12762     *
12763     * @deprecated use elm_object_part_content_get() instead
12764     *
12765     */
12766    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12767    /**
12768     * Unset the icon of the bubble
12769     *
12770     * Unparent and return the icon object which was set for this widget.
12771     *
12772     * @param obj The bubble object
12773     * @return The icon that was being used
12774     *
12775     * @deprecated use elm_object_part_content_unset() instead
12776     *
12777     */
12778    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12779    /**
12780     * Set the corner of the bubble
12781     *
12782     * @param obj The bubble object.
12783     * @param corner The given corner for the bubble.
12784     *
12785     * This function sets the corner of the bubble. The corner will be used to
12786     * determine where the arrow in the frame points to and where label, icon and
12787     * info are shown.
12788     *
12789     * Possible values for corner are:
12790     * @li "top_left" - Default
12791     * @li "top_right"
12792     * @li "bottom_left"
12793     * @li "bottom_right"
12794     */
12795    EAPI void         elm_bubble_corner_set(Evas_Object *obj, const char *corner) EINA_ARG_NONNULL(1, 2);
12796    /**
12797     * Get the corner of the bubble
12798     *
12799     * @param obj The bubble object.
12800     * @return The given corner for the bubble.
12801     *
12802     * This function gets the selected corner of the bubble.
12803     */
12804    EAPI const char  *elm_bubble_corner_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12805    /**
12806     * @}
12807     */
12808
12809    /**
12810     * @defgroup Photo Photo
12811     *
12812     * For displaying the photo of a person (contact). Simple, yet
12813     * with a very specific purpose.
12814     *
12815     * Signals that you can add callbacks for are:
12816     *
12817     * "clicked" - This is called when a user has clicked the photo
12818     * "drag,start" - Someone started dragging the image out of the object
12819     * "drag,end" - Dragged item was dropped (somewhere)
12820     *
12821     * @{
12822     */
12823
12824    /**
12825     * Add a new photo to the parent
12826     *
12827     * @param parent The parent object
12828     * @return The new object or NULL if it cannot be created
12829     *
12830     * @ingroup Photo
12831     */
12832    EAPI Evas_Object *elm_photo_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12833
12834    /**
12835     * Set the file that will be used as photo
12836     *
12837     * @param obj The photo object
12838     * @param file The path to file that will be used as photo
12839     *
12840     * @return (1 = success, 0 = error)
12841     *
12842     * @ingroup Photo
12843     */
12844    EAPI Eina_Bool    elm_photo_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
12845
12846     /**
12847     * Set the file that will be used as thumbnail in the photo.
12848     *
12849     * @param obj The photo object.
12850     * @param file The path to file that will be used as thumb.
12851     * @param group The key used in case of an EET file.
12852     *
12853     * @ingroup Photo
12854     */
12855    EAPI void         elm_photo_thumb_set(const Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
12856
12857    /**
12858     * Set the size that will be used on the photo
12859     *
12860     * @param obj The photo object
12861     * @param size The size that the photo will be
12862     *
12863     * @ingroup Photo
12864     */
12865    EAPI void         elm_photo_size_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
12866
12867    /**
12868     * Set if the photo should be completely visible or not.
12869     *
12870     * @param obj The photo object
12871     * @param fill if true the photo will be completely visible
12872     *
12873     * @ingroup Photo
12874     */
12875    EAPI void         elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill) EINA_ARG_NONNULL(1);
12876
12877    /**
12878     * Set editability of the photo.
12879     *
12880     * An editable photo can be dragged to or from, and can be cut or
12881     * pasted too.  Note that pasting an image or dropping an item on
12882     * the image will delete the existing content.
12883     *
12884     * @param obj The photo object.
12885     * @param set To set of clear editablity.
12886     */
12887    EAPI void         elm_photo_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
12888
12889    /**
12890     * @}
12891     */
12892
12893    /* gesture layer */
12894    /**
12895     * @defgroup Elm_Gesture_Layer Gesture Layer
12896     * Gesture Layer Usage:
12897     *
12898     * Use Gesture Layer to detect gestures.
12899     * The advantage is that you don't have to implement
12900     * gesture detection, just set callbacks of gesture state.
12901     * By using gesture layer we make standard interface.
12902     *
12903     * In order to use Gesture Layer you start with @ref elm_gesture_layer_add
12904     * with a parent object parameter.
12905     * Next 'activate' gesture layer with a @ref elm_gesture_layer_attach
12906     * call. Usually with same object as target (2nd parameter).
12907     *
12908     * Now you need to tell gesture layer what gestures you follow.
12909     * This is done with @ref elm_gesture_layer_cb_set call.
12910     * By setting the callback you actually saying to gesture layer:
12911     * I would like to know when the gesture @ref Elm_Gesture_Types
12912     * switches to state @ref Elm_Gesture_State.
12913     *
12914     * Next, you need to implement the actual action that follows the input
12915     * in your callback.
12916     *
12917     * Note that if you like to stop being reported about a gesture, just set
12918     * all callbacks referring this gesture to NULL.
12919     * (again with @ref elm_gesture_layer_cb_set)
12920     *
12921     * The information reported by gesture layer to your callback is depending
12922     * on @ref Elm_Gesture_Types:
12923     * @ref Elm_Gesture_Taps_Info is the info reported for tap gestures:
12924     * @ref ELM_GESTURE_N_TAPS, @ref ELM_GESTURE_N_LONG_TAPS,
12925     * @ref ELM_GESTURE_N_DOUBLE_TAPS, @ref ELM_GESTURE_N_TRIPLE_TAPS.
12926     *
12927     * @ref Elm_Gesture_Momentum_Info is info reported for momentum gestures:
12928     * @ref ELM_GESTURE_MOMENTUM.
12929     *
12930     * @ref Elm_Gesture_Line_Info is the info reported for line gestures:
12931     * (this also contains @ref Elm_Gesture_Momentum_Info internal structure)
12932     * @ref ELM_GESTURE_N_LINES, @ref ELM_GESTURE_N_FLICKS.
12933     * Note that we consider a flick as a line-gesture that should be completed
12934     * in flick-time-limit as defined in @ref Config.
12935     *
12936     * @ref Elm_Gesture_Zoom_Info is the info reported for @ref ELM_GESTURE_ZOOM gesture.
12937     *
12938     * @ref Elm_Gesture_Rotate_Info is the info reported for @ref ELM_GESTURE_ROTATE gesture.
12939     *
12940     *
12941     * Gesture Layer Tweaks:
12942     *
12943     * Note that line, flick, gestures can start without the need to remove fingers from surface.
12944     * When user fingers rests on same-spot gesture is ended and starts again when fingers moved.
12945     *
12946     * Setting glayer_continues_enable to false in @ref Config will change this behavior
12947     * so gesture starts when user touches (a *DOWN event) touch-surface
12948     * and ends when no fingers touches surface (a *UP event).
12949     */
12950
12951    /**
12952     * @enum _Elm_Gesture_Types
12953     * Enum of supported gesture types.
12954     * @ingroup Elm_Gesture_Layer
12955     */
12956    enum _Elm_Gesture_Types
12957      {
12958         ELM_GESTURE_FIRST = 0,
12959
12960         ELM_GESTURE_N_TAPS, /**< N fingers single taps */
12961         ELM_GESTURE_N_LONG_TAPS, /**< N fingers single long-taps */
12962         ELM_GESTURE_N_DOUBLE_TAPS, /**< N fingers double-single taps */
12963         ELM_GESTURE_N_TRIPLE_TAPS, /**< N fingers triple-single taps */
12964
12965         ELM_GESTURE_MOMENTUM, /**< Reports momentum in the dircetion of move */
12966
12967         ELM_GESTURE_N_LINES, /**< N fingers line gesture */
12968         ELM_GESTURE_N_FLICKS, /**< N fingers flick gesture */
12969
12970         ELM_GESTURE_ZOOM, /**< Zoom */
12971         ELM_GESTURE_ROTATE, /**< Rotate */
12972
12973         ELM_GESTURE_LAST
12974      };
12975
12976    /**
12977     * @typedef Elm_Gesture_Types
12978     * gesture types enum
12979     * @ingroup Elm_Gesture_Layer
12980     */
12981    typedef enum _Elm_Gesture_Types Elm_Gesture_Types;
12982
12983    /**
12984     * @enum _Elm_Gesture_State
12985     * Enum of gesture states.
12986     * @ingroup Elm_Gesture_Layer
12987     */
12988    enum _Elm_Gesture_State
12989      {
12990         ELM_GESTURE_STATE_UNDEFINED = -1, /**< Gesture not STARTed */
12991         ELM_GESTURE_STATE_START,          /**< Gesture STARTed     */
12992         ELM_GESTURE_STATE_MOVE,           /**< Gesture is ongoing  */
12993         ELM_GESTURE_STATE_END,            /**< Gesture completed   */
12994         ELM_GESTURE_STATE_ABORT    /**< Onging gesture was ABORTed */
12995      };
12996
12997    /**
12998     * @typedef Elm_Gesture_State
12999     * gesture states enum
13000     * @ingroup Elm_Gesture_Layer
13001     */
13002    typedef enum _Elm_Gesture_State Elm_Gesture_State;
13003
13004    /**
13005     * @struct _Elm_Gesture_Taps_Info
13006     * Struct holds taps info for user
13007     * @ingroup Elm_Gesture_Layer
13008     */
13009    struct _Elm_Gesture_Taps_Info
13010      {
13011         Evas_Coord x, y;         /**< Holds center point between fingers */
13012         unsigned int n;          /**< Number of fingers tapped           */
13013         unsigned int timestamp;  /**< event timestamp       */
13014      };
13015
13016    /**
13017     * @typedef Elm_Gesture_Taps_Info
13018     * holds taps info for user
13019     * @ingroup Elm_Gesture_Layer
13020     */
13021    typedef struct _Elm_Gesture_Taps_Info Elm_Gesture_Taps_Info;
13022
13023    /**
13024     * @struct _Elm_Gesture_Momentum_Info
13025     * Struct holds momentum info for user
13026     * x1 and y1 are not necessarily in sync
13027     * x1 holds x value of x direction starting point
13028     * and same holds for y1.
13029     * This is noticeable when doing V-shape movement
13030     * @ingroup Elm_Gesture_Layer
13031     */
13032    struct _Elm_Gesture_Momentum_Info
13033      {  /* Report line ends, timestamps, and momentum computed        */
13034         Evas_Coord x1; /**< Final-swipe direction starting point on X */
13035         Evas_Coord y1; /**< Final-swipe direction starting point on Y */
13036         Evas_Coord x2; /**< Final-swipe direction ending point on X   */
13037         Evas_Coord y2; /**< Final-swipe direction ending point on Y   */
13038
13039         unsigned int tx; /**< Timestamp of start of final x-swipe */
13040         unsigned int ty; /**< Timestamp of start of final y-swipe */
13041
13042         Evas_Coord mx; /**< Momentum on X */
13043         Evas_Coord my; /**< Momentum on Y */
13044
13045         unsigned int n;  /**< Number of fingers */
13046      };
13047
13048    /**
13049     * @typedef Elm_Gesture_Momentum_Info
13050     * holds momentum info for user
13051     * @ingroup Elm_Gesture_Layer
13052     */
13053     typedef struct _Elm_Gesture_Momentum_Info Elm_Gesture_Momentum_Info;
13054
13055    /**
13056     * @struct _Elm_Gesture_Line_Info
13057     * Struct holds line info for user
13058     * @ingroup Elm_Gesture_Layer
13059     */
13060    struct _Elm_Gesture_Line_Info
13061      {  /* Report line ends, timestamps, and momentum computed      */
13062         Elm_Gesture_Momentum_Info momentum; /**< Line momentum info */
13063         double angle;              /**< Angle (direction) of lines  */
13064      };
13065
13066    /**
13067     * @typedef Elm_Gesture_Line_Info
13068     * Holds line info for user
13069     * @ingroup Elm_Gesture_Layer
13070     */
13071     typedef struct  _Elm_Gesture_Line_Info Elm_Gesture_Line_Info;
13072
13073    /**
13074     * @struct _Elm_Gesture_Zoom_Info
13075     * Struct holds zoom info for user
13076     * @ingroup Elm_Gesture_Layer
13077     */
13078    struct _Elm_Gesture_Zoom_Info
13079      {
13080         Evas_Coord x, y;       /**< Holds zoom center point reported to user  */
13081         Evas_Coord radius; /**< Holds radius between fingers reported to user */
13082         double zoom;            /**< Zoom value: 1.0 means no zoom             */
13083         double momentum;        /**< Zoom momentum: zoom growth per second (NOT YET SUPPORTED) */
13084      };
13085
13086    /**
13087     * @typedef Elm_Gesture_Zoom_Info
13088     * Holds zoom info for user
13089     * @ingroup Elm_Gesture_Layer
13090     */
13091    typedef struct _Elm_Gesture_Zoom_Info Elm_Gesture_Zoom_Info;
13092
13093    /**
13094     * @struct _Elm_Gesture_Rotate_Info
13095     * Struct holds rotation info for user
13096     * @ingroup Elm_Gesture_Layer
13097     */
13098    struct _Elm_Gesture_Rotate_Info
13099      {
13100         Evas_Coord x, y;   /**< Holds zoom center point reported to user      */
13101         Evas_Coord radius; /**< Holds radius between fingers reported to user */
13102         double base_angle; /**< Holds start-angle */
13103         double angle;      /**< Rotation value: 0.0 means no rotation         */
13104         double momentum;   /**< Rotation momentum: rotation done per second (NOT YET SUPPORTED) */
13105      };
13106
13107    /**
13108     * @typedef Elm_Gesture_Rotate_Info
13109     * Holds rotation info for user
13110     * @ingroup Elm_Gesture_Layer
13111     */
13112    typedef struct _Elm_Gesture_Rotate_Info Elm_Gesture_Rotate_Info;
13113
13114    /**
13115     * @typedef Elm_Gesture_Event_Cb
13116     * User callback used to stream gesture info from gesture layer
13117     * @param data user data
13118     * @param event_info gesture report info
13119     * Returns a flag field to be applied on the causing event.
13120     * You should probably return EVAS_EVENT_FLAG_ON_HOLD if your widget acted
13121     * upon the event, in an irreversible way.
13122     *
13123     * @ingroup Elm_Gesture_Layer
13124     */
13125    typedef Evas_Event_Flags (*Elm_Gesture_Event_Cb) (void *data, void *event_info);
13126
13127    /**
13128     * Use function to set callbacks to be notified about
13129     * change of state of gesture.
13130     * When a user registers a callback with this function
13131     * this means this gesture has to be tested.
13132     *
13133     * When ALL callbacks for a gesture are set to NULL
13134     * it means user isn't interested in gesture-state
13135     * and it will not be tested.
13136     *
13137     * @param obj Pointer to gesture-layer.
13138     * @param idx The gesture you would like to track its state.
13139     * @param cb callback function pointer.
13140     * @param cb_type what event this callback tracks: START, MOVE, END, ABORT.
13141     * @param data user info to be sent to callback (usually, Smart Data)
13142     *
13143     * @ingroup Elm_Gesture_Layer
13144     */
13145    EAPI void elm_gesture_layer_cb_set(Evas_Object *obj, Elm_Gesture_Types idx, Elm_Gesture_State cb_type, Elm_Gesture_Event_Cb cb, void *data) EINA_ARG_NONNULL(1);
13146
13147    /**
13148     * Call this function to get repeat-events settings.
13149     *
13150     * @param obj Pointer to gesture-layer.
13151     *
13152     * @return repeat events settings.
13153     * @see elm_gesture_layer_hold_events_set()
13154     * @ingroup Elm_Gesture_Layer
13155     */
13156    EAPI Eina_Bool elm_gesture_layer_hold_events_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
13157
13158    /**
13159     * This function called in order to make gesture-layer repeat events.
13160     * Set this of you like to get the raw events only if gestures were not detected.
13161     * Clear this if you like gesture layer to fwd events as testing gestures.
13162     *
13163     * @param obj Pointer to gesture-layer.
13164     * @param r Repeat: TRUE/FALSE
13165     *
13166     * @ingroup Elm_Gesture_Layer
13167     */
13168    EAPI void elm_gesture_layer_hold_events_set(Evas_Object *obj, Eina_Bool r) EINA_ARG_NONNULL(1);
13169
13170    /**
13171     * This function sets step-value for zoom action.
13172     * Set step to any positive value.
13173     * Cancel step setting by setting to 0.0
13174     *
13175     * @param obj Pointer to gesture-layer.
13176     * @param s new zoom step value.
13177     *
13178     * @ingroup Elm_Gesture_Layer
13179     */
13180    EAPI void elm_gesture_layer_zoom_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
13181
13182    /**
13183     * This function sets step-value for rotate action.
13184     * Set step to any positive value.
13185     * Cancel step setting by setting to 0.0
13186     *
13187     * @param obj Pointer to gesture-layer.
13188     * @param s new roatate step value.
13189     *
13190     * @ingroup Elm_Gesture_Layer
13191     */
13192    EAPI void elm_gesture_layer_rotate_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
13193
13194    /**
13195     * This function called to attach gesture-layer to an Evas_Object.
13196     * @param obj Pointer to gesture-layer.
13197     * @param t Pointer to underlying object (AKA Target)
13198     *
13199     * @return TRUE, FALSE on success, failure.
13200     *
13201     * @ingroup Elm_Gesture_Layer
13202     */
13203    EAPI Eina_Bool elm_gesture_layer_attach(Evas_Object *obj, Evas_Object *t) EINA_ARG_NONNULL(1, 2);
13204
13205    /**
13206     * Call this function to construct a new gesture-layer object.
13207     * This does not activate the gesture layer. You have to
13208     * call elm_gesture_layer_attach in order to 'activate' gesture-layer.
13209     *
13210     * @param parent the parent object.
13211     *
13212     * @return Pointer to new gesture-layer object.
13213     *
13214     * @ingroup Elm_Gesture_Layer
13215     */
13216    EAPI Evas_Object *elm_gesture_layer_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13217
13218    /**
13219     * @defgroup Thumb Thumb
13220     *
13221     * @image html img/widget/thumb/preview-00.png
13222     * @image latex img/widget/thumb/preview-00.eps
13223     *
13224     * A thumb object is used for displaying the thumbnail of an image or video.
13225     * You must have compiled Elementary with Ethumb_Client support and the DBus
13226     * service must be present and auto-activated in order to have thumbnails to
13227     * be generated.
13228     *
13229     * Once the thumbnail object becomes visible, it will check if there is a
13230     * previously generated thumbnail image for the file set on it. If not, it
13231     * will start generating this thumbnail.
13232     *
13233     * Different config settings will cause different thumbnails to be generated
13234     * even on the same file.
13235     *
13236     * Generated thumbnails are stored under @c $HOME/.thumbnails/. Check the
13237     * Ethumb documentation to change this path, and to see other configuration
13238     * options.
13239     *
13240     * Signals that you can add callbacks for are:
13241     *
13242     * - "clicked" - This is called when a user has clicked the thumb without dragging
13243     *             around.
13244     * - "clicked,double" - This is called when a user has double-clicked the thumb.
13245     * - "press" - This is called when a user has pressed down the thumb.
13246     * - "generate,start" - The thumbnail generation started.
13247     * - "generate,stop" - The generation process stopped.
13248     * - "generate,error" - The generation failed.
13249     * - "load,error" - The thumbnail image loading failed.
13250     *
13251     * available styles:
13252     * - default
13253     * - noframe
13254     *
13255     * An example of use of thumbnail:
13256     *
13257     * - @ref thumb_example_01
13258     */
13259
13260    /**
13261     * @addtogroup Thumb
13262     * @{
13263     */
13264
13265    /**
13266     * @enum _Elm_Thumb_Animation_Setting
13267     * @typedef Elm_Thumb_Animation_Setting
13268     *
13269     * Used to set if a video thumbnail is animating or not.
13270     *
13271     * @ingroup Thumb
13272     */
13273    typedef enum _Elm_Thumb_Animation_Setting
13274      {
13275         ELM_THUMB_ANIMATION_START = 0, /**< Play animation once */
13276         ELM_THUMB_ANIMATION_LOOP,      /**< Keep playing animation until stop is requested */
13277         ELM_THUMB_ANIMATION_STOP,      /**< Stop playing the animation */
13278         ELM_THUMB_ANIMATION_LAST
13279      } Elm_Thumb_Animation_Setting;
13280
13281    /**
13282     * Add a new thumb object to the parent.
13283     *
13284     * @param parent The parent object.
13285     * @return The new object or NULL if it cannot be created.
13286     *
13287     * @see elm_thumb_file_set()
13288     * @see elm_thumb_ethumb_client_get()
13289     *
13290     * @ingroup Thumb
13291     */
13292    EAPI Evas_Object                 *elm_thumb_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13293    /**
13294     * Reload thumbnail if it was generated before.
13295     *
13296     * @param obj The thumb object to reload
13297     *
13298     * This is useful if the ethumb client configuration changed, like its
13299     * size, aspect or any other property one set in the handle returned
13300     * by elm_thumb_ethumb_client_get().
13301     *
13302     * If the options didn't change, the thumbnail won't be generated again, but
13303     * the old one will still be used.
13304     *
13305     * @see elm_thumb_file_set()
13306     *
13307     * @ingroup Thumb
13308     */
13309    EAPI void                         elm_thumb_reload(Evas_Object *obj) EINA_ARG_NONNULL(1);
13310    /**
13311     * Set the file that will be used as thumbnail.
13312     *
13313     * @param obj The thumb object.
13314     * @param file The path to file that will be used as thumb.
13315     * @param key The key used in case of an EET file.
13316     *
13317     * The file can be an image or a video (in that case, acceptable extensions are:
13318     * avi, mp4, ogv, mov, mpg and wmv). To start the video animation, use the
13319     * function elm_thumb_animate().
13320     *
13321     * @see elm_thumb_file_get()
13322     * @see elm_thumb_reload()
13323     * @see elm_thumb_animate()
13324     *
13325     * @ingroup Thumb
13326     */
13327    EAPI void                         elm_thumb_file_set(Evas_Object *obj, const char *file, const char *key) EINA_ARG_NONNULL(1);
13328    /**
13329     * Get the image or video path and key used to generate the thumbnail.
13330     *
13331     * @param obj The thumb object.
13332     * @param file Pointer to filename.
13333     * @param key Pointer to key.
13334     *
13335     * @see elm_thumb_file_set()
13336     * @see elm_thumb_path_get()
13337     *
13338     * @ingroup Thumb
13339     */
13340    EAPI void                         elm_thumb_file_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
13341    /**
13342     * Get the path and key to the image or video generated by ethumb.
13343     *
13344     * One just need to make sure that the thumbnail was generated before getting
13345     * its path; otherwise, the path will be NULL. One way to do that is by asking
13346     * for the path when/after the "generate,stop" smart callback is called.
13347     *
13348     * @param obj The thumb object.
13349     * @param file Pointer to thumb path.
13350     * @param key Pointer to thumb key.
13351     *
13352     * @see elm_thumb_file_get()
13353     *
13354     * @ingroup Thumb
13355     */
13356    EAPI void                         elm_thumb_path_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
13357    /**
13358     * Set the animation state for the thumb object. If its content is an animated
13359     * video, you may start/stop the animation or tell it to play continuously and
13360     * looping.
13361     *
13362     * @param obj The thumb object.
13363     * @param setting The animation setting.
13364     *
13365     * @see elm_thumb_file_set()
13366     *
13367     * @ingroup Thumb
13368     */
13369    EAPI void                         elm_thumb_animate_set(Evas_Object *obj, Elm_Thumb_Animation_Setting s) EINA_ARG_NONNULL(1);
13370    /**
13371     * Get the animation state for the thumb object.
13372     *
13373     * @param obj The thumb object.
13374     * @return getting The animation setting or @c ELM_THUMB_ANIMATION_LAST,
13375     * on errors.
13376     *
13377     * @see elm_thumb_animate_set()
13378     *
13379     * @ingroup Thumb
13380     */
13381    EAPI Elm_Thumb_Animation_Setting  elm_thumb_animate_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13382    /**
13383     * Get the ethumb_client handle so custom configuration can be made.
13384     *
13385     * @return Ethumb_Client instance or NULL.
13386     *
13387     * This must be called before the objects are created to be sure no object is
13388     * visible and no generation started.
13389     *
13390     * Example of usage:
13391     *
13392     * @code
13393     * #include <Elementary.h>
13394     * #ifndef ELM_LIB_QUICKLAUNCH
13395     * EAPI_MAIN int
13396     * elm_main(int argc, char **argv)
13397     * {
13398     *    Ethumb_Client *client;
13399     *
13400     *    elm_need_ethumb();
13401     *
13402     *    // ... your code
13403     *
13404     *    client = elm_thumb_ethumb_client_get();
13405     *    if (!client)
13406     *      {
13407     *         ERR("could not get ethumb_client");
13408     *         return 1;
13409     *      }
13410     *    ethumb_client_size_set(client, 100, 100);
13411     *    ethumb_client_crop_align_set(client, 0.5, 0.5);
13412     *    // ... your code
13413     *
13414     *    // Create elm_thumb objects here
13415     *
13416     *    elm_run();
13417     *    elm_shutdown();
13418     *    return 0;
13419     * }
13420     * #endif
13421     * ELM_MAIN()
13422     * @endcode
13423     *
13424     * @note There's only one client handle for Ethumb, so once a configuration
13425     * change is done to it, any other request for thumbnails (for any thumbnail
13426     * object) will use that configuration. Thus, this configuration is global.
13427     *
13428     * @ingroup Thumb
13429     */
13430    EAPI void                        *elm_thumb_ethumb_client_get(void);
13431    /**
13432     * Get the ethumb_client connection state.
13433     *
13434     * @return EINA_TRUE if the client is connected to the server or EINA_FALSE
13435     * otherwise.
13436     */
13437    EAPI Eina_Bool                    elm_thumb_ethumb_client_connected(void);
13438    /**
13439     * Make the thumbnail 'editable'.
13440     *
13441     * @param obj Thumb object.
13442     * @param set Turn on or off editability. Default is @c EINA_FALSE.
13443     *
13444     * This means the thumbnail is a valid drag target for drag and drop, and can be
13445     * cut or pasted too.
13446     *
13447     * @see elm_thumb_editable_get()
13448     *
13449     * @ingroup Thumb
13450     */
13451    EAPI Eina_Bool                    elm_thumb_editable_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
13452    /**
13453     * Make the thumbnail 'editable'.
13454     *
13455     * @param obj Thumb object.
13456     * @return Editability.
13457     *
13458     * This means the thumbnail is a valid drag target for drag and drop, and can be
13459     * cut or pasted too.
13460     *
13461     * @see elm_thumb_editable_set()
13462     *
13463     * @ingroup Thumb
13464     */
13465    EAPI Eina_Bool                    elm_thumb_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13466
13467    /**
13468     * @}
13469     */
13470
13471    /**
13472     * @defgroup Web Web
13473     *
13474     * @image html img/widget/web/preview-00.png
13475     * @image latex img/widget/web/preview-00.eps
13476     *
13477     * A web object is used for displaying web pages (HTML/CSS/JS)
13478     * using WebKit-EFL. You must have compiled Elementary with
13479     * ewebkit support.
13480     *
13481     * Signals that you can add callbacks for are:
13482     * @li "download,request": A file download has been requested. Event info is
13483     * a pointer to a Elm_Web_Download
13484     * @li "editorclient,contents,changed": Editor client's contents changed
13485     * @li "editorclient,selection,changed": Editor client's selection changed
13486     * @li "frame,created": A new frame was created. Event info is an
13487     * Evas_Object which can be handled with WebKit's ewk_frame API
13488     * @li "icon,received": An icon was received by the main frame
13489     * @li "inputmethod,changed": Input method changed. Event info is an
13490     * Eina_Bool indicating whether it's enabled or not
13491     * @li "js,windowobject,clear": JS window object has been cleared
13492     * @li "link,hover,in": Mouse cursor is hovering over a link. Event info
13493     * is a char *link[2], where the first string contains the URL the link
13494     * points to, and the second one the title of the link
13495     * @li "link,hover,out": Mouse cursor left the link
13496     * @li "load,document,finished": Loading of a document finished. Event info
13497     * is the frame that finished loading
13498     * @li "load,error": Load failed. Event info is a pointer to
13499     * Elm_Web_Frame_Load_Error
13500     * @li "load,finished": Load finished. Event info is NULL on success, on
13501     * error it's a pointer to Elm_Web_Frame_Load_Error
13502     * @li "load,newwindow,show": A new window was created and is ready to be
13503     * shown
13504     * @li "load,progress": Overall load progress. Event info is a pointer to
13505     * a double containing a value between 0.0 and 1.0
13506     * @li "load,provisional": Started provisional load
13507     * @li "load,started": Loading of a document started
13508     * @li "menubar,visible,get": Queries if the menubar is visible. Event info
13509     * is a pointer to Eina_Bool where the callback should set EINA_TRUE if
13510     * the menubar is visible, or EINA_FALSE in case it's not
13511     * @li "menubar,visible,set": Informs menubar visibility. Event info is
13512     * an Eina_Bool indicating the visibility
13513     * @li "popup,created": A dropdown widget was activated, requesting its
13514     * popup menu to be created. Event info is a pointer to Elm_Web_Menu
13515     * @li "popup,willdelete": The web object is ready to destroy the popup
13516     * object created. Event info is a pointer to Elm_Web_Menu
13517     * @li "ready": Page is fully loaded
13518     * @li "scrollbars,visible,get": Queries visibility of scrollbars. Event
13519     * info is a pointer to Eina_Bool where the visibility state should be set
13520     * @li "scrollbars,visible,set": Informs scrollbars visibility. Event info
13521     * is an Eina_Bool with the visibility state set
13522     * @li "statusbar,text,set": Text of the statusbar changed. Even info is
13523     * a string with the new text
13524     * @li "statusbar,visible,get": Queries visibility of the status bar.
13525     * Event info is a pointer to Eina_Bool where the visibility state should be
13526     * set.
13527     * @li "statusbar,visible,set": Informs statusbar visibility. Event info is
13528     * an Eina_Bool with the visibility value
13529     * @li "title,changed": Title of the main frame changed. Event info is a
13530     * string with the new title
13531     * @li "toolbars,visible,get": Queries visibility of toolbars. Event info
13532     * is a pointer to Eina_Bool where the visibility state should be set
13533     * @li "toolbars,visible,set": Informs the visibility of toolbars. Event
13534     * info is an Eina_Bool with the visibility state
13535     * @li "tooltip,text,set": Show and set text of a tooltip. Event info is
13536     * a string with the text to show
13537     * @li "uri,changed": URI of the main frame changed. Event info is a string
13538     * with the new URI
13539     * @li "view,resized": The web object internal's view changed sized
13540     * @li "windows,close,request": A JavaScript request to close the current
13541     * window was requested
13542     * @li "zoom,animated,end": Animated zoom finished
13543     *
13544     * available styles:
13545     * - default
13546     *
13547     * An example of use of web:
13548     *
13549     * - @ref web_example_01 TBD
13550     */
13551
13552    /**
13553     * @addtogroup Web
13554     * @{
13555     */
13556
13557    /**
13558     * Structure used to report load errors.
13559     *
13560     * Load errors are reported as signal by elm_web. All the strings are
13561     * temporary references and should @b not be used after the signal
13562     * callback returns. If it's required, make copies with strdup() or
13563     * eina_stringshare_add() (they are not even guaranteed to be
13564     * stringshared, so must use eina_stringshare_add() and not
13565     * eina_stringshare_ref()).
13566     */
13567    typedef struct _Elm_Web_Frame_Load_Error Elm_Web_Frame_Load_Error;
13568    /**
13569     * Structure used to report load errors.
13570     *
13571     * Load errors are reported as signal by elm_web. All the strings are
13572     * temporary references and should @b not be used after the signal
13573     * callback returns. If it's required, make copies with strdup() or
13574     * eina_stringshare_add() (they are not even guaranteed to be
13575     * stringshared, so must use eina_stringshare_add() and not
13576     * eina_stringshare_ref()).
13577     */
13578    struct _Elm_Web_Frame_Load_Error
13579      {
13580         int code; /**< Numeric error code */
13581         Eina_Bool is_cancellation; /**< Error produced by cancelling a request */
13582         const char *domain; /**< Error domain name */
13583         const char *description; /**< Error description (already localized) */
13584         const char *failing_url; /**< The URL that failed to load */
13585         Evas_Object *frame; /**< Frame object that produced the error */
13586      };
13587
13588    /**
13589     * The possibles types that the items in a menu can be
13590     */
13591    typedef enum _Elm_Web_Menu_Item_Type
13592      {
13593         ELM_WEB_MENU_SEPARATOR,
13594         ELM_WEB_MENU_GROUP,
13595         ELM_WEB_MENU_OPTION
13596      } Elm_Web_Menu_Item_Type;
13597
13598    /**
13599     * Structure describing the items in a menu
13600     */
13601    typedef struct _Elm_Web_Menu_Item Elm_Web_Menu_Item;
13602    /**
13603     * Structure describing the items in a menu
13604     */
13605    struct _Elm_Web_Menu_Item
13606      {
13607         const char *text; /**< The text for the item */
13608         Elm_Web_Menu_Item_Type type; /**< The type of the item */
13609      };
13610
13611    /**
13612     * Structure describing the menu of a popup
13613     *
13614     * This structure will be passed as the @c event_info for the "popup,create"
13615     * signal, which is emitted when a dropdown menu is opened. Users wanting
13616     * to handle these popups by themselves should listen to this signal and
13617     * set the @c handled property of the struct to @c EINA_TRUE. Leaving this
13618     * property as @c EINA_FALSE means that the user will not handle the popup
13619     * and the default implementation will be used.
13620     *
13621     * When the popup is ready to be dismissed, a "popup,willdelete" signal
13622     * will be emitted to notify the user that it can destroy any objects and
13623     * free all data related to it.
13624     *
13625     * @see elm_web_popup_selected_set()
13626     * @see elm_web_popup_destroy()
13627     */
13628    typedef struct _Elm_Web_Menu Elm_Web_Menu;
13629    /**
13630     * Structure describing the menu of a popup
13631     *
13632     * This structure will be passed as the @c event_info for the "popup,create"
13633     * signal, which is emitted when a dropdown menu is opened. Users wanting
13634     * to handle these popups by themselves should listen to this signal and
13635     * set the @c handled property of the struct to @c EINA_TRUE. Leaving this
13636     * property as @c EINA_FALSE means that the user will not handle the popup
13637     * and the default implementation will be used.
13638     *
13639     * When the popup is ready to be dismissed, a "popup,willdelete" signal
13640     * will be emitted to notify the user that it can destroy any objects and
13641     * free all data related to it.
13642     *
13643     * @see elm_web_popup_selected_set()
13644     * @see elm_web_popup_destroy()
13645     */
13646    struct _Elm_Web_Menu
13647      {
13648         Eina_List *items; /**< List of #Elm_Web_Menu_Item */
13649         int x; /**< The X position of the popup, relative to the elm_web object */
13650         int y; /**< The Y position of the popup, relative to the elm_web object */
13651         int width; /**< Width of the popup menu */
13652         int height; /**< Height of the popup menu */
13653
13654         Eina_Bool handled : 1; /**< Set to @c EINA_TRUE by the user to indicate that the popup has been handled and the default implementation should be ignored. Leave as @c EINA_FALSE otherwise. */
13655      };
13656
13657    typedef struct _Elm_Web_Download Elm_Web_Download;
13658    struct _Elm_Web_Download
13659      {
13660         const char *url;
13661      };
13662
13663    /**
13664     * Types of zoom available.
13665     */
13666    typedef enum _Elm_Web_Zoom_Mode
13667      {
13668         ELM_WEB_ZOOM_MODE_MANUAL = 0, /**< Zoom controlled normally by elm_web_zoom_set */
13669         ELM_WEB_ZOOM_MODE_AUTO_FIT, /**< Zoom until content fits in web object */
13670         ELM_WEB_ZOOM_MODE_AUTO_FILL, /**< Zoom until content fills web object */
13671         ELM_WEB_ZOOM_MODE_LAST
13672      } Elm_Web_Zoom_Mode;
13673    /**
13674     * Opaque handler containing the features (such as statusbar, menubar, etc)
13675     * that are to be set on a newly requested window.
13676     */
13677    typedef struct _Elm_Web_Window_Features Elm_Web_Window_Features;
13678    /**
13679     * Callback type for the create_window hook.
13680     *
13681     * The function parameters are:
13682     * @li @p data User data pointer set when setting the hook function
13683     * @li @p obj The elm_web object requesting the new window
13684     * @li @p js Set to @c EINA_TRUE if the request was originated from
13685     * JavaScript. @c EINA_FALSE otherwise.
13686     * @li @p window_features A pointer of #Elm_Web_Window_Features indicating
13687     * the features requested for the new window.
13688     *
13689     * The returned value of the function should be the @c elm_web widget where
13690     * the request will be loaded. That is, if a new window or tab is created,
13691     * the elm_web widget in it should be returned, and @b NOT the window
13692     * object.
13693     * Returning @c NULL should cancel the request.
13694     *
13695     * @see elm_web_window_create_hook_set()
13696     */
13697    typedef Evas_Object *(*Elm_Web_Window_Open)(void *data, Evas_Object *obj, Eina_Bool js, const Elm_Web_Window_Features *window_features);
13698    /**
13699     * Callback type for the JS alert hook.
13700     *
13701     * The function parameters are:
13702     * @li @p data User data pointer set when setting the hook function
13703     * @li @p obj The elm_web object requesting the new window
13704     * @li @p message The message to show in the alert dialog
13705     *
13706     * The function should return the object representing the alert dialog.
13707     * Elm_Web will run a second main loop to handle the dialog and normal
13708     * flow of the application will be restored when the object is deleted, so
13709     * the user should handle the popup properly in order to delete the object
13710     * when the action is finished.
13711     * If the function returns @c NULL the popup will be ignored.
13712     *
13713     * @see elm_web_dialog_alert_hook_set()
13714     */
13715    typedef Evas_Object *(*Elm_Web_Dialog_Alert)(void *data, Evas_Object *obj, const char *message);
13716    /**
13717     * Callback type for the JS confirm hook.
13718     *
13719     * The function parameters are:
13720     * @li @p data User data pointer set when setting the hook function
13721     * @li @p obj The elm_web object requesting the new window
13722     * @li @p message The message to show in the confirm dialog
13723     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13724     * the user selected @c Ok, @c EINA_FALSE otherwise.
13725     *
13726     * The function should return the object representing the confirm dialog.
13727     * Elm_Web will run a second main loop to handle the dialog and normal
13728     * flow of the application will be restored when the object is deleted, so
13729     * the user should handle the popup properly in order to delete the object
13730     * when the action is finished.
13731     * If the function returns @c NULL the popup will be ignored.
13732     *
13733     * @see elm_web_dialog_confirm_hook_set()
13734     */
13735    typedef Evas_Object *(*Elm_Web_Dialog_Confirm)(void *data, Evas_Object *obj, const char *message, Eina_Bool *ret);
13736    /**
13737     * Callback type for the JS prompt hook.
13738     *
13739     * The function parameters are:
13740     * @li @p data User data pointer set when setting the hook function
13741     * @li @p obj The elm_web object requesting the new window
13742     * @li @p message The message to show in the prompt dialog
13743     * @li @p def_value The default value to present the user in the entry
13744     * @li @p value Pointer where to store the value given by the user. Must
13745     * be a malloc'ed string or @c NULL if the user cancelled the popup.
13746     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13747     * the user selected @c Ok, @c EINA_FALSE otherwise.
13748     *
13749     * The function should return the object representing the prompt dialog.
13750     * Elm_Web will run a second main loop to handle the dialog and normal
13751     * flow of the application will be restored when the object is deleted, so
13752     * the user should handle the popup properly in order to delete the object
13753     * when the action is finished.
13754     * If the function returns @c NULL the popup will be ignored.
13755     *
13756     * @see elm_web_dialog_prompt_hook_set()
13757     */
13758    typedef Evas_Object *(*Elm_Web_Dialog_Prompt)(void *data, Evas_Object *obj, const char *message, const char *def_value, char **value, Eina_Bool *ret);
13759    /**
13760     * Callback type for the JS file selector hook.
13761     *
13762     * The function parameters are:
13763     * @li @p data User data pointer set when setting the hook function
13764     * @li @p obj The elm_web object requesting the new window
13765     * @li @p allows_multiple @c EINA_TRUE if multiple files can be selected.
13766     * @li @p accept_types Mime types accepted
13767     * @li @p selected Pointer where to store the list of malloc'ed strings
13768     * containing the path to each file selected. Must be @c NULL if the file
13769     * dialog is cancelled
13770     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13771     * the user selected @c Ok, @c EINA_FALSE otherwise.
13772     *
13773     * The function should return the object representing the file selector
13774     * dialog.
13775     * Elm_Web will run a second main loop to handle the dialog and normal
13776     * flow of the application will be restored when the object is deleted, so
13777     * the user should handle the popup properly in order to delete the object
13778     * when the action is finished.
13779     * If the function returns @c NULL the popup will be ignored.
13780     *
13781     * @see elm_web_dialog_file selector_hook_set()
13782     */
13783    typedef Evas_Object *(*Elm_Web_Dialog_File_Selector)(void *data, Evas_Object *obj, Eina_Bool allows_multiple, Eina_List *accept_types, Eina_List **selected, Eina_Bool *ret);
13784    /**
13785     * Callback type for the JS console message hook.
13786     *
13787     * When a console message is added from JavaScript, any set function to the
13788     * console message hook will be called for the user to handle. There is no
13789     * default implementation of this hook.
13790     *
13791     * The function parameters are:
13792     * @li @p data User data pointer set when setting the hook function
13793     * @li @p obj The elm_web object that originated the message
13794     * @li @p message The message sent
13795     * @li @p line_number The line number
13796     * @li @p source_id Source id
13797     *
13798     * @see elm_web_console_message_hook_set()
13799     */
13800    typedef void (*Elm_Web_Console_Message)(void *data, Evas_Object *obj, const char *message, unsigned int line_number, const char *source_id);
13801    /**
13802     * Add a new web object to the parent.
13803     *
13804     * @param parent The parent object.
13805     * @return The new object or NULL if it cannot be created.
13806     *
13807     * @see elm_web_uri_set()
13808     * @see elm_web_webkit_view_get()
13809     */
13810    EAPI Evas_Object                 *elm_web_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13811
13812    /**
13813     * Get internal ewk_view object from web object.
13814     *
13815     * Elementary may not provide some low level features of EWebKit,
13816     * instead of cluttering the API with proxy methods we opted to
13817     * return the internal reference. Be careful using it as it may
13818     * interfere with elm_web behavior.
13819     *
13820     * @param obj The web object.
13821     * @return The internal ewk_view object or NULL if it does not
13822     *         exist. (Failure to create or Elementary compiled without
13823     *         ewebkit)
13824     *
13825     * @see elm_web_add()
13826     */
13827    EAPI Evas_Object                 *elm_web_webkit_view_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13828
13829    /**
13830     * Sets the function to call when a new window is requested
13831     *
13832     * This hook will be called when a request to create a new window is
13833     * issued from the web page loaded.
13834     * There is no default implementation for this feature, so leaving this
13835     * unset or passing @c NULL in @p func will prevent new windows from
13836     * opening.
13837     *
13838     * @param obj The web object where to set the hook function
13839     * @param func The hook function to be called when a window is requested
13840     * @param data User data
13841     */
13842    EAPI void                         elm_web_window_create_hook_set(Evas_Object *obj, Elm_Web_Window_Open func, void *data);
13843    /**
13844     * Sets the function to call when an alert dialog
13845     *
13846     * This hook will be called when a JavaScript alert dialog is requested.
13847     * If no function is set or @c NULL is passed in @p func, the default
13848     * implementation will take place.
13849     *
13850     * @param obj The web object where to set the hook function
13851     * @param func The callback function to be used
13852     * @param data User data
13853     *
13854     * @see elm_web_inwin_mode_set()
13855     */
13856    EAPI void                         elm_web_dialog_alert_hook_set(Evas_Object *obj, Elm_Web_Dialog_Alert func, void *data);
13857    /**
13858     * Sets the function to call when an confirm dialog
13859     *
13860     * This hook will be called when a JavaScript confirm dialog is requested.
13861     * If no function is set or @c NULL is passed in @p func, the default
13862     * implementation will take place.
13863     *
13864     * @param obj The web object where to set the hook function
13865     * @param func The callback function to be used
13866     * @param data User data
13867     *
13868     * @see elm_web_inwin_mode_set()
13869     */
13870    EAPI void                         elm_web_dialog_confirm_hook_set(Evas_Object *obj, Elm_Web_Dialog_Confirm func, void *data);
13871    /**
13872     * Sets the function to call when an prompt dialog
13873     *
13874     * This hook will be called when a JavaScript prompt dialog is requested.
13875     * If no function is set or @c NULL is passed in @p func, the default
13876     * implementation will take place.
13877     *
13878     * @param obj The web object where to set the hook function
13879     * @param func The callback function to be used
13880     * @param data User data
13881     *
13882     * @see elm_web_inwin_mode_set()
13883     */
13884    EAPI void                         elm_web_dialog_prompt_hook_set(Evas_Object *obj, Elm_Web_Dialog_Prompt func, void *data);
13885    /**
13886     * Sets the function to call when an file selector dialog
13887     *
13888     * This hook will be called when a JavaScript file selector dialog is
13889     * requested.
13890     * If no function is set or @c NULL is passed in @p func, the default
13891     * implementation will take place.
13892     *
13893     * @param obj The web object where to set the hook function
13894     * @param func The callback function to be used
13895     * @param data User data
13896     *
13897     * @see elm_web_inwin_mode_set()
13898     */
13899    EAPI void                         elm_web_dialog_file_selector_hook_set(Evas_Object *obj, Elm_Web_Dialog_File_Selector func, void *data);
13900    /**
13901     * Sets the function to call when a console message is emitted from JS
13902     *
13903     * This hook will be called when a console message is emitted from
13904     * JavaScript. There is no default implementation for this feature.
13905     *
13906     * @param obj The web object where to set the hook function
13907     * @param func The callback function to be used
13908     * @param data User data
13909     */
13910    EAPI void                         elm_web_console_message_hook_set(Evas_Object *obj, Elm_Web_Console_Message func, void *data);
13911    /**
13912     * Gets the status of the tab propagation
13913     *
13914     * @param obj The web object to query
13915     * @return EINA_TRUE if tab propagation is enabled, EINA_FALSE otherwise
13916     *
13917     * @see elm_web_tab_propagate_set()
13918     */
13919    EAPI Eina_Bool                    elm_web_tab_propagate_get(const Evas_Object *obj);
13920    /**
13921     * Sets whether to use tab propagation
13922     *
13923     * If tab propagation is enabled, whenever the user presses the Tab key,
13924     * Elementary will handle it and switch focus to the next widget.
13925     * The default value is disabled, where WebKit will handle the Tab key to
13926     * cycle focus though its internal objects, jumping to the next widget
13927     * only when that cycle ends.
13928     *
13929     * @param obj The web object
13930     * @param propagate Whether to propagate Tab keys to Elementary or not
13931     */
13932    EAPI void                         elm_web_tab_propagate_set(Evas_Object *obj, Eina_Bool propagate);
13933    /**
13934     * Sets the URI for the web object
13935     *
13936     * It must be a full URI, with resource included, in the form
13937     * http://www.enlightenment.org or file:///tmp/something.html
13938     *
13939     * @param obj The web object
13940     * @param uri The URI to set
13941     * @return EINA_TRUE if the URI could be, EINA_FALSE if an error occurred
13942     */
13943    EAPI Eina_Bool                    elm_web_uri_set(Evas_Object *obj, const char *uri);
13944    /**
13945     * Gets the current URI for the object
13946     *
13947     * The returned string must not be freed and is guaranteed to be
13948     * stringshared.
13949     *
13950     * @param obj The web object
13951     * @return A stringshared internal string with the current URI, or NULL on
13952     * failure
13953     */
13954    EAPI const char                  *elm_web_uri_get(const Evas_Object *obj);
13955    /**
13956     * Gets the current title
13957     *
13958     * The returned string must not be freed and is guaranteed to be
13959     * stringshared.
13960     *
13961     * @param obj The web object
13962     * @return A stringshared internal string with the current title, or NULL on
13963     * failure
13964     */
13965    EAPI const char                  *elm_web_title_get(const Evas_Object *obj);
13966    /**
13967     * Sets the background color to be used by the web object
13968     *
13969     * This is the color that will be used by default when the loaded page
13970     * does not set it's own. Color values are pre-multiplied.
13971     *
13972     * @param obj The web object
13973     * @param r Red component
13974     * @param g Green component
13975     * @param b Blue component
13976     * @param a Alpha component
13977     */
13978    EAPI void                         elm_web_bg_color_set(Evas_Object *obj, int r, int g, int b, int a);
13979    /**
13980     * Gets the background color to be used by the web object
13981     *
13982     * This is the color that will be used by default when the loaded page
13983     * does not set it's own. Color values are pre-multiplied.
13984     *
13985     * @param obj The web object
13986     * @param r Red component
13987     * @param g Green component
13988     * @param b Blue component
13989     * @param a Alpha component
13990     */
13991    EAPI void                         elm_web_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b, int *a);
13992    /**
13993     * Gets a copy of the currently selected text
13994     *
13995     * The string returned must be freed by the user when it's done with it.
13996     *
13997     * @param obj The web object
13998     * @return A newly allocated string, or NULL if nothing is selected or an
13999     * error occurred
14000     */
14001    EAPI char                        *elm_view_selection_get(const Evas_Object *obj);
14002    /**
14003     * Tells the web object which index in the currently open popup was selected
14004     *
14005     * When the user handles the popup creation from the "popup,created" signal,
14006     * it needs to tell the web object which item was selected by calling this
14007     * function with the index corresponding to the item.
14008     *
14009     * @param obj The web object
14010     * @param index The index selected
14011     *
14012     * @see elm_web_popup_destroy()
14013     */
14014    EAPI void                         elm_web_popup_selected_set(Evas_Object *obj, int index);
14015    /**
14016     * Dismisses an open dropdown popup
14017     *
14018     * When the popup from a dropdown widget is to be dismissed, either after
14019     * selecting an option or to cancel it, this function must be called, which
14020     * will later emit an "popup,willdelete" signal to notify the user that
14021     * any memory and objects related to this popup can be freed.
14022     *
14023     * @param obj The web object
14024     * @return EINA_TRUE if the menu was successfully destroyed, or EINA_FALSE
14025     * if there was no menu to destroy
14026     */
14027    EAPI Eina_Bool                    elm_web_popup_destroy(Evas_Object *obj);
14028    /**
14029     * Searches the given string in a document.
14030     *
14031     * @param obj The web object where to search the text
14032     * @param string String to search
14033     * @param case_sensitive If search should be case sensitive or not
14034     * @param forward If search is from cursor and on or backwards
14035     * @param wrap If search should wrap at the end
14036     *
14037     * @return @c EINA_TRUE if the given string was found, @c EINA_FALSE if not
14038     * or failure
14039     */
14040    EAPI Eina_Bool                    elm_web_text_search(const Evas_Object *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap);
14041    /**
14042     * Marks matches of the given string in a document.
14043     *
14044     * @param obj The web object where to search text
14045     * @param string String to match
14046     * @param case_sensitive If match should be case sensitive or not
14047     * @param highlight If matches should be highlighted
14048     * @param limit Maximum amount of matches, or zero to unlimited
14049     *
14050     * @return number of matched @a string
14051     */
14052    EAPI unsigned int                 elm_web_text_matches_mark(Evas_Object *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit);
14053    /**
14054     * Clears all marked matches in the document
14055     *
14056     * @param obj The web object
14057     *
14058     * @return EINA_TRUE on success, EINA_FALSE otherwise
14059     */
14060    EAPI Eina_Bool                    elm_web_text_matches_unmark_all(Evas_Object *obj);
14061    /**
14062     * Sets whether to highlight the matched marks
14063     *
14064     * If enabled, marks set with elm_web_text_matches_mark() will be
14065     * highlighted.
14066     *
14067     * @param obj The web object
14068     * @param highlight Whether to highlight the marks or not
14069     *
14070     * @return EINA_TRUE on success, EINA_FALSE otherwise
14071     */
14072    EAPI Eina_Bool                    elm_web_text_matches_highlight_set(Evas_Object *obj, Eina_Bool highlight);
14073    /**
14074     * Gets whether highlighting marks is enabled
14075     *
14076     * @param The web object
14077     *
14078     * @return EINA_TRUE is marks are set to be highlighted, EINA_FALSE
14079     * otherwise
14080     */
14081    EAPI Eina_Bool                    elm_web_text_matches_highlight_get(const Evas_Object *obj);
14082    /**
14083     * Gets the overall loading progress of the page
14084     *
14085     * Returns the estimated loading progress of the page, with a value between
14086     * 0.0 and 1.0. This is an estimated progress accounting for all the frames
14087     * included in the page.
14088     *
14089     * @param The web object
14090     *
14091     * @return A value between 0.0 and 1.0 indicating the progress, or -1.0 on
14092     * failure
14093     */
14094    EAPI double                       elm_web_load_progress_get(const Evas_Object *obj);
14095    /**
14096     * Stops loading the current page
14097     *
14098     * Cancels the loading of the current page in the web object. This will
14099     * cause a "load,error" signal to be emitted, with the is_cancellation
14100     * flag set to EINA_TRUE.
14101     *
14102     * @param obj The web object
14103     *
14104     * @return EINA_TRUE if the cancel was successful, EINA_FALSE otherwise
14105     */
14106    EAPI Eina_Bool                    elm_web_stop(Evas_Object *obj);
14107    /**
14108     * Requests a reload of the current document in the object
14109     *
14110     * @param obj The web object
14111     *
14112     * @return EINA_TRUE on success, EINA_FALSE otherwise
14113     */
14114    EAPI Eina_Bool                    elm_web_reload(Evas_Object *obj);
14115    /**
14116     * Requests a reload of the current document, avoiding any existing caches
14117     *
14118     * @param obj The web object
14119     *
14120     * @return EINA_TRUE on success, EINA_FALSE otherwise
14121     */
14122    EAPI Eina_Bool                    elm_web_reload_full(Evas_Object *obj);
14123    /**
14124     * Goes back one step in the browsing history
14125     *
14126     * This is equivalent to calling elm_web_object_navigate(obj, -1);
14127     *
14128     * @param obj The web object
14129     *
14130     * @return EINA_TRUE on success, EINA_FALSE otherwise
14131     *
14132     * @see elm_web_history_enable_set()
14133     * @see elm_web_back_possible()
14134     * @see elm_web_forward()
14135     * @see elm_web_navigate()
14136     */
14137    EAPI Eina_Bool                    elm_web_back(Evas_Object *obj);
14138    /**
14139     * Goes forward one step in the browsing history
14140     *
14141     * This is equivalent to calling elm_web_object_navigate(obj, 1);
14142     *
14143     * @param obj The web object
14144     *
14145     * @return EINA_TRUE on success, EINA_FALSE otherwise
14146     *
14147     * @see elm_web_history_enable_set()
14148     * @see elm_web_forward_possible()
14149     * @see elm_web_back()
14150     * @see elm_web_navigate()
14151     */
14152    EAPI Eina_Bool                    elm_web_forward(Evas_Object *obj);
14153    /**
14154     * Jumps the given number of steps in the browsing history
14155     *
14156     * The @p steps value can be a negative integer to back in history, or a
14157     * positive to move forward.
14158     *
14159     * @param obj The web object
14160     * @param steps The number of steps to jump
14161     *
14162     * @return EINA_TRUE on success, EINA_FALSE on error or if not enough
14163     * history exists to jump the given number of steps
14164     *
14165     * @see elm_web_history_enable_set()
14166     * @see elm_web_navigate_possible()
14167     * @see elm_web_back()
14168     * @see elm_web_forward()
14169     */
14170    EAPI Eina_Bool                    elm_web_navigate(Evas_Object *obj, int steps);
14171    /**
14172     * Queries whether it's possible to go back in history
14173     *
14174     * @param obj The web object
14175     *
14176     * @return EINA_TRUE if it's possible to back in history, EINA_FALSE
14177     * otherwise
14178     */
14179    EAPI Eina_Bool                    elm_web_back_possible(Evas_Object *obj);
14180    /**
14181     * Queries whether it's possible to go forward in history
14182     *
14183     * @param obj The web object
14184     *
14185     * @return EINA_TRUE if it's possible to forward in history, EINA_FALSE
14186     * otherwise
14187     */
14188    EAPI Eina_Bool                    elm_web_forward_possible(Evas_Object *obj);
14189    /**
14190     * Queries whether it's possible to jump the given number of steps
14191     *
14192     * The @p steps value can be a negative integer to back in history, or a
14193     * positive to move forward.
14194     *
14195     * @param obj The web object
14196     * @param steps The number of steps to check for
14197     *
14198     * @return EINA_TRUE if enough history exists to perform the given jump,
14199     * EINA_FALSE otherwise
14200     */
14201    EAPI Eina_Bool                    elm_web_navigate_possible(Evas_Object *obj, int steps);
14202    /**
14203     * Gets whether browsing history is enabled for the given object
14204     *
14205     * @param obj The web object
14206     *
14207     * @return EINA_TRUE if history is enabled, EINA_FALSE otherwise
14208     */
14209    EAPI Eina_Bool                    elm_web_history_enable_get(const Evas_Object *obj);
14210    /**
14211     * Enables or disables the browsing history
14212     *
14213     * @param obj The web object
14214     * @param enable Whether to enable or disable the browsing history
14215     */
14216    EAPI void                         elm_web_history_enable_set(Evas_Object *obj, Eina_Bool enable);
14217    /**
14218     * Sets the zoom level of the web object
14219     *
14220     * Zoom level matches the Webkit API, so 1.0 means normal zoom, with higher
14221     * values meaning zoom in and lower meaning zoom out. This function will
14222     * only affect the zoom level if the mode set with elm_web_zoom_mode_set()
14223     * is ::ELM_WEB_ZOOM_MODE_MANUAL.
14224     *
14225     * @param obj The web object
14226     * @param zoom The zoom level to set
14227     */
14228    EAPI void                         elm_web_zoom_set(Evas_Object *obj, double zoom);
14229    /**
14230     * Gets the current zoom level set on the web object
14231     *
14232     * Note that this is the zoom level set on the web object and not that
14233     * of the underlying Webkit one. In the ::ELM_WEB_ZOOM_MODE_MANUAL mode,
14234     * the two zoom levels should match, but for the other two modes the
14235     * Webkit zoom is calculated internally to match the chosen mode without
14236     * changing the zoom level set for the web object.
14237     *
14238     * @param obj The web object
14239     *
14240     * @return The zoom level set on the object
14241     */
14242    EAPI double                       elm_web_zoom_get(const Evas_Object *obj);
14243    /**
14244     * Sets the zoom mode to use
14245     *
14246     * The modes can be any of those defined in ::Elm_Web_Zoom_Mode, except
14247     * ::ELM_WEB_ZOOM_MODE_LAST. The default is ::ELM_WEB_ZOOM_MODE_MANUAL.
14248     *
14249     * ::ELM_WEB_ZOOM_MODE_MANUAL means the zoom level will be controlled
14250     * with the elm_web_zoom_set() function.
14251     * ::ELM_WEB_ZOOM_MODE_AUTO_FIT will calculate the needed zoom level to
14252     * make sure the entirety of the web object's contents are shown.
14253     * ::ELM_WEB_ZOOM_MODE_AUTO_FILL will calculate the needed zoom level to
14254     * fit the contents in the web object's size, without leaving any space
14255     * unused.
14256     *
14257     * @param obj The web object
14258     * @param mode The mode to set
14259     */
14260    EAPI void                         elm_web_zoom_mode_set(Evas_Object *obj, Elm_Web_Zoom_Mode mode);
14261    /**
14262     * Gets the currently set zoom mode
14263     *
14264     * @param obj The web object
14265     *
14266     * @return The current zoom mode set for the object, or
14267     * ::ELM_WEB_ZOOM_MODE_LAST on error
14268     */
14269    EAPI Elm_Web_Zoom_Mode            elm_web_zoom_mode_get(const Evas_Object *obj);
14270    /**
14271     * Shows the given region in the web object
14272     *
14273     * @param obj The web object
14274     * @param x The x coordinate of the region to show
14275     * @param y The y coordinate of the region to show
14276     * @param w The width of the region to show
14277     * @param h The height of the region to show
14278     */
14279    EAPI void                         elm_web_region_show(Evas_Object *obj, int x, int y, int w, int h);
14280    /**
14281     * Brings in the region to the visible area
14282     *
14283     * Like elm_web_region_show(), but it animates the scrolling of the object
14284     * to show the area
14285     *
14286     * @param obj The web object
14287     * @param x The x coordinate of the region to show
14288     * @param y The y coordinate of the region to show
14289     * @param w The width of the region to show
14290     * @param h The height of the region to show
14291     */
14292    EAPI void                         elm_web_region_bring_in(Evas_Object *obj, int x, int y, int w, int h);
14293    /**
14294     * Sets the default dialogs to use an Inwin instead of a normal window
14295     *
14296     * If set, then the default implementation for the JavaScript dialogs and
14297     * file selector will be opened in an Inwin. Otherwise they will use a
14298     * normal separated window.
14299     *
14300     * @param obj The web object
14301     * @param value EINA_TRUE to use Inwin, EINA_FALSE to use a normal window
14302     */
14303    EAPI void                         elm_web_inwin_mode_set(Evas_Object *obj, Eina_Bool value);
14304    /**
14305     * Gets whether Inwin mode is set for the current object
14306     *
14307     * @param obj The web object
14308     *
14309     * @return EINA_TRUE if Inwin mode is set, EINA_FALSE otherwise
14310     */
14311    EAPI Eina_Bool                    elm_web_inwin_mode_get(const Evas_Object *obj);
14312
14313    EAPI void                         elm_web_window_features_ref(Elm_Web_Window_Features *wf);
14314    EAPI void                         elm_web_window_features_unref(Elm_Web_Window_Features *wf);
14315    EAPI void                         elm_web_window_features_bool_property_get(const Elm_Web_Window_Features *wf, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visble, Eina_Bool *fullscreen);
14316    EAPI void                         elm_web_window_features_int_property_get(const Elm_Web_Window_Features *wf, int *x, int *y, int *w, int *h);
14317
14318    /**
14319     * @}
14320     */
14321
14322    /**
14323     * @defgroup Hoversel Hoversel
14324     *
14325     * @image html img/widget/hoversel/preview-00.png
14326     * @image latex img/widget/hoversel/preview-00.eps
14327     *
14328     * A hoversel is a button that pops up a list of items (automatically
14329     * choosing the direction to display) that have a label and, optionally, an
14330     * icon to select from. It is a convenience widget to avoid the need to do
14331     * all the piecing together yourself. It is intended for a small number of
14332     * items in the hoversel menu (no more than 8), though is capable of many
14333     * more.
14334     *
14335     * Signals that you can add callbacks for are:
14336     * "clicked" - the user clicked the hoversel button and popped up the sel
14337     * "selected" - an item in the hoversel list is selected. event_info is the item
14338     * "dismissed" - the hover is dismissed
14339     *
14340     * See @ref tutorial_hoversel for an example.
14341     * @{
14342     */
14343    typedef struct _Elm_Hoversel_Item Elm_Hoversel_Item; /**< Item of Elm_Hoversel. Sub-type of Elm_Widget_Item */
14344    /**
14345     * @brief Add a new Hoversel object
14346     *
14347     * @param parent The parent object
14348     * @return The new object or NULL if it cannot be created
14349     */
14350    EAPI Evas_Object       *elm_hoversel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14351    /**
14352     * @brief This sets the hoversel to expand horizontally.
14353     *
14354     * @param obj The hoversel object
14355     * @param horizontal If true, the hover will expand horizontally to the
14356     * right.
14357     *
14358     * @note The initial button will display horizontally regardless of this
14359     * setting.
14360     */
14361    EAPI void               elm_hoversel_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
14362    /**
14363     * @brief This returns whether the hoversel is set to expand horizontally.
14364     *
14365     * @param obj The hoversel object
14366     * @return If true, the hover will expand horizontally to the right.
14367     *
14368     * @see elm_hoversel_horizontal_set()
14369     */
14370    EAPI Eina_Bool          elm_hoversel_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14371    /**
14372     * @brief Set the Hover parent
14373     *
14374     * @param obj The hoversel object
14375     * @param parent The parent to use
14376     *
14377     * Sets the hover parent object, the area that will be darkened when the
14378     * hoversel is clicked. Should probably be the window that the hoversel is
14379     * in. See @ref Hover objects for more information.
14380     */
14381    EAPI void               elm_hoversel_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
14382    /**
14383     * @brief Get the Hover parent
14384     *
14385     * @param obj The hoversel object
14386     * @return The used parent
14387     *
14388     * Gets the hover parent object.
14389     *
14390     * @see elm_hoversel_hover_parent_set()
14391     */
14392    EAPI Evas_Object       *elm_hoversel_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14393    /**
14394     * @brief Set the hoversel button label
14395     *
14396     * @param obj The hoversel object
14397     * @param label The label text.
14398     *
14399     * This sets the label of the button that is always visible (before it is
14400     * clicked and expanded).
14401     *
14402     * @deprecated elm_object_text_set()
14403     */
14404    EINA_DEPRECATED EAPI void               elm_hoversel_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
14405    /**
14406     * @brief Get the hoversel button label
14407     *
14408     * @param obj The hoversel object
14409     * @return The label text.
14410     *
14411     * @deprecated elm_object_text_get()
14412     */
14413    EINA_DEPRECATED EAPI const char        *elm_hoversel_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14414    /**
14415     * @brief Set the icon of the hoversel button
14416     *
14417     * @param obj The hoversel object
14418     * @param icon The icon object
14419     *
14420     * Sets the icon of the button that is always visible (before it is clicked
14421     * and expanded).  Once the icon object is set, a previously set one will be
14422     * deleted, if you want to keep that old content object, use the
14423     * elm_hoversel_icon_unset() function.
14424     *
14425     * @see elm_object_content_set() for the button widget
14426     */
14427    EAPI void               elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
14428    /**
14429     * @brief Get the icon of the hoversel button
14430     *
14431     * @param obj The hoversel object
14432     * @return The icon object
14433     *
14434     * Get the icon of the button that is always visible (before it is clicked
14435     * and expanded). Also see elm_object_content_get() for the button widget.
14436     *
14437     * @see elm_hoversel_icon_set()
14438     */
14439    EAPI Evas_Object       *elm_hoversel_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14440    /**
14441     * @brief Get and unparent the icon of the hoversel button
14442     *
14443     * @param obj The hoversel object
14444     * @return The icon object that was being used
14445     *
14446     * Unparent and return the icon of the button that is always visible
14447     * (before it is clicked and expanded).
14448     *
14449     * @see elm_hoversel_icon_set()
14450     * @see elm_object_content_unset() for the button widget
14451     */
14452    EAPI Evas_Object       *elm_hoversel_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14453    /**
14454     * @brief This triggers the hoversel popup from code, the same as if the user
14455     * had clicked the button.
14456     *
14457     * @param obj The hoversel object
14458     */
14459    EAPI void               elm_hoversel_hover_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
14460    /**
14461     * @brief This dismisses the hoversel popup as if the user had clicked
14462     * outside the hover.
14463     *
14464     * @param obj The hoversel object
14465     */
14466    EAPI void               elm_hoversel_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
14467    /**
14468     * @brief Returns whether the hoversel is expanded.
14469     *
14470     * @param obj The hoversel object
14471     * @return  This will return EINA_TRUE if the hoversel is expanded or
14472     * EINA_FALSE if it is not expanded.
14473     */
14474    EAPI Eina_Bool          elm_hoversel_expanded_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14475    /**
14476     * @brief This will remove all the children items from the hoversel.
14477     *
14478     * @param obj The hoversel object
14479     *
14480     * @warning Should @b not be called while the hoversel is active; use
14481     * elm_hoversel_expanded_get() to check first.
14482     *
14483     * @see elm_hoversel_item_del_cb_set()
14484     * @see elm_hoversel_item_del()
14485     */
14486    EAPI void               elm_hoversel_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
14487    /**
14488     * @brief Get the list of items within the given hoversel.
14489     *
14490     * @param obj The hoversel object
14491     * @return Returns a list of Elm_Hoversel_Item*
14492     *
14493     * @see elm_hoversel_item_add()
14494     */
14495    EAPI const Eina_List   *elm_hoversel_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14496    /**
14497     * @brief Add an item to the hoversel button
14498     *
14499     * @param obj The hoversel object
14500     * @param label The text label to use for the item (NULL if not desired)
14501     * @param icon_file An image file path on disk to use for the icon or standard
14502     * icon name (NULL if not desired)
14503     * @param icon_type The icon type if relevant
14504     * @param func Convenience function to call when this item is selected
14505     * @param data Data to pass to item-related functions
14506     * @return A handle to the item added.
14507     *
14508     * This adds an item to the hoversel to show when it is clicked. Note: if you
14509     * need to use an icon from an edje file then use
14510     * elm_hoversel_item_icon_set() right after the this function, and set
14511     * icon_file to NULL here.
14512     *
14513     * For more information on what @p icon_file and @p icon_type are see the
14514     * @ref Icon "icon documentation".
14515     */
14516    EAPI Elm_Hoversel_Item *elm_hoversel_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14517    /**
14518     * @brief Delete an item from the hoversel
14519     *
14520     * @param item The item to delete
14521     *
14522     * This deletes the item from the hoversel (should not be called while the
14523     * hoversel is active; use elm_hoversel_expanded_get() to check first).
14524     *
14525     * @see elm_hoversel_item_add()
14526     * @see elm_hoversel_item_del_cb_set()
14527     */
14528    EAPI void               elm_hoversel_item_del(Elm_Hoversel_Item *item) EINA_ARG_NONNULL(1);
14529    /**
14530     * @brief Set the function to be called when an item from the hoversel is
14531     * freed.
14532     *
14533     * @param item The item to set the callback on
14534     * @param func The function called
14535     *
14536     * That function will receive these parameters:
14537     * @li void *item_data
14538     * @li Evas_Object *the_item_object
14539     * @li Elm_Hoversel_Item *the_object_struct
14540     *
14541     * @see elm_hoversel_item_add()
14542     */
14543    EAPI void               elm_hoversel_item_del_cb_set(Elm_Hoversel_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
14544    /**
14545     * @brief This returns the data pointer supplied with elm_hoversel_item_add()
14546     * that will be passed to associated function callbacks.
14547     *
14548     * @param item The item to get the data from
14549     * @return The data pointer set with elm_hoversel_item_add()
14550     *
14551     * @see elm_hoversel_item_add()
14552     */
14553    EAPI void              *elm_hoversel_item_data_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
14554    /**
14555     * @brief This returns the label text of the given hoversel item.
14556     *
14557     * @param item The item to get the label
14558     * @return The label text of the hoversel item
14559     *
14560     * @see elm_hoversel_item_add()
14561     */
14562    EAPI const char        *elm_hoversel_item_label_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
14563    /**
14564     * @brief This sets the icon for the given hoversel item.
14565     *
14566     * @param item The item to set the icon
14567     * @param icon_file An image file path on disk to use for the icon or standard
14568     * icon name
14569     * @param icon_group The edje group to use if @p icon_file is an edje file. Set this
14570     * to NULL if the icon is not an edje file
14571     * @param icon_type The icon type
14572     *
14573     * The icon can be loaded from the standard set, from an image file, or from
14574     * an edje file.
14575     *
14576     * @see elm_hoversel_item_add()
14577     */
14578    EAPI void               elm_hoversel_item_icon_set(Elm_Hoversel_Item *it, const char *icon_file, const char *icon_group, Elm_Icon_Type icon_type) EINA_ARG_NONNULL(1);
14579    /**
14580     * @brief Get the icon object of the hoversel item
14581     *
14582     * @param item The item to get the icon from
14583     * @param icon_file The image file path on disk used for the icon or standard
14584     * icon name
14585     * @param icon_group The edje group used if @p icon_file is an edje file. NULL
14586     * if the icon is not an edje file
14587     * @param icon_type The icon type
14588     *
14589     * @see elm_hoversel_item_icon_set()
14590     * @see elm_hoversel_item_add()
14591     */
14592    EAPI void               elm_hoversel_item_icon_get(const Elm_Hoversel_Item *it, const char **icon_file, const char **icon_group, Elm_Icon_Type *icon_type) EINA_ARG_NONNULL(1);
14593    /**
14594     * @}
14595     */
14596
14597    /**
14598     * @defgroup Toolbar Toolbar
14599     * @ingroup Elementary
14600     *
14601     * @image html img/widget/toolbar/preview-00.png
14602     * @image latex img/widget/toolbar/preview-00.eps width=\textwidth
14603     *
14604     * @image html img/toolbar.png
14605     * @image latex img/toolbar.eps width=\textwidth
14606     *
14607     * A toolbar is a widget that displays a list of items inside
14608     * a box. It can be scrollable, show a menu with items that don't fit
14609     * to toolbar size or even crop them.
14610     *
14611     * Only one item can be selected at a time.
14612     *
14613     * Items can have multiple states, or show menus when selected by the user.
14614     *
14615     * Smart callbacks one can listen to:
14616     * - "clicked" - when the user clicks on a toolbar item and becomes selected.
14617     * - "language,changed" - when the program language changes
14618     *
14619     * Available styles for it:
14620     * - @c "default"
14621     * - @c "transparent" - no background or shadow, just show the content
14622     *
14623     * List of examples:
14624     * @li @ref toolbar_example_01
14625     * @li @ref toolbar_example_02
14626     * @li @ref toolbar_example_03
14627     */
14628
14629    /**
14630     * @addtogroup Toolbar
14631     * @{
14632     */
14633
14634    /**
14635     * @enum _Elm_Toolbar_Shrink_Mode
14636     * @typedef Elm_Toolbar_Shrink_Mode
14637     *
14638     * Set toolbar's items display behavior, it can be scrollabel,
14639     * show a menu with exceeding items, or simply hide them.
14640     *
14641     * @note Default value is #ELM_TOOLBAR_SHRINK_MENU. It reads value
14642     * from elm config.
14643     *
14644     * Values <b> don't </b> work as bitmask, only one can be choosen.
14645     *
14646     * @see elm_toolbar_mode_shrink_set()
14647     * @see elm_toolbar_mode_shrink_get()
14648     *
14649     * @ingroup Toolbar
14650     */
14651    typedef enum _Elm_Toolbar_Shrink_Mode
14652      {
14653         ELM_TOOLBAR_SHRINK_NONE,   /**< Set toolbar minimun size to fit all the items. */
14654         ELM_TOOLBAR_SHRINK_HIDE,   /**< Hide exceeding items. */
14655         ELM_TOOLBAR_SHRINK_SCROLL, /**< Allow accessing exceeding items through a scroller. */
14656         ELM_TOOLBAR_SHRINK_MENU,   /**< Inserts a button to pop up a menu with exceeding items. */
14657         ELM_TOOLBAR_SHRINK_LAST    /**< Indicates error if returned by elm_toolbar_shrink_mode_get() */
14658      } Elm_Toolbar_Shrink_Mode;
14659
14660    typedef struct _Elm_Toolbar_Item_State Elm_Toolbar_Item_State; /**< State of a Elm_Toolbar_Item. Can be created with elm_toolbar_item_state_add() and removed with elm_toolbar_item_state_del(). */
14661
14662    /**
14663     * Add a new toolbar widget to the given parent Elementary
14664     * (container) object.
14665     *
14666     * @param parent The parent object.
14667     * @return a new toolbar widget handle or @c NULL, on errors.
14668     *
14669     * This function inserts a new toolbar widget on the canvas.
14670     *
14671     * @ingroup Toolbar
14672     */
14673    EAPI Evas_Object            *elm_toolbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14674    /**
14675     * Set the icon size, in pixels, to be used by toolbar items.
14676     *
14677     * @param obj The toolbar object
14678     * @param icon_size The icon size in pixels
14679     *
14680     * @note Default value is @c 32. It reads value from elm config.
14681     *
14682     * @see elm_toolbar_icon_size_get()
14683     *
14684     * @ingroup Toolbar
14685     */
14686    EAPI void                    elm_toolbar_icon_size_set(Evas_Object *obj, int icon_size) EINA_ARG_NONNULL(1);
14687    /**
14688     * Get the icon size, in pixels, to be used by toolbar items.
14689     *
14690     * @param obj The toolbar object.
14691     * @return The icon size in pixels.
14692     *
14693     * @see elm_toolbar_icon_size_set() for details.
14694     *
14695     * @ingroup Toolbar
14696     */
14697    EAPI int                     elm_toolbar_icon_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14698    /**
14699     * Sets icon lookup order, for toolbar items' icons.
14700     *
14701     * @param obj The toolbar object.
14702     * @param order The icon lookup order.
14703     *
14704     * Icons added before calling this function will not be affected.
14705     * The default lookup order is #ELM_ICON_LOOKUP_THEME_FDO.
14706     *
14707     * @see elm_toolbar_icon_order_lookup_get()
14708     *
14709     * @ingroup Toolbar
14710     */
14711    EAPI void                    elm_toolbar_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
14712    /**
14713     * Gets the icon lookup order.
14714     *
14715     * @param obj The toolbar object.
14716     * @return The icon lookup order.
14717     *
14718     * @see elm_toolbar_icon_order_lookup_set() for details.
14719     *
14720     * @ingroup Toolbar
14721     */
14722    EAPI Elm_Icon_Lookup_Order   elm_toolbar_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14723    /**
14724     * Set whether the toolbar should always have an item selected.
14725     *
14726     * @param obj The toolbar object.
14727     * @param wrap @c EINA_TRUE to enable always-select mode or @c EINA_FALSE to
14728     * disable it.
14729     *
14730     * This will cause the toolbar to always have an item selected, and clicking
14731     * the selected item will not cause a selected event to be emitted. Enabling this mode
14732     * will immediately select the first toolbar item.
14733     *
14734     * Always-selected is disabled by default.
14735     *
14736     * @see elm_toolbar_always_select_mode_get().
14737     *
14738     * @ingroup Toolbar
14739     */
14740    EAPI void                    elm_toolbar_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
14741    /**
14742     * Get whether the toolbar should always have an item selected.
14743     *
14744     * @param obj The toolbar object.
14745     * @return @c EINA_TRUE means an item will always be selected, @c EINA_FALSE indicates
14746     * that it is possible to have no items selected. If @p obj is @c NULL, @c EINA_FALSE is returned.
14747     *
14748     * @see elm_toolbar_always_select_mode_set() for details.
14749     *
14750     * @ingroup Toolbar
14751     */
14752    EAPI Eina_Bool               elm_toolbar_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14753    /**
14754     * Set whether the toolbar items' should be selected by the user or not.
14755     *
14756     * @param obj The toolbar object.
14757     * @param wrap @c EINA_TRUE to disable selection or @c EINA_FALSE to
14758     * enable it.
14759     *
14760     * This will turn off the ability to select items entirely and they will
14761     * neither appear selected nor emit selected signals. The clicked
14762     * callback function will still be called.
14763     *
14764     * Selection is enabled by default.
14765     *
14766     * @see elm_toolbar_no_select_mode_get().
14767     *
14768     * @ingroup Toolbar
14769     */
14770    EAPI void                    elm_toolbar_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
14771
14772    /**
14773     * Set whether the toolbar items' should be selected by the user or not.
14774     *
14775     * @param obj The toolbar object.
14776     * @return @c EINA_TRUE means items can be selected. @c EINA_FALSE indicates
14777     * they can't. If @p obj is @c NULL, @c EINA_FALSE is returned.
14778     *
14779     * @see elm_toolbar_no_select_mode_set() for details.
14780     *
14781     * @ingroup Toolbar
14782     */
14783    EAPI Eina_Bool               elm_toolbar_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14784    /**
14785     * Append item to the toolbar.
14786     *
14787     * @param obj The toolbar object.
14788     * @param icon A string with icon name or the absolute path of an image file.
14789     * @param label The label of the item.
14790     * @param func The function to call when the item is clicked.
14791     * @param data The data to associate with the item for related callbacks.
14792     * @return The created item or @c NULL upon failure.
14793     *
14794     * A new item will be created and appended to the toolbar, i.e., will
14795     * be set as @b last item.
14796     *
14797     * Items created with this method can be deleted with
14798     * elm_toolbar_item_del().
14799     *
14800     * Associated @p data can be properly freed when item is deleted if a
14801     * callback function is set with elm_toolbar_item_del_cb_set().
14802     *
14803     * If a function is passed as argument, it will be called everytime this item
14804     * is selected, i.e., the user clicks over an unselected item.
14805     * If such function isn't needed, just passing
14806     * @c NULL as @p func is enough. The same should be done for @p data.
14807     *
14808     * Toolbar will load icon image from fdo or current theme.
14809     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14810     * If an absolute path is provided it will load it direct from a file.
14811     *
14812     * @see elm_toolbar_item_icon_set()
14813     * @see elm_toolbar_item_del()
14814     * @see elm_toolbar_item_del_cb_set()
14815     *
14816     * @ingroup Toolbar
14817     */
14818    EAPI Elm_Object_Item       *elm_toolbar_item_append(Evas_Object *obj, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14819    /**
14820     * Prepend item to the toolbar.
14821     *
14822     * @param obj The toolbar object.
14823     * @param icon A string with icon name or the absolute path of an image file.
14824     * @param label The label of the item.
14825     * @param func The function to call when the item is clicked.
14826     * @param data The data to associate with the item for related callbacks.
14827     * @return The created item or @c NULL upon failure.
14828     *
14829     * A new item will be created and prepended to the toolbar, i.e., will
14830     * be set as @b first item.
14831     *
14832     * Items created with this method can be deleted with
14833     * elm_toolbar_item_del().
14834     *
14835     * Associated @p data can be properly freed when item is deleted if a
14836     * callback function is set with elm_toolbar_item_del_cb_set().
14837     *
14838     * If a function is passed as argument, it will be called everytime this item
14839     * is selected, i.e., the user clicks over an unselected item.
14840     * If such function isn't needed, just passing
14841     * @c NULL as @p func is enough. The same should be done for @p data.
14842     *
14843     * Toolbar will load icon image from fdo or current theme.
14844     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14845     * If an absolute path is provided it will load it direct from a file.
14846     *
14847     * @see elm_toolbar_item_icon_set()
14848     * @see elm_toolbar_item_del()
14849     * @see elm_toolbar_item_del_cb_set()
14850     *
14851     * @ingroup Toolbar
14852     */
14853    EAPI Elm_Object_Item       *elm_toolbar_item_prepend(Evas_Object *obj, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14854    /**
14855     * Insert a new item into the toolbar object before item @p before.
14856     *
14857     * @param obj The toolbar object.
14858     * @param before The toolbar item to insert before.
14859     * @param icon A string with icon name or the absolute path of an image file.
14860     * @param label The label of the item.
14861     * @param func The function to call when the item is clicked.
14862     * @param data The data to associate with the item for related callbacks.
14863     * @return The created item or @c NULL upon failure.
14864     *
14865     * A new item will be created and added to the toolbar. Its position in
14866     * this toolbar will be just before item @p before.
14867     *
14868     * Items created with this method can be deleted with
14869     * elm_toolbar_item_del().
14870     *
14871     * Associated @p data can be properly freed when item is deleted if a
14872     * callback function is set with elm_toolbar_item_del_cb_set().
14873     *
14874     * If a function is passed as argument, it will be called everytime this item
14875     * is selected, i.e., the user clicks over an unselected item.
14876     * If such function isn't needed, just passing
14877     * @c NULL as @p func is enough. The same should be done for @p data.
14878     *
14879     * Toolbar will load icon image from fdo or current theme.
14880     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14881     * If an absolute path is provided it will load it direct from a file.
14882     *
14883     * @see elm_toolbar_item_icon_set()
14884     * @see elm_toolbar_item_del()
14885     * @see elm_toolbar_item_del_cb_set()
14886     *
14887     * @ingroup Toolbar
14888     */
14889    EAPI Elm_Object_Item       *elm_toolbar_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14890
14891    /**
14892     * Insert a new item into the toolbar object after item @p after.
14893     *
14894     * @param obj The toolbar object.
14895     * @param after The toolbar item to insert after.
14896     * @param icon A string with icon name or the absolute path of an image file.
14897     * @param label The label of the item.
14898     * @param func The function to call when the item is clicked.
14899     * @param data The data to associate with the item for related callbacks.
14900     * @return The created item or @c NULL upon failure.
14901     *
14902     * A new item will be created and added to the toolbar. Its position in
14903     * this toolbar will be just after item @p after.
14904     *
14905     * Items created with this method can be deleted with
14906     * elm_toolbar_item_del().
14907     *
14908     * Associated @p data can be properly freed when item is deleted if a
14909     * callback function is set with elm_toolbar_item_del_cb_set().
14910     *
14911     * If a function is passed as argument, it will be called everytime this item
14912     * is selected, i.e., the user clicks over an unselected item.
14913     * If such function isn't needed, just passing
14914     * @c NULL as @p func is enough. The same should be done for @p data.
14915     *
14916     * Toolbar will load icon image from fdo or current theme.
14917     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14918     * If an absolute path is provided it will load it direct from a file.
14919     *
14920     * @see elm_toolbar_item_icon_set()
14921     * @see elm_toolbar_item_del()
14922     * @see elm_toolbar_item_del_cb_set()
14923     *
14924     * @ingroup Toolbar
14925     */
14926    EAPI Elm_Object_Item       *elm_toolbar_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14927    /**
14928     * Get the first item in the given toolbar widget's list of
14929     * items.
14930     *
14931     * @param obj The toolbar object
14932     * @return The first item or @c NULL, if it has no items (and on
14933     * errors)
14934     *
14935     * @see elm_toolbar_item_append()
14936     * @see elm_toolbar_last_item_get()
14937     *
14938     * @ingroup Toolbar
14939     */
14940    EAPI Elm_Object_Item       *elm_toolbar_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14941    /**
14942     * Get the last item in the given toolbar widget's list of
14943     * items.
14944     *
14945     * @param obj The toolbar object
14946     * @return The last item or @c NULL, if it has no items (and on
14947     * errors)
14948     *
14949     * @see elm_toolbar_item_prepend()
14950     * @see elm_toolbar_first_item_get()
14951     *
14952     * @ingroup Toolbar
14953     */
14954    EAPI Elm_Object_Item       *elm_toolbar_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14955    /**
14956     * Get the item after @p item in toolbar.
14957     *
14958     * @param it The toolbar item.
14959     * @return The item after @p item, or @c NULL if none or on failure.
14960     *
14961     * @note If it is the last item, @c NULL will be returned.
14962     *
14963     * @see elm_toolbar_item_append()
14964     *
14965     * @ingroup Toolbar
14966     */
14967    EAPI Elm_Object_Item       *elm_toolbar_item_next_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
14968    /**
14969     * Get the item before @p item in toolbar.
14970     *
14971     * @param item The toolbar item.
14972     * @return The item before @p item, or @c NULL if none or on failure.
14973     *
14974     * @note If it is the first item, @c NULL will be returned.
14975     *
14976     * @see elm_toolbar_item_prepend()
14977     *
14978     * @ingroup Toolbar
14979     */
14980    EAPI Elm_Object_Item       *elm_toolbar_item_prev_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
14981    /**
14982     * Get the toolbar object from an item.
14983     *
14984     * @param it The item.
14985     * @return The toolbar object.
14986     *
14987     * This returns the toolbar object itself that an item belongs to.
14988     *
14989     * @ingroup Toolbar
14990     */
14991    EAPI Evas_Object            *elm_toolbar_item_toolbar_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
14992    /**
14993     * Set the priority of a toolbar item.
14994     *
14995     * @param it The toolbar item.
14996     * @param priority The item priority. The default is zero.
14997     *
14998     * This is used only when the toolbar shrink mode is set to
14999     * #ELM_TOOLBAR_SHRINK_MENU or #ELM_TOOLBAR_SHRINK_HIDE.
15000     * When space is less than required, items with low priority
15001     * will be removed from the toolbar and added to a dynamically-created menu,
15002     * while items with higher priority will remain on the toolbar,
15003     * with the same order they were added.
15004     *
15005     * @see elm_toolbar_item_priority_get()
15006     *
15007     * @ingroup Toolbar
15008     */
15009    EAPI void                    elm_toolbar_item_priority_set(Elm_Object_Item *it, int priority) EINA_ARG_NONNULL(1);
15010    /**
15011     * Get the priority of a toolbar item.
15012     *
15013     * @param it The toolbar item.
15014     * @return The @p item priority, or @c 0 on failure.
15015     *
15016     * @see elm_toolbar_item_priority_set() for details.
15017     *
15018     * @ingroup Toolbar
15019     */
15020    EAPI int                     elm_toolbar_item_priority_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15021    /**
15022     * Get the label of item.
15023     *
15024     * @param it The item of toolbar.
15025     * @return The label of item.
15026     *
15027     * The return value is a pointer to the label associated to @p item when
15028     * it was created, with function elm_toolbar_item_append() or similar,
15029     * or later,
15030     * with function elm_toolbar_item_label_set. If no label
15031     * was passed as argument, it will return @c NULL.
15032     *
15033     * @see elm_toolbar_item_label_set() for more details.
15034     * @see elm_toolbar_item_append()
15035     *
15036     * @ingroup Toolbar
15037     */
15038    EAPI const char             *elm_toolbar_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15039    /**
15040     * Set the label of item.
15041     *
15042     * @param it The item of toolbar.
15043     * @param text The label of item.
15044     *
15045     * The label to be displayed by the item.
15046     * Label will be placed at icons bottom (if set).
15047     *
15048     * If a label was passed as argument on item creation, with function
15049     * elm_toolbar_item_append() or similar, it will be already
15050     * displayed by the item.
15051     *
15052     * @see elm_toolbar_item_label_get()
15053     * @see elm_toolbar_item_append()
15054     *
15055     * @ingroup Toolbar
15056     */
15057    EAPI void                    elm_toolbar_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
15058    /**
15059     * Return the data associated with a given toolbar widget item.
15060     *
15061     * @param it The toolbar widget item handle.
15062     * @return The data associated with @p item.
15063     *
15064     * @see elm_toolbar_item_data_set()
15065     *
15066     * @ingroup Toolbar
15067     */
15068    EAPI void                   *elm_toolbar_item_data_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15069    /**
15070     * Set the data associated with a given toolbar widget item.
15071     *
15072     * @param it The toolbar widget item handle
15073     * @param data The new data pointer to set to @p item.
15074     *
15075     * This sets new item data on @p item.
15076     *
15077     * @warning The old data pointer won't be touched by this function, so
15078     * the user had better to free that old data himself/herself.
15079     *
15080     * @ingroup Toolbar
15081     */
15082    EAPI void                    elm_toolbar_item_data_set(Elm_Object_Item *it, const void *data) EINA_ARG_NONNULL(1);
15083    /**
15084     * Returns a pointer to a toolbar item by its label.
15085     *
15086     * @param obj The toolbar object.
15087     * @param label The label of the item to find.
15088     *
15089     * @return The pointer to the toolbar item matching @p label or @c NULL
15090     * on failure.
15091     *
15092     * @ingroup Toolbar
15093     */
15094    EAPI Elm_Object_Item       *elm_toolbar_item_find_by_label(const Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
15095    /*
15096     * Get whether the @p item is selected or not.
15097     *
15098     * @param it The toolbar item.
15099     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
15100     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
15101     *
15102     * @see elm_toolbar_selected_item_set() for details.
15103     * @see elm_toolbar_item_selected_get()
15104     *
15105     * @ingroup Toolbar
15106     */
15107    EAPI Eina_Bool               elm_toolbar_item_selected_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15108    /**
15109     * Set the selected state of an item.
15110     *
15111     * @param it The toolbar item
15112     * @param selected The selected state
15113     *
15114     * This sets the selected state of the given item @p it.
15115     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
15116     *
15117     * If a new item is selected the previosly selected will be unselected.
15118     * Previoulsy selected item can be get with function
15119     * elm_toolbar_selected_item_get().
15120     *
15121     * Selected items will be highlighted.
15122     *
15123     * @see elm_toolbar_item_selected_get()
15124     * @see elm_toolbar_selected_item_get()
15125     *
15126     * @ingroup Toolbar
15127     */
15128    EAPI void                    elm_toolbar_item_selected_set(Elm_Object_Item *it, Eina_Bool selected) EINA_ARG_NONNULL(1);
15129    /**
15130     * Get the selected item.
15131     *
15132     * @param obj The toolbar object.
15133     * @return The selected toolbar item.
15134     *
15135     * The selected item can be unselected with function
15136     * elm_toolbar_item_selected_set().
15137     *
15138     * The selected item always will be highlighted on toolbar.
15139     *
15140     * @see elm_toolbar_selected_items_get()
15141     *
15142     * @ingroup Toolbar
15143     */
15144    EAPI Elm_Object_Item       *elm_toolbar_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15145    /**
15146     * Set the icon associated with @p item.
15147     *
15148     * @param obj The parent of this item.
15149     * @param it The toolbar item.
15150     * @param icon A string with icon name or the absolute path of an image file.
15151     *
15152     * Toolbar will load icon image from fdo or current theme.
15153     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
15154     * If an absolute path is provided it will load it direct from a file.
15155     *
15156     * @see elm_toolbar_icon_order_lookup_set()
15157     * @see elm_toolbar_icon_order_lookup_get()
15158     *
15159     * @ingroup Toolbar
15160     */
15161    EAPI void                    elm_toolbar_item_icon_set(Elm_Object_Item *it, const char *icon) EINA_ARG_NONNULL(1);
15162    /**
15163     * Get the string used to set the icon of @p item.
15164     *
15165     * @param it The toolbar item.
15166     * @return The string associated with the icon object.
15167     *
15168     * @see elm_toolbar_item_icon_set() for details.
15169     *
15170     * @ingroup Toolbar
15171     */
15172    EAPI const char             *elm_toolbar_item_icon_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15173    /**
15174     * Get the object of @p item.
15175     *
15176     * @param it The toolbar item.
15177     * @return The object
15178     *
15179     * @ingroup Toolbar
15180     */
15181    EAPI Evas_Object            *elm_toolbar_item_object_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15182    /**
15183     * Get the icon object of @p item.
15184     *
15185     * @param it The toolbar item.
15186     * @return The icon object
15187     *
15188     * @see elm_toolbar_item_icon_set(), elm_toolbar_item_icon_file_set(),
15189     * or elm_toolbar_item_icon_memfile_set() for details.
15190     *
15191     * @ingroup Toolbar
15192     */
15193    EAPI Evas_Object            *elm_toolbar_item_icon_object_get(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15194    /**
15195     * Set the icon associated with @p item to an image in a binary buffer.
15196     *
15197     * @param it The toolbar item.
15198     * @param img The binary data that will be used as an image
15199     * @param size The size of binary data @p img
15200     * @param format Optional format of @p img to pass to the image loader
15201     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
15202     *
15203     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
15204     *
15205     * @note The icon image set by this function can be changed by
15206     * elm_toolbar_item_icon_set().
15207     *
15208     * @ingroup Toolbar
15209     */
15210    EAPI Eina_Bool elm_toolbar_item_icon_memfile_set(Elm_Object_Item *it, const void *img, size_t size, const char *format, const char *key) EINA_ARG_NONNULL(1);
15211
15212    /**
15213     * Set the icon associated with @p item to an image in a binary buffer.
15214     *
15215     * @param it The toolbar item.
15216     * @param file The file that contains the image
15217     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
15218     *
15219     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
15220     *
15221     * @note The icon image set by this function can be changed by
15222     * elm_toolbar_item_icon_set().
15223     *
15224     * @ingroup Toolbar
15225     */
15226    EAPI Eina_Bool elm_toolbar_item_icon_file_set(Elm_Object_Item *it, const char *file, const char *key) EINA_ARG_NONNULL(1);
15227
15228    /**
15229     * Delete them item from the toolbar.
15230     *
15231     * @param it The item of toolbar to be deleted.
15232     *
15233     * @see elm_toolbar_item_append()
15234     * @see elm_toolbar_item_del_cb_set()
15235     *
15236     * @ingroup Toolbar
15237     */
15238    EAPI void                    elm_toolbar_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15239
15240    /**
15241     * Set the function called when a toolbar item is freed.
15242     *
15243     * @param it The item to set the callback on.
15244     * @param func The function called.
15245     *
15246     * If there is a @p func, then it will be called prior item's memory release.
15247     * That will be called with the following arguments:
15248     * @li item's data;
15249     * @li item's Evas object;
15250     * @li item itself;
15251     *
15252     * This way, a data associated to a toolbar item could be properly freed.
15253     *
15254     * @ingroup Toolbar
15255     */
15256    EAPI void                    elm_toolbar_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
15257
15258    /**
15259     * Get a value whether toolbar item is disabled or not.
15260     *
15261     * @param it The item.
15262     * @return The disabled state.
15263     *
15264     * @see elm_toolbar_item_disabled_set() for more details.
15265     *
15266     * @ingroup Toolbar
15267     */
15268    EAPI Eina_Bool               elm_toolbar_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15269
15270    /**
15271     * Sets the disabled/enabled state of a toolbar item.
15272     *
15273     * @param it The item.
15274     * @param disabled The disabled state.
15275     *
15276     * A disabled item cannot be selected or unselected. It will also
15277     * change its appearance (generally greyed out). This sets the
15278     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
15279     * enabled).
15280     *
15281     * @ingroup Toolbar
15282     */
15283    EAPI void                    elm_toolbar_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
15284
15285    /**
15286     * Set or unset item as a separator.
15287     *
15288     * @param it The toolbar item.
15289     * @param setting @c EINA_TRUE to set item @p item as separator or
15290     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
15291     *
15292     * Items aren't set as separator by default.
15293     *
15294     * If set as separator it will display separator theme, so won't display
15295     * icons or label.
15296     *
15297     * @see elm_toolbar_item_separator_get()
15298     *
15299     * @ingroup Toolbar
15300     */
15301    EAPI void                    elm_toolbar_item_separator_set(Elm_Object_Item *it, Eina_Bool separator) EINA_ARG_NONNULL(1);
15302
15303    /**
15304     * Get a value whether item is a separator or not.
15305     *
15306     * @param it The toolbar item.
15307     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
15308     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
15309     *
15310     * @see elm_toolbar_item_separator_set() for details.
15311     *
15312     * @ingroup Toolbar
15313     */
15314    EAPI Eina_Bool               elm_toolbar_item_separator_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15315
15316    /**
15317     * Set the shrink state of toolbar @p obj.
15318     *
15319     * @param obj The toolbar object.
15320     * @param shrink_mode Toolbar's items display behavior.
15321     *
15322     * The toolbar won't scroll if #ELM_TOOLBAR_SHRINK_NONE,
15323     * but will enforce a minimun size so all the items will fit, won't scroll
15324     * and won't show the items that don't fit if #ELM_TOOLBAR_SHRINK_HIDE,
15325     * will scroll if #ELM_TOOLBAR_SHRINK_SCROLL, and will create a button to
15326     * pop up excess elements with #ELM_TOOLBAR_SHRINK_MENU.
15327     *
15328     * @ingroup Toolbar
15329     */
15330    EAPI void                    elm_toolbar_mode_shrink_set(Evas_Object *obj, Elm_Toolbar_Shrink_Mode shrink_mode) EINA_ARG_NONNULL(1);
15331
15332    /**
15333     * Get the shrink mode of toolbar @p obj.
15334     *
15335     * @param obj The toolbar object.
15336     * @return Toolbar's items display behavior.
15337     *
15338     * @see elm_toolbar_mode_shrink_set() for details.
15339     *
15340     * @ingroup Toolbar
15341     */
15342    EAPI Elm_Toolbar_Shrink_Mode elm_toolbar_mode_shrink_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15343
15344    /**
15345     * Enable/disable homogeneous mode.
15346     *
15347     * @param obj The toolbar object
15348     * @param homogeneous Assume the items within the toolbar are of the
15349     * same size (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE.
15350     *
15351     * This will enable the homogeneous mode where items are of the same size.
15352     * @see elm_toolbar_homogeneous_get()
15353     *
15354     * @ingroup Toolbar
15355     */
15356    EAPI void                    elm_toolbar_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
15357
15358    /**
15359     * Get whether the homogeneous mode is enabled.
15360     *
15361     * @param obj The toolbar object.
15362     * @return Assume the items within the toolbar are of the same height
15363     * and width (EINA_TRUE = on, EINA_FALSE = off).
15364     *
15365     * @see elm_toolbar_homogeneous_set()
15366     *
15367     * @ingroup Toolbar
15368     */
15369    EAPI Eina_Bool               elm_toolbar_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15370    /**
15371     * Set the parent object of the toolbar items' menus.
15372     *
15373     * @param obj The toolbar object.
15374     * @param parent The parent of the menu objects.
15375     *
15376     * Each item can be set as item menu, with elm_toolbar_item_menu_set().
15377     *
15378     * For more details about setting the parent for toolbar menus, see
15379     * elm_menu_parent_set().
15380     *
15381     * @see elm_menu_parent_set() for details.
15382     * @see elm_toolbar_item_menu_set() for details.
15383     *
15384     * @ingroup Toolbar
15385     */
15386    EAPI void                    elm_toolbar_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
15387    /**
15388     * Get the parent object of the toolbar items' menus.
15389     *
15390     * @param obj The toolbar object.
15391     * @return The parent of the menu objects.
15392     *
15393     * @see elm_toolbar_menu_parent_set() for details.
15394     *
15395     * @ingroup Toolbar
15396     */
15397    EAPI Evas_Object            *elm_toolbar_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15398    /**
15399     * Set the alignment of the items.
15400     *
15401     * @param obj The toolbar object.
15402     * @param align The new alignment, a float between <tt> 0.0 </tt>
15403     * and <tt> 1.0 </tt>.
15404     *
15405     * Alignment of toolbar items, from <tt> 0.0 </tt> to indicates to align
15406     * left, to <tt> 1.0 </tt>, to align to right. <tt> 0.5 </tt> centralize
15407     * items.
15408     *
15409     * Centered items by default.
15410     *
15411     * @see elm_toolbar_align_get()
15412     *
15413     * @ingroup Toolbar
15414     */
15415    EAPI void                    elm_toolbar_align_set(Evas_Object *obj, double align) EINA_ARG_NONNULL(1);
15416    /**
15417     * Get the alignment of the items.
15418     *
15419     * @param obj The toolbar object.
15420     * @return toolbar items alignment, a float between <tt> 0.0 </tt> and
15421     * <tt> 1.0 </tt>.
15422     *
15423     * @see elm_toolbar_align_set() for details.
15424     *
15425     * @ingroup Toolbar
15426     */
15427    EAPI double                  elm_toolbar_align_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15428    /**
15429     * Set whether the toolbar item opens a menu.
15430     *
15431     * @param it The toolbar item.
15432     * @param menu If @c EINA_TRUE, @p item will opens a menu when selected.
15433     *
15434     * A toolbar item can be set to be a menu, using this function.
15435     *
15436     * Once it is set to be a menu, it can be manipulated through the
15437     * menu-like function elm_toolbar_menu_parent_set() and the other
15438     * elm_menu functions, using the Evas_Object @c menu returned by
15439     * elm_toolbar_item_menu_get().
15440     *
15441     * So, items to be displayed in this item's menu should be added with
15442     * elm_menu_item_add().
15443     *
15444     * The following code exemplifies the most basic usage:
15445     * @code
15446     * tb = elm_toolbar_add(win)
15447     * item = elm_toolbar_item_append(tb, "refresh", "Menu", NULL, NULL);
15448     * elm_toolbar_item_menu_set(item, EINA_TRUE);
15449     * elm_toolbar_menu_parent_set(tb, win);
15450     * menu = elm_toolbar_item_menu_get(item);
15451     * elm_menu_item_add(menu, NULL, "edit-cut", "Cut", NULL, NULL);
15452     * menu_item = elm_menu_item_add(menu, NULL, "edit-copy", "Copy", NULL,
15453     * NULL);
15454     * @endcode
15455     *
15456     * @see elm_toolbar_item_menu_get()
15457     *
15458     * @ingroup Toolbar
15459     */
15460    EAPI void                    elm_toolbar_item_menu_set(Elm_Object_Item *it, Eina_Bool menu) EINA_ARG_NONNULL(1);
15461    /**
15462     * Get toolbar item's menu.
15463     *
15464     * @param it The toolbar item.
15465     * @return Item's menu object or @c NULL on failure.
15466     *
15467     * If @p item wasn't set as menu item with elm_toolbar_item_menu_set(),
15468     * this function will set it.
15469     *
15470     * @see elm_toolbar_item_menu_set() for details.
15471     *
15472     * @ingroup Toolbar
15473     */
15474    EAPI Evas_Object            *elm_toolbar_item_menu_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15475    /**
15476     * Add a new state to @p item.
15477     *
15478     * @param it The toolbar item.
15479     * @param icon A string with icon name or the absolute path of an image file.
15480     * @param label The label of the new state.
15481     * @param func The function to call when the item is clicked when this
15482     * state is selected.
15483     * @param data The data to associate with the state.
15484     * @return The toolbar item state, or @c NULL upon failure.
15485     *
15486     * Toolbar will load icon image from fdo or current theme.
15487     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
15488     * If an absolute path is provided it will load it direct from a file.
15489     *
15490     * States created with this function can be removed with
15491     * elm_toolbar_item_state_del().
15492     *
15493     * @see elm_toolbar_item_state_del()
15494     * @see elm_toolbar_item_state_sel()
15495     * @see elm_toolbar_item_state_get()
15496     *
15497     * @ingroup Toolbar
15498     */
15499    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_add(Elm_Object_Item *it, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
15500    /**
15501     * Delete a previoulsy added state to @p item.
15502     *
15503     * @param it The toolbar item.
15504     * @param state The state to be deleted.
15505     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
15506     *
15507     * @see elm_toolbar_item_state_add()
15508     */
15509    EAPI Eina_Bool               elm_toolbar_item_state_del(Elm_Object_Item *it, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
15510    /**
15511     * Set @p state as the current state of @p it.
15512     *
15513     * @param it The toolbar item.
15514     * @param state The state to use.
15515     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
15516     *
15517     * If @p state is @c NULL, it won't select any state and the default item's
15518     * icon and label will be used. It's the same behaviour than
15519     * elm_toolbar_item_state_unser().
15520     *
15521     * @see elm_toolbar_item_state_unset()
15522     *
15523     * @ingroup Toolbar
15524     */
15525    EAPI Eina_Bool               elm_toolbar_item_state_set(Elm_Object_Item *it, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
15526    /**
15527     * Unset the state of @p it.
15528     *
15529     * @param it The toolbar item.
15530     *
15531     * The default icon and label from this item will be displayed.
15532     *
15533     * @see elm_toolbar_item_state_set() for more details.
15534     *
15535     * @ingroup Toolbar
15536     */
15537    EAPI void                    elm_toolbar_item_state_unset(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15538    /**
15539     * Get the current state of @p it.
15540     *
15541     * @param it The toolbar item.
15542     * @return The selected state or @c NULL if none is selected or on failure.
15543     *
15544     * @see elm_toolbar_item_state_set() for details.
15545     * @see elm_toolbar_item_state_unset()
15546     * @see elm_toolbar_item_state_add()
15547     *
15548     * @ingroup Toolbar
15549     */
15550    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15551    /**
15552     * Get the state after selected state in toolbar's @p item.
15553     *
15554     * @param it The toolbar item to change state.
15555     * @return The state after current state, or @c NULL on failure.
15556     *
15557     * If last state is selected, this function will return first state.
15558     *
15559     * @see elm_toolbar_item_state_set()
15560     * @see elm_toolbar_item_state_add()
15561     *
15562     * @ingroup Toolbar
15563     */
15564    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_next(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15565    /**
15566     * Get the state before selected state in toolbar's @p item.
15567     *
15568     * @param it The toolbar item to change state.
15569     * @return The state before current state, or @c NULL on failure.
15570     *
15571     * If first state is selected, this function will return last state.
15572     *
15573     * @see elm_toolbar_item_state_set()
15574     * @see elm_toolbar_item_state_add()
15575     *
15576     * @ingroup Toolbar
15577     */
15578    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_prev(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15579    /**
15580     * Set the text to be shown in a given toolbar item's tooltips.
15581     *
15582     * @param it toolbar item.
15583     * @param text The text to set in the content.
15584     *
15585     * Setup the text as tooltip to object. The item can have only one tooltip,
15586     * so any previous tooltip data - set with this function or
15587     * elm_toolbar_item_tooltip_content_cb_set() - is removed.
15588     *
15589     * @see elm_object_tooltip_text_set() for more details.
15590     *
15591     * @ingroup Toolbar
15592     */
15593    EAPI void             elm_toolbar_item_tooltip_text_set(Elm_Object_Item *it, const char *text) EINA_ARG_NONNULL(1);
15594    /**
15595     * Set the content to be shown in the tooltip item.
15596     *
15597     * Setup the tooltip to item. The item can have only one tooltip,
15598     * so any previous tooltip data is removed. @p func(with @p data) will
15599     * be called every time that need show the tooltip and it should
15600     * return a valid Evas_Object. This object is then managed fully by
15601     * tooltip system and is deleted when the tooltip is gone.
15602     *
15603     * @param it the toolbar item being attached a tooltip.
15604     * @param func the function used to create the tooltip contents.
15605     * @param data what to provide to @a func as callback data/context.
15606     * @param del_cb called when data is not needed anymore, either when
15607     *        another callback replaces @a func, the tooltip is unset with
15608     *        elm_toolbar_item_tooltip_unset() or the owner @a item
15609     *        dies. This callback receives as the first parameter the
15610     *        given @a data, and @c event_info is the item.
15611     *
15612     * @see elm_object_tooltip_content_cb_set() for more details.
15613     *
15614     * @ingroup Toolbar
15615     */
15616    EAPI void             elm_toolbar_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
15617    /**
15618     * Unset tooltip from item.
15619     *
15620     * @param it toolbar item to remove previously set tooltip.
15621     *
15622     * Remove tooltip from item. The callback provided as del_cb to
15623     * elm_toolbar_item_tooltip_content_cb_set() will be called to notify
15624     * it is not used anymore.
15625     *
15626     * @see elm_object_tooltip_unset() for more details.
15627     * @see elm_toolbar_item_tooltip_content_cb_set()
15628     *
15629     * @ingroup Toolbar
15630     */
15631    EAPI void             elm_toolbar_item_tooltip_unset(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15632    /**
15633     * Sets a different style for this item tooltip.
15634     *
15635     * @note before you set a style you should define a tooltip with
15636     *       elm_toolbar_item_tooltip_content_cb_set() or
15637     *       elm_toolbar_item_tooltip_text_set()
15638     *
15639     * @param it toolbar item with tooltip already set.
15640     * @param style the theme style to use (default, transparent, ...)
15641     *
15642     * @see elm_object_tooltip_style_set() for more details.
15643     *
15644     * @ingroup Toolbar
15645     */
15646    EAPI void             elm_toolbar_item_tooltip_style_set(Elm_Object_Item *it, const char *style) EINA_ARG_NONNULL(1);
15647    /**
15648     * Get the style for this item tooltip.
15649     *
15650     * @param it toolbar item with tooltip already set.
15651     * @return style the theme style in use, defaults to "default". If the
15652     *         object does not have a tooltip set, then NULL is returned.
15653     *
15654     * @see elm_object_tooltip_style_get() for more details.
15655     * @see elm_toolbar_item_tooltip_style_set()
15656     *
15657     * @ingroup Toolbar
15658     */
15659    EAPI const char      *elm_toolbar_item_tooltip_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15660    /**
15661     * Set the type of mouse pointer/cursor decoration to be shown,
15662     * when the mouse pointer is over the given toolbar widget item
15663     *
15664     * @param it toolbar item to customize cursor on
15665     * @param cursor the cursor type's name
15666     *
15667     * This function works analogously as elm_object_cursor_set(), but
15668     * here the cursor's changing area is restricted to the item's
15669     * area, and not the whole widget's. Note that that item cursors
15670     * have precedence over widget cursors, so that a mouse over an
15671     * item with custom cursor set will always show @b that cursor.
15672     *
15673     * If this function is called twice for an object, a previously set
15674     * cursor will be unset on the second call.
15675     *
15676     * @see elm_object_cursor_set()
15677     * @see elm_toolbar_item_cursor_get()
15678     * @see elm_toolbar_item_cursor_unset()
15679     *
15680     * @ingroup Toolbar
15681     */
15682    EAPI void             elm_toolbar_item_cursor_set(Elm_Object_Item *it, const char *cursor) EINA_ARG_NONNULL(1);
15683
15684    /*
15685     * Get the type of mouse pointer/cursor decoration set to be shown,
15686     * when the mouse pointer is over the given toolbar widget item
15687     *
15688     * @param it toolbar item with custom cursor set
15689     * @return the cursor type's name or @c NULL, if no custom cursors
15690     * were set to @p item (and on errors)
15691     *
15692     * @see elm_object_cursor_get()
15693     * @see elm_toolbar_item_cursor_set()
15694     * @see elm_toolbar_item_cursor_unset()
15695     *
15696     * @ingroup Toolbar
15697     */
15698    EAPI const char      *elm_toolbar_item_cursor_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15699
15700    /**
15701     * Unset any custom mouse pointer/cursor decoration set to be
15702     * shown, when the mouse pointer is over the given toolbar widget
15703     * item, thus making it show the @b default cursor again.
15704     *
15705     * @param it a toolbar item
15706     *
15707     * Use this call to undo any custom settings on this item's cursor
15708     * decoration, bringing it back to defaults (no custom style set).
15709     *
15710     * @see elm_object_cursor_unset()
15711     * @see elm_toolbar_item_cursor_set()
15712     *
15713     * @ingroup Toolbar
15714     */
15715    EAPI void             elm_toolbar_item_cursor_unset(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15716
15717    /**
15718     * Set a different @b style for a given custom cursor set for a
15719     * toolbar item.
15720     *
15721     * @param it toolbar item with custom cursor set
15722     * @param style the <b>theme style</b> to use (e.g. @c "default",
15723     * @c "transparent", etc)
15724     *
15725     * This function only makes sense when one is using custom mouse
15726     * cursor decorations <b>defined in a theme file</b>, which can have,
15727     * given a cursor name/type, <b>alternate styles</b> on it. It
15728     * works analogously as elm_object_cursor_style_set(), but here
15729     * applyed only to toolbar item objects.
15730     *
15731     * @warning Before you set a cursor style you should have definen a
15732     *       custom cursor previously on the item, with
15733     *       elm_toolbar_item_cursor_set()
15734     *
15735     * @see elm_toolbar_item_cursor_engine_only_set()
15736     * @see elm_toolbar_item_cursor_style_get()
15737     *
15738     * @ingroup Toolbar
15739     */
15740    EAPI void             elm_toolbar_item_cursor_style_set(Elm_Object_Item *it, const char *style) EINA_ARG_NONNULL(1);
15741
15742    /**
15743     * Get the current @b style set for a given toolbar item's custom
15744     * cursor
15745     *
15746     * @param it toolbar item with custom cursor set.
15747     * @return style the cursor style in use. If the object does not
15748     *         have a cursor set, then @c NULL is returned.
15749     *
15750     * @see elm_toolbar_item_cursor_style_set() for more details
15751     *
15752     * @ingroup Toolbar
15753     */
15754    EAPI const char      *elm_toolbar_item_cursor_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15755
15756    /**
15757     * Set if the (custom)cursor for a given toolbar item should be
15758     * searched in its theme, also, or should only rely on the
15759     * rendering engine.
15760     *
15761     * @param it item with custom (custom) cursor already set on
15762     * @param engine_only Use @c EINA_TRUE to have cursors looked for
15763     * only on those provided by the rendering engine, @c EINA_FALSE to
15764     * have them searched on the widget's theme, as well.
15765     *
15766     * @note This call is of use only if you've set a custom cursor
15767     * for toolbar items, with elm_toolbar_item_cursor_set().
15768     *
15769     * @note By default, cursors will only be looked for between those
15770     * provided by the rendering engine.
15771     *
15772     * @ingroup Toolbar
15773     */
15774    EAPI void             elm_toolbar_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
15775
15776    /**
15777     * Get if the (custom) cursor for a given toolbar item is being
15778     * searched in its theme, also, or is only relying on the rendering
15779     * engine.
15780     *
15781     * @param it a toolbar item
15782     * @return @c EINA_TRUE, if cursors are being looked for only on
15783     * those provided by the rendering engine, @c EINA_FALSE if they
15784     * are being searched on the widget's theme, as well.
15785     *
15786     * @see elm_toolbar_item_cursor_engine_only_set(), for more details
15787     *
15788     * @ingroup Toolbar
15789     */
15790    EAPI Eina_Bool        elm_toolbar_item_cursor_engine_only_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15791
15792    /**
15793     * Change a toolbar's orientation
15794     * @param obj The toolbar object
15795     * @param vertical If @c EINA_TRUE, the toolbar is vertical
15796     * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
15797     * @ingroup Toolbar
15798     * @deprecated use elm_toolbar_horizontal_set() instead.
15799     */
15800    EINA_DEPRECATED EAPI void             elm_toolbar_orientation_set(Evas_Object *obj, Eina_Bool vertical) EINA_ARG_NONNULL(1);
15801
15802    /**
15803     * Change a toolbar's orientation
15804     * @param obj The toolbar object
15805     * @param horizontal If @c EINA_TRUE, the toolbar is horizontal
15806     * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
15807     * @ingroup Toolbar
15808     */
15809    EAPI void             elm_toolbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
15810
15811    /**
15812     * Get a toolbar's orientation
15813     * @param obj The toolbar object
15814     * @return If @c EINA_TRUE, the toolbar is vertical
15815     * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
15816     * @ingroup Toolbar
15817     * @deprecated use elm_toolbar_horizontal_get() instead.
15818     */
15819    EINA_DEPRECATED EAPI Eina_Bool        elm_toolbar_orientation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15820
15821    /**
15822     * Get a toolbar's orientation
15823     * @param obj The toolbar object
15824     * @return If @c EINA_TRUE, the toolbar is horizontal
15825     * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
15826     * @ingroup Toolbar
15827     */
15828    EAPI Eina_Bool elm_toolbar_horizontal_get(const Evas_Object *obj);
15829    /**
15830     * @}
15831     */
15832
15833    /**
15834     * @defgroup Tooltips Tooltips
15835     *
15836     * The Tooltip is an (internal, for now) smart object used to show a
15837     * content in a frame on mouse hover of objects(or widgets), with
15838     * tips/information about them.
15839     *
15840     * @{
15841     */
15842
15843    EAPI double       elm_tooltip_delay_get(void);
15844    EAPI Eina_Bool    elm_tooltip_delay_set(double delay);
15845    EAPI void         elm_object_tooltip_show(Evas_Object *obj) EINA_ARG_NONNULL(1);
15846    EAPI void         elm_object_tooltip_hide(Evas_Object *obj) EINA_ARG_NONNULL(1);
15847    EAPI void         elm_object_tooltip_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1, 2);
15848    EAPI void         elm_object_tooltip_domain_translatable_text_set(Evas_Object *obj, const char *domain, const char *text) EINA_ARG_NONNULL(1, 3);
15849 #define elm_object_tooltip_translatable_text_set(obj, text) elm_object_tooltip_domain_translatable_text_set((obj), NULL, (text))
15850    EAPI void         elm_object_tooltip_content_cb_set(Evas_Object *obj, Elm_Tooltip_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
15851    EAPI void         elm_object_tooltip_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
15852    EAPI void         elm_object_tooltip_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
15853    EAPI const char  *elm_object_tooltip_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15854    EAPI Eina_Bool    elm_tooltip_size_restrict_disable(Evas_Object *obj, Eina_Bool disable) EINA_ARG_NONNULL(1);
15855    EAPI Eina_Bool    elm_tooltip_size_restrict_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15856
15857    /**
15858     * @}
15859     */
15860
15861    /**
15862     * @defgroup Cursors Cursors
15863     *
15864     * The Elementary cursor is an internal smart object used to
15865     * customize the mouse cursor displayed over objects (or
15866     * widgets). In the most common scenario, the cursor decoration
15867     * comes from the graphical @b engine Elementary is running
15868     * on. Those engines may provide different decorations for cursors,
15869     * and Elementary provides functions to choose them (think of X11
15870     * cursors, as an example).
15871     *
15872     * There's also the possibility of, besides using engine provided
15873     * cursors, also use ones coming from Edje theming files. Both
15874     * globally and per widget, Elementary makes it possible for one to
15875     * make the cursors lookup to be held on engines only or on
15876     * Elementary's theme file, too. To set cursor's hot spot,
15877     * two data items should be added to cursor's theme: "hot_x" and
15878     * "hot_y", that are the offset from upper-left corner of the cursor
15879     * (coordinates 0,0).
15880     *
15881     * @{
15882     */
15883
15884    /**
15885     * Set the cursor to be shown when mouse is over the object
15886     *
15887     * Set the cursor that will be displayed when mouse is over the
15888     * object. The object can have only one cursor set to it, so if
15889     * this function is called twice for an object, the previous set
15890     * will be unset.
15891     * If using X cursors, a definition of all the valid cursor names
15892     * is listed on Elementary_Cursors.h. If an invalid name is set
15893     * the default cursor will be used.
15894     *
15895     * @param obj the object being set a cursor.
15896     * @param cursor the cursor name to be used.
15897     *
15898     * @ingroup Cursors
15899     */
15900    EAPI void         elm_object_cursor_set(Evas_Object *obj, const char *cursor) EINA_ARG_NONNULL(1);
15901
15902    /**
15903     * Get the cursor to be shown when mouse is over the object
15904     *
15905     * @param obj an object with cursor already set.
15906     * @return the cursor name.
15907     *
15908     * @ingroup Cursors
15909     */
15910    EAPI const char  *elm_object_cursor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15911
15912    /**
15913     * Unset cursor for object
15914     *
15915     * Unset cursor for object, and set the cursor to default if the mouse
15916     * was over this object.
15917     *
15918     * @param obj Target object
15919     * @see elm_object_cursor_set()
15920     *
15921     * @ingroup Cursors
15922     */
15923    EAPI void         elm_object_cursor_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
15924
15925    /**
15926     * Sets a different style for this object cursor.
15927     *
15928     * @note before you set a style you should define a cursor with
15929     *       elm_object_cursor_set()
15930     *
15931     * @param obj an object with cursor already set.
15932     * @param style the theme style to use (default, transparent, ...)
15933     *
15934     * @ingroup Cursors
15935     */
15936    EAPI void         elm_object_cursor_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
15937
15938    /**
15939     * Get the style for this object cursor.
15940     *
15941     * @param obj an object with cursor already set.
15942     * @return style the theme style in use, defaults to "default". If the
15943     *         object does not have a cursor set, then NULL is returned.
15944     *
15945     * @ingroup Cursors
15946     */
15947    EAPI const char  *elm_object_cursor_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15948
15949    /**
15950     * Set if the cursor set should be searched on the theme or should use
15951     * the provided by the engine, only.
15952     *
15953     * @note before you set if should look on theme you should define a cursor
15954     * with elm_object_cursor_set(). By default it will only look for cursors
15955     * provided by the engine.
15956     *
15957     * @param obj an object with cursor already set.
15958     * @param engine_only boolean to define it cursors should be looked only
15959     * between the provided by the engine or searched on widget's theme as well.
15960     *
15961     * @ingroup Cursors
15962     */
15963    EAPI void         elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
15964
15965    /**
15966     * Get the cursor engine only usage for this object cursor.
15967     *
15968     * @param obj an object with cursor already set.
15969     * @return engine_only boolean to define it cursors should be
15970     * looked only between the provided by the engine or searched on
15971     * widget's theme as well. If the object does not have a cursor
15972     * set, then EINA_FALSE is returned.
15973     *
15974     * @ingroup Cursors
15975     */
15976    EAPI Eina_Bool    elm_object_cursor_engine_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15977
15978    /**
15979     * Get the configured cursor engine only usage
15980     *
15981     * This gets the globally configured exclusive usage of engine cursors.
15982     *
15983     * @return 1 if only engine cursors should be used
15984     * @ingroup Cursors
15985     */
15986    EAPI int          elm_cursor_engine_only_get(void);
15987
15988    /**
15989     * Set the configured cursor engine only usage
15990     *
15991     * This sets the globally configured exclusive usage of engine cursors.
15992     * It won't affect cursors set before changing this value.
15993     *
15994     * @param engine_only If 1 only engine cursors will be enabled, if 0 will
15995     * look for them on theme before.
15996     * @return EINA_TRUE if value is valid and setted (0 or 1)
15997     * @ingroup Cursors
15998     */
15999    EAPI Eina_Bool    elm_cursor_engine_only_set(int engine_only);
16000
16001    /**
16002     * @}
16003     */
16004
16005    /**
16006     * @defgroup Menu Menu
16007     *
16008     * @image html img/widget/menu/preview-00.png
16009     * @image latex img/widget/menu/preview-00.eps
16010     *
16011     * A menu is a list of items displayed above its parent. When the menu is
16012     * showing its parent is darkened. Each item can have a sub-menu. The menu
16013     * object can be used to display a menu on a right click event, in a toolbar,
16014     * anywhere.
16015     *
16016     * Signals that you can add callbacks for are:
16017     * @li "clicked" - the user clicked the empty space in the menu to dismiss.
16018     *
16019     * Default contents parts of the menu items that you can use for are:
16020     * @li "default" - A main content of the menu item
16021     *
16022     * Default text parts of the menu items that you can use for are:
16023     * @li "default" - label in the menu item
16024     *
16025     * @see @ref tutorial_menu
16026     * @{
16027     */
16028
16029    /**
16030     * @brief Add a new menu to the parent
16031     *
16032     * @param parent The parent object.
16033     * @return The new object or NULL if it cannot be created.
16034     */
16035    EAPI Evas_Object       *elm_menu_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16036    /**
16037     * @brief Set the parent for the given menu widget
16038     *
16039     * @param obj The menu object.
16040     * @param parent The new parent.
16041     */
16042    EAPI void               elm_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
16043    /**
16044     * @brief Get the parent for the given menu widget
16045     *
16046     * @param obj The menu object.
16047     * @return The parent.
16048     *
16049     * @see elm_menu_parent_set()
16050     */
16051    EAPI Evas_Object       *elm_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16052    /**
16053     * @brief Move the menu to a new position
16054     *
16055     * @param obj The menu object.
16056     * @param x The new position.
16057     * @param y The new position.
16058     *
16059     * Sets the top-left position of the menu to (@p x,@p y).
16060     *
16061     * @note @p x and @p y coordinates are relative to parent.
16062     */
16063    EAPI void               elm_menu_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
16064    /**
16065     * @brief Close a opened menu
16066     *
16067     * @param obj the menu object
16068     * @return void
16069     *
16070     * Hides the menu and all it's sub-menus.
16071     */
16072    EAPI void               elm_menu_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
16073    /**
16074     * @brief Returns a list of @p item's items.
16075     *
16076     * @param obj The menu object
16077     * @return An Eina_List* of @p item's items
16078     */
16079    EAPI const Eina_List   *elm_menu_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16080    /**
16081     * @brief Get the Evas_Object of an Elm_Object_Item
16082     *
16083     * @param it The menu item object.
16084     * @return The edje object containing the swallowed content
16085     *
16086     * @warning Don't manipulate this object!
16087     *
16088     */
16089    EAPI Evas_Object       *elm_menu_item_object_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16090    /**
16091     * @brief Add an item at the end of the given menu widget
16092     *
16093     * @param obj The menu object.
16094     * @param parent The parent menu item (optional)
16095     * @param icon An icon display on the item. The icon will be destryed by the menu.
16096     * @param label The label of the item.
16097     * @param func Function called when the user select the item.
16098     * @param data Data sent by the callback.
16099     * @return Returns the new item.
16100     */
16101    EAPI Elm_Object_Item     *elm_menu_item_add(Evas_Object *obj, Elm_Object_Item *parent, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
16102    /**
16103     * @brief Add an object swallowed in an item at the end of the given menu
16104     * widget
16105     *
16106     * @param obj The menu object.
16107     * @param parent The parent menu item (optional)
16108     * @param subobj The object to swallow
16109     * @param func Function called when the user select the item.
16110     * @param data Data sent by the callback.
16111     * @return Returns the new item.
16112     *
16113     * Add an evas object as an item to the menu.
16114     */
16115    EAPI Elm_Object_Item     *elm_menu_item_add_object(Evas_Object *obj, Elm_Object_Item *parent, Evas_Object *subobj, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
16116    /**
16117     * @brief Set the label of a menu item
16118     *
16119     * @param it The menu item object.
16120     * @param label The label to set for @p item
16121     *
16122     * @warning Don't use this funcion on items created with
16123     * elm_menu_item_add_object() or elm_menu_item_separator_add().
16124     *
16125     * @deprecated Use elm_object_item_text_set() instead
16126     */
16127    EINA_DEPRECATED EAPI void               elm_menu_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
16128    /**
16129     * @brief Get the label of a menu item
16130     *
16131     * @param it The menu item object.
16132     * @return The label of @p item
16133          * @deprecated Use elm_object_item_text_get() instead
16134     */
16135    EINA_DEPRECATED EAPI const char        *elm_menu_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16136    /**
16137     * @brief Set the icon of a menu item to the standard icon with name @p icon
16138     *
16139     * @param it The menu item object.
16140     * @param icon The icon object to set for the content of @p item
16141     *
16142     * Once this icon is set, any previously set icon will be deleted.
16143     */
16144    EAPI void               elm_menu_item_object_icon_name_set(Elm_Object_Item *it, const char *icon) EINA_ARG_NONNULL(1, 2);
16145    /**
16146     * @brief Get the string representation from the icon of a menu item
16147     *
16148     * @param it The menu item object.
16149     * @return The string representation of @p item's icon or NULL
16150     *
16151     * @see elm_menu_item_object_icon_name_set()
16152     */
16153    EAPI const char        *elm_menu_item_object_icon_name_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16154    /**
16155     * @brief Set the content object of a menu item
16156     *
16157     * @param it The menu item object
16158     * @param The content object or NULL
16159     * @return EINA_TRUE on success, else EINA_FALSE
16160     *
16161     * Use this function to change the object swallowed by a menu item, deleting
16162     * any previously swallowed object.
16163     *
16164     * @deprecated Use elm_object_item_content_set() instead
16165     */
16166    EINA_DEPRECATED EAPI Eina_Bool          elm_menu_item_object_content_set(Elm_Object_Item *it, Evas_Object *obj) EINA_ARG_NONNULL(1);
16167    /**
16168     * @brief Get the content object of a menu item
16169     *
16170     * @param it The menu item object
16171     * @return The content object or NULL
16172     * @note If @p item was added with elm_menu_item_add_object, this
16173     * function will return the object passed, else it will return the
16174     * icon object.
16175     *
16176     * @see elm_menu_item_object_content_set()
16177     *
16178     * @deprecated Use elm_object_item_content_get() instead
16179     */
16180    EINA_DEPRECATED EAPI Evas_Object *elm_menu_item_object_content_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16181    /**
16182     * @brief Set the selected state of @p item.
16183     *
16184     * @param it The menu item object.
16185     * @param selected The selected/unselected state of the item
16186     */
16187    EAPI void               elm_menu_item_selected_set(Elm_Object_Item *it, Eina_Bool selected) EINA_ARG_NONNULL(1);
16188    /**
16189     * @brief Get the selected state of @p item.
16190     *
16191     * @param it The menu item object.
16192     * @return The selected/unselected state of the item
16193     *
16194     * @see elm_menu_item_selected_set()
16195     */
16196    EAPI Eina_Bool          elm_menu_item_selected_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16197    /**
16198     * @brief Set the disabled state of @p item.
16199     *
16200     * @param it The menu item object.
16201     * @param disabled The enabled/disabled state of the item
16202     * @deprecated Use elm_object_item_disabled_set() instead
16203     */
16204    EINA_DEPRECATED EAPI void               elm_menu_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
16205    /**
16206     * @brief Get the disabled state of @p item.
16207     *
16208     * @param it The menu item object.
16209     * @return The enabled/disabled state of the item
16210     *
16211     * @see elm_menu_item_disabled_set()
16212     * @deprecated Use elm_object_item_disabled_get() instead
16213     */
16214    EINA_DEPRECATED EAPI Eina_Bool          elm_menu_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16215    /**
16216     * @brief Add a separator item to menu @p obj under @p parent.
16217     *
16218     * @param obj The menu object
16219     * @param parent The item to add the separator under
16220     * @return The created item or NULL on failure
16221     *
16222     * This is item is a @ref Separator.
16223     */
16224    EAPI Elm_Object_Item     *elm_menu_item_separator_add(Evas_Object *obj, Elm_Object_Item *parent) EINA_ARG_NONNULL(1);
16225    /**
16226     * @brief Returns whether @p item is a separator.
16227     *
16228     * @param it The item to check
16229     * @return If true, @p item is a separator
16230     *
16231     * @see elm_menu_item_separator_add()
16232     */
16233    EAPI Eina_Bool          elm_menu_item_is_separator(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16234    /**
16235     * @brief Deletes an item from the menu.
16236     *
16237     * @param it The item to delete.
16238     *
16239     * @see elm_menu_item_add()
16240     */
16241    EAPI void               elm_menu_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16242    /**
16243     * @brief Set the function called when a menu item is deleted.
16244     *
16245     * @param it The item to set the callback on
16246     * @param func The function called
16247     *
16248     * @see elm_menu_item_add()
16249     * @see elm_menu_item_del()
16250     */
16251    EAPI void               elm_menu_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
16252    /**
16253     * @brief Returns the data associated with menu item @p item.
16254     *
16255     * @param it The item
16256     * @return The data associated with @p item or NULL if none was set.
16257     *
16258     * This is the data set with elm_menu_add() or elm_menu_item_data_set().
16259          *
16260          * @deprecated Use elm_object_item_data_get() instead
16261     */
16262    EINA_DEPRECATED EAPI void              *elm_menu_item_data_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16263    /**
16264     * @brief Sets the data to be associated with menu item @p item.
16265     *
16266     * @param it The item
16267     * @param data The data to be associated with @p item
16268          *
16269          * @deprecated Use elm_object_item_data_set() instead
16270     */
16271    EINA_DEPRECATED EAPI void               elm_menu_item_data_set(Elm_Object_Item *it, const void *data) EINA_ARG_NONNULL(1);
16272
16273    /**
16274     * @brief Returns a list of @p item's subitems.
16275     *
16276     * @param it The item
16277     * @return An Eina_List* of @p item's subitems
16278     *
16279     * @see elm_menu_add()
16280     */
16281    EAPI const Eina_List   *elm_menu_item_subitems_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16282    /**
16283     * @brief Get the position of a menu item
16284     *
16285     * @param it The menu item
16286     * @return The item's index
16287     *
16288     * This function returns the index position of a menu item in a menu.
16289     * For a sub-menu, this number is relative to the first item in the sub-menu.
16290     *
16291     * @note Index values begin with 0
16292     */
16293    EAPI unsigned int       elm_menu_item_index_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1) EINA_PURE;
16294    /**
16295     * @brief @brief Return a menu item's owner menu
16296     *
16297     * @param it The menu item
16298     * @return The menu object owning @p item, or NULL on failure
16299     *
16300     * Use this function to get the menu object owning an item.
16301     */
16302    EAPI Evas_Object       *elm_menu_item_menu_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1) EINA_PURE;
16303    /**
16304     * @brief Get the selected item in the menu
16305     *
16306     * @param obj The menu object
16307     * @return The selected item, or NULL if none
16308     *
16309     * @see elm_menu_item_selected_get()
16310     * @see elm_menu_item_selected_set()
16311     */
16312    EAPI Elm_Object_Item *elm_menu_selected_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
16313    /**
16314     * @brief Get the last item in the menu
16315     *
16316     * @param obj The menu object
16317     * @return The last item, or NULL if none
16318     */
16319    EAPI Elm_Object_Item *elm_menu_last_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
16320    /**
16321     * @brief Get the first item in the menu
16322     *
16323     * @param obj The menu object
16324     * @return The first item, or NULL if none
16325     */
16326    EAPI Elm_Object_Item *elm_menu_first_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
16327    /**
16328     * @brief Get the next item in the menu.
16329     *
16330     * @param it The menu item object.
16331     * @return The item after it, or NULL if none
16332     */
16333    EAPI Elm_Object_Item *elm_menu_item_next_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16334    /**
16335     * @brief Get the previous item in the menu.
16336     *
16337     * @param it The menu item object.
16338     * @return The item before it, or NULL if none
16339     */
16340    EAPI Elm_Object_Item *elm_menu_item_prev_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16341    /**
16342     * @}
16343     */
16344
16345    /**
16346     * @defgroup List List
16347     * @ingroup Elementary
16348     *
16349     * @image html img/widget/list/preview-00.png
16350     * @image latex img/widget/list/preview-00.eps width=\textwidth
16351     *
16352     * @image html img/list.png
16353     * @image latex img/list.eps width=\textwidth
16354     *
16355     * A list widget is a container whose children are displayed vertically or
16356     * horizontally, in order, and can be selected.
16357     * The list can accept only one or multiple items selection. Also has many
16358     * modes of items displaying.
16359     *
16360     * A list is a very simple type of list widget.  For more robust
16361     * lists, @ref Genlist should probably be used.
16362     *
16363     * Smart callbacks one can listen to:
16364     * - @c "activated" - The user has double-clicked or pressed
16365     *   (enter|return|spacebar) on an item. The @c event_info parameter
16366     *   is the item that was activated.
16367     * - @c "clicked,double" - The user has double-clicked an item.
16368     *   The @c event_info parameter is the item that was double-clicked.
16369     * - "selected" - when the user selected an item
16370     * - "unselected" - when the user unselected an item
16371     * - "longpressed" - an item in the list is long-pressed
16372     * - "edge,top" - the list is scrolled until the top edge
16373     * - "edge,bottom" - the list is scrolled until the bottom edge
16374     * - "edge,left" - the list is scrolled until the left edge
16375     * - "edge,right" - the list is scrolled until the right edge
16376     * - "language,changed" - the program's language changed
16377     *
16378     * Available styles for it:
16379     * - @c "default"
16380     *
16381     * List of examples:
16382     * @li @ref list_example_01
16383     * @li @ref list_example_02
16384     * @li @ref list_example_03
16385     */
16386
16387    /**
16388     * @addtogroup List
16389     * @{
16390     */
16391
16392    /**
16393     * @enum _Elm_List_Mode
16394     * @typedef Elm_List_Mode
16395     *
16396     * Set list's resize behavior, transverse axis scroll and
16397     * items cropping. See each mode's description for more details.
16398     *
16399     * @note Default value is #ELM_LIST_SCROLL.
16400     *
16401     * Values <b> don't </b> work as bitmask, only one can be choosen.
16402     *
16403     * @see elm_list_mode_set()
16404     * @see elm_list_mode_get()
16405     *
16406     * @ingroup List
16407     */
16408    typedef enum _Elm_List_Mode
16409      {
16410         ELM_LIST_COMPRESS = 0, /**< Won't set any of its size hints to inform how a possible container should resize it. Then, if it's not created as a "resize object", it might end with zero dimensions. The list will respect the container's geometry and, if any of its items won't fit into its transverse axis, one won't be able to scroll it in that direction. */
16411         ELM_LIST_SCROLL, /**< Default value. Won't set any of its size hints to inform how a possible container should resize it. Then, if it's not created as a "resize object", it might end with zero dimensions. The list will respect the container's geometry and, if any of its items won't fit into its transverse axis, one will be able to scroll it in that direction (large items will get cropped). */
16412         ELM_LIST_LIMIT, /**< Set a minimun size hint on the list object, so that containers may respect it (and resize itself to fit the child properly). More specifically, a minimum size hint will be set for its transverse axis, so that the @b largest item in that direction fits well. Can have effects bounded by setting the list object's maximum size hints. */
16413         ELM_LIST_EXPAND, /**< Besides setting a minimum size on the transverse axis, just like the previous mode, will set a minimum size on the longitudinal axis too, trying to reserve space to all its children to be visible at a time. Can have effects bounded by setting the list object's maximum size hints. */
16414         ELM_LIST_LAST /**< Indicates error if returned by elm_list_mode_get() */
16415      } Elm_List_Mode;
16416
16417    typedef struct _Elm_List_Item Elm_List_Item; /**< Item of Elm_List. Sub-type of Elm_Widget_Item. Can be created with elm_list_item_append(), elm_list_item_prepend() and functions to add items in relative positions, like elm_list_item_insert_before(), and deleted with elm_list_item_del().  */
16418
16419    /**
16420     * Add a new list widget to the given parent Elementary
16421     * (container) object.
16422     *
16423     * @param parent The parent object.
16424     * @return a new list widget handle or @c NULL, on errors.
16425     *
16426     * This function inserts a new list widget on the canvas.
16427     *
16428     * @ingroup List
16429     */
16430    EAPI Evas_Object     *elm_list_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16431
16432    /**
16433     * Starts the list.
16434     *
16435     * @param obj The list object
16436     *
16437     * @note Call before running show() on the list object.
16438     * @warning If not called, it won't display the list properly.
16439     *
16440     * @code
16441     * li = elm_list_add(win);
16442     * elm_list_item_append(li, "First", NULL, NULL, NULL, NULL);
16443     * elm_list_item_append(li, "Second", NULL, NULL, NULL, NULL);
16444     * elm_list_go(li);
16445     * evas_object_show(li);
16446     * @endcode
16447     *
16448     * @ingroup List
16449     */
16450    EAPI void             elm_list_go(Evas_Object *obj) EINA_ARG_NONNULL(1);
16451
16452    /**
16453     * Enable or disable multiple items selection on the list object.
16454     *
16455     * @param obj The list object
16456     * @param multi @c EINA_TRUE to enable multi selection or @c EINA_FALSE to
16457     * disable it.
16458     *
16459     * Disabled by default. If disabled, the user can select a single item of
16460     * the list each time. Selected items are highlighted on list.
16461     * If enabled, many items can be selected.
16462     *
16463     * If a selected item is selected again, it will be unselected.
16464     *
16465     * @see elm_list_multi_select_get()
16466     *
16467     * @ingroup List
16468     */
16469    EAPI void             elm_list_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
16470
16471    /**
16472     * Get a value whether multiple items selection is enabled or not.
16473     *
16474     * @see elm_list_multi_select_set() for details.
16475     *
16476     * @param obj The list object.
16477     * @return @c EINA_TRUE means multiple items selection is enabled.
16478     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16479     * @c EINA_FALSE is returned.
16480     *
16481     * @ingroup List
16482     */
16483    EAPI Eina_Bool        elm_list_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16484
16485    /**
16486     * Set which mode to use for the list object.
16487     *
16488     * @param obj The list object
16489     * @param mode One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
16490     * #ELM_LIST_LIMIT or #ELM_LIST_EXPAND.
16491     *
16492     * Set list's resize behavior, transverse axis scroll and
16493     * items cropping. See each mode's description for more details.
16494     *
16495     * @note Default value is #ELM_LIST_SCROLL.
16496     *
16497     * Only one can be set, if a previous one was set, it will be changed
16498     * by the new mode set. Bitmask won't work as well.
16499     *
16500     * @see elm_list_mode_get()
16501     *
16502     * @ingroup List
16503     */
16504    EAPI void             elm_list_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
16505
16506    /**
16507     * Get the mode the list is at.
16508     *
16509     * @param obj The list object
16510     * @return One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
16511     * #ELM_LIST_LIMIT, #ELM_LIST_EXPAND or #ELM_LIST_LAST on errors.
16512     *
16513     * @note see elm_list_mode_set() for more information.
16514     *
16515     * @ingroup List
16516     */
16517    EAPI Elm_List_Mode    elm_list_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16518
16519    /**
16520     * Enable or disable horizontal mode on the list object.
16521     *
16522     * @param obj The list object.
16523     * @param horizontal @c EINA_TRUE to enable horizontal or @c EINA_FALSE to
16524     * disable it, i.e., to enable vertical mode.
16525     *
16526     * @note Vertical mode is set by default.
16527     *
16528     * On horizontal mode items are displayed on list from left to right,
16529     * instead of from top to bottom. Also, the list will scroll horizontally.
16530     * Each item will presents left icon on top and right icon, or end, at
16531     * the bottom.
16532     *
16533     * @see elm_list_horizontal_get()
16534     *
16535     * @ingroup List
16536     */
16537    EAPI void             elm_list_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
16538
16539    /**
16540     * Get a value whether horizontal mode is enabled or not.
16541     *
16542     * @param obj The list object.
16543     * @return @c EINA_TRUE means horizontal mode selection is enabled.
16544     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16545     * @c EINA_FALSE is returned.
16546     *
16547     * @see elm_list_horizontal_set() for details.
16548     *
16549     * @ingroup List
16550     */
16551    EAPI Eina_Bool        elm_list_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16552
16553    /**
16554     * Enable or disable always select mode on the list object.
16555     *
16556     * @param obj The list object
16557     * @param always_select @c EINA_TRUE to enable always select mode or
16558     * @c EINA_FALSE to disable it.
16559     *
16560     * @note Always select mode is disabled by default.
16561     *
16562     * Default behavior of list items is to only call its callback function
16563     * the first time it's pressed, i.e., when it is selected. If a selected
16564     * item is pressed again, and multi-select is disabled, it won't call
16565     * this function (if multi-select is enabled it will unselect the item).
16566     *
16567     * If always select is enabled, it will call the callback function
16568     * everytime a item is pressed, so it will call when the item is selected,
16569     * and again when a selected item is pressed.
16570     *
16571     * @see elm_list_always_select_mode_get()
16572     * @see elm_list_multi_select_set()
16573     *
16574     * @ingroup List
16575     */
16576    EAPI void             elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
16577
16578    /**
16579     * Get a value whether always select mode is enabled or not, meaning that
16580     * an item will always call its callback function, even if already selected.
16581     *
16582     * @param obj The list object
16583     * @return @c EINA_TRUE means horizontal mode selection is enabled.
16584     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16585     * @c EINA_FALSE is returned.
16586     *
16587     * @see elm_list_always_select_mode_set() for details.
16588     *
16589     * @ingroup List
16590     */
16591    EAPI Eina_Bool        elm_list_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16592
16593    /**
16594     * Set bouncing behaviour when the scrolled content reaches an edge.
16595     *
16596     * Tell the internal scroller object whether it should bounce or not
16597     * when it reaches the respective edges for each axis.
16598     *
16599     * @param obj The list object
16600     * @param h_bounce Whether to bounce or not in the horizontal axis.
16601     * @param v_bounce Whether to bounce or not in the vertical axis.
16602     *
16603     * @see elm_scroller_bounce_set()
16604     *
16605     * @ingroup List
16606     */
16607    EAPI void             elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
16608
16609    /**
16610     * Get the bouncing behaviour of the internal scroller.
16611     *
16612     * Get whether the internal scroller should bounce when the edge of each
16613     * axis is reached scrolling.
16614     *
16615     * @param obj The list object.
16616     * @param h_bounce Pointer where to store the bounce state of the horizontal
16617     * axis.
16618     * @param v_bounce Pointer where to store the bounce state of the vertical
16619     * axis.
16620     *
16621     * @see elm_scroller_bounce_get()
16622     * @see elm_list_bounce_set()
16623     *
16624     * @ingroup List
16625     */
16626    EAPI void             elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
16627
16628    /**
16629     * Set the scrollbar policy.
16630     *
16631     * @param obj The list object
16632     * @param policy_h Horizontal scrollbar policy.
16633     * @param policy_v Vertical scrollbar policy.
16634     *
16635     * This sets the scrollbar visibility policy for the given scroller.
16636     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
16637     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
16638     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
16639     * This applies respectively for the horizontal and vertical scrollbars.
16640     *
16641     * The both are disabled by default, i.e., are set to
16642     * #ELM_SCROLLER_POLICY_OFF.
16643     *
16644     * @ingroup List
16645     */
16646    EAPI void             elm_list_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
16647
16648    /**
16649     * Get the scrollbar policy.
16650     *
16651     * @see elm_list_scroller_policy_get() for details.
16652     *
16653     * @param obj The list object.
16654     * @param policy_h Pointer where to store horizontal scrollbar policy.
16655     * @param policy_v Pointer where to store vertical scrollbar policy.
16656     *
16657     * @ingroup List
16658     */
16659    EAPI void             elm_list_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
16660
16661    /**
16662     * Append a new item to the list object.
16663     *
16664     * @param obj The list object.
16665     * @param label The label of the list item.
16666     * @param icon The icon object to use for the left side of the item. An
16667     * icon can be any Evas object, but usually it is an icon created
16668     * with elm_icon_add().
16669     * @param end The icon object to use for the right side of the item. An
16670     * icon can be any Evas object.
16671     * @param func The function to call when the item is clicked.
16672     * @param data The data to associate with the item for related callbacks.
16673     *
16674     * @return The created item or @c NULL upon failure.
16675     *
16676     * A new item will be created and appended to the list, i.e., will
16677     * be set as @b last item.
16678     *
16679     * Items created with this method can be deleted with
16680     * elm_list_item_del().
16681     *
16682     * Associated @p data can be properly freed when item is deleted if a
16683     * callback function is set with elm_list_item_del_cb_set().
16684     *
16685     * If a function is passed as argument, it will be called everytime this item
16686     * is selected, i.e., the user clicks over an unselected item.
16687     * If always select is enabled it will call this function every time
16688     * user clicks over an item (already selected or not).
16689     * If such function isn't needed, just passing
16690     * @c NULL as @p func is enough. The same should be done for @p data.
16691     *
16692     * Simple example (with no function callback or data associated):
16693     * @code
16694     * li = elm_list_add(win);
16695     * ic = elm_icon_add(win);
16696     * elm_icon_file_set(ic, "path/to/image", NULL);
16697     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
16698     * elm_list_item_append(li, "label", ic, NULL, NULL, NULL);
16699     * elm_list_go(li);
16700     * evas_object_show(li);
16701     * @endcode
16702     *
16703     * @see elm_list_always_select_mode_set()
16704     * @see elm_list_item_del()
16705     * @see elm_list_item_del_cb_set()
16706     * @see elm_list_clear()
16707     * @see elm_icon_add()
16708     *
16709     * @ingroup List
16710     */
16711    EAPI Elm_List_Item   *elm_list_item_append(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
16712
16713    /**
16714     * Prepend a new item to the list object.
16715     *
16716     * @param obj The list object.
16717     * @param label The label of the list item.
16718     * @param icon The icon object to use for the left side of the item. An
16719     * icon can be any Evas object, but usually it is an icon created
16720     * with elm_icon_add().
16721     * @param end The icon object to use for the right side of the item. An
16722     * icon can be any Evas object.
16723     * @param func The function to call when the item is clicked.
16724     * @param data The data to associate with the item for related callbacks.
16725     *
16726     * @return The created item or @c NULL upon failure.
16727     *
16728     * A new item will be created and prepended to the list, i.e., will
16729     * be set as @b first item.
16730     *
16731     * Items created with this method can be deleted with
16732     * elm_list_item_del().
16733     *
16734     * Associated @p data can be properly freed when item is deleted if a
16735     * callback function is set with elm_list_item_del_cb_set().
16736     *
16737     * If a function is passed as argument, it will be called everytime this item
16738     * is selected, i.e., the user clicks over an unselected item.
16739     * If always select is enabled it will call this function every time
16740     * user clicks over an item (already selected or not).
16741     * If such function isn't needed, just passing
16742     * @c NULL as @p func is enough. The same should be done for @p data.
16743     *
16744     * @see elm_list_item_append() for a simple code example.
16745     * @see elm_list_always_select_mode_set()
16746     * @see elm_list_item_del()
16747     * @see elm_list_item_del_cb_set()
16748     * @see elm_list_clear()
16749     * @see elm_icon_add()
16750     *
16751     * @ingroup List
16752     */
16753    EAPI Elm_List_Item   *elm_list_item_prepend(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
16754
16755    /**
16756     * Insert a new item into the list object before item @p before.
16757     *
16758     * @param obj The list object.
16759     * @param before The list item to insert before.
16760     * @param label The label of the list item.
16761     * @param icon The icon object to use for the left side of the item. An
16762     * icon can be any Evas object, but usually it is an icon created
16763     * with elm_icon_add().
16764     * @param end The icon object to use for the right side of the item. An
16765     * icon can be any Evas object.
16766     * @param func The function to call when the item is clicked.
16767     * @param data The data to associate with the item for related callbacks.
16768     *
16769     * @return The created item or @c NULL upon failure.
16770     *
16771     * A new item will be created and added to the list. Its position in
16772     * this list will be just before item @p before.
16773     *
16774     * Items created with this method can be deleted with
16775     * elm_list_item_del().
16776     *
16777     * Associated @p data can be properly freed when item is deleted if a
16778     * callback function is set with elm_list_item_del_cb_set().
16779     *
16780     * If a function is passed as argument, it will be called everytime this item
16781     * is selected, i.e., the user clicks over an unselected item.
16782     * If always select is enabled it will call this function every time
16783     * user clicks over an item (already selected or not).
16784     * If such function isn't needed, just passing
16785     * @c NULL as @p func is enough. The same should be done for @p data.
16786     *
16787     * @see elm_list_item_append() for a simple code example.
16788     * @see elm_list_always_select_mode_set()
16789     * @see elm_list_item_del()
16790     * @see elm_list_item_del_cb_set()
16791     * @see elm_list_clear()
16792     * @see elm_icon_add()
16793     *
16794     * @ingroup List
16795     */
16796    EAPI Elm_List_Item   *elm_list_item_insert_before(Evas_Object *obj, Elm_List_Item *before, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
16797
16798    /**
16799     * Insert a new item into the list object after item @p after.
16800     *
16801     * @param obj The list object.
16802     * @param after The list item to insert after.
16803     * @param label The label of the list item.
16804     * @param icon The icon object to use for the left side of the item. An
16805     * icon can be any Evas object, but usually it is an icon created
16806     * with elm_icon_add().
16807     * @param end The icon object to use for the right side of the item. An
16808     * icon can be any Evas object.
16809     * @param func The function to call when the item is clicked.
16810     * @param data The data to associate with the item for related callbacks.
16811     *
16812     * @return The created item or @c NULL upon failure.
16813     *
16814     * A new item will be created and added to the list. Its position in
16815     * this list will be just after item @p after.
16816     *
16817     * Items created with this method can be deleted with
16818     * elm_list_item_del().
16819     *
16820     * Associated @p data can be properly freed when item is deleted if a
16821     * callback function is set with elm_list_item_del_cb_set().
16822     *
16823     * If a function is passed as argument, it will be called everytime this item
16824     * is selected, i.e., the user clicks over an unselected item.
16825     * If always select is enabled it will call this function every time
16826     * user clicks over an item (already selected or not).
16827     * If such function isn't needed, just passing
16828     * @c NULL as @p func is enough. The same should be done for @p data.
16829     *
16830     * @see elm_list_item_append() for a simple code example.
16831     * @see elm_list_always_select_mode_set()
16832     * @see elm_list_item_del()
16833     * @see elm_list_item_del_cb_set()
16834     * @see elm_list_clear()
16835     * @see elm_icon_add()
16836     *
16837     * @ingroup List
16838     */
16839    EAPI Elm_List_Item   *elm_list_item_insert_after(Evas_Object *obj, Elm_List_Item *after, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
16840
16841    /**
16842     * Insert a new item into the sorted list object.
16843     *
16844     * @param obj The list object.
16845     * @param label The label of the list item.
16846     * @param icon The icon object to use for the left side of the item. An
16847     * icon can be any Evas object, but usually it is an icon created
16848     * with elm_icon_add().
16849     * @param end The icon object to use for the right side of the item. An
16850     * icon can be any Evas object.
16851     * @param func The function to call when the item is clicked.
16852     * @param data The data to associate with the item for related callbacks.
16853     * @param cmp_func The comparing function to be used to sort list
16854     * items <b>by #Elm_List_Item item handles</b>. This function will
16855     * receive two items and compare them, returning a non-negative integer
16856     * if the second item should be place after the first, or negative value
16857     * if should be placed before.
16858     *
16859     * @return The created item or @c NULL upon failure.
16860     *
16861     * @note This function inserts values into a list object assuming it was
16862     * sorted and the result will be sorted.
16863     *
16864     * A new item will be created and added to the list. Its position in
16865     * this list will be found comparing the new item with previously inserted
16866     * items using function @p cmp_func.
16867     *
16868     * Items created with this method can be deleted with
16869     * elm_list_item_del().
16870     *
16871     * Associated @p data can be properly freed when item is deleted if a
16872     * callback function is set with elm_list_item_del_cb_set().
16873     *
16874     * If a function is passed as argument, it will be called everytime this item
16875     * is selected, i.e., the user clicks over an unselected item.
16876     * If always select is enabled it will call this function every time
16877     * user clicks over an item (already selected or not).
16878     * If such function isn't needed, just passing
16879     * @c NULL as @p func is enough. The same should be done for @p data.
16880     *
16881     * @see elm_list_item_append() for a simple code example.
16882     * @see elm_list_always_select_mode_set()
16883     * @see elm_list_item_del()
16884     * @see elm_list_item_del_cb_set()
16885     * @see elm_list_clear()
16886     * @see elm_icon_add()
16887     *
16888     * @ingroup List
16889     */
16890    EAPI Elm_List_Item   *elm_list_item_sorted_insert(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Object *end, Evas_Smart_Cb func, const void *data, Eina_Compare_Cb cmp_func) EINA_ARG_NONNULL(1);
16891
16892    /**
16893     * Remove all list's items.
16894     *
16895     * @param obj The list object
16896     *
16897     * @see elm_list_item_del()
16898     * @see elm_list_item_append()
16899     *
16900     * @ingroup List
16901     */
16902    EAPI void             elm_list_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
16903
16904    /**
16905     * Get a list of all the list items.
16906     *
16907     * @param obj The list object
16908     * @return An @c Eina_List of list items, #Elm_List_Item,
16909     * or @c NULL on failure.
16910     *
16911     * @see elm_list_item_append()
16912     * @see elm_list_item_del()
16913     * @see elm_list_clear()
16914     *
16915     * @ingroup List
16916     */
16917    EAPI const Eina_List *elm_list_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16918
16919    /**
16920     * Get the selected item.
16921     *
16922     * @param obj The list object.
16923     * @return The selected list item.
16924     *
16925     * The selected item can be unselected with function
16926     * elm_list_item_selected_set().
16927     *
16928     * The selected item always will be highlighted on list.
16929     *
16930     * @see elm_list_selected_items_get()
16931     *
16932     * @ingroup List
16933     */
16934    EAPI Elm_List_Item   *elm_list_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16935
16936    /**
16937     * Return a list of the currently selected list items.
16938     *
16939     * @param obj The list object.
16940     * @return An @c Eina_List of list items, #Elm_List_Item,
16941     * or @c NULL on failure.
16942     *
16943     * Multiple items can be selected if multi select is enabled. It can be
16944     * done with elm_list_multi_select_set().
16945     *
16946     * @see elm_list_selected_item_get()
16947     * @see elm_list_multi_select_set()
16948     *
16949     * @ingroup List
16950     */
16951    EAPI const Eina_List *elm_list_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16952
16953    /**
16954     * Set the selected state of an item.
16955     *
16956     * @param item The list item
16957     * @param selected The selected state
16958     *
16959     * This sets the selected state of the given item @p it.
16960     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
16961     *
16962     * If a new item is selected the previosly selected will be unselected,
16963     * unless multiple selection is enabled with elm_list_multi_select_set().
16964     * Previoulsy selected item can be get with function
16965     * elm_list_selected_item_get().
16966     *
16967     * Selected items will be highlighted.
16968     *
16969     * @see elm_list_item_selected_get()
16970     * @see elm_list_selected_item_get()
16971     * @see elm_list_multi_select_set()
16972     *
16973     * @ingroup List
16974     */
16975    EAPI void             elm_list_item_selected_set(Elm_List_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
16976
16977    /*
16978     * Get whether the @p item is selected or not.
16979     *
16980     * @param item The list item.
16981     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
16982     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
16983     *
16984     * @see elm_list_selected_item_set() for details.
16985     * @see elm_list_item_selected_get()
16986     *
16987     * @ingroup List
16988     */
16989    EAPI Eina_Bool        elm_list_item_selected_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16990
16991    /**
16992     * Set or unset item as a separator.
16993     *
16994     * @param it The list item.
16995     * @param setting @c EINA_TRUE to set item @p it as separator or
16996     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
16997     *
16998     * Items aren't set as separator by default.
16999     *
17000     * If set as separator it will display separator theme, so won't display
17001     * icons or label.
17002     *
17003     * @see elm_list_item_separator_get()
17004     *
17005     * @ingroup List
17006     */
17007    EAPI void             elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting) EINA_ARG_NONNULL(1);
17008
17009    /**
17010     * Get a value whether item is a separator or not.
17011     *
17012     * @see elm_list_item_separator_set() for details.
17013     *
17014     * @param it The list item.
17015     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
17016     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
17017     *
17018     * @ingroup List
17019     */
17020    EAPI Eina_Bool        elm_list_item_separator_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17021
17022    /**
17023     * Show @p item in the list view.
17024     *
17025     * @param item The list item to be shown.
17026     *
17027     * It won't animate list until item is visible. If such behavior is wanted,
17028     * use elm_list_bring_in() intead.
17029     *
17030     * @ingroup List
17031     */
17032    EAPI void             elm_list_item_show(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17033
17034    /**
17035     * Bring in the given item to list view.
17036     *
17037     * @param item The item.
17038     *
17039     * This causes list to jump to the given item @p item and show it
17040     * (by scrolling), if it is not fully visible.
17041     *
17042     * This may use animation to do so and take a period of time.
17043     *
17044     * If animation isn't wanted, elm_list_item_show() can be used.
17045     *
17046     * @ingroup List
17047     */
17048    EAPI void             elm_list_item_bring_in(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17049
17050    /**
17051     * Delete them item from the list.
17052     *
17053     * @param item The item of list to be deleted.
17054     *
17055     * If deleting all list items is required, elm_list_clear()
17056     * should be used instead of getting items list and deleting each one.
17057     *
17058     * @see elm_list_clear()
17059     * @see elm_list_item_append()
17060     * @see elm_list_item_del_cb_set()
17061     *
17062     * @ingroup List
17063     */
17064    EAPI void             elm_list_item_del(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17065
17066    /**
17067     * Set the function called when a list item is freed.
17068     *
17069     * @param item The item to set the callback on
17070     * @param func The function called
17071     *
17072     * If there is a @p func, then it will be called prior item's memory release.
17073     * That will be called with the following arguments:
17074     * @li item's data;
17075     * @li item's Evas object;
17076     * @li item itself;
17077     *
17078     * This way, a data associated to a list item could be properly freed.
17079     *
17080     * @ingroup List
17081     */
17082    EAPI void             elm_list_item_del_cb_set(Elm_List_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
17083
17084    /**
17085     * Get the data associated to the item.
17086     *
17087     * @param item The list item
17088     * @return The data associated to @p item
17089     *
17090     * The return value is a pointer to data associated to @p item when it was
17091     * created, with function elm_list_item_append() or similar. If no data
17092     * was passed as argument, it will return @c NULL.
17093     *
17094     * @see elm_list_item_append()
17095     *
17096     * @ingroup List
17097     */
17098    EAPI void            *elm_list_item_data_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17099
17100    /**
17101     * Get the left side icon associated to the item.
17102     *
17103     * @param item The list item
17104     * @return The left side icon associated to @p item
17105     *
17106     * The return value is a pointer to the icon associated to @p item when
17107     * it was
17108     * created, with function elm_list_item_append() or similar, or later
17109     * with function elm_list_item_icon_set(). If no icon
17110     * was passed as argument, it will return @c NULL.
17111     *
17112     * @see elm_list_item_append()
17113     * @see elm_list_item_icon_set()
17114     *
17115     * @ingroup List
17116     */
17117    EAPI Evas_Object     *elm_list_item_icon_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17118
17119    /**
17120     * Set the left side icon associated to the item.
17121     *
17122     * @param item The list item
17123     * @param icon The left side icon object to associate with @p item
17124     *
17125     * The icon object to use at left side of the item. An
17126     * icon can be any Evas object, but usually it is an icon created
17127     * with elm_icon_add().
17128     *
17129     * Once the icon object is set, a previously set one will be deleted.
17130     * @warning Setting the same icon for two items will cause the icon to
17131     * dissapear from the first item.
17132     *
17133     * If an icon was passed as argument on item creation, with function
17134     * elm_list_item_append() or similar, it will be already
17135     * associated to the item.
17136     *
17137     * @see elm_list_item_append()
17138     * @see elm_list_item_icon_get()
17139     *
17140     * @ingroup List
17141     */
17142    EAPI void             elm_list_item_icon_set(Elm_List_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
17143
17144    /**
17145     * Get the right side icon associated to the item.
17146     *
17147     * @param item The list item
17148     * @return The right side icon associated to @p item
17149     *
17150     * The return value is a pointer to the icon associated to @p item when
17151     * it was
17152     * created, with function elm_list_item_append() or similar, or later
17153     * with function elm_list_item_icon_set(). If no icon
17154     * was passed as argument, it will return @c NULL.
17155     *
17156     * @see elm_list_item_append()
17157     * @see elm_list_item_icon_set()
17158     *
17159     * @ingroup List
17160     */
17161    EAPI Evas_Object     *elm_list_item_end_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17162
17163    /**
17164     * Set the right side icon associated to the item.
17165     *
17166     * @param item The list item
17167     * @param end The right side icon object to associate with @p item
17168     *
17169     * The icon object to use at right side of the item. An
17170     * icon can be any Evas object, but usually it is an icon created
17171     * with elm_icon_add().
17172     *
17173     * Once the icon object is set, a previously set one will be deleted.
17174     * @warning Setting the same icon for two items will cause the icon to
17175     * dissapear from the first item.
17176     *
17177     * If an icon was passed as argument on item creation, with function
17178     * elm_list_item_append() or similar, it will be already
17179     * associated to the item.
17180     *
17181     * @see elm_list_item_append()
17182     * @see elm_list_item_end_get()
17183     *
17184     * @ingroup List
17185     */
17186    EAPI void             elm_list_item_end_set(Elm_List_Item *item, Evas_Object *end) EINA_ARG_NONNULL(1);
17187
17188    /**
17189     * Gets the base object of the item.
17190     *
17191     * @param item The list item
17192     * @return The base object associated with @p item
17193     *
17194     * Base object is the @c Evas_Object that represents that item.
17195     *
17196     * @ingroup List
17197     */
17198    EAPI Evas_Object     *elm_list_item_object_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17199    EINA_DEPRECATED EAPI Evas_Object     *elm_list_item_base_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17200
17201    /**
17202     * Get the label of item.
17203     *
17204     * @param item The item of list.
17205     * @return The label of item.
17206     *
17207     * The return value is a pointer to the label associated to @p item when
17208     * it was created, with function elm_list_item_append(), or later
17209     * with function elm_list_item_label_set. If no label
17210     * was passed as argument, it will return @c NULL.
17211     *
17212     * @see elm_list_item_label_set() for more details.
17213     * @see elm_list_item_append()
17214     *
17215     * @ingroup List
17216     */
17217    EAPI const char      *elm_list_item_label_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17218
17219    /**
17220     * Set the label of item.
17221     *
17222     * @param item The item of list.
17223     * @param text The label of item.
17224     *
17225     * The label to be displayed by the item.
17226     * Label will be placed between left and right side icons (if set).
17227     *
17228     * If a label was passed as argument on item creation, with function
17229     * elm_list_item_append() or similar, it will be already
17230     * displayed by the item.
17231     *
17232     * @see elm_list_item_label_get()
17233     * @see elm_list_item_append()
17234     *
17235     * @ingroup List
17236     */
17237    EAPI void             elm_list_item_label_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
17238
17239
17240    /**
17241     * Get the item before @p it in list.
17242     *
17243     * @param it The list item.
17244     * @return The item before @p it, or @c NULL if none or on failure.
17245     *
17246     * @note If it is the first item, @c NULL will be returned.
17247     *
17248     * @see elm_list_item_append()
17249     * @see elm_list_items_get()
17250     *
17251     * @ingroup List
17252     */
17253    EAPI Elm_List_Item   *elm_list_item_prev(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17254
17255    /**
17256     * Get the item after @p it in list.
17257     *
17258     * @param it The list item.
17259     * @return The item after @p it, or @c NULL if none or on failure.
17260     *
17261     * @note If it is the last item, @c NULL will be returned.
17262     *
17263     * @see elm_list_item_append()
17264     * @see elm_list_items_get()
17265     *
17266     * @ingroup List
17267     */
17268    EAPI Elm_List_Item   *elm_list_item_next(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17269
17270    /**
17271     * Sets the disabled/enabled state of a list item.
17272     *
17273     * @param it The item.
17274     * @param disabled The disabled state.
17275     *
17276     * A disabled item cannot be selected or unselected. It will also
17277     * change its appearance (generally greyed out). This sets the
17278     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
17279     * enabled).
17280     *
17281     * @ingroup List
17282     */
17283    EAPI void             elm_list_item_disabled_set(Elm_List_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
17284
17285    /**
17286     * Get a value whether list item is disabled or not.
17287     *
17288     * @param it The item.
17289     * @return The disabled state.
17290     *
17291     * @see elm_list_item_disabled_set() for more details.
17292     *
17293     * @ingroup List
17294     */
17295    EAPI Eina_Bool        elm_list_item_disabled_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17296
17297    /**
17298     * Set the text to be shown in a given list item's tooltips.
17299     *
17300     * @param item Target item.
17301     * @param text The text to set in the content.
17302     *
17303     * Setup the text as tooltip to object. The item can have only one tooltip,
17304     * so any previous tooltip data - set with this function or
17305     * elm_list_item_tooltip_content_cb_set() - is removed.
17306     *
17307     * @see elm_object_tooltip_text_set() for more details.
17308     *
17309     * @ingroup List
17310     */
17311    EAPI void             elm_list_item_tooltip_text_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
17312
17313
17314    /**
17315     * @brief Disable size restrictions on an object's tooltip
17316     * @param item The tooltip's anchor object
17317     * @param disable If EINA_TRUE, size restrictions are disabled
17318     * @return EINA_FALSE on failure, EINA_TRUE on success
17319     *
17320     * This function allows a tooltip to expand beyond its parant window's canvas.
17321     * It will instead be limited only by the size of the display.
17322     */
17323    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disable(Elm_List_Item *item, Eina_Bool disable) EINA_ARG_NONNULL(1);
17324    /**
17325     * @brief Retrieve size restriction state of an object's tooltip
17326     * @param obj The tooltip's anchor object
17327     * @return If EINA_TRUE, size restrictions are disabled
17328     *
17329     * This function returns whether a tooltip is allowed to expand beyond
17330     * its parant window's canvas.
17331     * It will instead be limited only by the size of the display.
17332     */
17333    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disabled_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17334
17335    /**
17336     * Set the content to be shown in the tooltip item.
17337     *
17338     * Setup the tooltip to item. The item can have only one tooltip,
17339     * so any previous tooltip data is removed. @p func(with @p data) will
17340     * be called every time that need show the tooltip and it should
17341     * return a valid Evas_Object. This object is then managed fully by
17342     * tooltip system and is deleted when the tooltip is gone.
17343     *
17344     * @param item the list item being attached a tooltip.
17345     * @param func the function used to create the tooltip contents.
17346     * @param data what to provide to @a func as callback data/context.
17347     * @param del_cb called when data is not needed anymore, either when
17348     *        another callback replaces @a func, the tooltip is unset with
17349     *        elm_list_item_tooltip_unset() or the owner @a item
17350     *        dies. This callback receives as the first parameter the
17351     *        given @a data, and @c event_info is the item.
17352     *
17353     * @see elm_object_tooltip_content_cb_set() for more details.
17354     *
17355     * @ingroup List
17356     */
17357    EAPI void             elm_list_item_tooltip_content_cb_set(Elm_List_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
17358
17359    /**
17360     * Unset tooltip from item.
17361     *
17362     * @param item list item to remove previously set tooltip.
17363     *
17364     * Remove tooltip from item. The callback provided as del_cb to
17365     * elm_list_item_tooltip_content_cb_set() will be called to notify
17366     * it is not used anymore.
17367     *
17368     * @see elm_object_tooltip_unset() for more details.
17369     * @see elm_list_item_tooltip_content_cb_set()
17370     *
17371     * @ingroup List
17372     */
17373    EAPI void             elm_list_item_tooltip_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17374
17375    /**
17376     * Sets a different style for this item tooltip.
17377     *
17378     * @note before you set a style you should define a tooltip with
17379     *       elm_list_item_tooltip_content_cb_set() or
17380     *       elm_list_item_tooltip_text_set()
17381     *
17382     * @param item list item with tooltip already set.
17383     * @param style the theme style to use (default, transparent, ...)
17384     *
17385     * @see elm_object_tooltip_style_set() for more details.
17386     *
17387     * @ingroup List
17388     */
17389    EAPI void             elm_list_item_tooltip_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
17390
17391    /**
17392     * Get the style for this item tooltip.
17393     *
17394     * @param item list item with tooltip already set.
17395     * @return style the theme style in use, defaults to "default". If the
17396     *         object does not have a tooltip set, then NULL is returned.
17397     *
17398     * @see elm_object_tooltip_style_get() for more details.
17399     * @see elm_list_item_tooltip_style_set()
17400     *
17401     * @ingroup List
17402     */
17403    EAPI const char      *elm_list_item_tooltip_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17404
17405    /**
17406     * Set the type of mouse pointer/cursor decoration to be shown,
17407     * when the mouse pointer is over the given list widget item
17408     *
17409     * @param item list item to customize cursor on
17410     * @param cursor the cursor type's name
17411     *
17412     * This function works analogously as elm_object_cursor_set(), but
17413     * here the cursor's changing area is restricted to the item's
17414     * area, and not the whole widget's. Note that that item cursors
17415     * have precedence over widget cursors, so that a mouse over an
17416     * item with custom cursor set will always show @b that cursor.
17417     *
17418     * If this function is called twice for an object, a previously set
17419     * cursor will be unset on the second call.
17420     *
17421     * @see elm_object_cursor_set()
17422     * @see elm_list_item_cursor_get()
17423     * @see elm_list_item_cursor_unset()
17424     *
17425     * @ingroup List
17426     */
17427    EAPI void             elm_list_item_cursor_set(Elm_List_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
17428
17429    /*
17430     * Get the type of mouse pointer/cursor decoration set to be shown,
17431     * when the mouse pointer is over the given list widget item
17432     *
17433     * @param item list item with custom cursor set
17434     * @return the cursor type's name or @c NULL, if no custom cursors
17435     * were set to @p item (and on errors)
17436     *
17437     * @see elm_object_cursor_get()
17438     * @see elm_list_item_cursor_set()
17439     * @see elm_list_item_cursor_unset()
17440     *
17441     * @ingroup List
17442     */
17443    EAPI const char      *elm_list_item_cursor_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17444
17445    /**
17446     * Unset any custom mouse pointer/cursor decoration set to be
17447     * shown, when the mouse pointer is over the given list widget
17448     * item, thus making it show the @b default cursor again.
17449     *
17450     * @param item a list item
17451     *
17452     * Use this call to undo any custom settings on this item's cursor
17453     * decoration, bringing it back to defaults (no custom style set).
17454     *
17455     * @see elm_object_cursor_unset()
17456     * @see elm_list_item_cursor_set()
17457     *
17458     * @ingroup List
17459     */
17460    EAPI void             elm_list_item_cursor_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17461
17462    /**
17463     * Set a different @b style for a given custom cursor set for a
17464     * list item.
17465     *
17466     * @param item list item with custom cursor set
17467     * @param style the <b>theme style</b> to use (e.g. @c "default",
17468     * @c "transparent", etc)
17469     *
17470     * This function only makes sense when one is using custom mouse
17471     * cursor decorations <b>defined in a theme file</b>, which can have,
17472     * given a cursor name/type, <b>alternate styles</b> on it. It
17473     * works analogously as elm_object_cursor_style_set(), but here
17474     * applyed only to list item objects.
17475     *
17476     * @warning Before you set a cursor style you should have definen a
17477     *       custom cursor previously on the item, with
17478     *       elm_list_item_cursor_set()
17479     *
17480     * @see elm_list_item_cursor_engine_only_set()
17481     * @see elm_list_item_cursor_style_get()
17482     *
17483     * @ingroup List
17484     */
17485    EAPI void             elm_list_item_cursor_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
17486
17487    /**
17488     * Get the current @b style set for a given list item's custom
17489     * cursor
17490     *
17491     * @param item list item with custom cursor set.
17492     * @return style the cursor style in use. If the object does not
17493     *         have a cursor set, then @c NULL is returned.
17494     *
17495     * @see elm_list_item_cursor_style_set() for more details
17496     *
17497     * @ingroup List
17498     */
17499    EAPI const char      *elm_list_item_cursor_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17500
17501    /**
17502     * Set if the (custom)cursor for a given list item should be
17503     * searched in its theme, also, or should only rely on the
17504     * rendering engine.
17505     *
17506     * @param item item with custom (custom) cursor already set on
17507     * @param engine_only Use @c EINA_TRUE to have cursors looked for
17508     * only on those provided by the rendering engine, @c EINA_FALSE to
17509     * have them searched on the widget's theme, as well.
17510     *
17511     * @note This call is of use only if you've set a custom cursor
17512     * for list items, with elm_list_item_cursor_set().
17513     *
17514     * @note By default, cursors will only be looked for between those
17515     * provided by the rendering engine.
17516     *
17517     * @ingroup List
17518     */
17519    EAPI void             elm_list_item_cursor_engine_only_set(Elm_List_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
17520
17521    /**
17522     * Get if the (custom) cursor for a given list item is being
17523     * searched in its theme, also, or is only relying on the rendering
17524     * engine.
17525     *
17526     * @param item a list item
17527     * @return @c EINA_TRUE, if cursors are being looked for only on
17528     * those provided by the rendering engine, @c EINA_FALSE if they
17529     * are being searched on the widget's theme, as well.
17530     *
17531     * @see elm_list_item_cursor_engine_only_set(), for more details
17532     *
17533     * @ingroup List
17534     */
17535    EAPI Eina_Bool        elm_list_item_cursor_engine_only_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17536
17537    /**
17538     * @}
17539     */
17540
17541    /**
17542     * @defgroup Slider Slider
17543     * @ingroup Elementary
17544     *
17545     * @image html img/widget/slider/preview-00.png
17546     * @image latex img/widget/slider/preview-00.eps width=\textwidth
17547     *
17548     * The slider adds a dragable ā€œsliderā€ widget for selecting the value of
17549     * something within a range.
17550     *
17551     * A slider can be horizontal or vertical. It can contain an Icon and has a
17552     * primary label as well as a units label (that is formatted with floating
17553     * point values and thus accepts a printf-style format string, like
17554     * ā€œ%1.2f unitsā€. There is also an indicator string that may be somewhere
17555     * else (like on the slider itself) that also accepts a format string like
17556     * units. Label, Icon Unit and Indicator strings/objects are optional.
17557     *
17558     * A slider may be inverted which means values invert, with high vales being
17559     * on the left or top and low values on the right or bottom (as opposed to
17560     * normally being low on the left or top and high on the bottom and right).
17561     *
17562     * The slider should have its minimum and maximum values set by the
17563     * application with  elm_slider_min_max_set() and value should also be set by
17564     * the application before use with  elm_slider_value_set(). The span of the
17565     * slider is its length (horizontally or vertically). This will be scaled by
17566     * the object or applications scaling factor. At any point code can query the
17567     * slider for its value with elm_slider_value_get().
17568     *
17569     * Smart callbacks one can listen to:
17570     * - "changed" - Whenever the slider value is changed by the user.
17571     * - "slider,drag,start" - dragging the slider indicator around has started.
17572     * - "slider,drag,stop" - dragging the slider indicator around has stopped.
17573     * - "delay,changed" - A short time after the value is changed by the user.
17574     * This will be called only when the user stops dragging for
17575     * a very short period or when they release their
17576     * finger/mouse, so it avoids possibly expensive reactions to
17577     * the value change.
17578     *
17579     * Available styles for it:
17580     * - @c "default"
17581     *
17582     * Default contents parts of the slider widget that you can use for are:
17583     * @li "icon" - An icon of the slider
17584     * @li "end" - A end part content of the slider
17585     *
17586     * Default text parts of the silder widget that you can use for are:
17587     * @li "default" - Label of the silder
17588     * Here is an example on its usage:
17589     * @li @ref slider_example
17590     */
17591
17592    /**
17593     * @addtogroup Slider
17594     * @{
17595     */
17596
17597    /**
17598     * Add a new slider widget to the given parent Elementary
17599     * (container) object.
17600     *
17601     * @param parent The parent object.
17602     * @return a new slider widget handle or @c NULL, on errors.
17603     *
17604     * This function inserts a new slider widget on the canvas.
17605     *
17606     * @ingroup Slider
17607     */
17608    EAPI Evas_Object       *elm_slider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
17609
17610    /**
17611     * Set the label of a given slider widget
17612     *
17613     * @param obj The progress bar object
17614     * @param label The text label string, in UTF-8
17615     *
17616     * @ingroup Slider
17617     * @deprecated use elm_object_text_set() instead.
17618     */
17619    EINA_DEPRECATED EAPI void               elm_slider_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
17620
17621    /**
17622     * Get the label of a given slider widget
17623     *
17624     * @param obj The progressbar object
17625     * @return The text label string, in UTF-8
17626     *
17627     * @ingroup Slider
17628     * @deprecated use elm_object_text_get() instead.
17629     */
17630    EINA_DEPRECATED EAPI const char        *elm_slider_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17631
17632    /**
17633     * Set the icon object of the slider object.
17634     *
17635     * @param obj The slider object.
17636     * @param icon The icon object.
17637     *
17638     * On horizontal mode, icon is placed at left, and on vertical mode,
17639     * placed at top.
17640     *
17641     * @note Once the icon object is set, a previously set one will be deleted.
17642     * If you want to keep that old content object, use the
17643     * elm_slider_icon_unset() function.
17644     *
17645     * @warning If the object being set does not have minimum size hints set,
17646     * it won't get properly displayed.
17647     *
17648     * @ingroup Slider
17649     * @deprecated use elm_object_part_content_set() instead.
17650     */
17651    EINA_DEPRECATED EAPI void               elm_slider_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
17652
17653    /**
17654     * Unset an icon set on a given slider widget.
17655     *
17656     * @param obj The slider object.
17657     * @return The icon object that was being used, if any was set, or
17658     * @c NULL, otherwise (and on errors).
17659     *
17660     * On horizontal mode, icon is placed at left, and on vertical mode,
17661     * placed at top.
17662     *
17663     * This call will unparent and return the icon object which was set
17664     * for this widget, previously, on success.
17665     *
17666     * @see elm_slider_icon_set() for more details
17667     * @see elm_slider_icon_get()
17668     * @deprecated use elm_object_part_content_unset() instead.
17669     *
17670     * @ingroup Slider
17671     */
17672    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
17673
17674    /**
17675     * Retrieve the icon object set for a given slider widget.
17676     *
17677     * @param obj The slider object.
17678     * @return The icon object's handle, if @p obj had one set, or @c NULL,
17679     * otherwise (and on errors).
17680     *
17681     * On horizontal mode, icon is placed at left, and on vertical mode,
17682     * placed at top.
17683     *
17684     * @see elm_slider_icon_set() for more details
17685     * @see elm_slider_icon_unset()
17686     *
17687     * @deprecated use elm_object_part_content_get() instead.
17688     *
17689     * @ingroup Slider
17690     */
17691    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17692
17693    /**
17694     * Set the end object of the slider object.
17695     *
17696     * @param obj The slider object.
17697     * @param end The end object.
17698     *
17699     * On horizontal mode, end is placed at left, and on vertical mode,
17700     * placed at bottom.
17701     *
17702     * @note Once the icon object is set, a previously set one will be deleted.
17703     * If you want to keep that old content object, use the
17704     * elm_slider_end_unset() function.
17705     *
17706     * @warning If the object being set does not have minimum size hints set,
17707     * it won't get properly displayed.
17708     *
17709     * @deprecated use elm_object_part_content_set() instead.
17710     *
17711     * @ingroup Slider
17712     */
17713    EINA_DEPRECATED EAPI void               elm_slider_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1);
17714
17715    /**
17716     * Unset an end object set on a given slider widget.
17717     *
17718     * @param obj The slider object.
17719     * @return The end object that was being used, if any was set, or
17720     * @c NULL, otherwise (and on errors).
17721     *
17722     * On horizontal mode, end is placed at left, and on vertical mode,
17723     * placed at bottom.
17724     *
17725     * This call will unparent and return the icon object which was set
17726     * for this widget, previously, on success.
17727     *
17728     * @see elm_slider_end_set() for more details.
17729     * @see elm_slider_end_get()
17730     *
17731     * @deprecated use elm_object_part_content_unset() instead
17732     * instead.
17733     *
17734     * @ingroup Slider
17735     */
17736    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
17737
17738    /**
17739     * Retrieve the end object set for a given slider widget.
17740     *
17741     * @param obj The slider object.
17742     * @return The end object's handle, if @p obj had one set, or @c NULL,
17743     * otherwise (and on errors).
17744     *
17745     * On horizontal mode, icon is placed at right, and on vertical mode,
17746     * placed at bottom.
17747     *
17748     * @see elm_slider_end_set() for more details.
17749     * @see elm_slider_end_unset()
17750     *
17751     *
17752     * @deprecated use elm_object_part_content_get() instead
17753     * instead.
17754     *
17755     * @ingroup Slider
17756     */
17757    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17758
17759    /**
17760     * Set the (exact) length of the bar region of a given slider widget.
17761     *
17762     * @param obj The slider object.
17763     * @param size The length of the slider's bar region.
17764     *
17765     * This sets the minimum width (when in horizontal mode) or height
17766     * (when in vertical mode) of the actual bar area of the slider
17767     * @p obj. This in turn affects the object's minimum size. Use
17768     * this when you're not setting other size hints expanding on the
17769     * given direction (like weight and alignment hints) and you would
17770     * like it to have a specific size.
17771     *
17772     * @note Icon, end, label, indicator and unit text around @p obj
17773     * will require their
17774     * own space, which will make @p obj to require more the @p size,
17775     * actually.
17776     *
17777     * @see elm_slider_span_size_get()
17778     *
17779     * @ingroup Slider
17780     */
17781    EAPI void               elm_slider_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
17782
17783    /**
17784     * Get the length set for the bar region of a given slider widget
17785     *
17786     * @param obj The slider object.
17787     * @return The length of the slider's bar region.
17788     *
17789     * If that size was not set previously, with
17790     * elm_slider_span_size_set(), this call will return @c 0.
17791     *
17792     * @ingroup Slider
17793     */
17794    EAPI Evas_Coord         elm_slider_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17795
17796    /**
17797     * Set the format string for the unit label.
17798     *
17799     * @param obj The slider object.
17800     * @param format The format string for the unit display.
17801     *
17802     * Unit label is displayed all the time, if set, after slider's bar.
17803     * In horizontal mode, at right and in vertical mode, at bottom.
17804     *
17805     * If @c NULL, unit label won't be visible. If not it sets the format
17806     * string for the label text. To the label text is provided a floating point
17807     * value, so the label text can display up to 1 floating point value.
17808     * Note that this is optional.
17809     *
17810     * Use a format string such as "%1.2f meters" for example, and it will
17811     * display values like: "3.14 meters" for a value equal to 3.14159.
17812     *
17813     * Default is unit label disabled.
17814     *
17815     * @see elm_slider_indicator_format_get()
17816     *
17817     * @ingroup Slider
17818     */
17819    EAPI void               elm_slider_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
17820
17821    /**
17822     * Get the unit label format of the slider.
17823     *
17824     * @param obj The slider object.
17825     * @return The unit label format string in UTF-8.
17826     *
17827     * Unit label is displayed all the time, if set, after slider's bar.
17828     * In horizontal mode, at right and in vertical mode, at bottom.
17829     *
17830     * @see elm_slider_unit_format_set() for more
17831     * information on how this works.
17832     *
17833     * @ingroup Slider
17834     */
17835    EAPI const char        *elm_slider_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17836
17837    /**
17838     * Set the format string for the indicator label.
17839     *
17840     * @param obj The slider object.
17841     * @param indicator The format string for the indicator display.
17842     *
17843     * The slider may display its value somewhere else then unit label,
17844     * for example, above the slider knob that is dragged around. This function
17845     * sets the format string used for this.
17846     *
17847     * If @c NULL, indicator label won't be visible. If not it sets the format
17848     * string for the label text. To the label text is provided a floating point
17849     * value, so the label text can display up to 1 floating point value.
17850     * Note that this is optional.
17851     *
17852     * Use a format string such as "%1.2f meters" for example, and it will
17853     * display values like: "3.14 meters" for a value equal to 3.14159.
17854     *
17855     * Default is indicator label disabled.
17856     *
17857     * @see elm_slider_indicator_format_get()
17858     *
17859     * @ingroup Slider
17860     */
17861    EAPI void               elm_slider_indicator_format_set(Evas_Object *obj, const char *indicator) EINA_ARG_NONNULL(1);
17862
17863    /**
17864     * Get the indicator label format of the slider.
17865     *
17866     * @param obj The slider object.
17867     * @return The indicator label format string in UTF-8.
17868     *
17869     * The slider may display its value somewhere else then unit label,
17870     * for example, above the slider knob that is dragged around. This function
17871     * gets the format string used for this.
17872     *
17873     * @see elm_slider_indicator_format_set() for more
17874     * information on how this works.
17875     *
17876     * @ingroup Slider
17877     */
17878    EAPI const char        *elm_slider_indicator_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17879
17880    /**
17881     * Set the format function pointer for the indicator label
17882     *
17883     * @param obj The slider object.
17884     * @param func The indicator format function.
17885     * @param free_func The freeing function for the format string.
17886     *
17887     * Set the callback function to format the indicator string.
17888     *
17889     * @see elm_slider_indicator_format_set() for more info on how this works.
17890     *
17891     * @ingroup Slider
17892     */
17893   EAPI void                elm_slider_indicator_format_function_set(Evas_Object *obj, const char *(*func)(double val), void (*free_func)(const char *str)) EINA_ARG_NONNULL(1);
17894
17895   /**
17896    * Set the format function pointer for the units label
17897    *
17898    * @param obj The slider object.
17899    * @param func The units format function.
17900    * @param free_func The freeing function for the format string.
17901    *
17902    * Set the callback function to format the indicator string.
17903    *
17904    * @see elm_slider_units_format_set() for more info on how this works.
17905    *
17906    * @ingroup Slider
17907    */
17908   EAPI void                elm_slider_units_format_function_set(Evas_Object *obj, const char *(*func)(double val), void (*free_func)(const char *str)) EINA_ARG_NONNULL(1);
17909
17910   /**
17911    * Set the orientation of a given slider widget.
17912    *
17913    * @param obj The slider object.
17914    * @param horizontal Use @c EINA_TRUE to make @p obj to be
17915    * @b horizontal, @c EINA_FALSE to make it @b vertical.
17916    *
17917    * Use this function to change how your slider is to be
17918    * disposed: vertically or horizontally.
17919    *
17920    * By default it's displayed horizontally.
17921    *
17922    * @see elm_slider_horizontal_get()
17923    *
17924    * @ingroup Slider
17925    */
17926    EAPI void               elm_slider_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
17927
17928    /**
17929     * Retrieve the orientation of a given slider widget
17930     *
17931     * @param obj The slider object.
17932     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
17933     * @c EINA_FALSE if it's @b vertical (and on errors).
17934     *
17935     * @see elm_slider_horizontal_set() for more details.
17936     *
17937     * @ingroup Slider
17938     */
17939    EAPI Eina_Bool          elm_slider_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17940
17941    /**
17942     * Set the minimum and maximum values for the slider.
17943     *
17944     * @param obj The slider object.
17945     * @param min The minimum value.
17946     * @param max The maximum value.
17947     *
17948     * Define the allowed range of values to be selected by the user.
17949     *
17950     * If actual value is less than @p min, it will be updated to @p min. If it
17951     * is bigger then @p max, will be updated to @p max. Actual value can be
17952     * get with elm_slider_value_get().
17953     *
17954     * By default, min is equal to 0.0, and max is equal to 1.0.
17955     *
17956     * @warning Maximum must be greater than minimum, otherwise behavior
17957     * is undefined.
17958     *
17959     * @see elm_slider_min_max_get()
17960     *
17961     * @ingroup Slider
17962     */
17963    EAPI void               elm_slider_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
17964
17965    /**
17966     * Get the minimum and maximum values of the slider.
17967     *
17968     * @param obj The slider object.
17969     * @param min Pointer where to store the minimum value.
17970     * @param max Pointer where to store the maximum value.
17971     *
17972     * @note If only one value is needed, the other pointer can be passed
17973     * as @c NULL.
17974     *
17975     * @see elm_slider_min_max_set() for details.
17976     *
17977     * @ingroup Slider
17978     */
17979    EAPI void               elm_slider_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
17980
17981    /**
17982     * Set the value the slider displays.
17983     *
17984     * @param obj The slider object.
17985     * @param val The value to be displayed.
17986     *
17987     * Value will be presented on the unit label following format specified with
17988     * elm_slider_unit_format_set() and on indicator with
17989     * elm_slider_indicator_format_set().
17990     *
17991     * @warning The value must to be between min and max values. This values
17992     * are set by elm_slider_min_max_set().
17993     *
17994     * @see elm_slider_value_get()
17995     * @see elm_slider_unit_format_set()
17996     * @see elm_slider_indicator_format_set()
17997     * @see elm_slider_min_max_set()
17998     *
17999     * @ingroup Slider
18000     */
18001    EAPI void               elm_slider_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
18002
18003    /**
18004     * Get the value displayed by the spinner.
18005     *
18006     * @param obj The spinner object.
18007     * @return The value displayed.
18008     *
18009     * @see elm_spinner_value_set() for details.
18010     *
18011     * @ingroup Slider
18012     */
18013    EAPI double             elm_slider_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18014
18015    /**
18016     * Invert a given slider widget's displaying values order
18017     *
18018     * @param obj The slider object.
18019     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
18020     * @c EINA_FALSE to bring it back to default, non-inverted values.
18021     *
18022     * A slider may be @b inverted, in which state it gets its
18023     * values inverted, with high vales being on the left or top and
18024     * low values on the right or bottom, as opposed to normally have
18025     * the low values on the former and high values on the latter,
18026     * respectively, for horizontal and vertical modes.
18027     *
18028     * @see elm_slider_inverted_get()
18029     *
18030     * @ingroup Slider
18031     */
18032    EAPI void               elm_slider_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
18033
18034    /**
18035     * Get whether a given slider widget's displaying values are
18036     * inverted or not.
18037     *
18038     * @param obj The slider object.
18039     * @return @c EINA_TRUE, if @p obj has inverted values,
18040     * @c EINA_FALSE otherwise (and on errors).
18041     *
18042     * @see elm_slider_inverted_set() for more details.
18043     *
18044     * @ingroup Slider
18045     */
18046    EAPI Eina_Bool          elm_slider_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18047
18048    /**
18049     * Set whether to enlarge slider indicator (augmented knob) or not.
18050     *
18051     * @param obj The slider object.
18052     * @param show @c EINA_TRUE will make it enlarge, @c EINA_FALSE will
18053     * let the knob always at default size.
18054     *
18055     * By default, indicator will be bigger while dragged by the user.
18056     *
18057     * @warning It won't display values set with
18058     * elm_slider_indicator_format_set() if you disable indicator.
18059     *
18060     * @ingroup Slider
18061     */
18062    EAPI void               elm_slider_indicator_show_set(Evas_Object *obj, Eina_Bool show) EINA_ARG_NONNULL(1);
18063
18064    /**
18065     * Get whether a given slider widget's enlarging indicator or not.
18066     *
18067     * @param obj The slider object.
18068     * @return @c EINA_TRUE, if @p obj is enlarging indicator, or
18069     * @c EINA_FALSE otherwise (and on errors).
18070     *
18071     * @see elm_slider_indicator_show_set() for details.
18072     *
18073     * @ingroup Slider
18074     */
18075    EAPI Eina_Bool          elm_slider_indicator_show_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18076
18077    /**
18078     * @}
18079     */
18080
18081    /**
18082     * @addtogroup Actionslider Actionslider
18083     *
18084     * @image html img/widget/actionslider/preview-00.png
18085     * @image latex img/widget/actionslider/preview-00.eps
18086     *
18087     * An actionslider is a switcher for 2 or 3 labels with customizable magnet
18088     * properties. The user drags and releases the indicator, to choose a label.
18089     *
18090     * Labels occupy the following positions.
18091     * a. Left
18092     * b. Right
18093     * c. Center
18094     *
18095     * Positions can be enabled or disabled.
18096     *
18097     * Magnets can be set on the above positions.
18098     *
18099     * When the indicator is released, it will move to its nearest "enabled and magnetized" position.
18100     *
18101     * @note By default all positions are set as enabled.
18102     *
18103     * Signals that you can add callbacks for are:
18104     *
18105     * "selected" - when user selects an enabled position (the label is passed
18106     *              as event info)".
18107     * @n
18108     * "pos_changed" - when the indicator reaches any of the positions("left",
18109     *                 "right" or "center").
18110     *
18111     * See an example of actionslider usage @ref actionslider_example_page "here"
18112     * @{
18113     */
18114    typedef enum _Elm_Actionslider_Pos
18115      {
18116         ELM_ACTIONSLIDER_NONE = 0,
18117         ELM_ACTIONSLIDER_LEFT = 1 << 0,
18118         ELM_ACTIONSLIDER_CENTER = 1 << 1,
18119         ELM_ACTIONSLIDER_RIGHT = 1 << 2,
18120         ELM_ACTIONSLIDER_ALL = (1 << 3) -1
18121      } Elm_Actionslider_Pos;
18122
18123    /**
18124     * Add a new actionslider to the parent.
18125     *
18126     * @param parent The parent object
18127     * @return The new actionslider object or NULL if it cannot be created
18128     */
18129    EAPI Evas_Object          *elm_actionslider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18130    /**
18131     * Set actionslider labels.
18132     *
18133     * @param obj The actionslider object
18134     * @param left_label The label to be set on the left.
18135     * @param center_label The label to be set on the center.
18136     * @param right_label The label to be set on the right.
18137     * @deprecated use elm_object_text_set() instead.
18138     */
18139    EINA_DEPRECATED EAPI void                  elm_actionslider_labels_set(Evas_Object *obj, const char *left_label, const char *center_label, const char *right_label) EINA_ARG_NONNULL(1);
18140    /**
18141     * Get actionslider labels.
18142     *
18143     * @param obj The actionslider object
18144     * @param left_label A char** to place the left_label of @p obj into.
18145     * @param center_label A char** to place the center_label of @p obj into.
18146     * @param right_label A char** to place the right_label of @p obj into.
18147     * @deprecated use elm_object_text_set() instead.
18148     */
18149    EINA_DEPRECATED EAPI void                  elm_actionslider_labels_get(const Evas_Object *obj, const char **left_label, const char **center_label, const char **right_label) EINA_ARG_NONNULL(1);
18150    /**
18151     * Get actionslider selected label.
18152     *
18153     * @param obj The actionslider object
18154     * @return The selected label
18155     */
18156    EAPI const char           *elm_actionslider_selected_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18157    /**
18158     * Set actionslider indicator position.
18159     *
18160     * @param obj The actionslider object.
18161     * @param pos The position of the indicator.
18162     */
18163    EAPI void                  elm_actionslider_indicator_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
18164    /**
18165     * Get actionslider indicator position.
18166     *
18167     * @param obj The actionslider object.
18168     * @return The position of the indicator.
18169     */
18170    EAPI Elm_Actionslider_Pos  elm_actionslider_indicator_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18171    /**
18172     * Set actionslider magnet position. To make multiple positions magnets @c or
18173     * them together(e.g.: ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT)
18174     *
18175     * @param obj The actionslider object.
18176     * @param pos Bit mask indicating the magnet positions.
18177     */
18178    EAPI void                  elm_actionslider_magnet_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
18179    /**
18180     * Get actionslider magnet position.
18181     *
18182     * @param obj The actionslider object.
18183     * @return The positions with magnet property.
18184     */
18185    EAPI Elm_Actionslider_Pos  elm_actionslider_magnet_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18186    /**
18187     * Set actionslider enabled position. To set multiple positions as enabled @c or
18188     * them together(e.g.: ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT).
18189     *
18190     * @note All the positions are enabled by default.
18191     *
18192     * @param obj The actionslider object.
18193     * @param pos Bit mask indicating the enabled positions.
18194     */
18195    EAPI void                  elm_actionslider_enabled_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
18196    /**
18197     * Get actionslider enabled position.
18198     *
18199     * @param obj The actionslider object.
18200     * @return The enabled positions.
18201     */
18202    EAPI Elm_Actionslider_Pos  elm_actionslider_enabled_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18203    /**
18204     * Set the label used on the indicator.
18205     *
18206     * @param obj The actionslider object
18207     * @param label The label to be set on the indicator.
18208     * @deprecated use elm_object_text_set() instead.
18209     */
18210    EINA_DEPRECATED EAPI void                  elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
18211    /**
18212     * Get the label used on the indicator object.
18213     *
18214     * @param obj The actionslider object
18215     * @return The indicator label
18216     * @deprecated use elm_object_text_get() instead.
18217     */
18218    EINA_DEPRECATED EAPI const char           *elm_actionslider_indicator_label_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
18219    /**
18220     * @}
18221     */
18222
18223    /**
18224     * @defgroup Genlist Genlist
18225     *
18226     * @image html img/widget/genlist/preview-00.png
18227     * @image latex img/widget/genlist/preview-00.eps
18228     * @image html img/genlist.png
18229     * @image latex img/genlist.eps
18230     *
18231     * This widget aims to have more expansive list than the simple list in
18232     * Elementary that could have more flexible items and allow many more entries
18233     * while still being fast and low on memory usage. At the same time it was
18234     * also made to be able to do tree structures. But the price to pay is more
18235     * complexity when it comes to usage. If all you want is a simple list with
18236     * icons and a single text, use the normal @ref List object.
18237     *
18238     * Genlist has a fairly large API, mostly because it's relatively complex,
18239     * trying to be both expansive, powerful and efficient. First we will begin
18240     * an overview on the theory behind genlist.
18241     *
18242     * @section Genlist_Item_Class Genlist item classes - creating items
18243     *
18244     * In order to have the ability to add and delete items on the fly, genlist
18245     * implements a class (callback) system where the application provides a
18246     * structure with information about that type of item (genlist may contain
18247     * multiple different items with different classes, states and styles).
18248     * Genlist will call the functions in this struct (methods) when an item is
18249     * "realized" (i.e., created dynamically, while the user is scrolling the
18250     * grid). All objects will simply be deleted when no longer needed with
18251     * evas_object_del(). The #Elm_Genlist_Item_Class structure contains the
18252     * following members:
18253     * - @c item_style - This is a constant string and simply defines the name
18254     *   of the item style. It @b must be specified and the default should be @c
18255     *   "default".
18256     *
18257     * - @c func - A struct with pointers to functions that will be called when
18258     *   an item is going to be actually created. All of them receive a @c data
18259     *   parameter that will point to the same data passed to
18260     *   elm_genlist_item_append() and related item creation functions, and a @c
18261     *   obj parameter that points to the genlist object itself.
18262     *
18263     * The function pointers inside @c func are @c text_get, @c content_get, @c
18264     * state_get and @c del. The 3 first functions also receive a @c part
18265     * parameter described below. A brief description of these functions follows:
18266     *
18267     * - @c text_get - The @c part parameter is the name string of one of the
18268     *   existing text parts in the Edje group implementing the item's theme.
18269     *   This function @b must return a strdup'()ed string, as the caller will
18270     *   free() it when done. See #Elm_Genlist_Item_Text_Get_Cb.
18271     * - @c content_get - The @c part parameter is the name string of one of the
18272     *   existing (content) swallow parts in the Edje group implementing the item's
18273     *   theme. It must return @c NULL, when no content is desired, or a valid
18274     *   object handle, otherwise.  The object will be deleted by the genlist on
18275     *   its deletion or when the item is "unrealized".  See
18276     *   #Elm_Genlist_Item_Content_Get_Cb.
18277     * - @c func.state_get - The @c part parameter is the name string of one of
18278     *   the state parts in the Edje group implementing the item's theme. Return
18279     *   @c EINA_FALSE for false/off or @c EINA_TRUE for true/on. Genlists will
18280     *   emit a signal to its theming Edje object with @c "elm,state,XXX,active"
18281     *   and @c "elm" as "emission" and "source" arguments, respectively, when
18282     *   the state is true (the default is false), where @c XXX is the name of
18283     *   the (state) part.  See #Elm_Genlist_Item_State_Get_Cb.
18284     * - @c func.del - This is intended for use when genlist items are deleted,
18285     *   so any data attached to the item (e.g. its data parameter on creation)
18286     *   can be deleted. See #Elm_Genlist_Item_Del_Cb.
18287     *
18288     * available item styles:
18289     * - default
18290     * - default_style - The text part is a textblock
18291     *
18292     * @image html img/widget/genlist/preview-04.png
18293     * @image latex img/widget/genlist/preview-04.eps
18294     *
18295     * - double_label
18296     *
18297     * @image html img/widget/genlist/preview-01.png
18298     * @image latex img/widget/genlist/preview-01.eps
18299     *
18300     * - icon_top_text_bottom
18301     *
18302     * @image html img/widget/genlist/preview-02.png
18303     * @image latex img/widget/genlist/preview-02.eps
18304     *
18305     * - group_index
18306     *
18307     * @image html img/widget/genlist/preview-03.png
18308     * @image latex img/widget/genlist/preview-03.eps
18309     *
18310     * @section Genlist_Items Structure of items
18311     *
18312     * An item in a genlist can have 0 or more texts (they can be regular
18313     * text or textblock Evas objects - that's up to the style to determine), 0
18314     * or more contents (which are simply objects swallowed into the genlist item's
18315     * theming Edje object) and 0 or more <b>boolean states</b>, which have the
18316     * behavior left to the user to define. The Edje part names for each of
18317     * these properties will be looked up, in the theme file for the genlist,
18318     * under the Edje (string) data items named @c "labels", @c "contents" and @c
18319     * "states", respectively. For each of those properties, if more than one
18320     * part is provided, they must have names listed separated by spaces in the
18321     * data fields. For the default genlist item theme, we have @b one text 
18322     * part (@c "elm.text"), @b two content parts (@c "elm.swalllow.icon" and @c
18323     * "elm.swallow.end") and @b no state parts.
18324     *
18325     * A genlist item may be at one of several styles. Elementary provides one
18326     * by default - "default", but this can be extended by system or application
18327     * custom themes/overlays/extensions (see @ref Theme "themes" for more
18328     * details).
18329     *
18330     * @section Genlist_Manipulation Editing and Navigating
18331     *
18332     * Items can be added by several calls. All of them return a @ref
18333     * Elm_Genlist_Item handle that is an internal member inside the genlist.
18334     * They all take a data parameter that is meant to be used for a handle to
18335     * the applications internal data (eg the struct with the original item
18336     * data). The parent parameter is the parent genlist item this belongs to if
18337     * it is a tree or an indexed group, and NULL if there is no parent. The
18338     * flags can be a bitmask of #ELM_GENLIST_ITEM_NONE,
18339     * #ELM_GENLIST_ITEM_SUBITEMS and #ELM_GENLIST_ITEM_GROUP. If
18340     * #ELM_GENLIST_ITEM_SUBITEMS is set then this item is displayed as an item
18341     * that is able to expand and have child items.  If ELM_GENLIST_ITEM_GROUP
18342     * is set then this item is group index item that is displayed at the top
18343     * until the next group comes. The func parameter is a convenience callback
18344     * that is called when the item is selected and the data parameter will be
18345     * the func_data parameter, obj be the genlist object and event_info will be
18346     * the genlist item.
18347     *
18348     * elm_genlist_item_append() adds an item to the end of the list, or if
18349     * there is a parent, to the end of all the child items of the parent.
18350     * elm_genlist_item_prepend() is the same but adds to the beginning of
18351     * the list or children list. elm_genlist_item_insert_before() inserts at
18352     * item before another item and elm_genlist_item_insert_after() inserts after
18353     * the indicated item.
18354     *
18355     * The application can clear the list with elm_genlist_clear() which deletes
18356     * all the items in the list and elm_genlist_item_del() will delete a specific
18357     * item. elm_genlist_item_subitems_clear() will clear all items that are
18358     * children of the indicated parent item.
18359     *
18360     * To help inspect list items you can jump to the item at the top of the list
18361     * with elm_genlist_first_item_get() which will return the item pointer, and
18362     * similarly elm_genlist_last_item_get() gets the item at the end of the list.
18363     * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
18364     * and previous items respectively relative to the indicated item. Using
18365     * these calls you can walk the entire item list/tree. Note that as a tree
18366     * the items are flattened in the list, so elm_genlist_item_parent_get() will
18367     * let you know which item is the parent (and thus know how to skip them if
18368     * wanted).
18369     *
18370     * @section Genlist_Muti_Selection Multi-selection
18371     *
18372     * If the application wants multiple items to be able to be selected,
18373     * elm_genlist_multi_select_set() can enable this. If the list is
18374     * single-selection only (the default), then elm_genlist_selected_item_get()
18375     * will return the selected item, if any, or NULL if none is selected. If the
18376     * list is multi-select then elm_genlist_selected_items_get() will return a
18377     * list (that is only valid as long as no items are modified (added, deleted,
18378     * selected or unselected)).
18379     *
18380     * @section Genlist_Usage_Hints Usage hints
18381     *
18382     * There are also convenience functions. elm_genlist_item_genlist_get() will
18383     * return the genlist object the item belongs to. elm_genlist_item_show()
18384     * will make the scroller scroll to show that specific item so its visible.
18385     * elm_genlist_item_data_get() returns the data pointer set by the item
18386     * creation functions.
18387     *
18388     * If an item changes (state of boolean changes, text or contents change),
18389     * then use elm_genlist_item_update() to have genlist update the item with
18390     * the new state. Genlist will re-realize the item thus call the functions
18391     * in the _Elm_Genlist_Item_Class for that item.
18392     *
18393     * To programmatically (un)select an item use elm_genlist_item_selected_set().
18394     * To get its selected state use elm_genlist_item_selected_get(). Similarly
18395     * to expand/contract an item and get its expanded state, use
18396     * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
18397     * again to make an item disabled (unable to be selected and appear
18398     * differently) use elm_genlist_item_disabled_set() to set this and
18399     * elm_genlist_item_disabled_get() to get the disabled state.
18400     *
18401     * In general to indicate how the genlist should expand items horizontally to
18402     * fill the list area, use elm_genlist_horizontal_set(). Valid modes are
18403     * ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is ELM_LIST_SCROLL. This
18404     * mode means that if items are too wide to fit, the scroller will scroll
18405     * horizontally. Otherwise items are expanded to fill the width of the
18406     * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
18407     * to the viewport width and limited to that size. This can be combined with
18408     * a different style that uses edjes' ellipsis feature (cutting text off like
18409     * this: "tex...").
18410     *
18411     * Items will only call their selection func and callback when first becoming
18412     * selected. Any further clicks will do nothing, unless you enable always
18413     * select with elm_genlist_always_select_mode_set(). This means even if
18414     * selected, every click will make the selected callbacks be called.
18415     * elm_genlist_no_select_mode_set() will turn off the ability to select
18416     * items entirely and they will neither appear selected nor call selected
18417     * callback functions.
18418     *
18419     * Remember that you can create new styles and add your own theme augmentation
18420     * per application with elm_theme_extension_add(). If you absolutely must
18421     * have a specific style that overrides any theme the user or system sets up
18422     * you can use elm_theme_overlay_add() to add such a file.
18423     *
18424     * @section Genlist_Implementation Implementation
18425     *
18426     * Evas tracks every object you create. Every time it processes an event
18427     * (mouse move, down, up etc.) it needs to walk through objects and find out
18428     * what event that affects. Even worse every time it renders display updates,
18429     * in order to just calculate what to re-draw, it needs to walk through many
18430     * many many objects. Thus, the more objects you keep active, the more
18431     * overhead Evas has in just doing its work. It is advisable to keep your
18432     * active objects to the minimum working set you need. Also remember that
18433     * object creation and deletion carries an overhead, so there is a
18434     * middle-ground, which is not easily determined. But don't keep massive lists
18435     * of objects you can't see or use. Genlist does this with list objects. It
18436     * creates and destroys them dynamically as you scroll around. It groups them
18437     * into blocks so it can determine the visibility etc. of a whole block at
18438     * once as opposed to having to walk the whole list. This 2-level list allows
18439     * for very large numbers of items to be in the list (tests have used up to
18440     * 2,000,000 items). Also genlist employs a queue for adding items. As items
18441     * may be different sizes, every item added needs to be calculated as to its
18442     * size and thus this presents a lot of overhead on populating the list, this
18443     * genlist employs a queue. Any item added is queued and spooled off over
18444     * time, actually appearing some time later, so if your list has many members
18445     * you may find it takes a while for them to all appear, with your process
18446     * consuming a lot of CPU while it is busy spooling.
18447     *
18448     * Genlist also implements a tree structure, but it does so with callbacks to
18449     * the application, with the application filling in tree structures when
18450     * requested (allowing for efficient building of a very deep tree that could
18451     * even be used for file-management). See the above smart signal callbacks for
18452     * details.
18453     *
18454     * @section Genlist_Smart_Events Genlist smart events
18455     *
18456     * Signals that you can add callbacks for are:
18457     * - @c "activated" - The user has double-clicked or pressed
18458     *   (enter|return|spacebar) on an item. The @c event_info parameter is the
18459     *   item that was activated.
18460     * - @c "clicked,double" - The user has double-clicked an item.  The @c
18461     *   event_info parameter is the item that was double-clicked.
18462     * - @c "selected" - This is called when a user has made an item selected.
18463     *   The event_info parameter is the genlist item that was selected.
18464     * - @c "unselected" - This is called when a user has made an item
18465     *   unselected. The event_info parameter is the genlist item that was
18466     *   unselected.
18467     * - @c "expanded" - This is called when elm_genlist_item_expanded_set() is
18468     *   called and the item is now meant to be expanded. The event_info
18469     *   parameter is the genlist item that was indicated to expand.  It is the
18470     *   job of this callback to then fill in the child items.
18471     * - @c "contracted" - This is called when elm_genlist_item_expanded_set() is
18472     *   called and the item is now meant to be contracted. The event_info
18473     *   parameter is the genlist item that was indicated to contract. It is the
18474     *   job of this callback to then delete the child items.
18475     * - @c "expand,request" - This is called when a user has indicated they want
18476     *   to expand a tree branch item. The callback should decide if the item can
18477     *   expand (has any children) and then call elm_genlist_item_expanded_set()
18478     *   appropriately to set the state. The event_info parameter is the genlist
18479     *   item that was indicated to expand.
18480     * - @c "contract,request" - This is called when a user has indicated they
18481     *   want to contract a tree branch item. The callback should decide if the
18482     *   item can contract (has any children) and then call
18483     *   elm_genlist_item_expanded_set() appropriately to set the state. The
18484     *   event_info parameter is the genlist item that was indicated to contract.
18485     * - @c "realized" - This is called when the item in the list is created as a
18486     *   real evas object. event_info parameter is the genlist item that was
18487     *   created. The object may be deleted at any time, so it is up to the
18488     *   caller to not use the object pointer from elm_genlist_item_object_get()
18489     *   in a way where it may point to freed objects.
18490     * - @c "unrealized" - This is called just before an item is unrealized.
18491     *   After this call content objects provided will be deleted and the item
18492     *   object itself delete or be put into a floating cache.
18493     * - @c "drag,start,up" - This is called when the item in the list has been
18494     *   dragged (not scrolled) up.
18495     * - @c "drag,start,down" - This is called when the item in the list has been
18496     *   dragged (not scrolled) down.
18497     * - @c "drag,start,left" - This is called when the item in the list has been
18498     *   dragged (not scrolled) left.
18499     * - @c "drag,start,right" - This is called when the item in the list has
18500     *   been dragged (not scrolled) right.
18501     * - @c "drag,stop" - This is called when the item in the list has stopped
18502     *   being dragged.
18503     * - @c "drag" - This is called when the item in the list is being dragged.
18504     * - @c "longpressed" - This is called when the item is pressed for a certain
18505     *   amount of time. By default it's 1 second.
18506     * - @c "scroll,anim,start" - This is called when scrolling animation has
18507     *   started.
18508     * - @c "scroll,anim,stop" - This is called when scrolling animation has
18509     *   stopped.
18510     * - @c "scroll,drag,start" - This is called when dragging the content has
18511     *   started.
18512     * - @c "scroll,drag,stop" - This is called when dragging the content has
18513     *   stopped.
18514     * - @c "edge,top" - This is called when the genlist is scrolled until
18515     *   the top edge.
18516     * - @c "edge,bottom" - This is called when the genlist is scrolled
18517     *   until the bottom edge.
18518     * - @c "edge,left" - This is called when the genlist is scrolled
18519     *   until the left edge.
18520     * - @c "edge,right" - This is called when the genlist is scrolled
18521     *   until the right edge.
18522     * - @c "multi,swipe,left" - This is called when the genlist is multi-touch
18523     *   swiped left.
18524     * - @c "multi,swipe,right" - This is called when the genlist is multi-touch
18525     *   swiped right.
18526     * - @c "multi,swipe,up" - This is called when the genlist is multi-touch
18527     *   swiped up.
18528     * - @c "multi,swipe,down" - This is called when the genlist is multi-touch
18529     *   swiped down.
18530     * - @c "multi,pinch,out" - This is called when the genlist is multi-touch
18531     *   pinched out.  "- @c multi,pinch,in" - This is called when the genlist is
18532     *   multi-touch pinched in.
18533     * - @c "swipe" - This is called when the genlist is swiped.
18534     * - @c "moved" - This is called when a genlist item is moved.
18535     * - @c "language,changed" - This is called when the program's language is
18536     *   changed.
18537     *
18538     * @section Genlist_Examples Examples
18539     *
18540     * Here is a list of examples that use the genlist, trying to show some of
18541     * its capabilities:
18542     * - @ref genlist_example_01
18543     * - @ref genlist_example_02
18544     * - @ref genlist_example_03
18545     * - @ref genlist_example_04
18546     * - @ref genlist_example_05
18547     */
18548
18549    /**
18550     * @addtogroup Genlist
18551     * @{
18552     */
18553
18554    /**
18555     * @enum _Elm_Genlist_Item_Flags
18556     * @typedef Elm_Genlist_Item_Flags
18557     *
18558     * Defines if the item is of any special type (has subitems or it's the
18559     * index of a group), or is just a simple item.
18560     *
18561     * @ingroup Genlist
18562     */
18563    typedef enum _Elm_Genlist_Item_Flags
18564      {
18565         ELM_GENLIST_ITEM_NONE = 0, /**< simple item */
18566         ELM_GENLIST_ITEM_SUBITEMS = (1 << 0), /**< may expand and have child items */
18567         ELM_GENLIST_ITEM_GROUP = (1 << 1) /**< index of a group of items */
18568      } Elm_Genlist_Item_Flags;
18569    typedef enum _Elm_Genlist_Item_Field_Flags
18570      {
18571         ELM_GENLIST_ITEM_FIELD_ALL = 0,
18572         ELM_GENLIST_ITEM_FIELD_LABEL = (1 << 0),
18573         ELM_GENLIST_ITEM_FIELD_CONTENT = (1 << 1),
18574         ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
18575      } Elm_Genlist_Item_Field_Flags;
18576    typedef struct _Elm_Genlist_Item_Class Elm_Genlist_Item_Class;  /**< Genlist item class definition structs */
18577    #define Elm_Genlist_Item_Class Elm_Gen_Item_Class
18578    typedef struct _Elm_Genlist_Item       Elm_Genlist_Item; /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
18579    #define Elm_Genlist_Item Elm_Gen_Item /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
18580    typedef struct _Elm_Genlist_Item_Class_Func Elm_Genlist_Item_Class_Func; /**< Class functions for genlist item class */
18581    /**
18582     * Text fetching class function for Elm_Gen_Item_Class.
18583     * @param data The data passed in the item creation function
18584     * @param obj The base widget object
18585     * @param part The part name of the swallow
18586     * @return The allocated (NOT stringshared) string to set as the text
18587     */
18588    typedef char        *(*Elm_Genlist_Item_Text_Get_Cb) (void *data, Evas_Object *obj, const char *part);
18589    /**
18590     * Content (swallowed object) fetching class function for Elm_Gen_Item_Class.
18591     * @param data The data passed in the item creation function
18592     * @param obj The base widget object
18593     * @param part The part name of the swallow
18594     * @return The content object to swallow
18595     */
18596    typedef Evas_Object *(*Elm_Genlist_Item_Content_Get_Cb)  (void *data, Evas_Object *obj, const char *part);
18597    /**
18598     * State fetching class function for Elm_Gen_Item_Class.
18599     * @param data The data passed in the item creation function
18600     * @param obj The base widget object
18601     * @param part The part name of the swallow
18602     * @return The hell if I know
18603     */
18604    typedef Eina_Bool    (*Elm_Genlist_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part);
18605    /**
18606     * Deletion class function for Elm_Gen_Item_Class.
18607     * @param data The data passed in the item creation function
18608     * @param obj The base widget object
18609     */
18610    typedef void         (*Elm_Genlist_Item_Del_Cb)      (void *data, Evas_Object *obj);
18611
18612    /**
18613     * @struct _Elm_Genlist_Item_Class
18614     *
18615     * Genlist item class definition structs.
18616     *
18617     * This struct contains the style and fetching functions that will define the
18618     * contents of each item.
18619     *
18620     * @see @ref Genlist_Item_Class
18621     */
18622    struct _Elm_Genlist_Item_Class
18623      {
18624         const char                *item_style; /**< style of this class. */
18625         struct Elm_Genlist_Item_Class_Func
18626           {
18627              Elm_Genlist_Item_Text_Get_Cb    text_get; /**< Text fetching class function for genlist item classes.*/
18628              Elm_Genlist_Item_Content_Get_Cb content_get; /**< Content fetching class function for genlist item classes. */
18629              Elm_Genlist_Item_State_Get_Cb   state_get; /**< State fetching class function for genlist item classes. */
18630              Elm_Genlist_Item_Del_Cb         del; /**< Deletion class function for genlist item classes. */
18631           } func;
18632      };
18633    #define Elm_Genlist_Item_Class_Func Elm_Gen_Item_Class_Func
18634    /**
18635     * Add a new genlist widget to the given parent Elementary
18636     * (container) object
18637     *
18638     * @param parent The parent object
18639     * @return a new genlist widget handle or @c NULL, on errors
18640     *
18641     * This function inserts a new genlist widget on the canvas.
18642     *
18643     * @see elm_genlist_item_append()
18644     * @see elm_genlist_item_del()
18645     * @see elm_genlist_clear()
18646     *
18647     * @ingroup Genlist
18648     */
18649    EAPI Evas_Object      *elm_genlist_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18650    /**
18651     * Remove all items from a given genlist widget.
18652     *
18653     * @param obj The genlist object
18654     *
18655     * This removes (and deletes) all items in @p obj, leaving it empty.
18656     *
18657     * @see elm_genlist_item_del(), to remove just one item.
18658     *
18659     * @ingroup Genlist
18660     */
18661    EAPI void elm_genlist_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
18662    /**
18663     * Enable or disable multi-selection in the genlist
18664     *
18665     * @param obj The genlist object
18666     * @param multi Multi-select enable/disable. Default is disabled.
18667     *
18668     * This enables (@c EINA_TRUE) or disables (@c EINA_FALSE) multi-selection in
18669     * the list. This allows more than 1 item to be selected. To retrieve the list
18670     * of selected items, use elm_genlist_selected_items_get().
18671     *
18672     * @see elm_genlist_selected_items_get()
18673     * @see elm_genlist_multi_select_get()
18674     *
18675     * @ingroup Genlist
18676     */
18677    EAPI void              elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
18678    /**
18679     * Gets if multi-selection in genlist is enabled or disabled.
18680     *
18681     * @param obj The genlist object
18682     * @return Multi-select enabled/disabled
18683     * (@c EINA_TRUE = enabled/@c EINA_FALSE = disabled). Default is @c EINA_FALSE.
18684     *
18685     * @see elm_genlist_multi_select_set()
18686     *
18687     * @ingroup Genlist
18688     */
18689    EAPI Eina_Bool         elm_genlist_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18690    /**
18691     * This sets the horizontal stretching mode.
18692     *
18693     * @param obj The genlist object
18694     * @param mode The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT).
18695     *
18696     * This sets the mode used for sizing items horizontally. Valid modes
18697     * are #ELM_LIST_LIMIT and #ELM_LIST_SCROLL. The default is
18698     * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
18699     * the scroller will scroll horizontally. Otherwise items are expanded
18700     * to fill the width of the viewport of the scroller. If it is
18701     * ELM_LIST_LIMIT, items will be expanded to the viewport width and
18702     * limited to that size.
18703     *
18704     * @see elm_genlist_horizontal_get()
18705     *
18706     * @ingroup Genlist
18707     */
18708    EAPI void              elm_genlist_horizontal_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
18709    EINA_DEPRECATED EAPI void              elm_genlist_horizontal_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
18710    /**
18711     * Gets the horizontal stretching mode.
18712     *
18713     * @param obj The genlist object
18714     * @return The mode to use
18715     * (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)
18716     *
18717     * @see elm_genlist_horizontal_set()
18718     *
18719     * @ingroup Genlist
18720     */
18721    EAPI Elm_List_Mode     elm_genlist_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18722    EINA_DEPRECATED EAPI Elm_List_Mode     elm_genlist_horizontal_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18723    /**
18724     * Set the always select mode.
18725     *
18726     * @param obj The genlist object
18727     * @param always_select The always select mode (@c EINA_TRUE = on, @c
18728     * EINA_FALSE = off). Default is @c EINA_FALSE.
18729     *
18730     * Items will only call their selection func and callback when first
18731     * becoming selected. Any further clicks will do nothing, unless you
18732     * enable always select with elm_genlist_always_select_mode_set().
18733     * This means that, even if selected, every click will make the selected
18734     * callbacks be called.
18735     *
18736     * @see elm_genlist_always_select_mode_get()
18737     *
18738     * @ingroup Genlist
18739     */
18740    EAPI void              elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
18741    /**
18742     * Get the always select mode.
18743     *
18744     * @param obj The genlist object
18745     * @return The always select mode
18746     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18747     *
18748     * @see elm_genlist_always_select_mode_set()
18749     *
18750     * @ingroup Genlist
18751     */
18752    EAPI Eina_Bool         elm_genlist_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18753    /**
18754     * Enable/disable the no select mode.
18755     *
18756     * @param obj The genlist object
18757     * @param no_select The no select mode
18758     * (EINA_TRUE = on, EINA_FALSE = off)
18759     *
18760     * This will turn off the ability to select items entirely and they
18761     * will neither appear selected nor call selected callback functions.
18762     *
18763     * @see elm_genlist_no_select_mode_get()
18764     *
18765     * @ingroup Genlist
18766     */
18767    EAPI void              elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
18768    /**
18769     * Gets whether the no select mode is enabled.
18770     *
18771     * @param obj The genlist object
18772     * @return The no select mode
18773     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18774     *
18775     * @see elm_genlist_no_select_mode_set()
18776     *
18777     * @ingroup Genlist
18778     */
18779    EAPI Eina_Bool         elm_genlist_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18780    /**
18781     * Enable/disable compress mode.
18782     *
18783     * @param obj The genlist object
18784     * @param compress The compress mode
18785     * (@c EINA_TRUE = on, @c EINA_FALSE = off). Default is @c EINA_FALSE.
18786     *
18787     * This will enable the compress mode where items are "compressed"
18788     * horizontally to fit the genlist scrollable viewport width. This is
18789     * special for genlist.  Do not rely on
18790     * elm_genlist_horizontal_set() being set to @c ELM_LIST_COMPRESS to
18791     * work as genlist needs to handle it specially.
18792     *
18793     * @see elm_genlist_compress_mode_get()
18794     *
18795     * @ingroup Genlist
18796     */
18797    EAPI void              elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress) EINA_ARG_NONNULL(1);
18798    /**
18799     * Get whether the compress mode is enabled.
18800     *
18801     * @param obj The genlist object
18802     * @return The compress mode
18803     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18804     *
18805     * @see elm_genlist_compress_mode_set()
18806     *
18807     * @ingroup Genlist
18808     */
18809    EAPI Eina_Bool         elm_genlist_compress_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18810    /**
18811     * Enable/disable height-for-width mode.
18812     *
18813     * @param obj The genlist object
18814     * @param setting The height-for-width mode (@c EINA_TRUE = on,
18815     * @c EINA_FALSE = off). Default is @c EINA_FALSE.
18816     *
18817     * With height-for-width mode the item width will be fixed (restricted
18818     * to a minimum of) to the list width when calculating its size in
18819     * order to allow the height to be calculated based on it. This allows,
18820     * for instance, text block to wrap lines if the Edje part is
18821     * configured with "text.min: 0 1".
18822     *
18823     * @note This mode will make list resize slower as it will have to
18824     *       recalculate every item height again whenever the list width
18825     *       changes!
18826     *
18827     * @note When height-for-width mode is enabled, it also enables
18828     *       compress mode (see elm_genlist_compress_mode_set()) and
18829     *       disables homogeneous (see elm_genlist_homogeneous_set()).
18830     *
18831     * @ingroup Genlist
18832     */
18833    EAPI void              elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width) EINA_ARG_NONNULL(1);
18834    /**
18835     * Get whether the height-for-width mode is enabled.
18836     *
18837     * @param obj The genlist object
18838     * @return The height-for-width mode (@c EINA_TRUE = on, @c EINA_FALSE =
18839     * off)
18840     *
18841     * @ingroup Genlist
18842     */
18843    EAPI Eina_Bool         elm_genlist_height_for_width_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18844    /**
18845     * Enable/disable horizontal and vertical bouncing effect.
18846     *
18847     * @param obj The genlist object
18848     * @param h_bounce Allow bounce horizontally (@c EINA_TRUE = on, @c
18849     * EINA_FALSE = off). Default is @c EINA_FALSE.
18850     * @param v_bounce Allow bounce vertically (@c EINA_TRUE = on, @c
18851     * EINA_FALSE = off). Default is @c EINA_TRUE.
18852     *
18853     * This will enable or disable the scroller bouncing effect for the
18854     * genlist. See elm_scroller_bounce_set() for details.
18855     *
18856     * @see elm_scroller_bounce_set()
18857     * @see elm_genlist_bounce_get()
18858     *
18859     * @ingroup Genlist
18860     */
18861    EAPI void              elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
18862    /**
18863     * Get whether the horizontal and vertical bouncing effect is enabled.
18864     *
18865     * @param obj The genlist object
18866     * @param h_bounce Pointer to a bool to receive if the bounce horizontally
18867     * option is set.
18868     * @param v_bounce Pointer to a bool to receive if the bounce vertically
18869     * option is set.
18870     *
18871     * @see elm_genlist_bounce_set()
18872     *
18873     * @ingroup Genlist
18874     */
18875    EAPI void              elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
18876    /**
18877     * Enable/disable homogeneous mode.
18878     *
18879     * @param obj The genlist object
18880     * @param homogeneous Assume the items within the genlist are of the
18881     * same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c
18882     * EINA_FALSE.
18883     *
18884     * This will enable the homogeneous mode where items are of the same
18885     * height and width so that genlist may do the lazy-loading at its
18886     * maximum (which increases the performance for scrolling the list). This
18887     * implies 'compressed' mode.
18888     *
18889     * @see elm_genlist_compress_mode_set()
18890     * @see elm_genlist_homogeneous_get()
18891     *
18892     * @ingroup Genlist
18893     */
18894    EAPI void              elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
18895    /**
18896     * Get whether the homogeneous mode is enabled.
18897     *
18898     * @param obj The genlist object
18899     * @return Assume the items within the genlist are of the same height
18900     * and width (EINA_TRUE = on, EINA_FALSE = off)
18901     *
18902     * @see elm_genlist_homogeneous_set()
18903     *
18904     * @ingroup Genlist
18905     */
18906    EAPI Eina_Bool         elm_genlist_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18907    /**
18908     * Set the maximum number of items within an item block
18909     *
18910     * @param obj The genlist object
18911     * @param n   Maximum number of items within an item block. Default is 32.
18912     *
18913     * This will configure the block count to tune to the target with
18914     * particular performance matrix.
18915     *
18916     * A block of objects will be used to reduce the number of operations due to
18917     * many objects in the screen. It can determine the visibility, or if the
18918     * object has changed, it theme needs to be updated, etc. doing this kind of
18919     * calculation to the entire block, instead of per object.
18920     *
18921     * The default value for the block count is enough for most lists, so unless
18922     * you know you will have a lot of objects visible in the screen at the same
18923     * time, don't try to change this.
18924     *
18925     * @see elm_genlist_block_count_get()
18926     * @see @ref Genlist_Implementation
18927     *
18928     * @ingroup Genlist
18929     */
18930    EAPI void              elm_genlist_block_count_set(Evas_Object *obj, int n) EINA_ARG_NONNULL(1);
18931    /**
18932     * Get the maximum number of items within an item block
18933     *
18934     * @param obj The genlist object
18935     * @return Maximum number of items within an item block
18936     *
18937     * @see elm_genlist_block_count_set()
18938     *
18939     * @ingroup Genlist
18940     */
18941    EAPI int               elm_genlist_block_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18942    /**
18943     * Set the timeout in seconds for the longpress event.
18944     *
18945     * @param obj The genlist object
18946     * @param timeout timeout in seconds. Default is 1.
18947     *
18948     * This option will change how long it takes to send an event "longpressed"
18949     * after the mouse down signal is sent to the list. If this event occurs, no
18950     * "clicked" event will be sent.
18951     *
18952     * @see elm_genlist_longpress_timeout_set()
18953     *
18954     * @ingroup Genlist
18955     */
18956    EAPI void              elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
18957    /**
18958     * Get the timeout in seconds for the longpress event.
18959     *
18960     * @param obj The genlist object
18961     * @return timeout in seconds
18962     *
18963     * @see elm_genlist_longpress_timeout_get()
18964     *
18965     * @ingroup Genlist
18966     */
18967    EAPI double            elm_genlist_longpress_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18968    /**
18969     * Append a new item in a given genlist widget.
18970     *
18971     * @param obj The genlist object
18972     * @param itc The item class for the item
18973     * @param data The item data
18974     * @param parent The parent item, or NULL if none
18975     * @param flags Item flags
18976     * @param func Convenience function called when the item is selected
18977     * @param func_data Data passed to @p func above.
18978     * @return A handle to the item added or @c NULL if not possible
18979     *
18980     * This adds the given item to the end of the list or the end of
18981     * the children list if the @p parent is given.
18982     *
18983     * @see elm_genlist_item_prepend()
18984     * @see elm_genlist_item_insert_before()
18985     * @see elm_genlist_item_insert_after()
18986     * @see elm_genlist_item_del()
18987     *
18988     * @ingroup Genlist
18989     */
18990    EAPI Elm_Genlist_Item *elm_genlist_item_append(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Genlist_Item *parent, Elm_Genlist_Item_Flags flags, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
18991    /**
18992     * Prepend a new item in a given genlist widget.
18993     *
18994     * @param obj The genlist object
18995     * @param itc The item class for the item
18996     * @param data The item data
18997     * @param parent The parent item, or NULL if none
18998     * @param flags Item flags
18999     * @param func Convenience function called when the item is selected
19000     * @param func_data Data passed to @p func above.
19001     * @return A handle to the item added or NULL if not possible
19002     *
19003     * This adds an item to the beginning of the list or beginning of the
19004     * children of the parent if given.
19005     *
19006     * @see elm_genlist_item_append()
19007     * @see elm_genlist_item_insert_before()
19008     * @see elm_genlist_item_insert_after()
19009     * @see elm_genlist_item_del()
19010     *
19011     * @ingroup Genlist
19012     */
19013    EAPI Elm_Genlist_Item *elm_genlist_item_prepend(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Genlist_Item *parent, Elm_Genlist_Item_Flags flags, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
19014    /**
19015     * Insert an item before another in a genlist widget
19016     *
19017     * @param obj The genlist object
19018     * @param itc The item class for the item
19019     * @param data The item data
19020     * @param before The item to place this new one before.
19021     * @param flags Item flags
19022     * @param func Convenience function called when the item is selected
19023     * @param func_data Data passed to @p func above.
19024     * @return A handle to the item added or @c NULL if not possible
19025     *
19026     * This inserts an item before another in the list. It will be in the
19027     * same tree level or group as the item it is inserted before.
19028     *
19029     * @see elm_genlist_item_append()
19030     * @see elm_genlist_item_prepend()
19031     * @see elm_genlist_item_insert_after()
19032     * @see elm_genlist_item_del()
19033     *
19034     * @ingroup Genlist
19035     */
19036    EAPI Elm_Genlist_Item *elm_genlist_item_insert_before(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Genlist_Item *parent, Elm_Genlist_Item *before, Elm_Genlist_Item_Flags flags, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1, 5);
19037    /**
19038     * Insert an item after another in a genlist widget
19039     *
19040     * @param obj The genlist object
19041     * @param itc The item class for the item
19042     * @param data The item data
19043     * @param after The item to place this new one after.
19044     * @param flags Item flags
19045     * @param func Convenience function called when the item is selected
19046     * @param func_data Data passed to @p func above.
19047     * @return A handle to the item added or @c NULL if not possible
19048     *
19049     * This inserts an item after another in the list. It will be in the
19050     * same tree level or group as the item it is inserted after.
19051     *
19052     * @see elm_genlist_item_append()
19053     * @see elm_genlist_item_prepend()
19054     * @see elm_genlist_item_insert_before()
19055     * @see elm_genlist_item_del()
19056     *
19057     * @ingroup Genlist
19058     */
19059    EAPI Elm_Genlist_Item *elm_genlist_item_insert_after(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Genlist_Item *parent, Elm_Genlist_Item *after, Elm_Genlist_Item_Flags flags, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1, 5);
19060    /**
19061     * Insert a new item into the sorted genlist object
19062     *
19063     * @param obj The genlist object
19064     * @param itc The item class for the item
19065     * @param data The item data
19066     * @param parent The parent item, or NULL if none
19067     * @param flags Item flags
19068     * @param comp The function called for the sort
19069     * @param func Convenience function called when item selected
19070     * @param func_data Data passed to @p func above.
19071     * @return A handle to the item added or NULL if not possible
19072     *
19073     * @ingroup Genlist
19074     */
19075    EAPI Elm_Genlist_Item *elm_genlist_item_sorted_insert(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Genlist_Item *parent, Elm_Genlist_Item_Flags flags, Eina_Compare_Cb comp, Evas_Smart_Cb func,const void *func_data);
19076    EAPI Elm_Genlist_Item *elm_genlist_item_direct_sorted_insert(Evas_Object *obj, const Elm_Genlist_Item_Class *itc, const void *data, Elm_Genlist_Item *parent, Elm_Genlist_Item_Flags flags, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data);
19077    /* operations to retrieve existing items */
19078    /**
19079     * Get the selectd item in the genlist.
19080     *
19081     * @param obj The genlist object
19082     * @return The selected item, or NULL if none is selected.
19083     *
19084     * This gets the selected item in the list (if multi-selection is enabled, only
19085     * the item that was first selected in the list is returned - which is not very
19086     * useful, so see elm_genlist_selected_items_get() for when multi-selection is
19087     * used).
19088     *
19089     * If no item is selected, NULL is returned.
19090     *
19091     * @see elm_genlist_selected_items_get()
19092     *
19093     * @ingroup Genlist
19094     */
19095    EAPI Elm_Genlist_Item *elm_genlist_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19096    /**
19097     * Get a list of selected items in the genlist.
19098     *
19099     * @param obj The genlist object
19100     * @return The list of selected items, or NULL if none are selected.
19101     *
19102     * It returns a list of the selected items. This list pointer is only valid so
19103     * long as the selection doesn't change (no items are selected or unselected, or
19104     * unselected implicitly by deletion). The list contains Elm_Genlist_Item
19105     * pointers. The order of the items in this list is the order which they were
19106     * selected, i.e. the first item in this list is the first item that was
19107     * selected, and so on.
19108     *
19109     * @note If not in multi-select mode, consider using function
19110     * elm_genlist_selected_item_get() instead.
19111     *
19112     * @see elm_genlist_multi_select_set()
19113     * @see elm_genlist_selected_item_get()
19114     *
19115     * @ingroup Genlist
19116     */
19117    EAPI const Eina_List  *elm_genlist_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19118    /**
19119     * Get the mode item style of items in the genlist
19120     * @param obj The genlist object
19121     * @return The mode item style string, or NULL if none is specified
19122     *
19123     * This is a constant string and simply defines the name of the
19124     * style that will be used for mode animations. It can be
19125     * @c NULL if you don't plan to use Genlist mode. See
19126     * elm_genlist_item_mode_set() for more info.
19127     *
19128     * @ingroup Genlist
19129     */
19130    EAPI const char       *elm_genlist_mode_item_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19131    /**
19132     * Set the mode item style of items in the genlist
19133     * @param obj The genlist object
19134     * @param style The mode item style string, or NULL if none is desired
19135     *
19136     * This is a constant string and simply defines the name of the
19137     * style that will be used for mode animations. It can be
19138     * @c NULL if you don't plan to use Genlist mode. See
19139     * elm_genlist_item_mode_set() for more info.
19140     *
19141     * @ingroup Genlist
19142     */
19143    EAPI void              elm_genlist_mode_item_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
19144    /**
19145     * Get a list of realized items in genlist
19146     *
19147     * @param obj The genlist object
19148     * @return The list of realized items, nor NULL if none are realized.
19149     *
19150     * This returns a list of the realized items in the genlist. The list
19151     * contains Elm_Genlist_Item pointers. The list must be freed by the
19152     * caller when done with eina_list_free(). The item pointers in the
19153     * list are only valid so long as those items are not deleted or the
19154     * genlist is not deleted.
19155     *
19156     * @see elm_genlist_realized_items_update()
19157     *
19158     * @ingroup Genlist
19159     */
19160    EAPI Eina_List        *elm_genlist_realized_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19161    /**
19162     * Get the item that is at the x, y canvas coords.
19163     *
19164     * @param obj The gelinst object.
19165     * @param x The input x coordinate
19166     * @param y The input y coordinate
19167     * @param posret The position relative to the item returned here
19168     * @return The item at the coordinates or NULL if none
19169     *
19170     * This returns the item at the given coordinates (which are canvas
19171     * relative, not object-relative). If an item is at that coordinate,
19172     * that item handle is returned, and if @p posret is not NULL, the
19173     * integer pointed to is set to a value of -1, 0 or 1, depending if
19174     * the coordinate is on the upper portion of that item (-1), on the
19175     * middle section (0) or on the lower part (1). If NULL is returned as
19176     * an item (no item found there), then posret may indicate -1 or 1
19177     * based if the coordinate is above or below all items respectively in
19178     * the genlist.
19179     *
19180     * @ingroup Genlist
19181     */
19182    EAPI Elm_Genlist_Item *elm_genlist_at_xy_item_get(const Evas_Object *obj, Evas_Coord x, Evas_Coord y, int *posret) EINA_ARG_NONNULL(1);
19183    /**
19184     * Get the first item in the genlist
19185     *
19186     * This returns the first item in the list.
19187     *
19188     * @param obj The genlist object
19189     * @return The first item, or NULL if none
19190     *
19191     * @ingroup Genlist
19192     */
19193    EAPI Elm_Genlist_Item *elm_genlist_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19194    /**
19195     * Get the last item in the genlist
19196     *
19197     * This returns the last item in the list.
19198     *
19199     * @return The last item, or NULL if none
19200     *
19201     * @ingroup Genlist
19202     */
19203    EAPI Elm_Genlist_Item *elm_genlist_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19204    /**
19205     * Set the scrollbar policy
19206     *
19207     * @param obj The genlist object
19208     * @param policy_h Horizontal scrollbar policy.
19209     * @param policy_v Vertical scrollbar policy.
19210     *
19211     * This sets the scrollbar visibility policy for the given genlist
19212     * scroller. #ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
19213     * made visible if it is needed, and otherwise kept hidden.
19214     * #ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
19215     * #ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
19216     * respectively for the horizontal and vertical scrollbars. Default is
19217     * #ELM_SMART_SCROLLER_POLICY_AUTO
19218     *
19219     * @see elm_genlist_scroller_policy_get()
19220     *
19221     * @ingroup Genlist
19222     */
19223    EAPI void              elm_genlist_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
19224    /**
19225     * Get the scrollbar policy
19226     *
19227     * @param obj The genlist object
19228     * @param policy_h Pointer to store the horizontal scrollbar policy.
19229     * @param policy_v Pointer to store the vertical scrollbar policy.
19230     *
19231     * @see elm_genlist_scroller_policy_set()
19232     *
19233     * @ingroup Genlist
19234     */
19235    EAPI void              elm_genlist_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
19236    /**
19237     * Get the @b next item in a genlist widget's internal list of items,
19238     * given a handle to one of those items.
19239     *
19240     * @param item The genlist item to fetch next from
19241     * @return The item after @p item, or @c NULL if there's none (and
19242     * on errors)
19243     *
19244     * This returns the item placed after the @p item, on the container
19245     * genlist.
19246     *
19247     * @see elm_genlist_item_prev_get()
19248     *
19249     * @ingroup Genlist
19250     */
19251    EAPI Elm_Genlist_Item  *elm_genlist_item_next_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19252    /**
19253     * Get the @b previous item in a genlist widget's internal list of items,
19254     * given a handle to one of those items.
19255     *
19256     * @param item The genlist item to fetch previous from
19257     * @return The item before @p item, or @c NULL if there's none (and
19258     * on errors)
19259     *
19260     * This returns the item placed before the @p item, on the container
19261     * genlist.
19262     *
19263     * @see elm_genlist_item_next_get()
19264     *
19265     * @ingroup Genlist
19266     */
19267    EAPI Elm_Genlist_Item  *elm_genlist_item_prev_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19268    /**
19269     * Get the genlist object's handle which contains a given genlist
19270     * item
19271     *
19272     * @param item The item to fetch the container from
19273     * @return The genlist (parent) object
19274     *
19275     * This returns the genlist object itself that an item belongs to.
19276     *
19277     * @ingroup Genlist
19278     */
19279    EAPI Evas_Object       *elm_genlist_item_genlist_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19280    /**
19281     * Get the parent item of the given item
19282     *
19283     * @param it The item
19284     * @return The parent of the item or @c NULL if it has no parent.
19285     *
19286     * This returns the item that was specified as parent of the item @p it on
19287     * elm_genlist_item_append() and insertion related functions.
19288     *
19289     * @ingroup Genlist
19290     */
19291    EAPI Elm_Genlist_Item  *elm_genlist_item_parent_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19292    /**
19293     * Remove all sub-items (children) of the given item
19294     *
19295     * @param it The item
19296     *
19297     * This removes all items that are children (and their descendants) of the
19298     * given item @p it.
19299     *
19300     * @see elm_genlist_clear()
19301     * @see elm_genlist_item_del()
19302     *
19303     * @ingroup Genlist
19304     */
19305    EAPI void               elm_genlist_item_subitems_clear(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19306    /**
19307     * Set whether a given genlist item is selected or not
19308     *
19309     * @param it The item
19310     * @param selected Use @c EINA_TRUE, to make it selected, @c
19311     * EINA_FALSE to make it unselected
19312     *
19313     * This sets the selected state of an item. If multi selection is
19314     * not enabled on the containing genlist and @p selected is @c
19315     * EINA_TRUE, any other previously selected items will get
19316     * unselected in favor of this new one.
19317     *
19318     * @see elm_genlist_item_selected_get()
19319     *
19320     * @ingroup Genlist
19321     */
19322    EAPI void elm_genlist_item_selected_set(Elm_Genlist_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
19323    /**
19324     * Get whether a given genlist item is selected or not
19325     *
19326     * @param it The item
19327     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
19328     *
19329     * @see elm_genlist_item_selected_set() for more details
19330     *
19331     * @ingroup Genlist
19332     */
19333    EAPI Eina_Bool elm_genlist_item_selected_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19334    /**
19335     * Sets the expanded state of an item.
19336     *
19337     * @param it The item
19338     * @param expanded The expanded state (@c EINA_TRUE expanded, @c EINA_FALSE not expanded).
19339     *
19340     * This function flags the item of type #ELM_GENLIST_ITEM_SUBITEMS as
19341     * expanded or not.
19342     *
19343     * The theme will respond to this change visually, and a signal "expanded" or
19344     * "contracted" will be sent from the genlist with a pointer to the item that
19345     * has been expanded/contracted.
19346     *
19347     * Calling this function won't show or hide any child of this item (if it is
19348     * a parent). You must manually delete and create them on the callbacks fo
19349     * the "expanded" or "contracted" signals.
19350     *
19351     * @see elm_genlist_item_expanded_get()
19352     *
19353     * @ingroup Genlist
19354     */
19355    EAPI void               elm_genlist_item_expanded_set(Elm_Genlist_Item *item, Eina_Bool expanded) EINA_ARG_NONNULL(1);
19356    /**
19357     * Get the expanded state of an item
19358     *
19359     * @param it The item
19360     * @return The expanded state
19361     *
19362     * This gets the expanded state of an item.
19363     *
19364     * @see elm_genlist_item_expanded_set()
19365     *
19366     * @ingroup Genlist
19367     */
19368    EAPI Eina_Bool          elm_genlist_item_expanded_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19369    /**
19370     * Get the depth of expanded item
19371     *
19372     * @param it The genlist item object
19373     * @return The depth of expanded item
19374     *
19375     * @ingroup Genlist
19376     */
19377    EAPI int                elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19378    /**
19379     * Set whether a given genlist item is disabled or not.
19380     *
19381     * @param it The item
19382     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
19383     * to enable it back.
19384     *
19385     * A disabled item cannot be selected or unselected. It will also
19386     * change its appearance, to signal the user it's disabled.
19387     *
19388     * @see elm_genlist_item_disabled_get()
19389     *
19390     * @ingroup Genlist
19391     */
19392    EAPI void               elm_genlist_item_disabled_set(Elm_Genlist_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
19393    /**
19394     * Get whether a given genlist item is disabled or not.
19395     *
19396     * @param it The item
19397     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
19398     * (and on errors).
19399     *
19400     * @see elm_genlist_item_disabled_set() for more details
19401     *
19402     * @ingroup Genlist
19403     */
19404    EAPI Eina_Bool          elm_genlist_item_disabled_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19405    /**
19406     * Sets the display only state of an item.
19407     *
19408     * @param it The item
19409     * @param display_only @c EINA_TRUE if the item is display only, @c
19410     * EINA_FALSE otherwise.
19411     *
19412     * A display only item cannot be selected or unselected. It is for
19413     * display only and not selecting or otherwise clicking, dragging
19414     * etc. by the user, thus finger size rules will not be applied to
19415     * this item.
19416     *
19417     * It's good to set group index items to display only state.
19418     *
19419     * @see elm_genlist_item_display_only_get()
19420     *
19421     * @ingroup Genlist
19422     */
19423    EAPI void               elm_genlist_item_display_only_set(Elm_Genlist_Item *it, Eina_Bool display_only) EINA_ARG_NONNULL(1);
19424    /**
19425     * Get the display only state of an item
19426     *
19427     * @param it The item
19428     * @return @c EINA_TRUE if the item is display only, @c
19429     * EINA_FALSE otherwise.
19430     *
19431     * @see elm_genlist_item_display_only_set()
19432     *
19433     * @ingroup Genlist
19434     */
19435    EAPI Eina_Bool          elm_genlist_item_display_only_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19436    /**
19437     * Show the portion of a genlist's internal list containing a given
19438     * item, immediately.
19439     *
19440     * @param it The item to display
19441     *
19442     * This causes genlist to jump to the given item @p it and show it (by
19443     * immediately scrolling to that position), if it is not fully visible.
19444     *
19445     * @see elm_genlist_item_bring_in()
19446     * @see elm_genlist_item_top_show()
19447     * @see elm_genlist_item_middle_show()
19448     *
19449     * @ingroup Genlist
19450     */
19451    EAPI void               elm_genlist_item_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19452    /**
19453     * Animatedly bring in, to the visible are of a genlist, a given
19454     * item on it.
19455     *
19456     * @param it The item to display
19457     *
19458     * This causes genlist to jump to the given item @p it and show it (by
19459     * animatedly scrolling), if it is not fully visible. This may use animation
19460     * to do so and take a period of time
19461     *
19462     * @see elm_genlist_item_show()
19463     * @see elm_genlist_item_top_bring_in()
19464     * @see elm_genlist_item_middle_bring_in()
19465     *
19466     * @ingroup Genlist
19467     */
19468    EAPI void               elm_genlist_item_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19469    /**
19470     * Show the portion of a genlist's internal list containing a given
19471     * item, immediately.
19472     *
19473     * @param it The item to display
19474     *
19475     * This causes genlist to jump to the given item @p it and show it (by
19476     * immediately scrolling to that position), if it is not fully visible.
19477     *
19478     * The item will be positioned at the top of the genlist viewport.
19479     *
19480     * @see elm_genlist_item_show()
19481     * @see elm_genlist_item_top_bring_in()
19482     *
19483     * @ingroup Genlist
19484     */
19485    EAPI void               elm_genlist_item_top_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19486    /**
19487     * Animatedly bring in, to the visible are of a genlist, a given
19488     * item on it.
19489     *
19490     * @param it The item
19491     *
19492     * This causes genlist to jump to the given item @p it and show it (by
19493     * animatedly scrolling), if it is not fully visible. This may use animation
19494     * to do so and take a period of time
19495     *
19496     * The item will be positioned at the top of the genlist viewport.
19497     *
19498     * @see elm_genlist_item_bring_in()
19499     * @see elm_genlist_item_top_show()
19500     *
19501     * @ingroup Genlist
19502     */
19503    EAPI void               elm_genlist_item_top_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19504    /**
19505     * Show the portion of a genlist's internal list containing a given
19506     * item, immediately.
19507     *
19508     * @param it The item to display
19509     *
19510     * This causes genlist to jump to the given item @p it and show it (by
19511     * immediately scrolling to that position), if it is not fully visible.
19512     *
19513     * The item will be positioned at the middle of the genlist viewport.
19514     *
19515     * @see elm_genlist_item_show()
19516     * @see elm_genlist_item_middle_bring_in()
19517     *
19518     * @ingroup Genlist
19519     */
19520    EAPI void               elm_genlist_item_middle_show(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19521    /**
19522     * Animatedly bring in, to the visible are of a genlist, a given
19523     * item on it.
19524     *
19525     * @param it The item
19526     *
19527     * This causes genlist to jump to the given item @p it and show it (by
19528     * animatedly scrolling), if it is not fully visible. This may use animation
19529     * to do so and take a period of time
19530     *
19531     * The item will be positioned at the middle of the genlist viewport.
19532     *
19533     * @see elm_genlist_item_bring_in()
19534     * @see elm_genlist_item_middle_show()
19535     *
19536     * @ingroup Genlist
19537     */
19538    EAPI void               elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19539    /**
19540     * Remove a genlist item from the its parent, deleting it.
19541     *
19542     * @param item The item to be removed.
19543     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
19544     *
19545     * @see elm_genlist_clear(), to remove all items in a genlist at
19546     * once.
19547     *
19548     * @ingroup Genlist
19549     */
19550    EAPI void               elm_genlist_item_del(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19551    /**
19552     * Return the data associated to a given genlist item
19553     *
19554     * @param item The genlist item.
19555     * @return the data associated to this item.
19556     *
19557     * This returns the @c data value passed on the
19558     * elm_genlist_item_append() and related item addition calls.
19559     *
19560     * @see elm_genlist_item_append()
19561     * @see elm_genlist_item_data_set()
19562     *
19563     * @ingroup Genlist
19564     */
19565    EAPI void              *elm_genlist_item_data_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19566    /**
19567     * Set the data associated to a given genlist item
19568     *
19569     * @param item The genlist item
19570     * @param data The new data pointer to set on it
19571     *
19572     * This @b overrides the @c data value passed on the
19573     * elm_genlist_item_append() and related item addition calls. This
19574     * function @b won't call elm_genlist_item_update() automatically,
19575     * so you'd issue it afterwards if you want to hove the item
19576     * updated to reflect the that new data.
19577     *
19578     * @see elm_genlist_item_data_get()
19579     *
19580     * @ingroup Genlist
19581     */
19582    EAPI void               elm_genlist_item_data_set(Elm_Genlist_Item *it, const void *data) EINA_ARG_NONNULL(1);
19583    /**
19584     * Tells genlist to "orphan" contents fetchs by the item class
19585     *
19586     * @param it The item
19587     *
19588     * This instructs genlist to release references to contents in the item,
19589     * meaning that they will no longer be managed by genlist and are
19590     * floating "orphans" that can be re-used elsewhere if the user wants
19591     * to.
19592     *
19593     * @ingroup Genlist
19594     */
19595    EAPI void               elm_genlist_item_contents_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19596    EINA_DEPRECATED EAPI void               elm_genlist_item_icons_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19597    /**
19598     * Get the real Evas object created to implement the view of a
19599     * given genlist item
19600     *
19601     * @param item The genlist item.
19602     * @return the Evas object implementing this item's view.
19603     *
19604     * This returns the actual Evas object used to implement the
19605     * specified genlist item's view. This may be @c NULL, as it may
19606     * not have been created or may have been deleted, at any time, by
19607     * the genlist. <b>Do not modify this object</b> (move, resize,
19608     * show, hide, etc.), as the genlist is controlling it. This
19609     * function is for querying, emitting custom signals or hooking
19610     * lower level callbacks for events on that object. Do not delete
19611     * this object under any circumstances.
19612     *
19613     * @see elm_genlist_item_data_get()
19614     *
19615     * @ingroup Genlist
19616     */
19617    EAPI const Evas_Object *elm_genlist_item_object_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19618    /**
19619     * Update the contents of an item
19620     *
19621     * @param it The item
19622     *
19623     * This updates an item by calling all the item class functions again
19624     * to get the contents, texts and states. Use this when the original
19625     * item data has changed and the changes are desired to be reflected.
19626     *
19627     * Use elm_genlist_realized_items_update() to update all already realized
19628     * items.
19629     *
19630     * @see elm_genlist_realized_items_update()
19631     *
19632     * @ingroup Genlist
19633     */
19634    EAPI void               elm_genlist_item_update(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19635    /**
19636     * Promote an item to the top of the list
19637     *
19638     * @param it The item
19639     *
19640     * @ingroup Genlist
19641     */
19642    EAPI void               elm_genlist_item_promote(Elm_Gen_Item *it) EINA_ARG_NONNULL(1);
19643    /**
19644     * Demote an item to the end of the list
19645     *
19646     * @param it The item
19647     *
19648     * @ingroup Genlist
19649     */
19650    EAPI void               elm_genlist_item_demote(Elm_Gen_Item *it) EINA_ARG_NONNULL(1);
19651    /**
19652     * Update the part of an item
19653     *
19654     * @param it The item
19655     * @param parts The name of item's part
19656     * @param itf The flags of item's part type
19657     *
19658     * This updates an item's part by calling item's fetching functions again
19659     * to get the contents, texts and states. Use this when the original
19660     * item data has changed and the changes are desired to be reflected.
19661     * Second parts argument is used for globbing to match '*', '?', and '.'
19662     * It can be used at updating multi fields.
19663     *
19664     * Use elm_genlist_realized_items_update() to update an item's all
19665     * property.
19666     *
19667     * @see elm_genlist_item_update()
19668     *
19669     * @ingroup Genlist
19670     */
19671    EAPI void               elm_genlist_item_fields_update(Elm_Genlist_Item *it, const char *parts, Elm_Genlist_Item_Field_Flags itf) EINA_ARG_NONNULL(1);
19672    /**
19673     * Update the item class of an item
19674     *
19675     * @param it The item
19676     * @param itc The item class for the item
19677     *
19678     * This sets another class fo the item, changing the way that it is
19679     * displayed. After changing the item class, elm_genlist_item_update() is
19680     * called on the item @p it.
19681     *
19682     * @ingroup Genlist
19683     */
19684    EAPI void               elm_genlist_item_item_class_update(Elm_Genlist_Item *it, const Elm_Genlist_Item_Class *itc) EINA_ARG_NONNULL(1, 2);
19685    EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19686    /**
19687     * Set the text to be shown in a given genlist item's tooltips.
19688     *
19689     * @param item The genlist item
19690     * @param text The text to set in the content
19691     *
19692     * This call will setup the text to be used as tooltip to that item
19693     * (analogous to elm_object_tooltip_text_set(), but being item
19694     * tooltips with higher precedence than object tooltips). It can
19695     * have only one tooltip at a time, so any previous tooltip data
19696     * will get removed.
19697     *
19698     * In order to set a content or something else as a tooltip, look at
19699     * elm_genlist_item_tooltip_content_cb_set().
19700     *
19701     * @ingroup Genlist
19702     */
19703    EAPI void               elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item, const char *text) EINA_ARG_NONNULL(1);
19704    /**
19705     * Set the content to be shown in a given genlist item's tooltips
19706     *
19707     * @param item The genlist item.
19708     * @param func The function returning the tooltip contents.
19709     * @param data What to provide to @a func as callback data/context.
19710     * @param del_cb Called when data is not needed anymore, either when
19711     *        another callback replaces @p func, the tooltip is unset with
19712     *        elm_genlist_item_tooltip_unset() or the owner @p item
19713     *        dies. This callback receives as its first parameter the
19714     *        given @p data, being @c event_info the item handle.
19715     *
19716     * This call will setup the tooltip's contents to @p item
19717     * (analogous to elm_object_tooltip_content_cb_set(), but being
19718     * item tooltips with higher precedence than object tooltips). It
19719     * can have only one tooltip at a time, so any previous tooltip
19720     * content will get removed. @p func (with @p data) will be called
19721     * every time Elementary needs to show the tooltip and it should
19722     * return a valid Evas object, which will be fully managed by the
19723     * tooltip system, getting deleted when the tooltip is gone.
19724     *
19725     * In order to set just a text as a tooltip, look at
19726     * elm_genlist_item_tooltip_text_set().
19727     *
19728     * @ingroup Genlist
19729     */
19730    EAPI void               elm_genlist_item_tooltip_content_cb_set(Elm_Genlist_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
19731    /**
19732     * Unset a tooltip from a given genlist item
19733     *
19734     * @param item genlist item to remove a previously set tooltip from.
19735     *
19736     * This call removes any tooltip set on @p item. The callback
19737     * provided as @c del_cb to
19738     * elm_genlist_item_tooltip_content_cb_set() will be called to
19739     * notify it is not used anymore (and have resources cleaned, if
19740     * need be).
19741     *
19742     * @see elm_genlist_item_tooltip_content_cb_set()
19743     *
19744     * @ingroup Genlist
19745     */
19746    EAPI void               elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19747    /**
19748     * Set a different @b style for a given genlist item's tooltip.
19749     *
19750     * @param item genlist item with tooltip set
19751     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
19752     * "default", @c "transparent", etc)
19753     *
19754     * Tooltips can have <b>alternate styles</b> to be displayed on,
19755     * which are defined by the theme set on Elementary. This function
19756     * works analogously as elm_object_tooltip_style_set(), but here
19757     * applied only to genlist item objects. The default style for
19758     * tooltips is @c "default".
19759     *
19760     * @note before you set a style you should define a tooltip with
19761     *       elm_genlist_item_tooltip_content_cb_set() or
19762     *       elm_genlist_item_tooltip_text_set()
19763     *
19764     * @see elm_genlist_item_tooltip_style_get()
19765     *
19766     * @ingroup Genlist
19767     */
19768    EAPI void               elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
19769    /**
19770     * Get the style set a given genlist item's tooltip.
19771     *
19772     * @param item genlist item with tooltip already set on.
19773     * @return style the theme style in use, which defaults to
19774     *         "default". If the object does not have a tooltip set,
19775     *         then @c NULL is returned.
19776     *
19777     * @see elm_genlist_item_tooltip_style_set() for more details
19778     *
19779     * @ingroup Genlist
19780     */
19781    EAPI const char        *elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19782    /**
19783     * @brief Disable size restrictions on an object's tooltip
19784     * @param item The tooltip's anchor object
19785     * @param disable If EINA_TRUE, size restrictions are disabled
19786     * @return EINA_FALSE on failure, EINA_TRUE on success
19787     *
19788     * This function allows a tooltip to expand beyond its parant window's canvas.
19789     * It will instead be limited only by the size of the display.
19790     */
19791    EAPI Eina_Bool          elm_genlist_item_tooltip_size_restrict_disable(Elm_Genlist_Item *item, Eina_Bool disable);
19792    /**
19793     * @brief Retrieve size restriction state of an object's tooltip
19794     * @param item The tooltip's anchor object
19795     * @return If EINA_TRUE, size restrictions are disabled
19796     *
19797     * This function returns whether a tooltip is allowed to expand beyond
19798     * its parant window's canvas.
19799     * It will instead be limited only by the size of the display.
19800     */
19801    EAPI Eina_Bool          elm_genlist_item_tooltip_size_restrict_disabled_get(const Elm_Genlist_Item *item);
19802    /**
19803     * Set the type of mouse pointer/cursor decoration to be shown,
19804     * when the mouse pointer is over the given genlist widget item
19805     *
19806     * @param item genlist item to customize cursor on
19807     * @param cursor the cursor type's name
19808     *
19809     * This function works analogously as elm_object_cursor_set(), but
19810     * here the cursor's changing area is restricted to the item's
19811     * area, and not the whole widget's. Note that that item cursors
19812     * have precedence over widget cursors, so that a mouse over @p
19813     * item will always show cursor @p type.
19814     *
19815     * If this function is called twice for an object, a previously set
19816     * cursor will be unset on the second call.
19817     *
19818     * @see elm_object_cursor_set()
19819     * @see elm_genlist_item_cursor_get()
19820     * @see elm_genlist_item_cursor_unset()
19821     *
19822     * @ingroup Genlist
19823     */
19824    EAPI void               elm_genlist_item_cursor_set(Elm_Genlist_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
19825    /**
19826     * Get the type of mouse pointer/cursor decoration set to be shown,
19827     * when the mouse pointer is over the given genlist widget item
19828     *
19829     * @param item genlist item with custom cursor set
19830     * @return the cursor type's name or @c NULL, if no custom cursors
19831     * were set to @p item (and on errors)
19832     *
19833     * @see elm_object_cursor_get()
19834     * @see elm_genlist_item_cursor_set() for more details
19835     * @see elm_genlist_item_cursor_unset()
19836     *
19837     * @ingroup Genlist
19838     */
19839    EAPI const char        *elm_genlist_item_cursor_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19840    /**
19841     * Unset any custom mouse pointer/cursor decoration set to be
19842     * shown, when the mouse pointer is over the given genlist widget
19843     * item, thus making it show the @b default cursor again.
19844     *
19845     * @param item a genlist item
19846     *
19847     * Use this call to undo any custom settings on this item's cursor
19848     * decoration, bringing it back to defaults (no custom style set).
19849     *
19850     * @see elm_object_cursor_unset()
19851     * @see elm_genlist_item_cursor_set() for more details
19852     *
19853     * @ingroup Genlist
19854     */
19855    EAPI void               elm_genlist_item_cursor_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19856    /**
19857     * Set a different @b style for a given custom cursor set for a
19858     * genlist item.
19859     *
19860     * @param item genlist item with custom cursor set
19861     * @param style the <b>theme style</b> to use (e.g. @c "default",
19862     * @c "transparent", etc)
19863     *
19864     * This function only makes sense when one is using custom mouse
19865     * cursor decorations <b>defined in a theme file</b> , which can
19866     * have, given a cursor name/type, <b>alternate styles</b> on
19867     * it. It works analogously as elm_object_cursor_style_set(), but
19868     * here applied only to genlist item objects.
19869     *
19870     * @warning Before you set a cursor style you should have defined a
19871     *       custom cursor previously on the item, with
19872     *       elm_genlist_item_cursor_set()
19873     *
19874     * @see elm_genlist_item_cursor_engine_only_set()
19875     * @see elm_genlist_item_cursor_style_get()
19876     *
19877     * @ingroup Genlist
19878     */
19879    EAPI void               elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
19880    /**
19881     * Get the current @b style set for a given genlist item's custom
19882     * cursor
19883     *
19884     * @param item genlist item with custom cursor set.
19885     * @return style the cursor style in use. If the object does not
19886     *         have a cursor set, then @c NULL is returned.
19887     *
19888     * @see elm_genlist_item_cursor_style_set() for more details
19889     *
19890     * @ingroup Genlist
19891     */
19892    EAPI const char        *elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19893    /**
19894     * Set if the (custom) cursor for a given genlist item should be
19895     * searched in its theme, also, or should only rely on the
19896     * rendering engine.
19897     *
19898     * @param item item with custom (custom) cursor already set on
19899     * @param engine_only Use @c EINA_TRUE to have cursors looked for
19900     * only on those provided by the rendering engine, @c EINA_FALSE to
19901     * have them searched on the widget's theme, as well.
19902     *
19903     * @note This call is of use only if you've set a custom cursor
19904     * for genlist items, with elm_genlist_item_cursor_set().
19905     *
19906     * @note By default, cursors will only be looked for between those
19907     * provided by the rendering engine.
19908     *
19909     * @ingroup Genlist
19910     */
19911    EAPI void               elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
19912    /**
19913     * Get if the (custom) cursor for a given genlist item is being
19914     * searched in its theme, also, or is only relying on the rendering
19915     * engine.
19916     *
19917     * @param item a genlist item
19918     * @return @c EINA_TRUE, if cursors are being looked for only on
19919     * those provided by the rendering engine, @c EINA_FALSE if they
19920     * are being searched on the widget's theme, as well.
19921     *
19922     * @see elm_genlist_item_cursor_engine_only_set(), for more details
19923     *
19924     * @ingroup Genlist
19925     */
19926    EAPI Eina_Bool          elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19927    /**
19928     * Update the contents of all realized items.
19929     *
19930     * @param obj The genlist object.
19931     *
19932     * This updates all realized items by calling all the item class functions again
19933     * to get the contents, texts and states. Use this when the original
19934     * item data has changed and the changes are desired to be reflected.
19935     *
19936     * To update just one item, use elm_genlist_item_update().
19937     *
19938     * @see elm_genlist_realized_items_get()
19939     * @see elm_genlist_item_update()
19940     *
19941     * @ingroup Genlist
19942     */
19943    EAPI void               elm_genlist_realized_items_update(Evas_Object *obj) EINA_ARG_NONNULL(1);
19944    /**
19945     * Activate a genlist mode on an item
19946     *
19947     * @param item The genlist item
19948     * @param mode Mode name
19949     * @param mode_set Boolean to define set or unset mode.
19950     *
19951     * A genlist mode is a different way of selecting an item. Once a mode is
19952     * activated on an item, any other selected item is immediately unselected.
19953     * This feature provides an easy way of implementing a new kind of animation
19954     * for selecting an item, without having to entirely rewrite the item style
19955     * theme. However, the elm_genlist_selected_* API can't be used to get what
19956     * item is activate for a mode.
19957     *
19958     * The current item style will still be used, but applying a genlist mode to
19959     * an item will select it using a different kind of animation.
19960     *
19961     * The current active item for a mode can be found by
19962     * elm_genlist_mode_item_get().
19963     *
19964     * The characteristics of genlist mode are:
19965     * - Only one mode can be active at any time, and for only one item.
19966     * - Genlist handles deactivating other items when one item is activated.
19967     * - A mode is defined in the genlist theme (edc), and more modes can easily
19968     *   be added.
19969     * - A mode style and the genlist item style are different things. They
19970     *   can be combined to provide a default style to the item, with some kind
19971     *   of animation for that item when the mode is activated.
19972     *
19973     * When a mode is activated on an item, a new view for that item is created.
19974     * The theme of this mode defines the animation that will be used to transit
19975     * the item from the old view to the new view. This second (new) view will be
19976     * active for that item while the mode is active on the item, and will be
19977     * destroyed after the mode is totally deactivated from that item.
19978     *
19979     * @see elm_genlist_mode_get()
19980     * @see elm_genlist_mode_item_get()
19981     *
19982     * @ingroup Genlist
19983     */
19984    EAPI void               elm_genlist_item_mode_set(Elm_Genlist_Item *it, const char *mode_type, Eina_Bool mode_set) EINA_ARG_NONNULL(1, 2);
19985    /**
19986     * Get the last (or current) genlist mode used.
19987     *
19988     * @param obj The genlist object
19989     *
19990     * This function just returns the name of the last used genlist mode. It will
19991     * be the current mode if it's still active.
19992     *
19993     * @see elm_genlist_item_mode_set()
19994     * @see elm_genlist_mode_item_get()
19995     *
19996     * @ingroup Genlist
19997     */
19998    EAPI const char        *elm_genlist_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19999    /**
20000     * Get active genlist mode item
20001     *
20002     * @param obj The genlist object
20003     * @return The active item for that current mode. Or @c NULL if no item is
20004     * activated with any mode.
20005     *
20006     * This function returns the item that was activated with a mode, by the
20007     * function elm_genlist_item_mode_set().
20008     *
20009     * @see elm_genlist_item_mode_set()
20010     * @see elm_genlist_mode_get()
20011     *
20012     * @ingroup Genlist
20013     */
20014    EAPI const Elm_Genlist_Item *elm_genlist_mode_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20015
20016    /**
20017     * Set reorder mode
20018     *
20019     * @param obj The genlist object
20020     * @param reorder_mode The reorder mode
20021     * (EINA_TRUE = on, EINA_FALSE = off)
20022     *
20023     * @ingroup Genlist
20024     */
20025    EAPI void               elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
20026
20027    /**
20028     * Get the reorder mode
20029     *
20030     * @param obj The genlist object
20031     * @return The reorder mode
20032     * (EINA_TRUE = on, EINA_FALSE = off)
20033     *
20034     * @ingroup Genlist
20035     */
20036    EAPI Eina_Bool          elm_genlist_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20037
20038    /**
20039     * @}
20040     */
20041
20042    /**
20043     * @defgroup Check Check
20044     *
20045     * @image html img/widget/check/preview-00.png
20046     * @image latex img/widget/check/preview-00.eps
20047     * @image html img/widget/check/preview-01.png
20048     * @image latex img/widget/check/preview-01.eps
20049     * @image html img/widget/check/preview-02.png
20050     * @image latex img/widget/check/preview-02.eps
20051     *
20052     * @brief The check widget allows for toggling a value between true and
20053     * false.
20054     *
20055     * Check objects are a lot like radio objects in layout and functionality
20056     * except they do not work as a group, but independently and only toggle the
20057     * value of a boolean from false to true (0 or 1). elm_check_state_set() sets
20058     * the boolean state (1 for true, 0 for false), and elm_check_state_get()
20059     * returns the current state. For convenience, like the radio objects, you
20060     * can set a pointer to a boolean directly with elm_check_state_pointer_set()
20061     * for it to modify.
20062     *
20063     * Signals that you can add callbacks for are:
20064     * "changed" - This is called whenever the user changes the state of one of
20065     *             the check object(event_info is NULL).
20066     *
20067     * Default contents parts of the check widget that you can use for are:
20068     * @li "icon" - An icon of the check
20069     *
20070     * Default text parts of the check widget that you can use for are:
20071     * @li "elm.text" - Label of the check
20072     *
20073     * @ref tutorial_check should give you a firm grasp of how to use this widget
20074     * .
20075     * @{
20076     */
20077    /**
20078     * @brief Add a new Check object
20079     *
20080     * @param parent The parent object
20081     * @return The new object or NULL if it cannot be created
20082     */
20083    EAPI Evas_Object *elm_check_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20084    /**
20085     * @brief Set the text label of the check object
20086     *
20087     * @param obj The check object
20088     * @param label The text label string in UTF-8
20089     *
20090     * @deprecated use elm_object_text_set() instead.
20091     */
20092    EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
20093    /**
20094     * @brief Get the text label of the check object
20095     *
20096     * @param obj The check object
20097     * @return The text label string in UTF-8
20098     *
20099     * @deprecated use elm_object_text_get() instead.
20100     */
20101    EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20102    /**
20103     * @brief Set the icon object of the check object
20104     *
20105     * @param obj The check object
20106     * @param icon The icon object
20107     *
20108     * Once the icon object is set, a previously set one will be deleted.
20109     * If you want to keep that old content object, use the
20110     * elm_object_content_unset() function.
20111     *
20112     * @deprecated use elm_object_part_content_set() instead.
20113     *
20114     */
20115    EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
20116    /**
20117     * @brief Get the icon object of the check object
20118     *
20119     * @param obj The check object
20120     * @return The icon object
20121     *
20122     * @deprecated use elm_object_part_content_get() instead.
20123     *
20124     */
20125    EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20126    /**
20127     * @brief Unset the icon used for the check object
20128     *
20129     * @param obj The check object
20130     * @return The icon object that was being used
20131     *
20132     * Unparent and return the icon object which was set for this widget.
20133     *
20134     * @deprecated use elm_object_part_content_unset() instead.
20135     *
20136     */
20137    EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
20138    /**
20139     * @brief Set the on/off state of the check object
20140     *
20141     * @param obj The check object
20142     * @param state The state to use (1 == on, 0 == off)
20143     *
20144     * This sets the state of the check. If set
20145     * with elm_check_state_pointer_set() the state of that variable is also
20146     * changed. Calling this @b doesn't cause the "changed" signal to be emited.
20147     */
20148    EAPI void         elm_check_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
20149    /**
20150     * @brief Get the state of the check object
20151     *
20152     * @param obj The check object
20153     * @return The boolean state
20154     */
20155    EAPI Eina_Bool    elm_check_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20156    /**
20157     * @brief Set a convenience pointer to a boolean to change
20158     *
20159     * @param obj The check object
20160     * @param statep Pointer to the boolean to modify
20161     *
20162     * This sets a pointer to a boolean, that, in addition to the check objects
20163     * state will also be modified directly. To stop setting the object pointed
20164     * to simply use NULL as the @p statep parameter. If @p statep is not NULL,
20165     * then when this is called, the check objects state will also be modified to
20166     * reflect the value of the boolean @p statep points to, just like calling
20167     * elm_check_state_set().
20168     */
20169    EAPI void         elm_check_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
20170    EINA_DEPRECATED EAPI void         elm_check_states_labels_set(Evas_Object *obj, const char *ontext, const char *offtext) EINA_ARG_NONNULL(1,2,3);
20171    EINA_DEPRECATED EAPI void         elm_check_states_labels_get(const Evas_Object *obj, const char **ontext, const char **offtext) EINA_ARG_NONNULL(1,2,3);
20172
20173    /**
20174     * @}
20175     */
20176
20177    /**
20178     * @defgroup Radio Radio
20179     *
20180     * @image html img/widget/radio/preview-00.png
20181     * @image latex img/widget/radio/preview-00.eps
20182     *
20183     * @brief Radio is a widget that allows for 1 or more options to be displayed
20184     * and have the user choose only 1 of them.
20185     *
20186     * A radio object contains an indicator, an optional Label and an optional
20187     * icon object. While it's possible to have a group of only one radio they,
20188     * are normally used in groups of 2 or more. To add a radio to a group use
20189     * elm_radio_group_add(). The radio object(s) will select from one of a set
20190     * of integer values, so any value they are configuring needs to be mapped to
20191     * a set of integers. To configure what value that radio object represents,
20192     * use  elm_radio_state_value_set() to set the integer it represents. To set
20193     * the value the whole group(which one is currently selected) is to indicate
20194     * use elm_radio_value_set() on any group member, and to get the groups value
20195     * use elm_radio_value_get(). For convenience the radio objects are also able
20196     * to directly set an integer(int) to the value that is selected. To specify
20197     * the pointer to this integer to modify, use elm_radio_value_pointer_set().
20198     * The radio objects will modify this directly. That implies the pointer must
20199     * point to valid memory for as long as the radio objects exist.
20200     *
20201     * Signals that you can add callbacks for are:
20202     * @li changed - This is called whenever the user changes the state of one of
20203     * the radio objects within the group of radio objects that work together.
20204     *
20205     * Default contents parts of the radio widget that you can use for are:
20206     * @li "icon" - An icon of the radio
20207     *
20208     * @ref tutorial_radio show most of this API in action.
20209     * @{
20210     */
20211    /**
20212     * @brief Add a new radio to the parent
20213     *
20214     * @param parent The parent object
20215     * @return The new object or NULL if it cannot be created
20216     */
20217    EAPI Evas_Object *elm_radio_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20218    /**
20219     * @brief Set the text label of the radio object
20220     *
20221     * @param obj The radio object
20222     * @param label The text label string in UTF-8
20223     *
20224     * @deprecated use elm_object_text_set() instead.
20225     */
20226    EINA_DEPRECATED EAPI void         elm_radio_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
20227    /**
20228     * @brief Get the text label of the radio object
20229     *
20230     * @param obj The radio object
20231     * @return The text label string in UTF-8
20232     *
20233     * @deprecated use elm_object_text_set() instead.
20234     */
20235    EINA_DEPRECATED EAPI const char  *elm_radio_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20236    /**
20237     * @brief Set the icon object of the radio object
20238     *
20239     * @param obj The radio object
20240     * @param icon The icon object
20241     *
20242     * Once the icon object is set, a previously set one will be deleted. If you
20243     * want to keep that old content object, use the elm_radio_icon_unset()
20244     * function.
20245     *
20246     * @deprecated use elm_object_part_content_set() instead.
20247     *
20248     */
20249    EINA_DEPRECATED EAPI void         elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
20250    /**
20251     * @brief Get the icon object of the radio object
20252     *
20253     * @param obj The radio object
20254     * @return The icon object
20255     *
20256     * @see elm_radio_icon_set()
20257     *
20258     * @deprecated use elm_object_part_content_get() instead.
20259     *
20260     */
20261    EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20262    /**
20263     * @brief Unset the icon used for the radio object
20264     *
20265     * @param obj The radio object
20266     * @return The icon object that was being used
20267     *
20268     * Unparent and return the icon object which was set for this widget.
20269     *
20270     * @see elm_radio_icon_set()
20271     * @deprecated use elm_object_part_content_unset() instead.
20272     *
20273     */
20274    EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
20275    /**
20276     * @brief Add this radio to a group of other radio objects
20277     *
20278     * @param obj The radio object
20279     * @param group Any object whose group the @p obj is to join.
20280     *
20281     * Radio objects work in groups. Each member should have a different integer
20282     * value assigned. In order to have them work as a group, they need to know
20283     * about each other. This adds the given radio object to the group of which
20284     * the group object indicated is a member.
20285     */
20286    EAPI void         elm_radio_group_add(Evas_Object *obj, Evas_Object *group) EINA_ARG_NONNULL(1);
20287    /**
20288     * @brief Set the integer value that this radio object represents
20289     *
20290     * @param obj The radio object
20291     * @param value The value to use if this radio object is selected
20292     *
20293     * This sets the value of the radio.
20294     */
20295    EAPI void         elm_radio_state_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
20296    /**
20297     * @brief Get the integer value that this radio object represents
20298     *
20299     * @param obj The radio object
20300     * @return The value used if this radio object is selected
20301     *
20302     * This gets the value of the radio.
20303     *
20304     * @see elm_radio_value_set()
20305     */
20306    EAPI int          elm_radio_state_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20307    /**
20308     * @brief Set the value of the radio.
20309     *
20310     * @param obj The radio object
20311     * @param value The value to use for the group
20312     *
20313     * This sets the value of the radio group and will also set the value if
20314     * pointed to, to the value supplied, but will not call any callbacks.
20315     */
20316    EAPI void         elm_radio_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
20317    /**
20318     * @brief Get the state of the radio object
20319     *
20320     * @param obj The radio object
20321     * @return The integer state
20322     */
20323    EAPI int          elm_radio_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20324    /**
20325     * @brief Set a convenience pointer to a integer to change
20326     *
20327     * @param obj The radio object
20328     * @param valuep Pointer to the integer to modify
20329     *
20330     * This sets a pointer to a integer, that, in addition to the radio objects
20331     * state will also be modified directly. To stop setting the object pointed
20332     * to simply use NULL as the @p valuep argument. If valuep is not NULL, then
20333     * when this is called, the radio objects state will also be modified to
20334     * reflect the value of the integer valuep points to, just like calling
20335     * elm_radio_value_set().
20336     */
20337    EAPI void         elm_radio_value_pointer_set(Evas_Object *obj, int *valuep) EINA_ARG_NONNULL(1);
20338    /**
20339     * @}
20340     */
20341
20342    /**
20343     * @defgroup Pager Pager
20344     *
20345     * @image html img/widget/pager/preview-00.png
20346     * @image latex img/widget/pager/preview-00.eps
20347     *
20348     * @brief Widget that allows flipping between one or more ā€œpagesā€
20349     * of objects.
20350     *
20351     * The flipping between pages of objects is animated. All content
20352     * in the pager is kept in a stack, being the last content added
20353     * (visible one) on the top of that stack.
20354     *
20355     * Objects can be pushed or popped from the stack or deleted as
20356     * well. Pushes and pops will animate the widget accordingly to its
20357     * style (a pop will also delete the child object once the
20358     * animation is finished). Any object already in the pager can be
20359     * promoted to the top (from its current stacking position) through
20360     * the use of elm_pager_content_promote(). New objects are pushed
20361     * to the top with elm_pager_content_push(). When the top item is
20362     * no longer wanted, simply pop it with elm_pager_content_pop() and
20363     * it will also be deleted. If an object is no longer needed and is
20364     * not the top item, just delete it as normal. You can query which
20365     * objects are the top and bottom with
20366     * elm_pager_content_bottom_get() and elm_pager_content_top_get().
20367     *
20368     * Signals that you can add callbacks for are:
20369     * - @c "show,finished" - when a new page is actually shown on the top
20370     * - @c "hide,finished" - when a previous page is hidden
20371     *
20372     * Only after the first of that signals the child object is
20373     * guaranteed to be visible, as in @c evas_object_visible_get().
20374     *
20375     * This widget has the following styles available:
20376     * - @c "default"
20377     * - @c "fade"
20378     * - @c "fade_translucide"
20379     * - @c "fade_invisible"
20380     *
20381     * @note These styles affect only the flipping animations on the
20382     * default theme; the appearance when not animating is unaffected
20383     * by them.
20384     *
20385     * @ref tutorial_pager gives a good overview of the usage of the API.
20386     * @{
20387     */
20388
20389    /**
20390     * Add a new pager to the parent
20391     *
20392     * @param parent The parent object
20393     * @return The new object or NULL if it cannot be created
20394     *
20395     * @ingroup Pager
20396     */
20397    EAPI Evas_Object *elm_pager_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20398
20399    /**
20400     * @brief Push an object to the top of the pager stack (and show it).
20401     *
20402     * @param obj The pager object
20403     * @param content The object to push
20404     *
20405     * The object pushed becomes a child of the pager, it will be controlled and
20406     * deleted when the pager is deleted.
20407     *
20408     * @note If the content is already in the stack use
20409     * elm_pager_content_promote().
20410     * @warning Using this function on @p content already in the stack results in
20411     * undefined behavior.
20412     */
20413    EAPI void         elm_pager_content_push(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
20414
20415    /**
20416     * @brief Pop the object that is on top of the stack
20417     *
20418     * @param obj The pager object
20419     *
20420     * This pops the object that is on the top(visible) of the pager, makes it
20421     * disappear, then deletes the object. The object that was underneath it on
20422     * the stack will become visible.
20423     */
20424    EAPI void         elm_pager_content_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
20425
20426    /**
20427     * @brief Moves an object already in the pager stack to the top of the stack.
20428     *
20429     * @param obj The pager object
20430     * @param content The object to promote
20431     *
20432     * This will take the @p content and move it to the top of the stack as
20433     * if it had been pushed there.
20434     *
20435     * @note If the content isn't already in the stack use
20436     * elm_pager_content_push().
20437     * @warning Using this function on @p content not already in the stack
20438     * results in undefined behavior.
20439     */
20440    EAPI void         elm_pager_content_promote(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
20441
20442    /**
20443     * @brief Return the object at the bottom of the pager stack
20444     *
20445     * @param obj The pager object
20446     * @return The bottom object or NULL if none
20447     */
20448    EAPI Evas_Object *elm_pager_content_bottom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20449
20450    /**
20451     * @brief  Return the object at the top of the pager stack
20452     *
20453     * @param obj The pager object
20454     * @return The top object or NULL if none
20455     */
20456    EAPI Evas_Object *elm_pager_content_top_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20457
20458    /**
20459     * @}
20460     */
20461
20462    /**
20463     * @defgroup Slideshow Slideshow
20464     *
20465     * @image html img/widget/slideshow/preview-00.png
20466     * @image latex img/widget/slideshow/preview-00.eps
20467     *
20468     * This widget, as the name indicates, is a pre-made image
20469     * slideshow panel, with API functions acting on (child) image
20470     * items presentation. Between those actions, are:
20471     * - advance to next/previous image
20472     * - select the style of image transition animation
20473     * - set the exhibition time for each image
20474     * - start/stop the slideshow
20475     *
20476     * The transition animations are defined in the widget's theme,
20477     * consequently new animations can be added without having to
20478     * update the widget's code.
20479     *
20480     * @section Slideshow_Items Slideshow items
20481     *
20482     * For slideshow items, just like for @ref Genlist "genlist" ones,
20483     * the user defines a @b classes, specifying functions that will be
20484     * called on the item's creation and deletion times.
20485     *
20486     * The #Elm_Slideshow_Item_Class structure contains the following
20487     * members:
20488     *
20489     * - @c func.get - When an item is displayed, this function is
20490     *   called, and it's where one should create the item object, de
20491     *   facto. For example, the object can be a pure Evas image object
20492     *   or an Elementary @ref Photocam "photocam" widget. See
20493     *   #SlideshowItemGetFunc.
20494     * - @c func.del - When an item is no more displayed, this function
20495     *   is called, where the user must delete any data associated to
20496     *   the item. See #SlideshowItemDelFunc.
20497     *
20498     * @section Slideshow_Caching Slideshow caching
20499     *
20500     * The slideshow provides facilities to have items adjacent to the
20501     * one being displayed <b>already "realized"</b> (i.e. loaded) for
20502     * you, so that the system does not have to decode image data
20503     * anymore at the time it has to actually switch images on its
20504     * viewport. The user is able to set the numbers of items to be
20505     * cached @b before and @b after the current item, in the widget's
20506     * item list.
20507     *
20508     * Smart events one can add callbacks for are:
20509     *
20510     * - @c "changed" - when the slideshow switches its view to a new
20511     *   item
20512     *
20513     * List of examples for the slideshow widget:
20514     * @li @ref slideshow_example
20515     */
20516
20517    /**
20518     * @addtogroup Slideshow
20519     * @{
20520     */
20521
20522    typedef struct _Elm_Slideshow_Item_Class Elm_Slideshow_Item_Class; /**< Slideshow item class definition struct */
20523    typedef struct _Elm_Slideshow_Item_Class_Func Elm_Slideshow_Item_Class_Func; /**< Class functions for slideshow item classes. */
20524    typedef struct _Elm_Slideshow_Item       Elm_Slideshow_Item; /**< Slideshow item handle */
20525    typedef Evas_Object *(*SlideshowItemGetFunc) (void *data, Evas_Object *obj); /**< Image fetching class function for slideshow item classes. */
20526    typedef void         (*SlideshowItemDelFunc) (void *data, Evas_Object *obj); /**< Deletion class function for slideshow item classes. */
20527
20528    /**
20529     * @struct _Elm_Slideshow_Item_Class
20530     *
20531     * Slideshow item class definition. See @ref Slideshow_Items for
20532     * field details.
20533     */
20534    struct _Elm_Slideshow_Item_Class
20535      {
20536         struct _Elm_Slideshow_Item_Class_Func
20537           {
20538              SlideshowItemGetFunc get;
20539              SlideshowItemDelFunc del;
20540           } func;
20541      }; /**< #Elm_Slideshow_Item_Class member definitions */
20542
20543    /**
20544     * Add a new slideshow widget to the given parent Elementary
20545     * (container) object
20546     *
20547     * @param parent The parent object
20548     * @return A new slideshow widget handle or @c NULL, on errors
20549     *
20550     * This function inserts a new slideshow widget on the canvas.
20551     *
20552     * @ingroup Slideshow
20553     */
20554    EAPI Evas_Object        *elm_slideshow_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20555
20556    /**
20557     * Add (append) a new item in a given slideshow widget.
20558     *
20559     * @param obj The slideshow object
20560     * @param itc The item class for the item
20561     * @param data The item's data
20562     * @return A handle to the item added or @c NULL, on errors
20563     *
20564     * Add a new item to @p obj's internal list of items, appending it.
20565     * The item's class must contain the function really fetching the
20566     * image object to show for this item, which could be an Evas image
20567     * object or an Elementary photo, for example. The @p data
20568     * parameter is going to be passed to both class functions of the
20569     * item.
20570     *
20571     * @see #Elm_Slideshow_Item_Class
20572     * @see elm_slideshow_item_sorted_insert()
20573     *
20574     * @ingroup Slideshow
20575     */
20576    EAPI Elm_Slideshow_Item *elm_slideshow_item_add(Evas_Object *obj, const Elm_Slideshow_Item_Class *itc, const void *data) EINA_ARG_NONNULL(1);
20577
20578    /**
20579     * Insert a new item into the given slideshow widget, using the @p func
20580     * function to sort items (by item handles).
20581     *
20582     * @param obj The slideshow object
20583     * @param itc The item class for the item
20584     * @param data The item's data
20585     * @param func The comparing function to be used to sort slideshow
20586     * items <b>by #Elm_Slideshow_Item item handles</b>
20587     * @return Returns The slideshow item handle, on success, or
20588     * @c NULL, on errors
20589     *
20590     * Add a new item to @p obj's internal list of items, in a position
20591     * determined by the @p func comparing function. The item's class
20592     * must contain the function really fetching the image object to
20593     * show for this item, which could be an Evas image object or an
20594     * Elementary photo, for example. The @p data parameter is going to
20595     * be passed to both class functions of the item.
20596     *
20597     * @see #Elm_Slideshow_Item_Class
20598     * @see elm_slideshow_item_add()
20599     *
20600     * @ingroup Slideshow
20601     */
20602    EAPI Elm_Slideshow_Item *elm_slideshow_item_sorted_insert(Evas_Object *obj, const Elm_Slideshow_Item_Class *itc, const void *data, Eina_Compare_Cb func) EINA_ARG_NONNULL(1);
20603
20604    /**
20605     * Display a given slideshow widget's item, programmatically.
20606     *
20607     * @param obj The slideshow object
20608     * @param item The item to display on @p obj's viewport
20609     *
20610     * The change between the current item and @p item will use the
20611     * transition @p obj is set to use (@see
20612     * elm_slideshow_transition_set()).
20613     *
20614     * @ingroup Slideshow
20615     */
20616    EAPI void                elm_slideshow_show(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20617
20618    /**
20619     * Slide to the @b next item, in a given slideshow widget
20620     *
20621     * @param obj The slideshow object
20622     *
20623     * The sliding animation @p obj is set to use will be the
20624     * transition effect used, after this call is issued.
20625     *
20626     * @note If the end of the slideshow's internal list of items is
20627     * reached, it'll wrap around to the list's beginning, again.
20628     *
20629     * @ingroup Slideshow
20630     */
20631    EAPI void                elm_slideshow_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
20632
20633    /**
20634     * Slide to the @b previous item, in a given slideshow widget
20635     *
20636     * @param obj The slideshow object
20637     *
20638     * The sliding animation @p obj is set to use will be the
20639     * transition effect used, after this call is issued.
20640     *
20641     * @note If the beginning of the slideshow's internal list of items
20642     * is reached, it'll wrap around to the list's end, again.
20643     *
20644     * @ingroup Slideshow
20645     */
20646    EAPI void                elm_slideshow_previous(Evas_Object *obj) EINA_ARG_NONNULL(1);
20647
20648    /**
20649     * Returns the list of sliding transition/effect names available, for a
20650     * given slideshow widget.
20651     *
20652     * @param obj The slideshow object
20653     * @return The list of transitions (list of @b stringshared strings
20654     * as data)
20655     *
20656     * The transitions, which come from @p obj's theme, must be an EDC
20657     * data item named @c "transitions" on the theme file, with (prefix)
20658     * names of EDC programs actually implementing them.
20659     *
20660     * The available transitions for slideshows on the default theme are:
20661     * - @c "fade" - the current item fades out, while the new one
20662     *   fades in to the slideshow's viewport.
20663     * - @c "black_fade" - the current item fades to black, and just
20664     *   then, the new item will fade in.
20665     * - @c "horizontal" - the current item slides horizontally, until
20666     *   it gets out of the slideshow's viewport, while the new item
20667     *   comes from the left to take its place.
20668     * - @c "vertical" - the current item slides vertically, until it
20669     *   gets out of the slideshow's viewport, while the new item comes
20670     *   from the bottom to take its place.
20671     * - @c "square" - the new item starts to appear from the middle of
20672     *   the current one, but with a tiny size, growing until its
20673     *   target (full) size and covering the old one.
20674     *
20675     * @warning The stringshared strings get no new references
20676     * exclusive to the user grabbing the list, here, so if you'd like
20677     * to use them out of this call's context, you'd better @c
20678     * eina_stringshare_ref() them.
20679     *
20680     * @see elm_slideshow_transition_set()
20681     *
20682     * @ingroup Slideshow
20683     */
20684    EAPI const Eina_List    *elm_slideshow_transitions_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20685
20686    /**
20687     * Set the current slide transition/effect in use for a given
20688     * slideshow widget
20689     *
20690     * @param obj The slideshow object
20691     * @param transition The new transition's name string
20692     *
20693     * If @p transition is implemented in @p obj's theme (i.e., is
20694     * contained in the list returned by
20695     * elm_slideshow_transitions_get()), this new sliding effect will
20696     * be used on the widget.
20697     *
20698     * @see elm_slideshow_transitions_get() for more details
20699     *
20700     * @ingroup Slideshow
20701     */
20702    EAPI void                elm_slideshow_transition_set(Evas_Object *obj, const char *transition) EINA_ARG_NONNULL(1);
20703
20704    /**
20705     * Get the current slide transition/effect in use for a given
20706     * slideshow widget
20707     *
20708     * @param obj The slideshow object
20709     * @return The current transition's name
20710     *
20711     * @see elm_slideshow_transition_set() for more details
20712     *
20713     * @ingroup Slideshow
20714     */
20715    EAPI const char         *elm_slideshow_transition_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20716
20717    /**
20718     * Set the interval between each image transition on a given
20719     * slideshow widget, <b>and start the slideshow, itself</b>
20720     *
20721     * @param obj The slideshow object
20722     * @param timeout The new displaying timeout for images
20723     *
20724     * After this call, the slideshow widget will start cycling its
20725     * view, sequentially and automatically, with the images of the
20726     * items it has. The time between each new image displayed is going
20727     * to be @p timeout, in @b seconds. If a different timeout was set
20728     * previously and an slideshow was in progress, it will continue
20729     * with the new time between transitions, after this call.
20730     *
20731     * @note A value less than or equal to 0 on @p timeout will disable
20732     * the widget's internal timer, thus halting any slideshow which
20733     * could be happening on @p obj.
20734     *
20735     * @see elm_slideshow_timeout_get()
20736     *
20737     * @ingroup Slideshow
20738     */
20739    EAPI void                elm_slideshow_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
20740
20741    /**
20742     * Get the interval set for image transitions on a given slideshow
20743     * widget.
20744     *
20745     * @param obj The slideshow object
20746     * @return Returns the timeout set on it
20747     *
20748     * @see elm_slideshow_timeout_set() for more details
20749     *
20750     * @ingroup Slideshow
20751     */
20752    EAPI double              elm_slideshow_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20753
20754    /**
20755     * Set if, after a slideshow is started, for a given slideshow
20756     * widget, its items should be displayed cyclically or not.
20757     *
20758     * @param obj The slideshow object
20759     * @param loop Use @c EINA_TRUE to make it cycle through items or
20760     * @c EINA_FALSE for it to stop at the end of @p obj's internal
20761     * list of items
20762     *
20763     * @note elm_slideshow_next() and elm_slideshow_previous() will @b
20764     * ignore what is set by this functions, i.e., they'll @b always
20765     * cycle through items. This affects only the "automatic"
20766     * slideshow, as set by elm_slideshow_timeout_set().
20767     *
20768     * @see elm_slideshow_loop_get()
20769     *
20770     * @ingroup Slideshow
20771     */
20772    EAPI void                elm_slideshow_loop_set(Evas_Object *obj, Eina_Bool loop) EINA_ARG_NONNULL(1);
20773
20774    /**
20775     * Get if, after a slideshow is started, for a given slideshow
20776     * widget, its items are to be displayed cyclically or not.
20777     *
20778     * @param obj The slideshow object
20779     * @return @c EINA_TRUE, if the items in @p obj will be cycled
20780     * through or @c EINA_FALSE, otherwise
20781     *
20782     * @see elm_slideshow_loop_set() for more details
20783     *
20784     * @ingroup Slideshow
20785     */
20786    EAPI Eina_Bool           elm_slideshow_loop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20787
20788    /**
20789     * Remove all items from a given slideshow widget
20790     *
20791     * @param obj The slideshow object
20792     *
20793     * This removes (and deletes) all items in @p obj, leaving it
20794     * empty.
20795     *
20796     * @see elm_slideshow_item_del(), to remove just one item.
20797     *
20798     * @ingroup Slideshow
20799     */
20800    EAPI void                elm_slideshow_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
20801
20802    /**
20803     * Get the internal list of items in a given slideshow widget.
20804     *
20805     * @param obj The slideshow object
20806     * @return The list of items (#Elm_Slideshow_Item as data) or
20807     * @c NULL on errors.
20808     *
20809     * This list is @b not to be modified in any way and must not be
20810     * freed. Use the list members with functions like
20811     * elm_slideshow_item_del(), elm_slideshow_item_data_get().
20812     *
20813     * @warning This list is only valid until @p obj object's internal
20814     * items list is changed. It should be fetched again with another
20815     * call to this function when changes happen.
20816     *
20817     * @ingroup Slideshow
20818     */
20819    EAPI const Eina_List    *elm_slideshow_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20820
20821    /**
20822     * Delete a given item from a slideshow widget.
20823     *
20824     * @param item The slideshow item
20825     *
20826     * @ingroup Slideshow
20827     */
20828    EAPI void                elm_slideshow_item_del(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20829
20830    /**
20831     * Return the data associated with a given slideshow item
20832     *
20833     * @param item The slideshow item
20834     * @return Returns the data associated to this item
20835     *
20836     * @ingroup Slideshow
20837     */
20838    EAPI void               *elm_slideshow_item_data_get(const Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20839
20840    /**
20841     * Returns the currently displayed item, in a given slideshow widget
20842     *
20843     * @param obj The slideshow object
20844     * @return A handle to the item being displayed in @p obj or
20845     * @c NULL, if none is (and on errors)
20846     *
20847     * @ingroup Slideshow
20848     */
20849    EAPI Elm_Slideshow_Item *elm_slideshow_item_current_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20850
20851    /**
20852     * Get the real Evas object created to implement the view of a
20853     * given slideshow item
20854     *
20855     * @param item The slideshow item.
20856     * @return the Evas object implementing this item's view.
20857     *
20858     * This returns the actual Evas object used to implement the
20859     * specified slideshow item's view. This may be @c NULL, as it may
20860     * not have been created or may have been deleted, at any time, by
20861     * the slideshow. <b>Do not modify this object</b> (move, resize,
20862     * show, hide, etc.), as the slideshow is controlling it. This
20863     * function is for querying, emitting custom signals or hooking
20864     * lower level callbacks for events on that object. Do not delete
20865     * this object under any circumstances.
20866     *
20867     * @see elm_slideshow_item_data_get()
20868     *
20869     * @ingroup Slideshow
20870     */
20871    EAPI Evas_Object*        elm_slideshow_item_object_get(const Elm_Slideshow_Item* item) EINA_ARG_NONNULL(1);
20872
20873    /**
20874     * Get the the item, in a given slideshow widget, placed at
20875     * position @p nth, in its internal items list
20876     *
20877     * @param obj The slideshow object
20878     * @param nth The number of the item to grab a handle to (0 being
20879     * the first)
20880     * @return The item stored in @p obj at position @p nth or @c NULL,
20881     * if there's no item with that index (and on errors)
20882     *
20883     * @ingroup Slideshow
20884     */
20885    EAPI Elm_Slideshow_Item *elm_slideshow_item_nth_get(const Evas_Object *obj, unsigned int nth) EINA_ARG_NONNULL(1);
20886
20887    /**
20888     * Set the current slide layout in use for a given slideshow widget
20889     *
20890     * @param obj The slideshow object
20891     * @param layout The new layout's name string
20892     *
20893     * If @p layout is implemented in @p obj's theme (i.e., is contained
20894     * in the list returned by elm_slideshow_layouts_get()), this new
20895     * images layout will be used on the widget.
20896     *
20897     * @see elm_slideshow_layouts_get() for more details
20898     *
20899     * @ingroup Slideshow
20900     */
20901    EAPI void                elm_slideshow_layout_set(Evas_Object *obj, const char *layout) EINA_ARG_NONNULL(1);
20902
20903    /**
20904     * Get the current slide layout in use for a given slideshow widget
20905     *
20906     * @param obj The slideshow object
20907     * @return The current layout's name
20908     *
20909     * @see elm_slideshow_layout_set() for more details
20910     *
20911     * @ingroup Slideshow
20912     */
20913    EAPI const char         *elm_slideshow_layout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20914
20915    /**
20916     * Returns the list of @b layout names available, for a given
20917     * slideshow widget.
20918     *
20919     * @param obj The slideshow object
20920     * @return The list of layouts (list of @b stringshared strings
20921     * as data)
20922     *
20923     * Slideshow layouts will change how the widget is to dispose each
20924     * image item in its viewport, with regard to cropping, scaling,
20925     * etc.
20926     *
20927     * The layouts, which come from @p obj's theme, must be an EDC
20928     * data item name @c "layouts" on the theme file, with (prefix)
20929     * names of EDC programs actually implementing them.
20930     *
20931     * The available layouts for slideshows on the default theme are:
20932     * - @c "fullscreen" - item images with original aspect, scaled to
20933     *   touch top and down slideshow borders or, if the image's heigh
20934     *   is not enough, left and right slideshow borders.
20935     * - @c "not_fullscreen" - the same behavior as the @c "fullscreen"
20936     *   one, but always leaving 10% of the slideshow's dimensions of
20937     *   distance between the item image's borders and the slideshow
20938     *   borders, for each axis.
20939     *
20940     * @warning The stringshared strings get no new references
20941     * exclusive to the user grabbing the list, here, so if you'd like
20942     * to use them out of this call's context, you'd better @c
20943     * eina_stringshare_ref() them.
20944     *
20945     * @see elm_slideshow_layout_set()
20946     *
20947     * @ingroup Slideshow
20948     */
20949    EAPI const Eina_List    *elm_slideshow_layouts_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20950
20951    /**
20952     * Set the number of items to cache, on a given slideshow widget,
20953     * <b>before the current item</b>
20954     *
20955     * @param obj The slideshow object
20956     * @param count Number of items to cache before the current one
20957     *
20958     * The default value for this property is @c 2. See
20959     * @ref Slideshow_Caching "slideshow caching" for more details.
20960     *
20961     * @see elm_slideshow_cache_before_get()
20962     *
20963     * @ingroup Slideshow
20964     */
20965    EAPI void                elm_slideshow_cache_before_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
20966
20967    /**
20968     * Retrieve the number of items to cache, on a given slideshow widget,
20969     * <b>before the current item</b>
20970     *
20971     * @param obj The slideshow object
20972     * @return The number of items set to be cached before the current one
20973     *
20974     * @see elm_slideshow_cache_before_set() for more details
20975     *
20976     * @ingroup Slideshow
20977     */
20978    EAPI int                 elm_slideshow_cache_before_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20979
20980    /**
20981     * Set the number of items to cache, on a given slideshow widget,
20982     * <b>after the current item</b>
20983     *
20984     * @param obj The slideshow object
20985     * @param count Number of items to cache after the current one
20986     *
20987     * The default value for this property is @c 2. See
20988     * @ref Slideshow_Caching "slideshow caching" for more details.
20989     *
20990     * @see elm_slideshow_cache_after_get()
20991     *
20992     * @ingroup Slideshow
20993     */
20994    EAPI void                elm_slideshow_cache_after_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
20995
20996    /**
20997     * Retrieve the number of items to cache, on a given slideshow widget,
20998     * <b>after the current item</b>
20999     *
21000     * @param obj The slideshow object
21001     * @return The number of items set to be cached after the current one
21002     *
21003     * @see elm_slideshow_cache_after_set() for more details
21004     *
21005     * @ingroup Slideshow
21006     */
21007    EAPI int                 elm_slideshow_cache_after_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21008
21009    /**
21010     * Get the number of items stored in a given slideshow widget
21011     *
21012     * @param obj The slideshow object
21013     * @return The number of items on @p obj, at the moment of this call
21014     *
21015     * @ingroup Slideshow
21016     */
21017    EAPI unsigned int        elm_slideshow_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21018
21019    /**
21020     * @}
21021     */
21022
21023    /**
21024     * @defgroup Fileselector File Selector
21025     *
21026     * @image html img/widget/fileselector/preview-00.png
21027     * @image latex img/widget/fileselector/preview-00.eps
21028     *
21029     * A file selector is a widget that allows a user to navigate
21030     * through a file system, reporting file selections back via its
21031     * API.
21032     *
21033     * It contains shortcut buttons for home directory (@c ~) and to
21034     * jump one directory upwards (..), as well as cancel/ok buttons to
21035     * confirm/cancel a given selection. After either one of those two
21036     * former actions, the file selector will issue its @c "done" smart
21037     * callback.
21038     *
21039     * There's a text entry on it, too, showing the name of the current
21040     * selection. There's the possibility of making it editable, so it
21041     * is useful on file saving dialogs on applications, where one
21042     * gives a file name to save contents to, in a given directory in
21043     * the system. This custom file name will be reported on the @c
21044     * "done" smart callback (explained in sequence).
21045     *
21046     * Finally, it has a view to display file system items into in two
21047     * possible forms:
21048     * - list
21049     * - grid
21050     *
21051     * If Elementary is built with support of the Ethumb thumbnailing
21052     * library, the second form of view will display preview thumbnails
21053     * of files which it supports.
21054     *
21055     * Smart callbacks one can register to:
21056     *
21057     * - @c "selected" - the user has clicked on a file (when not in
21058     *      folders-only mode) or directory (when in folders-only mode)
21059     * - @c "directory,open" - the list has been populated with new
21060     *      content (@c event_info is a pointer to the directory's
21061     *      path, a @b stringshared string)
21062     * - @c "done" - the user has clicked on the "ok" or "cancel"
21063     *      buttons (@c event_info is a pointer to the selection's
21064     *      path, a @b stringshared string)
21065     *
21066     * Here is an example on its usage:
21067     * @li @ref fileselector_example
21068     */
21069
21070    /**
21071     * @addtogroup Fileselector
21072     * @{
21073     */
21074
21075    /**
21076     * Defines how a file selector widget is to layout its contents
21077     * (file system entries).
21078     */
21079    typedef enum _Elm_Fileselector_Mode
21080      {
21081         ELM_FILESELECTOR_LIST = 0, /**< layout as a list */
21082         ELM_FILESELECTOR_GRID, /**< layout as a grid */
21083         ELM_FILESELECTOR_LAST /**< sentinel (helper) value, not used */
21084      } Elm_Fileselector_Mode;
21085
21086    /**
21087     * Add a new file selector widget to the given parent Elementary
21088     * (container) object
21089     *
21090     * @param parent The parent object
21091     * @return a new file selector widget handle or @c NULL, on errors
21092     *
21093     * This function inserts a new file selector widget on the canvas.
21094     *
21095     * @ingroup Fileselector
21096     */
21097    EAPI Evas_Object          *elm_fileselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21098
21099    /**
21100     * Enable/disable the file name entry box where the user can type
21101     * in a name for a file, in a given file selector widget
21102     *
21103     * @param obj The file selector object
21104     * @param is_save @c EINA_TRUE to make the file selector a "saving
21105     * dialog", @c EINA_FALSE otherwise
21106     *
21107     * Having the entry editable is useful on file saving dialogs on
21108     * applications, where one gives a file name to save contents to,
21109     * in a given directory in the system. This custom file name will
21110     * be reported on the @c "done" smart callback.
21111     *
21112     * @see elm_fileselector_is_save_get()
21113     *
21114     * @ingroup Fileselector
21115     */
21116    EAPI void                  elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save) EINA_ARG_NONNULL(1);
21117
21118    /**
21119     * Get whether the given file selector is in "saving dialog" mode
21120     *
21121     * @param obj The file selector object
21122     * @return @c EINA_TRUE, if the file selector is in "saving dialog"
21123     * mode, @c EINA_FALSE otherwise (and on errors)
21124     *
21125     * @see elm_fileselector_is_save_set() for more details
21126     *
21127     * @ingroup Fileselector
21128     */
21129    EAPI Eina_Bool             elm_fileselector_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21130
21131    /**
21132     * Enable/disable folder-only view for a given file selector widget
21133     *
21134     * @param obj The file selector object
21135     * @param only @c EINA_TRUE to make @p obj only display
21136     * directories, @c EINA_FALSE to make files to be displayed in it
21137     * too
21138     *
21139     * If enabled, the widget's view will only display folder items,
21140     * naturally.
21141     *
21142     * @see elm_fileselector_folder_only_get()
21143     *
21144     * @ingroup Fileselector
21145     */
21146    EAPI void                  elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only) EINA_ARG_NONNULL(1);
21147
21148    /**
21149     * Get whether folder-only view is set for a given file selector
21150     * widget
21151     *
21152     * @param obj The file selector object
21153     * @return only @c EINA_TRUE if @p obj is only displaying
21154     * directories, @c EINA_FALSE if files are being displayed in it
21155     * too (and on errors)
21156     *
21157     * @see elm_fileselector_folder_only_get()
21158     *
21159     * @ingroup Fileselector
21160     */
21161    EAPI Eina_Bool             elm_fileselector_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21162
21163    /**
21164     * Enable/disable the "ok" and "cancel" buttons on a given file
21165     * selector widget
21166     *
21167     * @param obj The file selector object
21168     * @param only @c EINA_TRUE to show them, @c EINA_FALSE to hide.
21169     *
21170     * @note A file selector without those buttons will never emit the
21171     * @c "done" smart event, and is only usable if one is just hooking
21172     * to the other two events.
21173     *
21174     * @see elm_fileselector_buttons_ok_cancel_get()
21175     *
21176     * @ingroup Fileselector
21177     */
21178    EAPI void                  elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons) EINA_ARG_NONNULL(1);
21179
21180    /**
21181     * Get whether the "ok" and "cancel" buttons on a given file
21182     * selector widget are being shown.
21183     *
21184     * @param obj The file selector object
21185     * @return @c EINA_TRUE if they are being shown, @c EINA_FALSE
21186     * otherwise (and on errors)
21187     *
21188     * @see elm_fileselector_buttons_ok_cancel_set() for more details
21189     *
21190     * @ingroup Fileselector
21191     */
21192    EAPI Eina_Bool             elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21193
21194    /**
21195     * Enable/disable a tree view in the given file selector widget,
21196     * <b>if it's in @c #ELM_FILESELECTOR_LIST mode</b>
21197     *
21198     * @param obj The file selector object
21199     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
21200     * disable
21201     *
21202     * In a tree view, arrows are created on the sides of directories,
21203     * allowing them to expand in place.
21204     *
21205     * @note If it's in other mode, the changes made by this function
21206     * will only be visible when one switches back to "list" mode.
21207     *
21208     * @see elm_fileselector_expandable_get()
21209     *
21210     * @ingroup Fileselector
21211     */
21212    EAPI void                  elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand) EINA_ARG_NONNULL(1);
21213
21214    /**
21215     * Get whether tree view is enabled for the given file selector
21216     * widget
21217     *
21218     * @param obj The file selector object
21219     * @return @c EINA_TRUE if @p obj is in tree view, @c EINA_FALSE
21220     * otherwise (and or errors)
21221     *
21222     * @see elm_fileselector_expandable_set() for more details
21223     *
21224     * @ingroup Fileselector
21225     */
21226    EAPI Eina_Bool             elm_fileselector_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21227
21228    /**
21229     * Set, programmatically, the @b directory that a given file
21230     * selector widget will display contents from
21231     *
21232     * @param obj The file selector object
21233     * @param path The path to display in @p obj
21234     *
21235     * This will change the @b directory that @p obj is displaying. It
21236     * will also clear the text entry area on the @p obj object, which
21237     * displays select files' names.
21238     *
21239     * @see elm_fileselector_path_get()
21240     *
21241     * @ingroup Fileselector
21242     */
21243    EAPI void                  elm_fileselector_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
21244
21245    /**
21246     * Get the parent directory's path that a given file selector
21247     * widget is displaying
21248     *
21249     * @param obj The file selector object
21250     * @return The (full) path of the directory the file selector is
21251     * displaying, a @b stringshared string
21252     *
21253     * @see elm_fileselector_path_set()
21254     *
21255     * @ingroup Fileselector
21256     */
21257    EAPI const char           *elm_fileselector_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21258
21259    /**
21260     * Set, programmatically, the currently selected file/directory in
21261     * the given file selector widget
21262     *
21263     * @param obj The file selector object
21264     * @param path The (full) path to a file or directory
21265     * @return @c EINA_TRUE on success, @c EINA_FALSE on failure. The
21266     * latter case occurs if the directory or file pointed to do not
21267     * exist.
21268     *
21269     * @see elm_fileselector_selected_get()
21270     *
21271     * @ingroup Fileselector
21272     */
21273    EAPI Eina_Bool             elm_fileselector_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
21274
21275    /**
21276     * Get the currently selected item's (full) path, in the given file
21277     * selector widget
21278     *
21279     * @param obj The file selector object
21280     * @return The absolute path of the selected item, a @b
21281     * stringshared string
21282     *
21283     * @note Custom editions on @p obj object's text entry, if made,
21284     * will appear on the return string of this function, naturally.
21285     *
21286     * @see elm_fileselector_selected_set() for more details
21287     *
21288     * @ingroup Fileselector
21289     */
21290    EAPI const char           *elm_fileselector_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21291
21292    /**
21293     * Set the mode in which a given file selector widget will display
21294     * (layout) file system entries in its view
21295     *
21296     * @param obj The file selector object
21297     * @param mode The mode of the fileselector, being it one of
21298     * #ELM_FILESELECTOR_LIST (default) or #ELM_FILESELECTOR_GRID. The
21299     * first one, naturally, will display the files in a list. The
21300     * latter will make the widget to display its entries in a grid
21301     * form.
21302     *
21303     * @note By using elm_fileselector_expandable_set(), the user may
21304     * trigger a tree view for that list.
21305     *
21306     * @note If Elementary is built with support of the Ethumb
21307     * thumbnailing library, the second form of view will display
21308     * preview thumbnails of files which it supports. You must have
21309     * elm_need_ethumb() called in your Elementary for thumbnailing to
21310     * work, though.
21311     *
21312     * @see elm_fileselector_expandable_set().
21313     * @see elm_fileselector_mode_get().
21314     *
21315     * @ingroup Fileselector
21316     */
21317    EAPI void                  elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode) EINA_ARG_NONNULL(1);
21318
21319    /**
21320     * Get the mode in which a given file selector widget is displaying
21321     * (layouting) file system entries in its view
21322     *
21323     * @param obj The fileselector object
21324     * @return The mode in which the fileselector is at
21325     *
21326     * @see elm_fileselector_mode_set() for more details
21327     *
21328     * @ingroup Fileselector
21329     */
21330    EAPI Elm_Fileselector_Mode elm_fileselector_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21331
21332    /**
21333     * @}
21334     */
21335
21336    /**
21337     * @defgroup Progressbar Progress bar
21338     *
21339     * The progress bar is a widget for visually representing the
21340     * progress status of a given job/task.
21341     *
21342     * A progress bar may be horizontal or vertical. It may display an
21343     * icon besides it, as well as primary and @b units labels. The
21344     * former is meant to label the widget as a whole, while the
21345     * latter, which is formatted with floating point values (and thus
21346     * accepts a <c>printf</c>-style format string, like <c>"%1.2f
21347     * units"</c>), is meant to label the widget's <b>progress
21348     * value</b>. Label, icon and unit strings/objects are @b optional
21349     * for progress bars.
21350     *
21351     * A progress bar may be @b inverted, in which state it gets its
21352     * values inverted, with high values being on the left or top and
21353     * low values on the right or bottom, as opposed to normally have
21354     * the low values on the former and high values on the latter,
21355     * respectively, for horizontal and vertical modes.
21356     *
21357     * The @b span of the progress, as set by
21358     * elm_progressbar_span_size_set(), is its length (horizontally or
21359     * vertically), unless one puts size hints on the widget to expand
21360     * on desired directions, by any container. That length will be
21361     * scaled by the object or applications scaling factor. At any
21362     * point code can query the progress bar for its value with
21363     * elm_progressbar_value_get().
21364     *
21365     * Available widget styles for progress bars:
21366     * - @c "default"
21367     * - @c "wheel" (simple style, no text, no progression, only
21368     *      "pulse" effect is available)
21369     *
21370     * Default contents parts of the progressbar widget that you can use for are:
21371     * @li "icon" - An icon of the progressbar
21372     *
21373     * Here is an example on its usage:
21374     * @li @ref progressbar_example
21375     */
21376
21377    /**
21378     * Add a new progress bar widget to the given parent Elementary
21379     * (container) object
21380     *
21381     * @param parent The parent object
21382     * @return a new progress bar widget handle or @c NULL, on errors
21383     *
21384     * This function inserts a new progress bar widget on the canvas.
21385     *
21386     * @ingroup Progressbar
21387     */
21388    EAPI Evas_Object *elm_progressbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21389
21390    /**
21391     * Set whether a given progress bar widget is at "pulsing mode" or
21392     * not.
21393     *
21394     * @param obj The progress bar object
21395     * @param pulse @c EINA_TRUE to put @p obj in pulsing mode,
21396     * @c EINA_FALSE to put it back to its default one
21397     *
21398     * By default, progress bars will display values from the low to
21399     * high value boundaries. There are, though, contexts in which the
21400     * state of progression of a given task is @b unknown.  For those,
21401     * one can set a progress bar widget to a "pulsing state", to give
21402     * the user an idea that some computation is being held, but
21403     * without exact progress values. In the default theme it will
21404     * animate its bar with the contents filling in constantly and back
21405     * to non-filled, in a loop. To start and stop this pulsing
21406     * animation, one has to explicitly call elm_progressbar_pulse().
21407     *
21408     * @see elm_progressbar_pulse_get()
21409     * @see elm_progressbar_pulse()
21410     *
21411     * @ingroup Progressbar
21412     */
21413    EAPI void         elm_progressbar_pulse_set(Evas_Object *obj, Eina_Bool pulse) EINA_ARG_NONNULL(1);
21414
21415    /**
21416     * Get whether a given progress bar widget is at "pulsing mode" or
21417     * not.
21418     *
21419     * @param obj The progress bar object
21420     * @return @c EINA_TRUE, if @p obj is in pulsing mode, @c EINA_FALSE
21421     * if it's in the default one (and on errors)
21422     *
21423     * @ingroup Progressbar
21424     */
21425    EAPI Eina_Bool    elm_progressbar_pulse_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21426
21427    /**
21428     * Start/stop a given progress bar "pulsing" animation, if its
21429     * under that mode
21430     *
21431     * @param obj The progress bar object
21432     * @param state @c EINA_TRUE, to @b start the pulsing animation,
21433     * @c EINA_FALSE to @b stop it
21434     *
21435     * @note This call won't do anything if @p obj is not under "pulsing mode".
21436     *
21437     * @see elm_progressbar_pulse_set() for more details.
21438     *
21439     * @ingroup Progressbar
21440     */
21441    EAPI void         elm_progressbar_pulse(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
21442
21443    /**
21444     * Set the progress value (in percentage) on a given progress bar
21445     * widget
21446     *
21447     * @param obj The progress bar object
21448     * @param val The progress value (@b must be between @c 0.0 and @c
21449     * 1.0)
21450     *
21451     * Use this call to set progress bar levels.
21452     *
21453     * @note If you passes a value out of the specified range for @p
21454     * val, it will be interpreted as the @b closest of the @b boundary
21455     * values in the range.
21456     *
21457     * @ingroup Progressbar
21458     */
21459    EAPI void         elm_progressbar_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
21460
21461    /**
21462     * Get the progress value (in percentage) on a given progress bar
21463     * widget
21464     *
21465     * @param obj The progress bar object
21466     * @return The value of the progressbar
21467     *
21468     * @see elm_progressbar_value_set() for more details
21469     *
21470     * @ingroup Progressbar
21471     */
21472    EAPI double       elm_progressbar_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21473
21474    /**
21475     * Set the label of a given progress bar widget
21476     *
21477     * @param obj The progress bar object
21478     * @param label The text label string, in UTF-8
21479     *
21480     * @ingroup Progressbar
21481     * @deprecated use elm_object_text_set() instead.
21482     */
21483    EINA_DEPRECATED EAPI void         elm_progressbar_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
21484
21485    /**
21486     * Get the label of a given progress bar widget
21487     *
21488     * @param obj The progressbar object
21489     * @return The text label string, in UTF-8
21490     *
21491     * @ingroup Progressbar
21492     * @deprecated use elm_object_text_set() instead.
21493     */
21494    EINA_DEPRECATED EAPI const char  *elm_progressbar_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21495
21496    /**
21497     * Set the icon object of a given progress bar widget
21498     *
21499     * @param obj The progress bar object
21500     * @param icon The icon object
21501     *
21502     * Use this call to decorate @p obj with an icon next to it.
21503     *
21504     * @note Once the icon object is set, a previously set one will be
21505     * deleted. If you want to keep that old content object, use the
21506     * elm_progressbar_icon_unset() function.
21507     *
21508     * @see elm_progressbar_icon_get()
21509     * @deprecated use elm_object_part_content_set() instead.
21510     *
21511     * @ingroup Progressbar
21512     */
21513    EINA_DEPRECATED EAPI void         elm_progressbar_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
21514
21515    /**
21516     * Retrieve the icon object set for a given progress bar widget
21517     *
21518     * @param obj The progress bar object
21519     * @return The icon object's handle, if @p obj had one set, or @c NULL,
21520     * otherwise (and on errors)
21521     *
21522     * @see elm_progressbar_icon_set() for more details
21523     * @deprecated use elm_object_part_content_get() instead.
21524     *
21525     * @ingroup Progressbar
21526     */
21527    EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21528
21529    /**
21530     * Unset an icon set on a given progress bar widget
21531     *
21532     * @param obj The progress bar object
21533     * @return The icon object that was being used, if any was set, or
21534     * @c NULL, otherwise (and on errors)
21535     *
21536     * This call will unparent and return the icon object which was set
21537     * for this widget, previously, on success.
21538     *
21539     * @see elm_progressbar_icon_set() for more details
21540     * @deprecated use elm_object_part_content_unset() instead.
21541     *
21542     * @ingroup Progressbar
21543     */
21544    EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
21545
21546    /**
21547     * Set the (exact) length of the bar region of a given progress bar
21548     * widget
21549     *
21550     * @param obj The progress bar object
21551     * @param size The length of the progress bar's bar region
21552     *
21553     * This sets the minimum width (when in horizontal mode) or height
21554     * (when in vertical mode) of the actual bar area of the progress
21555     * bar @p obj. This in turn affects the object's minimum size. Use
21556     * this when you're not setting other size hints expanding on the
21557     * given direction (like weight and alignment hints) and you would
21558     * like it to have a specific size.
21559     *
21560     * @note Icon, label and unit text around @p obj will require their
21561     * own space, which will make @p obj to require more the @p size,
21562     * actually.
21563     *
21564     * @see elm_progressbar_span_size_get()
21565     *
21566     * @ingroup Progressbar
21567     */
21568    EAPI void         elm_progressbar_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
21569
21570    /**
21571     * Get the length set for the bar region of a given progress bar
21572     * widget
21573     *
21574     * @param obj The progress bar object
21575     * @return The length of the progress bar's bar region
21576     *
21577     * If that size was not set previously, with
21578     * elm_progressbar_span_size_set(), this call will return @c 0.
21579     *
21580     * @ingroup Progressbar
21581     */
21582    EAPI Evas_Coord   elm_progressbar_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21583
21584    /**
21585     * Set the format string for a given progress bar widget's units
21586     * label
21587     *
21588     * @param obj The progress bar object
21589     * @param format The format string for @p obj's units label
21590     *
21591     * If @c NULL is passed on @p format, it will make @p obj's units
21592     * area to be hidden completely. If not, it'll set the <b>format
21593     * string</b> for the units label's @b text. The units label is
21594     * provided a floating point value, so the units text is up display
21595     * at most one floating point falue. Note that the units label is
21596     * optional. Use a format string such as "%1.2f meters" for
21597     * example.
21598     *
21599     * @note The default format string for a progress bar is an integer
21600     * percentage, as in @c "%.0f %%".
21601     *
21602     * @see elm_progressbar_unit_format_get()
21603     *
21604     * @ingroup Progressbar
21605     */
21606    EAPI void         elm_progressbar_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
21607
21608    /**
21609     * Retrieve the format string set for a given progress bar widget's
21610     * units label
21611     *
21612     * @param obj The progress bar object
21613     * @return The format set string for @p obj's units label or
21614     * @c NULL, if none was set (and on errors)
21615     *
21616     * @see elm_progressbar_unit_format_set() for more details
21617     *
21618     * @ingroup Progressbar
21619     */
21620    EAPI const char  *elm_progressbar_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21621
21622    /**
21623     * Set the orientation of a given progress bar widget
21624     *
21625     * @param obj The progress bar object
21626     * @param horizontal Use @c EINA_TRUE to make @p obj to be
21627     * @b horizontal, @c EINA_FALSE to make it @b vertical
21628     *
21629     * Use this function to change how your progress bar is to be
21630     * disposed: vertically or horizontally.
21631     *
21632     * @see elm_progressbar_horizontal_get()
21633     *
21634     * @ingroup Progressbar
21635     */
21636    EAPI void         elm_progressbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
21637
21638    /**
21639     * Retrieve the orientation of a given progress bar widget
21640     *
21641     * @param obj The progress bar object
21642     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
21643     * @c EINA_FALSE if it's @b vertical (and on errors)
21644     *
21645     * @see elm_progressbar_horizontal_set() for more details
21646     *
21647     * @ingroup Progressbar
21648     */
21649    EAPI Eina_Bool    elm_progressbar_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21650
21651    /**
21652     * Invert a given progress bar widget's displaying values order
21653     *
21654     * @param obj The progress bar object
21655     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
21656     * @c EINA_FALSE to bring it back to default, non-inverted values.
21657     *
21658     * A progress bar may be @b inverted, in which state it gets its
21659     * values inverted, with high values being on the left or top and
21660     * low values on the right or bottom, as opposed to normally have
21661     * the low values on the former and high values on the latter,
21662     * respectively, for horizontal and vertical modes.
21663     *
21664     * @see elm_progressbar_inverted_get()
21665     *
21666     * @ingroup Progressbar
21667     */
21668    EAPI void         elm_progressbar_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
21669
21670    /**
21671     * Get whether a given progress bar widget's displaying values are
21672     * inverted or not
21673     *
21674     * @param obj The progress bar object
21675     * @return @c EINA_TRUE, if @p obj has inverted values,
21676     * @c EINA_FALSE otherwise (and on errors)
21677     *
21678     * @see elm_progressbar_inverted_set() for more details
21679     *
21680     * @ingroup Progressbar
21681     */
21682    EAPI Eina_Bool    elm_progressbar_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21683
21684    /**
21685     * @defgroup Separator Separator
21686     *
21687     * @brief Separator is a very thin object used to separate other objects.
21688     *
21689     * A separator can be vertical or horizontal.
21690     *
21691     * @ref tutorial_separator is a good example of how to use a separator.
21692     * @{
21693     */
21694    /**
21695     * @brief Add a separator object to @p parent
21696     *
21697     * @param parent The parent object
21698     *
21699     * @return The separator object, or NULL upon failure
21700     */
21701    EAPI Evas_Object *elm_separator_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21702    /**
21703     * @brief Set the horizontal mode of a separator object
21704     *
21705     * @param obj The separator object
21706     * @param horizontal If true, the separator is horizontal
21707     */
21708    EAPI void         elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
21709    /**
21710     * @brief Get the horizontal mode of a separator object
21711     *
21712     * @param obj The separator object
21713     * @return If true, the separator is horizontal
21714     *
21715     * @see elm_separator_horizontal_set()
21716     */
21717    EAPI Eina_Bool    elm_separator_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21718    /**
21719     * @}
21720     */
21721
21722    /**
21723     * @defgroup Spinner Spinner
21724     * @ingroup Elementary
21725     *
21726     * @image html img/widget/spinner/preview-00.png
21727     * @image latex img/widget/spinner/preview-00.eps
21728     *
21729     * A spinner is a widget which allows the user to increase or decrease
21730     * numeric values using arrow buttons, or edit values directly, clicking
21731     * over it and typing the new value.
21732     *
21733     * By default the spinner will not wrap and has a label
21734     * of "%.0f" (just showing the integer value of the double).
21735     *
21736     * A spinner has a label that is formatted with floating
21737     * point values and thus accepts a printf-style format string, like
21738     * ā€œ%1.2f unitsā€.
21739     *
21740     * It also allows specific values to be replaced by pre-defined labels.
21741     *
21742     * Smart callbacks one can register to:
21743     *
21744     * - "changed" - Whenever the spinner value is changed.
21745     * - "delay,changed" - A short time after the value is changed by the user.
21746     *    This will be called only when the user stops dragging for a very short
21747     *    period or when they release their finger/mouse, so it avoids possibly
21748     *    expensive reactions to the value change.
21749     *
21750     * Available styles for it:
21751     * - @c "default";
21752     * - @c "vertical": up/down buttons at the right side and text left aligned.
21753     *
21754     * Here is an example on its usage:
21755     * @ref spinner_example
21756     */
21757
21758    /**
21759     * @addtogroup Spinner
21760     * @{
21761     */
21762
21763    /**
21764     * Add a new spinner widget to the given parent Elementary
21765     * (container) object.
21766     *
21767     * @param parent The parent object.
21768     * @return a new spinner widget handle or @c NULL, on errors.
21769     *
21770     * This function inserts a new spinner widget on the canvas.
21771     *
21772     * @ingroup Spinner
21773     *
21774     */
21775    EAPI Evas_Object *elm_spinner_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21776
21777    /**
21778     * Set the format string of the displayed label.
21779     *
21780     * @param obj The spinner object.
21781     * @param fmt The format string for the label display.
21782     *
21783     * If @c NULL, this sets the format to "%.0f". If not it sets the format
21784     * string for the label text. The label text is provided a floating point
21785     * value, so the label text can display up to 1 floating point value.
21786     * Note that this is optional.
21787     *
21788     * Use a format string such as "%1.2f meters" for example, and it will
21789     * display values like: "3.14 meters" for a value equal to 3.14159.
21790     *
21791     * Default is "%0.f".
21792     *
21793     * @see elm_spinner_label_format_get()
21794     *
21795     * @ingroup Spinner
21796     */
21797    EAPI void         elm_spinner_label_format_set(Evas_Object *obj, const char *fmt) EINA_ARG_NONNULL(1);
21798
21799    /**
21800     * Get the label format of the spinner.
21801     *
21802     * @param obj The spinner object.
21803     * @return The text label format string in UTF-8.
21804     *
21805     * @see elm_spinner_label_format_set() for details.
21806     *
21807     * @ingroup Spinner
21808     */
21809    EAPI const char  *elm_spinner_label_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21810
21811    /**
21812     * Set the minimum and maximum values for the spinner.
21813     *
21814     * @param obj The spinner object.
21815     * @param min The minimum value.
21816     * @param max The maximum value.
21817     *
21818     * Define the allowed range of values to be selected by the user.
21819     *
21820     * If actual value is less than @p min, it will be updated to @p min. If it
21821     * is bigger then @p max, will be updated to @p max. Actual value can be
21822     * get with elm_spinner_value_get().
21823     *
21824     * By default, min is equal to 0, and max is equal to 100.
21825     *
21826     * @warning Maximum must be greater than minimum.
21827     *
21828     * @see elm_spinner_min_max_get()
21829     *
21830     * @ingroup Spinner
21831     */
21832    EAPI void         elm_spinner_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
21833
21834    /**
21835     * Get the minimum and maximum values of the spinner.
21836     *
21837     * @param obj The spinner object.
21838     * @param min Pointer where to store the minimum value.
21839     * @param max Pointer where to store the maximum value.
21840     *
21841     * @note If only one value is needed, the other pointer can be passed
21842     * as @c NULL.
21843     *
21844     * @see elm_spinner_min_max_set() for details.
21845     *
21846     * @ingroup Spinner
21847     */
21848    EAPI void         elm_spinner_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
21849
21850    /**
21851     * Set the step used to increment or decrement the spinner value.
21852     *
21853     * @param obj The spinner object.
21854     * @param step The step value.
21855     *
21856     * This value will be incremented or decremented to the displayed value.
21857     * It will be incremented while the user keep right or top arrow pressed,
21858     * and will be decremented while the user keep left or bottom arrow pressed.
21859     *
21860     * The interval to increment / decrement can be set with
21861     * elm_spinner_interval_set().
21862     *
21863     * By default step value is equal to 1.
21864     *
21865     * @see elm_spinner_step_get()
21866     *
21867     * @ingroup Spinner
21868     */
21869    EAPI void         elm_spinner_step_set(Evas_Object *obj, double step) EINA_ARG_NONNULL(1);
21870
21871    /**
21872     * Get the step used to increment or decrement the spinner value.
21873     *
21874     * @param obj The spinner object.
21875     * @return The step value.
21876     *
21877     * @see elm_spinner_step_get() for more details.
21878     *
21879     * @ingroup Spinner
21880     */
21881    EAPI double       elm_spinner_step_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21882
21883    /**
21884     * Set the value the spinner displays.
21885     *
21886     * @param obj The spinner object.
21887     * @param val The value to be displayed.
21888     *
21889     * Value will be presented on the label following format specified with
21890     * elm_spinner_format_set().
21891     *
21892     * @warning The value must to be between min and max values. This values
21893     * are set by elm_spinner_min_max_set().
21894     *
21895     * @see elm_spinner_value_get().
21896     * @see elm_spinner_format_set().
21897     * @see elm_spinner_min_max_set().
21898     *
21899     * @ingroup Spinner
21900     */
21901    EAPI void         elm_spinner_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
21902
21903    /**
21904     * Get the value displayed by the spinner.
21905     *
21906     * @param obj The spinner object.
21907     * @return The value displayed.
21908     *
21909     * @see elm_spinner_value_set() for details.
21910     *
21911     * @ingroup Spinner
21912     */
21913    EAPI double       elm_spinner_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21914
21915    /**
21916     * Set whether the spinner should wrap when it reaches its
21917     * minimum or maximum value.
21918     *
21919     * @param obj The spinner object.
21920     * @param wrap @c EINA_TRUE to enable wrap or @c EINA_FALSE to
21921     * disable it.
21922     *
21923     * Disabled by default. If disabled, when the user tries to increment the
21924     * value,
21925     * but displayed value plus step value is bigger than maximum value,
21926     * the spinner
21927     * won't allow it. The same happens when the user tries to decrement it,
21928     * but the value less step is less than minimum value.
21929     *
21930     * When wrap is enabled, in such situations it will allow these changes,
21931     * but will get the value that would be less than minimum and subtracts
21932     * from maximum. Or add the value that would be more than maximum to
21933     * the minimum.
21934     *
21935     * E.g.:
21936     * @li min value = 10
21937     * @li max value = 50
21938     * @li step value = 20
21939     * @li displayed value = 20
21940     *
21941     * When the user decrement value (using left or bottom arrow), it will
21942     * displays @c 40, because max - (min - (displayed - step)) is
21943     * @c 50 - (@c 10 - (@c 20 - @c 20)) = @c 40.
21944     *
21945     * @see elm_spinner_wrap_get().
21946     *
21947     * @ingroup Spinner
21948     */
21949    EAPI void         elm_spinner_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
21950
21951    /**
21952     * Get whether the spinner should wrap when it reaches its
21953     * minimum or maximum value.
21954     *
21955     * @param obj The spinner object
21956     * @return @c EINA_TRUE means wrap is enabled. @c EINA_FALSE indicates
21957     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
21958     *
21959     * @see elm_spinner_wrap_set() for details.
21960     *
21961     * @ingroup Spinner
21962     */
21963    EAPI Eina_Bool    elm_spinner_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21964
21965    /**
21966     * Set whether the spinner can be directly edited by the user or not.
21967     *
21968     * @param obj The spinner object.
21969     * @param editable @c EINA_TRUE to allow users to edit it or @c EINA_FALSE to
21970     * don't allow users to edit it directly.
21971     *
21972     * Spinner objects can have edition @b disabled, in which state they will
21973     * be changed only by arrows.
21974     * Useful for contexts
21975     * where you don't want your users to interact with it writting the value.
21976     * Specially
21977     * when using special values, the user can see real value instead
21978     * of special label on edition.
21979     *
21980     * It's enabled by default.
21981     *
21982     * @see elm_spinner_editable_get()
21983     *
21984     * @ingroup Spinner
21985     */
21986    EAPI void         elm_spinner_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
21987
21988    /**
21989     * Get whether the spinner can be directly edited by the user or not.
21990     *
21991     * @param obj The spinner object.
21992     * @return @c EINA_TRUE means edition is enabled. @c EINA_FALSE indicates
21993     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
21994     *
21995     * @see elm_spinner_editable_set() for details.
21996     *
21997     * @ingroup Spinner
21998     */
21999    EAPI Eina_Bool    elm_spinner_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22000
22001    /**
22002     * Set a special string to display in the place of the numerical value.
22003     *
22004     * @param obj The spinner object.
22005     * @param value The value to be replaced.
22006     * @param label The label to be used.
22007     *
22008     * It's useful for cases when a user should select an item that is
22009     * better indicated by a label than a value. For example, weekdays or months.
22010     *
22011     * E.g.:
22012     * @code
22013     * sp = elm_spinner_add(win);
22014     * elm_spinner_min_max_set(sp, 1, 3);
22015     * elm_spinner_special_value_add(sp, 1, "January");
22016     * elm_spinner_special_value_add(sp, 2, "February");
22017     * elm_spinner_special_value_add(sp, 3, "March");
22018     * evas_object_show(sp);
22019     * @endcode
22020     *
22021     * @ingroup Spinner
22022     */
22023    EAPI void         elm_spinner_special_value_add(Evas_Object *obj, double value, const char *label) EINA_ARG_NONNULL(1);
22024
22025    /**
22026     * Set the interval on time updates for an user mouse button hold
22027     * on spinner widgets' arrows.
22028     *
22029     * @param obj The spinner object.
22030     * @param interval The (first) interval value in seconds.
22031     *
22032     * This interval value is @b decreased while the user holds the
22033     * mouse pointer either incrementing or decrementing spinner's value.
22034     *
22035     * This helps the user to get to a given value distant from the
22036     * current one easier/faster, as it will start to change quicker and
22037     * quicker on mouse button holds.
22038     *
22039     * The calculation for the next change interval value, starting from
22040     * the one set with this call, is the previous interval divided by
22041     * @c 1.05, so it decreases a little bit.
22042     *
22043     * The default starting interval value for automatic changes is
22044     * @c 0.85 seconds.
22045     *
22046     * @see elm_spinner_interval_get()
22047     *
22048     * @ingroup Spinner
22049     */
22050    EAPI void         elm_spinner_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
22051
22052    /**
22053     * Get the interval on time updates for an user mouse button hold
22054     * on spinner widgets' arrows.
22055     *
22056     * @param obj The spinner object.
22057     * @return The (first) interval value, in seconds, set on it.
22058     *
22059     * @see elm_spinner_interval_set() for more details.
22060     *
22061     * @ingroup Spinner
22062     */
22063    EAPI double       elm_spinner_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22064
22065    /**
22066     * @}
22067     */
22068
22069    /**
22070     * @defgroup Index Index
22071     *
22072     * @image html img/widget/index/preview-00.png
22073     * @image latex img/widget/index/preview-00.eps
22074     *
22075     * An index widget gives you an index for fast access to whichever
22076     * group of other UI items one might have. It's a list of text
22077     * items (usually letters, for alphabetically ordered access).
22078     *
22079     * Index widgets are by default hidden and just appear when the
22080     * user clicks over it's reserved area in the canvas. In its
22081     * default theme, it's an area one @ref Fingers "finger" wide on
22082     * the right side of the index widget's container.
22083     *
22084     * When items on the index are selected, smart callbacks get
22085     * called, so that its user can make other container objects to
22086     * show a given area or child object depending on the index item
22087     * selected. You'd probably be using an index together with @ref
22088     * List "lists", @ref Genlist "generic lists" or @ref Gengrid
22089     * "general grids".
22090     *
22091     * Smart events one  can add callbacks for are:
22092     * - @c "changed" - When the selected index item changes. @c
22093     *      event_info is the selected item's data pointer.
22094     * - @c "delay,changed" - When the selected index item changes, but
22095     *      after a small idling period. @c event_info is the selected
22096     *      item's data pointer.
22097     * - @c "selected" - When the user releases a mouse button and
22098     *      selects an item. @c event_info is the selected item's data
22099     *      pointer.
22100     * - @c "level,up" - when the user moves a finger from the first
22101     *      level to the second level
22102     * - @c "level,down" - when the user moves a finger from the second
22103     *      level to the first level
22104     *
22105     * The @c "delay,changed" event is so that it'll wait a small time
22106     * before actually reporting those events and, moreover, just the
22107     * last event happening on those time frames will actually be
22108     * reported.
22109     *
22110     * Here are some examples on its usage:
22111     * @li @ref index_example_01
22112     * @li @ref index_example_02
22113     */
22114
22115    /**
22116     * @addtogroup Index
22117     * @{
22118     */
22119
22120    typedef struct _Elm_Index_Item Elm_Index_Item; /**< Opaque handle for items of Elementary index widgets */
22121
22122    /**
22123     * Add a new index widget to the given parent Elementary
22124     * (container) object
22125     *
22126     * @param parent The parent object
22127     * @return a new index widget handle or @c NULL, on errors
22128     *
22129     * This function inserts a new index widget on the canvas.
22130     *
22131     * @ingroup Index
22132     */
22133    EAPI Evas_Object    *elm_index_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22134
22135    /**
22136     * Set whether a given index widget is or not visible,
22137     * programatically.
22138     *
22139     * @param obj The index object
22140     * @param active @c EINA_TRUE to show it, @c EINA_FALSE to hide it
22141     *
22142     * Not to be confused with visible as in @c evas_object_show() --
22143     * visible with regard to the widget's auto hiding feature.
22144     *
22145     * @see elm_index_active_get()
22146     *
22147     * @ingroup Index
22148     */
22149    EAPI void            elm_index_active_set(Evas_Object *obj, Eina_Bool active) EINA_ARG_NONNULL(1);
22150
22151    /**
22152     * Get whether a given index widget is currently visible or not.
22153     *
22154     * @param obj The index object
22155     * @return @c EINA_TRUE, if it's shown, @c EINA_FALSE otherwise
22156     *
22157     * @see elm_index_active_set() for more details
22158     *
22159     * @ingroup Index
22160     */
22161    EAPI Eina_Bool       elm_index_active_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22162
22163    /**
22164     * Set the items level for a given index widget.
22165     *
22166     * @param obj The index object.
22167     * @param level @c 0 or @c 1, the currently implemented levels.
22168     *
22169     * @see elm_index_item_level_get()
22170     *
22171     * @ingroup Index
22172     */
22173    EAPI void            elm_index_item_level_set(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
22174
22175    /**
22176     * Get the items level set for a given index widget.
22177     *
22178     * @param obj The index object.
22179     * @return @c 0 or @c 1, which are the levels @p obj might be at.
22180     *
22181     * @see elm_index_item_level_set() for more information
22182     *
22183     * @ingroup Index
22184     */
22185    EAPI int             elm_index_item_level_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22186
22187    /**
22188     * Returns the last selected item's data, for a given index widget.
22189     *
22190     * @param obj The index object.
22191     * @return The item @b data associated to the last selected item on
22192     * @p obj (or @c NULL, on errors).
22193     *
22194     * @warning The returned value is @b not an #Elm_Index_Item item
22195     * handle, but the data associated to it (see the @c item parameter
22196     * in elm_index_item_append(), as an example).
22197     *
22198     * @ingroup Index
22199     */
22200    EAPI void           *elm_index_item_selected_get(const Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
22201
22202    /**
22203     * Append a new item on a given index widget.
22204     *
22205     * @param obj The index object.
22206     * @param letter Letter under which the item should be indexed
22207     * @param item The item data to set for the index's item
22208     *
22209     * Despite the most common usage of the @p letter argument is for
22210     * single char strings, one could use arbitrary strings as index
22211     * entries.
22212     *
22213     * @c item will be the pointer returned back on @c "changed", @c
22214     * "delay,changed" and @c "selected" smart events.
22215     *
22216     * @ingroup Index
22217     */
22218    EAPI void            elm_index_item_append(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
22219
22220    /**
22221     * Prepend a new item on a given index widget.
22222     *
22223     * @param obj The index object.
22224     * @param letter Letter under which the item should be indexed
22225     * @param item The item data to set for the index's item
22226     *
22227     * Despite the most common usage of the @p letter argument is for
22228     * single char strings, one could use arbitrary strings as index
22229     * entries.
22230     *
22231     * @c item will be the pointer returned back on @c "changed", @c
22232     * "delay,changed" and @c "selected" smart events.
22233     *
22234     * @ingroup Index
22235     */
22236    EAPI void            elm_index_item_prepend(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
22237
22238    /**
22239     * Append a new item, on a given index widget, <b>after the item
22240     * having @p relative as data</b>.
22241     *
22242     * @param obj The index object.
22243     * @param letter Letter under which the item should be indexed
22244     * @param item The item data to set for the index's item
22245     * @param relative The item data of the index item to be the
22246     * predecessor of this new one
22247     *
22248     * Despite the most common usage of the @p letter argument is for
22249     * single char strings, one could use arbitrary strings as index
22250     * entries.
22251     *
22252     * @c item will be the pointer returned back on @c "changed", @c
22253     * "delay,changed" and @c "selected" smart events.
22254     *
22255     * @note If @p relative is @c NULL or if it's not found to be data
22256     * set on any previous item on @p obj, this function will behave as
22257     * elm_index_item_append().
22258     *
22259     * @ingroup Index
22260     */
22261    EAPI void            elm_index_item_append_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
22262
22263    /**
22264     * Prepend a new item, on a given index widget, <b>after the item
22265     * having @p relative as data</b>.
22266     *
22267     * @param obj The index object.
22268     * @param letter Letter under which the item should be indexed
22269     * @param item The item data to set for the index's item
22270     * @param relative The item data of the index item to be the
22271     * successor of this new one
22272     *
22273     * Despite the most common usage of the @p letter argument is for
22274     * single char strings, one could use arbitrary strings as index
22275     * entries.
22276     *
22277     * @c item will be the pointer returned back on @c "changed", @c
22278     * "delay,changed" and @c "selected" smart events.
22279     *
22280     * @note If @p relative is @c NULL or if it's not found to be data
22281     * set on any previous item on @p obj, this function will behave as
22282     * elm_index_item_prepend().
22283     *
22284     * @ingroup Index
22285     */
22286    EAPI void            elm_index_item_prepend_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
22287
22288    /**
22289     * Insert a new item into the given index widget, using @p cmp_func
22290     * function to sort items (by item handles).
22291     *
22292     * @param obj The index object.
22293     * @param letter Letter under which the item should be indexed
22294     * @param item The item data to set for the index's item
22295     * @param cmp_func The comparing function to be used to sort index
22296     * items <b>by #Elm_Index_Item item handles</b>
22297     * @param cmp_data_func A @b fallback function to be called for the
22298     * sorting of index items <b>by item data</b>). It will be used
22299     * when @p cmp_func returns @c 0 (equality), which means an index
22300     * item with provided item data already exists. To decide which
22301     * data item should be pointed to by the index item in question, @p
22302     * cmp_data_func will be used. If @p cmp_data_func returns a
22303     * non-negative value, the previous index item data will be
22304     * replaced by the given @p item pointer. If the previous data need
22305     * to be freed, it should be done by the @p cmp_data_func function,
22306     * because all references to it will be lost. If this function is
22307     * not provided (@c NULL is given), index items will be @b
22308     * duplicated, if @p cmp_func returns @c 0.
22309     *
22310     * Despite the most common usage of the @p letter argument is for
22311     * single char strings, one could use arbitrary strings as index
22312     * entries.
22313     *
22314     * @c item will be the pointer returned back on @c "changed", @c
22315     * "delay,changed" and @c "selected" smart events.
22316     *
22317     * @ingroup Index
22318     */
22319    EAPI void            elm_index_item_sorted_insert(Evas_Object *obj, const char *letter, const void *item, Eina_Compare_Cb cmp_func, Eina_Compare_Cb cmp_data_func) EINA_ARG_NONNULL(1);
22320
22321    /**
22322     * Remove an item from a given index widget, <b>to be referenced by
22323     * it's data value</b>.
22324     *
22325     * @param obj The index object
22326     * @param item The item's data pointer for the item to be removed
22327     * from @p obj
22328     *
22329     * If a deletion callback is set, via elm_index_item_del_cb_set(),
22330     * that callback function will be called by this one.
22331     *
22332     * @warning The item to be removed from @p obj will be found via
22333     * its item data pointer, and not by an #Elm_Index_Item handle.
22334     *
22335     * @ingroup Index
22336     */
22337    EAPI void            elm_index_item_del(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
22338
22339    /**
22340     * Find a given index widget's item, <b>using item data</b>.
22341     *
22342     * @param obj The index object
22343     * @param item The item data pointed to by the desired index item
22344     * @return The index item handle, if found, or @c NULL otherwise
22345     *
22346     * @ingroup Index
22347     */
22348    EAPI Elm_Index_Item *elm_index_item_find(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
22349
22350    /**
22351     * Removes @b all items from a given index widget.
22352     *
22353     * @param obj The index object.
22354     *
22355     * If deletion callbacks are set, via elm_index_item_del_cb_set(),
22356     * that callback function will be called for each item in @p obj.
22357     *
22358     * @ingroup Index
22359     */
22360    EAPI void            elm_index_item_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
22361
22362    /**
22363     * Go to a given items level on a index widget
22364     *
22365     * @param obj The index object
22366     * @param level The index level (one of @c 0 or @c 1)
22367     *
22368     * @ingroup Index
22369     */
22370    EAPI void            elm_index_item_go(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
22371
22372    /**
22373     * Return the data associated with a given index widget item
22374     *
22375     * @param it The index widget item handle
22376     * @return The data associated with @p it
22377     *
22378     * @see elm_index_item_data_set()
22379     *
22380     * @ingroup Index
22381     */
22382    EAPI void           *elm_index_item_data_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
22383
22384    /**
22385     * Set the data associated with a given index widget item
22386     *
22387     * @param it The index widget item handle
22388     * @param data The new data pointer to set to @p it
22389     *
22390     * This sets new item data on @p it.
22391     *
22392     * @warning The old data pointer won't be touched by this function, so
22393     * the user had better to free that old data himself/herself.
22394     *
22395     * @ingroup Index
22396     */
22397    EAPI void            elm_index_item_data_set(Elm_Index_Item *it, const void *data) EINA_ARG_NONNULL(1);
22398
22399    /**
22400     * Set the function to be called when a given index widget item is freed.
22401     *
22402     * @param it The item to set the callback on
22403     * @param func The function to call on the item's deletion
22404     *
22405     * When called, @p func will have both @c data and @c event_info
22406     * arguments with the @p it item's data value and, naturally, the
22407     * @c obj argument with a handle to the parent index widget.
22408     *
22409     * @ingroup Index
22410     */
22411    EAPI void            elm_index_item_del_cb_set(Elm_Index_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
22412
22413    /**
22414     * Get the letter (string) set on a given index widget item.
22415     *
22416     * @param it The index item handle
22417     * @return The letter string set on @p it
22418     *
22419     * @ingroup Index
22420     */
22421    EAPI const char     *elm_index_item_letter_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
22422
22423    /**
22424     * @}
22425     */
22426
22427    /**
22428     * @defgroup Photocam Photocam
22429     *
22430     * @image html img/widget/photocam/preview-00.png
22431     * @image latex img/widget/photocam/preview-00.eps
22432     *
22433     * This is a widget specifically for displaying high-resolution digital
22434     * camera photos giving speedy feedback (fast load), low memory footprint
22435     * and zooming and panning as well as fitting logic. It is entirely focused
22436     * on jpeg images, and takes advantage of properties of the jpeg format (via
22437     * evas loader features in the jpeg loader).
22438     *
22439     * Signals that you can add callbacks for are:
22440     * @li "clicked" - This is called when a user has clicked the photo without
22441     *                 dragging around.
22442     * @li "press" - This is called when a user has pressed down on the photo.
22443     * @li "longpressed" - This is called when a user has pressed down on the
22444     *                     photo for a long time without dragging around.
22445     * @li "clicked,double" - This is called when a user has double-clicked the
22446     *                        photo.
22447     * @li "load" - Photo load begins.
22448     * @li "loaded" - This is called when the image file load is complete for the
22449     *                first view (low resolution blurry version).
22450     * @li "load,detail" - Photo detailed data load begins.
22451     * @li "loaded,detail" - This is called when the image file load is complete
22452     *                      for the detailed image data (full resolution needed).
22453     * @li "zoom,start" - Zoom animation started.
22454     * @li "zoom,stop" - Zoom animation stopped.
22455     * @li "zoom,change" - Zoom changed when using an auto zoom mode.
22456     * @li "scroll" - the content has been scrolled (moved)
22457     * @li "scroll,anim,start" - scrolling animation has started
22458     * @li "scroll,anim,stop" - scrolling animation has stopped
22459     * @li "scroll,drag,start" - dragging the contents around has started
22460     * @li "scroll,drag,stop" - dragging the contents around has stopped
22461     *
22462     * @ref tutorial_photocam shows the API in action.
22463     * @{
22464     */
22465    /**
22466     * @brief Types of zoom available.
22467     */
22468    typedef enum _Elm_Photocam_Zoom_Mode
22469      {
22470         ELM_PHOTOCAM_ZOOM_MODE_MANUAL = 0, /**< Zoom controlled normally by elm_photocam_zoom_set */
22471         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT, /**< Zoom until photo fits in photocam */
22472         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL, /**< Zoom until photo fills photocam */
22473         ELM_PHOTOCAM_ZOOM_MODE_LAST
22474      } Elm_Photocam_Zoom_Mode;
22475    /**
22476     * @brief Add a new Photocam object
22477     *
22478     * @param parent The parent object
22479     * @return The new object or NULL if it cannot be created
22480     */
22481    EAPI Evas_Object           *elm_photocam_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22482    /**
22483     * @brief Set the photo file to be shown
22484     *
22485     * @param obj The photocam object
22486     * @param file The photo file
22487     * @return The return error (see EVAS_LOAD_ERROR_NONE, EVAS_LOAD_ERROR_GENERIC etc.)
22488     *
22489     * This sets (and shows) the specified file (with a relative or absolute
22490     * path) and will return a load error (same error that
22491     * evas_object_image_load_error_get() will return). The image will change and
22492     * adjust its size at this point and begin a background load process for this
22493     * photo that at some time in the future will be displayed at the full
22494     * quality needed.
22495     */
22496    EAPI Evas_Load_Error        elm_photocam_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
22497    /**
22498     * @brief Returns the path of the current image file
22499     *
22500     * @param obj The photocam object
22501     * @return Returns the path
22502     *
22503     * @see elm_photocam_file_set()
22504     */
22505    EAPI const char            *elm_photocam_file_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22506    /**
22507     * @brief Set the zoom level of the photo
22508     *
22509     * @param obj The photocam object
22510     * @param zoom The zoom level to set
22511     *
22512     * This sets the zoom level. 1 will be 1:1 pixel for pixel. 2 will be 2:1
22513     * (that is 2x2 photo pixels will display as 1 on-screen pixel). 4:1 will be
22514     * 4x4 photo pixels as 1 screen pixel, and so on. The @p zoom parameter must
22515     * be greater than 0. It is usggested to stick to powers of 2. (1, 2, 4, 8,
22516     * 16, 32, etc.).
22517     */
22518    EAPI void                   elm_photocam_zoom_set(Evas_Object *obj, double zoom) EINA_ARG_NONNULL(1);
22519    /**
22520     * @brief Get the zoom level of the photo
22521     *
22522     * @param obj The photocam object
22523     * @return The current zoom level
22524     *
22525     * This returns the current zoom level of the photocam object. Note that if
22526     * you set the fill mode to other than ELM_PHOTOCAM_ZOOM_MODE_MANUAL
22527     * (which is the default), the zoom level may be changed at any time by the
22528     * photocam object itself to account for photo size and photocam viewpoer
22529     * size.
22530     *
22531     * @see elm_photocam_zoom_set()
22532     * @see elm_photocam_zoom_mode_set()
22533     */
22534    EAPI double                 elm_photocam_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22535    /**
22536     * @brief Set the zoom mode
22537     *
22538     * @param obj The photocam object
22539     * @param mode The desired mode
22540     *
22541     * This sets the zoom mode to manual or one of several automatic levels.
22542     * Manual (ELM_PHOTOCAM_ZOOM_MODE_MANUAL) means that zoom is set manually by
22543     * elm_photocam_zoom_set() and will stay at that level until changed by code
22544     * or until zoom mode is changed. This is the default mode. The Automatic
22545     * modes will allow the photocam object to automatically adjust zoom mode
22546     * based on properties. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT) will adjust zoom so
22547     * the photo fits EXACTLY inside the scroll frame with no pixels outside this
22548     * area. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL will be similar but ensure no
22549     * pixels within the frame are left unfilled.
22550     */
22551    EAPI void                   elm_photocam_zoom_mode_set(Evas_Object *obj, Elm_Photocam_Zoom_Mode mode) EINA_ARG_NONNULL(1);
22552    /**
22553     * @brief Get the zoom mode
22554     *
22555     * @param obj The photocam object
22556     * @return The current zoom mode
22557     *
22558     * This gets the current zoom mode of the photocam object.
22559     *
22560     * @see elm_photocam_zoom_mode_set()
22561     */
22562    EAPI Elm_Photocam_Zoom_Mode elm_photocam_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22563    /**
22564     * @brief Get the current image pixel width and height
22565     *
22566     * @param obj The photocam object
22567     * @param w A pointer to the width return
22568     * @param h A pointer to the height return
22569     *
22570     * This gets the current photo pixel width and height (for the original).
22571     * The size will be returned in the integers @p w and @p h that are pointed
22572     * to.
22573     */
22574    EAPI void                   elm_photocam_image_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
22575    /**
22576     * @brief Get the area of the image that is currently shown
22577     *
22578     * @param obj
22579     * @param x A pointer to the X-coordinate of region
22580     * @param y A pointer to the Y-coordinate of region
22581     * @param w A pointer to the width
22582     * @param h A pointer to the height
22583     *
22584     * @see elm_photocam_image_region_show()
22585     * @see elm_photocam_image_region_bring_in()
22586     */
22587    EAPI void                   elm_photocam_region_get(const Evas_Object *obj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
22588    /**
22589     * @brief Set the viewed portion of the image
22590     *
22591     * @param obj The photocam object
22592     * @param x X-coordinate of region in image original pixels
22593     * @param y Y-coordinate of region in image original pixels
22594     * @param w Width of region in image original pixels
22595     * @param h Height of region in image original pixels
22596     *
22597     * This shows the region of the image without using animation.
22598     */
22599    EAPI void                   elm_photocam_image_region_show(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
22600    /**
22601     * @brief Bring in the viewed portion of the image
22602     *
22603     * @param obj The photocam object
22604     * @param x X-coordinate of region in image original pixels
22605     * @param y Y-coordinate of region in image original pixels
22606     * @param w Width of region in image original pixels
22607     * @param h Height of region in image original pixels
22608     *
22609     * This shows the region of the image using animation.
22610     */
22611    EAPI void                   elm_photocam_image_region_bring_in(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
22612    /**
22613     * @brief Set the paused state for photocam
22614     *
22615     * @param obj The photocam object
22616     * @param paused The pause state to set
22617     *
22618     * This sets the paused state to on(EINA_TRUE) or off (EINA_FALSE) for
22619     * photocam. The default is off. This will stop zooming using animation on
22620     * zoom levels changes and change instantly. This will stop any existing
22621     * animations that are running.
22622     */
22623    EAPI void                   elm_photocam_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
22624    /**
22625     * @brief Get the paused state for photocam
22626     *
22627     * @param obj The photocam object
22628     * @return The current paused state
22629     *
22630     * This gets the current paused state for the photocam object.
22631     *
22632     * @see elm_photocam_paused_set()
22633     */
22634    EAPI Eina_Bool              elm_photocam_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22635    /**
22636     * @brief Get the internal low-res image used for photocam
22637     *
22638     * @param obj The photocam object
22639     * @return The internal image object handle, or NULL if none exists
22640     *
22641     * This gets the internal image object inside photocam. Do not modify it. It
22642     * is for inspection only, and hooking callbacks to. Nothing else. It may be
22643     * deleted at any time as well.
22644     */
22645    EAPI Evas_Object           *elm_photocam_internal_image_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22646    /**
22647     * @brief Set the photocam scrolling bouncing.
22648     *
22649     * @param obj The photocam object
22650     * @param h_bounce bouncing for horizontal
22651     * @param v_bounce bouncing for vertical
22652     */
22653    EAPI void                   elm_photocam_bounce_set(Evas_Object *obj,  Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
22654    /**
22655     * @brief Get the photocam scrolling bouncing.
22656     *
22657     * @param obj The photocam object
22658     * @param h_bounce bouncing for horizontal
22659     * @param v_bounce bouncing for vertical
22660     *
22661     * @see elm_photocam_bounce_set()
22662     */
22663    EAPI void                   elm_photocam_bounce_get(const Evas_Object *obj,  Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
22664    /**
22665     * @}
22666     */
22667
22668    /**
22669     * @defgroup Map Map
22670     * @ingroup Elementary
22671     *
22672     * @image html img/widget/map/preview-00.png
22673     * @image latex img/widget/map/preview-00.eps
22674     *
22675     * This is a widget specifically for displaying a map. It uses basically
22676     * OpenStreetMap provider http://www.openstreetmap.org/,
22677     * but custom providers can be added.
22678     *
22679     * It supports some basic but yet nice features:
22680     * @li zoom and scroll
22681     * @li markers with content to be displayed when user clicks over it
22682     * @li group of markers
22683     * @li routes
22684     *
22685     * Smart callbacks one can listen to:
22686     *
22687     * - "clicked" - This is called when a user has clicked the map without
22688     *   dragging around.
22689     * - "press" - This is called when a user has pressed down on the map.
22690     * - "longpressed" - This is called when a user has pressed down on the map
22691     *   for a long time without dragging around.
22692     * - "clicked,double" - This is called when a user has double-clicked
22693     *   the map.
22694     * - "load,detail" - Map detailed data load begins.
22695     * - "loaded,detail" - This is called when all currently visible parts of
22696     *   the map are loaded.
22697     * - "zoom,start" - Zoom animation started.
22698     * - "zoom,stop" - Zoom animation stopped.
22699     * - "zoom,change" - Zoom changed when using an auto zoom mode.
22700     * - "scroll" - the content has been scrolled (moved).
22701     * - "scroll,anim,start" - scrolling animation has started.
22702     * - "scroll,anim,stop" - scrolling animation has stopped.
22703     * - "scroll,drag,start" - dragging the contents around has started.
22704     * - "scroll,drag,stop" - dragging the contents around has stopped.
22705     * - "downloaded" - This is called when all currently required map images
22706     *   are downloaded.
22707     * - "route,load" - This is called when route request begins.
22708     * - "route,loaded" - This is called when route request ends.
22709     * - "name,load" - This is called when name request begins.
22710     * - "name,loaded- This is called when name request ends.
22711     *
22712     * Available style for map widget:
22713     * - @c "default"
22714     *
22715     * Available style for markers:
22716     * - @c "radio"
22717     * - @c "radio2"
22718     * - @c "empty"
22719     *
22720     * Available style for marker bubble:
22721     * - @c "default"
22722     *
22723     * List of examples:
22724     * @li @ref map_example_01
22725     * @li @ref map_example_02
22726     * @li @ref map_example_03
22727     */
22728
22729    /**
22730     * @addtogroup Map
22731     * @{
22732     */
22733
22734    /**
22735     * @enum _Elm_Map_Zoom_Mode
22736     * @typedef Elm_Map_Zoom_Mode
22737     *
22738     * Set map's zoom behavior. It can be set to manual or automatic.
22739     *
22740     * Default value is #ELM_MAP_ZOOM_MODE_MANUAL.
22741     *
22742     * Values <b> don't </b> work as bitmask, only one can be choosen.
22743     *
22744     * @note Valid sizes are 2^zoom, consequently the map may be smaller
22745     * than the scroller view.
22746     *
22747     * @see elm_map_zoom_mode_set()
22748     * @see elm_map_zoom_mode_get()
22749     *
22750     * @ingroup Map
22751     */
22752    typedef enum _Elm_Map_Zoom_Mode
22753      {
22754         ELM_MAP_ZOOM_MODE_MANUAL, /**< Zoom controlled manually by elm_map_zoom_set(). It's set by default. */
22755         ELM_MAP_ZOOM_MODE_AUTO_FIT, /**< Zoom until map fits inside the scroll frame with no pixels outside this area. */
22756         ELM_MAP_ZOOM_MODE_AUTO_FILL, /**< Zoom until map fills scroll, ensuring no pixels are left unfilled. */
22757         ELM_MAP_ZOOM_MODE_LAST
22758      } Elm_Map_Zoom_Mode;
22759
22760    /**
22761     * @enum _Elm_Map_Route_Sources
22762     * @typedef Elm_Map_Route_Sources
22763     *
22764     * Set route service to be used. By default used source is
22765     * #ELM_MAP_ROUTE_SOURCE_YOURS.
22766     *
22767     * @see elm_map_route_source_set()
22768     * @see elm_map_route_source_get()
22769     *
22770     * @ingroup Map
22771     */
22772    typedef enum _Elm_Map_Route_Sources
22773      {
22774         ELM_MAP_ROUTE_SOURCE_YOURS, /**< Routing service http://www.yournavigation.org/ . Set by default.*/
22775         ELM_MAP_ROUTE_SOURCE_MONAV, /**< MoNav offers exact routing without heuristic assumptions. Its routing core is based on Contraction Hierarchies. It's not working with Map yet. */
22776         ELM_MAP_ROUTE_SOURCE_ORS, /**< Open Route Service: http://www.openrouteservice.org/ . It's not working with Map yet. */
22777         ELM_MAP_ROUTE_SOURCE_LAST
22778      } Elm_Map_Route_Sources;
22779
22780    typedef enum _Elm_Map_Name_Sources
22781      {
22782         ELM_MAP_NAME_SOURCE_NOMINATIM,
22783         ELM_MAP_NAME_SOURCE_LAST
22784      } Elm_Map_Name_Sources;
22785
22786    /**
22787     * @enum _Elm_Map_Route_Type
22788     * @typedef Elm_Map_Route_Type
22789     *
22790     * Set type of transport used on route.
22791     *
22792     * @see elm_map_route_add()
22793     *
22794     * @ingroup Map
22795     */
22796    typedef enum _Elm_Map_Route_Type
22797      {
22798         ELM_MAP_ROUTE_TYPE_MOTOCAR, /**< Route should consider an automobile will be used. */
22799         ELM_MAP_ROUTE_TYPE_BICYCLE, /**< Route should consider a bicycle will be used by the user. */
22800         ELM_MAP_ROUTE_TYPE_FOOT, /**< Route should consider user will be walking. */
22801         ELM_MAP_ROUTE_TYPE_LAST
22802      } Elm_Map_Route_Type;
22803
22804    /**
22805     * @enum _Elm_Map_Route_Method
22806     * @typedef Elm_Map_Route_Method
22807     *
22808     * Set the routing method, what should be priorized, time or distance.
22809     *
22810     * @see elm_map_route_add()
22811     *
22812     * @ingroup Map
22813     */
22814    typedef enum _Elm_Map_Route_Method
22815      {
22816         ELM_MAP_ROUTE_METHOD_FASTEST, /**< Route should priorize time. */
22817         ELM_MAP_ROUTE_METHOD_SHORTEST, /**< Route should priorize distance. */
22818         ELM_MAP_ROUTE_METHOD_LAST
22819      } Elm_Map_Route_Method;
22820
22821    typedef enum _Elm_Map_Name_Method
22822      {
22823         ELM_MAP_NAME_METHOD_SEARCH,
22824         ELM_MAP_NAME_METHOD_REVERSE,
22825         ELM_MAP_NAME_METHOD_LAST
22826      } Elm_Map_Name_Method;
22827
22828    typedef struct _Elm_Map_Marker          Elm_Map_Marker; /**< A marker to be shown in a specific point of the map. Can be created with elm_map_marker_add() and deleted with elm_map_marker_remove(). */
22829    typedef struct _Elm_Map_Marker_Class    Elm_Map_Marker_Class; /**< Each marker must be associated to a class. It's required to add a mark. The class defines the style of the marker when a marker is displayed alone (not grouped). A new class can be created with elm_map_marker_class_new(). */
22830    typedef struct _Elm_Map_Group_Class     Elm_Map_Group_Class; /**< Each marker must be associated to a group class. It's required to add a mark. The group class defines the style of the marker when a marker is grouped to other markers. Markers with the same group are grouped if they are close. A new group class can be created with elm_map_marker_group_class_new(). */
22831    typedef struct _Elm_Map_Route           Elm_Map_Route; /**< A route to be shown in the map. Can be created with elm_map_route_add() and deleted with elm_map_route_remove(). */
22832    typedef struct _Elm_Map_Name            Elm_Map_Name; /**< A handle for specific coordinates. */
22833    typedef struct _Elm_Map_Track           Elm_Map_Track;
22834
22835    typedef Evas_Object *(*ElmMapMarkerGetFunc)      (Evas_Object *obj, Elm_Map_Marker *marker, void *data); /**< Bubble content fetching class function for marker classes. When the user click on a marker, a bubble is displayed with a content. */
22836    typedef void         (*ElmMapMarkerDelFunc)      (Evas_Object *obj, Elm_Map_Marker *marker, void *data, Evas_Object *o); /**< Function to delete bubble content for marker classes. */
22837    typedef Evas_Object *(*ElmMapMarkerIconGetFunc)  (Evas_Object *obj, Elm_Map_Marker *marker, void *data); /**< Icon fetching class function for marker classes. */
22838    typedef Evas_Object *(*ElmMapGroupIconGetFunc)   (Evas_Object *obj, void *data); /**< Icon fetching class function for markers group classes. */
22839
22840    typedef char        *(*ElmMapModuleSourceFunc) (void);
22841    typedef int          (*ElmMapModuleZoomMinFunc) (void);
22842    typedef int          (*ElmMapModuleZoomMaxFunc) (void);
22843    typedef char        *(*ElmMapModuleUrlFunc) (Evas_Object *obj, int x, int y, int zoom);
22844    typedef int          (*ElmMapModuleRouteSourceFunc) (void);
22845    typedef char        *(*ElmMapModuleRouteUrlFunc) (Evas_Object *obj, char *type_name, int method, double flon, double flat, double tlon, double tlat);
22846    typedef char        *(*ElmMapModuleNameUrlFunc) (Evas_Object *obj, int method, char *name, double lon, double lat);
22847    typedef Eina_Bool    (*ElmMapModuleGeoIntoCoordFunc) (const Evas_Object *obj, int zoom, double lon, double lat, int size, int *x, int *y);
22848    typedef Eina_Bool    (*ElmMapModuleCoordIntoGeoFunc) (const Evas_Object *obj, int zoom, int x, int y, int size, double *lon, double *lat);
22849
22850    /**
22851     * Add a new map widget to the given parent Elementary (container) object.
22852     *
22853     * @param parent The parent object.
22854     * @return a new map widget handle or @c NULL, on errors.
22855     *
22856     * This function inserts a new map widget on the canvas.
22857     *
22858     * @ingroup Map
22859     */
22860    EAPI Evas_Object          *elm_map_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22861
22862    /**
22863     * Set the zoom level of the map.
22864     *
22865     * @param obj The map object.
22866     * @param zoom The zoom level to set.
22867     *
22868     * This sets the zoom level.
22869     *
22870     * It will respect limits defined by elm_map_source_zoom_min_set() and
22871     * elm_map_source_zoom_max_set().
22872     *
22873     * By default these values are 0 (world map) and 18 (maximum zoom).
22874     *
22875     * This function should be used when zoom mode is set to
22876     * #ELM_MAP_ZOOM_MODE_MANUAL. This is the default mode, and can be set
22877     * with elm_map_zoom_mode_set().
22878     *
22879     * @see elm_map_zoom_mode_set().
22880     * @see elm_map_zoom_get().
22881     *
22882     * @ingroup Map
22883     */
22884    EAPI void                  elm_map_zoom_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
22885
22886    /**
22887     * Get the zoom level of the map.
22888     *
22889     * @param obj The map object.
22890     * @return The current zoom level.
22891     *
22892     * This returns the current zoom level of the map object.
22893     *
22894     * Note that if you set the fill mode to other than #ELM_MAP_ZOOM_MODE_MANUAL
22895     * (which is the default), the zoom level may be changed at any time by the
22896     * map object itself to account for map size and map viewport size.
22897     *
22898     * @see elm_map_zoom_set() for details.
22899     *
22900     * @ingroup Map
22901     */
22902    EAPI int                   elm_map_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22903
22904    /**
22905     * Set the zoom mode used by the map object.
22906     *
22907     * @param obj The map object.
22908     * @param mode The zoom mode of the map, being it one of
22909     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
22910     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
22911     *
22912     * This sets the zoom mode to manual or one of the automatic levels.
22913     * Manual (#ELM_MAP_ZOOM_MODE_MANUAL) means that zoom is set manually by
22914     * elm_map_zoom_set() and will stay at that level until changed by code
22915     * or until zoom mode is changed. This is the default mode.
22916     *
22917     * The Automatic modes will allow the map object to automatically
22918     * adjust zoom mode based on properties. #ELM_MAP_ZOOM_MODE_AUTO_FIT will
22919     * adjust zoom so the map fits inside the scroll frame with no pixels
22920     * outside this area. #ELM_MAP_ZOOM_MODE_AUTO_FILL will be similar but
22921     * ensure no pixels within the frame are left unfilled. Do not forget that
22922     * the valid sizes are 2^zoom, consequently the map may be smaller than
22923     * the scroller view.
22924     *
22925     * @see elm_map_zoom_set()
22926     *
22927     * @ingroup Map
22928     */
22929    EAPI void                  elm_map_zoom_mode_set(Evas_Object *obj, Elm_Map_Zoom_Mode mode) EINA_ARG_NONNULL(1);
22930
22931    /**
22932     * Get the zoom mode used by the map object.
22933     *
22934     * @param obj The map object.
22935     * @return The zoom mode of the map, being it one of
22936     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
22937     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
22938     *
22939     * This function returns the current zoom mode used by the map object.
22940     *
22941     * @see elm_map_zoom_mode_set() for more details.
22942     *
22943     * @ingroup Map
22944     */
22945    EAPI Elm_Map_Zoom_Mode     elm_map_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22946
22947    /**
22948     * Get the current coordinates of the map.
22949     *
22950     * @param obj The map object.
22951     * @param lon Pointer where to store longitude.
22952     * @param lat Pointer where to store latitude.
22953     *
22954     * This gets the current center coordinates of the map object. It can be
22955     * set by elm_map_geo_region_bring_in() and elm_map_geo_region_show().
22956     *
22957     * @see elm_map_geo_region_bring_in()
22958     * @see elm_map_geo_region_show()
22959     *
22960     * @ingroup Map
22961     */
22962    EAPI void                  elm_map_geo_region_get(const Evas_Object *obj, double *lon, double *lat) EINA_ARG_NONNULL(1);
22963
22964    /**
22965     * Animatedly bring in given coordinates to the center of the map.
22966     *
22967     * @param obj The map object.
22968     * @param lon Longitude to center at.
22969     * @param lat Latitude to center at.
22970     *
22971     * This causes map to jump to the given @p lat and @p lon coordinates
22972     * and show it (by scrolling) in the center of the viewport, if it is not
22973     * already centered. This will use animation to do so and take a period
22974     * of time to complete.
22975     *
22976     * @see elm_map_geo_region_show() for a function to avoid animation.
22977     * @see elm_map_geo_region_get()
22978     *
22979     * @ingroup Map
22980     */
22981    EAPI void                  elm_map_geo_region_bring_in(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
22982
22983    /**
22984     * Show the given coordinates at the center of the map, @b immediately.
22985     *
22986     * @param obj The map object.
22987     * @param lon Longitude to center at.
22988     * @param lat Latitude to center at.
22989     *
22990     * This causes map to @b redraw its viewport's contents to the
22991     * region contining the given @p lat and @p lon, that will be moved to the
22992     * center of the map.
22993     *
22994     * @see elm_map_geo_region_bring_in() for a function to move with animation.
22995     * @see elm_map_geo_region_get()
22996     *
22997     * @ingroup Map
22998     */
22999    EAPI void                  elm_map_geo_region_show(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
23000
23001    /**
23002     * Pause or unpause the map.
23003     *
23004     * @param obj The map object.
23005     * @param paused Use @c EINA_TRUE to pause the map @p obj or @c EINA_FALSE
23006     * to unpause it.
23007     *
23008     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
23009     * for map.
23010     *
23011     * The default is off.
23012     *
23013     * This will stop zooming using animation, changing zoom levels will
23014     * change instantly. This will stop any existing animations that are running.
23015     *
23016     * @see elm_map_paused_get()
23017     *
23018     * @ingroup Map
23019     */
23020    EAPI void                  elm_map_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
23021
23022    /**
23023     * Get a value whether map is paused or not.
23024     *
23025     * @param obj The map object.
23026     * @return @c EINA_TRUE means map is pause. @c EINA_FALSE indicates
23027     * it is not. If @p obj is @c NULL, @c EINA_FALSE is returned.
23028     *
23029     * This gets the current paused state for the map object.
23030     *
23031     * @see elm_map_paused_set() for details.
23032     *
23033     * @ingroup Map
23034     */
23035    EAPI Eina_Bool             elm_map_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23036
23037    /**
23038     * Set to show markers during zoom level changes or not.
23039     *
23040     * @param obj The map object.
23041     * @param paused Use @c EINA_TRUE to @b not show markers or @c EINA_FALSE
23042     * to show them.
23043     *
23044     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
23045     * for map.
23046     *
23047     * The default is off.
23048     *
23049     * This will stop zooming using animation, changing zoom levels will
23050     * change instantly. This will stop any existing animations that are running.
23051     *
23052     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
23053     * for the markers.
23054     *
23055     * The default  is off.
23056     *
23057     * Enabling it will force the map to stop displaying the markers during
23058     * zoom level changes. Set to on if you have a large number of markers.
23059     *
23060     * @see elm_map_paused_markers_get()
23061     *
23062     * @ingroup Map
23063     */
23064    EAPI void                  elm_map_paused_markers_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
23065
23066    /**
23067     * Get a value whether markers will be displayed on zoom level changes or not
23068     *
23069     * @param obj The map object.
23070     * @return @c EINA_TRUE means map @b won't display markers or @c EINA_FALSE
23071     * indicates it will. If @p obj is @c NULL, @c EINA_FALSE is returned.
23072     *
23073     * This gets the current markers paused state for the map object.
23074     *
23075     * @see elm_map_paused_markers_set() for details.
23076     *
23077     * @ingroup Map
23078     */
23079    EAPI Eina_Bool             elm_map_paused_markers_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23080
23081    /**
23082     * Get the information of downloading status.
23083     *
23084     * @param obj The map object.
23085     * @param try_num Pointer where to store number of tiles being downloaded.
23086     * @param finish_num Pointer where to store number of tiles successfully
23087     * downloaded.
23088     *
23089     * This gets the current downloading status for the map object, the number
23090     * of tiles being downloaded and the number of tiles already downloaded.
23091     *
23092     * @ingroup Map
23093     */
23094    EAPI void                  elm_map_utils_downloading_status_get(const Evas_Object *obj, int *try_num, int *finish_num) EINA_ARG_NONNULL(1, 2, 3);
23095
23096    /**
23097     * Convert a pixel coordinate (x,y) into a geographic coordinate
23098     * (longitude, latitude).
23099     *
23100     * @param obj The map object.
23101     * @param x the coordinate.
23102     * @param y the coordinate.
23103     * @param size the size in pixels of the map.
23104     * The map is a square and generally his size is : pow(2.0, zoom)*256.
23105     * @param lon Pointer where to store the longitude that correspond to x.
23106     * @param lat Pointer where to store the latitude that correspond to y.
23107     *
23108     * @note Origin pixel point is the top left corner of the viewport.
23109     * Map zoom and size are taken on account.
23110     *
23111     * @see elm_map_utils_convert_geo_into_coord() if you need the inverse.
23112     *
23113     * @ingroup Map
23114     */
23115    EAPI void                  elm_map_utils_convert_coord_into_geo(const Evas_Object *obj, int x, int y, int size, double *lon, double *lat) EINA_ARG_NONNULL(1, 5, 6);
23116
23117    /**
23118     * Convert a geographic coordinate (longitude, latitude) into a pixel
23119     * coordinate (x, y).
23120     *
23121     * @param obj The map object.
23122     * @param lon the longitude.
23123     * @param lat the latitude.
23124     * @param size the size in pixels of the map. The map is a square
23125     * and generally his size is : pow(2.0, zoom)*256.
23126     * @param x Pointer where to store the horizontal pixel coordinate that
23127     * correspond to the longitude.
23128     * @param y Pointer where to store the vertical pixel coordinate that
23129     * correspond to the latitude.
23130     *
23131     * @note Origin pixel point is the top left corner of the viewport.
23132     * Map zoom and size are taken on account.
23133     *
23134     * @see elm_map_utils_convert_coord_into_geo() if you need the inverse.
23135     *
23136     * @ingroup Map
23137     */
23138    EAPI void                  elm_map_utils_convert_geo_into_coord(const Evas_Object *obj, double lon, double lat, int size, int *x, int *y) EINA_ARG_NONNULL(1, 5, 6);
23139
23140    /**
23141     * Convert a geographic coordinate (longitude, latitude) into a name
23142     * (address).
23143     *
23144     * @param obj The map object.
23145     * @param lon the longitude.
23146     * @param lat the latitude.
23147     * @return name A #Elm_Map_Name handle for this coordinate.
23148     *
23149     * To get the string for this address, elm_map_name_address_get()
23150     * should be used.
23151     *
23152     * @see elm_map_utils_convert_name_into_coord() if you need the inverse.
23153     *
23154     * @ingroup Map
23155     */
23156    EAPI Elm_Map_Name         *elm_map_utils_convert_coord_into_name(const Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
23157
23158    /**
23159     * Convert a name (address) into a geographic coordinate
23160     * (longitude, latitude).
23161     *
23162     * @param obj The map object.
23163     * @param name The address.
23164     * @return name A #Elm_Map_Name handle for this address.
23165     *
23166     * To get the longitude and latitude, elm_map_name_region_get()
23167     * should be used.
23168     *
23169     * @see elm_map_utils_convert_coord_into_name() if you need the inverse.
23170     *
23171     * @ingroup Map
23172     */
23173    EAPI Elm_Map_Name         *elm_map_utils_convert_name_into_coord(const Evas_Object *obj, char *address) EINA_ARG_NONNULL(1, 2);
23174
23175    /**
23176     * Convert a pixel coordinate into a rotated pixel coordinate.
23177     *
23178     * @param obj The map object.
23179     * @param x horizontal coordinate of the point to rotate.
23180     * @param y vertical coordinate of the point to rotate.
23181     * @param cx rotation's center horizontal position.
23182     * @param cy rotation's center vertical position.
23183     * @param degree amount of degrees from 0.0 to 360.0 to rotate arount Z axis.
23184     * @param xx Pointer where to store rotated x.
23185     * @param yy Pointer where to store rotated y.
23186     *
23187     * @ingroup Map
23188     */
23189    EAPI void                  elm_map_utils_rotate_coord(const Evas_Object *obj, const Evas_Coord x, const Evas_Coord y, const Evas_Coord cx, const Evas_Coord cy, const double degree, Evas_Coord *xx, Evas_Coord *yy) EINA_ARG_NONNULL(1);
23190
23191    /**
23192     * Add a new marker to the map object.
23193     *
23194     * @param obj The map object.
23195     * @param lon The longitude of the marker.
23196     * @param lat The latitude of the marker.
23197     * @param clas The class, to use when marker @b isn't grouped to others.
23198     * @param clas_group The class group, to use when marker is grouped to others
23199     * @param data The data passed to the callbacks.
23200     *
23201     * @return The created marker or @c NULL upon failure.
23202     *
23203     * A marker will be created and shown in a specific point of the map, defined
23204     * by @p lon and @p lat.
23205     *
23206     * It will be displayed using style defined by @p class when this marker
23207     * is displayed alone (not grouped). A new class can be created with
23208     * elm_map_marker_class_new().
23209     *
23210     * If the marker is grouped to other markers, it will be displayed with
23211     * style defined by @p class_group. Markers with the same group are grouped
23212     * if they are close. A new group class can be created with
23213     * elm_map_marker_group_class_new().
23214     *
23215     * Markers created with this method can be deleted with
23216     * elm_map_marker_remove().
23217     *
23218     * A marker can have associated content to be displayed by a bubble,
23219     * when a user click over it, as well as an icon. These objects will
23220     * be fetch using class' callback functions.
23221     *
23222     * @see elm_map_marker_class_new()
23223     * @see elm_map_marker_group_class_new()
23224     * @see elm_map_marker_remove()
23225     *
23226     * @ingroup Map
23227     */
23228    EAPI Elm_Map_Marker       *elm_map_marker_add(Evas_Object *obj, double lon, double lat, Elm_Map_Marker_Class *clas, Elm_Map_Group_Class *clas_group, void *data) EINA_ARG_NONNULL(1, 4, 5);
23229
23230    /**
23231     * Set the maximum numbers of markers' content to be displayed in a group.
23232     *
23233     * @param obj The map object.
23234     * @param max The maximum numbers of items displayed in a bubble.
23235     *
23236     * A bubble will be displayed when the user clicks over the group,
23237     * and will place the content of markers that belong to this group
23238     * inside it.
23239     *
23240     * A group can have a long list of markers, consequently the creation
23241     * of the content of the bubble can be very slow.
23242     *
23243     * In order to avoid this, a maximum number of items is displayed
23244     * in a bubble.
23245     *
23246     * By default this number is 30.
23247     *
23248     * Marker with the same group class are grouped if they are close.
23249     *
23250     * @see elm_map_marker_add()
23251     *
23252     * @ingroup Map
23253     */
23254    EAPI void                  elm_map_max_marker_per_group_set(Evas_Object *obj, int max) EINA_ARG_NONNULL(1);
23255
23256    /**
23257     * Remove a marker from the map.
23258     *
23259     * @param marker The marker to remove.
23260     *
23261     * @see elm_map_marker_add()
23262     *
23263     * @ingroup Map
23264     */
23265    EAPI void                  elm_map_marker_remove(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23266
23267    /**
23268     * Get the current coordinates of the marker.
23269     *
23270     * @param marker marker.
23271     * @param lat Pointer where to store the marker's latitude.
23272     * @param lon Pointer where to store the marker's longitude.
23273     *
23274     * These values are set when adding markers, with function
23275     * elm_map_marker_add().
23276     *
23277     * @see elm_map_marker_add()
23278     *
23279     * @ingroup Map
23280     */
23281    EAPI void                  elm_map_marker_region_get(const Elm_Map_Marker *marker, double *lon, double *lat) EINA_ARG_NONNULL(1);
23282
23283    /**
23284     * Animatedly bring in given marker to the center of the map.
23285     *
23286     * @param marker The marker to center at.
23287     *
23288     * This causes map to jump to the given @p marker's coordinates
23289     * and show it (by scrolling) in the center of the viewport, if it is not
23290     * already centered. This will use animation to do so and take a period
23291     * of time to complete.
23292     *
23293     * @see elm_map_marker_show() for a function to avoid animation.
23294     * @see elm_map_marker_region_get()
23295     *
23296     * @ingroup Map
23297     */
23298    EAPI void                  elm_map_marker_bring_in(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23299
23300    /**
23301     * Show the given marker at the center of the map, @b immediately.
23302     *
23303     * @param marker The marker to center at.
23304     *
23305     * This causes map to @b redraw its viewport's contents to the
23306     * region contining the given @p marker's coordinates, that will be
23307     * moved to the center of the map.
23308     *
23309     * @see elm_map_marker_bring_in() for a function to move with animation.
23310     * @see elm_map_markers_list_show() if more than one marker need to be
23311     * displayed.
23312     * @see elm_map_marker_region_get()
23313     *
23314     * @ingroup Map
23315     */
23316    EAPI void                  elm_map_marker_show(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23317
23318    /**
23319     * Move and zoom the map to display a list of markers.
23320     *
23321     * @param markers A list of #Elm_Map_Marker handles.
23322     *
23323     * The map will be centered on the center point of the markers in the list.
23324     * Then the map will be zoomed in order to fit the markers using the maximum
23325     * zoom which allows display of all the markers.
23326     *
23327     * @warning All the markers should belong to the same map object.
23328     *
23329     * @see elm_map_marker_show() to show a single marker.
23330     * @see elm_map_marker_bring_in()
23331     *
23332     * @ingroup Map
23333     */
23334    EAPI void                  elm_map_markers_list_show(Eina_List *markers) EINA_ARG_NONNULL(1);
23335
23336    /**
23337     * Get the Evas object returned by the ElmMapMarkerGetFunc callback
23338     *
23339     * @param marker The marker wich content should be returned.
23340     * @return Return the evas object if it exists, else @c NULL.
23341     *
23342     * To set callback function #ElmMapMarkerGetFunc for the marker class,
23343     * elm_map_marker_class_get_cb_set() should be used.
23344     *
23345     * This content is what will be inside the bubble that will be displayed
23346     * when an user clicks over the marker.
23347     *
23348     * This returns the actual Evas object used to be placed inside
23349     * the bubble. This may be @c NULL, as it may
23350     * not have been created or may have been deleted, at any time, by
23351     * the map. <b>Do not modify this object</b> (move, resize,
23352     * show, hide, etc.), as the map is controlling it. This
23353     * function is for querying, emitting custom signals or hooking
23354     * lower level callbacks for events on that object. Do not delete
23355     * this object under any circumstances.
23356     *
23357     * @ingroup Map
23358     */
23359    EAPI Evas_Object          *elm_map_marker_object_get(const Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23360
23361    /**
23362     * Update the marker
23363     *
23364     * @param marker The marker to be updated.
23365     *
23366     * If a content is set to this marker, it will call function to delete it,
23367     * #ElmMapMarkerDelFunc, and then will fetch the content again with
23368     * #ElmMapMarkerGetFunc.
23369     *
23370     * These functions are set for the marker class with
23371     * elm_map_marker_class_get_cb_set() and elm_map_marker_class_del_cb_set().
23372     *
23373     * @ingroup Map
23374     */
23375    EAPI void                  elm_map_marker_update(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23376
23377    /**
23378     * Close all the bubbles opened by the user.
23379     *
23380     * @param obj The map object.
23381     *
23382     * A bubble is displayed with a content fetched with #ElmMapMarkerGetFunc
23383     * when the user clicks on a marker.
23384     *
23385     * This functions is set for the marker class with
23386     * elm_map_marker_class_get_cb_set().
23387     *
23388     * @ingroup Map
23389     */
23390    EAPI void                  elm_map_bubbles_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
23391
23392    /**
23393     * Create a new group class.
23394     *
23395     * @param obj The map object.
23396     * @return Returns the new group class.
23397     *
23398     * Each marker must be associated to a group class. Markers in the same
23399     * group are grouped if they are close.
23400     *
23401     * The group class defines the style of the marker when a marker is grouped
23402     * to others markers. When it is alone, another class will be used.
23403     *
23404     * A group class will need to be provided when creating a marker with
23405     * elm_map_marker_add().
23406     *
23407     * Some properties and functions can be set by class, as:
23408     * - style, with elm_map_group_class_style_set()
23409     * - data - to be associated to the group class. It can be set using
23410     *   elm_map_group_class_data_set().
23411     * - min zoom to display markers, set with
23412     *   elm_map_group_class_zoom_displayed_set().
23413     * - max zoom to group markers, set using
23414     *   elm_map_group_class_zoom_grouped_set().
23415     * - visibility - set if markers will be visible or not, set with
23416     *   elm_map_group_class_hide_set().
23417     * - #ElmMapGroupIconGetFunc - used to fetch icon for markers group classes.
23418     *   It can be set using elm_map_group_class_icon_cb_set().
23419     *
23420     * @see elm_map_marker_add()
23421     * @see elm_map_group_class_style_set()
23422     * @see elm_map_group_class_data_set()
23423     * @see elm_map_group_class_zoom_displayed_set()
23424     * @see elm_map_group_class_zoom_grouped_set()
23425     * @see elm_map_group_class_hide_set()
23426     * @see elm_map_group_class_icon_cb_set()
23427     *
23428     * @ingroup Map
23429     */
23430    EAPI Elm_Map_Group_Class  *elm_map_group_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
23431
23432    /**
23433     * Set the marker's style of a group class.
23434     *
23435     * @param clas The group class.
23436     * @param style The style to be used by markers.
23437     *
23438     * Each marker must be associated to a group class, and will use the style
23439     * defined by such class when grouped to other markers.
23440     *
23441     * The following styles are provided by default theme:
23442     * @li @c radio - blue circle
23443     * @li @c radio2 - green circle
23444     * @li @c empty
23445     *
23446     * @see elm_map_group_class_new() for more details.
23447     * @see elm_map_marker_add()
23448     *
23449     * @ingroup Map
23450     */
23451    EAPI void                  elm_map_group_class_style_set(Elm_Map_Group_Class *clas, const char *style) EINA_ARG_NONNULL(1);
23452
23453    /**
23454     * Set the icon callback function of a group class.
23455     *
23456     * @param clas The group class.
23457     * @param icon_get The callback function that will return the icon.
23458     *
23459     * Each marker must be associated to a group class, and it can display a
23460     * custom icon. The function @p icon_get must return this icon.
23461     *
23462     * @see elm_map_group_class_new() for more details.
23463     * @see elm_map_marker_add()
23464     *
23465     * @ingroup Map
23466     */
23467    EAPI void                  elm_map_group_class_icon_cb_set(Elm_Map_Group_Class *clas, ElmMapGroupIconGetFunc icon_get) EINA_ARG_NONNULL(1);
23468
23469    /**
23470     * Set the data associated to the group class.
23471     *
23472     * @param clas The group class.
23473     * @param data The new user data.
23474     *
23475     * This data will be passed for callback functions, like icon get callback,
23476     * that can be set with elm_map_group_class_icon_cb_set().
23477     *
23478     * If a data was previously set, the object will lose the pointer for it,
23479     * so if needs to be freed, you must do it yourself.
23480     *
23481     * @see elm_map_group_class_new() for more details.
23482     * @see elm_map_group_class_icon_cb_set()
23483     * @see elm_map_marker_add()
23484     *
23485     * @ingroup Map
23486     */
23487    EAPI void                  elm_map_group_class_data_set(Elm_Map_Group_Class *clas, void *data) EINA_ARG_NONNULL(1);
23488
23489    /**
23490     * Set the minimum zoom from where the markers are displayed.
23491     *
23492     * @param clas The group class.
23493     * @param zoom The minimum zoom.
23494     *
23495     * Markers only will be displayed when the map is displayed at @p zoom
23496     * or bigger.
23497     *
23498     * @see elm_map_group_class_new() for more details.
23499     * @see elm_map_marker_add()
23500     *
23501     * @ingroup Map
23502     */
23503    EAPI void                  elm_map_group_class_zoom_displayed_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
23504
23505    /**
23506     * Set the zoom from where the markers are no more grouped.
23507     *
23508     * @param clas The group class.
23509     * @param zoom The maximum zoom.
23510     *
23511     * Markers only will be grouped when the map is displayed at
23512     * less than @p zoom.
23513     *
23514     * @see elm_map_group_class_new() for more details.
23515     * @see elm_map_marker_add()
23516     *
23517     * @ingroup Map
23518     */
23519    EAPI void                  elm_map_group_class_zoom_grouped_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
23520
23521    /**
23522     * Set if the markers associated to the group class @clas are hidden or not.
23523     *
23524     * @param clas The group class.
23525     * @param hide Use @c EINA_TRUE to hide markers or @c EINA_FALSE
23526     * to show them.
23527     *
23528     * If @p hide is @c EINA_TRUE the markers will be hidden, but default
23529     * is to show them.
23530     *
23531     * @ingroup Map
23532     */
23533    EAPI void                  elm_map_group_class_hide_set(Evas_Object *obj, Elm_Map_Group_Class *clas, Eina_Bool hide) EINA_ARG_NONNULL(1, 2);
23534
23535    /**
23536     * Create a new marker class.
23537     *
23538     * @param obj The map object.
23539     * @return Returns the new group class.
23540     *
23541     * Each marker must be associated to a class.
23542     *
23543     * The marker class defines the style of the marker when a marker is
23544     * displayed alone, i.e., not grouped to to others markers. When grouped
23545     * it will use group class style.
23546     *
23547     * A marker class will need to be provided when creating a marker with
23548     * elm_map_marker_add().
23549     *
23550     * Some properties and functions can be set by class, as:
23551     * - style, with elm_map_marker_class_style_set()
23552     * - #ElmMapMarkerIconGetFunc - used to fetch icon for markers classes.
23553     *   It can be set using elm_map_marker_class_icon_cb_set().
23554     * - #ElmMapMarkerGetFunc - used to fetch bubble content for marker classes.
23555     *   Set using elm_map_marker_class_get_cb_set().
23556     * - #ElmMapMarkerDelFunc - used to delete bubble content for marker classes.
23557     *   Set using elm_map_marker_class_del_cb_set().
23558     *
23559     * @see elm_map_marker_add()
23560     * @see elm_map_marker_class_style_set()
23561     * @see elm_map_marker_class_icon_cb_set()
23562     * @see elm_map_marker_class_get_cb_set()
23563     * @see elm_map_marker_class_del_cb_set()
23564     *
23565     * @ingroup Map
23566     */
23567    EAPI Elm_Map_Marker_Class *elm_map_marker_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
23568
23569    /**
23570     * Set the marker's style of a marker class.
23571     *
23572     * @param clas The marker class.
23573     * @param style The style to be used by markers.
23574     *
23575     * Each marker must be associated to a marker class, and will use the style
23576     * defined by such class when alone, i.e., @b not grouped to other markers.
23577     *
23578     * The following styles are provided by default theme:
23579     * @li @c radio
23580     * @li @c radio2
23581     * @li @c empty
23582     *
23583     * @see elm_map_marker_class_new() for more details.
23584     * @see elm_map_marker_add()
23585     *
23586     * @ingroup Map
23587     */
23588    EAPI void                  elm_map_marker_class_style_set(Elm_Map_Marker_Class *clas, const char *style) EINA_ARG_NONNULL(1);
23589
23590    /**
23591     * Set the icon callback function of a marker class.
23592     *
23593     * @param clas The marker class.
23594     * @param icon_get The callback function that will return the icon.
23595     *
23596     * Each marker must be associated to a marker class, and it can display a
23597     * custom icon. The function @p icon_get must return this icon.
23598     *
23599     * @see elm_map_marker_class_new() for more details.
23600     * @see elm_map_marker_add()
23601     *
23602     * @ingroup Map
23603     */
23604    EAPI void                  elm_map_marker_class_icon_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerIconGetFunc icon_get) EINA_ARG_NONNULL(1);
23605
23606    /**
23607     * Set the bubble content callback function of a marker class.
23608     *
23609     * @param clas The marker class.
23610     * @param get The callback function that will return the content.
23611     *
23612     * Each marker must be associated to a marker class, and it can display a
23613     * a content on a bubble that opens when the user click over the marker.
23614     * The function @p get must return this content object.
23615     *
23616     * If this content will need to be deleted, elm_map_marker_class_del_cb_set()
23617     * can be used.
23618     *
23619     * @see elm_map_marker_class_new() for more details.
23620     * @see elm_map_marker_class_del_cb_set()
23621     * @see elm_map_marker_add()
23622     *
23623     * @ingroup Map
23624     */
23625    EAPI void                  elm_map_marker_class_get_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerGetFunc get) EINA_ARG_NONNULL(1);
23626
23627    /**
23628     * Set the callback function used to delete bubble content of a marker class.
23629     *
23630     * @param clas The marker class.
23631     * @param del The callback function that will delete the content.
23632     *
23633     * Each marker must be associated to a marker class, and it can display a
23634     * a content on a bubble that opens when the user click over the marker.
23635     * The function to return such content can be set with
23636     * elm_map_marker_class_get_cb_set().
23637     *
23638     * If this content must be freed, a callback function need to be
23639     * set for that task with this function.
23640     *
23641     * If this callback is defined it will have to delete (or not) the
23642     * object inside, but if the callback is not defined the object will be
23643     * destroyed with evas_object_del().
23644     *
23645     * @see elm_map_marker_class_new() for more details.
23646     * @see elm_map_marker_class_get_cb_set()
23647     * @see elm_map_marker_add()
23648     *
23649     * @ingroup Map
23650     */
23651    EAPI void                  elm_map_marker_class_del_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerDelFunc del) EINA_ARG_NONNULL(1);
23652
23653    /**
23654     * Get the list of available sources.
23655     *
23656     * @param obj The map object.
23657     * @return The source names list.
23658     *
23659     * It will provide a list with all available sources, that can be set as
23660     * current source with elm_map_source_name_set(), or get with
23661     * elm_map_source_name_get().
23662     *
23663     * Available sources:
23664     * @li "Mapnik"
23665     * @li "Osmarender"
23666     * @li "CycleMap"
23667     * @li "Maplint"
23668     *
23669     * @see elm_map_source_name_set() for more details.
23670     * @see elm_map_source_name_get()
23671     *
23672     * @ingroup Map
23673     */
23674    EAPI const char          **elm_map_source_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23675
23676    /**
23677     * Set the source of the map.
23678     *
23679     * @param obj The map object.
23680     * @param source The source to be used.
23681     *
23682     * Map widget retrieves images that composes the map from a web service.
23683     * This web service can be set with this method.
23684     *
23685     * A different service can return a different maps with different
23686     * information and it can use different zoom values.
23687     *
23688     * The @p source_name need to match one of the names provided by
23689     * elm_map_source_names_get().
23690     *
23691     * The current source can be get using elm_map_source_name_get().
23692     *
23693     * @see elm_map_source_names_get()
23694     * @see elm_map_source_name_get()
23695     *
23696     *
23697     * @ingroup Map
23698     */
23699    EAPI void                  elm_map_source_name_set(Evas_Object *obj, const char *source_name) EINA_ARG_NONNULL(1);
23700
23701    /**
23702     * Get the name of currently used source.
23703     *
23704     * @param obj The map object.
23705     * @return Returns the name of the source in use.
23706     *
23707     * @see elm_map_source_name_set() for more details.
23708     *
23709     * @ingroup Map
23710     */
23711    EAPI const char           *elm_map_source_name_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23712
23713    /**
23714     * Set the source of the route service to be used by the map.
23715     *
23716     * @param obj The map object.
23717     * @param source The route service to be used, being it one of
23718     * #ELM_MAP_ROUTE_SOURCE_YOURS (default), #ELM_MAP_ROUTE_SOURCE_MONAV,
23719     * and #ELM_MAP_ROUTE_SOURCE_ORS.
23720     *
23721     * Each one has its own algorithm, so the route retrieved may
23722     * differ depending on the source route. Now, only the default is working.
23723     *
23724     * #ELM_MAP_ROUTE_SOURCE_YOURS is the routing service provided at
23725     * http://www.yournavigation.org/.
23726     *
23727     * #ELM_MAP_ROUTE_SOURCE_MONAV, offers exact routing without heuristic
23728     * assumptions. Its routing core is based on Contraction Hierarchies.
23729     *
23730     * #ELM_MAP_ROUTE_SOURCE_ORS, is provided at http://www.openrouteservice.org/
23731     *
23732     * @see elm_map_route_source_get().
23733     *
23734     * @ingroup Map
23735     */
23736    EAPI void                  elm_map_route_source_set(Evas_Object *obj, Elm_Map_Route_Sources source) EINA_ARG_NONNULL(1);
23737
23738    /**
23739     * Get the current route source.
23740     *
23741     * @param obj The map object.
23742     * @return The source of the route service used by the map.
23743     *
23744     * @see elm_map_route_source_set() for details.
23745     *
23746     * @ingroup Map
23747     */
23748    EAPI Elm_Map_Route_Sources elm_map_route_source_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23749
23750    /**
23751     * Set the minimum zoom of the source.
23752     *
23753     * @param obj The map object.
23754     * @param zoom New minimum zoom value to be used.
23755     *
23756     * By default, it's 0.
23757     *
23758     * @ingroup Map
23759     */
23760    EAPI void                  elm_map_source_zoom_min_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
23761
23762    /**
23763     * Get the minimum zoom of the source.
23764     *
23765     * @param obj The map object.
23766     * @return Returns the minimum zoom of the source.
23767     *
23768     * @see elm_map_source_zoom_min_set() for details.
23769     *
23770     * @ingroup Map
23771     */
23772    EAPI int                   elm_map_source_zoom_min_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23773
23774    /**
23775     * Set the maximum zoom of the source.
23776     *
23777     * @param obj The map object.
23778     * @param zoom New maximum zoom value to be used.
23779     *
23780     * By default, it's 18.
23781     *
23782     * @ingroup Map
23783     */
23784    EAPI void                  elm_map_source_zoom_max_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
23785
23786    /**
23787     * Get the maximum zoom of the source.
23788     *
23789     * @param obj The map object.
23790     * @return Returns the maximum zoom of the source.
23791     *
23792     * @see elm_map_source_zoom_min_set() for details.
23793     *
23794     * @ingroup Map
23795     */
23796    EAPI int                   elm_map_source_zoom_max_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23797
23798    /**
23799     * Set the user agent used by the map object to access routing services.
23800     *
23801     * @param obj The map object.
23802     * @param user_agent The user agent to be used by the map.
23803     *
23804     * User agent is a client application implementing a network protocol used
23805     * in communications within a clientā€“server distributed computing system
23806     *
23807     * The @p user_agent identification string will transmitted in a header
23808     * field @c User-Agent.
23809     *
23810     * @see elm_map_user_agent_get()
23811     *
23812     * @ingroup Map
23813     */
23814    EAPI void                  elm_map_user_agent_set(Evas_Object *obj, const char *user_agent) EINA_ARG_NONNULL(1, 2);
23815
23816    /**
23817     * Get the user agent used by the map object.
23818     *
23819     * @param obj The map object.
23820     * @return The user agent identification string used by the map.
23821     *
23822     * @see elm_map_user_agent_set() for details.
23823     *
23824     * @ingroup Map
23825     */
23826    EAPI const char           *elm_map_user_agent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23827
23828    /**
23829     * Add a new route to the map object.
23830     *
23831     * @param obj The map object.
23832     * @param type The type of transport to be considered when tracing a route.
23833     * @param method The routing method, what should be priorized.
23834     * @param flon The start longitude.
23835     * @param flat The start latitude.
23836     * @param tlon The destination longitude.
23837     * @param tlat The destination latitude.
23838     *
23839     * @return The created route or @c NULL upon failure.
23840     *
23841     * A route will be traced by point on coordinates (@p flat, @p flon)
23842     * to point on coordinates (@p tlat, @p tlon), using the route service
23843     * set with elm_map_route_source_set().
23844     *
23845     * It will take @p type on consideration to define the route,
23846     * depending if the user will be walking or driving, the route may vary.
23847     * One of #ELM_MAP_ROUTE_TYPE_MOTOCAR, #ELM_MAP_ROUTE_TYPE_BICYCLE, or
23848     * #ELM_MAP_ROUTE_TYPE_FOOT need to be used.
23849     *
23850     * Another parameter is what the route should priorize, the minor distance
23851     * or the less time to be spend on the route. So @p method should be one
23852     * of #ELM_MAP_ROUTE_METHOD_SHORTEST or #ELM_MAP_ROUTE_METHOD_FASTEST.
23853     *
23854     * Routes created with this method can be deleted with
23855     * elm_map_route_remove(), colored with elm_map_route_color_set(),
23856     * and distance can be get with elm_map_route_distance_get().
23857     *
23858     * @see elm_map_route_remove()
23859     * @see elm_map_route_color_set()
23860     * @see elm_map_route_distance_get()
23861     * @see elm_map_route_source_set()
23862     *
23863     * @ingroup Map
23864     */
23865    EAPI Elm_Map_Route        *elm_map_route_add(Evas_Object *obj, Elm_Map_Route_Type type, Elm_Map_Route_Method method, double flon, double flat, double tlon, double tlat) EINA_ARG_NONNULL(1);
23866
23867    /**
23868     * Remove a route from the map.
23869     *
23870     * @param route The route to remove.
23871     *
23872     * @see elm_map_route_add()
23873     *
23874     * @ingroup Map
23875     */
23876    EAPI void                  elm_map_route_remove(Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23877
23878    /**
23879     * Set the route color.
23880     *
23881     * @param route The route object.
23882     * @param r Red channel value, from 0 to 255.
23883     * @param g Green channel value, from 0 to 255.
23884     * @param b Blue channel value, from 0 to 255.
23885     * @param a Alpha channel value, from 0 to 255.
23886     *
23887     * It uses an additive color model, so each color channel represents
23888     * how much of each primary colors must to be used. 0 represents
23889     * ausence of this color, so if all of the three are set to 0,
23890     * the color will be black.
23891     *
23892     * These component values should be integers in the range 0 to 255,
23893     * (single 8-bit byte).
23894     *
23895     * This sets the color used for the route. By default, it is set to
23896     * solid red (r = 255, g = 0, b = 0, a = 255).
23897     *
23898     * For alpha channel, 0 represents completely transparent, and 255, opaque.
23899     *
23900     * @see elm_map_route_color_get()
23901     *
23902     * @ingroup Map
23903     */
23904    EAPI void                  elm_map_route_color_set(Elm_Map_Route *route, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
23905
23906    /**
23907     * Get the route color.
23908     *
23909     * @param route The route object.
23910     * @param r Pointer where to store the red channel value.
23911     * @param g Pointer where to store the green channel value.
23912     * @param b Pointer where to store the blue channel value.
23913     * @param a Pointer where to store the alpha channel value.
23914     *
23915     * @see elm_map_route_color_set() for details.
23916     *
23917     * @ingroup Map
23918     */
23919    EAPI void                  elm_map_route_color_get(const Elm_Map_Route *route, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
23920
23921    /**
23922     * Get the route distance in kilometers.
23923     *
23924     * @param route The route object.
23925     * @return The distance of route (unit : km).
23926     *
23927     * @ingroup Map
23928     */
23929    EAPI double                elm_map_route_distance_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23930
23931    /**
23932     * Get the information of route nodes.
23933     *
23934     * @param route The route object.
23935     * @return Returns a string with the nodes of route.
23936     *
23937     * @ingroup Map
23938     */
23939    EAPI const char           *elm_map_route_node_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23940
23941    /**
23942     * Get the information of route waypoint.
23943     *
23944     * @param route the route object.
23945     * @return Returns a string with information about waypoint of route.
23946     *
23947     * @ingroup Map
23948     */
23949    EAPI const char           *elm_map_route_waypoint_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23950
23951    /**
23952     * Get the address of the name.
23953     *
23954     * @param name The name handle.
23955     * @return Returns the address string of @p name.
23956     *
23957     * This gets the coordinates of the @p name, created with one of the
23958     * conversion functions.
23959     *
23960     * @see elm_map_utils_convert_name_into_coord()
23961     * @see elm_map_utils_convert_coord_into_name()
23962     *
23963     * @ingroup Map
23964     */
23965    EAPI const char           *elm_map_name_address_get(const Elm_Map_Name *name) EINA_ARG_NONNULL(1);
23966
23967    /**
23968     * Get the current coordinates of the name.
23969     *
23970     * @param name The name handle.
23971     * @param lat Pointer where to store the latitude.
23972     * @param lon Pointer where to store The longitude.
23973     *
23974     * This gets the coordinates of the @p name, created with one of the
23975     * conversion functions.
23976     *
23977     * @see elm_map_utils_convert_name_into_coord()
23978     * @see elm_map_utils_convert_coord_into_name()
23979     *
23980     * @ingroup Map
23981     */
23982    EAPI void                  elm_map_name_region_get(const Elm_Map_Name *name, double *lon, double *lat) EINA_ARG_NONNULL(1);
23983
23984    /**
23985     * Remove a name from the map.
23986     *
23987     * @param name The name to remove.
23988     *
23989     * Basically the struct handled by @p name will be freed, so convertions
23990     * between address and coordinates will be lost.
23991     *
23992     * @see elm_map_utils_convert_name_into_coord()
23993     * @see elm_map_utils_convert_coord_into_name()
23994     *
23995     * @ingroup Map
23996     */
23997    EAPI void                  elm_map_name_remove(Elm_Map_Name *name) EINA_ARG_NONNULL(1);
23998
23999    /**
24000     * Rotate the map.
24001     *
24002     * @param obj The map object.
24003     * @param degree Angle from 0.0 to 360.0 to rotate arount Z axis.
24004     * @param cx Rotation's center horizontal position.
24005     * @param cy Rotation's center vertical position.
24006     *
24007     * @see elm_map_rotate_get()
24008     *
24009     * @ingroup Map
24010     */
24011    EAPI void                  elm_map_rotate_set(Evas_Object *obj, double degree, Evas_Coord cx, Evas_Coord cy) EINA_ARG_NONNULL(1);
24012
24013    /**
24014     * Get the rotate degree of the map
24015     *
24016     * @param obj The map object
24017     * @param degree Pointer where to store degrees from 0.0 to 360.0
24018     * to rotate arount Z axis.
24019     * @param cx Pointer where to store rotation's center horizontal position.
24020     * @param cy Pointer where to store rotation's center vertical position.
24021     *
24022     * @see elm_map_rotate_set() to set map rotation.
24023     *
24024     * @ingroup Map
24025     */
24026    EAPI void                  elm_map_rotate_get(const Evas_Object *obj, double *degree, Evas_Coord *cx, Evas_Coord *cy) EINA_ARG_NONNULL(1, 2, 3, 4);
24027
24028    /**
24029     * Enable or disable mouse wheel to be used to zoom in / out the map.
24030     *
24031     * @param obj The map object.
24032     * @param disabled Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE
24033     * to enable it.
24034     *
24035     * Mouse wheel can be used for the user to zoom in or zoom out the map.
24036     *
24037     * It's disabled by default.
24038     *
24039     * @see elm_map_wheel_disabled_get()
24040     *
24041     * @ingroup Map
24042     */
24043    EAPI void                  elm_map_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
24044
24045    /**
24046     * Get a value whether mouse wheel is enabled or not.
24047     *
24048     * @param obj The map object.
24049     * @return @c EINA_TRUE means map is disabled. @c EINA_FALSE indicates
24050     * it is enabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
24051     *
24052     * Mouse wheel can be used for the user to zoom in or zoom out the map.
24053     *
24054     * @see elm_map_wheel_disabled_set() for details.
24055     *
24056     * @ingroup Map
24057     */
24058    EAPI Eina_Bool             elm_map_wheel_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24059
24060 #ifdef ELM_EMAP
24061    /**
24062     * Add a track on the map
24063     *
24064     * @param obj The map object.
24065     * @param emap The emap route object.
24066     * @return The route object. This is an elm object of type Route.
24067     *
24068     * @see elm_route_add() for details.
24069     *
24070     * @ingroup Map
24071     */
24072    EAPI Evas_Object          *elm_map_track_add(Evas_Object *obj, EMap_Route *emap) EINA_ARG_NONNULL(1);
24073 #endif
24074
24075    /**
24076     * Remove a track from the map
24077     *
24078     * @param obj The map object.
24079     * @param route The track to remove.
24080     *
24081     * @ingroup Map
24082     */
24083    EAPI void                  elm_map_track_remove(Evas_Object *obj, Evas_Object *route) EINA_ARG_NONNULL(1);
24084
24085    /**
24086     * @}
24087     */
24088
24089    /* Route */
24090    EAPI Evas_Object *elm_route_add(Evas_Object *parent);
24091 #ifdef ELM_EMAP
24092    EAPI void elm_route_emap_set(Evas_Object *obj, EMap_Route *emap);
24093 #endif
24094    EAPI double elm_route_lon_min_get(Evas_Object *obj);
24095    EAPI double elm_route_lat_min_get(Evas_Object *obj);
24096    EAPI double elm_route_lon_max_get(Evas_Object *obj);
24097    EAPI double elm_route_lat_max_get(Evas_Object *obj);
24098
24099
24100    /**
24101     * @defgroup Panel Panel
24102     *
24103     * @image html img/widget/panel/preview-00.png
24104     * @image latex img/widget/panel/preview-00.eps
24105     *
24106     * @brief A panel is a type of animated container that contains subobjects.
24107     * It can be expanded or contracted by clicking the button on it's edge.
24108     *
24109     * Orientations are as follows:
24110     * @li ELM_PANEL_ORIENT_TOP
24111     * @li ELM_PANEL_ORIENT_LEFT
24112     * @li ELM_PANEL_ORIENT_RIGHT
24113     *
24114     * Default contents parts of the panel widget that you can use for are:
24115     * @li "default" - A content of the panel
24116     *
24117     * @ref tutorial_panel shows one way to use this widget.
24118     * @{
24119     */
24120    typedef enum _Elm_Panel_Orient
24121      {
24122         ELM_PANEL_ORIENT_TOP, /**< Panel (dis)appears from the top */
24123         ELM_PANEL_ORIENT_BOTTOM, /**< Not implemented */
24124         ELM_PANEL_ORIENT_LEFT, /**< Panel (dis)appears from the left */
24125         ELM_PANEL_ORIENT_RIGHT, /**< Panel (dis)appears from the right */
24126      } Elm_Panel_Orient;
24127    /**
24128     * @brief Adds a panel object
24129     *
24130     * @param parent The parent object
24131     *
24132     * @return The panel object, or NULL on failure
24133     */
24134    EAPI Evas_Object          *elm_panel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24135    /**
24136     * @brief Sets the orientation of the panel
24137     *
24138     * @param parent The parent object
24139     * @param orient The panel orientation. Can be one of the following:
24140     * @li ELM_PANEL_ORIENT_TOP
24141     * @li ELM_PANEL_ORIENT_LEFT
24142     * @li ELM_PANEL_ORIENT_RIGHT
24143     *
24144     * Sets from where the panel will (dis)appear.
24145     */
24146    EAPI void                  elm_panel_orient_set(Evas_Object *obj, Elm_Panel_Orient orient) EINA_ARG_NONNULL(1);
24147    /**
24148     * @brief Get the orientation of the panel.
24149     *
24150     * @param obj The panel object
24151     * @return The Elm_Panel_Orient, or ELM_PANEL_ORIENT_LEFT on failure.
24152     */
24153    EAPI Elm_Panel_Orient      elm_panel_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24154    /**
24155     * @brief Set the content of the panel.
24156     *
24157     * @param obj The panel object
24158     * @param content The panel content
24159     *
24160     * Once the content object is set, a previously set one will be deleted.
24161     * If you want to keep that old content object, use the
24162     * elm_panel_content_unset() function.
24163     *
24164     * @deprecated use elm_object_content_set() instead
24165     *
24166     */
24167    EINA_DEPRECATED EAPI void                  elm_panel_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24168    /**
24169     * @brief Get the content of the panel.
24170     *
24171     * @param obj The panel object
24172     * @return The content that is being used
24173     *
24174     * Return the content object which is set for this widget.
24175     *
24176     * @see elm_panel_content_set()
24177     *
24178     * @deprecated use elm_object_content_get() instead
24179     *
24180     */
24181    EINA_DEPRECATED EAPI Evas_Object          *elm_panel_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24182    /**
24183     * @brief Unset the content of the panel.
24184     *
24185     * @param obj The panel object
24186     * @return The content that was being used
24187     *
24188     * Unparent and return the content object which was set for this widget.
24189     *
24190     * @see elm_panel_content_set()
24191     *
24192     * @deprecated use elm_object_content_unset() instead
24193     *
24194     */
24195    EINA_DEPRECATED EAPI Evas_Object          *elm_panel_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24196    /**
24197     * @brief Set the state of the panel.
24198     *
24199     * @param obj The panel object
24200     * @param hidden If true, the panel will run the animation to contract
24201     */
24202    EAPI void                  elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden) EINA_ARG_NONNULL(1);
24203    /**
24204     * @brief Get the state of the panel.
24205     *
24206     * @param obj The panel object
24207     * @param hidden If true, the panel is in the "hide" state
24208     */
24209    EAPI Eina_Bool             elm_panel_hidden_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24210    /**
24211     * @brief Toggle the hidden state of the panel from code
24212     *
24213     * @param obj The panel object
24214     */
24215    EAPI void                  elm_panel_toggle(Evas_Object *obj) EINA_ARG_NONNULL(1);
24216    /**
24217     * @}
24218     */
24219
24220    /**
24221     * @defgroup Panes Panes
24222     * @ingroup Elementary
24223     *
24224     * @image html img/widget/panes/preview-00.png
24225     * @image latex img/widget/panes/preview-00.eps width=\textwidth
24226     *
24227     * @image html img/panes.png
24228     * @image latex img/panes.eps width=\textwidth
24229     *
24230     * The panes adds a dragable bar between two contents. When dragged
24231     * this bar will resize contents size.
24232     *
24233     * Panes can be displayed vertically or horizontally, and contents
24234     * size proportion can be customized (homogeneous by default).
24235     *
24236     * Smart callbacks one can listen to:
24237     * - "press" - The panes has been pressed (button wasn't released yet).
24238     * - "unpressed" - The panes was released after being pressed.
24239     * - "clicked" - The panes has been clicked>
24240     * - "clicked,double" - The panes has been double clicked
24241     *
24242     * Available styles for it:
24243     * - @c "default"
24244     *
24245     * Default contents parts of the panes widget that you can use for are:
24246     * @li "left" - A leftside content of the panes
24247     * @li "right" - A rightside content of the panes
24248     *
24249     * If panes is displayed vertically, left content will be displayed at
24250     * top.
24251     *
24252     * Here is an example on its usage:
24253     * @li @ref panes_example
24254     */
24255
24256    /**
24257     * @addtogroup Panes
24258     * @{
24259     */
24260
24261    /**
24262     * Add a new panes widget to the given parent Elementary
24263     * (container) object.
24264     *
24265     * @param parent The parent object.
24266     * @return a new panes widget handle or @c NULL, on errors.
24267     *
24268     * This function inserts a new panes widget on the canvas.
24269     *
24270     * @ingroup Panes
24271     */
24272    EAPI Evas_Object          *elm_panes_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24273
24274    /**
24275     * Set the left content of the panes widget.
24276     *
24277     * @param obj The panes object.
24278     * @param content The new left content object.
24279     *
24280     * Once the content object is set, a previously set one will be deleted.
24281     * If you want to keep that old content object, use the
24282     * elm_panes_content_left_unset() function.
24283     *
24284     * If panes is displayed vertically, left content will be displayed at
24285     * top.
24286     *
24287     * @see elm_panes_content_left_get()
24288     * @see elm_panes_content_right_set() to set content on the other side.
24289     *
24290     * @deprecated use elm_object_part_content_set() instead
24291     *
24292     * @ingroup Panes
24293     */
24294    EINA_DEPRECATED EAPI void                  elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24295
24296    /**
24297     * Set the right content of the panes widget.
24298     *
24299     * @param obj The panes object.
24300     * @param content The new right content object.
24301     *
24302     * Once the content object is set, a previously set one will be deleted.
24303     * If you want to keep that old content object, use the
24304     * elm_panes_content_right_unset() function.
24305     *
24306     * If panes is displayed vertically, left content will be displayed at
24307     * bottom.
24308     *
24309     * @see elm_panes_content_right_get()
24310     * @see elm_panes_content_left_set() to set content on the other side.
24311     *
24312     * @deprecated use elm_object_part_content_set() instead
24313     *
24314     * @ingroup Panes
24315     */
24316    EINA_DEPRECATED EAPI void                  elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24317
24318    /**
24319     * Get the left content of the panes.
24320     *
24321     * @param obj The panes object.
24322     * @return The left content object that is being used.
24323     *
24324     * Return the left content object which is set for this widget.
24325     *
24326     * @see elm_panes_content_left_set() for details.
24327     *
24328     * @deprecated use elm_object_part_content_get() instead
24329     *
24330     * @ingroup Panes
24331     */
24332    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_left_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24333
24334    /**
24335     * Get the right content of the panes.
24336     *
24337     * @param obj The panes object
24338     * @return The right content object that is being used
24339     *
24340     * Return the right content object which is set for this widget.
24341     *
24342     * @see elm_panes_content_right_set() for details.
24343     *
24344     * @deprecated use elm_object_part_content_get() instead
24345     *
24346     * @ingroup Panes
24347     */
24348    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_right_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24349
24350    /**
24351     * Unset the left content used for the panes.
24352     *
24353     * @param obj The panes object.
24354     * @return The left content object that was being used.
24355     *
24356     * Unparent and return the left content object which was set for this widget.
24357     *
24358     * @see elm_panes_content_left_set() for details.
24359     * @see elm_panes_content_left_get().
24360     *
24361     * @deprecated use elm_object_part_content_unset() instead
24362     *
24363     * @ingroup Panes
24364     */
24365    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_left_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24366
24367    /**
24368     * Unset the right content used for the panes.
24369     *
24370     * @param obj The panes object.
24371     * @return The right content object that was being used.
24372     *
24373     * Unparent and return the right content object which was set for this
24374     * widget.
24375     *
24376     * @see elm_panes_content_right_set() for details.
24377     * @see elm_panes_content_right_get().
24378     *
24379     * @deprecated use elm_object_part_content_unset() instead
24380     *
24381     * @ingroup Panes
24382     */
24383    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_right_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24384
24385    /**
24386     * Get the size proportion of panes widget's left side.
24387     *
24388     * @param obj The panes object.
24389     * @return float value between 0.0 and 1.0 representing size proportion
24390     * of left side.
24391     *
24392     * @see elm_panes_content_left_size_set() for more details.
24393     *
24394     * @ingroup Panes
24395     */
24396    EAPI double                elm_panes_content_left_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24397
24398    /**
24399     * Set the size proportion of panes widget's left side.
24400     *
24401     * @param obj The panes object.
24402     * @param size Value between 0.0 and 1.0 representing size proportion
24403     * of left side.
24404     *
24405     * By default it's homogeneous, i.e., both sides have the same size.
24406     *
24407     * If something different is required, it can be set with this function.
24408     * For example, if the left content should be displayed over
24409     * 75% of the panes size, @p size should be passed as @c 0.75.
24410     * This way, right content will be resized to 25% of panes size.
24411     *
24412     * If displayed vertically, left content is displayed at top, and
24413     * right content at bottom.
24414     *
24415     * @note This proportion will change when user drags the panes bar.
24416     *
24417     * @see elm_panes_content_left_size_get()
24418     *
24419     * @ingroup Panes
24420     */
24421    EAPI void                  elm_panes_content_left_size_set(Evas_Object *obj, double size) EINA_ARG_NONNULL(1);
24422
24423   /**
24424    * Set the orientation of a given panes widget.
24425    *
24426    * @param obj The panes object.
24427    * @param horizontal Use @c EINA_TRUE to make @p obj to be
24428    * @b horizontal, @c EINA_FALSE to make it @b vertical.
24429    *
24430    * Use this function to change how your panes is to be
24431    * disposed: vertically or horizontally.
24432    *
24433    * By default it's displayed horizontally.
24434    *
24435    * @see elm_panes_horizontal_get()
24436    *
24437    * @ingroup Panes
24438    */
24439    EAPI void                  elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
24440
24441    /**
24442     * Retrieve the orientation of a given panes widget.
24443     *
24444     * @param obj The panes object.
24445     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
24446     * @c EINA_FALSE if it's @b vertical (and on errors).
24447     *
24448     * @see elm_panes_horizontal_set() for more details.
24449     *
24450     * @ingroup Panes
24451     */
24452    EAPI Eina_Bool             elm_panes_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24453    EAPI void                  elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed) EINA_ARG_NONNULL(1);
24454    EAPI Eina_Bool             elm_panes_fixed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24455
24456    /**
24457     * @}
24458     */
24459
24460    /**
24461     * @defgroup Flip Flip
24462     *
24463     * @image html img/widget/flip/preview-00.png
24464     * @image latex img/widget/flip/preview-00.eps
24465     *
24466     * This widget holds 2 content objects(Evas_Object): one on the front and one
24467     * on the back. It allows you to flip from front to back and vice-versa using
24468     * various animations.
24469     *
24470     * If either the front or back contents are not set the flip will treat that
24471     * as transparent. So if you wore to set the front content but not the back,
24472     * and then call elm_flip_go() you would see whatever is below the flip.
24473     *
24474     * For a list of supported animations see elm_flip_go().
24475     *
24476     * Signals that you can add callbacks for are:
24477     * "animate,begin" - when a flip animation was started
24478     * "animate,done" - when a flip animation is finished
24479     *
24480     * @ref tutorial_flip show how to use most of the API.
24481     *
24482     * @{
24483     */
24484    typedef enum _Elm_Flip_Mode
24485      {
24486         ELM_FLIP_ROTATE_Y_CENTER_AXIS,
24487         ELM_FLIP_ROTATE_X_CENTER_AXIS,
24488         ELM_FLIP_ROTATE_XZ_CENTER_AXIS,
24489         ELM_FLIP_ROTATE_YZ_CENTER_AXIS,
24490         ELM_FLIP_CUBE_LEFT,
24491         ELM_FLIP_CUBE_RIGHT,
24492         ELM_FLIP_CUBE_UP,
24493         ELM_FLIP_CUBE_DOWN,
24494         ELM_FLIP_PAGE_LEFT,
24495         ELM_FLIP_PAGE_RIGHT,
24496         ELM_FLIP_PAGE_UP,
24497         ELM_FLIP_PAGE_DOWN
24498      } Elm_Flip_Mode;
24499    typedef enum _Elm_Flip_Interaction
24500      {
24501         ELM_FLIP_INTERACTION_NONE,
24502         ELM_FLIP_INTERACTION_ROTATE,
24503         ELM_FLIP_INTERACTION_CUBE,
24504         ELM_FLIP_INTERACTION_PAGE
24505      } Elm_Flip_Interaction;
24506    typedef enum _Elm_Flip_Direction
24507      {
24508         ELM_FLIP_DIRECTION_UP, /**< Allows interaction with the top of the widget */
24509         ELM_FLIP_DIRECTION_DOWN, /**< Allows interaction with the bottom of the widget */
24510         ELM_FLIP_DIRECTION_LEFT, /**< Allows interaction with the left portion of the widget */
24511         ELM_FLIP_DIRECTION_RIGHT /**< Allows interaction with the right portion of the widget */
24512      } Elm_Flip_Direction;
24513    /**
24514     * @brief Add a new flip to the parent
24515     *
24516     * @param parent The parent object
24517     * @return The new object or NULL if it cannot be created
24518     */
24519    EAPI Evas_Object *elm_flip_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24520    /**
24521     * @brief Set the front content of the flip widget.
24522     *
24523     * @param obj The flip object
24524     * @param content The new front content object
24525     *
24526     * Once the content object is set, a previously set one will be deleted.
24527     * If you want to keep that old content object, use the
24528     * elm_flip_content_front_unset() function.
24529     */
24530    EAPI void         elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24531    /**
24532     * @brief Set the back content of the flip widget.
24533     *
24534     * @param obj The flip object
24535     * @param content The new back content object
24536     *
24537     * Once the content object is set, a previously set one will be deleted.
24538     * If you want to keep that old content object, use the
24539     * elm_flip_content_back_unset() function.
24540     */
24541    EAPI void         elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24542    /**
24543     * @brief Get the front content used for the flip
24544     *
24545     * @param obj The flip object
24546     * @return The front content object that is being used
24547     *
24548     * Return the front content object which is set for this widget.
24549     */
24550    EAPI Evas_Object *elm_flip_content_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24551    /**
24552     * @brief Get the back content used for the flip
24553     *
24554     * @param obj The flip object
24555     * @return The back content object that is being used
24556     *
24557     * Return the back content object which is set for this widget.
24558     */
24559    EAPI Evas_Object *elm_flip_content_back_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24560    /**
24561     * @brief Unset the front content used for the flip
24562     *
24563     * @param obj The flip object
24564     * @return The front content object that was being used
24565     *
24566     * Unparent and return the front content object which was set for this widget.
24567     */
24568    EAPI Evas_Object *elm_flip_content_front_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24569    /**
24570     * @brief Unset the back content used for the flip
24571     *
24572     * @param obj The flip object
24573     * @return The back content object that was being used
24574     *
24575     * Unparent and return the back content object which was set for this widget.
24576     */
24577    EAPI Evas_Object *elm_flip_content_back_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24578    /**
24579     * @brief Get flip front visibility state
24580     *
24581     * @param obj The flip objct
24582     * @return EINA_TRUE if front front is showing, EINA_FALSE if the back is
24583     * showing.
24584     */
24585    EAPI Eina_Bool    elm_flip_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24586    /**
24587     * @brief Set flip perspective
24588     *
24589     * @param obj The flip object
24590     * @param foc The coordinate to set the focus on
24591     * @param x The X coordinate
24592     * @param y The Y coordinate
24593     *
24594     * @warning This function currently does nothing.
24595     */
24596    EAPI void         elm_flip_perspective_set(Evas_Object *obj, Evas_Coord foc, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
24597    /**
24598     * @brief Runs the flip animation
24599     *
24600     * @param obj The flip object
24601     * @param mode The mode type
24602     *
24603     * Flips the front and back contents using the @p mode animation. This
24604     * efectively hides the currently visible content and shows the hidden one.
24605     *
24606     * There a number of possible animations to use for the flipping:
24607     * @li ELM_FLIP_ROTATE_X_CENTER_AXIS - Rotate the currently visible content
24608     * around a horizontal axis in the middle of its height, the other content
24609     * is shown as the other side of the flip.
24610     * @li ELM_FLIP_ROTATE_Y_CENTER_AXIS - Rotate the currently visible content
24611     * around a vertical axis in the middle of its width, the other content is
24612     * shown as the other side of the flip.
24613     * @li ELM_FLIP_ROTATE_XZ_CENTER_AXIS - Rotate the currently visible content
24614     * around a diagonal axis in the middle of its width, the other content is
24615     * shown as the other side of the flip.
24616     * @li ELM_FLIP_ROTATE_YZ_CENTER_AXIS - Rotate the currently visible content
24617     * around a diagonal axis in the middle of its height, the other content is
24618     * shown as the other side of the flip.
24619     * @li ELM_FLIP_CUBE_LEFT - Rotate the currently visible content to the left
24620     * as if the flip was a cube, the other content is show as the right face of
24621     * the cube.
24622     * @li ELM_FLIP_CUBE_RIGHT - Rotate the currently visible content to the
24623     * right as if the flip was a cube, the other content is show as the left
24624     * face of the cube.
24625     * @li ELM_FLIP_CUBE_UP - Rotate the currently visible content up as if the
24626     * flip was a cube, the other content is show as the bottom face of the cube.
24627     * @li ELM_FLIP_CUBE_DOWN - Rotate the currently visible content down as if
24628     * the flip was a cube, the other content is show as the upper face of the
24629     * cube.
24630     * @li ELM_FLIP_PAGE_LEFT - Move the currently visible content to the left as
24631     * if the flip was a book, the other content is shown as the page below that.
24632     * @li ELM_FLIP_PAGE_RIGHT - Move the currently visible content to the right
24633     * as if the flip was a book, the other content is shown as the page below
24634     * that.
24635     * @li ELM_FLIP_PAGE_UP - Move the currently visible content up as if the
24636     * flip was a book, the other content is shown as the page below that.
24637     * @li ELM_FLIP_PAGE_DOWN - Move the currently visible content down as if the
24638     * flip was a book, the other content is shown as the page below that.
24639     *
24640     * @image html elm_flip.png
24641     * @image latex elm_flip.eps width=\textwidth
24642     */
24643    EAPI void         elm_flip_go(Evas_Object *obj, Elm_Flip_Mode mode) EINA_ARG_NONNULL(1);
24644    /**
24645     * @brief Set the interactive flip mode
24646     *
24647     * @param obj The flip object
24648     * @param mode The interactive flip mode to use
24649     *
24650     * This sets if the flip should be interactive (allow user to click and
24651     * drag a side of the flip to reveal the back page and cause it to flip).
24652     * By default a flip is not interactive. You may also need to set which
24653     * sides of the flip are "active" for flipping and how much space they use
24654     * (a minimum of a finger size) with elm_flip_interacton_direction_enabled_set()
24655     * and elm_flip_interacton_direction_hitsize_set()
24656     *
24657     * The four avilable mode of interaction are:
24658     * @li ELM_FLIP_INTERACTION_NONE - No interaction is allowed
24659     * @li ELM_FLIP_INTERACTION_ROTATE - Interaction will cause rotate animation
24660     * @li ELM_FLIP_INTERACTION_CUBE - Interaction will cause cube animation
24661     * @li ELM_FLIP_INTERACTION_PAGE - Interaction will cause page animation
24662     *
24663     * @note ELM_FLIP_INTERACTION_ROTATE won't cause
24664     * ELM_FLIP_ROTATE_XZ_CENTER_AXIS or ELM_FLIP_ROTATE_YZ_CENTER_AXIS to
24665     * happen, those can only be acheived with elm_flip_go();
24666     */
24667    EAPI void         elm_flip_interaction_set(Evas_Object *obj, Elm_Flip_Interaction mode);
24668    /**
24669     * @brief Get the interactive flip mode
24670     *
24671     * @param obj The flip object
24672     * @return The interactive flip mode
24673     *
24674     * Returns the interactive flip mode set by elm_flip_interaction_set()
24675     */
24676    EAPI Elm_Flip_Interaction elm_flip_interaction_get(const Evas_Object *obj);
24677    /**
24678     * @brief Set which directions of the flip respond to interactive flip
24679     *
24680     * @param obj The flip object
24681     * @param dir The direction to change
24682     * @param enabled If that direction is enabled or not
24683     *
24684     * By default all directions are disabled, so you may want to enable the
24685     * desired directions for flipping if you need interactive flipping. You must
24686     * call this function once for each direction that should be enabled.
24687     *
24688     * @see elm_flip_interaction_set()
24689     */
24690    EAPI void         elm_flip_interacton_direction_enabled_set(Evas_Object *obj, Elm_Flip_Direction dir, Eina_Bool enabled);
24691    /**
24692     * @brief Get the enabled state of that flip direction
24693     *
24694     * @param obj The flip object
24695     * @param dir The direction to check
24696     * @return If that direction is enabled or not
24697     *
24698     * Gets the enabled state set by elm_flip_interacton_direction_enabled_set()
24699     *
24700     * @see elm_flip_interaction_set()
24701     */
24702    EAPI Eina_Bool    elm_flip_interacton_direction_enabled_get(Evas_Object *obj, Elm_Flip_Direction dir);
24703    /**
24704     * @brief Set the amount of the flip that is sensitive to interactive flip
24705     *
24706     * @param obj The flip object
24707     * @param dir The direction to modify
24708     * @param hitsize The amount of that dimension (0.0 to 1.0) to use
24709     *
24710     * Set the amount of the flip that is sensitive to interactive flip, with 0
24711     * representing no area in the flip and 1 representing the entire flip. There
24712     * is however a consideration to be made in that the area will never be
24713     * smaller than the finger size set(as set in your Elementary configuration).
24714     *
24715     * @see elm_flip_interaction_set()
24716     */
24717    EAPI void         elm_flip_interacton_direction_hitsize_set(Evas_Object *obj, Elm_Flip_Direction dir, double hitsize);
24718    /**
24719     * @brief Get the amount of the flip that is sensitive to interactive flip
24720     *
24721     * @param obj The flip object
24722     * @param dir The direction to check
24723     * @return The size set for that direction
24724     *
24725     * Returns the amount os sensitive area set by
24726     * elm_flip_interacton_direction_hitsize_set().
24727     */
24728    EAPI double       elm_flip_interacton_direction_hitsize_get(Evas_Object *obj, Elm_Flip_Direction dir);
24729    /**
24730     * @}
24731     */
24732
24733    /* scrolledentry */
24734    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24735    EINA_DEPRECATED EAPI void         elm_scrolled_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
24736    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24737    EINA_DEPRECATED EAPI void         elm_scrolled_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
24738    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24739    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24740    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24741    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24742    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24743    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24744    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24745    EINA_DEPRECATED EAPI void         elm_scrolled_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
24746    EINA_DEPRECATED EAPI void         elm_scrolled_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
24747    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24748    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
24749    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
24750    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
24751    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
24752    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
24753    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
24754    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24755    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24756    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24757    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24758    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
24759    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
24760    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24761    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24762    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24763    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
24764    EINA_DEPRECATED EAPI int          elm_scrolled_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24765    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
24766    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
24767    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
24768    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
24769    EINA_DEPRECATED EAPI void         elm_scrolled_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) EINA_ARG_NONNULL(1);
24770    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
24771    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24772    EINA_DEPRECATED EAPI void         elm_scrolled_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v) EINA_ARG_NONNULL(1);
24773    EINA_DEPRECATED EAPI void         elm_scrolled_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
24774    EINA_DEPRECATED EAPI void         elm_scrolled_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
24775    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1, 2);
24776    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24777    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24778    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
24779    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1, 2);
24780    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24781    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24782    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
24783    EINA_DEPRECATED EAPI void         elm_scrolled_entry_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
24784    EINA_DEPRECATED EAPI void         elm_scrolled_entry_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
24785    EINA_DEPRECATED EAPI void         elm_scrolled_entry_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
24786    EINA_DEPRECATED EAPI void         elm_scrolled_entry_text_filter_append(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data) EINA_ARG_NONNULL(1, 2);
24787    EINA_DEPRECATED EAPI void         elm_scrolled_entry_text_filter_prepend(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data) EINA_ARG_NONNULL(1, 2);
24788    EINA_DEPRECATED EAPI void         elm_scrolled_entry_text_filter_remove(Evas_Object *obj, void (*func) (void *data, Evas_Object *entry, char **text), void *data) EINA_ARG_NONNULL(1, 2);
24789    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
24790    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
24791    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
24792    EINA_DEPRECATED EAPI void         elm_scrolled_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
24793    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24794    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
24795    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cnp_textonly_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
24796
24797    /**
24798     * @defgroup Conformant Conformant
24799     * @ingroup Elementary
24800     *
24801     * @image html img/widget/conformant/preview-00.png
24802     * @image latex img/widget/conformant/preview-00.eps width=\textwidth
24803     *
24804     * @image html img/conformant.png
24805     * @image latex img/conformant.eps width=\textwidth
24806     *
24807     * The aim is to provide a widget that can be used in elementary apps to
24808     * account for space taken up by the indicator, virtual keypad & softkey
24809     * windows when running the illume2 module of E17.
24810     *
24811     * So conformant content will be sized and positioned considering the
24812     * space required for such stuff, and when they popup, as a keyboard
24813     * shows when an entry is selected, conformant content won't change.
24814     *
24815     * Available styles for it:
24816     * - @c "default"
24817     *
24818     * Default contents parts of the conformant widget that you can use for are:
24819     * @li "default" - A content of the conformant
24820     *
24821     * See how to use this widget in this example:
24822     * @ref conformant_example
24823     */
24824
24825    /**
24826     * @addtogroup Conformant
24827     * @{
24828     */
24829
24830    /**
24831     * Add a new conformant widget to the given parent Elementary
24832     * (container) object.
24833     *
24834     * @param parent The parent object.
24835     * @return A new conformant widget handle or @c NULL, on errors.
24836     *
24837     * This function inserts a new conformant widget on the canvas.
24838     *
24839     * @ingroup Conformant
24840     */
24841    EAPI Evas_Object *elm_conformant_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24842
24843    /**
24844     * Set the content of the conformant widget.
24845     *
24846     * @param obj The conformant object.
24847     * @param content The content to be displayed by the conformant.
24848     *
24849     * Content will be sized and positioned considering the space required
24850     * to display a virtual keyboard. So it won't fill all the conformant
24851     * size. This way is possible to be sure that content won't resize
24852     * or be re-positioned after the keyboard is displayed.
24853     *
24854     * Once the content object is set, a previously set one will be deleted.
24855     * If you want to keep that old content object, use the
24856     * elm_object_content_unset() function.
24857     *
24858     * @see elm_object_content_unset()
24859     * @see elm_object_content_get()
24860     *
24861     * @deprecated use elm_object_content_set() instead
24862     *
24863     * @ingroup Conformant
24864     */
24865    EINA_DEPRECATED EAPI void         elm_conformant_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24866
24867    /**
24868     * Get the content of the conformant widget.
24869     *
24870     * @param obj The conformant object.
24871     * @return The content that is being used.
24872     *
24873     * Return the content object which is set for this widget.
24874     * It won't be unparent from conformant. For that, use
24875     * elm_object_content_unset().
24876     *
24877     * @see elm_object_content_set().
24878     * @see elm_object_content_unset()
24879     *
24880     * @deprecated use elm_object_content_get() instead
24881     *
24882     * @ingroup Conformant
24883     */
24884    EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24885
24886    /**
24887     * Unset the content of the conformant widget.
24888     *
24889     * @param obj The conformant object.
24890     * @return The content that was being used.
24891     *
24892     * Unparent and return the content object which was set for this widget.
24893     *
24894     * @see elm_object_content_set().
24895     *
24896     * @deprecated use elm_object_content_unset() instead
24897     *
24898     * @ingroup Conformant
24899     */
24900    EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24901
24902    /**
24903     * Returns the Evas_Object that represents the content area.
24904     *
24905     * @param obj The conformant object.
24906     * @return The content area of the widget.
24907     *
24908     * @ingroup Conformant
24909     */
24910    EAPI Evas_Object *elm_conformant_content_area_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24911
24912    /**
24913     * @}
24914     */
24915
24916    /**
24917     * @defgroup Mapbuf Mapbuf
24918     * @ingroup Elementary
24919     *
24920     * @image html img/widget/mapbuf/preview-00.png
24921     * @image latex img/widget/mapbuf/preview-00.eps width=\textwidth
24922     *
24923     * This holds one content object and uses an Evas Map of transformation
24924     * points to be later used with this content. So the content will be
24925     * moved, resized, etc as a single image. So it will improve performance
24926     * when you have a complex interafce, with a lot of elements, and will
24927     * need to resize or move it frequently (the content object and its
24928     * children).
24929     *
24930     * Default contents parts of the mapbuf widget that you can use for are:
24931     * @li "default" - A content of the mapbuf
24932     *
24933     * To enable map, elm_mapbuf_enabled_set() should be used.
24934     *
24935     * See how to use this widget in this example:
24936     * @ref mapbuf_example
24937     */
24938
24939    /**
24940     * @addtogroup Mapbuf
24941     * @{
24942     */
24943
24944    /**
24945     * Add a new mapbuf widget to the given parent Elementary
24946     * (container) object.
24947     *
24948     * @param parent The parent object.
24949     * @return A new mapbuf widget handle or @c NULL, on errors.
24950     *
24951     * This function inserts a new mapbuf widget on the canvas.
24952     *
24953     * @ingroup Mapbuf
24954     */
24955    EAPI Evas_Object *elm_mapbuf_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24956
24957    /**
24958     * Set the content of the mapbuf.
24959     *
24960     * @param obj The mapbuf object.
24961     * @param content The content that will be filled in this mapbuf object.
24962     *
24963     * Once the content object is set, a previously set one will be deleted.
24964     * If you want to keep that old content object, use the
24965     * elm_mapbuf_content_unset() function.
24966     *
24967     * To enable map, elm_mapbuf_enabled_set() should be used.
24968     *
24969     * @deprecated use elm_object_content_set() instead
24970     *
24971     * @ingroup Mapbuf
24972     */
24973    EINA_DEPRECATED EAPI void         elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24974
24975    /**
24976     * Get the content of the mapbuf.
24977     *
24978     * @param obj The mapbuf object.
24979     * @return The content that is being used.
24980     *
24981     * Return the content object which is set for this widget.
24982     *
24983     * @see elm_mapbuf_content_set() for details.
24984     *
24985     * @deprecated use elm_object_content_get() instead
24986     *
24987     * @ingroup Mapbuf
24988     */
24989    EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24990
24991    /**
24992     * Unset the content of the mapbuf.
24993     *
24994     * @param obj The mapbuf object.
24995     * @return The content that was being used.
24996     *
24997     * Unparent and return the content object which was set for this widget.
24998     *
24999     * @see elm_mapbuf_content_set() for details.
25000     *
25001     * @deprecated use elm_object_content_unset() instead
25002     *
25003     * @ingroup Mapbuf
25004     */
25005    EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
25006
25007    /**
25008     * Enable or disable the map.
25009     *
25010     * @param obj The mapbuf object.
25011     * @param enabled @c EINA_TRUE to enable map or @c EINA_FALSE to disable it.
25012     *
25013     * This enables the map that is set or disables it. On enable, the object
25014     * geometry will be saved, and the new geometry will change (position and
25015     * size) to reflect the map geometry set.
25016     *
25017     * Also, when enabled, alpha and smooth states will be used, so if the
25018     * content isn't solid, alpha should be enabled, for example, otherwise
25019     * a black retangle will fill the content.
25020     *
25021     * When disabled, the stored map will be freed and geometry prior to
25022     * enabling the map will be restored.
25023     *
25024     * It's disabled by default.
25025     *
25026     * @see elm_mapbuf_alpha_set()
25027     * @see elm_mapbuf_smooth_set()
25028     *
25029     * @ingroup Mapbuf
25030     */
25031    EAPI void         elm_mapbuf_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
25032
25033    /**
25034     * Get a value whether map is enabled or not.
25035     *
25036     * @param obj The mapbuf object.
25037     * @return @c EINA_TRUE means map is enabled. @c EINA_FALSE indicates
25038     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25039     *
25040     * @see elm_mapbuf_enabled_set() for details.
25041     *
25042     * @ingroup Mapbuf
25043     */
25044    EAPI Eina_Bool    elm_mapbuf_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25045
25046    /**
25047     * Enable or disable smooth map rendering.
25048     *
25049     * @param obj The mapbuf object.
25050     * @param smooth @c EINA_TRUE to enable smooth map rendering or @c EINA_FALSE
25051     * to disable it.
25052     *
25053     * This sets smoothing for map rendering. If the object is a type that has
25054     * its own smoothing settings, then both the smooth settings for this object
25055     * and the map must be turned off.
25056     *
25057     * By default smooth maps are enabled.
25058     *
25059     * @ingroup Mapbuf
25060     */
25061    EAPI void         elm_mapbuf_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
25062
25063    /**
25064     * Get a value whether smooth map rendering is enabled or not.
25065     *
25066     * @param obj The mapbuf object.
25067     * @return @c EINA_TRUE means smooth map rendering is enabled. @c EINA_FALSE
25068     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25069     *
25070     * @see elm_mapbuf_smooth_set() for details.
25071     *
25072     * @ingroup Mapbuf
25073     */
25074    EAPI Eina_Bool    elm_mapbuf_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25075
25076    /**
25077     * Set or unset alpha flag for map rendering.
25078     *
25079     * @param obj The mapbuf object.
25080     * @param alpha @c EINA_TRUE to enable alpha blending or @c EINA_FALSE
25081     * to disable it.
25082     *
25083     * This sets alpha flag for map rendering. If the object is a type that has
25084     * its own alpha settings, then this will take precedence. Only image objects
25085     * have this currently. It stops alpha blending of the map area, and is
25086     * useful if you know the object and/or all sub-objects is 100% solid.
25087     *
25088     * Alpha is enabled by default.
25089     *
25090     * @ingroup Mapbuf
25091     */
25092    EAPI void         elm_mapbuf_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
25093
25094    /**
25095     * Get a value whether alpha blending is enabled or not.
25096     *
25097     * @param obj The mapbuf object.
25098     * @return @c EINA_TRUE means alpha blending is enabled. @c EINA_FALSE
25099     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25100     *
25101     * @see elm_mapbuf_alpha_set() for details.
25102     *
25103     * @ingroup Mapbuf
25104     */
25105    EAPI Eina_Bool    elm_mapbuf_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25106
25107    /**
25108     * @}
25109     */
25110
25111    /**
25112     * @defgroup Flipselector Flip Selector
25113     *
25114     * @image html img/widget/flipselector/preview-00.png
25115     * @image latex img/widget/flipselector/preview-00.eps
25116     *
25117     * A flip selector is a widget to show a set of @b text items, one
25118     * at a time, with the same sheet switching style as the @ref Clock
25119     * "clock" widget, when one changes the current displaying sheet
25120     * (thus, the "flip" in the name).
25121     *
25122     * User clicks to flip sheets which are @b held for some time will
25123     * make the flip selector to flip continuosly and automatically for
25124     * the user. The interval between flips will keep growing in time,
25125     * so that it helps the user to reach an item which is distant from
25126     * the current selection.
25127     *
25128     * Smart callbacks one can register to:
25129     * - @c "selected" - when the widget's selected text item is changed
25130     * - @c "overflowed" - when the widget's current selection is changed
25131     *   from the first item in its list to the last
25132     * - @c "underflowed" - when the widget's current selection is changed
25133     *   from the last item in its list to the first
25134     *
25135     * Available styles for it:
25136     * - @c "default"
25137     *
25138          * To set/get the label of the flipselector item, you can use
25139          * elm_object_item_text_set/get APIs.
25140          * Once the text is set, a previously set one will be deleted.
25141          *
25142     * Here is an example on its usage:
25143     * @li @ref flipselector_example
25144     */
25145
25146    /**
25147     * @addtogroup Flipselector
25148     * @{
25149     */
25150
25151    /**
25152     * Add a new flip selector widget to the given parent Elementary
25153     * (container) widget
25154     *
25155     * @param parent The parent object
25156     * @return a new flip selector widget handle or @c NULL, on errors
25157     *
25158     * This function inserts a new flip selector widget on the canvas.
25159     *
25160     * @ingroup Flipselector
25161     */
25162    EAPI Evas_Object               *elm_flipselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25163
25164    /**
25165     * Programmatically select the next item of a flip selector widget
25166     *
25167     * @param obj The flipselector object
25168     *
25169     * @note The selection will be animated. Also, if it reaches the
25170     * end of its list of member items, it will continue with the first
25171     * one onwards.
25172     *
25173     * @ingroup Flipselector
25174     */
25175    EAPI void                       elm_flipselector_flip_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
25176
25177    /**
25178     * Programmatically select the previous item of a flip selector
25179     * widget
25180     *
25181     * @param obj The flipselector object
25182     *
25183     * @note The selection will be animated.  Also, if it reaches the
25184     * beginning of its list of member items, it will continue with the
25185     * last one backwards.
25186     *
25187     * @ingroup Flipselector
25188     */
25189    EAPI void                       elm_flipselector_flip_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
25190
25191    /**
25192     * Append a (text) item to a flip selector widget
25193     *
25194     * @param obj The flipselector object
25195     * @param label The (text) label of the new item
25196     * @param func Convenience callback function to take place when
25197     * item is selected
25198     * @param data Data passed to @p func, above
25199     * @return A handle to the item added or @c NULL, on errors
25200     *
25201     * The widget's list of labels to show will be appended with the
25202     * given value. If the user wishes so, a callback function pointer
25203     * can be passed, which will get called when this same item is
25204     * selected.
25205     *
25206     * @note The current selection @b won't be modified by appending an
25207     * element to the list.
25208     *
25209     * @note The maximum length of the text label is going to be
25210     * determined <b>by the widget's theme</b>. Strings larger than
25211     * that value are going to be @b truncated.
25212     *
25213     * @ingroup Flipselector
25214     */
25215    EAPI Elm_Object_Item     *elm_flipselector_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
25216
25217    /**
25218     * Prepend a (text) item to a flip selector widget
25219     *
25220     * @param obj The flipselector object
25221     * @param label The (text) label of the new item
25222     * @param func Convenience callback function to take place when
25223     * item is selected
25224     * @param data Data passed to @p func, above
25225     * @return A handle to the item added or @c NULL, on errors
25226     *
25227     * The widget's list of labels to show will be prepended with the
25228     * given value. If the user wishes so, a callback function pointer
25229     * can be passed, which will get called when this same item is
25230     * selected.
25231     *
25232     * @note The current selection @b won't be modified by prepending
25233     * an element to the list.
25234     *
25235     * @note The maximum length of the text label is going to be
25236     * determined <b>by the widget's theme</b>. Strings larger than
25237     * that value are going to be @b truncated.
25238     *
25239     * @ingroup Flipselector
25240     */
25241    EAPI Elm_Object_Item     *elm_flipselector_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
25242
25243    /**
25244     * Get the internal list of items in a given flip selector widget.
25245     *
25246     * @param obj The flipselector object
25247     * @return The list of items (#Elm_Object_Item as data) or
25248     * @c NULL on errors.
25249     *
25250     * This list is @b not to be modified in any way and must not be
25251     * freed. Use the list members with functions like
25252     * elm_object_item_text_set(),
25253     * elm_object_item_text_get(),
25254     * elm_flipselector_item_del(),
25255     * elm_flipselector_item_selected_get(),
25256     * elm_flipselector_item_selected_set().
25257     *
25258     * @warning This list is only valid until @p obj object's internal
25259     * items list is changed. It should be fetched again with another
25260     * call to this function when changes happen.
25261     *
25262     * @ingroup Flipselector
25263     */
25264    EAPI const Eina_List           *elm_flipselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25265
25266    /**
25267     * Get the first item in the given flip selector widget's list of
25268     * items.
25269     *
25270     * @param obj The flipselector object
25271     * @return The first item or @c NULL, if it has no items (and on
25272     * errors)
25273     *
25274     * @see elm_flipselector_item_append()
25275     * @see elm_flipselector_last_item_get()
25276     *
25277     * @ingroup Flipselector
25278     */
25279    EAPI Elm_Object_Item     *elm_flipselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25280
25281    /**
25282     * Get the last item in the given flip selector widget's list of
25283     * items.
25284     *
25285     * @param obj The flipselector object
25286     * @return The last item or @c NULL, if it has no items (and on
25287     * errors)
25288     *
25289     * @see elm_flipselector_item_prepend()
25290     * @see elm_flipselector_first_item_get()
25291     *
25292     * @ingroup Flipselector
25293     */
25294    EAPI Elm_Object_Item     *elm_flipselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25295
25296    /**
25297     * Get the currently selected item in a flip selector widget.
25298     *
25299     * @param obj The flipselector object
25300     * @return The selected item or @c NULL, if the widget has no items
25301     * (and on erros)
25302     *
25303     * @ingroup Flipselector
25304     */
25305    EAPI Elm_Object_Item     *elm_flipselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25306
25307    /**
25308     * Set whether a given flip selector widget's item should be the
25309     * currently selected one.
25310     *
25311     * @param it The flip selector item
25312     * @param selected @c EINA_TRUE to select it, @c EINA_FALSE to unselect.
25313     *
25314     * This sets whether @p item is or not the selected (thus, under
25315     * display) one. If @p item is different than one under display,
25316     * the latter will be unselected. If the @p item is set to be
25317     * unselected, on the other hand, the @b first item in the widget's
25318     * internal members list will be the new selected one.
25319     *
25320     * @see elm_flipselector_item_selected_get()
25321     *
25322     * @ingroup Flipselector
25323     */
25324    EAPI void                       elm_flipselector_item_selected_set(Elm_Object_Item *it, Eina_Bool selected) EINA_ARG_NONNULL(1);
25325
25326    /**
25327     * Get whether a given flip selector widget's item is the currently
25328     * selected one.
25329     *
25330     * @param it The flip selector item
25331     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
25332     * (or on errors).
25333     *
25334     * @see elm_flipselector_item_selected_set()
25335     *
25336     * @ingroup Flipselector
25337     */
25338    EAPI Eina_Bool                  elm_flipselector_item_selected_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25339
25340    /**
25341     * Delete a given item from a flip selector widget.
25342     *
25343     * @param it The item to delete
25344     *
25345     * @ingroup Flipselector
25346     */
25347    EAPI void                       elm_flipselector_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25348
25349    /**
25350     * Get the label of a given flip selector widget's item.
25351     *
25352     * @param it The item to get label from
25353     * @return The text label of @p item or @c NULL, on errors
25354     *
25355     * @see elm_object_item_text_set()
25356     *
25357     * @deprecated see elm_object_item_text_get() instead
25358     * @ingroup Flipselector
25359     */
25360    EINA_DEPRECATED EAPI const char                *elm_flipselector_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25361
25362    /**
25363     * Set the label of a given flip selector widget's item.
25364     *
25365     * @param it The item to set label on
25366     * @param label The text label string, in UTF-8 encoding
25367     *
25368     * @see elm_object_item_text_get()
25369     *
25370          * @deprecated see elm_object_item_text_set() instead
25371     * @ingroup Flipselector
25372     */
25373    EINA_DEPRECATED EAPI void                       elm_flipselector_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
25374
25375    /**
25376     * Gets the item before @p item in a flip selector widget's
25377     * internal list of items.
25378     *
25379     * @param it The item to fetch previous from
25380     * @return The item before the @p item, in its parent's list. If
25381     *         there is no previous item for @p item or there's an
25382     *         error, @c NULL is returned.
25383     *
25384     * @see elm_flipselector_item_next_get()
25385     *
25386     * @ingroup Flipselector
25387     */
25388    EAPI Elm_Object_Item     *elm_flipselector_item_prev_get(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25389
25390    /**
25391     * Gets the item after @p item in a flip selector widget's
25392     * internal list of items.
25393     *
25394     * @param it The item to fetch next from
25395     * @return The item after the @p item, in its parent's list. If
25396     *         there is no next item for @p item or there's an
25397     *         error, @c NULL is returned.
25398     *
25399     * @see elm_flipselector_item_next_get()
25400     *
25401     * @ingroup Flipselector
25402     */
25403    EAPI Elm_Object_Item     *elm_flipselector_item_next_get(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25404
25405    /**
25406     * Set the interval on time updates for an user mouse button hold
25407     * on a flip selector widget.
25408     *
25409     * @param obj The flip selector object
25410     * @param interval The (first) interval value in seconds
25411     *
25412     * This interval value is @b decreased while the user holds the
25413     * mouse pointer either flipping up or flipping doww a given flip
25414     * selector.
25415     *
25416     * This helps the user to get to a given item distant from the
25417     * current one easier/faster, as it will start to flip quicker and
25418     * quicker on mouse button holds.
25419     *
25420     * The calculation for the next flip interval value, starting from
25421     * the one set with this call, is the previous interval divided by
25422     * 1.05, so it decreases a little bit.
25423     *
25424     * The default starting interval value for automatic flips is
25425     * @b 0.85 seconds.
25426     *
25427     * @see elm_flipselector_interval_get()
25428     *
25429     * @ingroup Flipselector
25430     */
25431    EAPI void                       elm_flipselector_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
25432
25433    /**
25434     * Get the interval on time updates for an user mouse button hold
25435     * on a flip selector widget.
25436     *
25437     * @param obj The flip selector object
25438     * @return The (first) interval value, in seconds, set on it
25439     *
25440     * @see elm_flipselector_interval_set() for more details
25441     *
25442     * @ingroup Flipselector
25443     */
25444    EAPI double                     elm_flipselector_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25445    /**
25446     * @}
25447     */
25448
25449    /**
25450     * @addtogroup Calendar
25451     * @{
25452     */
25453
25454    /**
25455     * @enum _Elm_Calendar_Mark_Repeat
25456     * @typedef Elm_Calendar_Mark_Repeat
25457     *
25458     * Event periodicity, used to define if a mark should be repeated
25459     * @b beyond event's day. It's set when a mark is added.
25460     *
25461     * So, for a mark added to 13th May with periodicity set to WEEKLY,
25462     * there will be marks every week after this date. Marks will be displayed
25463     * at 13th, 20th, 27th, 3rd June ...
25464     *
25465     * Values don't work as bitmask, only one can be choosen.
25466     *
25467     * @see elm_calendar_mark_add()
25468     *
25469     * @ingroup Calendar
25470     */
25471    typedef enum _Elm_Calendar_Mark_Repeat
25472      {
25473         ELM_CALENDAR_UNIQUE, /**< Default value. Marks will be displayed only on event day. */
25474         ELM_CALENDAR_DAILY, /**< Marks will be displayed everyday after event day (inclusive). */
25475         ELM_CALENDAR_WEEKLY, /**< Marks will be displayed every week after event day (inclusive) - i.e. each seven days. */
25476         ELM_CALENDAR_MONTHLY, /**< Marks will be displayed every month day that coincides to event day. E.g.: if an event is set to 30th Jan, no marks will be displayed on Feb, but will be displayed on 30th Mar*/
25477         ELM_CALENDAR_ANNUALLY /**< Marks will be displayed every year that coincides to event day (and month). E.g. an event added to 30th Jan 2012 will be repeated on 30th Jan 2013. */
25478      } Elm_Calendar_Mark_Repeat;
25479
25480    typedef struct _Elm_Calendar_Mark Elm_Calendar_Mark; /**< Item handle for a calendar mark. Created with elm_calendar_mark_add() and deleted with elm_calendar_mark_del(). */
25481
25482    /**
25483     * Add a new calendar widget to the given parent Elementary
25484     * (container) object.
25485     *
25486     * @param parent The parent object.
25487     * @return a new calendar widget handle or @c NULL, on errors.
25488     *
25489     * This function inserts a new calendar widget on the canvas.
25490     *
25491     * @ref calendar_example_01
25492     *
25493     * @ingroup Calendar
25494     */
25495    EAPI Evas_Object       *elm_calendar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25496
25497    /**
25498     * Get weekdays names displayed by the calendar.
25499     *
25500     * @param obj The calendar object.
25501     * @return Array of seven strings to be used as weekday names.
25502     *
25503     * By default, weekdays abbreviations get from system are displayed:
25504     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
25505     * The first string is related to Sunday, the second to Monday...
25506     *
25507     * @see elm_calendar_weekdays_name_set()
25508     *
25509     * @ref calendar_example_05
25510     *
25511     * @ingroup Calendar
25512     */
25513    EAPI const char       **elm_calendar_weekdays_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25514
25515    /**
25516     * Set weekdays names to be displayed by the calendar.
25517     *
25518     * @param obj The calendar object.
25519     * @param weekdays Array of seven strings to be used as weekday names.
25520     * @warning It must have 7 elements, or it will access invalid memory.
25521     * @warning The strings must be NULL terminated ('@\0').
25522     *
25523     * By default, weekdays abbreviations get from system are displayed:
25524     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
25525     *
25526     * The first string should be related to Sunday, the second to Monday...
25527     *
25528     * The usage should be like this:
25529     * @code
25530     *   const char *weekdays[] =
25531     *   {
25532     *      "Sunday", "Monday", "Tuesday", "Wednesday",
25533     *      "Thursday", "Friday", "Saturday"
25534     *   };
25535     *   elm_calendar_weekdays_names_set(calendar, weekdays);
25536     * @endcode
25537     *
25538     * @see elm_calendar_weekdays_name_get()
25539     *
25540     * @ref calendar_example_02
25541     *
25542     * @ingroup Calendar
25543     */
25544    EAPI void               elm_calendar_weekdays_names_set(Evas_Object *obj, const char *weekdays[]) EINA_ARG_NONNULL(1, 2);
25545
25546    /**
25547     * Set the minimum and maximum values for the year
25548     *
25549     * @param obj The calendar object
25550     * @param min The minimum year, greater than 1901;
25551     * @param max The maximum year;
25552     *
25553     * Maximum must be greater than minimum, except if you don't wan't to set
25554     * maximum year.
25555     * Default values are 1902 and -1.
25556     *
25557     * If the maximum year is a negative value, it will be limited depending
25558     * on the platform architecture (year 2037 for 32 bits);
25559     *
25560     * @see elm_calendar_min_max_year_get()
25561     *
25562     * @ref calendar_example_03
25563     *
25564     * @ingroup Calendar
25565     */
25566    EAPI void               elm_calendar_min_max_year_set(Evas_Object *obj, int min, int max) EINA_ARG_NONNULL(1);
25567
25568    /**
25569     * Get the minimum and maximum values for the year
25570     *
25571     * @param obj The calendar object.
25572     * @param min The minimum year.
25573     * @param max The maximum year.
25574     *
25575     * Default values are 1902 and -1.
25576     *
25577     * @see elm_calendar_min_max_year_get() for more details.
25578     *
25579     * @ref calendar_example_05
25580     *
25581     * @ingroup Calendar
25582     */
25583    EAPI void               elm_calendar_min_max_year_get(const Evas_Object *obj, int *min, int *max) EINA_ARG_NONNULL(1);
25584
25585    /**
25586     * Enable or disable day selection
25587     *
25588     * @param obj The calendar object.
25589     * @param enabled @c EINA_TRUE to enable selection or @c EINA_FALSE to
25590     * disable it.
25591     *
25592     * Enabled by default. If disabled, the user still can select months,
25593     * but not days. Selected days are highlighted on calendar.
25594     * It should be used if you won't need such selection for the widget usage.
25595     *
25596     * When a day is selected, or month is changed, smart callbacks for
25597     * signal "changed" will be called.
25598     *
25599     * @see elm_calendar_day_selection_enable_get()
25600     *
25601     * @ref calendar_example_04
25602     *
25603     * @ingroup Calendar
25604     */
25605    EAPI void               elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
25606
25607    /**
25608     * Get a value whether day selection is enabled or not.
25609     *
25610     * @see elm_calendar_day_selection_enable_set() for details.
25611     *
25612     * @param obj The calendar object.
25613     * @return EINA_TRUE means day selection is enabled. EINA_FALSE indicates
25614     * it's disabled. If @p obj is NULL, EINA_FALSE is returned.
25615     *
25616     * @ref calendar_example_05
25617     *
25618     * @ingroup Calendar
25619     */
25620    EAPI Eina_Bool          elm_calendar_day_selection_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25621
25622
25623    /**
25624     * Set selected date to be highlighted on calendar.
25625     *
25626     * @param obj The calendar object.
25627     * @param selected_time A @b tm struct to represent the selected date.
25628     *
25629     * Set the selected date, changing the displayed month if needed.
25630     * Selected date changes when the user goes to next/previous month or
25631     * select a day pressing over it on calendar.
25632     *
25633     * @see elm_calendar_selected_time_get()
25634     *
25635     * @ref calendar_example_04
25636     *
25637     * @ingroup Calendar
25638     */
25639    EAPI void               elm_calendar_selected_time_set(Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1);
25640
25641    /**
25642     * Get selected date.
25643     *
25644     * @param obj The calendar object
25645     * @param selected_time A @b tm struct to point to selected date
25646     * @return EINA_FALSE means an error ocurred and returned time shouldn't
25647     * be considered.
25648     *
25649     * Get date selected by the user or set by function
25650     * elm_calendar_selected_time_set().
25651     * Selected date changes when the user goes to next/previous month or
25652     * select a day pressing over it on calendar.
25653     *
25654     * @see elm_calendar_selected_time_get()
25655     *
25656     * @ref calendar_example_05
25657     *
25658     * @ingroup Calendar
25659     */
25660    EAPI Eina_Bool          elm_calendar_selected_time_get(const Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1, 2);
25661
25662    /**
25663     * Set a function to format the string that will be used to display
25664     * month and year;
25665     *
25666     * @param obj The calendar object
25667     * @param format_function Function to set the month-year string given
25668     * the selected date
25669     *
25670     * By default it uses strftime with "%B %Y" format string.
25671     * It should allocate the memory that will be used by the string,
25672     * that will be freed by the widget after usage.
25673     * A pointer to the string and a pointer to the time struct will be provided.
25674     *
25675     * Example:
25676     * @code
25677     * static char *
25678     * _format_month_year(struct tm *selected_time)
25679     * {
25680     *    char buf[32];
25681     *    if (!strftime(buf, sizeof(buf), "%B %Y", selected_time)) return NULL;
25682     *    return strdup(buf);
25683     * }
25684     *
25685     * elm_calendar_format_function_set(calendar, _format_month_year);
25686     * @endcode
25687     *
25688     * @ref calendar_example_02
25689     *
25690     * @ingroup Calendar
25691     */
25692    EAPI void               elm_calendar_format_function_set(Evas_Object *obj, char * (*format_function) (struct tm *stime)) EINA_ARG_NONNULL(1);
25693
25694    /**
25695     * Add a new mark to the calendar
25696     *
25697     * @param obj The calendar object
25698     * @param mark_type A string used to define the type of mark. It will be
25699     * emitted to the theme, that should display a related modification on these
25700     * days representation.
25701     * @param mark_time A time struct to represent the date of inclusion of the
25702     * mark. For marks that repeats it will just be displayed after the inclusion
25703     * date in the calendar.
25704     * @param repeat Repeat the event following this periodicity. Can be a unique
25705     * mark (that don't repeat), daily, weekly, monthly or annually.
25706     * @return The created mark or @p NULL upon failure.
25707     *
25708     * Add a mark that will be drawn in the calendar respecting the insertion
25709     * time and periodicity. It will emit the type as signal to the widget theme.
25710     * Default theme supports "holiday" and "checked", but it can be extended.
25711     *
25712     * It won't immediately update the calendar, drawing the marks.
25713     * For this, call elm_calendar_marks_draw(). However, when user selects
25714     * next or previous month calendar forces marks drawn.
25715     *
25716     * Marks created with this method can be deleted with
25717     * elm_calendar_mark_del().
25718     *
25719     * Example
25720     * @code
25721     * struct tm selected_time;
25722     * time_t current_time;
25723     *
25724     * current_time = time(NULL) + 5 * 84600;
25725     * localtime_r(&current_time, &selected_time);
25726     * elm_calendar_mark_add(cal, "holiday", selected_time,
25727     *     ELM_CALENDAR_ANNUALLY);
25728     *
25729     * current_time = time(NULL) + 1 * 84600;
25730     * localtime_r(&current_time, &selected_time);
25731     * elm_calendar_mark_add(cal, "checked", selected_time, ELM_CALENDAR_UNIQUE);
25732     *
25733     * elm_calendar_marks_draw(cal);
25734     * @endcode
25735     *
25736     * @see elm_calendar_marks_draw()
25737     * @see elm_calendar_mark_del()
25738     *
25739     * @ref calendar_example_06
25740     *
25741     * @ingroup Calendar
25742     */
25743    EAPI Elm_Calendar_Mark *elm_calendar_mark_add(Evas_Object *obj, const char *mark_type, struct tm *mark_time, Elm_Calendar_Mark_Repeat repeat) EINA_ARG_NONNULL(1);
25744
25745    /**
25746     * Delete mark from the calendar.
25747     *
25748     * @param mark The mark to be deleted.
25749     *
25750     * If deleting all calendar marks is required, elm_calendar_marks_clear()
25751     * should be used instead of getting marks list and deleting each one.
25752     *
25753     * @see elm_calendar_mark_add()
25754     *
25755     * @ref calendar_example_06
25756     *
25757     * @ingroup Calendar
25758     */
25759    EAPI void               elm_calendar_mark_del(Elm_Calendar_Mark *mark) EINA_ARG_NONNULL(1);
25760
25761    /**
25762     * Remove all calendar's marks
25763     *
25764     * @param obj The calendar object.
25765     *
25766     * @see elm_calendar_mark_add()
25767     * @see elm_calendar_mark_del()
25768     *
25769     * @ingroup Calendar
25770     */
25771    EAPI void               elm_calendar_marks_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
25772
25773
25774    /**
25775     * Get a list of all the calendar marks.
25776     *
25777     * @param obj The calendar object.
25778     * @return An @c Eina_List of calendar marks objects, or @c NULL on failure.
25779     *
25780     * @see elm_calendar_mark_add()
25781     * @see elm_calendar_mark_del()
25782     * @see elm_calendar_marks_clear()
25783     *
25784     * @ingroup Calendar
25785     */
25786    EAPI const Eina_List   *elm_calendar_marks_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25787
25788    /**
25789     * Draw calendar marks.
25790     *
25791     * @param obj The calendar object.
25792     *
25793     * Should be used after adding, removing or clearing marks.
25794     * It will go through the entire marks list updating the calendar.
25795     * If lots of marks will be added, add all the marks and then call
25796     * this function.
25797     *
25798     * When the month is changed, i.e. user selects next or previous month,
25799     * marks will be drawed.
25800     *
25801     * @see elm_calendar_mark_add()
25802     * @see elm_calendar_mark_del()
25803     * @see elm_calendar_marks_clear()
25804     *
25805     * @ref calendar_example_06
25806     *
25807     * @ingroup Calendar
25808     */
25809    EAPI void               elm_calendar_marks_draw(Evas_Object *obj) EINA_ARG_NONNULL(1);
25810
25811    /**
25812     * Set a day text color to the same that represents Saturdays.
25813     *
25814     * @param obj The calendar object.
25815     * @param pos The text position. Position is the cell counter, from left
25816     * to right, up to down. It starts on 0 and ends on 41.
25817     *
25818     * @deprecated use elm_calendar_mark_add() instead like:
25819     *
25820     * @code
25821     * struct tm t = { 0, 0, 12, 6, 0, 0, 6, 6, -1 };
25822     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
25823     * @endcode
25824     *
25825     * @see elm_calendar_mark_add()
25826     *
25827     * @ingroup Calendar
25828     */
25829    EINA_DEPRECATED EAPI void               elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25830
25831    /**
25832     * Set a day text color to the same that represents Sundays.
25833     *
25834     * @param obj The calendar object.
25835     * @param pos The text position. Position is the cell counter, from left
25836     * to right, up to down. It starts on 0 and ends on 41.
25837
25838     * @deprecated use elm_calendar_mark_add() instead like:
25839     *
25840     * @code
25841     * struct tm t = { 0, 0, 12, 7, 0, 0, 0, 0, -1 };
25842     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
25843     * @endcode
25844     *
25845     * @see elm_calendar_mark_add()
25846     *
25847     * @ingroup Calendar
25848     */
25849    EINA_DEPRECATED EAPI void               elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25850
25851    /**
25852     * Set a day text color to the same that represents Weekdays.
25853     *
25854     * @param obj The calendar object
25855     * @param pos The text position. Position is the cell counter, from left
25856     * to right, up to down. It starts on 0 and ends on 41.
25857     *
25858     * @deprecated use elm_calendar_mark_add() instead like:
25859     *
25860     * @code
25861     * struct tm t = { 0, 0, 12, 1, 0, 0, 0, 0, -1 };
25862     *
25863     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // monday
25864     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25865     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // tuesday
25866     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25867     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // wednesday
25868     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25869     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // thursday
25870     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25871     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // friday
25872     * @endcode
25873     *
25874     * @see elm_calendar_mark_add()
25875     *
25876     * @ingroup Calendar
25877     */
25878    EINA_DEPRECATED EAPI void               elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25879
25880    /**
25881     * Set the interval on time updates for an user mouse button hold
25882     * on calendar widgets' month selection.
25883     *
25884     * @param obj The calendar object
25885     * @param interval The (first) interval value in seconds
25886     *
25887     * This interval value is @b decreased while the user holds the
25888     * mouse pointer either selecting next or previous month.
25889     *
25890     * This helps the user to get to a given month distant from the
25891     * current one easier/faster, as it will start to change quicker and
25892     * quicker on mouse button holds.
25893     *
25894     * The calculation for the next change interval value, starting from
25895     * the one set with this call, is the previous interval divided by
25896     * 1.05, so it decreases a little bit.
25897     *
25898     * The default starting interval value for automatic changes is
25899     * @b 0.85 seconds.
25900     *
25901     * @see elm_calendar_interval_get()
25902     *
25903     * @ingroup Calendar
25904     */
25905    EAPI void               elm_calendar_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
25906
25907    /**
25908     * Get the interval on time updates for an user mouse button hold
25909     * on calendar widgets' month selection.
25910     *
25911     * @param obj The calendar object
25912     * @return The (first) interval value, in seconds, set on it
25913     *
25914     * @see elm_calendar_interval_set() for more details
25915     *
25916     * @ingroup Calendar
25917     */
25918    EAPI double             elm_calendar_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25919
25920    /**
25921     * @}
25922     */
25923
25924    /**
25925     * @defgroup Diskselector Diskselector
25926     * @ingroup Elementary
25927     *
25928     * @image html img/widget/diskselector/preview-00.png
25929     * @image latex img/widget/diskselector/preview-00.eps
25930     *
25931     * A diskselector is a kind of list widget. It scrolls horizontally,
25932     * and can contain label and icon objects. Three items are displayed
25933     * with the selected one in the middle.
25934     *
25935     * It can act like a circular list with round mode and labels can be
25936     * reduced for a defined length for side items.
25937     *
25938     * Smart callbacks one can listen to:
25939     * - "selected" - when item is selected, i.e. scroller stops.
25940     *
25941     * Available styles for it:
25942     * - @c "default"
25943     *
25944     * List of examples:
25945     * @li @ref diskselector_example_01
25946     * @li @ref diskselector_example_02
25947     */
25948
25949    /**
25950     * @addtogroup Diskselector
25951     * @{
25952     */
25953
25954    typedef struct _Elm_Diskselector_Item Elm_Diskselector_Item; /**< Item handle for a diskselector item. Created with elm_diskselector_item_append() and deleted with elm_diskselector_item_del(). */
25955
25956    /**
25957     * Add a new diskselector widget to the given parent Elementary
25958     * (container) object.
25959     *
25960     * @param parent The parent object.
25961     * @return a new diskselector widget handle or @c NULL, on errors.
25962     *
25963     * This function inserts a new diskselector widget on the canvas.
25964     *
25965     * @ingroup Diskselector
25966     */
25967    EAPI Evas_Object           *elm_diskselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25968
25969    /**
25970     * Enable or disable round mode.
25971     *
25972     * @param obj The diskselector object.
25973     * @param round @c EINA_TRUE to enable round mode or @c EINA_FALSE to
25974     * disable it.
25975     *
25976     * Disabled by default. If round mode is enabled the items list will
25977     * work like a circle list, so when the user reaches the last item,
25978     * the first one will popup.
25979     *
25980     * @see elm_diskselector_round_get()
25981     *
25982     * @ingroup Diskselector
25983     */
25984    EAPI void                   elm_diskselector_round_set(Evas_Object *obj, Eina_Bool round) EINA_ARG_NONNULL(1);
25985
25986    /**
25987     * Get a value whether round mode is enabled or not.
25988     *
25989     * @see elm_diskselector_round_set() for details.
25990     *
25991     * @param obj The diskselector object.
25992     * @return @c EINA_TRUE means round mode is enabled. @c EINA_FALSE indicates
25993     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25994     *
25995     * @ingroup Diskselector
25996     */
25997    EAPI Eina_Bool              elm_diskselector_round_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25998
25999    /**
26000     * Get the side labels max length.
26001     *
26002     * @deprecated use elm_diskselector_side_label_length_get() instead:
26003     *
26004     * @param obj The diskselector object.
26005     * @return The max length defined for side labels, or 0 if not a valid
26006     * diskselector.
26007     *
26008     * @ingroup Diskselector
26009     */
26010    EINA_DEPRECATED EAPI int    elm_diskselector_side_label_lenght_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26011
26012    /**
26013     * Set the side labels max length.
26014     *
26015     * @deprecated use elm_diskselector_side_label_length_set() instead:
26016     *
26017     * @param obj The diskselector object.
26018     * @param len The max length defined for side labels.
26019     *
26020     * @ingroup Diskselector
26021     */
26022    EINA_DEPRECATED EAPI void   elm_diskselector_side_label_lenght_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
26023
26024    /**
26025     * Get the side labels max length.
26026     *
26027     * @see elm_diskselector_side_label_length_set() for details.
26028     *
26029     * @param obj The diskselector object.
26030     * @return The max length defined for side labels, or 0 if not a valid
26031     * diskselector.
26032     *
26033     * @ingroup Diskselector
26034     */
26035    EAPI int                    elm_diskselector_side_label_length_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26036
26037    /**
26038     * Set the side labels max length.
26039     *
26040     * @param obj The diskselector object.
26041     * @param len The max length defined for side labels.
26042     *
26043     * Length is the number of characters of items' label that will be
26044     * visible when it's set on side positions. It will just crop
26045     * the string after defined size. E.g.:
26046     *
26047     * An item with label "January" would be displayed on side position as
26048     * "Jan" if max length is set to 3, or "Janu", if this property
26049     * is set to 4.
26050     *
26051     * When it's selected, the entire label will be displayed, except for
26052     * width restrictions. In this case label will be cropped and "..."
26053     * will be concatenated.
26054     *
26055     * Default side label max length is 3.
26056     *
26057     * This property will be applyed over all items, included before or
26058     * later this function call.
26059     *
26060     * @ingroup Diskselector
26061     */
26062    EAPI void                   elm_diskselector_side_label_length_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
26063
26064    /**
26065     * Set the number of items to be displayed.
26066     *
26067     * @param obj The diskselector object.
26068     * @param num The number of items the diskselector will display.
26069     *
26070     * Default value is 3, and also it's the minimun. If @p num is less
26071     * than 3, it will be set to 3.
26072     *
26073     * Also, it can be set on theme, using data item @c display_item_num
26074     * on group "elm/diskselector/item/X", where X is style set.
26075     * E.g.:
26076     *
26077     * group { name: "elm/diskselector/item/X";
26078     * data {
26079     *     item: "display_item_num" "5";
26080     *     }
26081     *
26082     * @ingroup Diskselector
26083     */
26084    EAPI void                   elm_diskselector_display_item_num_set(Evas_Object *obj, int num) EINA_ARG_NONNULL(1);
26085
26086    /**
26087     * Get the number of items in the diskselector object.
26088     *
26089     * @param obj The diskselector object.
26090     *
26091     * @ingroup Diskselector
26092     */
26093    EAPI int                   elm_diskselector_display_item_num_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26094
26095    /**
26096     * Set bouncing behaviour when the scrolled content reaches an edge.
26097     *
26098     * Tell the internal scroller object whether it should bounce or not
26099     * when it reaches the respective edges for each axis.
26100     *
26101     * @param obj The diskselector object.
26102     * @param h_bounce Whether to bounce or not in the horizontal axis.
26103     * @param v_bounce Whether to bounce or not in the vertical axis.
26104     *
26105     * @see elm_scroller_bounce_set()
26106     *
26107     * @ingroup Diskselector
26108     */
26109    EAPI void                   elm_diskselector_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
26110
26111    /**
26112     * Get the bouncing behaviour of the internal scroller.
26113     *
26114     * Get whether the internal scroller should bounce when the edge of each
26115     * axis is reached scrolling.
26116     *
26117     * @param obj The diskselector object.
26118     * @param h_bounce Pointer where to store the bounce state of the horizontal
26119     * axis.
26120     * @param v_bounce Pointer where to store the bounce state of the vertical
26121     * axis.
26122     *
26123     * @see elm_scroller_bounce_get()
26124     * @see elm_diskselector_bounce_set()
26125     *
26126     * @ingroup Diskselector
26127     */
26128    EAPI void                   elm_diskselector_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
26129
26130    /**
26131     * Get the scrollbar policy.
26132     *
26133     * @see elm_diskselector_scroller_policy_get() for details.
26134     *
26135     * @param obj The diskselector object.
26136     * @param policy_h Pointer where to store horizontal scrollbar policy.
26137     * @param policy_v Pointer where to store vertical scrollbar policy.
26138     *
26139     * @ingroup Diskselector
26140     */
26141    EAPI void                   elm_diskselector_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
26142
26143    /**
26144     * Set the scrollbar policy.
26145     *
26146     * @param obj The diskselector object.
26147     * @param policy_h Horizontal scrollbar policy.
26148     * @param policy_v Vertical scrollbar policy.
26149     *
26150     * This sets the scrollbar visibility policy for the given scroller.
26151     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
26152     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
26153     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
26154     * This applies respectively for the horizontal and vertical scrollbars.
26155     *
26156     * The both are disabled by default, i.e., are set to
26157     * #ELM_SCROLLER_POLICY_OFF.
26158     *
26159     * @ingroup Diskselector
26160     */
26161    EAPI void                   elm_diskselector_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
26162
26163    /**
26164     * Remove all diskselector's items.
26165     *
26166     * @param obj The diskselector object.
26167     *
26168     * @see elm_diskselector_item_del()
26169     * @see elm_diskselector_item_append()
26170     *
26171     * @ingroup Diskselector
26172     */
26173    EAPI void                   elm_diskselector_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
26174
26175    /**
26176     * Get a list of all the diskselector items.
26177     *
26178     * @param obj The diskselector object.
26179     * @return An @c Eina_List of diskselector items, #Elm_Diskselector_Item,
26180     * or @c NULL on failure.
26181     *
26182     * @see elm_diskselector_item_append()
26183     * @see elm_diskselector_item_del()
26184     * @see elm_diskselector_clear()
26185     *
26186     * @ingroup Diskselector
26187     */
26188    EAPI const Eina_List       *elm_diskselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26189
26190    /**
26191     * Appends a new item to the diskselector object.
26192     *
26193     * @param obj The diskselector object.
26194     * @param label The label of the diskselector item.
26195     * @param icon The icon object to use at left side of the item. An
26196     * icon can be any Evas object, but usually it is an icon created
26197     * with elm_icon_add().
26198     * @param func The function to call when the item is selected.
26199     * @param data The data to associate with the item for related callbacks.
26200     *
26201     * @return The created item or @c NULL upon failure.
26202     *
26203     * A new item will be created and appended to the diskselector, i.e., will
26204     * be set as last item. Also, if there is no selected item, it will
26205     * be selected. This will always happens for the first appended item.
26206     *
26207     * If no icon is set, label will be centered on item position, otherwise
26208     * the icon will be placed at left of the label, that will be shifted
26209     * to the right.
26210     *
26211     * Items created with this method can be deleted with
26212     * elm_diskselector_item_del().
26213     *
26214     * Associated @p data can be properly freed when item is deleted if a
26215     * callback function is set with elm_diskselector_item_del_cb_set().
26216     *
26217     * If a function is passed as argument, it will be called everytime this item
26218     * is selected, i.e., the user stops the diskselector with this
26219     * item on center position. If such function isn't needed, just passing
26220     * @c NULL as @p func is enough. The same should be done for @p data.
26221     *
26222     * Simple example (with no function callback or data associated):
26223     * @code
26224     * disk = elm_diskselector_add(win);
26225     * ic = elm_icon_add(win);
26226     * elm_icon_file_set(ic, "path/to/image", NULL);
26227     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
26228     * elm_diskselector_item_append(disk, "label", ic, NULL, NULL);
26229     * @endcode
26230     *
26231     * @see elm_diskselector_item_del()
26232     * @see elm_diskselector_item_del_cb_set()
26233     * @see elm_diskselector_clear()
26234     * @see elm_icon_add()
26235     *
26236     * @ingroup Diskselector
26237     */
26238    EAPI Elm_Diskselector_Item *elm_diskselector_item_append(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
26239
26240
26241    /**
26242     * Delete them item from the diskselector.
26243     *
26244     * @param it The item of diskselector to be deleted.
26245     *
26246     * If deleting all diskselector items is required, elm_diskselector_clear()
26247     * should be used instead of getting items list and deleting each one.
26248     *
26249     * @see elm_diskselector_clear()
26250     * @see elm_diskselector_item_append()
26251     * @see elm_diskselector_item_del_cb_set()
26252     *
26253     * @ingroup Diskselector
26254     */
26255    EAPI void                   elm_diskselector_item_del(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26256
26257    /**
26258     * Set the function called when a diskselector item is freed.
26259     *
26260     * @param it The item to set the callback on
26261     * @param func The function called
26262     *
26263     * If there is a @p func, then it will be called prior item's memory release.
26264     * That will be called with the following arguments:
26265     * @li item's data;
26266     * @li item's Evas object;
26267     * @li item itself;
26268     *
26269     * This way, a data associated to a diskselector item could be properly
26270     * freed.
26271     *
26272     * @ingroup Diskselector
26273     */
26274    EAPI void                   elm_diskselector_item_del_cb_set(Elm_Diskselector_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
26275
26276    /**
26277     * Get the data associated to the item.
26278     *
26279     * @param it The diskselector item
26280     * @return The data associated to @p it
26281     *
26282     * The return value is a pointer to data associated to @p item when it was
26283     * created, with function elm_diskselector_item_append(). If no data
26284     * was passed as argument, it will return @c NULL.
26285     *
26286     * @see elm_diskselector_item_append()
26287     *
26288     * @ingroup Diskselector
26289     */
26290    EAPI void                  *elm_diskselector_item_data_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26291
26292    /**
26293     * Set the icon associated to the item.
26294     *
26295     * @param it The diskselector item
26296     * @param icon The icon object to associate with @p it
26297     *
26298     * The icon object to use at left side of the item. An
26299     * icon can be any Evas object, but usually it is an icon created
26300     * with elm_icon_add().
26301     *
26302     * Once the icon object is set, a previously set one will be deleted.
26303     * @warning Setting the same icon for two items will cause the icon to
26304     * dissapear from the first item.
26305     *
26306     * If an icon was passed as argument on item creation, with function
26307     * elm_diskselector_item_append(), it will be already
26308     * associated to the item.
26309     *
26310     * @see elm_diskselector_item_append()
26311     * @see elm_diskselector_item_icon_get()
26312     *
26313     * @ingroup Diskselector
26314     */
26315    EAPI void                   elm_diskselector_item_icon_set(Elm_Diskselector_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
26316
26317    /**
26318     * Get the icon associated to the item.
26319     *
26320     * @param it The diskselector item
26321     * @return The icon associated to @p it
26322     *
26323     * The return value is a pointer to the icon associated to @p item when it was
26324     * created, with function elm_diskselector_item_append(), or later
26325     * with function elm_diskselector_item_icon_set. If no icon
26326     * was passed as argument, it will return @c NULL.
26327     *
26328     * @see elm_diskselector_item_append()
26329     * @see elm_diskselector_item_icon_set()
26330     *
26331     * @ingroup Diskselector
26332     */
26333    EAPI Evas_Object           *elm_diskselector_item_icon_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26334
26335    /**
26336     * Set the label of item.
26337     *
26338     * @param it The item of diskselector.
26339     * @param label The label of item.
26340     *
26341     * The label to be displayed by the item.
26342     *
26343     * If no icon is set, label will be centered on item position, otherwise
26344     * the icon will be placed at left of the label, that will be shifted
26345     * to the right.
26346     *
26347     * An item with label "January" would be displayed on side position as
26348     * "Jan" if max length is set to 3 with function
26349     * elm_diskselector_side_label_lenght_set(), or "Janu", if this property
26350     * is set to 4.
26351     *
26352     * When this @p item is selected, the entire label will be displayed,
26353     * except for width restrictions.
26354     * In this case label will be cropped and "..." will be concatenated,
26355     * but only for display purposes. It will keep the entire string, so
26356     * if diskselector is resized the remaining characters will be displayed.
26357     *
26358     * If a label was passed as argument on item creation, with function
26359     * elm_diskselector_item_append(), it will be already
26360     * displayed by the item.
26361     *
26362     * @see elm_diskselector_side_label_lenght_set()
26363     * @see elm_diskselector_item_label_get()
26364     * @see elm_diskselector_item_append()
26365     *
26366     * @ingroup Diskselector
26367     */
26368    EAPI void                   elm_diskselector_item_label_set(Elm_Diskselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
26369
26370    /**
26371     * Get the label of item.
26372     *
26373     * @param it The item of diskselector.
26374     * @return The label of item.
26375     *
26376     * The return value is a pointer to the label associated to @p item when it was
26377     * created, with function elm_diskselector_item_append(), or later
26378     * with function elm_diskselector_item_label_set. If no label
26379     * was passed as argument, it will return @c NULL.
26380     *
26381     * @see elm_diskselector_item_label_set() for more details.
26382     * @see elm_diskselector_item_append()
26383     *
26384     * @ingroup Diskselector
26385     */
26386    EAPI const char            *elm_diskselector_item_label_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26387
26388    /**
26389     * Get the selected item.
26390     *
26391     * @param obj The diskselector object.
26392     * @return The selected diskselector item.
26393     *
26394     * The selected item can be unselected with function
26395     * elm_diskselector_item_selected_set(), and the first item of
26396     * diskselector will be selected.
26397     *
26398     * The selected item always will be centered on diskselector, with
26399     * full label displayed, i.e., max lenght set to side labels won't
26400     * apply on the selected item. More details on
26401     * elm_diskselector_side_label_length_set().
26402     *
26403     * @ingroup Diskselector
26404     */
26405    EAPI Elm_Diskselector_Item *elm_diskselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26406
26407    /**
26408     * Set the selected state of an item.
26409     *
26410     * @param it The diskselector item
26411     * @param selected The selected state
26412     *
26413     * This sets the selected state of the given item @p it.
26414     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
26415     *
26416     * If a new item is selected the previosly selected will be unselected.
26417     * Previoulsy selected item can be get with function
26418     * elm_diskselector_selected_item_get().
26419     *
26420     * If the item @p it is unselected, the first item of diskselector will
26421     * be selected.
26422     *
26423     * Selected items will be visible on center position of diskselector.
26424     * So if it was on another position before selected, or was invisible,
26425     * diskselector will animate items until the selected item reaches center
26426     * position.
26427     *
26428     * @see elm_diskselector_item_selected_get()
26429     * @see elm_diskselector_selected_item_get()
26430     *
26431     * @ingroup Diskselector
26432     */
26433    EAPI void                   elm_diskselector_item_selected_set(Elm_Diskselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
26434
26435    /*
26436     * Get whether the @p item is selected or not.
26437     *
26438     * @param it The diskselector item.
26439     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
26440     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
26441     *
26442     * @see elm_diskselector_selected_item_set() for details.
26443     * @see elm_diskselector_item_selected_get()
26444     *
26445     * @ingroup Diskselector
26446     */
26447    EAPI Eina_Bool              elm_diskselector_item_selected_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26448
26449    /**
26450     * Get the first item of the diskselector.
26451     *
26452     * @param obj The diskselector object.
26453     * @return The first item, or @c NULL if none.
26454     *
26455     * The list of items follows append order. So it will return the first
26456     * item appended to the widget that wasn't deleted.
26457     *
26458     * @see elm_diskselector_item_append()
26459     * @see elm_diskselector_items_get()
26460     *
26461     * @ingroup Diskselector
26462     */
26463    EAPI Elm_Diskselector_Item *elm_diskselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26464
26465    /**
26466     * Get the last item of the diskselector.
26467     *
26468     * @param obj The diskselector object.
26469     * @return The last item, or @c NULL if none.
26470     *
26471     * The list of items follows append order. So it will return last first
26472     * item appended to the widget that wasn't deleted.
26473     *
26474     * @see elm_diskselector_item_append()
26475     * @see elm_diskselector_items_get()
26476     *
26477     * @ingroup Diskselector
26478     */
26479    EAPI Elm_Diskselector_Item *elm_diskselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26480
26481    /**
26482     * Get the item before @p item in diskselector.
26483     *
26484     * @param it The diskselector item.
26485     * @return The item before @p item, or @c NULL if none or on failure.
26486     *
26487     * The list of items follows append order. So it will return item appended
26488     * just before @p item and that wasn't deleted.
26489     *
26490     * If it is the first item, @c NULL will be returned.
26491     * First item can be get by elm_diskselector_first_item_get().
26492     *
26493     * @see elm_diskselector_item_append()
26494     * @see elm_diskselector_items_get()
26495     *
26496     * @ingroup Diskselector
26497     */
26498    EAPI Elm_Diskselector_Item *elm_diskselector_item_prev_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26499
26500    /**
26501     * Get the item after @p item in diskselector.
26502     *
26503     * @param it The diskselector item.
26504     * @return The item after @p item, or @c NULL if none or on failure.
26505     *
26506     * The list of items follows append order. So it will return item appended
26507     * just after @p item and that wasn't deleted.
26508     *
26509     * If it is the last item, @c NULL will be returned.
26510     * Last item can be get by elm_diskselector_last_item_get().
26511     *
26512     * @see elm_diskselector_item_append()
26513     * @see elm_diskselector_items_get()
26514     *
26515     * @ingroup Diskselector
26516     */
26517    EAPI Elm_Diskselector_Item *elm_diskselector_item_next_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26518
26519    /**
26520     * Set the text to be shown in the diskselector item.
26521     *
26522     * @param item Target item
26523     * @param text The text to set in the content
26524     *
26525     * Setup the text as tooltip to object. The item can have only one tooltip,
26526     * so any previous tooltip data is removed.
26527     *
26528     * @see elm_object_tooltip_text_set() for more details.
26529     *
26530     * @ingroup Diskselector
26531     */
26532    EAPI void                   elm_diskselector_item_tooltip_text_set(Elm_Diskselector_Item *item, const char *text) EINA_ARG_NONNULL(1);
26533
26534    /**
26535     * Set the content to be shown in the tooltip item.
26536     *
26537     * Setup the tooltip to item. The item can have only one tooltip,
26538     * so any previous tooltip data is removed. @p func(with @p data) will
26539     * be called every time that need show the tooltip and it should
26540     * return a valid Evas_Object. This object is then managed fully by
26541     * tooltip system and is deleted when the tooltip is gone.
26542     *
26543     * @param item the diskselector item being attached a tooltip.
26544     * @param func the function used to create the tooltip contents.
26545     * @param data what to provide to @a func as callback data/context.
26546     * @param del_cb called when data is not needed anymore, either when
26547     *        another callback replaces @p func, the tooltip is unset with
26548     *        elm_diskselector_item_tooltip_unset() or the owner @a item
26549     *        dies. This callback receives as the first parameter the
26550     *        given @a data, and @c event_info is the item.
26551     *
26552     * @see elm_object_tooltip_content_cb_set() for more details.
26553     *
26554     * @ingroup Diskselector
26555     */
26556    EAPI void                   elm_diskselector_item_tooltip_content_cb_set(Elm_Diskselector_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
26557
26558    /**
26559     * Unset tooltip from item.
26560     *
26561     * @param item diskselector item to remove previously set tooltip.
26562     *
26563     * Remove tooltip from item. The callback provided as del_cb to
26564     * elm_diskselector_item_tooltip_content_cb_set() will be called to notify
26565     * it is not used anymore.
26566     *
26567     * @see elm_object_tooltip_unset() for more details.
26568     * @see elm_diskselector_item_tooltip_content_cb_set()
26569     *
26570     * @ingroup Diskselector
26571     */
26572    EAPI void                   elm_diskselector_item_tooltip_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26573
26574
26575    /**
26576     * Sets a different style for this item tooltip.
26577     *
26578     * @note before you set a style you should define a tooltip with
26579     *       elm_diskselector_item_tooltip_content_cb_set() or
26580     *       elm_diskselector_item_tooltip_text_set()
26581     *
26582     * @param item diskselector item with tooltip already set.
26583     * @param style the theme style to use (default, transparent, ...)
26584     *
26585     * @see elm_object_tooltip_style_set() for more details.
26586     *
26587     * @ingroup Diskselector
26588     */
26589    EAPI void                   elm_diskselector_item_tooltip_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
26590
26591    /**
26592     * Get the style for this item tooltip.
26593     *
26594     * @param item diskselector item with tooltip already set.
26595     * @return style the theme style in use, defaults to "default". If the
26596     *         object does not have a tooltip set, then NULL is returned.
26597     *
26598     * @see elm_object_tooltip_style_get() for more details.
26599     * @see elm_diskselector_item_tooltip_style_set()
26600     *
26601     * @ingroup Diskselector
26602     */
26603    EAPI const char            *elm_diskselector_item_tooltip_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26604
26605    /**
26606     * Set the cursor to be shown when mouse is over the diskselector item
26607     *
26608     * @param item Target item
26609     * @param cursor the cursor name to be used.
26610     *
26611     * @see elm_object_cursor_set() for more details.
26612     *
26613     * @ingroup Diskselector
26614     */
26615    EAPI void                   elm_diskselector_item_cursor_set(Elm_Diskselector_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
26616
26617    /**
26618     * Get the cursor to be shown when mouse is over the diskselector item
26619     *
26620     * @param item diskselector item with cursor already set.
26621     * @return the cursor name.
26622     *
26623     * @see elm_object_cursor_get() for more details.
26624     * @see elm_diskselector_cursor_set()
26625     *
26626     * @ingroup Diskselector
26627     */
26628    EAPI const char            *elm_diskselector_item_cursor_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26629
26630
26631    /**
26632     * Unset the cursor to be shown when mouse is over the diskselector item
26633     *
26634     * @param item Target item
26635     *
26636     * @see elm_object_cursor_unset() for more details.
26637     * @see elm_diskselector_cursor_set()
26638     *
26639     * @ingroup Diskselector
26640     */
26641    EAPI void                   elm_diskselector_item_cursor_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26642
26643    /**
26644     * Sets a different style for this item cursor.
26645     *
26646     * @note before you set a style you should define a cursor with
26647     *       elm_diskselector_item_cursor_set()
26648     *
26649     * @param item diskselector item with cursor already set.
26650     * @param style the theme style to use (default, transparent, ...)
26651     *
26652     * @see elm_object_cursor_style_set() for more details.
26653     *
26654     * @ingroup Diskselector
26655     */
26656    EAPI void                   elm_diskselector_item_cursor_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
26657
26658
26659    /**
26660     * Get the style for this item cursor.
26661     *
26662     * @param item diskselector item with cursor already set.
26663     * @return style the theme style in use, defaults to "default". If the
26664     *         object does not have a cursor set, then @c NULL is returned.
26665     *
26666     * @see elm_object_cursor_style_get() for more details.
26667     * @see elm_diskselector_item_cursor_style_set()
26668     *
26669     * @ingroup Diskselector
26670     */
26671    EAPI const char            *elm_diskselector_item_cursor_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26672
26673
26674    /**
26675     * Set if the cursor set should be searched on the theme or should use
26676     * the provided by the engine, only.
26677     *
26678     * @note before you set if should look on theme you should define a cursor
26679     * with elm_diskselector_item_cursor_set().
26680     * By default it will only look for cursors provided by the engine.
26681     *
26682     * @param item widget item with cursor already set.
26683     * @param engine_only boolean to define if cursors set with
26684     * elm_diskselector_item_cursor_set() should be searched only
26685     * between cursors provided by the engine or searched on widget's
26686     * theme as well.
26687     *
26688     * @see elm_object_cursor_engine_only_set() for more details.
26689     *
26690     * @ingroup Diskselector
26691     */
26692    EAPI void                   elm_diskselector_item_cursor_engine_only_set(Elm_Diskselector_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
26693
26694    /**
26695     * Get the cursor engine only usage for this item cursor.
26696     *
26697     * @param item widget item with cursor already set.
26698     * @return engine_only boolean to define it cursors should be looked only
26699     * between the provided by the engine or searched on widget's theme as well.
26700     * If the item does not have a cursor set, then @c EINA_FALSE is returned.
26701     *
26702     * @see elm_object_cursor_engine_only_get() for more details.
26703     * @see elm_diskselector_item_cursor_engine_only_set()
26704     *
26705     * @ingroup Diskselector
26706     */
26707    EAPI Eina_Bool              elm_diskselector_item_cursor_engine_only_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26708
26709    /**
26710     * @}
26711     */
26712
26713    /**
26714     * @defgroup Colorselector Colorselector
26715     *
26716     * @{
26717     *
26718     * @image html img/widget/colorselector/preview-00.png
26719     * @image latex img/widget/colorselector/preview-00.eps
26720     *
26721     * @brief Widget for user to select a color.
26722     *
26723     * Signals that you can add callbacks for are:
26724     * "changed" - When the color value changes(event_info is NULL).
26725     *
26726     * See @ref tutorial_colorselector.
26727     */
26728    /**
26729     * @brief Add a new colorselector to the parent
26730     *
26731     * @param parent The parent object
26732     * @return The new object or NULL if it cannot be created
26733     *
26734     * @ingroup Colorselector
26735     */
26736    EAPI Evas_Object *elm_colorselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26737    /**
26738     * Set a color for the colorselector
26739     *
26740     * @param obj   Colorselector object
26741     * @param r     r-value of color
26742     * @param g     g-value of color
26743     * @param b     b-value of color
26744     * @param a     a-value of color
26745     *
26746     * @ingroup Colorselector
26747     */
26748    EAPI void         elm_colorselector_color_set(Evas_Object *obj, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
26749    /**
26750     * Get a color from the colorselector
26751     *
26752     * @param obj   Colorselector object
26753     * @param r     integer pointer for r-value of color
26754     * @param g     integer pointer for g-value of color
26755     * @param b     integer pointer for b-value of color
26756     * @param a     integer pointer for a-value of color
26757     *
26758     * @ingroup Colorselector
26759     */
26760    EAPI void         elm_colorselector_color_get(const Evas_Object *obj, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
26761    /**
26762     * @}
26763     */
26764
26765    /**
26766     * @defgroup Ctxpopup Ctxpopup
26767     *
26768     * @image html img/widget/ctxpopup/preview-00.png
26769     * @image latex img/widget/ctxpopup/preview-00.eps
26770     *
26771     * @brief Context popup widet.
26772     *
26773     * A ctxpopup is a widget that, when shown, pops up a list of items.
26774     * It automatically chooses an area inside its parent object's view
26775     * (set via elm_ctxpopup_add() and elm_ctxpopup_hover_parent_set()) to
26776     * optimally fit into it. In the default theme, it will also point an
26777     * arrow to it's top left position at the time one shows it. Ctxpopup
26778     * items have a label and/or an icon. It is intended for a small
26779     * number of items (hence the use of list, not genlist).
26780     *
26781     * @note Ctxpopup is a especialization of @ref Hover.
26782     *
26783     * Signals that you can add callbacks for are:
26784     * "dismissed" - the ctxpopup was dismissed
26785     *
26786     * Default contents parts of the ctxpopup widget that you can use for are:
26787     * @li "default" - A content of the ctxpopup
26788     *
26789     * Default contents parts of the naviframe items that you can use for are:
26790     * @li "icon" - An icon in the title area
26791     *
26792     * Default text parts of the naviframe items that you can use for are:
26793     * @li "default" - Title label in the title area
26794     *
26795     * @ref tutorial_ctxpopup shows the usage of a good deal of the API.
26796     * @{
26797     */
26798    typedef enum _Elm_Ctxpopup_Direction
26799      {
26800         ELM_CTXPOPUP_DIRECTION_DOWN, /**< ctxpopup show appear below clicked
26801                                           area */
26802         ELM_CTXPOPUP_DIRECTION_RIGHT, /**< ctxpopup show appear to the right of
26803                                            the clicked area */
26804         ELM_CTXPOPUP_DIRECTION_LEFT, /**< ctxpopup show appear to the left of
26805                                           the clicked area */
26806         ELM_CTXPOPUP_DIRECTION_UP, /**< ctxpopup show appear above the clicked
26807                                         area */
26808         ELM_CTXPOPUP_DIRECTION_UNKNOWN, /**< ctxpopup does not determine it's direction yet*/
26809      } Elm_Ctxpopup_Direction;
26810
26811    /**
26812     * @brief Add a new Ctxpopup object to the parent.
26813     *
26814     * @param parent Parent object
26815     * @return New object or @c NULL, if it cannot be created
26816     */
26817    EAPI Evas_Object  *elm_ctxpopup_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26818    /**
26819     * @brief Set the Ctxpopup's parent
26820     *
26821     * @param obj The ctxpopup object
26822     * @param area The parent to use
26823     *
26824     * Set the parent object.
26825     *
26826     * @note elm_ctxpopup_add() will automatically call this function
26827     * with its @c parent argument.
26828     *
26829     * @see elm_ctxpopup_add()
26830     * @see elm_hover_parent_set()
26831     */
26832    EAPI void          elm_ctxpopup_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1, 2);
26833    /**
26834     * @brief Get the Ctxpopup's parent
26835     *
26836     * @param obj The ctxpopup object
26837     *
26838     * @see elm_ctxpopup_hover_parent_set() for more information
26839     */
26840    EAPI Evas_Object  *elm_ctxpopup_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26841    /**
26842     * @brief Clear all items in the given ctxpopup object.
26843     *
26844     * @param obj Ctxpopup object
26845     */
26846    EAPI void          elm_ctxpopup_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
26847    /**
26848     * @brief Change the ctxpopup's orientation to horizontal or vertical.
26849     *
26850     * @param obj Ctxpopup object
26851     * @param horizontal @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical
26852     */
26853    EAPI void          elm_ctxpopup_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
26854    /**
26855     * @brief Get the value of current ctxpopup object's orientation.
26856     *
26857     * @param obj Ctxpopup object
26858     * @return @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical mode (or errors)
26859     *
26860     * @see elm_ctxpopup_horizontal_set()
26861     */
26862    EAPI Eina_Bool     elm_ctxpopup_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26863    /**
26864     * @brief Add a new item to a ctxpopup object.
26865     *
26866     * @param obj Ctxpopup object
26867     * @param icon Icon to be set on new item
26868     * @param label The Label of the new item
26869     * @param func Convenience function called when item selected
26870     * @param data Data passed to @p func
26871     * @return A handle to the item added or @c NULL, on errors
26872     *
26873     * @warning Ctxpopup can't hold both an item list and a content at the same
26874     * time. When an item is added, any previous content will be removed.
26875     *
26876     * @see elm_ctxpopup_content_set()
26877     */
26878    Elm_Object_Item *elm_ctxpopup_item_append(Evas_Object *obj, const char *label, Evas_Object *icon, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
26879    /**
26880     * @brief Delete the given item in a ctxpopup object.
26881     *
26882     * @param it Ctxpopup item to be deleted
26883     *
26884     * @see elm_ctxpopup_item_append()
26885     */
26886    EAPI void          elm_ctxpopup_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26887    /**
26888     * @brief Set the ctxpopup item's state as disabled or enabled.
26889     *
26890     * @param it Ctxpopup item to be enabled/disabled
26891     * @param disabled @c EINA_TRUE to disable it, @c EINA_FALSE to enable it
26892     *
26893     * When disabled the item is greyed out to indicate it's state.
26894     * @deprecated use elm_object_item_disabled_set() instead
26895     */
26896    EINA_DEPRECATED EAPI void          elm_ctxpopup_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
26897    /**
26898     * @brief Get the ctxpopup item's disabled/enabled state.
26899     *
26900     * @param it Ctxpopup item to be enabled/disabled
26901     * @return disabled @c EINA_TRUE, if disabled, @c EINA_FALSE otherwise
26902     *
26903     * @see elm_ctxpopup_item_disabled_set()
26904     * @deprecated use elm_object_item_disabled_get() instead
26905     */
26906    EAPI Eina_Bool     elm_ctxpopup_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26907    /**
26908     * @brief Get the icon object for the given ctxpopup item.
26909     *
26910     * @param it Ctxpopup item
26911     * @return icon object or @c NULL, if the item does not have icon or an error
26912     * occurred
26913     *
26914     * @see elm_ctxpopup_item_append()
26915     * @see elm_ctxpopup_item_icon_set()
26916     *
26917     * @deprecated use elm_object_item_part_content_get() instead
26918     */
26919    EINA_DEPRECATED EAPI Evas_Object  *elm_ctxpopup_item_icon_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26920    /**
26921     * @brief Sets the side icon associated with the ctxpopup item
26922     *
26923     * @param it Ctxpopup item
26924     * @param icon Icon object to be set
26925     *
26926     * Once the icon object is set, a previously set one will be deleted.
26927     * @warning Setting the same icon for two items will cause the icon to
26928     * dissapear from the first item.
26929     *
26930     * @see elm_ctxpopup_item_append()
26931     *
26932     * @deprecated use elm_object_item_part_content_set() instead
26933     *
26934     */
26935    EINA_DEPRECATED EAPI void          elm_ctxpopup_item_icon_set(Elm_Object_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
26936    /**
26937     * @brief Get the label for the given ctxpopup item.
26938     *
26939     * @param it Ctxpopup item
26940     * @return label string or @c NULL, if the item does not have label or an
26941     * error occured
26942     *
26943     * @see elm_ctxpopup_item_append()
26944     * @see elm_ctxpopup_item_label_set()
26945     *
26946     * @deprecated use elm_object_item_text_get() instead
26947     */
26948    EINA_DEPRECATED EAPI const char   *elm_ctxpopup_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26949    /**
26950     * @brief (Re)set the label on the given ctxpopup item.
26951     *
26952     * @param it Ctxpopup item
26953     * @param label String to set as label
26954     *
26955     * @deprecated use elm_object_item_text_set() instead
26956     */
26957    EINA_DEPRECATED EAPI void          elm_ctxpopup_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
26958    /**
26959     * @brief Set an elm widget as the content of the ctxpopup.
26960     *
26961     * @param obj Ctxpopup object
26962     * @param content Content to be swallowed
26963     *
26964     * If the content object is already set, a previous one will bedeleted. If
26965     * you want to keep that old content object, use the
26966     * elm_ctxpopup_content_unset() function.
26967     *
26968     * @warning Ctxpopup can't hold both a item list and a content at the same
26969     * time. When a content is set, any previous items will be removed.
26970     *
26971     * @deprecated use elm_object_content_set() instead
26972     *
26973     */
26974    EINA_DEPRECATED EAPI void          elm_ctxpopup_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1, 2);
26975    /**
26976     * @brief Unset the ctxpopup content
26977     *
26978     * @param obj Ctxpopup object
26979     * @return The content that was being used
26980     *
26981     * Unparent and return the content object which was set for this widget.
26982     *
26983     * @deprecated use elm_object_content_unset()
26984     *
26985     * @see elm_ctxpopup_content_set()
26986     *
26987     * @deprecated use elm_object_content_unset() instead
26988     *
26989     */
26990    EINA_DEPRECATED EAPI Evas_Object  *elm_ctxpopup_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
26991    /**
26992     * @brief Set the direction priority of a ctxpopup.
26993     *
26994     * @param obj Ctxpopup object
26995     * @param first 1st priority of direction
26996     * @param second 2nd priority of direction
26997     * @param third 3th priority of direction
26998     * @param fourth 4th priority of direction
26999     *
27000     * This functions gives a chance to user to set the priority of ctxpopup
27001     * showing direction. This doesn't guarantee the ctxpopup will appear in the
27002     * requested direction.
27003     *
27004     * @see Elm_Ctxpopup_Direction
27005     */
27006    EAPI void          elm_ctxpopup_direction_priority_set(Evas_Object *obj, Elm_Ctxpopup_Direction first, Elm_Ctxpopup_Direction second, Elm_Ctxpopup_Direction third, Elm_Ctxpopup_Direction fourth) EINA_ARG_NONNULL(1);
27007    /**
27008     * @brief Get the direction priority of a ctxpopup.
27009     *
27010     * @param obj Ctxpopup object
27011     * @param first 1st priority of direction to be returned
27012     * @param second 2nd priority of direction to be returned
27013     * @param third 3th priority of direction to be returned
27014     * @param fourth 4th priority of direction to be returned
27015     *
27016     * @see elm_ctxpopup_direction_priority_set() for more information.
27017     */
27018    EAPI void          elm_ctxpopup_direction_priority_get(Evas_Object *obj, Elm_Ctxpopup_Direction *first, Elm_Ctxpopup_Direction *second, Elm_Ctxpopup_Direction *third, Elm_Ctxpopup_Direction *fourth) EINA_ARG_NONNULL(1);
27019
27020    /**
27021     * @brief Get the current direction of a ctxpopup.
27022     *
27023     * @param obj Ctxpopup object
27024     * @return current direction of a ctxpopup
27025     *
27026     * @warning Once the ctxpopup showed up, the direction would be determined
27027     */
27028    EAPI Elm_Ctxpopup_Direction elm_ctxpopup_direction_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
27029
27030    /**
27031     * @}
27032     */
27033
27034    /* transit */
27035    /**
27036     *
27037     * @defgroup Transit Transit
27038     * @ingroup Elementary
27039     *
27040     * Transit is designed to apply various animated transition effects to @c
27041     * Evas_Object, such like translation, rotation, etc. For using these
27042     * effects, create an @ref Elm_Transit and add the desired transition effects.
27043     *
27044     * Once the effects are added into transit, they will be automatically
27045     * managed (their callback will be called until the duration is ended, and
27046     * they will be deleted on completion).
27047     *
27048     * Example:
27049     * @code
27050     * Elm_Transit *trans = elm_transit_add();
27051     * elm_transit_object_add(trans, obj);
27052     * elm_transit_effect_translation_add(trans, 0, 0, 280, 280
27053     * elm_transit_duration_set(transit, 1);
27054     * elm_transit_auto_reverse_set(transit, EINA_TRUE);
27055     * elm_transit_tween_mode_set(transit, ELM_TRANSIT_TWEEN_MODE_DECELERATE);
27056     * elm_transit_repeat_times_set(transit, 3);
27057     * @endcode
27058     *
27059     * Some transition effects are used to change the properties of objects. They
27060     * are:
27061     * @li @ref elm_transit_effect_translation_add
27062     * @li @ref elm_transit_effect_color_add
27063     * @li @ref elm_transit_effect_rotation_add
27064     * @li @ref elm_transit_effect_wipe_add
27065     * @li @ref elm_transit_effect_zoom_add
27066     * @li @ref elm_transit_effect_resizing_add
27067     *
27068     * Other transition effects are used to make one object disappear and another
27069     * object appear on its old place. These effects are:
27070     *
27071     * @li @ref elm_transit_effect_flip_add
27072     * @li @ref elm_transit_effect_resizable_flip_add
27073     * @li @ref elm_transit_effect_fade_add
27074     * @li @ref elm_transit_effect_blend_add
27075     *
27076     * It's also possible to make a transition chain with @ref
27077     * elm_transit_chain_transit_add.
27078     *
27079     * @warning We strongly recommend to use elm_transit just when edje can not do
27080     * the trick. Edje has more advantage than Elm_Transit, it has more flexibility and
27081     * animations can be manipulated inside the theme.
27082     *
27083     * List of examples:
27084     * @li @ref transit_example_01_explained
27085     * @li @ref transit_example_02_explained
27086     * @li @ref transit_example_03_c
27087     * @li @ref transit_example_04_c
27088     *
27089     * @{
27090     */
27091
27092    /**
27093     * @enum Elm_Transit_Tween_Mode
27094     *
27095     * The type of acceleration used in the transition.
27096     */
27097    typedef enum
27098      {
27099         ELM_TRANSIT_TWEEN_MODE_LINEAR, /**< Constant speed */
27100         ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL, /**< Starts slow, increase speed
27101                                              over time, then decrease again
27102                                              and stop slowly */
27103         ELM_TRANSIT_TWEEN_MODE_DECELERATE, /**< Starts fast and decrease
27104                                              speed over time */
27105         ELM_TRANSIT_TWEEN_MODE_ACCELERATE /**< Starts slow and increase speed
27106                                             over time */
27107      } Elm_Transit_Tween_Mode;
27108
27109    /**
27110     * @enum Elm_Transit_Effect_Flip_Axis
27111     *
27112     * The axis where flip effect should be applied.
27113     */
27114    typedef enum
27115      {
27116         ELM_TRANSIT_EFFECT_FLIP_AXIS_X, /**< Flip on X axis */
27117         ELM_TRANSIT_EFFECT_FLIP_AXIS_Y /**< Flip on Y axis */
27118      } Elm_Transit_Effect_Flip_Axis;
27119    /**
27120     * @enum Elm_Transit_Effect_Wipe_Dir
27121     *
27122     * The direction where the wipe effect should occur.
27123     */
27124    typedef enum
27125      {
27126         ELM_TRANSIT_EFFECT_WIPE_DIR_LEFT, /**< Wipe to the left */
27127         ELM_TRANSIT_EFFECT_WIPE_DIR_RIGHT, /**< Wipe to the right */
27128         ELM_TRANSIT_EFFECT_WIPE_DIR_UP, /**< Wipe up */
27129         ELM_TRANSIT_EFFECT_WIPE_DIR_DOWN /**< Wipe down */
27130      } Elm_Transit_Effect_Wipe_Dir;
27131    /** @enum Elm_Transit_Effect_Wipe_Type
27132     *
27133     * Whether the wipe effect should show or hide the object.
27134     */
27135    typedef enum
27136      {
27137         ELM_TRANSIT_EFFECT_WIPE_TYPE_HIDE, /**< Hide the object during the
27138                                              animation */
27139         ELM_TRANSIT_EFFECT_WIPE_TYPE_SHOW /**< Show the object during the
27140                                             animation */
27141      } Elm_Transit_Effect_Wipe_Type;
27142
27143    /**
27144     * @typedef Elm_Transit
27145     *
27146     * The Transit created with elm_transit_add(). This type has the information
27147     * about the objects which the transition will be applied, and the
27148     * transition effects that will be used. It also contains info about
27149     * duration, number of repetitions, auto-reverse, etc.
27150     */
27151    typedef struct _Elm_Transit Elm_Transit;
27152    typedef void Elm_Transit_Effect;
27153    /**
27154     * @typedef Elm_Transit_Effect_Transition_Cb
27155     *
27156     * Transition callback called for this effect on each transition iteration.
27157     */
27158    typedef void (*Elm_Transit_Effect_Transition_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit, double progress);
27159    /**
27160     * Elm_Transit_Effect_End_Cb
27161     *
27162     * Transition callback called for this effect when the transition is over.
27163     */
27164    typedef void (*Elm_Transit_Effect_End_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit);
27165
27166    /**
27167     * Elm_Transit_Del_Cb
27168     *
27169     * A callback called when the transit is deleted.
27170     */
27171    typedef void (*Elm_Transit_Del_Cb) (void *data, Elm_Transit *transit);
27172
27173    /**
27174     * Add new transit.
27175     *
27176     * @note Is not necessary to delete the transit object, it will be deleted at
27177     * the end of its operation.
27178     * @note The transit will start playing when the program enter in the main loop, is not
27179     * necessary to give a start to the transit.
27180     *
27181     * @return The transit object.
27182     *
27183     * @ingroup Transit
27184     */
27185    EAPI Elm_Transit                *elm_transit_add(void);
27186
27187    /**
27188     * Stops the animation and delete the @p transit object.
27189     *
27190     * Call this function if you wants to stop the animation before the duration
27191     * time. Make sure the @p transit object is still alive with
27192     * elm_transit_del_cb_set() function.
27193     * All added effects will be deleted, calling its repective data_free_cb
27194     * functions. The function setted by elm_transit_del_cb_set() will be called.
27195     *
27196     * @see elm_transit_del_cb_set()
27197     *
27198     * @param transit The transit object to be deleted.
27199     *
27200     * @ingroup Transit
27201     * @warning Just call this function if you are sure the transit is alive.
27202     */
27203    EAPI void                        elm_transit_del(Elm_Transit *transit) EINA_ARG_NONNULL(1);
27204
27205    /**
27206     * Add a new effect to the transit.
27207     *
27208     * @note The cb function and the data are the key to the effect. If you try to
27209     * add an already added effect, nothing is done.
27210     * @note After the first addition of an effect in @p transit, if its
27211     * effect list become empty again, the @p transit will be killed by
27212     * elm_transit_del(transit) function.
27213     *
27214     * Exemple:
27215     * @code
27216     * Elm_Transit *transit = elm_transit_add();
27217     * elm_transit_effect_add(transit,
27218     *                        elm_transit_effect_blend_op,
27219     *                        elm_transit_effect_blend_context_new(),
27220     *                        elm_transit_effect_blend_context_free);
27221     * @endcode
27222     *
27223     * @param transit The transit object.
27224     * @param transition_cb The operation function. It is called when the
27225     * animation begins, it is the function that actually performs the animation.
27226     * It is called with the @p data, @p transit and the time progression of the
27227     * animation (a double value between 0.0 and 1.0).
27228     * @param effect The context data of the effect.
27229     * @param end_cb The function to free the context data, it will be called
27230     * at the end of the effect, it must finalize the animation and free the
27231     * @p data.
27232     *
27233     * @ingroup Transit
27234     * @warning The transit free the context data at the and of the transition with
27235     * the data_free_cb function, do not use the context data in another transit.
27236     */
27237    EAPI void                        elm_transit_effect_add(Elm_Transit *transit, Elm_Transit_Effect_Transition_Cb transition_cb, Elm_Transit_Effect *effect, Elm_Transit_Effect_End_Cb end_cb) EINA_ARG_NONNULL(1, 2);
27238
27239    /**
27240     * Delete an added effect.
27241     *
27242     * This function will remove the effect from the @p transit, calling the
27243     * data_free_cb to free the @p data.
27244     *
27245     * @see elm_transit_effect_add()
27246     *
27247     * @note If the effect is not found, nothing is done.
27248     * @note If the effect list become empty, this function will call
27249     * elm_transit_del(transit), that is, it will kill the @p transit.
27250     *
27251     * @param transit The transit object.
27252     * @param transition_cb The operation function.
27253     * @param effect The context data of the effect.
27254     *
27255     * @ingroup Transit
27256     */
27257    EAPI void                        elm_transit_effect_del(Elm_Transit *transit, Elm_Transit_Effect_Transition_Cb transition_cb, Elm_Transit_Effect *effect) EINA_ARG_NONNULL(1, 2);
27258
27259    /**
27260     * Add new object to apply the effects.
27261     *
27262     * @note After the first addition of an object in @p transit, if its
27263     * object list become empty again, the @p transit will be killed by
27264     * elm_transit_del(transit) function.
27265     * @note If the @p obj belongs to another transit, the @p obj will be
27266     * removed from it and it will only belong to the @p transit. If the old
27267     * transit stays without objects, it will die.
27268     * @note When you add an object into the @p transit, its state from
27269     * evas_object_pass_events_get(obj) is saved, and it is applied when the
27270     * transit ends, if you change this state whith evas_object_pass_events_set()
27271     * after add the object, this state will change again when @p transit stops to
27272     * run.
27273     *
27274     * @param transit The transit object.
27275     * @param obj Object to be animated.
27276     *
27277     * @ingroup Transit
27278     * @warning It is not allowed to add a new object after transit begins to go.
27279     */
27280    EAPI void                        elm_transit_object_add(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
27281
27282    /**
27283     * Removes an added object from the transit.
27284     *
27285     * @note If the @p obj is not in the @p transit, nothing is done.
27286     * @note If the list become empty, this function will call
27287     * elm_transit_del(transit), that is, it will kill the @p transit.
27288     *
27289     * @param transit The transit object.
27290     * @param obj Object to be removed from @p transit.
27291     *
27292     * @ingroup Transit
27293     * @warning It is not allowed to remove objects after transit begins to go.
27294     */
27295    EAPI void                        elm_transit_object_remove(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
27296
27297    /**
27298     * Get the objects of the transit.
27299     *
27300     * @param transit The transit object.
27301     * @return a Eina_List with the objects from the transit.
27302     *
27303     * @ingroup Transit
27304     */
27305    EAPI const Eina_List            *elm_transit_objects_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27306
27307    /**
27308     * Enable/disable keeping up the objects states.
27309     * If it is not kept, the objects states will be reset when transition ends.
27310     *
27311     * @note @p transit can not be NULL.
27312     * @note One state includes geometry, color, map data.
27313     *
27314     * @param transit The transit object.
27315     * @param state_keep Keeping or Non Keeping.
27316     *
27317     * @ingroup Transit
27318     */
27319    EAPI void                        elm_transit_objects_final_state_keep_set(Elm_Transit *transit, Eina_Bool state_keep) EINA_ARG_NONNULL(1);
27320
27321    /**
27322     * Get a value whether the objects states will be reset or not.
27323     *
27324     * @note @p transit can not be NULL
27325     *
27326     * @see elm_transit_objects_final_state_keep_set()
27327     *
27328     * @param transit The transit object.
27329     * @return EINA_TRUE means the states of the objects will be reset.
27330     * If @p transit is NULL, EINA_FALSE is returned
27331     *
27332     * @ingroup Transit
27333     */
27334    EAPI Eina_Bool                   elm_transit_objects_final_state_keep_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27335
27336    /**
27337     * Set the event enabled when transit is operating.
27338     *
27339     * If @p enabled is EINA_TRUE, the objects of the transit will receives
27340     * events from mouse and keyboard during the animation.
27341     * @note When you add an object with elm_transit_object_add(), its state from
27342     * evas_object_pass_events_get(obj) is saved, and it is applied when the
27343     * transit ends, if you change this state with evas_object_pass_events_set()
27344     * after adding the object, this state will change again when @p transit stops
27345     * to run.
27346     *
27347     * @param transit The transit object.
27348     * @param enabled Events are received when enabled is @c EINA_TRUE, and
27349     * ignored otherwise.
27350     *
27351     * @ingroup Transit
27352     */
27353    EAPI void                        elm_transit_event_enabled_set(Elm_Transit *transit, Eina_Bool enabled) EINA_ARG_NONNULL(1);
27354
27355    /**
27356     * Get the value of event enabled status.
27357     *
27358     * @see elm_transit_event_enabled_set()
27359     *
27360     * @param transit The Transit object
27361     * @return EINA_TRUE, when event is enabled. If @p transit is NULL
27362     * EINA_FALSE is returned
27363     *
27364     * @ingroup Transit
27365     */
27366    EAPI Eina_Bool                   elm_transit_event_enabled_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27367
27368    /**
27369     * Set the user-callback function when the transit is deleted.
27370     *
27371     * @note Using this function twice will overwrite the first function setted.
27372     * @note the @p transit object will be deleted after call @p cb function.
27373     *
27374     * @param transit The transit object.
27375     * @param cb Callback function pointer. This function will be called before
27376     * the deletion of the transit.
27377     * @param data Callback funtion user data. It is the @p op parameter.
27378     *
27379     * @ingroup Transit
27380     */
27381    EAPI void                        elm_transit_del_cb_set(Elm_Transit *transit, Elm_Transit_Del_Cb cb, void *data) EINA_ARG_NONNULL(1);
27382
27383    /**
27384     * Set reverse effect automatically.
27385     *
27386     * If auto reverse is setted, after running the effects with the progress
27387     * parameter from 0 to 1, it will call the effecs again with the progress
27388     * from 1 to 0. The transit will last for a time iqual to (2 * duration * repeat),
27389     * where the duration was setted with the function elm_transit_add and
27390     * the repeat with the function elm_transit_repeat_times_set().
27391     *
27392     * @param transit The transit object.
27393     * @param reverse EINA_TRUE means the auto_reverse is on.
27394     *
27395     * @ingroup Transit
27396     */
27397    EAPI void                        elm_transit_auto_reverse_set(Elm_Transit *transit, Eina_Bool reverse) EINA_ARG_NONNULL(1);
27398
27399    /**
27400     * Get if the auto reverse is on.
27401     *
27402     * @see elm_transit_auto_reverse_set()
27403     *
27404     * @param transit The transit object.
27405     * @return EINA_TRUE means auto reverse is on. If @p transit is NULL
27406     * EINA_FALSE is returned
27407     *
27408     * @ingroup Transit
27409     */
27410    EAPI Eina_Bool                   elm_transit_auto_reverse_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27411
27412    /**
27413     * Set the transit repeat count. Effect will be repeated by repeat count.
27414     *
27415     * This function sets the number of repetition the transit will run after
27416     * the first one, that is, if @p repeat is 1, the transit will run 2 times.
27417     * If the @p repeat is a negative number, it will repeat infinite times.
27418     *
27419     * @note If this function is called during the transit execution, the transit
27420     * will run @p repeat times, ignoring the times it already performed.
27421     *
27422     * @param transit The transit object
27423     * @param repeat Repeat count
27424     *
27425     * @ingroup Transit
27426     */
27427    EAPI void                        elm_transit_repeat_times_set(Elm_Transit *transit, int repeat) EINA_ARG_NONNULL(1);
27428
27429    /**
27430     * Get the transit repeat count.
27431     *
27432     * @see elm_transit_repeat_times_set()
27433     *
27434     * @param transit The Transit object.
27435     * @return The repeat count. If @p transit is NULL
27436     * 0 is returned
27437     *
27438     * @ingroup Transit
27439     */
27440    EAPI int                         elm_transit_repeat_times_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27441
27442    /**
27443     * Set the transit animation acceleration type.
27444     *
27445     * This function sets the tween mode of the transit that can be:
27446     * ELM_TRANSIT_TWEEN_MODE_LINEAR - The default mode.
27447     * ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL - Starts in accelerate mode and ends decelerating.
27448     * ELM_TRANSIT_TWEEN_MODE_DECELERATE - The animation will be slowed over time.
27449     * ELM_TRANSIT_TWEEN_MODE_ACCELERATE - The animation will accelerate over time.
27450     *
27451     * @param transit The transit object.
27452     * @param tween_mode The tween type.
27453     *
27454     * @ingroup Transit
27455     */
27456    EAPI void                        elm_transit_tween_mode_set(Elm_Transit *transit, Elm_Transit_Tween_Mode tween_mode) EINA_ARG_NONNULL(1);
27457
27458    /**
27459     * Get the transit animation acceleration type.
27460     *
27461     * @note @p transit can not be NULL
27462     *
27463     * @param transit The transit object.
27464     * @return The tween type. If @p transit is NULL
27465     * ELM_TRANSIT_TWEEN_MODE_LINEAR is returned.
27466     *
27467     * @ingroup Transit
27468     */
27469    EAPI Elm_Transit_Tween_Mode      elm_transit_tween_mode_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27470
27471    /**
27472     * Set the transit animation time
27473     *
27474     * @note @p transit can not be NULL
27475     *
27476     * @param transit The transit object.
27477     * @param duration The animation time.
27478     *
27479     * @ingroup Transit
27480     */
27481    EAPI void                        elm_transit_duration_set(Elm_Transit *transit, double duration) EINA_ARG_NONNULL(1);
27482
27483    /**
27484     * Get the transit animation time
27485     *
27486     * @note @p transit can not be NULL
27487     *
27488     * @param transit The transit object.
27489     *
27490     * @return The transit animation time.
27491     *
27492     * @ingroup Transit
27493     */
27494    EAPI double                      elm_transit_duration_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27495
27496    /**
27497     * Starts the transition.
27498     * Once this API is called, the transit begins to measure the time.
27499     *
27500     * @note @p transit can not be NULL
27501     *
27502     * @param transit The transit object.
27503     *
27504     * @ingroup Transit
27505     */
27506    EAPI void                        elm_transit_go(Elm_Transit *transit) EINA_ARG_NONNULL(1);
27507
27508    /**
27509     * Pause/Resume the transition.
27510     *
27511     * If you call elm_transit_go again, the transit will be started from the
27512     * beginning, and will be unpaused.
27513     *
27514     * @note @p transit can not be NULL
27515     *
27516     * @param transit The transit object.
27517     * @param paused Whether the transition should be paused or not.
27518     *
27519     * @ingroup Transit
27520     */
27521    EAPI void                        elm_transit_paused_set(Elm_Transit *transit, Eina_Bool paused) EINA_ARG_NONNULL(1);
27522
27523    /**
27524     * Get the value of paused status.
27525     *
27526     * @see elm_transit_paused_set()
27527     *
27528     * @note @p transit can not be NULL
27529     *
27530     * @param transit The transit object.
27531     * @return EINA_TRUE means transition is paused. If @p transit is NULL
27532     * EINA_FALSE is returned
27533     *
27534     * @ingroup Transit
27535     */
27536    EAPI Eina_Bool                   elm_transit_paused_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27537
27538    /**
27539     * Get the time progression of the animation (a double value between 0.0 and 1.0).
27540     *
27541     * The value returned is a fraction (current time / total time). It
27542     * represents the progression position relative to the total.
27543     *
27544     * @note @p transit can not be NULL
27545     *
27546     * @param transit The transit object.
27547     *
27548     * @return The time progression value. If @p transit is NULL
27549     * 0 is returned
27550     *
27551     * @ingroup Transit
27552     */
27553    EAPI double                      elm_transit_progress_value_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27554
27555    /**
27556     * Makes the chain relationship between two transits.
27557     *
27558     * @note @p transit can not be NULL. Transit would have multiple chain transits.
27559     * @note @p chain_transit can not be NULL. Chain transits could be chained to the only one transit.
27560     *
27561     * @param transit The transit object.
27562     * @param chain_transit The chain transit object. This transit will be operated
27563     *        after transit is done.
27564     *
27565     * This function adds @p chain_transit transition to a chain after the @p
27566     * transit, and will be started as soon as @p transit ends. See @ref
27567     * transit_example_02_explained for a full example.
27568     *
27569     * @ingroup Transit
27570     */
27571    EAPI void                        elm_transit_chain_transit_add(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1, 2);
27572
27573    /**
27574     * Cut off the chain relationship between two transits.
27575     *
27576     * @note @p transit can not be NULL. Transit would have the chain relationship with @p chain transit.
27577     * @note @p chain_transit can not be NULL. Chain transits should be chained to the @p transit.
27578     *
27579     * @param transit The transit object.
27580     * @param chain_transit The chain transit object.
27581     *
27582     * This function remove the @p chain_transit transition from the @p transit.
27583     *
27584     * @ingroup Transit
27585     */
27586    EAPI void                        elm_transit_chain_transit_del(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1,2);
27587
27588    /**
27589     * Get the current chain transit list.
27590     *
27591     * @note @p transit can not be NULL.
27592     *
27593     * @param transit The transit object.
27594     * @return chain transit list.
27595     *
27596     * @ingroup Transit
27597     */
27598    EAPI Eina_List                  *elm_transit_chain_transits_get(const Elm_Transit *transit);
27599
27600    /**
27601     * Add the Resizing Effect to Elm_Transit.
27602     *
27603     * @note This API is one of the facades. It creates resizing effect context
27604     * and add it's required APIs to elm_transit_effect_add.
27605     *
27606     * @see elm_transit_effect_add()
27607     *
27608     * @param transit Transit object.
27609     * @param from_w Object width size when effect begins.
27610     * @param from_h Object height size when effect begins.
27611     * @param to_w Object width size when effect ends.
27612     * @param to_h Object height size when effect ends.
27613     * @return Resizing effect context data.
27614     *
27615     * @ingroup Transit
27616     */
27617    EAPI Elm_Transit_Effect *elm_transit_effect_resizing_add(Elm_Transit* transit, Evas_Coord from_w, Evas_Coord from_h, Evas_Coord to_w, Evas_Coord to_h);
27618
27619    /**
27620     * Add the Translation Effect to Elm_Transit.
27621     *
27622     * @note This API is one of the facades. It creates translation effect context
27623     * and add it's required APIs to elm_transit_effect_add.
27624     *
27625     * @see elm_transit_effect_add()
27626     *
27627     * @param transit Transit object.
27628     * @param from_dx X Position variation when effect begins.
27629     * @param from_dy Y Position variation when effect begins.
27630     * @param to_dx X Position variation when effect ends.
27631     * @param to_dy Y Position variation when effect ends.
27632     * @return Translation effect context data.
27633     *
27634     * @ingroup Transit
27635     * @warning It is highly recommended just create a transit with this effect when
27636     * the window that the objects of the transit belongs has already been created.
27637     * This is because this effect needs the geometry information about the objects,
27638     * and if the window was not created yet, it can get a wrong information.
27639     */
27640    EAPI Elm_Transit_Effect *elm_transit_effect_translation_add(Elm_Transit* transit, Evas_Coord from_dx, Evas_Coord from_dy, Evas_Coord to_dx, Evas_Coord to_dy);
27641
27642    /**
27643     * Add the Zoom Effect to Elm_Transit.
27644     *
27645     * @note This API is one of the facades. It creates zoom effect context
27646     * and add it's required APIs to elm_transit_effect_add.
27647     *
27648     * @see elm_transit_effect_add()
27649     *
27650     * @param transit Transit object.
27651     * @param from_rate Scale rate when effect begins (1 is current rate).
27652     * @param to_rate Scale rate when effect ends.
27653     * @return Zoom effect context data.
27654     *
27655     * @ingroup Transit
27656     * @warning It is highly recommended just create a transit with this effect when
27657     * the window that the objects of the transit belongs has already been created.
27658     * This is because this effect needs the geometry information about the objects,
27659     * and if the window was not created yet, it can get a wrong information.
27660     */
27661    EAPI Elm_Transit_Effect *elm_transit_effect_zoom_add(Elm_Transit *transit, float from_rate, float to_rate);
27662
27663    /**
27664     * Add the Flip Effect to Elm_Transit.
27665     *
27666     * @note This API is one of the facades. It creates flip effect context
27667     * and add it's required APIs to elm_transit_effect_add.
27668     * @note This effect is applied to each pair of objects in the order they are listed
27669     * in the transit list of objects. The first object in the pair will be the
27670     * "front" object and the second will be the "back" object.
27671     *
27672     * @see elm_transit_effect_add()
27673     *
27674     * @param transit Transit object.
27675     * @param axis Flipping Axis(X or Y).
27676     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
27677     * @return Flip effect context data.
27678     *
27679     * @ingroup Transit
27680     * @warning It is highly recommended just create a transit with this effect when
27681     * the window that the objects of the transit belongs has already been created.
27682     * This is because this effect needs the geometry information about the objects,
27683     * and if the window was not created yet, it can get a wrong information.
27684     */
27685    EAPI Elm_Transit_Effect *elm_transit_effect_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
27686
27687    /**
27688     * Add the Resizable Flip Effect to Elm_Transit.
27689     *
27690     * @note This API is one of the facades. It creates resizable flip effect context
27691     * and add it's required APIs to elm_transit_effect_add.
27692     * @note This effect is applied to each pair of objects in the order they are listed
27693     * in the transit list of objects. The first object in the pair will be the
27694     * "front" object and the second will be the "back" object.
27695     *
27696     * @see elm_transit_effect_add()
27697     *
27698     * @param transit Transit object.
27699     * @param axis Flipping Axis(X or Y).
27700     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
27701     * @return Resizable flip effect context data.
27702     *
27703     * @ingroup Transit
27704     * @warning It is highly recommended just create a transit with this effect when
27705     * the window that the objects of the transit belongs has already been created.
27706     * This is because this effect needs the geometry information about the objects,
27707     * and if the window was not created yet, it can get a wrong information.
27708     */
27709    EAPI Elm_Transit_Effect *elm_transit_effect_resizable_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
27710
27711    /**
27712     * Add the Wipe Effect to Elm_Transit.
27713     *
27714     * @note This API is one of the facades. It creates wipe effect context
27715     * and add it's required APIs to elm_transit_effect_add.
27716     *
27717     * @see elm_transit_effect_add()
27718     *
27719     * @param transit Transit object.
27720     * @param type Wipe type. Hide or show.
27721     * @param dir Wipe Direction.
27722     * @return Wipe effect context data.
27723     *
27724     * @ingroup Transit
27725     * @warning It is highly recommended just create a transit with this effect when
27726     * the window that the objects of the transit belongs has already been created.
27727     * This is because this effect needs the geometry information about the objects,
27728     * and if the window was not created yet, it can get a wrong information.
27729     */
27730    EAPI Elm_Transit_Effect *elm_transit_effect_wipe_add(Elm_Transit *transit, Elm_Transit_Effect_Wipe_Type type, Elm_Transit_Effect_Wipe_Dir dir);
27731
27732    /**
27733     * Add the Color Effect to Elm_Transit.
27734     *
27735     * @note This API is one of the facades. It creates color effect context
27736     * and add it's required APIs to elm_transit_effect_add.
27737     *
27738     * @see elm_transit_effect_add()
27739     *
27740     * @param transit        Transit object.
27741     * @param  from_r        RGB R when effect begins.
27742     * @param  from_g        RGB G when effect begins.
27743     * @param  from_b        RGB B when effect begins.
27744     * @param  from_a        RGB A when effect begins.
27745     * @param  to_r          RGB R when effect ends.
27746     * @param  to_g          RGB G when effect ends.
27747     * @param  to_b          RGB B when effect ends.
27748     * @param  to_a          RGB A when effect ends.
27749     * @return               Color effect context data.
27750     *
27751     * @ingroup Transit
27752     */
27753    EAPI Elm_Transit_Effect *elm_transit_effect_color_add(Elm_Transit *transit, unsigned int from_r, unsigned int from_g, unsigned int from_b, unsigned int from_a, unsigned int to_r, unsigned int to_g, unsigned int to_b, unsigned int to_a);
27754
27755    /**
27756     * Add the Fade Effect to Elm_Transit.
27757     *
27758     * @note This API is one of the facades. It creates fade effect context
27759     * and add it's required APIs to elm_transit_effect_add.
27760     * @note This effect is applied to each pair of objects in the order they are listed
27761     * in the transit list of objects. The first object in the pair will be the
27762     * "before" object and the second will be the "after" object.
27763     *
27764     * @see elm_transit_effect_add()
27765     *
27766     * @param transit Transit object.
27767     * @return Fade effect context data.
27768     *
27769     * @ingroup Transit
27770     * @warning It is highly recommended just create a transit with this effect when
27771     * the window that the objects of the transit belongs has already been created.
27772     * This is because this effect needs the color information about the objects,
27773     * and if the window was not created yet, it can get a wrong information.
27774     */
27775    EAPI Elm_Transit_Effect *elm_transit_effect_fade_add(Elm_Transit *transit);
27776
27777    /**
27778     * Add the Blend Effect to Elm_Transit.
27779     *
27780     * @note This API is one of the facades. It creates blend effect context
27781     * and add it's required APIs to elm_transit_effect_add.
27782     * @note This effect is applied to each pair of objects in the order they are listed
27783     * in the transit list of objects. The first object in the pair will be the
27784     * "before" object and the second will be the "after" object.
27785     *
27786     * @see elm_transit_effect_add()
27787     *
27788     * @param transit Transit object.
27789     * @return Blend effect context data.
27790     *
27791     * @ingroup Transit
27792     * @warning It is highly recommended just create a transit with this effect when
27793     * the window that the objects of the transit belongs has already been created.
27794     * This is because this effect needs the color information about the objects,
27795     * and if the window was not created yet, it can get a wrong information.
27796     */
27797    EAPI Elm_Transit_Effect *elm_transit_effect_blend_add(Elm_Transit *transit);
27798
27799    /**
27800     * Add the Rotation Effect to Elm_Transit.
27801     *
27802     * @note This API is one of the facades. It creates rotation effect context
27803     * and add it's required APIs to elm_transit_effect_add.
27804     *
27805     * @see elm_transit_effect_add()
27806     *
27807     * @param transit Transit object.
27808     * @param from_degree Degree when effect begins.
27809     * @param to_degree Degree when effect is ends.
27810     * @return Rotation effect context data.
27811     *
27812     * @ingroup Transit
27813     * @warning It is highly recommended just create a transit with this effect when
27814     * the window that the objects of the transit belongs has already been created.
27815     * This is because this effect needs the geometry information about the objects,
27816     * and if the window was not created yet, it can get a wrong information.
27817     */
27818    EAPI Elm_Transit_Effect *elm_transit_effect_rotation_add(Elm_Transit *transit, float from_degree, float to_degree);
27819
27820    /**
27821     * Add the ImageAnimation Effect to Elm_Transit.
27822     *
27823     * @note This API is one of the facades. It creates image animation effect context
27824     * and add it's required APIs to elm_transit_effect_add.
27825     * The @p images parameter is a list images paths. This list and
27826     * its contents will be deleted at the end of the effect by
27827     * elm_transit_effect_image_animation_context_free() function.
27828     *
27829     * Example:
27830     * @code
27831     * char buf[PATH_MAX];
27832     * Eina_List *images = NULL;
27833     * Elm_Transit *transi = elm_transit_add();
27834     *
27835     * snprintf(buf, sizeof(buf), "%s/images/icon_11.png", PACKAGE_DATA_DIR);
27836     * images = eina_list_append(images, eina_stringshare_add(buf));
27837     *
27838     * snprintf(buf, sizeof(buf), "%s/images/logo_small.png", PACKAGE_DATA_DIR);
27839     * images = eina_list_append(images, eina_stringshare_add(buf));
27840     * elm_transit_effect_image_animation_add(transi, images);
27841     *
27842     * @endcode
27843     *
27844     * @see elm_transit_effect_add()
27845     *
27846     * @param transit Transit object.
27847     * @param images Eina_List of images file paths. This list and
27848     * its contents will be deleted at the end of the effect by
27849     * elm_transit_effect_image_animation_context_free() function.
27850     * @return Image Animation effect context data.
27851     *
27852     * @ingroup Transit
27853     */
27854    EAPI Elm_Transit_Effect *elm_transit_effect_image_animation_add(Elm_Transit *transit, Eina_List *images);
27855    /**
27856     * @}
27857     */
27858
27859    typedef struct _Elm_Store                      Elm_Store;
27860    typedef struct _Elm_Store_Filesystem           Elm_Store_Filesystem;
27861    typedef struct _Elm_Store_Item                 Elm_Store_Item;
27862    typedef struct _Elm_Store_Item_Filesystem      Elm_Store_Item_Filesystem;
27863    typedef struct _Elm_Store_Item_Info            Elm_Store_Item_Info;
27864    typedef struct _Elm_Store_Item_Info_Filesystem Elm_Store_Item_Info_Filesystem;
27865    typedef struct _Elm_Store_Item_Mapping         Elm_Store_Item_Mapping;
27866    typedef struct _Elm_Store_Item_Mapping_Empty   Elm_Store_Item_Mapping_Empty;
27867    typedef struct _Elm_Store_Item_Mapping_Icon    Elm_Store_Item_Mapping_Icon;
27868    typedef struct _Elm_Store_Item_Mapping_Photo   Elm_Store_Item_Mapping_Photo;
27869    typedef struct _Elm_Store_Item_Mapping_Custom  Elm_Store_Item_Mapping_Custom;
27870
27871    typedef Eina_Bool (*Elm_Store_Item_List_Cb) (void *data, Elm_Store_Item_Info *info);
27872    typedef void      (*Elm_Store_Item_Fetch_Cb) (void *data, Elm_Store_Item *sti);
27873    typedef void      (*Elm_Store_Item_Unfetch_Cb) (void *data, Elm_Store_Item *sti);
27874    typedef void     *(*Elm_Store_Item_Mapping_Cb) (void *data, Elm_Store_Item *sti, const char *part);
27875
27876    typedef enum
27877      {
27878         ELM_STORE_ITEM_MAPPING_NONE = 0,
27879         ELM_STORE_ITEM_MAPPING_LABEL, // const char * -> label
27880         ELM_STORE_ITEM_MAPPING_STATE, // Eina_Bool -> state
27881         ELM_STORE_ITEM_MAPPING_ICON, // char * -> icon path
27882         ELM_STORE_ITEM_MAPPING_PHOTO, // char * -> photo path
27883         ELM_STORE_ITEM_MAPPING_CUSTOM, // item->custom(it->data, it, part) -> void * (-> any)
27884         // can add more here as needed by common apps
27885         ELM_STORE_ITEM_MAPPING_LAST
27886      } Elm_Store_Item_Mapping_Type;
27887
27888    struct _Elm_Store_Item_Mapping_Icon
27889      {
27890         // FIXME: allow edje file icons
27891         int                   w, h;
27892         Elm_Icon_Lookup_Order lookup_order;
27893         Eina_Bool             standard_name : 1;
27894         Eina_Bool             no_scale : 1;
27895         Eina_Bool             smooth : 1;
27896         Eina_Bool             scale_up : 1;
27897         Eina_Bool             scale_down : 1;
27898      };
27899
27900    struct _Elm_Store_Item_Mapping_Empty
27901      {
27902         Eina_Bool             dummy;
27903      };
27904
27905    struct _Elm_Store_Item_Mapping_Photo
27906      {
27907         int                   size;
27908      };
27909
27910    struct _Elm_Store_Item_Mapping_Custom
27911      {
27912         Elm_Store_Item_Mapping_Cb func;
27913      };
27914
27915    struct _Elm_Store_Item_Mapping
27916      {
27917         Elm_Store_Item_Mapping_Type     type;
27918         const char                     *part;
27919         int                             offset;
27920         union
27921           {
27922              Elm_Store_Item_Mapping_Empty  empty;
27923              Elm_Store_Item_Mapping_Icon   icon;
27924              Elm_Store_Item_Mapping_Photo  photo;
27925              Elm_Store_Item_Mapping_Custom custom;
27926              // add more types here
27927           } details;
27928      };
27929
27930    struct _Elm_Store_Item_Info
27931      {
27932         Elm_Genlist_Item_Class       *item_class;
27933         const Elm_Store_Item_Mapping *mapping;
27934         void                         *data;
27935         char                         *sort_id;
27936      };
27937
27938    struct _Elm_Store_Item_Info_Filesystem
27939      {
27940         Elm_Store_Item_Info  base;
27941         char                *path;
27942      };
27943
27944 #define ELM_STORE_ITEM_MAPPING_END { ELM_STORE_ITEM_MAPPING_NONE, NULL, 0, { .empty = { EINA_TRUE } } }
27945 #define ELM_STORE_ITEM_MAPPING_OFFSET(st, it) offsetof(st, it)
27946
27947    EAPI void                    elm_store_free(Elm_Store *st);
27948
27949    EAPI Elm_Store              *elm_store_filesystem_new(void);
27950    EAPI void                    elm_store_filesystem_directory_set(Elm_Store *st, const char *dir) EINA_ARG_NONNULL(1);
27951    EAPI const char             *elm_store_filesystem_directory_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27952    EAPI const char             *elm_store_item_filesystem_path_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27953
27954    EAPI void                    elm_store_target_genlist_set(Elm_Store *st, Evas_Object *obj) EINA_ARG_NONNULL(1);
27955
27956    EAPI void                    elm_store_cache_set(Elm_Store *st, int max) EINA_ARG_NONNULL(1);
27957    EAPI int                     elm_store_cache_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27958    EAPI void                    elm_store_list_func_set(Elm_Store *st, Elm_Store_Item_List_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27959    EAPI void                    elm_store_fetch_func_set(Elm_Store *st, Elm_Store_Item_Fetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27960    EAPI void                    elm_store_fetch_thread_set(Elm_Store *st, Eina_Bool use_thread) EINA_ARG_NONNULL(1);
27961    EAPI Eina_Bool               elm_store_fetch_thread_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27962
27963    EAPI void                    elm_store_unfetch_func_set(Elm_Store *st, Elm_Store_Item_Unfetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27964    EAPI void                    elm_store_sorted_set(Elm_Store *st, Eina_Bool sorted) EINA_ARG_NONNULL(1);
27965    EAPI Eina_Bool               elm_store_sorted_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27966    EAPI void                    elm_store_item_data_set(Elm_Store_Item *sti, void *data) EINA_ARG_NONNULL(1);
27967    EAPI void                   *elm_store_item_data_get(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27968    EAPI const Elm_Store        *elm_store_item_store_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27969    EAPI const Elm_Genlist_Item *elm_store_item_genlist_item_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27970
27971    /**
27972     * @defgroup SegmentControl SegmentControl
27973     * @ingroup Elementary
27974     *
27975     * @image html img/widget/segment_control/preview-00.png
27976     * @image latex img/widget/segment_control/preview-00.eps width=\textwidth
27977     *
27978     * @image html img/segment_control.png
27979     * @image latex img/segment_control.eps width=\textwidth
27980     *
27981     * Segment control widget is a horizontal control made of multiple segment
27982     * items, each segment item functioning similar to discrete two state button.
27983     * A segment control groups the items together and provides compact
27984     * single button with multiple equal size segments.
27985     *
27986     * Segment item size is determined by base widget
27987     * size and the number of items added.
27988     * Only one segment item can be at selected state. A segment item can display
27989     * combination of Text and any Evas_Object like Images or other widget.
27990     *
27991     * Smart callbacks one can listen to:
27992     * - "changed" - When the user clicks on a segment item which is not
27993     *   previously selected and get selected. The event_info parameter is the
27994     *   segment item pointer.
27995     *
27996     * Available styles for it:
27997     * - @c "default"
27998     *
27999     * Here is an example on its usage:
28000     * @li @ref segment_control_example
28001     */
28002
28003    /**
28004     * @addtogroup SegmentControl
28005     * @{
28006     */
28007
28008    typedef struct _Elm_Segment_Item Elm_Segment_Item; /**< Item handle for a segment control widget. */
28009
28010    /**
28011     * Add a new segment control widget to the given parent Elementary
28012     * (container) object.
28013     *
28014     * @param parent The parent object.
28015     * @return a new segment control widget handle or @c NULL, on errors.
28016     *
28017     * This function inserts a new segment control widget on the canvas.
28018     *
28019     * @ingroup SegmentControl
28020     */
28021    EAPI Evas_Object      *elm_segment_control_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
28022
28023    /**
28024     * Append a new item to the segment control object.
28025     *
28026     * @param obj The segment control object.
28027     * @param icon The icon object to use for the left side of the item. An
28028     * icon can be any Evas object, but usually it is an icon created
28029     * with elm_icon_add().
28030     * @param label The label of the item.
28031     *        Note that, NULL is different from empty string "".
28032     * @return The created item or @c NULL upon failure.
28033     *
28034     * A new item will be created and appended to the segment control, i.e., will
28035     * be set as @b last item.
28036     *
28037     * If it should be inserted at another position,
28038     * elm_segment_control_item_insert_at() should be used instead.
28039     *
28040     * Items created with this function can be deleted with function
28041     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
28042     *
28043     * @note @p label set to @c NULL is different from empty string "".
28044     * If an item
28045     * only has icon, it will be displayed bigger and centered. If it has
28046     * icon and label, even that an empty string, icon will be smaller and
28047     * positioned at left.
28048     *
28049     * Simple example:
28050     * @code
28051     * sc = elm_segment_control_add(win);
28052     * ic = elm_icon_add(win);
28053     * elm_icon_file_set(ic, "path/to/image", NULL);
28054     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
28055     * elm_segment_control_item_add(sc, ic, "label");
28056     * evas_object_show(sc);
28057     * @endcode
28058     *
28059     * @see elm_segment_control_item_insert_at()
28060     * @see elm_segment_control_item_del()
28061     *
28062     * @ingroup SegmentControl
28063     */
28064    EAPI Elm_Segment_Item *elm_segment_control_item_add(Evas_Object *obj, Evas_Object *icon, const char *label) EINA_ARG_NONNULL(1);
28065
28066    /**
28067     * Insert a new item to the segment control object at specified position.
28068     *
28069     * @param obj The segment control object.
28070     * @param icon The icon object to use for the left side of the item. An
28071     * icon can be any Evas object, but usually it is an icon created
28072     * with elm_icon_add().
28073     * @param label The label of the item.
28074     * @param index Item position. Value should be between 0 and items count.
28075     * @return The created item or @c NULL upon failure.
28076
28077     * Index values must be between @c 0, when item will be prepended to
28078     * segment control, and items count, that can be get with
28079     * elm_segment_control_item_count_get(), case when item will be appended
28080     * to segment control, just like elm_segment_control_item_add().
28081     *
28082     * Items created with this function can be deleted with function
28083     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
28084     *
28085     * @note @p label set to @c NULL is different from empty string "".
28086     * If an item
28087     * only has icon, it will be displayed bigger and centered. If it has
28088     * icon and label, even that an empty string, icon will be smaller and
28089     * positioned at left.
28090     *
28091     * @see elm_segment_control_item_add()
28092     * @see elm_segment_control_item_count_get()
28093     * @see elm_segment_control_item_del()
28094     *
28095     * @ingroup SegmentControl
28096     */
28097    EAPI Elm_Segment_Item *elm_segment_control_item_insert_at(Evas_Object *obj, Evas_Object *icon, const char *label, int index) EINA_ARG_NONNULL(1);
28098
28099    /**
28100     * Remove a segment control item from its parent, deleting it.
28101     *
28102     * @param it The item to be removed.
28103     *
28104     * Items can be added with elm_segment_control_item_add() or
28105     * elm_segment_control_item_insert_at().
28106     *
28107     * @ingroup SegmentControl
28108     */
28109    EAPI void              elm_segment_control_item_del(Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
28110
28111    /**
28112     * Remove a segment control item at given index from its parent,
28113     * deleting it.
28114     *
28115     * @param obj The segment control object.
28116     * @param index The position of the segment control item to be deleted.
28117     *
28118     * Items can be added with elm_segment_control_item_add() or
28119     * elm_segment_control_item_insert_at().
28120     *
28121     * @ingroup SegmentControl
28122     */
28123    EAPI void              elm_segment_control_item_del_at(Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28124
28125    /**
28126     * Get the Segment items count from segment control.
28127     *
28128     * @param obj The segment control object.
28129     * @return Segment items count.
28130     *
28131     * It will just return the number of items added to segment control @p obj.
28132     *
28133     * @ingroup SegmentControl
28134     */
28135    EAPI int               elm_segment_control_item_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28136
28137    /**
28138     * Get the item placed at specified index.
28139     *
28140     * @param obj The segment control object.
28141     * @param index The index of the segment item.
28142     * @return The segment control item or @c NULL on failure.
28143     *
28144     * Index is the position of an item in segment control widget. Its
28145     * range is from @c 0 to <tt> count - 1 </tt>.
28146     * Count is the number of items, that can be get with
28147     * elm_segment_control_item_count_get().
28148     *
28149     * @ingroup SegmentControl
28150     */
28151    EAPI Elm_Segment_Item *elm_segment_control_item_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28152
28153    /**
28154     * Get the label of item.
28155     *
28156     * @param obj The segment control object.
28157     * @param index The index of the segment item.
28158     * @return The label of the item at @p index.
28159     *
28160     * The return value is a pointer to the label associated to the item when
28161     * it was created, with function elm_segment_control_item_add(), or later
28162     * with function elm_segment_control_item_label_set. If no label
28163     * was passed as argument, it will return @c NULL.
28164     *
28165     * @see elm_segment_control_item_label_set() for more details.
28166     * @see elm_segment_control_item_add()
28167     *
28168     * @ingroup SegmentControl
28169     */
28170    EAPI const char       *elm_segment_control_item_label_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28171
28172    /**
28173     * Set the label of item.
28174     *
28175     * @param it The item of segment control.
28176     * @param text The label of item.
28177     *
28178     * The label to be displayed by the item.
28179     * Label will be at right of the icon (if set).
28180     *
28181     * If a label was passed as argument on item creation, with function
28182     * elm_control_segment_item_add(), it will be already
28183     * displayed by the item.
28184     *
28185     * @see elm_segment_control_item_label_get()
28186     * @see elm_segment_control_item_add()
28187     *
28188     * @ingroup SegmentControl
28189     */
28190    EAPI void              elm_segment_control_item_label_set(Elm_Segment_Item* it, const char* label) EINA_ARG_NONNULL(1);
28191
28192    /**
28193     * Get the icon associated to the item.
28194     *
28195     * @param obj The segment control object.
28196     * @param index The index of the segment item.
28197     * @return The left side icon associated to the item at @p index.
28198     *
28199     * The return value is a pointer to the icon associated to the item when
28200     * it was created, with function elm_segment_control_item_add(), or later
28201     * with function elm_segment_control_item_icon_set(). If no icon
28202     * was passed as argument, it will return @c NULL.
28203     *
28204     * @see elm_segment_control_item_add()
28205     * @see elm_segment_control_item_icon_set()
28206     *
28207     * @ingroup SegmentControl
28208     */
28209    EAPI Evas_Object      *elm_segment_control_item_icon_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28210
28211    /**
28212     * Set the icon associated to the item.
28213     *
28214     * @param it The segment control item.
28215     * @param icon The icon object to associate with @p it.
28216     *
28217     * The icon object to use at left side of the item. An
28218     * icon can be any Evas object, but usually it is an icon created
28219     * with elm_icon_add().
28220     *
28221     * Once the icon object is set, a previously set one will be deleted.
28222     * @warning Setting the same icon for two items will cause the icon to
28223     * dissapear from the first item.
28224     *
28225     * If an icon was passed as argument on item creation, with function
28226     * elm_segment_control_item_add(), it will be already
28227     * associated to the item.
28228     *
28229     * @see elm_segment_control_item_add()
28230     * @see elm_segment_control_item_icon_get()
28231     *
28232     * @ingroup SegmentControl
28233     */
28234    EAPI void              elm_segment_control_item_icon_set(Elm_Segment_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
28235
28236    /**
28237     * Get the index of an item.
28238     *
28239     * @param it The segment control item.
28240     * @return The position of item in segment control widget.
28241     *
28242     * Index is the position of an item in segment control widget. Its
28243     * range is from @c 0 to <tt> count - 1 </tt>.
28244     * Count is the number of items, that can be get with
28245     * elm_segment_control_item_count_get().
28246     *
28247     * @ingroup SegmentControl
28248     */
28249    EAPI int               elm_segment_control_item_index_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
28250
28251    /**
28252     * Get the base object of the item.
28253     *
28254     * @param it The segment control item.
28255     * @return The base object associated with @p it.
28256     *
28257     * Base object is the @c Evas_Object that represents that item.
28258     *
28259     * @ingroup SegmentControl
28260     */
28261    EAPI Evas_Object      *elm_segment_control_item_object_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
28262
28263    /**
28264     * Get the selected item.
28265     *
28266     * @param obj The segment control object.
28267     * @return The selected item or @c NULL if none of segment items is
28268     * selected.
28269     *
28270     * The selected item can be unselected with function
28271     * elm_segment_control_item_selected_set().
28272     *
28273     * The selected item always will be highlighted on segment control.
28274     *
28275     * @ingroup SegmentControl
28276     */
28277    EAPI Elm_Segment_Item *elm_segment_control_item_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28278
28279    /**
28280     * Set the selected state of an item.
28281     *
28282     * @param it The segment control item
28283     * @param select The selected state
28284     *
28285     * This sets the selected state of the given item @p it.
28286     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
28287     *
28288     * If a new item is selected the previosly selected will be unselected.
28289     * Previoulsy selected item can be get with function
28290     * elm_segment_control_item_selected_get().
28291     *
28292     * The selected item always will be highlighted on segment control.
28293     *
28294     * @see elm_segment_control_item_selected_get()
28295     *
28296     * @ingroup SegmentControl
28297     */
28298    EAPI void              elm_segment_control_item_selected_set(Elm_Segment_Item *it, Eina_Bool select) EINA_ARG_NONNULL(1);
28299
28300    /**
28301     * @}
28302     */
28303
28304    /**
28305     * @defgroup Grid Grid
28306     *
28307     * The grid is a grid layout widget that lays out a series of children as a
28308     * fixed "grid" of widgets using a given percentage of the grid width and
28309     * height each using the child object.
28310     *
28311     * The Grid uses a "Virtual resolution" that is stretched to fill the grid
28312     * widgets size itself. The default is 100 x 100, so that means the
28313     * position and sizes of children will effectively be percentages (0 to 100)
28314     * of the width or height of the grid widget
28315     *
28316     * @{
28317     */
28318
28319    /**
28320     * Add a new grid to the parent
28321     *
28322     * @param parent The parent object
28323     * @return The new object or NULL if it cannot be created
28324     *
28325     * @ingroup Grid
28326     */
28327    EAPI Evas_Object *elm_grid_add(Evas_Object *parent);
28328
28329    /**
28330     * Set the virtual size of the grid
28331     *
28332     * @param obj The grid object
28333     * @param w The virtual width of the grid
28334     * @param h The virtual height of the grid
28335     *
28336     * @ingroup Grid
28337     */
28338    EAPI void         elm_grid_size_set(Evas_Object *obj, int w, int h);
28339
28340    /**
28341     * Get the virtual size of the grid
28342     *
28343     * @param obj The grid object
28344     * @param w Pointer to integer to store the virtual width of the grid
28345     * @param h Pointer to integer to store the virtual height of the grid
28346     *
28347     * @ingroup Grid
28348     */
28349    EAPI void         elm_grid_size_get(Evas_Object *obj, int *w, int *h);
28350
28351    /**
28352     * Pack child at given position and size
28353     *
28354     * @param obj The grid object
28355     * @param subobj The child to pack
28356     * @param x The virtual x coord at which to pack it
28357     * @param y The virtual y coord at which to pack it
28358     * @param w The virtual width at which to pack it
28359     * @param h The virtual height at which to pack it
28360     *
28361     * @ingroup Grid
28362     */
28363    EAPI void         elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h);
28364
28365    /**
28366     * Unpack a child from a grid object
28367     *
28368     * @param obj The grid object
28369     * @param subobj The child to unpack
28370     *
28371     * @ingroup Grid
28372     */
28373    EAPI void         elm_grid_unpack(Evas_Object *obj, Evas_Object *subobj);
28374
28375    /**
28376     * Faster way to remove all child objects from a grid object.
28377     *
28378     * @param obj The grid object
28379     * @param clear If true, it will delete just removed children
28380     *
28381     * @ingroup Grid
28382     */
28383    EAPI void         elm_grid_clear(Evas_Object *obj, Eina_Bool clear);
28384
28385    /**
28386     * Set packing of an existing child at to position and size
28387     *
28388     * @param subobj The child to set packing of
28389     * @param x The virtual x coord at which to pack it
28390     * @param y The virtual y coord at which to pack it
28391     * @param w The virtual width at which to pack it
28392     * @param h The virtual height at which to pack it
28393     *
28394     * @ingroup Grid
28395     */
28396    EAPI void         elm_grid_pack_set(Evas_Object *subobj, int x, int y, int w, int h);
28397
28398    /**
28399     * get packing of a child
28400     *
28401     * @param subobj The child to query
28402     * @param x Pointer to integer to store the virtual x coord
28403     * @param y Pointer to integer to store the virtual y coord
28404     * @param w Pointer to integer to store the virtual width
28405     * @param h Pointer to integer to store the virtual height
28406     *
28407     * @ingroup Grid
28408     */
28409    EAPI void         elm_grid_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h);
28410
28411    /**
28412     * @}
28413     */
28414
28415    EAPI Evas_Object *elm_factory_add(Evas_Object *parent);
28416    EINA_DEPRECATED EAPI void         elm_factory_content_set(Evas_Object *obj, Evas_Object *content);
28417    EINA_DEPRECATED EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj);
28418    EAPI void         elm_factory_maxmin_mode_set(Evas_Object *obj, Eina_Bool enabled);
28419    EAPI Eina_Bool    elm_factory_maxmin_mode_get(const Evas_Object *obj);
28420    EAPI void         elm_factory_maxmin_reset_set(Evas_Object *obj);
28421
28422    /**
28423     * @defgroup Video Video
28424     *
28425     * @addtogroup Video
28426     * @{
28427     *
28428     * Elementary comes with two object that help design application that need
28429     * to display video. The main one, Elm_Video, display a video by using Emotion.
28430     * It does embedded the video inside an Edje object, so you can do some
28431     * animation depending on the video state change. It does also implement a
28432     * ressource management policy to remove this burden from the application writer.
28433     *
28434     * The second one, Elm_Player is a video player that need to be linked with and Elm_Video.
28435     * It take care of updating its content according to Emotion event and provide a
28436     * way to theme itself. It also does automatically raise the priority of the
28437     * linked Elm_Video so it will use the video decoder if available. It also does
28438     * activate the remember function on the linked Elm_Video object.
28439     *
28440     * Signals that you can add callback for are :
28441     *
28442     * "forward,clicked" - the user clicked the forward button.
28443     * "info,clicked" - the user clicked the info button.
28444     * "next,clicked" - the user clicked the next button.
28445     * "pause,clicked" - the user clicked the pause button.
28446     * "play,clicked" - the user clicked the play button.
28447     * "prev,clicked" - the user clicked the prev button.
28448     * "rewind,clicked" - the user clicked the rewind button.
28449     * "stop,clicked" - the user clicked the stop button.
28450     *
28451     * Default contents parts of the player widget that you can use for are:
28452     * @li "video" - A video of the player
28453     *
28454     */
28455
28456    /**
28457     * @brief Add a new Elm_Player object to the given parent Elementary (container) object.
28458     *
28459     * @param parent The parent object
28460     * @return a new player widget handle or @c NULL, on errors.
28461     *
28462     * This function inserts a new player widget on the canvas.
28463     *
28464     * @see elm_object_part_content_set()
28465     *
28466     * @ingroup Video
28467     */
28468    EAPI Evas_Object *elm_player_add(Evas_Object *parent);
28469
28470    /**
28471     * @brief Link a Elm_Payer with an Elm_Video object.
28472     *
28473     * @param player the Elm_Player object.
28474     * @param video The Elm_Video object.
28475     *
28476     * This mean that action on the player widget will affect the
28477     * video object and the state of the video will be reflected in
28478     * the player itself.
28479     *
28480     * @see elm_player_add()
28481     * @see elm_video_add()
28482     * @deprecated use elm_object_part_content_set() instead
28483     *
28484     * @ingroup Video
28485     */
28486    EINA_DEPRECATED EAPI void elm_player_video_set(Evas_Object *player, Evas_Object *video);
28487
28488    /**
28489     * @brief Add a new Elm_Video object to the given parent Elementary (container) object.
28490     *
28491     * @param parent The parent object
28492     * @return a new video widget handle or @c NULL, on errors.
28493     *
28494     * This function inserts a new video widget on the canvas.
28495     *
28496     * @seeelm_video_file_set()
28497     * @see elm_video_uri_set()
28498     *
28499     * @ingroup Video
28500     */
28501    EAPI Evas_Object *elm_video_add(Evas_Object *parent);
28502
28503    /**
28504     * @brief Define the file that will be the video source.
28505     *
28506     * @param video The video object to define the file for.
28507     * @param filename The file to target.
28508     *
28509     * This function will explicitly define a filename as a source
28510     * for the video of the Elm_Video object.
28511     *
28512     * @see elm_video_uri_set()
28513     * @see elm_video_add()
28514     * @see elm_player_add()
28515     *
28516     * @ingroup Video
28517     */
28518    EAPI void elm_video_file_set(Evas_Object *video, const char *filename);
28519
28520    /**
28521     * @brief Define the uri that will be the video source.
28522     *
28523     * @param video The video object to define the file for.
28524     * @param uri The uri to target.
28525     *
28526     * This function will define an uri as a source for the video of the
28527     * Elm_Video object. URI could be remote source of video, like http:// or local source
28528     * like for example WebCam who are most of the time v4l2:// (but that depend and
28529     * you should use Emotion API to request and list the available Webcam on your system).
28530     *
28531     * @see elm_video_file_set()
28532     * @see elm_video_add()
28533     * @see elm_player_add()
28534     *
28535     * @ingroup Video
28536     */
28537    EAPI void elm_video_uri_set(Evas_Object *video, const char *uri);
28538
28539    /**
28540     * @brief Get the underlying Emotion object.
28541     *
28542     * @param video The video object to proceed the request on.
28543     * @return the underlying Emotion object.
28544     *
28545     * @ingroup Video
28546     */
28547    EAPI Evas_Object *elm_video_emotion_get(const Evas_Object *video);
28548
28549    /**
28550     * @brief Start to play the video
28551     *
28552     * @param video The video object to proceed the request on.
28553     *
28554     * Start to play the video and cancel all suspend state.
28555     *
28556     * @ingroup Video
28557     */
28558    EAPI void elm_video_play(Evas_Object *video);
28559
28560    /**
28561     * @brief Pause the video
28562     *
28563     * @param video The video object to proceed the request on.
28564     *
28565     * Pause the video and start a timer to trigger suspend mode.
28566     *
28567     * @ingroup Video
28568     */
28569    EAPI void elm_video_pause(Evas_Object *video);
28570
28571    /**
28572     * @brief Stop the video
28573     *
28574     * @param video The video object to proceed the request on.
28575     *
28576     * Stop the video and put the emotion in deep sleep mode.
28577     *
28578     * @ingroup Video
28579     */
28580    EAPI void elm_video_stop(Evas_Object *video);
28581
28582    /**
28583     * @brief Is the video actually playing.
28584     *
28585     * @param video The video object to proceed the request on.
28586     * @return EINA_TRUE if the video is actually playing.
28587     *
28588     * You should consider watching event on the object instead of polling
28589     * the object state.
28590     *
28591     * @ingroup Video
28592     */
28593    EAPI Eina_Bool elm_video_is_playing(const Evas_Object *video);
28594
28595    /**
28596     * @brief Is it possible to seek inside the video.
28597     *
28598     * @param video The video object to proceed the request on.
28599     * @return EINA_TRUE if is possible to seek inside the video.
28600     *
28601     * @ingroup Video
28602     */
28603    EAPI Eina_Bool elm_video_is_seekable(const Evas_Object *video);
28604
28605    /**
28606     * @brief Is the audio muted.
28607     *
28608     * @param video The video object to proceed the request on.
28609     * @return EINA_TRUE if the audio is muted.
28610     *
28611     * @ingroup Video
28612     */
28613    EAPI Eina_Bool elm_video_audio_mute_get(const Evas_Object *video);
28614
28615    /**
28616     * @brief Change the mute state of the Elm_Video object.
28617     *
28618     * @param video The video object to proceed the request on.
28619     * @param mute The new mute state.
28620     *
28621     * @ingroup Video
28622     */
28623    EAPI void elm_video_audio_mute_set(Evas_Object *video, Eina_Bool mute);
28624
28625    /**
28626     * @brief Get the audio level of the current video.
28627     *
28628     * @param video The video object to proceed the request on.
28629     * @return the current audio level.
28630     *
28631     * @ingroup Video
28632     */
28633    EAPI double elm_video_audio_level_get(const Evas_Object *video);
28634
28635    /**
28636     * @brief Set the audio level of anElm_Video object.
28637     *
28638     * @param video The video object to proceed the request on.
28639     * @param volume The new audio volume.
28640     *
28641     * @ingroup Video
28642     */
28643    EAPI void elm_video_audio_level_set(Evas_Object *video, double volume);
28644
28645    EAPI double elm_video_play_position_get(const Evas_Object *video);
28646    EAPI void elm_video_play_position_set(Evas_Object *video, double position);
28647    EAPI double elm_video_play_length_get(const Evas_Object *video);
28648    EAPI void elm_video_remember_position_set(Evas_Object *video, Eina_Bool remember);
28649    EAPI Eina_Bool elm_video_remember_position_get(const Evas_Object *video);
28650    EAPI const char *elm_video_title_get(const Evas_Object *video);
28651    /**
28652     * @}
28653     */
28654
28655    /**
28656     * @defgroup Naviframe Naviframe
28657     * @ingroup Elementary
28658     *
28659     * @brief Naviframe is a kind of view manager for the applications.
28660     *
28661     * Naviframe provides functions to switch different pages with stack
28662     * mechanism. It means if one page(item) needs to be changed to the new one,
28663     * then naviframe would push the new page to it's internal stack. Of course,
28664     * it can be back to the previous page by popping the top page. Naviframe
28665     * provides some transition effect while the pages are switching (same as
28666     * pager).
28667     *
28668     * Since each item could keep the different styles, users could keep the
28669     * same look & feel for the pages or different styles for the items in it's
28670     * application.
28671     *
28672     * Signals that you can add callback for are:
28673     * @li "transition,finished" - When the transition is finished in changing
28674     *     the item
28675     * @li "title,clicked" - User clicked title area
28676     *
28677     * Default contents parts of the naviframe items that you can use for are:
28678     * @li "default" - A main content of the page
28679     * @li "icon" - An icon in the title area
28680     * @li "prev_btn" - A button to go to the previous page
28681     * @li "next_btn" - A button to go to the next page
28682     *
28683     * Default text parts of the naviframe items that you can use for are:
28684     * @li "default" - Title label in the title area
28685     * @li "subtitle" - Sub-title label in the title area
28686     *
28687     * @ref tutorial_naviframe gives a good overview of the usage of the API.
28688     */
28689
28690    /**
28691     * @addtogroup Naviframe
28692     * @{
28693     */
28694
28695    /**
28696     * @brief Add a new Naviframe object to the parent.
28697     *
28698     * @param parent Parent object
28699     * @return New object or @c NULL, if it cannot be created
28700     *
28701     * @ingroup Naviframe
28702     */
28703    EAPI Evas_Object        *elm_naviframe_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
28704    /**
28705     * @brief Push a new item to the top of the naviframe stack (and show it).
28706     *
28707     * @param obj The naviframe object
28708     * @param title_label The label in the title area. The name of the title
28709     *        label part is "elm.text.title"
28710     * @param prev_btn The button to go to the previous item. If it is NULL,
28711     *        then naviframe will create a back button automatically. The name of
28712     *        the prev_btn part is "elm.swallow.prev_btn"
28713     * @param next_btn The button to go to the next item. Or It could be just an
28714     *        extra function button. The name of the next_btn part is
28715     *        "elm.swallow.next_btn"
28716     * @param content The main content object. The name of content part is
28717     *        "elm.swallow.content"
28718     * @param item_style The current item style name. @c NULL would be default.
28719     * @return The created item or @c NULL upon failure.
28720     *
28721     * The item pushed becomes one page of the naviframe, this item will be
28722     * deleted when it is popped.
28723     *
28724     * @see also elm_naviframe_item_style_set()
28725     * @see also elm_naviframe_item_insert_before()
28726     * @see also elm_naviframe_item_insert_after()
28727     *
28728     * The following styles are available for this item:
28729     * @li @c "default"
28730     *
28731     * @ingroup Naviframe
28732     */
28733    EAPI Elm_Object_Item    *elm_naviframe_item_push(Evas_Object *obj, const char *title_label, Evas_Object *prev_btn, Evas_Object *next_btn, Evas_Object *content, const char *item_style) EINA_ARG_NONNULL(1, 5);
28734     /**
28735     * @brief Insert a new item into the naviframe before item @p before.
28736     *
28737     * @param before The naviframe item to insert before.
28738     * @param title_label The label in the title area. The name of the title
28739     *        label part is "elm.text.title"
28740     * @param prev_btn The button to go to the previous item. If it is NULL,
28741     *        then naviframe will create a back button automatically. The name of
28742     *        the prev_btn part is "elm.swallow.prev_btn"
28743     * @param next_btn The button to go to the next item. Or It could be just an
28744     *        extra function button. The name of the next_btn part is
28745     *        "elm.swallow.next_btn"
28746     * @param content The main content object. The name of content part is
28747     *        "elm.swallow.content"
28748     * @param item_style The current item style name. @c NULL would be default.
28749     * @return The created item or @c NULL upon failure.
28750     *
28751     * The item is inserted into the naviframe straight away without any
28752     * transition operations. This item will be deleted when it is popped.
28753     *
28754     * @see also elm_naviframe_item_style_set()
28755     * @see also elm_naviframe_item_push()
28756     * @see also elm_naviframe_item_insert_after()
28757     *
28758     * The following styles are available for this item:
28759     * @li @c "default"
28760     *
28761     * @ingroup Naviframe
28762     */
28763    EAPI Elm_Object_Item    *elm_naviframe_item_insert_before(Elm_Object_Item *before, const char *title_label, Evas_Object *prev_btn, Evas_Object *next_btn, Evas_Object *content, const char *item_style) EINA_ARG_NONNULL(1, 5);
28764    /**
28765     * @brief Insert a new item into the naviframe after item @p after.
28766     *
28767     * @param after The naviframe item to insert after.
28768     * @param title_label The label in the title area. The name of the title
28769     *        label part is "elm.text.title"
28770     * @param prev_btn The button to go to the previous item. If it is NULL,
28771     *        then naviframe will create a back button automatically. The name of
28772     *        the prev_btn part is "elm.swallow.prev_btn"
28773     * @param next_btn The button to go to the next item. Or It could be just an
28774     *        extra function button. The name of the next_btn part is
28775     *        "elm.swallow.next_btn"
28776     * @param content The main content object. The name of content part is
28777     *        "elm.swallow.content"
28778     * @param item_style The current item style name. @c NULL would be default.
28779     * @return The created item or @c NULL upon failure.
28780     *
28781     * The item is inserted into the naviframe straight away without any
28782     * transition operations. This item will be deleted when it is popped.
28783     *
28784     * @see also elm_naviframe_item_style_set()
28785     * @see also elm_naviframe_item_push()
28786     * @see also elm_naviframe_item_insert_before()
28787     *
28788     * The following styles are available for this item:
28789     * @li @c "default"
28790     *
28791     * @ingroup Naviframe
28792     */
28793    EAPI Elm_Object_Item    *elm_naviframe_item_insert_after(Elm_Object_Item *after, const char *title_label, Evas_Object *prev_btn, Evas_Object *next_btn, Evas_Object *content, const char *item_style) EINA_ARG_NONNULL(1, 5);
28794    /**
28795     * @brief Pop an item that is on top of the stack
28796     *
28797     * @param obj The naviframe object
28798     * @return @c NULL or the content object(if the
28799     *         elm_naviframe_content_preserve_on_pop_get is true).
28800     *
28801     * This pops an item that is on the top(visible) of the naviframe, makes it
28802     * disappear, then deletes the item. The item that was underneath it on the
28803     * stack will become visible.
28804     *
28805     * @see also elm_naviframe_content_preserve_on_pop_get()
28806     *
28807     * @ingroup Naviframe
28808     */
28809    EAPI Evas_Object        *elm_naviframe_item_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
28810    /**
28811     * @brief Pop the items between the top and the above one on the given item.
28812     *
28813     * @param it The naviframe item
28814     *
28815     * @ingroup Naviframe
28816     */
28817    EAPI void                elm_naviframe_item_pop_to(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28818    /**
28819    * Promote an item already in the naviframe stack to the top of the stack
28820    *
28821    * @param it The naviframe item
28822    *
28823    * This will take the indicated item and promote it to the top of the stack
28824    * as if it had been pushed there. The item must already be inside the
28825    * naviframe stack to work.
28826    *
28827    */
28828    EAPI void                elm_naviframe_item_promote(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28829    /**
28830     * @brief Delete the given item instantly.
28831     *
28832     * @param it The naviframe item
28833     *
28834     * This just deletes the given item from the naviframe item list instantly.
28835     * So this would not emit any signals for view transitions but just change
28836     * the current view if the given item is a top one.
28837     *
28838     * @ingroup Naviframe
28839     */
28840    EAPI void                elm_naviframe_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28841    /**
28842     * @brief preserve the content objects when items are popped.
28843     *
28844     * @param obj The naviframe object
28845     * @param preserve Enable the preserve mode if EINA_TRUE, disable otherwise
28846     *
28847     * @see also elm_naviframe_content_preserve_on_pop_get()
28848     *
28849     * @ingroup Naviframe
28850     */
28851    EAPI void                elm_naviframe_content_preserve_on_pop_set(Evas_Object *obj, Eina_Bool preserve) EINA_ARG_NONNULL(1);
28852    /**
28853     * @brief Get a value whether preserve mode is enabled or not.
28854     *
28855     * @param obj The naviframe object
28856     * @return If @c EINA_TRUE, preserve mode is enabled
28857     *
28858     * @see also elm_naviframe_content_preserve_on_pop_set()
28859     *
28860     * @ingroup Naviframe
28861     */
28862    EAPI Eina_Bool           elm_naviframe_content_preserve_on_pop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28863    /**
28864     * @brief Get a top item on the naviframe stack
28865     *
28866     * @param obj The naviframe object
28867     * @return The top item on the naviframe stack or @c NULL, if the stack is
28868     *         empty
28869     *
28870     * @ingroup Naviframe
28871     */
28872    EAPI Elm_Object_Item    *elm_naviframe_top_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28873    /**
28874     * @brief Get a bottom item on the naviframe stack
28875     *
28876     * @param obj The naviframe object
28877     * @return The bottom item on the naviframe stack or @c NULL, if the stack is
28878     *         empty
28879     *
28880     * @ingroup Naviframe
28881     */
28882    EAPI Elm_Object_Item    *elm_naviframe_bottom_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28883    /**
28884     * @brief Set an item style
28885     *
28886     * @param obj The naviframe item
28887     * @param item_style The current item style name. @c NULL would be default
28888     *
28889     * The following styles are available for this item:
28890     * @li @c "default"
28891     *
28892     * @see also elm_naviframe_item_style_get()
28893     *
28894     * @ingroup Naviframe
28895     */
28896    EAPI void                elm_naviframe_item_style_set(Elm_Object_Item *it, const char *item_style) EINA_ARG_NONNULL(1);
28897    /**
28898     * @brief Get an item style
28899     *
28900     * @param obj The naviframe item
28901     * @return The current item style name
28902     *
28903     * @see also elm_naviframe_item_style_set()
28904     *
28905     * @ingroup Naviframe
28906     */
28907    EAPI const char         *elm_naviframe_item_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28908    /**
28909     * @brief Show/Hide the title area
28910     *
28911     * @param it The naviframe item
28912     * @param visible If @c EINA_TRUE, title area will be visible, hidden
28913     *        otherwise
28914     *
28915     * When the title area is invisible, then the controls would be hidden so as     * to expand the content area to full-size.
28916     *
28917     * @see also elm_naviframe_item_title_visible_get()
28918     *
28919     * @ingroup Naviframe
28920     */
28921    EAPI void                elm_naviframe_item_title_visible_set(Elm_Object_Item *it, Eina_Bool visible) EINA_ARG_NONNULL(1);
28922    /**
28923     * @brief Get a value whether title area is visible or not.
28924     *
28925     * @param it The naviframe item
28926     * @return If @c EINA_TRUE, title area is visible
28927     *
28928     * @see also elm_naviframe_item_title_visible_set()
28929     *
28930     * @ingroup Naviframe
28931     */
28932    EAPI Eina_Bool           elm_naviframe_item_title_visible_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28933
28934    /**
28935     * @brief Set creating prev button automatically or not
28936     *
28937     * @param obj The naviframe object
28938     * @param auto_pushed If @c EINA_TRUE, the previous button(back button) will
28939     *        be created internally when you pass the @c NULL to the prev_btn
28940     *        parameter in elm_naviframe_item_push
28941     *
28942     * @see also elm_naviframe_item_push()
28943     */
28944    EAPI void                elm_naviframe_prev_btn_auto_pushed_set(Evas_Object *obj, Eina_Bool auto_pushed) EINA_ARG_NONNULL(1);
28945    /**
28946     * @brief Get a value whether prev button(back button) will be auto pushed or
28947     *        not.
28948     *
28949     * @param obj The naviframe object
28950     * @return If @c EINA_TRUE, prev button will be auto pushed.
28951     *
28952     * @see also elm_naviframe_item_push()
28953     *           elm_naviframe_prev_btn_auto_pushed_set()
28954     */
28955    EAPI Eina_Bool           elm_naviframe_prev_btn_auto_pushed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28956    /**
28957     * @brief Get a list of all the naviframe items.
28958     *
28959     * @param obj The naviframe object
28960     * @return An Eina_Inlist* of naviframe items, #Elm_Object_Item,
28961     * or @c NULL on failure.
28962     */
28963    EAPI Eina_Inlist        *elm_naviframe_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28964
28965     /**
28966     * @}
28967     */
28968
28969    /**
28970     * @defgroup Multibuttonentry Multibuttonentry
28971     *
28972     * A Multibuttonentry is a widget to allow a user enter text and manage it as a number of buttons
28973     * Each text button is inserted by pressing the "return" key. If there is no space in the current row,
28974     * a new button is added to the next row. When a text button is pressed, it will become focused.
28975     * Backspace removes the focus.
28976     * When the Multibuttonentry loses focus items longer than 1 lines are shrunk to one line.
28977     *
28978     * Smart callbacks one can register:
28979     * - @c "item,selected" - when item is selected. May be called on backspace key.
28980     * - @c "item,added" - when a new multibuttonentry item is added.
28981     * - @c "item,deleted" - when a multibuttonentry item is deleted.
28982     * - @c "item,clicked" - selected item of multibuttonentry is clicked.
28983     * - @c "clicked" - when multibuttonentry is clicked.
28984     * - @c "focused" - when multibuttonentry is focused.
28985     * - @c "unfocused" - when multibuttonentry is unfocused.
28986     * - @c "expanded" - when multibuttonentry is expanded.
28987     * - @c "shrank" - when multibuttonentry is shrank.
28988     * - @c "shrank,state,changed" - when shrink mode state of multibuttonentry is changed.
28989     *
28990     * Here is an example on its usage:
28991     * @li @ref multibuttonentry_example
28992     */
28993     /**
28994     * @addtogroup Multibuttonentry
28995     * @{
28996     */
28997
28998    typedef struct _Multibuttonentry_Item Elm_Multibuttonentry_Item;
28999    typedef Eina_Bool (*Elm_Multibuttonentry_Item_Filter_callback) (Evas_Object *obj, const char *item_label, void *item_data, void *data);
29000
29001    /**
29002     * @brief Add a new multibuttonentry to the parent
29003     *
29004     * @param parent The parent object
29005     * @return The new object or NULL if it cannot be created
29006     *
29007     */
29008    EAPI Evas_Object               *elm_multibuttonentry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
29009    /**
29010     * Get the label
29011     *
29012     * @param obj The multibuttonentry object
29013     * @return The label, or NULL if none
29014     *
29015     */
29016    EAPI const char                *elm_multibuttonentry_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29017    /**
29018     * Set the label
29019     *
29020     * @param obj The multibuttonentry object
29021     * @param label The text label string
29022     *
29023     */
29024    EAPI void                       elm_multibuttonentry_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
29025    /**
29026     * Get the entry of the multibuttonentry object
29027     *
29028     * @param obj The multibuttonentry object
29029     * @return The entry object, or NULL if none
29030     *
29031     */
29032    EAPI Evas_Object               *elm_multibuttonentry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29033    /**
29034     * Get the guide text
29035     *
29036     * @param obj The multibuttonentry object
29037     * @return The guide text, or NULL if none
29038     *
29039     */
29040    EAPI const char *               elm_multibuttonentry_guide_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29041    /**
29042     * Set the guide text
29043     *
29044     * @param obj The multibuttonentry object
29045     * @param label The guide text string
29046     *
29047     */
29048    EAPI void                       elm_multibuttonentry_guide_text_set(Evas_Object *obj, const char *guidetext) EINA_ARG_NONNULL(1);
29049    /**
29050     * Get the value of shrink_mode state.
29051     *
29052     * @param obj The multibuttonentry object
29053     * @param the value of shrink mode state.
29054     *
29055     */
29056    EAPI int                        elm_multibuttonentry_shrink_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29057    /**
29058     * Set/Unset the multibuttonentry to shrink mode state of single line
29059     *
29060     * @param obj The multibuttonentry object
29061     * @param the value of shrink_mode state. set this to 1 to set the multibuttonentry to shrink state of single line. set this to 0 to unset the contracted state.
29062     *
29063     */
29064    EAPI void                       elm_multibuttonentry_shrink_mode_set(Evas_Object *obj, int shrink) EINA_ARG_NONNULL(1);
29065    /**
29066     * Prepend a new item to the multibuttonentry
29067     *
29068     * @param obj The multibuttonentry object
29069     * @param label The label of new item
29070     * @param data The ponter to the data to be attached
29071     * @return A handle to the item added or NULL if not possible
29072     *
29073     */
29074    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const char *label, void *data) EINA_ARG_NONNULL(1);
29075    /**
29076     * Append a new item to the multibuttonentry
29077     *
29078     * @param obj The multibuttonentry object
29079     * @param label The label of new item
29080     * @param data The ponter to the data to be attached
29081     * @return A handle to the item added or NULL if not possible
29082     *
29083     */
29084    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const char *label, void *data) EINA_ARG_NONNULL(1);
29085    /**
29086     * Add a new item to the multibuttonentry before the indicated object
29087     *
29088     * reference.
29089     * @param obj The multibuttonentry object
29090     * @param before The item before which to add it
29091     * @param label The label of new item
29092     * @param data The ponter to the data to be attached
29093     * @return A handle to the item added or NULL if not possible
29094     *
29095     */
29096    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj, Elm_Multibuttonentry_Item *before, const char *label, void *data) EINA_ARG_NONNULL(1);
29097    /**
29098     * Add a new item to the multibuttonentry after the indicated object
29099     *
29100     * @param obj The multibuttonentry object
29101     * @param after The item after which to add it
29102     * @param label The label of new item
29103     * @param data The ponter to the data to be attached
29104     * @return A handle to the item added or NULL if not possible
29105     *
29106     */
29107    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_insert_after(Evas_Object *obj, Elm_Multibuttonentry_Item *after, const char *label, void *data) EINA_ARG_NONNULL(1);
29108    /**
29109     * Get a list of items in the multibuttonentry
29110     *
29111     * @param obj The multibuttonentry object
29112     * @return The list of items, or NULL if none
29113     *
29114     */
29115    EAPI const Eina_List           *elm_multibuttonentry_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29116    /**
29117     * Get the first item in the multibuttonentry
29118     *
29119     * @param obj The multibuttonentry object
29120     * @return The first item, or NULL if none
29121     *
29122     */
29123    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29124    /**
29125     * Get the last item in the multibuttonentry
29126     *
29127     * @param obj The multibuttonentry object
29128     * @return The last item, or NULL if none
29129     *
29130     */
29131    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29132    /**
29133     * Get the selected item in the multibuttonentry
29134     *
29135     * @param obj The multibuttonentry object
29136     * @return The selected item, or NULL if none
29137     *
29138     */
29139    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29140    /**
29141     * Set the selected state of an item
29142     *
29143     * @param item The item
29144     * @param selected if it's EINA_TRUE, select the item otherwise, unselect the item
29145     *
29146     */
29147    EAPI void                       elm_multibuttonentry_item_select(Elm_Multibuttonentry_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
29148    /**
29149    * unselect all items.
29150    *
29151    * @param obj The multibuttonentry object
29152    *
29153    */
29154    EAPI void                       elm_multibuttonentry_item_unselect_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
29155   /**
29156    * Delete a given item
29157    *
29158    * @param item The item
29159    *
29160    */
29161    EAPI void                       elm_multibuttonentry_item_del(Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29162   /**
29163    * Remove all items in the multibuttonentry.
29164    *
29165    * @param obj The multibuttonentry object
29166    *
29167    */
29168    EAPI void                       elm_multibuttonentry_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
29169   /**
29170    * Get the label of a given item
29171    *
29172    * @param item The item
29173    * @return The label of a given item, or NULL if none
29174    *
29175    */
29176    EAPI const char                *elm_multibuttonentry_item_label_get(const Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29177   /**
29178    * Set the label of a given item
29179    *
29180    * @param item The item
29181    * @param label The text label string
29182    *
29183    */
29184    EAPI void                       elm_multibuttonentry_item_label_set(Elm_Multibuttonentry_Item *item, const char *str) EINA_ARG_NONNULL(1);
29185   /**
29186    * Get the previous item in the multibuttonentry
29187    *
29188    * @param item The item
29189    * @return The item before the item @p item
29190    *
29191    */
29192    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_prev_get(const Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29193   /**
29194    * Get the next item in the multibuttonentry
29195    *
29196    * @param item The item
29197    * @return The item after the item @p item
29198    *
29199    */
29200    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_next_get(const Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29201   /**
29202    * Append a item filter function for text inserted in the Multibuttonentry
29203    *
29204    * Append the given callback to the list. This functions will be called
29205    * whenever any text is inserted into the Multibuttonentry, with the text to be inserted
29206    * as a parameter. The callback function is free to alter the text in any way
29207    * it wants, but it must remember to free the given pointer and update it.
29208    * If the new text is to be discarded, the function can free it and set it text
29209    * parameter to NULL. This will also prevent any following filters from being
29210    * called.
29211    *
29212    * @param obj The multibuttonentryentry object
29213    * @param func The function to use as item filter
29214    * @param data User data to pass to @p func
29215    *
29216    */
29217    EAPI void elm_multibuttonentry_item_filter_append(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data) EINA_ARG_NONNULL(1);
29218   /**
29219    * Prepend a filter function for text inserted in the Multibuttentry
29220    *
29221    * Prepend the given callback to the list. See elm_multibuttonentry_item_filter_append()
29222    * for more information
29223    *
29224    * @param obj The multibuttonentry object
29225    * @param func The function to use as text filter
29226    * @param data User data to pass to @p func
29227    *
29228    */
29229    EAPI void elm_multibuttonentry_item_filter_prepend(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data) EINA_ARG_NONNULL(1);
29230   /**
29231    * Remove a filter from the list
29232    *
29233    * Removes the given callback from the filter list. See elm_multibuttonentry_item_filter_append()
29234    * for more information.
29235    *
29236    * @param obj The multibuttonentry object
29237    * @param func The filter function to remove
29238    * @param data The user data passed when adding the function
29239    *
29240    */
29241    EAPI void elm_multibuttonentry_item_filter_remove(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data) EINA_ARG_NONNULL(1);
29242
29243    /**
29244     * @}
29245     */
29246
29247 #ifdef __cplusplus
29248 }
29249 #endif
29250
29251 #endif