elm_box: emit child,removed and child,added, allow smart-recalculate of box.
[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.7.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 in which the widgets will be
33                           layouted.
34
35 @section license License
36
37 LGPL v2 (see COPYING in the base of Elementary's source). This applies to
38 all files in the source tree.
39
40 @section ack Acknowledgements
41 There is a lot that goes into making a widget set, and they don't happen out of
42 nothing. It's like trying to make everyone everywhere happy, regardless of age,
43 gender, race or nationality - and that is really tough. So thanks to people and
44 organisations behind this, as listed in the @ref authors page.
45 */
46
47
48 /**
49  * @defgroup Start Getting Started
50  *
51  * To write an Elementary app, you can get started with the following:
52  *
53 @code
54 #include <Elementary.h>
55 EAPI_MAIN int
56 elm_main(int argc, char **argv)
57 {
58    // create window(s) here and do any application init
59    elm_run(); // run main loop
60    elm_shutdown(); // after mainloop finishes running, shutdown
61    return 0; // exit 0 for exit code
62 }
63 ELM_MAIN()
64 @endcode
65  *
66  * To use autotools (which helps in many ways in the long run, like being able
67  * to immediately create releases of your software directly from your tree
68  * and ensure everything needed to build it is there) you will need a
69  * configure.ac, Makefile.am and autogen.sh file.
70  *
71  * configure.ac:
72  *
73 @verbatim
74 AC_INIT(myapp, 0.0.0, myname@mydomain.com)
75 AC_PREREQ(2.52)
76 AC_CONFIG_SRCDIR(configure.ac)
77 AM_CONFIG_HEADER(config.h)
78 AC_PROG_CC
79 AM_INIT_AUTOMAKE(1.6 dist-bzip2)
80 PKG_CHECK_MODULES([ELEMENTARY], elementary)
81 AC_OUTPUT(Makefile)
82 @endverbatim
83  *
84  * Makefile.am:
85  *
86 @verbatim
87 AUTOMAKE_OPTIONS = 1.4 foreign
88 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in configure depcomp install-sh missing
89
90 INCLUDES = -I$(top_srcdir)
91
92 bin_PROGRAMS = myapp
93
94 myapp_SOURCES = main.c
95 myapp_LDADD = @ELEMENTARY_LIBS@
96 myapp_CFLAGS = @ELEMENTARY_CFLAGS@
97 @endverbatim
98  *
99  * autogen.sh:
100  *
101 @verbatim
102 #!/bin/sh
103 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
104 echo "Running autoheader..." ; autoheader || exit 1
105 echo "Running autoconf..." ; autoconf || exit 1
106 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
107 ./configure "$@"
108 @endverbatim
109  *
110  * To generate all the things needed to bootstrap just run:
111  *
112 @verbatim
113 ./autogen.sh
114 @endverbatim
115  *
116  * This will generate Makefile.in's, the confgure script and everything else.
117  * After this it works like all normal autotools projects:
118 @verbatim
119 ./configure
120 make
121 sudo make install
122 @endverbatim
123  *
124  * Note sudo was assumed to get root permissions, as this would install in
125  * /usr/local which is system-owned. Use any way you like to gain root, or
126  * specify a different prefix with configure:
127  *
128 @verbatim
129 ./confiugre --prefix=$HOME/mysoftware
130 @endverbatim
131  *
132  * Also remember that autotools buys you some useful commands like:
133 @verbatim
134 make uninstall
135 @endverbatim
136  *
137  * This uninstalls the software after it was installed with "make install".
138  * It is very useful to clear up what you built if you wish to clean the
139  * system.
140  *
141 @verbatim
142 make distcheck
143 @endverbatim
144  *
145  * This firstly checks if your build tree is "clean" and ready for
146  * distribution. It also builds a tarball (myapp-0.0.0.tar.gz) that is
147  * ready to upload and distribute to the world, that contains the generated
148  * Makefile.in's and configure script. The users do not need to run
149  * autogen.sh - just configure and on. They don't need autotools installed.
150  * This tarball also builds cleanly, has all the sources it needs to build
151  * included (that is sources for your application, not libraries it depends
152  * on like Elementary). It builds cleanly in a buildroot and does not
153  * contain any files that are temporarily generated like binaries and other
154  * build-generated files, so the tarball is clean, and no need to worry
155  * about cleaning up your tree before packaging.
156  *
157 @verbatim
158 make clean
159 @endverbatim
160  *
161  * This cleans up all build files (binaries, objects etc.) from the tree.
162  *
163 @verbatim
164 make distclean
165 @endverbatim
166  *
167  * This cleans out all files from the build and from configure's output too.
168  *
169 @verbatim
170 make maintainer-clean
171 @endverbatim
172  *
173  * This deletes all the files autogen.sh will produce so the tree is clean
174  * to be put into a revision-control system (like CVS, SVN or GIT for example).
175  *
176  * There is a more advanced way of making use of the quicklaunch infrastructure
177  * in Elementary (which will not be covered here due to its more advanced
178  * nature).
179  *
180  * Now let's actually create an interactive "Hello World" gui that you can
181  * click the ok button to exit. It's more code because this now does something
182  * much more significant, but it's still very simple:
183  *
184 @code
185 #include <Elementary.h>
186
187 static void
188 on_done(void *data, Evas_Object *obj, void *event_info)
189 {
190    // quit the mainloop (elm_run function will return)
191    elm_exit();
192 }
193
194 EAPI_MAIN int
195 elm_main(int argc, char **argv)
196 {
197    Evas_Object *win, *bg, *box, *lab, *btn;
198
199    // new window - do the usual and give it a name, title and delete handler
200    win = elm_win_add(NULL, "hello", ELM_WIN_BASIC);
201    elm_win_title_set(win, "Hello");
202    // when the user clicks "close" on a window there is a request to delete
203    evas_object_smart_callback_add(win, "delete,request", on_done, NULL);
204
205    // add a standard bg
206    bg = elm_bg_add(win);
207    // add object as a resize object for the window (controls window minimum
208    // size as well as gets resized if window is resized)
209    elm_win_resize_object_add(win, bg);
210    evas_object_show(bg);
211
212    // add a box object - default is vertical. a box holds children in a row,
213    // either horizontally or vertically. nothing more.
214    box = elm_box_add(win);
215    // make the box hotizontal
216    elm_box_horizontal_set(box, EINA_TRUE);
217    // add object as a resize object for the window (controls window minimum
218    // size as well as gets resized if window is resized)
219    elm_win_resize_object_add(win, box);
220    evas_object_show(box);
221
222    // add a label widget, set the text and put it in the pad frame
223    lab = elm_label_add(win);
224    // set default text of the label
225    elm_object_text_set(lab, "Hello out there world!");
226    // pack the label at the end of the box
227    elm_box_pack_end(box, lab);
228    evas_object_show(lab);
229
230    // add an ok button
231    btn = elm_button_add(win);
232    // set default text of button to "OK"
233    elm_object_text_set(btn, "OK");
234    // pack the button at the end of the box
235    elm_box_pack_end(box, btn);
236    evas_object_show(btn);
237    // call on_done when button is clicked
238    evas_object_smart_callback_add(btn, "clicked", on_done, NULL);
239
240    // now we are done, show the window
241    evas_object_show(win);
242
243    // run the mainloop and process events and callbacks
244    elm_run();
245    return 0;
246 }
247 ELM_MAIN()
248 @endcode
249    *
250    */
251
252 /**
253 @page authors Authors
254 @author Carsten Haitzler <raster@@rasterman.com>
255 @author Gustavo Sverzut Barbieri <barbieri@@profusion.mobi>
256 @author Cedric Bail <cedric.bail@@free.fr>
257 @author Vincent Torri <vtorri@@univ-evry.fr>
258 @author Daniel Kolesa <quaker66@@gmail.com>
259 @author Jaime Thomas <avi.thomas@@gmail.com>
260 @author Swisscom - http://www.swisscom.ch/
261 @author Christopher Michael <devilhorns@@comcast.net>
262 @author Marco Trevisan (Treviño) <mail@@3v1n0.net>
263 @author Michael Bouchaud <michael.bouchaud@@gmail.com>
264 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
265 @author Brian Wang <brian.wang.0721@@gmail.com>
266 @author Mike Blumenkrantz (zmike) <mike@@zentific.com>
267 @author Samsung Electronics <tbd>
268 @author Samsung SAIT <tbd>
269 @author Brett Nash <nash@@nash.id.au>
270 @author Bruno Dilly <bdilly@@profusion.mobi>
271 @author Rafael Fonseca <rfonseca@@profusion.mobi>
272 @author Chuneon Park <hermet@@hermet.pe.kr>
273 @author Woohyun Jung <wh0705.jung@@samsung.com>
274 @author Jaehwan Kim <jae.hwan.kim@@samsung.com>
275 @author Wonguk Jeong <wonguk.jeong@@samsung.com>
276 @author Leandro A. F. Pereira <leandro@@profusion.mobi>
277 @author Helen Fornazier <helen.fornazier@@profusion.mobi>
278 @author Gustavo Lima Chaves <glima@@profusion.mobi>
279 @author Fabiano Fidêncio <fidencio@@profusion.mobi>
280 @author Tiago Falcão <tiago@@profusion.mobi>
281 @author Otavio Pontes <otavio@@profusion.mobi>
282 @author Viktor Kojouharov <vkojouharov@@gmail.com>
283 @author Daniel Juyung Seo (SeoZ) <juyung.seo@@samsung.com> <seojuyung2@@gmail.com>
284 @author Sangho Park <sangho.g.park@@samsung.com> <gouache95@@gmail.com>
285 @author Rajeev Ranjan (Rajeev) <rajeev.r@@samsung.com> <rajeev.jnnce@@gmail.com>
286 @author Seunggyun Kim <sgyun.kim@@samsung.com> <tmdrbs@@gmail.com>
287 @author Sohyun Kim <anna1014.kim@@samsung.com> <sohyun.anna@@gmail.com>
288 @author Jihoon Kim <jihoon48.kim@@samsung.com>
289 @author Jeonghyun Yun (arosis) <jh0506.yun@@samsung.com>
290 @author Tom Hacohen <tom@@stosb.com>
291 @author Aharon Hillel <a.hillel@@partner.samsung.com>
292 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
293 @author Shinwoo Kim <kimcinoo@@gmail.com>
294 @author Govindaraju SM <govi.sm@@samsung.com> <govism@@gmail.com>
295 @author Prince Kumar Dubey <prince.dubey@@samsung.com> <prince.dubey@@gmail.com>
296 @author Sung W. Park <sungwoo@gmail.com>
297 @author Thierry el Borgi <thierry@substantiel.fr>
298 @author Shilpa Singh <shilpa.singh@samsung.com> <shilpasingh.o@gmail.com>
299 @author Chanwook Jung <joey.jung@samsung.com>
300
301 Please contact <enlightenment-devel@lists.sourceforge.net> to get in
302 contact with the developers and maintainers.
303  */
304
305 #ifndef ELEMENTARY_H
306 #define ELEMENTARY_H
307
308 /**
309  * @file Elementary.h
310  * @brief Elementary's API
311  *
312  * Elementary API.
313  */
314
315 @ELM_UNIX_DEF@ ELM_UNIX
316 @ELM_WIN32_DEF@ ELM_WIN32
317 @ELM_WINCE_DEF@ ELM_WINCE
318 @ELM_EDBUS_DEF@ ELM_EDBUS
319 @ELM_EFREET_DEF@ ELM_EFREET
320 @ELM_ETHUMB_DEF@ ELM_ETHUMB
321 @ELM_EMAP_DEF@ ELM_EMAP
322 @ELM_DEBUG_DEF@ ELM_DEBUG
323 @ELM_ALLOCA_H_DEF@ ELM_ALLOCA_H
324 @ELM_LIBINTL_H_DEF@ ELM_LIBINTL_H
325
326 /* Standard headers for standard system calls etc. */
327 #include <stdio.h>
328 #include <stdlib.h>
329 #include <unistd.h>
330 #include <string.h>
331 #include <sys/types.h>
332 #include <sys/stat.h>
333 #include <sys/time.h>
334 #include <sys/param.h>
335 #include <dlfcn.h>
336 #include <math.h>
337 #include <fnmatch.h>
338 #include <limits.h>
339 #include <ctype.h>
340 #include <time.h>
341 #include <dirent.h>
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 #include <Evas_GL.h>
372 #include <Ecore.h>
373 #include <Ecore_Evas.h>
374 #include <Ecore_File.h>
375 #include <Ecore_IMF.h>
376 #include <Ecore_Con.h>
377 #include <Edje.h>
378
379 #ifdef ELM_EDBUS
380 # include <E_DBus.h>
381 #endif
382
383 #ifdef ELM_EFREET
384 # include <Efreet.h>
385 # include <Efreet_Mime.h>
386 # include <Efreet_Trash.h>
387 #endif
388
389 #ifdef ELM_ETHUMB
390 # include <Ethumb_Client.h>
391 #endif
392
393 #ifdef ELM_EMAP
394 # include <EMap.h>
395 #endif
396
397 #ifdef EAPI
398 # undef EAPI
399 #endif
400
401 #ifdef _WIN32
402 # ifdef ELEMENTARY_BUILD
403 #  ifdef DLL_EXPORT
404 #   define EAPI __declspec(dllexport)
405 #  else
406 #   define EAPI
407 #  endif /* ! DLL_EXPORT */
408 # else
409 #  define EAPI __declspec(dllimport)
410 # endif /* ! EFL_EVAS_BUILD */
411 #else
412 # ifdef __GNUC__
413 #  if __GNUC__ >= 4
414 #   define EAPI __attribute__ ((visibility("default")))
415 #  else
416 #   define EAPI
417 #  endif
418 # else
419 #  define EAPI
420 # endif
421 #endif /* ! _WIN32 */
422
423 #ifdef _WIN32
424 # define EAPI_MAIN
425 #else
426 # define EAPI_MAIN EAPI
427 #endif
428
429 /* allow usage from c++ */
430 #ifdef __cplusplus
431 extern "C" {
432 #endif
433
434 #define ELM_VERSION_MAJOR @VMAJ@
435 #define ELM_VERSION_MINOR @VMIN@
436
437    typedef struct _Elm_Version
438      {
439         int major;
440         int minor;
441         int micro;
442         int revision;
443      } Elm_Version;
444
445    EAPI extern Elm_Version *elm_version;
446
447 /* handy macros */
448 #define ELM_RECTS_INTERSECT(x, y, w, h, xx, yy, ww, hh) (((x) < ((xx) + (ww))) && ((y) < ((yy) + (hh))) && (((x) + (w)) > (xx)) && (((y) + (h)) > (yy)))
449 #define ELM_PI 3.14159265358979323846
450
451    /**
452     * @defgroup General General
453     *
454     * @brief General Elementary API. Functions that don't relate to
455     * Elementary objects specifically.
456     *
457     * Here are documented functions which init/shutdown the library,
458     * that apply to generic Elementary objects, that deal with
459     * configuration, et cetera.
460     *
461     * @ref general_functions_example_page "This" example contemplates
462     * some of these functions.
463     */
464
465    /**
466     * @addtogroup General
467     * @{
468     */
469
470   /**
471    * Defines couple of standard Evas_Object layers to be used
472    * with evas_object_layer_set().
473    *
474    * @note whenever extending with new values, try to keep some padding
475    *       to siblings so there is room for further extensions.
476    */
477   typedef enum _Elm_Object_Layer
478     {
479        ELM_OBJECT_LAYER_BACKGROUND = EVAS_LAYER_MIN + 64, /**< where to place backgrounds */
480        ELM_OBJECT_LAYER_DEFAULT = 0, /**< Evas_Object default layer (and thus for Elementary) */
481        ELM_OBJECT_LAYER_FOCUS = EVAS_LAYER_MAX - 128, /**< where focus object visualization is */
482        ELM_OBJECT_LAYER_TOOLTIP = EVAS_LAYER_MAX - 64, /**< where to show tooltips */
483        ELM_OBJECT_LAYER_CURSOR = EVAS_LAYER_MAX - 32, /**< where to show cursors */
484        ELM_OBJECT_LAYER_LAST /**< last layer known by Elementary */
485     } Elm_Object_Layer;
486
487 /**************************************************************************/
488    EAPI extern int ELM_ECORE_EVENT_ETHUMB_CONNECT;
489
490    /**
491     * Emitted when any Elementary's policy value is changed.
492     */
493    EAPI extern int ELM_EVENT_POLICY_CHANGED;
494
495    /**
496     * @typedef Elm_Event_Policy_Changed
497     *
498     * Data on the event when an Elementary policy has changed
499     */
500     typedef struct _Elm_Event_Policy_Changed Elm_Event_Policy_Changed;
501
502    /**
503     * @struct _Elm_Event_Policy_Changed
504     *
505     * Data on the event when an Elementary policy has changed
506     */
507     struct _Elm_Event_Policy_Changed
508      {
509         unsigned int policy; /**< the policy identifier */
510         int          new_value; /**< value the policy had before the change */
511         int          old_value; /**< new value the policy got */
512     };
513
514    /**
515     * Policy identifiers.
516     */
517     typedef enum _Elm_Policy
518     {
519         ELM_POLICY_QUIT, /**< under which circumstances the application
520                           * should quit automatically. @see
521                           * Elm_Policy_Quit.
522                           */
523         ELM_POLICY_LAST
524     } Elm_Policy; /**< Elementary policy identifiers/groups enumeration.  @see elm_policy_set()
525  */
526
527    typedef enum _Elm_Policy_Quit
528      {
529         ELM_POLICY_QUIT_NONE = 0, /**< never quit the application
530                                    * automatically */
531         ELM_POLICY_QUIT_LAST_WINDOW_CLOSED /**< quit when the
532                                             * application's last
533                                             * window is closed */
534      } Elm_Policy_Quit; /**< Possible values for the #ELM_POLICY_QUIT policy */
535
536    typedef enum _Elm_Focus_Direction
537      {
538         ELM_FOCUS_PREVIOUS,
539         ELM_FOCUS_NEXT
540      } Elm_Focus_Direction;
541
542    typedef enum _Elm_Text_Format
543      {
544         ELM_TEXT_FORMAT_PLAIN_UTF8,
545         ELM_TEXT_FORMAT_MARKUP_UTF8
546      } Elm_Text_Format;
547
548    /**
549     * Line wrapping types.
550     */
551    typedef enum _Elm_Wrap_Type
552      {
553         ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
554         ELM_WRAP_CHAR, /**< Char wrap - wrap between characters */
555         ELM_WRAP_WORD, /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
556         ELM_WRAP_MIXED, /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
557         ELM_WRAP_LAST
558      } Elm_Wrap_Type;
559
560    typedef enum
561      {
562         ELM_INPUT_PANEL_LAYOUT_NORMAL,          /**< Default layout */
563         ELM_INPUT_PANEL_LAYOUT_NUMBER,          /**< Number layout */
564         ELM_INPUT_PANEL_LAYOUT_EMAIL,           /**< Email layout */
565         ELM_INPUT_PANEL_LAYOUT_URL,             /**< URL layout */
566         ELM_INPUT_PANEL_LAYOUT_PHONENUMBER,     /**< Phone Number layout */
567         ELM_INPUT_PANEL_LAYOUT_IP,              /**< IP layout */
568         ELM_INPUT_PANEL_LAYOUT_MONTH,           /**< Month layout */
569         ELM_INPUT_PANEL_LAYOUT_NUMBERONLY,      /**< Number Only layout */
570         ELM_INPUT_PANEL_LAYOUT_INVALID
571      } Elm_Input_Panel_Layout;
572
573    /**
574     * @typedef Elm_Object_Item
575     * An Elementary Object item handle.
576     * @ingroup General
577     */
578    typedef struct _Elm_Object_Item Elm_Object_Item;
579
580
581    /**
582     * Called back when a widget's tooltip is activated and needs content.
583     * @param data user-data given to elm_object_tooltip_content_cb_set()
584     * @param obj owner widget.
585     * @param tooltip The tooltip object (affix content to this!)
586     */
587    typedef Evas_Object *(*Elm_Tooltip_Content_Cb) (void *data, Evas_Object *obj, Evas_Object *tooltip);
588
589    /**
590     * Called back when a widget's item tooltip is activated and needs content.
591     * @param data user-data given to elm_object_tooltip_content_cb_set()
592     * @param obj owner widget.
593     * @param tooltip The tooltip object (affix content to this!)
594     * @param item context dependent item. As an example, if tooltip was
595     *        set on Elm_List_Item, then it is of this type.
596     */
597    typedef Evas_Object *(*Elm_Tooltip_Item_Content_Cb) (void *data, Evas_Object *obj, Evas_Object *tooltip, void *item);
598
599    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. */
600
601 #ifndef ELM_LIB_QUICKLAUNCH
602 #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 */
603 #else
604 #define ELM_MAIN() int main(int argc, char **argv) {return elm_quicklaunch_fallback(argc, argv);} /**< macro to be used after the elm_main() function */
605 #endif
606
607 /**************************************************************************/
608    /* General calls */
609
610    /**
611     * Initialize Elementary
612     *
613     * @param[in] argc System's argument count value
614     * @param[in] argv System's pointer to array of argument strings
615     * @return The init counter value.
616     *
617     * This function initializes Elementary and increments a counter of
618     * the number of calls to it. It returns the new counter's value.
619     *
620     * @warning This call is exported only for use by the @c ELM_MAIN()
621     * macro. There is no need to use this if you use this macro (which
622     * is highly advisable). An elm_main() should contain the entry
623     * point code for your application, having the same prototype as
624     * elm_init(), and @b not being static (putting the @c EAPI symbol
625     * in front of its type declaration is advisable). The @c
626     * ELM_MAIN() call should be placed just after it.
627     *
628     * Example:
629     * @dontinclude bg_example_01.c
630     * @skip static void
631     * @until ELM_MAIN
632     *
633     * See the full @ref bg_example_01_c "example".
634     *
635     * @see elm_shutdown().
636     * @ingroup General
637     */
638    EAPI int          elm_init(int argc, char **argv);
639
640    /**
641     * Shut down Elementary
642     *
643     * @return The init counter value.
644     *
645     * This should be called at the end of your application, just
646     * before it ceases to do any more processing. This will clean up
647     * any permanent resources your application may have allocated via
648     * Elementary that would otherwise persist.
649     *
650     * @see elm_init() for an example
651     *
652     * @ingroup General
653     */
654    EAPI int          elm_shutdown(void);
655
656    /**
657     * Run Elementary's main loop
658     *
659     * This call should be issued just after all initialization is
660     * completed. This function will not return until elm_exit() is
661     * called. It will keep looping, running the main
662     * (event/processing) loop for Elementary.
663     *
664     * @see elm_init() for an example
665     *
666     * @ingroup General
667     */
668    EAPI void         elm_run(void);
669
670    /**
671     * Exit Elementary's main loop
672     *
673     * If this call is issued, it will flag the main loop to cease
674     * processing and return back to its parent function (usually your
675     * elm_main() function).
676     *
677     * @see elm_init() for an example. There, just after a request to
678     * close the window comes, the main loop will be left.
679     *
680     * @note By using the #ELM_POLICY_QUIT on your Elementary
681     * applications, you'll this function called automatically for you.
682     *
683     * @ingroup General
684     */
685    EAPI void         elm_exit(void);
686
687    /**
688     * Provide information in order to make Elementary determine the @b
689     * run time location of the software in question, so other data files
690     * such as images, sound files, executable utilities, libraries,
691     * modules and locale files can be found.
692     *
693     * @param mainfunc This is your application's main function name,
694     *        whose binary's location is to be found. Providing @c NULL
695     *        will make Elementary not to use it
696     * @param dom This will be used as the application's "domain", in the
697     *        form of a prefix to any environment variables that may
698     *        override prefix detection and the directory name, inside the
699     *        standard share or data directories, where the software's
700     *        data files will be looked for.
701     * @param checkfile This is an (optional) magic file's path to check
702     *        for existence (and it must be located in the data directory,
703     *        under the share directory provided above). Its presence will
704     *        help determine the prefix found was correct. Pass @c NULL if
705     *        the check is not to be done.
706     *
707     * This function allows one to re-locate the application somewhere
708     * else after compilation, if the developer wishes for easier
709     * distribution of pre-compiled binaries.
710     *
711     * The prefix system is designed to locate where the given software is
712     * installed (under a common path prefix) at run time and then report
713     * specific locations of this prefix and common directories inside
714     * this prefix like the binary, library, data and locale directories,
715     * through the @c elm_app_*_get() family of functions.
716     *
717     * Call elm_app_info_set() early on before you change working
718     * directory or anything about @c argv[0], so it gets accurate
719     * information.
720     *
721     * It will then try and trace back which file @p mainfunc comes from,
722     * if provided, to determine the application's prefix directory.
723     *
724     * The @p dom parameter provides a string prefix to prepend before
725     * environment variables, allowing a fallback to @b specific
726     * environment variables to locate the software. You would most
727     * probably provide a lowercase string there, because it will also
728     * serve as directory domain, explained next. For environment
729     * variables purposes, this string is made uppercase. For example if
730     * @c "myapp" is provided as the prefix, then the program would expect
731     * @c "MYAPP_PREFIX" as a master environment variable to specify the
732     * exact install prefix for the software, or more specific environment
733     * variables like @c "MYAPP_BIN_DIR", @c "MYAPP_LIB_DIR", @c
734     * "MYAPP_DATA_DIR" and @c "MYAPP_LOCALE_DIR", which could be set by
735     * the user or scripts before launching. If not provided (@c NULL),
736     * environment variables will not be used to override compiled-in
737     * defaults or auto detections.
738     *
739     * The @p dom string also provides a subdirectory inside the system
740     * shared data directory for data files. For example, if the system
741     * directory is @c /usr/local/share, then this directory name is
742     * appended, creating @c /usr/local/share/myapp, if it @p was @c
743     * "myapp". It is expected the application installs data files in
744     * this directory.
745     *
746     * The @p checkfile is a file name or path of something inside the
747     * share or data directory to be used to test that the prefix
748     * detection worked. For example, your app will install a wallpaper
749     * image as @c /usr/local/share/myapp/images/wallpaper.jpg and so to
750     * check that this worked, provide @c "images/wallpaper.jpg" as the @p
751     * checkfile string.
752     *
753     * @see elm_app_compile_bin_dir_set()
754     * @see elm_app_compile_lib_dir_set()
755     * @see elm_app_compile_data_dir_set()
756     * @see elm_app_compile_locale_set()
757     * @see elm_app_prefix_dir_get()
758     * @see elm_app_bin_dir_get()
759     * @see elm_app_lib_dir_get()
760     * @see elm_app_data_dir_get()
761     * @see elm_app_locale_dir_get()
762     */
763    EAPI void         elm_app_info_set(void *mainfunc, const char *dom, const char *checkfile);
764
765    /**
766     * Provide information on the @b fallback application's binaries
767     * directory, on scenarios where they get overriden by
768     * elm_app_info_set().
769     *
770     * @param dir The path to the default binaries directory (compile time
771     * one)
772     *
773     * @note Elementary will as well use this path to determine actual
774     * names of binaries' directory paths, maybe changing it to be @c
775     * something/local/bin instead of @c something/bin, only, for
776     * example.
777     *
778     * @warning You should call this function @b before
779     * elm_app_info_set().
780     */
781    EAPI void         elm_app_compile_bin_dir_set(const char *dir);
782
783    /**
784     * Provide information on the @b fallback application's libraries
785     * directory, on scenarios where they get overriden by
786     * elm_app_info_set().
787     *
788     * @param dir The path to the default libraries directory (compile
789     * time one)
790     *
791     * @note Elementary will as well use this path to determine actual
792     * names of libraries' directory paths, maybe changing it to be @c
793     * something/lib32 or @c something/lib64 instead of @c something/lib,
794     * only, for example.
795     *
796     * @warning You should call this function @b before
797     * elm_app_info_set().
798     */
799    EAPI void         elm_app_compile_lib_dir_set(const char *dir);
800
801    /**
802     * Provide information on the @b fallback application's data
803     * directory, on scenarios where they get overriden by
804     * elm_app_info_set().
805     *
806     * @param dir The path to the default data directory (compile time
807     * one)
808     *
809     * @note Elementary will as well use this path to determine actual
810     * names of data directory paths, maybe changing it to be @c
811     * something/local/share instead of @c something/share, only, for
812     * example.
813     *
814     * @warning You should call this function @b before
815     * elm_app_info_set().
816     */
817    EAPI void         elm_app_compile_data_dir_set(const char *dir);
818
819    /**
820     * Provide information on the @b fallback application's locale
821     * directory, on scenarios where they get overriden by
822     * elm_app_info_set().
823     *
824     * @param dir The path to the default locale directory (compile time
825     * one)
826     *
827     * @warning You should call this function @b before
828     * elm_app_info_set().
829     */
830    EAPI void         elm_app_compile_locale_set(const char *dir);
831
832    /**
833     * Retrieve the application's run time prefix directory, as set by
834     * elm_app_info_set() and the way (environment) the application was
835     * run from.
836     *
837     * @return The directory prefix the application is actually using
838     */
839    EAPI const char  *elm_app_prefix_dir_get(void);
840
841    /**
842     * Retrieve the application's run time binaries prefix directory, as
843     * set by elm_app_info_set() and the way (environment) the application
844     * was run from.
845     *
846     * @return The binaries directory prefix the application is actually
847     * using
848     */
849    EAPI const char  *elm_app_bin_dir_get(void);
850
851    /**
852     * Retrieve the application's run time libraries prefix directory, as
853     * set by elm_app_info_set() and the way (environment) the application
854     * was run from.
855     *
856     * @return The libraries directory prefix the application is actually
857     * using
858     */
859    EAPI const char  *elm_app_lib_dir_get(void);
860
861    /**
862     * Retrieve the application's run time data prefix directory, as
863     * set by elm_app_info_set() and the way (environment) the application
864     * was run from.
865     *
866     * @return The data directory prefix the application is actually
867     * using
868     */
869    EAPI const char  *elm_app_data_dir_get(void);
870
871    /**
872     * Retrieve the application's run time locale prefix directory, as
873     * set by elm_app_info_set() and the way (environment) the application
874     * was run from.
875     *
876     * @return The locale directory prefix the application is actually
877     * using
878     */
879    EAPI const char  *elm_app_locale_dir_get(void);
880
881    EAPI void         elm_quicklaunch_mode_set(Eina_Bool ql_on);
882    EAPI Eina_Bool    elm_quicklaunch_mode_get(void);
883    EAPI int          elm_quicklaunch_init(int argc, char **argv);
884    EAPI int          elm_quicklaunch_sub_init(int argc, char **argv);
885    EAPI int          elm_quicklaunch_sub_shutdown(void);
886    EAPI int          elm_quicklaunch_shutdown(void);
887    EAPI void         elm_quicklaunch_seed(void);
888    EAPI Eina_Bool    elm_quicklaunch_prepare(int argc, char **argv);
889    EAPI Eina_Bool    elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (postfork_func) (void *data), void *postfork_data);
890    EAPI void         elm_quicklaunch_cleanup(void);
891    EAPI int          elm_quicklaunch_fallback(int argc, char **argv);
892    EAPI char        *elm_quicklaunch_exe_path_get(const char *exe);
893
894    EAPI Eina_Bool    elm_need_efreet(void);
895    EAPI Eina_Bool    elm_need_e_dbus(void);
896
897    /**
898     * This must be called before any other function that handle with
899     * elm_thumb objects or ethumb_client instances.
900     *
901     * @ingroup Thumb
902     */
903    EAPI Eina_Bool    elm_need_ethumb(void);
904
905    /**
906     * Set a new policy's value (for a given policy group/identifier).
907     *
908     * @param policy policy identifier, as in @ref Elm_Policy.
909     * @param value policy value, which depends on the identifier
910     *
911     * @return @c EINA_TRUE on success or @c EINA_FALSE, on error.
912     *
913     * Elementary policies define applications' behavior,
914     * somehow. These behaviors are divided in policy groups (see
915     * #Elm_Policy enumeration). This call will emit the Ecore event
916     * #ELM_EVENT_POLICY_CHANGED, which can be hooked at with
917     * handlers. An #Elm_Event_Policy_Changed struct will be passed,
918     * then.
919     *
920     * @note Currently, we have only one policy identifier/group
921     * (#ELM_POLICY_QUIT), which has two possible values.
922     *
923     * @ingroup General
924     */
925    EAPI Eina_Bool    elm_policy_set(unsigned int policy, int value);
926
927    /**
928     * Gets the policy value set for given policy identifier.
929     *
930     * @param policy policy identifier, as in #Elm_Policy.
931     * @return The currently set policy value, for that
932     * identifier. Will be @c 0 if @p policy passed is invalid.
933     *
934     * @ingroup General
935     */
936    EAPI int          elm_policy_get(unsigned int policy);
937
938    /**
939     * Set a label of an object
940     *
941     * @param obj The Elementary object
942     * @param part The text part name to set (NULL for the default label)
943     * @param label The new text of the label
944     *
945     * @note Elementary objects may have many labels (e.g. Action Slider)
946     *
947     * @ingroup General
948     */
949    EAPI void         elm_object_text_part_set(Evas_Object *obj, const char *part, const char *label);
950
951 #define elm_object_text_set(obj, label) elm_object_text_part_set((obj), NULL, (label))
952
953    /**
954     * Get a label of an object
955     *
956     * @param obj The Elementary object
957     * @param part The text part name to get (NULL for the default label)
958     * @return text of the label or NULL for any error
959     *
960     * @note Elementary objects may have many labels (e.g. Action Slider)
961     *
962     * @ingroup General
963     */
964    EAPI const char  *elm_object_text_part_get(const Evas_Object *obj, const char *part);
965
966 #define elm_object_text_get(obj) elm_object_text_part_get((obj), NULL)
967
968    /**
969     * Set a content of an object
970     *
971     * @param obj The Elementary object
972     * @param part The content part name to set (NULL for the default content)
973     * @param content The new content of the object
974     *
975     * @note Elementary objects may have many contents
976     *
977     * @ingroup General
978     */
979    EAPI void elm_object_content_part_set(Evas_Object *obj, const char *part, Evas_Object *content);
980
981 #define elm_object_content_set(obj, content) elm_object_content_part_set((obj), NULL, (content))
982
983    /**
984     * Get a content of an object
985     *
986     * @param obj The Elementary object
987     * @param item The content part name to get (NULL for the default content)
988     * @return content of the object or NULL for any error
989     *
990     * @note Elementary objects may have many contents
991     *
992     * @ingroup General
993     */
994    EAPI Evas_Object *elm_object_content_part_get(const Evas_Object *obj, const char *part);
995
996 #define elm_object_content_get(obj) elm_object_content_part_get((obj), NULL)
997
998    /**
999     * Unset a content of an object
1000     *
1001     * @param obj The Elementary object
1002     * @param item The content part name to unset (NULL for the default content)
1003     *
1004     * @note Elementary objects may have many contents
1005     *
1006     * @ingroup General
1007     */
1008    EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj, const char *part);
1009
1010 #define elm_object_content_unset(obj) elm_object_content_part_unset((obj), NULL)
1011
1012    /**
1013     * Set a content of an object item
1014     *
1015     * @param it The Elementary object item
1016     * @param part The content part name to set (NULL for the default content)
1017     * @param content The new content of the object item
1018     *
1019     * @note Elementary object items may have many contents
1020     *
1021     * @ingroup General
1022     */
1023    EAPI void elm_object_item_content_part_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
1024
1025 #define elm_object_item_content_set(it, content) elm_object_item_content_part_set((it), NULL, (content))
1026
1027    /**
1028     * Get a content of an object item
1029     *
1030     * @param it The Elementary object item
1031     * @param part The content part name to unset (NULL for the default content)
1032     * @return content of the object item or NULL for any error
1033     *
1034     * @note Elementary object items may have many contents
1035     *
1036     * @ingroup General
1037     */
1038    EAPI Evas_Object *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *item);
1039
1040 #define elm_object_item_content_get(it) elm_object_item_content_part_get((it), NULL)
1041
1042    /**
1043     * Unset a content of an object item
1044     *
1045     * @param it The Elementary object item
1046     * @param part The content part name to unset (NULL for the default content)
1047     *
1048     * @note Elementary object items may have many contents
1049     *
1050     * @ingroup General
1051     */
1052    EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_Item *it, const char *part);
1053
1054 #define elm_object_item_content_unset(it, content) elm_object_item_content_part_unset((it), (content))
1055
1056    /**
1057     * Set a label of an objec itemt
1058     *
1059     * @param it The Elementary object item
1060     * @param part The text part name to set (NULL for the default label)
1061     * @param label The new text of the label
1062     *
1063     * @note Elementary object items may have many labels
1064     *
1065     * @ingroup General
1066     */
1067    EAPI void elm_object_item_text_part_set(Elm_Object_Item *it, const char *part, const char *label);
1068
1069 #define elm_object_item_text_set(it, label) elm_object_item_text_part_set((it), NULL, (label))
1070
1071    /**
1072     * Get a label of an object
1073     *
1074     * @param it The Elementary object item
1075     * @param part The text part name to get (NULL for the default label)
1076     * @return text of the label or NULL for any error
1077     *
1078     * @note Elementary object items may have many labels
1079     *
1080     * @ingroup General
1081     */
1082    EAPI const char *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
1083
1084    /**
1085     * Set the text to read out when in accessibility mode
1086     *
1087     * @param obj The object which is to be described
1088     * @param txt The text that describes the widget to people with poor or no vision
1089     *
1090     * @ingroup General
1091     */
1092    EAPI void elm_object_access_info_set(Evas_Object *obj, const char *txt);
1093
1094    /**
1095     * Set the text to read out when in accessibility mode
1096     *
1097     * @param it The object item which is to be described
1098     * @param txt The text that describes the widget to people with poor or no vision
1099     *
1100     * @ingroup General
1101     */
1102    EAPI void elm_object_item_access_info_set(Elm_Object_Item *it, const char *txt);
1103
1104
1105 #define elm_object_item_text_get(it) elm_object_item_text_part_get((it), NULL)
1106
1107    /**
1108     * Get the data associated with an object item
1109     * @param it The object item
1110     * @return The data associated with @p it
1111     *
1112     * @ingroup General
1113     */
1114    EAPI void *elm_object_item_data_get(const Elm_Object_Item *it);
1115
1116    /**
1117     * Set the data associated with an object item
1118     * @param it The object item
1119     * @param data The data to be associated with @p it
1120     *
1121     * @ingroup General
1122     */
1123    EAPI void elm_object_item_data_set(Elm_Object_Item *it, void *data);
1124
1125    /**
1126     * Send a signal to the edje object of the widget item.
1127     *
1128     * This function sends a signal to the edje object of the obj item. An
1129     * edje program can respond to a signal by specifying matching
1130     * 'signal' and 'source' fields.
1131     *
1132     * @param it The Elementary object item
1133     * @param emission The signal's name.
1134     * @param source The signal's source.
1135     * @ingroup General
1136     */
1137    EAPI void             elm_object_item_signal_emit(Elm_Object_Item *it, const char *emission, const char *source) EINA_ARG_NONNULL(1);
1138
1139    /**
1140     * @}
1141     */
1142
1143    /**
1144     * @defgroup Caches Caches
1145     *
1146     * These are functions which let one fine-tune some cache values for
1147     * Elementary applications, thus allowing for performance adjustments.
1148     *
1149     * @{
1150     */
1151
1152    /**
1153     * @brief Flush all caches.
1154     *
1155     * Frees all data that was in cache and is not currently being used to reduce
1156     * memory usage. This frees Edje's, Evas' and Eet's cache. This is equivalent
1157     * to calling all of the following functions:
1158     * @li edje_file_cache_flush()
1159     * @li edje_collection_cache_flush()
1160     * @li eet_clearcache()
1161     * @li evas_image_cache_flush()
1162     * @li evas_font_cache_flush()
1163     * @li evas_render_dump()
1164     * @note Evas caches are flushed for every canvas associated with a window.
1165     *
1166     * @ingroup Caches
1167     */
1168    EAPI void         elm_all_flush(void);
1169
1170    /**
1171     * Get the configured cache flush interval time
1172     *
1173     * This gets the globally configured cache flush interval time, in
1174     * ticks
1175     *
1176     * @return The cache flush interval time
1177     * @ingroup Caches
1178     *
1179     * @see elm_all_flush()
1180     */
1181    EAPI int          elm_cache_flush_interval_get(void);
1182
1183    /**
1184     * Set the configured cache flush interval time
1185     *
1186     * This sets the globally configured cache flush interval time, in ticks
1187     *
1188     * @param size The cache flush interval time
1189     * @ingroup Caches
1190     *
1191     * @see elm_all_flush()
1192     */
1193    EAPI void         elm_cache_flush_interval_set(int size);
1194
1195    /**
1196     * Set the configured cache flush interval time for all applications on the
1197     * display
1198     *
1199     * This sets the globally configured cache flush interval time -- in ticks
1200     * -- for all applications on the display.
1201     *
1202     * @param size The cache flush interval time
1203     * @ingroup Caches
1204     */
1205    EAPI void         elm_cache_flush_interval_all_set(int size);
1206
1207    /**
1208     * Get the configured cache flush enabled state
1209     *
1210     * This gets the globally configured cache flush state - if it is enabled
1211     * or not. When cache flushing is enabled, elementary will regularly
1212     * (see elm_cache_flush_interval_get() ) flush caches and dump data out of
1213     * memory and allow usage to re-seed caches and data in memory where it
1214     * can do so. An idle application will thus minimise its memory usage as
1215     * data will be freed from memory and not be re-loaded as it is idle and
1216     * not rendering or doing anything graphically right now.
1217     *
1218     * @return The cache flush state
1219     * @ingroup Caches
1220     *
1221     * @see elm_all_flush()
1222     */
1223    EAPI Eina_Bool    elm_cache_flush_enabled_get(void);
1224
1225    /**
1226     * Set the configured cache flush enabled state
1227     *
1228     * This sets the globally configured cache flush enabled state
1229     *
1230     * @param size The cache flush enabled state
1231     * @ingroup Caches
1232     *
1233     * @see elm_all_flush()
1234     */
1235    EAPI void         elm_cache_flush_enabled_set(Eina_Bool enabled);
1236
1237    /**
1238     * Set the configured cache flush enabled state for all applications on the
1239     * display
1240     *
1241     * This sets the globally configured cache flush enabled state for all
1242     * applications on the display.
1243     *
1244     * @param size The cache flush enabled state
1245     * @ingroup Caches
1246     */
1247    EAPI void         elm_cache_flush_enabled_all_set(Eina_Bool enabled);
1248
1249    /**
1250     * Get the configured font cache size
1251     *
1252     * This gets the globally configured font cache size, in bytes
1253     *
1254     * @return The font cache size
1255     * @ingroup Caches
1256     */
1257    EAPI int          elm_font_cache_get(void);
1258
1259    /**
1260     * Set the configured font cache size
1261     *
1262     * This sets the globally configured font cache size, in bytes
1263     *
1264     * @param size The font cache size
1265     * @ingroup Caches
1266     */
1267    EAPI void         elm_font_cache_set(int size);
1268
1269    /**
1270     * Set the configured font cache size for all applications on the
1271     * display
1272     *
1273     * This sets the globally configured font cache size -- in bytes
1274     * -- for all applications on the display.
1275     *
1276     * @param size The font cache size
1277     * @ingroup Caches
1278     */
1279    EAPI void         elm_font_cache_all_set(int size);
1280
1281    /**
1282     * Get the configured image cache size
1283     *
1284     * This gets the globally configured image cache size, in bytes
1285     *
1286     * @return The image cache size
1287     * @ingroup Caches
1288     */
1289    EAPI int          elm_image_cache_get(void);
1290
1291    /**
1292     * Set the configured image cache size
1293     *
1294     * This sets the globally configured image cache size, in bytes
1295     *
1296     * @param size The image cache size
1297     * @ingroup Caches
1298     */
1299    EAPI void         elm_image_cache_set(int size);
1300
1301    /**
1302     * Set the configured image cache size for all applications on the
1303     * display
1304     *
1305     * This sets the globally configured image cache size -- in bytes
1306     * -- for all applications on the display.
1307     *
1308     * @param size The image cache size
1309     * @ingroup Caches
1310     */
1311    EAPI void         elm_image_cache_all_set(int size);
1312
1313    /**
1314     * Get the configured edje file cache size.
1315     *
1316     * This gets the globally configured edje file cache size, in number
1317     * of files.
1318     *
1319     * @return The edje file cache size
1320     * @ingroup Caches
1321     */
1322    EAPI int          elm_edje_file_cache_get(void);
1323
1324    /**
1325     * Set the configured edje file cache size
1326     *
1327     * This sets the globally configured edje file cache size, in number
1328     * of files.
1329     *
1330     * @param size The edje file cache size
1331     * @ingroup Caches
1332     */
1333    EAPI void         elm_edje_file_cache_set(int size);
1334
1335    /**
1336     * Set the configured edje file cache size for all applications on the
1337     * display
1338     *
1339     * This sets the globally configured edje file cache size -- in number
1340     * of files -- for all applications on the display.
1341     *
1342     * @param size The edje file cache size
1343     * @ingroup Caches
1344     */
1345    EAPI void         elm_edje_file_cache_all_set(int size);
1346
1347    /**
1348     * Get the configured edje collections (groups) cache size.
1349     *
1350     * This gets the globally configured edje collections cache size, in
1351     * number of collections.
1352     *
1353     * @return The edje collections cache size
1354     * @ingroup Caches
1355     */
1356    EAPI int          elm_edje_collection_cache_get(void);
1357
1358    /**
1359     * Set the configured edje collections (groups) cache size
1360     *
1361     * This sets the globally configured edje collections cache size, in
1362     * number of collections.
1363     *
1364     * @param size The edje collections cache size
1365     * @ingroup Caches
1366     */
1367    EAPI void         elm_edje_collection_cache_set(int size);
1368
1369    /**
1370     * Set the configured edje collections (groups) cache size for all
1371     * applications on the display
1372     *
1373     * This sets the globally configured edje collections cache size -- in
1374     * number of collections -- for all applications on the display.
1375     *
1376     * @param size The edje collections cache size
1377     * @ingroup Caches
1378     */
1379    EAPI void         elm_edje_collection_cache_all_set(int size);
1380
1381    /**
1382     * @}
1383     */
1384
1385    /**
1386     * @defgroup Scaling Widget Scaling
1387     *
1388     * Different widgets can be scaled independently. These functions
1389     * allow you to manipulate this scaling on a per-widget basis. The
1390     * object and all its children get their scaling factors multiplied
1391     * by the scale factor set. This is multiplicative, in that if a
1392     * child also has a scale size set it is in turn multiplied by its
1393     * parent's scale size. @c 1.0 means “don't scale”, @c 2.0 is
1394     * double size, @c 0.5 is half, etc.
1395     *
1396     * @ref general_functions_example_page "This" example contemplates
1397     * some of these functions.
1398     */
1399
1400    /**
1401     * Get the global scaling factor
1402     *
1403     * This gets the globally configured scaling factor that is applied to all
1404     * objects.
1405     *
1406     * @return The scaling factor
1407     * @ingroup Scaling
1408     */
1409    EAPI double       elm_scale_get(void);
1410
1411    /**
1412     * Set the global scaling factor
1413     *
1414     * This sets the globally configured scaling factor that is applied to all
1415     * objects.
1416     *
1417     * @param scale The scaling factor to set
1418     * @ingroup Scaling
1419     */
1420    EAPI void         elm_scale_set(double scale);
1421
1422    /**
1423     * Set the global scaling factor for all applications on the display
1424     *
1425     * This sets the globally configured scaling factor that is applied to all
1426     * objects for all applications.
1427     * @param scale The scaling factor to set
1428     * @ingroup Scaling
1429     */
1430    EAPI void         elm_scale_all_set(double scale);
1431
1432    /**
1433     * Set the scaling factor for a given Elementary object
1434     *
1435     * @param obj The Elementary to operate on
1436     * @param scale Scale factor (from @c 0.0 up, with @c 1.0 meaning
1437     * no scaling)
1438     *
1439     * @ingroup Scaling
1440     */
1441    EAPI void         elm_object_scale_set(Evas_Object *obj, double scale) EINA_ARG_NONNULL(1);
1442
1443    /**
1444     * Get the scaling factor for a given Elementary object
1445     *
1446     * @param obj The object
1447     * @return The scaling factor set by elm_object_scale_set()
1448     *
1449     * @ingroup Scaling
1450     */
1451    EAPI double       elm_object_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1452
1453    /**
1454     * @defgroup Password_last_show Password last input show
1455     *
1456     * Last show feature of password mode enables user to view
1457     * the last input entered for few seconds before masking it.
1458     * These functions allow to set this feature in password mode
1459     * of entry widget and also allow to manipulate the duration
1460     * for which the input has to be visible.
1461     *
1462     * @{
1463     */
1464
1465    /**
1466     * Get show last setting of password mode.
1467     *
1468     * This gets the show last input setting of password mode which might be
1469     * enabled or disabled.
1470     *
1471     * @return @c EINA_TRUE, if the last input show setting is enabled, @c EINA_FALSE
1472     *            if it's disabled.
1473     * @ingroup Password_last_show
1474     */
1475    EAPI Eina_Bool elm_password_show_last_get(void);
1476
1477    /**
1478     * Set show last setting in password mode.
1479     *
1480     * This enables or disables show last setting of password mode.
1481     *
1482     * @param password_show_last If EINA_TRUE enable's last input show in password mode.
1483     * @see elm_password_show_last_timeout_set()
1484     * @ingroup Password_last_show
1485     */
1486    EAPI void elm_password_show_last_set(Eina_Bool password_show_last);
1487
1488    /**
1489     * Get's the timeout value in last show password mode.
1490     *
1491     * This gets the time out value for which the last input entered in password
1492     * mode will be visible.
1493     *
1494     * @return The timeout value of last show password mode.
1495     * @ingroup Password_last_show
1496     */
1497    EAPI double elm_password_show_last_timeout_get(void);
1498
1499    /**
1500     * Set's the timeout value in last show password mode.
1501     *
1502     * This sets the time out value for which the last input entered in password
1503     * mode will be visible.
1504     *
1505     * @param password_show_last_timeout The timeout value.
1506     * @see elm_password_show_last_set()
1507     * @ingroup Password_last_show
1508     */
1509    EAPI void elm_password_show_last_timeout_set(double password_show_last_timeout);
1510
1511    /**
1512     * @}
1513     */
1514
1515    /**
1516     * @defgroup UI-Mirroring Selective Widget mirroring
1517     *
1518     * These functions allow you to set ui-mirroring on specific
1519     * widgets or the whole interface. Widgets can be in one of two
1520     * modes, automatic and manual.  Automatic means they'll be changed
1521     * according to the system mirroring mode and manual means only
1522     * explicit changes will matter. You are not supposed to change
1523     * mirroring state of a widget set to automatic, will mostly work,
1524     * but the behavior is not really defined.
1525     *
1526     * @{
1527     */
1528
1529    EAPI Eina_Bool    elm_mirrored_get(void);
1530    EAPI void         elm_mirrored_set(Eina_Bool mirrored);
1531
1532    /**
1533     * Get the system mirrored mode. This determines the default mirrored mode
1534     * of widgets.
1535     *
1536     * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
1537     */
1538    EAPI Eina_Bool    elm_object_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1539
1540    /**
1541     * Set the system mirrored mode. This determines the default mirrored mode
1542     * of widgets.
1543     *
1544     * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
1545     */
1546    EAPI void         elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
1547
1548    /**
1549     * Returns the widget's mirrored mode setting.
1550     *
1551     * @param obj The widget.
1552     * @return mirrored mode setting of the object.
1553     *
1554     **/
1555    EAPI Eina_Bool    elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1556
1557    /**
1558     * Sets the widget's mirrored mode setting.
1559     * When widget in automatic mode, it follows the system mirrored mode set by
1560     * elm_mirrored_set().
1561     * @param obj The widget.
1562     * @param automatic EINA_TRUE for auto mirrored mode. EINA_FALSE for manual.
1563     */
1564    EAPI void         elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
1565
1566    /**
1567     * @}
1568     */
1569
1570    /**
1571     * Set the style to use by a widget
1572     *
1573     * Sets the style name that will define the appearance of a widget. Styles
1574     * vary from widget to widget and may also be defined by other themes
1575     * by means of extensions and overlays.
1576     *
1577     * @param obj The Elementary widget to style
1578     * @param style The style name to use
1579     *
1580     * @see elm_theme_extension_add()
1581     * @see elm_theme_extension_del()
1582     * @see elm_theme_overlay_add()
1583     * @see elm_theme_overlay_del()
1584     *
1585     * @ingroup Styles
1586     */
1587    EAPI void         elm_object_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
1588    /**
1589     * Get the style used by the widget
1590     *
1591     * This gets the style being used for that widget. Note that the string
1592     * pointer is only valid as longas the object is valid and the style doesn't
1593     * change.
1594     *
1595     * @param obj The Elementary widget to query for its style
1596     * @return The style name used
1597     *
1598     * @see elm_object_style_set()
1599     *
1600     * @ingroup Styles
1601     */
1602    EAPI const char  *elm_object_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1603
1604    /**
1605     * @defgroup Styles Styles
1606     *
1607     * Widgets can have different styles of look. These generic API's
1608     * set styles of widgets, if they support them (and if the theme(s)
1609     * do).
1610     *
1611     * @ref general_functions_example_page "This" example contemplates
1612     * some of these functions.
1613     */
1614
1615    /**
1616     * Set the disabled state of an Elementary object.
1617     *
1618     * @param obj The Elementary object to operate on
1619     * @param disabled The state to put in in: @c EINA_TRUE for
1620     *        disabled, @c EINA_FALSE for enabled
1621     *
1622     * Elementary objects can be @b disabled, in which state they won't
1623     * receive input and, in general, will be themed differently from
1624     * their normal state, usually greyed out. Useful for contexts
1625     * where you don't want your users to interact with some of the
1626     * parts of you interface.
1627     *
1628     * This sets the state for the widget, either disabling it or
1629     * enabling it back.
1630     *
1631     * @ingroup Styles
1632     */
1633    EAPI void         elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
1634
1635    /**
1636     * Get the disabled state of an Elementary object.
1637     *
1638     * @param obj The Elementary object to operate on
1639     * @return @c EINA_TRUE, if the widget is disabled, @c EINA_FALSE
1640     *            if it's enabled (or on errors)
1641     *
1642     * This gets the state of the widget, which might be enabled or disabled.
1643     *
1644     * @ingroup Styles
1645     */
1646    EAPI Eina_Bool    elm_object_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1647
1648    /**
1649     * @defgroup WidgetNavigation Widget Tree Navigation.
1650     *
1651     * How to check if an Evas Object is an Elementary widget? How to
1652     * get the first elementary widget that is parent of the given
1653     * object?  These are all covered in widget tree navigation.
1654     *
1655     * @ref general_functions_example_page "This" example contemplates
1656     * some of these functions.
1657     */
1658
1659    /**
1660     * Check if the given Evas Object is an Elementary widget.
1661     *
1662     * @param obj the object to query.
1663     * @return @c EINA_TRUE if it is an elementary widget variant,
1664     *         @c EINA_FALSE otherwise
1665     * @ingroup WidgetNavigation
1666     */
1667    EAPI Eina_Bool    elm_object_widget_check(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1668
1669    /**
1670     * Get the first parent of the given object that is an Elementary
1671     * widget.
1672     *
1673     * @param obj the Elementary object to query parent from.
1674     * @return the parent object that is an Elementary widget, or @c
1675     *         NULL, if it was not found.
1676     *
1677     * Use this to query for an object's parent widget.
1678     *
1679     * @note Most of Elementary users wouldn't be mixing non-Elementary
1680     * smart objects in the objects tree of an application, as this is
1681     * an advanced usage of Elementary with Evas. So, except for the
1682     * application's window, which is the root of that tree, all other
1683     * objects would have valid Elementary widget parents.
1684     *
1685     * @ingroup WidgetNavigation
1686     */
1687    EAPI Evas_Object *elm_object_parent_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1688
1689    /**
1690     * Get the top level parent of an Elementary widget.
1691     *
1692     * @param obj The object to query.
1693     * @return The top level Elementary widget, or @c NULL if parent cannot be
1694     * found.
1695     * @ingroup WidgetNavigation
1696     */
1697    EAPI Evas_Object *elm_object_top_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1698
1699    /**
1700     * Get the string that represents this Elementary widget.
1701     *
1702     * @note Elementary is weird and exposes itself as a single
1703     *       Evas_Object_Smart_Class of type "elm_widget", so
1704     *       evas_object_type_get() always return that, making debug and
1705     *       language bindings hard. This function tries to mitigate this
1706     *       problem, but the solution is to change Elementary to use
1707     *       proper inheritance.
1708     *
1709     * @param obj the object to query.
1710     * @return Elementary widget name, or @c NULL if not a valid widget.
1711     * @ingroup WidgetNavigation
1712     */
1713    EAPI const char  *elm_object_widget_type_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1714
1715    /**
1716     * @defgroup Config Elementary Config
1717     *
1718     * Elementary configuration is formed by a set options bounded to a
1719     * given @ref Profile profile, like @ref Theme theme, @ref Fingers
1720     * "finger size", etc. These are functions with which one syncronizes
1721     * changes made to those values to the configuration storing files, de
1722     * facto. You most probably don't want to use the functions in this
1723     * group unlees you're writing an elementary configuration manager.
1724     *
1725     * @{
1726     */
1727
1728    /**
1729     * Save back Elementary's configuration, so that it will persist on
1730     * future sessions.
1731     *
1732     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
1733     * @ingroup Config
1734     *
1735     * This function will take effect -- thus, do I/O -- immediately. Use
1736     * it when you want to apply all configuration changes at once. The
1737     * current configuration set will get saved onto the current profile
1738     * configuration file.
1739     *
1740     */
1741    EAPI Eina_Bool    elm_config_save(void);
1742
1743    /**
1744     * Reload Elementary's configuration, bounded to current selected
1745     * profile.
1746     *
1747     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
1748     * @ingroup Config
1749     *
1750     * Useful when you want to force reloading of configuration values for
1751     * a profile. If one removes user custom configuration directories,
1752     * for example, it will force a reload with system values insted.
1753     *
1754     */
1755    EAPI void         elm_config_reload(void);
1756
1757    /**
1758     * @}
1759     */
1760
1761    /**
1762     * @defgroup Profile Elementary Profile
1763     *
1764     * Profiles are pre-set options that affect the whole look-and-feel of
1765     * Elementary-based applications. There are, for example, profiles
1766     * aimed at desktop computer applications and others aimed at mobile,
1767     * touchscreen-based ones. You most probably don't want to use the
1768     * functions in this group unlees you're writing an elementary
1769     * configuration manager.
1770     *
1771     * @{
1772     */
1773
1774    /**
1775     * Get Elementary's profile in use.
1776     *
1777     * This gets the global profile that is applied to all Elementary
1778     * applications.
1779     *
1780     * @return The profile's name
1781     * @ingroup Profile
1782     */
1783    EAPI const char  *elm_profile_current_get(void);
1784
1785    /**
1786     * Get an Elementary's profile directory path in the filesystem. One
1787     * may want to fetch a system profile's dir or an user one (fetched
1788     * inside $HOME).
1789     *
1790     * @param profile The profile's name
1791     * @param is_user Whether to lookup for an user profile (@c EINA_TRUE)
1792     *                or a system one (@c EINA_FALSE)
1793     * @return The profile's directory path.
1794     * @ingroup Profile
1795     *
1796     * @note You must free it with elm_profile_dir_free().
1797     */
1798    EAPI const char  *elm_profile_dir_get(const char *profile, Eina_Bool is_user);
1799
1800    /**
1801     * Free an Elementary's profile directory path, as returned by
1802     * elm_profile_dir_get().
1803     *
1804     * @param p_dir The profile's path
1805     * @ingroup Profile
1806     *
1807     */
1808    EAPI void         elm_profile_dir_free(const char *p_dir);
1809
1810    /**
1811     * Get Elementary's list of available profiles.
1812     *
1813     * @return The profiles list. List node data are the profile name
1814     *         strings.
1815     * @ingroup Profile
1816     *
1817     * @note One must free this list, after usage, with the function
1818     *       elm_profile_list_free().
1819     */
1820    EAPI Eina_List   *elm_profile_list_get(void);
1821
1822    /**
1823     * Free Elementary's list of available profiles.
1824     *
1825     * @param l The profiles list, as returned by elm_profile_list_get().
1826     * @ingroup Profile
1827     *
1828     */
1829    EAPI void         elm_profile_list_free(Eina_List *l);
1830
1831    /**
1832     * Set Elementary's profile.
1833     *
1834     * This sets the global profile that is applied to Elementary
1835     * applications. Just the process the call comes from will be
1836     * affected.
1837     *
1838     * @param profile The profile's name
1839     * @ingroup Profile
1840     *
1841     */
1842    EAPI void         elm_profile_set(const char *profile);
1843
1844    /**
1845     * Set Elementary's profile.
1846     *
1847     * This sets the global profile that is applied to all Elementary
1848     * applications. All running Elementary windows will be affected.
1849     *
1850     * @param profile The profile's name
1851     * @ingroup Profile
1852     *
1853     */
1854    EAPI void         elm_profile_all_set(const char *profile);
1855
1856    /**
1857     * @}
1858     */
1859
1860    /**
1861     * @defgroup Engine Elementary Engine
1862     *
1863     * These are functions setting and querying which rendering engine
1864     * Elementary will use for drawing its windows' pixels.
1865     *
1866     * The following are the available engines:
1867     * @li "software_x11"
1868     * @li "fb"
1869     * @li "directfb"
1870     * @li "software_16_x11"
1871     * @li "software_8_x11"
1872     * @li "xrender_x11"
1873     * @li "opengl_x11"
1874     * @li "software_gdi"
1875     * @li "software_16_wince_gdi"
1876     * @li "sdl"
1877     * @li "software_16_sdl"
1878     * @li "opengl_sdl"
1879     * @li "buffer"
1880     *
1881     * @{
1882     */
1883
1884    /**
1885     * @brief Get Elementary's rendering engine in use.
1886     *
1887     * @return The rendering engine's name
1888     * @note there's no need to free the returned string, here.
1889     *
1890     * This gets the global rendering engine that is applied to all Elementary
1891     * applications.
1892     *
1893     * @see elm_engine_set()
1894     */
1895    EAPI const char  *elm_engine_current_get(void);
1896
1897    /**
1898     * @brief Set Elementary's rendering engine for use.
1899     *
1900     * @param engine The rendering engine's name
1901     *
1902     * This sets global rendering engine that is applied to all Elementary
1903     * applications. Note that it will take effect only to Elementary windows
1904     * created after this is called.
1905     *
1906     * @see elm_win_add()
1907     */
1908    EAPI void         elm_engine_set(const char *engine);
1909
1910    /**
1911     * @}
1912     */
1913
1914    /**
1915     * @defgroup Fonts Elementary Fonts
1916     *
1917     * These are functions dealing with font rendering, selection and the
1918     * like for Elementary applications. One might fetch which system
1919     * fonts are there to use and set custom fonts for individual classes
1920     * of UI items containing text (text classes).
1921     *
1922     * @{
1923     */
1924
1925   typedef struct _Elm_Text_Class
1926     {
1927        const char *name;
1928        const char *desc;
1929     } Elm_Text_Class;
1930
1931   typedef struct _Elm_Font_Overlay
1932     {
1933        const char     *text_class;
1934        const char     *font;
1935        Evas_Font_Size  size;
1936     } Elm_Font_Overlay;
1937
1938   typedef struct _Elm_Font_Properties
1939     {
1940        const char *name;
1941        Eina_List  *styles;
1942     } Elm_Font_Properties;
1943
1944    /**
1945     * Get Elementary's list of supported text classes.
1946     *
1947     * @return The text classes list, with @c Elm_Text_Class blobs as data.
1948     * @ingroup Fonts
1949     *
1950     * Release the list with elm_text_classes_list_free().
1951     */
1952    EAPI const Eina_List     *elm_text_classes_list_get(void);
1953
1954    /**
1955     * Free Elementary's list of supported text classes.
1956     *
1957     * @ingroup Fonts
1958     *
1959     * @see elm_text_classes_list_get().
1960     */
1961    EAPI void                 elm_text_classes_list_free(const Eina_List *list);
1962
1963    /**
1964     * Get Elementary's list of font overlays, set with
1965     * elm_font_overlay_set().
1966     *
1967     * @return The font overlays list, with @c Elm_Font_Overlay blobs as
1968     * data.
1969     *
1970     * @ingroup Fonts
1971     *
1972     * For each text class, one can set a <b>font overlay</b> for it,
1973     * overriding the default font properties for that class coming from
1974     * the theme in use. There is no need to free this list.
1975     *
1976     * @see elm_font_overlay_set() and elm_font_overlay_unset().
1977     */
1978    EAPI const Eina_List     *elm_font_overlay_list_get(void);
1979
1980    /**
1981     * Set a font overlay for a given Elementary text class.
1982     *
1983     * @param text_class Text class name
1984     * @param font Font name and style string
1985     * @param size Font size
1986     *
1987     * @ingroup Fonts
1988     *
1989     * @p font has to be in the format returned by
1990     * elm_font_fontconfig_name_get(). @see elm_font_overlay_list_get()
1991     * and elm_font_overlay_unset().
1992     */
1993    EAPI void                 elm_font_overlay_set(const char *text_class, const char *font, Evas_Font_Size size);
1994
1995    /**
1996     * Unset a font overlay for a given Elementary text class.
1997     *
1998     * @param text_class Text class name
1999     *
2000     * @ingroup Fonts
2001     *
2002     * This will bring back text elements belonging to text class
2003     * @p text_class back to their default font settings.
2004     */
2005    EAPI void                 elm_font_overlay_unset(const char *text_class);
2006
2007    /**
2008     * Apply the changes made with elm_font_overlay_set() and
2009     * elm_font_overlay_unset() on the current Elementary window.
2010     *
2011     * @ingroup Fonts
2012     *
2013     * This applies all font overlays set to all objects in the UI.
2014     */
2015    EAPI void                 elm_font_overlay_apply(void);
2016
2017    /**
2018     * Apply the changes made with elm_font_overlay_set() and
2019     * elm_font_overlay_unset() on all Elementary application windows.
2020     *
2021     * @ingroup Fonts
2022     *
2023     * This applies all font overlays set to all objects in the UI.
2024     */
2025    EAPI void                 elm_font_overlay_all_apply(void);
2026
2027    /**
2028     * Translate a font (family) name string in fontconfig's font names
2029     * syntax into an @c Elm_Font_Properties struct.
2030     *
2031     * @param font The font name and styles string
2032     * @return the font properties struct
2033     *
2034     * @ingroup Fonts
2035     *
2036     * @note The reverse translation can be achived with
2037     * elm_font_fontconfig_name_get(), for one style only (single font
2038     * instance, not family).
2039     */
2040    EAPI Elm_Font_Properties *elm_font_properties_get(const char *font) EINA_ARG_NONNULL(1);
2041
2042    /**
2043     * Free font properties return by elm_font_properties_get().
2044     *
2045     * @param efp the font properties struct
2046     *
2047     * @ingroup Fonts
2048     */
2049    EAPI void                 elm_font_properties_free(Elm_Font_Properties *efp) EINA_ARG_NONNULL(1);
2050
2051    /**
2052     * Translate a font name, bound to a style, into fontconfig's font names
2053     * syntax.
2054     *
2055     * @param name The font (family) name
2056     * @param style The given style (may be @c NULL)
2057     *
2058     * @return the font name and style string
2059     *
2060     * @ingroup Fonts
2061     *
2062     * @note The reverse translation can be achived with
2063     * elm_font_properties_get(), for one style only (single font
2064     * instance, not family).
2065     */
2066    EAPI const char          *elm_font_fontconfig_name_get(const char *name, const char *style) EINA_ARG_NONNULL(1);
2067
2068    /**
2069     * Free the font string return by elm_font_fontconfig_name_get().
2070     *
2071     * @param efp the font properties struct
2072     *
2073     * @ingroup Fonts
2074     */
2075    EAPI void                 elm_font_fontconfig_name_free(const char *name) EINA_ARG_NONNULL(1);
2076
2077    /**
2078     * Create a font hash table of available system fonts.
2079     *
2080     * One must call it with @p list being the return value of
2081     * evas_font_available_list(). The hash will be indexed by font
2082     * (family) names, being its values @c Elm_Font_Properties blobs.
2083     *
2084     * @param list The list of available system fonts, as returned by
2085     * evas_font_available_list().
2086     * @return the font hash.
2087     *
2088     * @ingroup Fonts
2089     *
2090     * @note The user is supposed to get it populated at least with 3
2091     * default font families (Sans, Serif, Monospace), which should be
2092     * present on most systems.
2093     */
2094    EAPI Eina_Hash           *elm_font_available_hash_add(Eina_List *list);
2095
2096    /**
2097     * Free the hash return by elm_font_available_hash_add().
2098     *
2099     * @param hash the hash to be freed.
2100     *
2101     * @ingroup Fonts
2102     */
2103    EAPI void                 elm_font_available_hash_del(Eina_Hash *hash);
2104
2105    /**
2106     * @}
2107     */
2108
2109    /**
2110     * @defgroup Fingers Fingers
2111     *
2112     * Elementary is designed to be finger-friendly for touchscreens,
2113     * and so in addition to scaling for display resolution, it can
2114     * also scale based on finger "resolution" (or size). You can then
2115     * customize the granularity of the areas meant to receive clicks
2116     * on touchscreens.
2117     *
2118     * Different profiles may have pre-set values for finger sizes.
2119     *
2120     * @ref general_functions_example_page "This" example contemplates
2121     * some of these functions.
2122     *
2123     * @{
2124     */
2125
2126    /**
2127     * Get the configured "finger size"
2128     *
2129     * @return The finger size
2130     *
2131     * This gets the globally configured finger size, <b>in pixels</b>
2132     *
2133     * @ingroup Fingers
2134     */
2135    EAPI Evas_Coord       elm_finger_size_get(void);
2136
2137    /**
2138     * Set the configured finger size
2139     *
2140     * This sets the globally configured finger size in pixels
2141     *
2142     * @param size The finger size
2143     * @ingroup Fingers
2144     */
2145    EAPI void             elm_finger_size_set(Evas_Coord size);
2146
2147    /**
2148     * Set the configured finger size for all applications on the display
2149     *
2150     * This sets the globally configured finger size in pixels for all
2151     * applications on the display
2152     *
2153     * @param size The finger size
2154     * @ingroup Fingers
2155     */
2156    EAPI void             elm_finger_size_all_set(Evas_Coord size);
2157
2158    /**
2159     * @}
2160     */
2161
2162    /**
2163     * @defgroup Focus Focus
2164     *
2165     * An Elementary application has, at all times, one (and only one)
2166     * @b focused object. This is what determines where the input
2167     * events go to within the application's window. Also, focused
2168     * objects can be decorated differently, in order to signal to the
2169     * user where the input is, at a given moment.
2170     *
2171     * Elementary applications also have the concept of <b>focus
2172     * chain</b>: one can cycle through all the windows' focusable
2173     * objects by input (tab key) or programmatically. The default
2174     * focus chain for an application is the one define by the order in
2175     * which the widgets where added in code. One will cycle through
2176     * top level widgets, and, for each one containg sub-objects, cycle
2177     * through them all, before returning to the level
2178     * above. Elementary also allows one to set @b custom focus chains
2179     * for their applications.
2180     *
2181     * Besides the focused decoration a widget may exhibit, when it
2182     * gets focus, Elementary has a @b global focus highlight object
2183     * that can be enabled for a window. If one chooses to do so, this
2184     * extra highlight effect will surround the current focused object,
2185     * too.
2186     *
2187     * @note Some Elementary widgets are @b unfocusable, after
2188     * creation, by their very nature: they are not meant to be
2189     * interacted with input events, but are there just for visual
2190     * purposes.
2191     *
2192     * @ref general_functions_example_page "This" example contemplates
2193     * some of these functions.
2194     */
2195
2196    /**
2197     * Get the enable status of the focus highlight
2198     *
2199     * This gets whether the highlight on focused objects is enabled or not
2200     * @ingroup Focus
2201     */
2202    EAPI Eina_Bool        elm_focus_highlight_enabled_get(void);
2203
2204    /**
2205     * Set the enable status of the focus highlight
2206     *
2207     * Set whether to show or not the highlight on focused objects
2208     * @param enable Enable highlight if EINA_TRUE, disable otherwise
2209     * @ingroup Focus
2210     */
2211    EAPI void             elm_focus_highlight_enabled_set(Eina_Bool enable);
2212
2213    /**
2214     * Get the enable status of the highlight animation
2215     *
2216     * Get whether the focus highlight, if enabled, will animate its switch from
2217     * one object to the next
2218     * @ingroup Focus
2219     */
2220    EAPI Eina_Bool        elm_focus_highlight_animate_get(void);
2221
2222    /**
2223     * Set the enable status of the highlight animation
2224     *
2225     * Set whether the focus highlight, if enabled, will animate its switch from
2226     * one object to the next
2227     * @param animate Enable animation if EINA_TRUE, disable otherwise
2228     * @ingroup Focus
2229     */
2230    EAPI void             elm_focus_highlight_animate_set(Eina_Bool animate);
2231
2232    /**
2233     * Get the whether an Elementary object has the focus or not.
2234     *
2235     * @param obj The Elementary object to get the information from
2236     * @return @c EINA_TRUE, if the object is focused, @c EINA_FALSE if
2237     *            not (and on errors).
2238     *
2239     * @see elm_object_focus_set()
2240     *
2241     * @ingroup Focus
2242     */
2243    EAPI Eina_Bool        elm_object_focus_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2244
2245    /**
2246     * Set/unset focus to a given Elementary object.
2247     *
2248     * @param obj The Elementary object to operate on.
2249     * @param enable @c EINA_TRUE Set focus to a given object,
2250     *               @c EINA_FALSE Unset focus to a given object.
2251     *
2252     * @note When you set focus to this object, if it can handle focus, will
2253     * take the focus away from the one who had it previously and will, for
2254     * now on, be the one receiving input events. Unsetting focus will remove
2255     * the focus from @p obj, passing it back to the previous element in the
2256     * focus chain list.
2257     *
2258     * @see elm_object_focus_get(), elm_object_focus_custom_chain_get()
2259     *
2260     * @ingroup Focus
2261     */
2262    EAPI void             elm_object_focus_set(Evas_Object *obj, Eina_Bool focus) EINA_ARG_NONNULL(1);
2263
2264    /**
2265     * Make a given Elementary object the focused one.
2266     *
2267     * @param obj The Elementary object to make focused.
2268     *
2269     * @note This object, if it can handle focus, will take the focus
2270     * away from the one who had it previously and will, for now on, be
2271     * the one receiving input events.
2272     *
2273     * @see elm_object_focus_get()
2274     * @deprecated use elm_object_focus_set() instead.
2275     *
2276     * @ingroup Focus
2277     */
2278    EINA_DEPRECATED EAPI void             elm_object_focus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2279
2280    /**
2281     * Remove the focus from an Elementary object
2282     *
2283     * @param obj The Elementary to take focus from
2284     *
2285     * This removes the focus from @p obj, passing it back to the
2286     * previous element in the focus chain list.
2287     *
2288     * @see elm_object_focus() and elm_object_focus_custom_chain_get()
2289     * @deprecated use elm_object_focus_set() instead.
2290     *
2291     * @ingroup Focus
2292     */
2293    EINA_DEPRECATED EAPI void             elm_object_unfocus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2294
2295    /**
2296     * Set the ability for an Element object to be focused
2297     *
2298     * @param obj The Elementary object to operate on
2299     * @param enable @c EINA_TRUE if the object can be focused, @c
2300     *        EINA_FALSE if not (and on errors)
2301     *
2302     * This sets whether the object @p obj is able to take focus or
2303     * not. Unfocusable objects do nothing when programmatically
2304     * focused, being the nearest focusable parent object the one
2305     * really getting focus. Also, when they receive mouse input, they
2306     * will get the event, but not take away the focus from where it
2307     * was previously.
2308     *
2309     * @ingroup Focus
2310     */
2311    EAPI void             elm_object_focus_allow_set(Evas_Object *obj, Eina_Bool enable) EINA_ARG_NONNULL(1);
2312
2313    /**
2314     * Get whether an Elementary object is focusable or not
2315     *
2316     * @param obj The Elementary object to operate on
2317     * @return @c EINA_TRUE if the object is allowed to be focused, @c
2318     *             EINA_FALSE if not (and on errors)
2319     *
2320     * @note Objects which are meant to be interacted with by input
2321     * events are created able to be focused, by default. All the
2322     * others are not.
2323     *
2324     * @ingroup Focus
2325     */
2326    EAPI Eina_Bool        elm_object_focus_allow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2327
2328    /**
2329     * Set custom focus chain.
2330     *
2331     * This function overwrites any previous custom focus chain within
2332     * the list of objects. The previous list will be deleted and this list
2333     * will be managed by elementary. After it is set, don't modify it.
2334     *
2335     * @note On focus cycle, only will be evaluated children of this container.
2336     *
2337     * @param obj The container object
2338     * @param objs Chain of objects to pass focus
2339     * @ingroup Focus
2340     */
2341    EAPI void             elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
2342
2343    /**
2344     * Unset a custom focus chain on a given Elementary widget
2345     *
2346     * @param obj The container object to remove focus chain from
2347     *
2348     * Any focus chain previously set on @p obj (for its child objects)
2349     * is removed entirely after this call.
2350     *
2351     * @ingroup Focus
2352     */
2353    EAPI void             elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
2354
2355    /**
2356     * Get custom focus chain
2357     *
2358     * @param obj The container object
2359     * @ingroup Focus
2360     */
2361    EAPI const Eina_List *elm_object_focus_custom_chain_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2362
2363    /**
2364     * Append object to custom focus chain.
2365     *
2366     * @note If relative_child equal to NULL or not in custom chain, the object
2367     * will be added in end.
2368     *
2369     * @note On focus cycle, only will be evaluated children of this container.
2370     *
2371     * @param obj The container object
2372     * @param child The child to be added in custom chain
2373     * @param relative_child The relative object to position the child
2374     * @ingroup Focus
2375     */
2376    EAPI void             elm_object_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2377
2378    /**
2379     * Prepend object to custom focus chain.
2380     *
2381     * @note If relative_child equal to NULL or not in custom chain, the object
2382     * will be added in begin.
2383     *
2384     * @note On focus cycle, only will be evaluated children of this container.
2385     *
2386     * @param obj The container object
2387     * @param child The child to be added in custom chain
2388     * @param relative_child The relative object to position the child
2389     * @ingroup Focus
2390     */
2391    EAPI void             elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2392
2393    /**
2394     * Give focus to next object in object tree.
2395     *
2396     * Give focus to next object in focus chain of one object sub-tree.
2397     * If the last object of chain already have focus, the focus will go to the
2398     * first object of chain.
2399     *
2400     * @param obj The object root of sub-tree
2401     * @param dir Direction to cycle the focus
2402     *
2403     * @ingroup Focus
2404     */
2405    EAPI void             elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir) EINA_ARG_NONNULL(1);
2406
2407    /**
2408     * Give focus to near object in one direction.
2409     *
2410     * Give focus to near object in direction of one object.
2411     * If none focusable object in given direction, the focus will not change.
2412     *
2413     * @param obj The reference object
2414     * @param x Horizontal component of direction to focus
2415     * @param y Vertical component of direction to focus
2416     *
2417     * @ingroup Focus
2418     */
2419    EAPI void             elm_object_focus_direction_go(Evas_Object *obj, int x, int y) EINA_ARG_NONNULL(1);
2420
2421    /**
2422     * Make the elementary object and its children to be unfocusable
2423     * (or focusable).
2424     *
2425     * @param obj The Elementary object to operate on
2426     * @param tree_unfocusable @c EINA_TRUE for unfocusable,
2427     *        @c EINA_FALSE for focusable.
2428     *
2429     * This sets whether the object @p obj and its children objects
2430     * are able to take focus or not. If the tree is set as unfocusable,
2431     * newest focused object which is not in this tree will get focus.
2432     * This API can be helpful for an object to be deleted.
2433     * When an object will be deleted soon, it and its children may not
2434     * want to get focus (by focus reverting or by other focus controls).
2435     * Then, just use this API before deleting.
2436     *
2437     * @see elm_object_tree_unfocusable_get()
2438     *
2439     * @ingroup Focus
2440     */
2441    EAPI void             elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable); EINA_ARG_NONNULL(1);
2442
2443    /**
2444     * Get whether an Elementary object and its children are unfocusable or not.
2445     *
2446     * @param obj The Elementary object to get the information from
2447     * @return @c EINA_TRUE, if the tree is unfocussable,
2448     *         @c EINA_FALSE if not (and on errors).
2449     *
2450     * @see elm_object_tree_unfocusable_set()
2451     *
2452     * @ingroup Focus
2453     */
2454    EAPI Eina_Bool        elm_object_tree_unfocusable_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
2455
2456    /**
2457     * @defgroup Scrolling Scrolling
2458     *
2459     * These are functions setting how scrollable views in Elementary
2460     * widgets should behave on user interaction.
2461     *
2462     * @{
2463     */
2464
2465    /**
2466     * Get whether scrollers should bounce when they reach their
2467     * viewport's edge during a scroll.
2468     *
2469     * @return the thumb scroll bouncing state
2470     *
2471     * This is the default behavior for touch screens, in general.
2472     * @ingroup Scrolling
2473     */
2474    EAPI Eina_Bool        elm_scroll_bounce_enabled_get(void);
2475
2476    /**
2477     * Set whether scrollers should bounce when they reach their
2478     * viewport's edge during a scroll.
2479     *
2480     * @param enabled the thumb scroll bouncing state
2481     *
2482     * @see elm_thumbscroll_bounce_enabled_get()
2483     * @ingroup Scrolling
2484     */
2485    EAPI void             elm_scroll_bounce_enabled_set(Eina_Bool enabled);
2486
2487    /**
2488     * Set whether scrollers should bounce when they reach their
2489     * viewport's edge during a scroll, for all Elementary application
2490     * windows.
2491     *
2492     * @param enabled the thumb scroll bouncing state
2493     *
2494     * @see elm_thumbscroll_bounce_enabled_get()
2495     * @ingroup Scrolling
2496     */
2497    EAPI void             elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
2498
2499    /**
2500     * Get the amount of inertia a scroller will impose at bounce
2501     * animations.
2502     *
2503     * @return the thumb scroll bounce friction
2504     *
2505     * @ingroup Scrolling
2506     */
2507    EAPI double           elm_scroll_bounce_friction_get(void);
2508
2509    /**
2510     * Set the amount of inertia a scroller will impose at bounce
2511     * animations.
2512     *
2513     * @param friction the thumb scroll bounce friction
2514     *
2515     * @see elm_thumbscroll_bounce_friction_get()
2516     * @ingroup Scrolling
2517     */
2518    EAPI void             elm_scroll_bounce_friction_set(double friction);
2519
2520    /**
2521     * Set the amount of inertia a scroller will impose at bounce
2522     * animations, for all Elementary application windows.
2523     *
2524     * @param friction the thumb scroll bounce friction
2525     *
2526     * @see elm_thumbscroll_bounce_friction_get()
2527     * @ingroup Scrolling
2528     */
2529    EAPI void             elm_scroll_bounce_friction_all_set(double friction);
2530
2531    /**
2532     * Get the amount of inertia a <b>paged</b> scroller will impose at
2533     * page fitting animations.
2534     *
2535     * @return the page scroll friction
2536     *
2537     * @ingroup Scrolling
2538     */
2539    EAPI double           elm_scroll_page_scroll_friction_get(void);
2540
2541    /**
2542     * Set the amount of inertia a <b>paged</b> scroller will impose at
2543     * page fitting animations.
2544     *
2545     * @param friction the page scroll friction
2546     *
2547     * @see elm_thumbscroll_page_scroll_friction_get()
2548     * @ingroup Scrolling
2549     */
2550    EAPI void             elm_scroll_page_scroll_friction_set(double friction);
2551
2552    /**
2553     * Set the amount of inertia a <b>paged</b> scroller will impose at
2554     * page fitting animations, for all Elementary application windows.
2555     *
2556     * @param friction the page scroll friction
2557     *
2558     * @see elm_thumbscroll_page_scroll_friction_get()
2559     * @ingroup Scrolling
2560     */
2561    EAPI void             elm_scroll_page_scroll_friction_all_set(double friction);
2562
2563    /**
2564     * Get the amount of inertia a scroller will impose at region bring
2565     * animations.
2566     *
2567     * @return the bring in scroll friction
2568     *
2569     * @ingroup Scrolling
2570     */
2571    EAPI double           elm_scroll_bring_in_scroll_friction_get(void);
2572
2573    /**
2574     * Set the amount of inertia a scroller will impose at region bring
2575     * animations.
2576     *
2577     * @param friction the bring in scroll friction
2578     *
2579     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2580     * @ingroup Scrolling
2581     */
2582    EAPI void             elm_scroll_bring_in_scroll_friction_set(double friction);
2583
2584    /**
2585     * Set the amount of inertia a scroller will impose at region bring
2586     * animations, for all Elementary application windows.
2587     *
2588     * @param friction the bring in scroll friction
2589     *
2590     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2591     * @ingroup Scrolling
2592     */
2593    EAPI void             elm_scroll_bring_in_scroll_friction_all_set(double friction);
2594
2595    /**
2596     * Get the amount of inertia scrollers will impose at animations
2597     * triggered by Elementary widgets' zooming API.
2598     *
2599     * @return the zoom friction
2600     *
2601     * @ingroup Scrolling
2602     */
2603    EAPI double           elm_scroll_zoom_friction_get(void);
2604
2605    /**
2606     * Set the amount of inertia scrollers will impose at animations
2607     * triggered by Elementary widgets' zooming API.
2608     *
2609     * @param friction the zoom friction
2610     *
2611     * @see elm_thumbscroll_zoom_friction_get()
2612     * @ingroup Scrolling
2613     */
2614    EAPI void             elm_scroll_zoom_friction_set(double friction);
2615
2616    /**
2617     * Set the amount of inertia scrollers will impose at animations
2618     * triggered by Elementary widgets' zooming API, for all Elementary
2619     * application windows.
2620     *
2621     * @param friction the zoom friction
2622     *
2623     * @see elm_thumbscroll_zoom_friction_get()
2624     * @ingroup Scrolling
2625     */
2626    EAPI void             elm_scroll_zoom_friction_all_set(double friction);
2627
2628    /**
2629     * Get whether scrollers should be draggable from any point in their
2630     * views.
2631     *
2632     * @return the thumb scroll state
2633     *
2634     * @note This is the default behavior for touch screens, in general.
2635     * @note All other functions namespaced with "thumbscroll" will only
2636     *       have effect if this mode is enabled.
2637     *
2638     * @ingroup Scrolling
2639     */
2640    EAPI Eina_Bool        elm_scroll_thumbscroll_enabled_get(void);
2641
2642    /**
2643     * Set whether scrollers should be draggable from any point in their
2644     * views.
2645     *
2646     * @param enabled the thumb scroll state
2647     *
2648     * @see elm_thumbscroll_enabled_get()
2649     * @ingroup Scrolling
2650     */
2651    EAPI void             elm_scroll_thumbscroll_enabled_set(Eina_Bool enabled);
2652
2653    /**
2654     * Set whether scrollers should be draggable from any point in their
2655     * views, for all Elementary application windows.
2656     *
2657     * @param enabled the thumb scroll state
2658     *
2659     * @see elm_thumbscroll_enabled_get()
2660     * @ingroup Scrolling
2661     */
2662    EAPI void             elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
2663
2664    /**
2665     * Get the number of pixels one should travel while dragging a
2666     * scroller's view to actually trigger scrolling.
2667     *
2668     * @return the thumb scroll threshould
2669     *
2670     * One would use higher values for touch screens, in general, because
2671     * of their inherent imprecision.
2672     * @ingroup Scrolling
2673     */
2674    EAPI unsigned int     elm_scroll_thumbscroll_threshold_get(void);
2675
2676    /**
2677     * Set the number of pixels one should travel while dragging a
2678     * scroller's view to actually trigger scrolling.
2679     *
2680     * @param threshold the thumb scroll threshould
2681     *
2682     * @see elm_thumbscroll_threshould_get()
2683     * @ingroup Scrolling
2684     */
2685    EAPI void             elm_scroll_thumbscroll_threshold_set(unsigned int threshold);
2686
2687    /**
2688     * Set the number of pixels one should travel while dragging a
2689     * scroller's view to actually trigger scrolling, for all Elementary
2690     * application windows.
2691     *
2692     * @param threshold the thumb scroll threshould
2693     *
2694     * @see elm_thumbscroll_threshould_get()
2695     * @ingroup Scrolling
2696     */
2697    EAPI void             elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
2698
2699    /**
2700     * Get the minimum speed of mouse cursor movement which will trigger
2701     * list self scrolling animation after a mouse up event
2702     * (pixels/second).
2703     *
2704     * @return the thumb scroll momentum threshould
2705     *
2706     * @ingroup Scrolling
2707     */
2708    EAPI double           elm_scroll_thumbscroll_momentum_threshold_get(void);
2709
2710    /**
2711     * Set the minimum speed of mouse cursor movement which will trigger
2712     * list self scrolling animation after a mouse up event
2713     * (pixels/second).
2714     *
2715     * @param threshold the thumb scroll momentum threshould
2716     *
2717     * @see elm_thumbscroll_momentum_threshould_get()
2718     * @ingroup Scrolling
2719     */
2720    EAPI void             elm_scroll_thumbscroll_momentum_threshold_set(double threshold);
2721
2722    /**
2723     * Set the minimum speed of mouse cursor movement which will trigger
2724     * list self scrolling animation after a mouse up event
2725     * (pixels/second), for all Elementary application windows.
2726     *
2727     * @param threshold the thumb scroll momentum threshould
2728     *
2729     * @see elm_thumbscroll_momentum_threshould_get()
2730     * @ingroup Scrolling
2731     */
2732    EAPI void             elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
2733
2734    /**
2735     * Get the amount of inertia a scroller will impose at self scrolling
2736     * animations.
2737     *
2738     * @return the thumb scroll friction
2739     *
2740     * @ingroup Scrolling
2741     */
2742    EAPI double           elm_scroll_thumbscroll_friction_get(void);
2743
2744    /**
2745     * Set the amount of inertia a scroller will impose at self scrolling
2746     * animations.
2747     *
2748     * @param friction the thumb scroll friction
2749     *
2750     * @see elm_thumbscroll_friction_get()
2751     * @ingroup Scrolling
2752     */
2753    EAPI void             elm_scroll_thumbscroll_friction_set(double friction);
2754
2755    /**
2756     * Set the amount of inertia a scroller will impose at self scrolling
2757     * animations, for all Elementary application windows.
2758     *
2759     * @param friction the thumb scroll friction
2760     *
2761     * @see elm_thumbscroll_friction_get()
2762     * @ingroup Scrolling
2763     */
2764    EAPI void             elm_scroll_thumbscroll_friction_all_set(double friction);
2765
2766    /**
2767     * Get the amount of lag between your actual mouse cursor dragging
2768     * movement and a scroller's view movement itself, while pushing it
2769     * into bounce state manually.
2770     *
2771     * @return the thumb scroll border friction
2772     *
2773     * @ingroup Scrolling
2774     */
2775    EAPI double           elm_scroll_thumbscroll_border_friction_get(void);
2776
2777    /**
2778     * Set the amount of lag between your actual mouse cursor dragging
2779     * movement and a scroller's view movement itself, while pushing it
2780     * into bounce state manually.
2781     *
2782     * @param friction the thumb scroll border friction. @c 0.0 for
2783     *        perfect synchrony between two movements, @c 1.0 for maximum
2784     *        lag.
2785     *
2786     * @see elm_thumbscroll_border_friction_get()
2787     * @note parameter value will get bound to 0.0 - 1.0 interval, always
2788     *
2789     * @ingroup Scrolling
2790     */
2791    EAPI void             elm_scroll_thumbscroll_border_friction_set(double friction);
2792
2793    /**
2794     * Set the amount of lag between your actual mouse cursor dragging
2795     * movement and a scroller's view movement itself, while pushing it
2796     * into bounce state manually, for all Elementary application windows.
2797     *
2798     * @param friction the thumb scroll border friction. @c 0.0 for
2799     *        perfect synchrony between two movements, @c 1.0 for maximum
2800     *        lag.
2801     *
2802     * @see elm_thumbscroll_border_friction_get()
2803     * @note parameter value will get bound to 0.0 - 1.0 interval, always
2804     *
2805     * @ingroup Scrolling
2806     */
2807    EAPI void             elm_scroll_thumbscroll_border_friction_all_set(double friction);
2808
2809    /**
2810     * @}
2811     */
2812
2813    /**
2814     * @defgroup Scrollhints Scrollhints
2815     *
2816     * Objects when inside a scroller can scroll, but this may not always be
2817     * desirable in certain situations. This allows an object to hint to itself
2818     * and parents to "not scroll" in one of 2 ways. If any child object of a
2819     * scroller has pushed a scroll freeze or hold then it affects all parent
2820     * scrollers until all children have released them.
2821     *
2822     * 1. To hold on scrolling. This means just flicking and dragging may no
2823     * longer scroll, but pressing/dragging near an edge of the scroller will
2824     * still scroll. This is automatically used by the entry object when
2825     * selecting text.
2826     *
2827     * 2. To totally freeze scrolling. This means it stops. until
2828     * popped/released.
2829     *
2830     * @{
2831     */
2832
2833    /**
2834     * Push the scroll hold by 1
2835     *
2836     * This increments the scroll hold count by one. If it is more than 0 it will
2837     * take effect on the parents of the indicated object.
2838     *
2839     * @param obj The object
2840     * @ingroup Scrollhints
2841     */
2842    EAPI void             elm_object_scroll_hold_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
2843
2844    /**
2845     * Pop the scroll hold by 1
2846     *
2847     * This decrements the scroll hold count by one. If it is more than 0 it will
2848     * take effect on the parents of the indicated object.
2849     *
2850     * @param obj The object
2851     * @ingroup Scrollhints
2852     */
2853    EAPI void             elm_object_scroll_hold_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
2854
2855    /**
2856     * Push the scroll freeze by 1
2857     *
2858     * This increments the scroll freeze count by one. If it is more
2859     * than 0 it will take effect on the parents of the indicated
2860     * object.
2861     *
2862     * @param obj The object
2863     * @ingroup Scrollhints
2864     */
2865    EAPI void             elm_object_scroll_freeze_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
2866
2867    /**
2868     * Pop the scroll freeze by 1
2869     *
2870     * This decrements the scroll freeze count by one. If it is more
2871     * than 0 it will take effect on the parents of the indicated
2872     * object.
2873     *
2874     * @param obj The object
2875     * @ingroup Scrollhints
2876     */
2877    EAPI void             elm_object_scroll_freeze_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
2878
2879    /**
2880     * Lock the scrolling of the given widget (and thus all parents)
2881     *
2882     * This locks the given object from scrolling in the X axis (and implicitly
2883     * also locks all parent scrollers too from doing the same).
2884     *
2885     * @param obj The object
2886     * @param lock The lock state (1 == locked, 0 == unlocked)
2887     * @ingroup Scrollhints
2888     */
2889    EAPI void             elm_object_scroll_lock_x_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
2890
2891    /**
2892     * Lock the scrolling of the given widget (and thus all parents)
2893     *
2894     * This locks the given object from scrolling in the Y axis (and implicitly
2895     * also locks all parent scrollers too from doing the same).
2896     *
2897     * @param obj The object
2898     * @param lock The lock state (1 == locked, 0 == unlocked)
2899     * @ingroup Scrollhints
2900     */
2901    EAPI void             elm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
2902
2903    /**
2904     * Get the scrolling lock of the given widget
2905     *
2906     * This gets the lock for X axis scrolling.
2907     *
2908     * @param obj The object
2909     * @ingroup Scrollhints
2910     */
2911    EAPI Eina_Bool        elm_object_scroll_lock_x_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2912
2913    /**
2914     * Get the scrolling lock of the given widget
2915     *
2916     * This gets the lock for X axis scrolling.
2917     *
2918     * @param obj The object
2919     * @ingroup Scrollhints
2920     */
2921    EAPI Eina_Bool        elm_object_scroll_lock_y_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2922
2923    /**
2924     * @}
2925     */
2926
2927    /**
2928     * Send a signal to the widget edje object.
2929     *
2930     * This function sends a signal to the edje object of the obj. An
2931     * edje program can respond to a signal by specifying matching
2932     * 'signal' and 'source' fields.
2933     *
2934     * @param obj The object
2935     * @param emission The signal's name.
2936     * @param source The signal's source.
2937     * @ingroup General
2938     */
2939    EAPI void             elm_object_signal_emit(Evas_Object *obj, const char *emission, const char *source) EINA_ARG_NONNULL(1);
2940
2941    /**
2942     * Add a callback for a signal emitted by widget edje object.
2943     *
2944     * This function connects a callback function to a signal emitted by the
2945     * edje object of the obj.
2946     * Globs can occur in either the emission or source name.
2947     *
2948     * @param obj The object
2949     * @param emission The signal's name.
2950     * @param source The signal's source.
2951     * @param func The callback function to be executed when the signal is
2952     * emitted.
2953     * @param data A pointer to data to pass in to the callback function.
2954     * @ingroup General
2955     */
2956    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);
2957
2958    /**
2959     * Remove a signal-triggered callback from a widget edje object.
2960     *
2961     * This function removes a callback, previoulsy attached to a
2962     * signal emitted by the edje object of the obj.  The parameters
2963     * emission, source and func must match exactly those passed to a
2964     * previous call to elm_object_signal_callback_add(). The data
2965     * pointer that was passed to this call will be returned.
2966     *
2967     * @param obj The object
2968     * @param emission The signal's name.
2969     * @param source The signal's source.
2970     * @param func The callback function to be executed when the signal is
2971     * emitted.
2972     * @return The data pointer
2973     * @ingroup General
2974     */
2975    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);
2976
2977    /**
2978     * Add a callback for input events (key up, key down, mouse wheel)
2979     * on a given Elementary widget
2980     *
2981     * @param obj The widget to add an event callback on
2982     * @param func The callback function to be executed when the event
2983     * happens
2984     * @param data Data to pass in to @p func
2985     *
2986     * Every widget in an Elementary interface set to receive focus,
2987     * with elm_object_focus_allow_set(), will propagate @b all of its
2988     * key up, key down and mouse wheel input events up to its parent
2989     * object, and so on. All of the focusable ones in this chain which
2990     * had an event callback set, with this call, will be able to treat
2991     * those events. There are two ways of making the propagation of
2992     * these event upwards in the tree of widgets to @b cease:
2993     * - Just return @c EINA_TRUE on @p func. @c EINA_FALSE will mean
2994     *   the event was @b not processed, so the propagation will go on.
2995     * - The @c event_info pointer passed to @p func will contain the
2996     *   event's structure and, if you OR its @c event_flags inner
2997     *   value to @c EVAS_EVENT_FLAG_ON_HOLD, you're telling Elementary
2998     *   one has already handled it, thus killing the event's
2999     *   propagation, too.
3000     *
3001     * @note Your event callback will be issued on those events taking
3002     * place only if no other child widget of @obj has consumed the
3003     * event already.
3004     *
3005     * @note Not to be confused with @c
3006     * evas_object_event_callback_add(), which will add event callbacks
3007     * per type on general Evas objects (no event propagation
3008     * infrastructure taken in account).
3009     *
3010     * @note Not to be confused with @c
3011     * elm_object_signal_callback_add(), which will add callbacks to @b
3012     * signals coming from a widget's theme, not input events.
3013     *
3014     * @note Not to be confused with @c
3015     * edje_object_signal_callback_add(), which does the same as
3016     * elm_object_signal_callback_add(), but directly on an Edje
3017     * object.
3018     *
3019     * @note Not to be confused with @c
3020     * evas_object_smart_callback_add(), which adds callbacks to smart
3021     * objects' <b>smart events</b>, and not input events.
3022     *
3023     * @see elm_object_event_callback_del()
3024     *
3025     * @ingroup General
3026     */
3027    EAPI void             elm_object_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3028
3029    /**
3030     * Remove an event callback from a widget.
3031     *
3032     * This function removes a callback, previoulsy attached to event emission
3033     * by the @p obj.
3034     * The parameters func and data must match exactly those passed to
3035     * a previous call to elm_object_event_callback_add(). The data pointer that
3036     * was passed to this call will be returned.
3037     *
3038     * @param obj The object
3039     * @param func The callback function to be executed when the event is
3040     * emitted.
3041     * @param data Data to pass in to the callback function.
3042     * @return The data pointer
3043     * @ingroup General
3044     */
3045    EAPI void            *elm_object_event_callback_del(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3046
3047    /**
3048     * Adjust size of an element for finger usage.
3049     *
3050     * @param times_w How many fingers should fit horizontally
3051     * @param w Pointer to the width size to adjust
3052     * @param times_h How many fingers should fit vertically
3053     * @param h Pointer to the height size to adjust
3054     *
3055     * This takes width and height sizes (in pixels) as input and a
3056     * size multiple (which is how many fingers you want to place
3057     * within the area, being "finger" the size set by
3058     * elm_finger_size_set()), and adjusts the size to be large enough
3059     * to accommodate the resulting size -- if it doesn't already
3060     * accommodate it. On return the @p w and @p h sizes pointed to by
3061     * these parameters will be modified, on those conditions.
3062     *
3063     * @note This is kind of a low level Elementary call, most useful
3064     * on size evaluation times for widgets. An external user wouldn't
3065     * be calling, most of the time.
3066     *
3067     * @ingroup Fingers
3068     */
3069    EAPI void             elm_coords_finger_size_adjust(int times_w, Evas_Coord *w, int times_h, Evas_Coord *h);
3070
3071    /**
3072     * Get the duration for occuring long press event.
3073     *
3074     * @return Timeout for long press event
3075     * @ingroup Longpress
3076     */
3077    EAPI double           elm_longpress_timeout_get(void);
3078
3079    /**
3080     * Set the duration for occuring long press event.
3081     *
3082     * @param lonpress_timeout Timeout for long press event
3083     * @ingroup Longpress
3084     */
3085    EAPI void             elm_longpress_timeout_set(double longpress_timeout);
3086
3087    /**
3088     * @defgroup Debug Debug
3089     * don't use it unless you are sure
3090     *
3091     * @{
3092     */
3093
3094    /**
3095     * Print Tree object hierarchy in stdout
3096     *
3097     * @param obj The root object
3098     * @ingroup Debug
3099     */
3100    EAPI void             elm_object_tree_dump(const Evas_Object *top);
3101
3102    /**
3103     * Print Elm Objects tree hierarchy in file as dot(graphviz) syntax.
3104     *
3105     * @param obj The root object
3106     * @param file The path of output file
3107     * @ingroup Debug
3108     */
3109    EAPI void             elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
3110
3111    /**
3112     * @}
3113     */
3114
3115    /**
3116     * @defgroup Theme Theme
3117     *
3118     * Elementary uses Edje to theme its widgets, naturally. But for the most
3119     * part this is hidden behind a simpler interface that lets the user set
3120     * extensions and choose the style of widgets in a much easier way.
3121     *
3122     * Instead of thinking in terms of paths to Edje files and their groups
3123     * each time you want to change the appearance of a widget, Elementary
3124     * works so you can add any theme file with extensions or replace the
3125     * main theme at one point in the application, and then just set the style
3126     * of widgets with elm_object_style_set() and related functions. Elementary
3127     * will then look in its list of themes for a matching group and apply it,
3128     * and when the theme changes midway through the application, all widgets
3129     * will be updated accordingly.
3130     *
3131     * There are three concepts you need to know to understand how Elementary
3132     * theming works: default theme, extensions and overlays.
3133     *
3134     * Default theme, obviously enough, is the one that provides the default
3135     * look of all widgets. End users can change the theme used by Elementary
3136     * by setting the @c ELM_THEME environment variable before running an
3137     * application, or globally for all programs using the @c elementary_config
3138     * utility. Applications can change the default theme using elm_theme_set(),
3139     * but this can go against the user wishes, so it's not an adviced practice.
3140     *
3141     * Ideally, applications should find everything they need in the already
3142     * provided theme, but there may be occasions when that's not enough and
3143     * custom styles are required to correctly express the idea. For this
3144     * cases, Elementary has extensions.
3145     *
3146     * Extensions allow the application developer to write styles of its own
3147     * to apply to some widgets. This requires knowledge of how each widget
3148     * is themed, as extensions will always replace the entire group used by
3149     * the widget, so important signals and parts need to be there for the
3150     * object to behave properly (see documentation of Edje for details).
3151     * Once the theme for the extension is done, the application needs to add
3152     * it to the list of themes Elementary will look into, using
3153     * elm_theme_extension_add(), and set the style of the desired widgets as
3154     * he would normally with elm_object_style_set().
3155     *
3156     * Overlays, on the other hand, can replace the look of all widgets by
3157     * overriding the default style. Like extensions, it's up to the application
3158     * developer to write the theme for the widgets it wants, the difference
3159     * being that when looking for the theme, Elementary will check first the
3160     * list of overlays, then the set theme and lastly the list of extensions,
3161     * so with overlays it's possible to replace the default view and every
3162     * widget will be affected. This is very much alike to setting the whole
3163     * theme for the application and will probably clash with the end user
3164     * options, not to mention the risk of ending up with not matching styles
3165     * across the program. Unless there's a very special reason to use them,
3166     * overlays should be avoided for the resons exposed before.
3167     *
3168     * All these theme lists are handled by ::Elm_Theme instances. Elementary
3169     * keeps one default internally and every function that receives one of
3170     * these can be called with NULL to refer to this default (except for
3171     * elm_theme_free()). It's possible to create a new instance of a
3172     * ::Elm_Theme to set other theme for a specific widget (and all of its
3173     * children), but this is as discouraged, if not even more so, than using
3174     * overlays. Don't use this unless you really know what you are doing.
3175     *
3176     * But to be less negative about things, you can look at the following
3177     * examples:
3178     * @li @ref theme_example_01 "Using extensions"
3179     * @li @ref theme_example_02 "Using overlays"
3180     *
3181     * @{
3182     */
3183    /**
3184     * @typedef Elm_Theme
3185     *
3186     * Opaque handler for the list of themes Elementary looks for when
3187     * rendering widgets.
3188     *
3189     * Stay out of this unless you really know what you are doing. For most
3190     * cases, sticking to the default is all a developer needs.
3191     */
3192    typedef struct _Elm_Theme Elm_Theme;
3193
3194    /**
3195     * Create a new specific theme
3196     *
3197     * This creates an empty specific theme that only uses the default theme. A
3198     * specific theme has its own private set of extensions and overlays too
3199     * (which are empty by default). Specific themes do not fall back to themes
3200     * of parent objects. They are not intended for this use. Use styles, overlays
3201     * and extensions when needed, but avoid specific themes unless there is no
3202     * other way (example: you want to have a preview of a new theme you are
3203     * selecting in a "theme selector" window. The preview is inside a scroller
3204     * and should display what the theme you selected will look like, but not
3205     * actually apply it yet. The child of the scroller will have a specific
3206     * theme set to show this preview before the user decides to apply it to all
3207     * applications).
3208     */
3209    EAPI Elm_Theme       *elm_theme_new(void);
3210    /**
3211     * Free a specific theme
3212     *
3213     * @param th The theme to free
3214     *
3215     * This frees a theme created with elm_theme_new().
3216     */
3217    EAPI void             elm_theme_free(Elm_Theme *th);
3218    /**
3219     * Copy the theme fom the source to the destination theme
3220     *
3221     * @param th The source theme to copy from
3222     * @param thdst The destination theme to copy data to
3223     *
3224     * This makes a one-time static copy of all the theme config, extensions
3225     * and overlays from @p th to @p thdst. If @p th references a theme, then
3226     * @p thdst is also set to reference it, with all the theme settings,
3227     * overlays and extensions that @p th had.
3228     */
3229    EAPI void             elm_theme_copy(Elm_Theme *th, Elm_Theme *thdst);
3230    /**
3231     * Tell the source theme to reference the ref theme
3232     *
3233     * @param th The theme that will do the referencing
3234     * @param thref The theme that is the reference source
3235     *
3236     * This clears @p th to be empty and then sets it to refer to @p thref
3237     * so @p th acts as an override to @p thref, but where its overrides
3238     * don't apply, it will fall through to @p thref for configuration.
3239     */
3240    EAPI void             elm_theme_ref_set(Elm_Theme *th, Elm_Theme *thref);
3241    /**
3242     * Return the theme referred to
3243     *
3244     * @param th The theme to get the reference from
3245     * @return The referenced theme handle
3246     *
3247     * This gets the theme set as the reference theme by elm_theme_ref_set().
3248     * If no theme is set as a reference, NULL is returned.
3249     */
3250    EAPI Elm_Theme       *elm_theme_ref_get(Elm_Theme *th);
3251    /**
3252     * Return the default theme
3253     *
3254     * @return The default theme handle
3255     *
3256     * This returns the internal default theme setup handle that all widgets
3257     * use implicitly unless a specific theme is set. This is also often use
3258     * as a shorthand of NULL.
3259     */
3260    EAPI Elm_Theme       *elm_theme_default_get(void);
3261    /**
3262     * Prepends a theme overlay to the list of overlays
3263     *
3264     * @param th The theme to add to, or if NULL, the default theme
3265     * @param item The Edje file path to be used
3266     *
3267     * Use this if your application needs to provide some custom overlay theme
3268     * (An Edje file that replaces some default styles of widgets) where adding
3269     * new styles, or changing system theme configuration is not possible. Do
3270     * NOT use this instead of a proper system theme configuration. Use proper
3271     * configuration files, profiles, environment variables etc. to set a theme
3272     * so that the theme can be altered by simple confiugration by a user. Using
3273     * this call to achieve that effect is abusing the API and will create lots
3274     * of trouble.
3275     *
3276     * @see elm_theme_extension_add()
3277     */
3278    EAPI void             elm_theme_overlay_add(Elm_Theme *th, const char *item);
3279    /**
3280     * Delete a theme overlay from the list of overlays
3281     *
3282     * @param th The theme to delete from, or if NULL, the default theme
3283     * @param item The name of the theme overlay
3284     *
3285     * @see elm_theme_overlay_add()
3286     */
3287    EAPI void             elm_theme_overlay_del(Elm_Theme *th, const char *item);
3288    /**
3289     * Appends a theme extension to the list of extensions.
3290     *
3291     * @param th The theme to add to, or if NULL, the default theme
3292     * @param item The Edje file path to be used
3293     *
3294     * This is intended when an application needs more styles of widgets or new
3295     * widget themes that the default does not provide (or may not provide). The
3296     * application has "extended" usage by coming up with new custom style names
3297     * for widgets for specific uses, but as these are not "standard", they are
3298     * not guaranteed to be provided by a default theme. This means the
3299     * application is required to provide these extra elements itself in specific
3300     * Edje files. This call adds one of those Edje files to the theme search
3301     * path to be search after the default theme. The use of this call is
3302     * encouraged when default styles do not meet the needs of the application.
3303     * Use this call instead of elm_theme_overlay_add() for almost all cases.
3304     *
3305     * @see elm_object_style_set()
3306     */
3307    EAPI void             elm_theme_extension_add(Elm_Theme *th, const char *item);
3308    /**
3309     * Deletes a theme extension from the list of extensions.
3310     *
3311     * @param th The theme to delete from, or if NULL, the default theme
3312     * @param item The name of the theme extension
3313     *
3314     * @see elm_theme_extension_add()
3315     */
3316    EAPI void             elm_theme_extension_del(Elm_Theme *th, const char *item);
3317    /**
3318     * Set the theme search order for the given theme
3319     *
3320     * @param th The theme to set the search order, or if NULL, the default theme
3321     * @param theme Theme search string
3322     *
3323     * This sets the search string for the theme in path-notation from first
3324     * theme to search, to last, delimited by the : character. Example:
3325     *
3326     * "shiny:/path/to/file.edj:default"
3327     *
3328     * See the ELM_THEME environment variable for more information.
3329     *
3330     * @see elm_theme_get()
3331     * @see elm_theme_list_get()
3332     */
3333    EAPI void             elm_theme_set(Elm_Theme *th, const char *theme);
3334    /**
3335     * Return the theme search order
3336     *
3337     * @param th The theme to get the search order, or if NULL, the default theme
3338     * @return The internal search order path
3339     *
3340     * This function returns a colon separated string of theme elements as
3341     * returned by elm_theme_list_get().
3342     *
3343     * @see elm_theme_set()
3344     * @see elm_theme_list_get()
3345     */
3346    EAPI const char      *elm_theme_get(Elm_Theme *th);
3347    /**
3348     * Return a list of theme elements to be used in a theme.
3349     *
3350     * @param th Theme to get the list of theme elements from.
3351     * @return The internal list of theme elements
3352     *
3353     * This returns the internal list of theme elements (will only be valid as
3354     * long as the theme is not modified by elm_theme_set() or theme is not
3355     * freed by elm_theme_free(). This is a list of strings which must not be
3356     * altered as they are also internal. If @p th is NULL, then the default
3357     * theme element list is returned.
3358     *
3359     * A theme element can consist of a full or relative path to a .edj file,
3360     * or a name, without extension, for a theme to be searched in the known
3361     * theme paths for Elemementary.
3362     *
3363     * @see elm_theme_set()
3364     * @see elm_theme_get()
3365     */
3366    EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
3367    /**
3368     * Return the full patrh for a theme element
3369     *
3370     * @param f The theme element name
3371     * @param in_search_path Pointer to a boolean to indicate if item is in the search path or not
3372     * @return The full path to the file found.
3373     *
3374     * This returns a string you should free with free() on success, NULL on
3375     * failure. This will search for the given theme element, and if it is a
3376     * full or relative path element or a simple searchable name. The returned
3377     * path is the full path to the file, if searched, and the file exists, or it
3378     * is simply the full path given in the element or a resolved path if
3379     * relative to home. The @p in_search_path boolean pointed to is set to
3380     * EINA_TRUE if the file was a searchable file andis in the search path,
3381     * and EINA_FALSE otherwise.
3382     */
3383    EAPI char            *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path);
3384    /**
3385     * Flush the current theme.
3386     *
3387     * @param th Theme to flush
3388     *
3389     * This flushes caches that let elementary know where to find theme elements
3390     * in the given theme. If @p th is NULL, then the default theme is flushed.
3391     * Call this function if source theme data has changed in such a way as to
3392     * make any caches Elementary kept invalid.
3393     */
3394    EAPI void             elm_theme_flush(Elm_Theme *th);
3395    /**
3396     * This flushes all themes (default and specific ones).
3397     *
3398     * This will flush all themes in the current application context, by calling
3399     * elm_theme_flush() on each of them.
3400     */
3401    EAPI void             elm_theme_full_flush(void);
3402    /**
3403     * Set the theme for all elementary using applications on the current display
3404     *
3405     * @param theme The name of the theme to use. Format same as the ELM_THEME
3406     * environment variable.
3407     */
3408    EAPI void             elm_theme_all_set(const char *theme);
3409    /**
3410     * Return a list of theme elements in the theme search path
3411     *
3412     * @return A list of strings that are the theme element names.
3413     *
3414     * This lists all available theme files in the standard Elementary search path
3415     * for theme elements, and returns them in alphabetical order as theme
3416     * element names in a list of strings. Free this with
3417     * elm_theme_name_available_list_free() when you are done with the list.
3418     */
3419    EAPI Eina_List       *elm_theme_name_available_list_new(void);
3420    /**
3421     * Free the list returned by elm_theme_name_available_list_new()
3422     *
3423     * This frees the list of themes returned by
3424     * elm_theme_name_available_list_new(). Once freed the list should no longer
3425     * be used. a new list mys be created.
3426     */
3427    EAPI void             elm_theme_name_available_list_free(Eina_List *list);
3428    /**
3429     * Set a specific theme to be used for this object and its children
3430     *
3431     * @param obj The object to set the theme on
3432     * @param th The theme to set
3433     *
3434     * This sets a specific theme that will be used for the given object and any
3435     * child objects it has. If @p th is NULL then the theme to be used is
3436     * cleared and the object will inherit its theme from its parent (which
3437     * ultimately will use the default theme if no specific themes are set).
3438     *
3439     * Use special themes with great care as this will annoy users and make
3440     * configuration difficult. Avoid any custom themes at all if it can be
3441     * helped.
3442     */
3443    EAPI void             elm_object_theme_set(Evas_Object *obj, Elm_Theme *th) EINA_ARG_NONNULL(1);
3444    /**
3445     * Get the specific theme to be used
3446     *
3447     * @param obj The object to get the specific theme from
3448     * @return The specifc theme set.
3449     *
3450     * This will return a specific theme set, or NULL if no specific theme is
3451     * set on that object. It will not return inherited themes from parents, only
3452     * the specific theme set for that specific object. See elm_object_theme_set()
3453     * for more information.
3454     */
3455    EAPI Elm_Theme       *elm_object_theme_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3456
3457    /**
3458     * Get a data item from a theme
3459     *
3460     * @param th The theme, or NULL for default theme
3461     * @param key The data key to search with
3462     * @return The data value, or NULL on failure
3463     *
3464     * This function is used to return data items from edc in @p th, an overlay, or an extension.
3465     * It works the same way as edje_file_data_get() except that the return is stringshared.
3466     */
3467    EAPI const char      *elm_theme_data_get(Elm_Theme *th, const char *key) EINA_ARG_NONNULL(2);
3468    /**
3469     * @}
3470     */
3471
3472    /* win */
3473    /** @defgroup Win Win
3474     *
3475     * @image html img/widget/win/preview-00.png
3476     * @image latex img/widget/win/preview-00.eps
3477     *
3478     * The window class of Elementary.  Contains functions to manipulate
3479     * windows. The Evas engine used to render the window contents is specified
3480     * in the system or user elementary config files (whichever is found last),
3481     * and can be overridden with the ELM_ENGINE environment variable for
3482     * testing.  Engines that may be supported (depending on Evas and Ecore-Evas
3483     * compilation setup and modules actually installed at runtime) are (listed
3484     * in order of best supported and most likely to be complete and work to
3485     * lowest quality).
3486     *
3487     * @li "x11", "x", "software-x11", "software_x11" (Software rendering in X11)
3488     * @li "gl", "opengl", "opengl-x11", "opengl_x11" (OpenGL or OpenGL-ES2
3489     * rendering in X11)
3490     * @li "shot:..." (Virtual screenshot renderer - renders to output file and
3491     * exits)
3492     * @li "fb", "software-fb", "software_fb" (Linux framebuffer direct software
3493     * rendering)
3494     * @li "sdl", "software-sdl", "software_sdl" (SDL software rendering to SDL
3495     * buffer)
3496     * @li "gl-sdl", "gl_sdl", "opengl-sdl", "opengl_sdl" (OpenGL or OpenGL-ES2
3497     * rendering using SDL as the buffer)
3498     * @li "gdi", "software-gdi", "software_gdi" (Windows WIN32 rendering via
3499     * GDI with software)
3500     * @li "dfb", "directfb" (Rendering to a DirectFB window)
3501     * @li "x11-8", "x8", "software-8-x11", "software_8_x11" (Rendering in
3502     * grayscale using dedicated 8bit software engine in X11)
3503     * @li "x11-16", "x16", "software-16-x11", "software_16_x11" (Rendering in
3504     * X11 using 16bit software engine)
3505     * @li "wince-gdi", "software-16-wince-gdi", "software_16_wince_gdi"
3506     * (Windows CE rendering via GDI with 16bit software renderer)
3507     * @li "sdl-16", "software-16-sdl", "software_16_sdl" (Rendering to SDL
3508     * buffer with 16bit software renderer)
3509     *
3510     * All engines use a simple string to select the engine to render, EXCEPT
3511     * the "shot" engine. This actually encodes the output of the virtual
3512     * screenshot and how long to delay in the engine string. The engine string
3513     * is encoded in the following way:
3514     *
3515     *   "shot:[delay=XX][:][repeat=DDD][:][file=XX]"
3516     *
3517     * Where options are separated by a ":" char if more than one option is
3518     * given, with delay, if provided being the first option and file the last
3519     * (order is important). The delay specifies how long to wait after the
3520     * window is shown before doing the virtual "in memory" rendering and then
3521     * save the output to the file specified by the file option (and then exit).
3522     * If no delay is given, the default is 0.5 seconds. If no file is given the
3523     * default output file is "out.png". Repeat option is for continous
3524     * capturing screenshots. Repeat range is from 1 to 999 and filename is
3525     * fixed to "out001.png" Some examples of using the shot engine:
3526     *
3527     *   ELM_ENGINE="shot:delay=1.0:repeat=5:file=elm_test.png" elementary_test
3528     *   ELM_ENGINE="shot:delay=1.0:file=elm_test.png" elementary_test
3529     *   ELM_ENGINE="shot:file=elm_test2.png" elementary_test
3530     *   ELM_ENGINE="shot:delay=2.0" elementary_test
3531     *   ELM_ENGINE="shot:" elementary_test
3532     *
3533     * Signals that you can add callbacks for are:
3534     *
3535     * @li "delete,request": the user requested to close the window. See
3536     * elm_win_autodel_set().
3537     * @li "focus,in": window got focus
3538     * @li "focus,out": window lost focus
3539     * @li "moved": window that holds the canvas was moved
3540     *
3541     * Examples:
3542     * @li @ref win_example_01
3543     *
3544     * @{
3545     */
3546    /**
3547     * Defines the types of window that can be created
3548     *
3549     * These are hints set on the window so that a running Window Manager knows
3550     * how the window should be handled and/or what kind of decorations it
3551     * should have.
3552     *
3553     * Currently, only the X11 backed engines use them.
3554     */
3555    typedef enum _Elm_Win_Type
3556      {
3557         ELM_WIN_BASIC, /**< A normal window. Indicates a normal, top-level
3558                          window. Almost every window will be created with this
3559                          type. */
3560         ELM_WIN_DIALOG_BASIC, /**< Used for simple dialog windows/ */
3561         ELM_WIN_DESKTOP, /**< For special desktop windows, like a background
3562                            window holding desktop icons. */
3563         ELM_WIN_DOCK, /**< The window is used as a dock or panel. Usually would
3564                         be kept on top of any other window by the Window
3565                         Manager. */
3566         ELM_WIN_TOOLBAR, /**< The window is used to hold a floating toolbar, or
3567                            similar. */
3568         ELM_WIN_MENU, /**< Similar to #ELM_WIN_TOOLBAR. */
3569         ELM_WIN_UTILITY, /**< A persistent utility window, like a toolbox or
3570                            pallete. */
3571         ELM_WIN_SPLASH, /**< Splash window for a starting up application. */
3572         ELM_WIN_DROPDOWN_MENU, /**< The window is a dropdown menu, as when an
3573                                  entry in a menubar is clicked. Typically used
3574                                  with elm_win_override_set(). This hint exists
3575                                  for completion only, as the EFL way of
3576                                  implementing a menu would not normally use a
3577                                  separate window for its contents. */
3578         ELM_WIN_POPUP_MENU, /**< Like #ELM_WIN_DROPDOWN_MENU, but for the menu
3579                               triggered by right-clicking an object. */
3580         ELM_WIN_TOOLTIP, /**< The window is a tooltip. A short piece of
3581                            explanatory text that typically appear after the
3582                            mouse cursor hovers over an object for a while.
3583                            Typically used with elm_win_override_set() and also
3584                            not very commonly used in the EFL. */
3585         ELM_WIN_NOTIFICATION, /**< A notification window, like a warning about
3586                                 battery life or a new E-Mail received. */
3587         ELM_WIN_COMBO, /**< A window holding the contents of a combo box. Not
3588                          usually used in the EFL. */
3589         ELM_WIN_DND, /**< Used to indicate the window is a representation of an
3590                        object being dragged across different windows, or even
3591                        applications. Typically used with
3592                        elm_win_override_set(). */
3593         ELM_WIN_INLINED_IMAGE, /**< The window is rendered onto an image
3594                                  buffer. No actual window is created for this
3595                                  type, instead the window and all of its
3596                                  contents will be rendered to an image buffer.
3597                                  This allows to have children window inside a
3598                                  parent one just like any other object would
3599                                  be, and do other things like applying @c
3600                                  Evas_Map effects to it. This is the only type
3601                                  of window that requires the @c parent
3602                                  parameter of elm_win_add() to be a valid @c
3603                                  Evas_Object. */
3604      } Elm_Win_Type;
3605
3606    /**
3607     * The differents layouts that can be requested for the virtual keyboard.
3608     *
3609     * When the application window is being managed by Illume, it may request
3610     * any of the following layouts for the virtual keyboard.
3611     */
3612    typedef enum _Elm_Win_Keyboard_Mode
3613      {
3614         ELM_WIN_KEYBOARD_UNKNOWN, /**< Unknown keyboard state */
3615         ELM_WIN_KEYBOARD_OFF, /**< Request to deactivate the keyboard */
3616         ELM_WIN_KEYBOARD_ON, /**< Enable keyboard with default layout */
3617         ELM_WIN_KEYBOARD_ALPHA, /**< Alpha (a-z) keyboard layout */
3618         ELM_WIN_KEYBOARD_NUMERIC, /**< Numeric keyboard layout */
3619         ELM_WIN_KEYBOARD_PIN, /**< PIN keyboard layout */
3620         ELM_WIN_KEYBOARD_PHONE_NUMBER, /**< Phone keyboard layout */
3621         ELM_WIN_KEYBOARD_HEX, /**< Hexadecimal numeric keyboard layout */
3622         ELM_WIN_KEYBOARD_TERMINAL, /**< Full (QUERTY) keyboard layout */
3623         ELM_WIN_KEYBOARD_PASSWORD, /**< Password keyboard layout */
3624         ELM_WIN_KEYBOARD_IP, /**< IP keyboard layout */
3625         ELM_WIN_KEYBOARD_HOST, /**< Host keyboard layout */
3626         ELM_WIN_KEYBOARD_FILE, /**< File keyboard layout */
3627         ELM_WIN_KEYBOARD_URL, /**< URL keyboard layout */
3628         ELM_WIN_KEYBOARD_KEYPAD, /**< Keypad layout */
3629         ELM_WIN_KEYBOARD_J2ME /**< J2ME keyboard layout */
3630      } Elm_Win_Keyboard_Mode;
3631
3632    /**
3633     * Available commands that can be sent to the Illume manager.
3634     *
3635     * When running under an Illume session, a window may send commands to the
3636     * Illume manager to perform different actions.
3637     */
3638    typedef enum _Elm_Illume_Command
3639      {
3640         ELM_ILLUME_COMMAND_FOCUS_BACK, /**< Reverts focus to the previous
3641                                          window */
3642         ELM_ILLUME_COMMAND_FOCUS_FORWARD, /**< Sends focus to the next window\
3643                                             in the list */
3644         ELM_ILLUME_COMMAND_FOCUS_HOME, /**< Hides all windows to show the Home
3645                                          screen */
3646         ELM_ILLUME_COMMAND_CLOSE /**< Closes the currently active window */
3647      } Elm_Illume_Command;
3648
3649    /**
3650     * Adds a window object. If this is the first window created, pass NULL as
3651     * @p parent.
3652     *
3653     * @param parent Parent object to add the window to, or NULL
3654     * @param name The name of the window
3655     * @param type The window type, one of #Elm_Win_Type.
3656     *
3657     * The @p parent paramter can be @c NULL for every window @p type except
3658     * #ELM_WIN_INLINED_IMAGE, which needs a parent to retrieve the canvas on
3659     * which the image object will be created.
3660     *
3661     * @return The created object, or NULL on failure
3662     */
3663    EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type);
3664    /**
3665     * Add @p subobj as a resize object of window @p obj.
3666     *
3667     *
3668     * Setting an object as a resize object of the window means that the
3669     * @p subobj child's size and position will be controlled by the window
3670     * directly. That is, the object will be resized to match the window size
3671     * and should never be moved or resized manually by the developer.
3672     *
3673     * In addition, resize objects of the window control what the minimum size
3674     * of it will be, as well as whether it can or not be resized by the user.
3675     *
3676     * For the end user to be able to resize a window by dragging the handles
3677     * or borders provided by the Window Manager, or using any other similar
3678     * mechanism, all of the resize objects in the window should have their
3679     * evas_object_size_hint_weight_set() set to EVAS_HINT_EXPAND.
3680     *
3681     * @param obj The window object
3682     * @param subobj The resize object to add
3683     */
3684    EAPI void         elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
3685    /**
3686     * Delete @p subobj as a resize object of window @p obj.
3687     *
3688     * This function removes the object @p subobj from the resize objects of
3689     * the window @p obj. It will not delete the object itself, which will be
3690     * left unmanaged and should be deleted by the developer, manually handled
3691     * or set as child of some other container.
3692     *
3693     * @param obj The window object
3694     * @param subobj The resize object to add
3695     */
3696    EAPI void         elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
3697    /**
3698     * Set the title of the window
3699     *
3700     * @param obj The window object
3701     * @param title The title to set
3702     */
3703    EAPI void         elm_win_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
3704    /**
3705     * Get the title of the window
3706     *
3707     * The returned string is an internal one and should not be freed or
3708     * modified. It will also be rendered invalid if a new title is set or if
3709     * the window is destroyed.
3710     *
3711     * @param obj The window object
3712     * @return The title
3713     */
3714    EAPI const char  *elm_win_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3715    /**
3716     * Set the window's autodel state.
3717     *
3718     * When closing the window in any way outside of the program control, like
3719     * pressing the X button in the titlebar or using a command from the
3720     * Window Manager, a "delete,request" signal is emitted to indicate that
3721     * this event occurred and the developer can take any action, which may
3722     * include, or not, destroying the window object.
3723     *
3724     * When the @p autodel parameter is set, the window will be automatically
3725     * destroyed when this event occurs, after the signal is emitted.
3726     * If @p autodel is @c EINA_FALSE, then the window will not be destroyed
3727     * and is up to the program to do so when it's required.
3728     *
3729     * @param obj The window object
3730     * @param autodel If true, the window will automatically delete itself when
3731     * closed
3732     */
3733    EAPI void         elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel) EINA_ARG_NONNULL(1);
3734    /**
3735     * Get the window's autodel state.
3736     *
3737     * @param obj The window object
3738     * @return If the window will automatically delete itself when closed
3739     *
3740     * @see elm_win_autodel_set()
3741     */
3742    EAPI Eina_Bool    elm_win_autodel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3743    /**
3744     * Activate a window object.
3745     *
3746     * This function sends a request to the Window Manager to activate the
3747     * window pointed by @p obj. If honored by the WM, the window will receive
3748     * the keyboard focus.
3749     *
3750     * @note This is just a request that a Window Manager may ignore, so calling
3751     * this function does not ensure in any way that the window will be the
3752     * active one after it.
3753     *
3754     * @param obj The window object
3755     */
3756    EAPI void         elm_win_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
3757    /**
3758     * Lower a window object.
3759     *
3760     * Places the window pointed by @p obj at the bottom of the stack, so that
3761     * no other window is covered by it.
3762     *
3763     * If elm_win_override_set() is not set, the Window Manager may ignore this
3764     * request.
3765     *
3766     * @param obj The window object
3767     */
3768    EAPI void         elm_win_lower(Evas_Object *obj) EINA_ARG_NONNULL(1);
3769    /**
3770     * Raise a window object.
3771     *
3772     * Places the window pointed by @p obj at the top of the stack, so that it's
3773     * not covered by any other window.
3774     *
3775     * If elm_win_override_set() is not set, the Window Manager may ignore this
3776     * request.
3777     *
3778     * @param obj The window object
3779     */
3780    EAPI void         elm_win_raise(Evas_Object *obj) EINA_ARG_NONNULL(1);
3781    /**
3782     * Set the borderless state of a window.
3783     *
3784     * This function requests the Window Manager to not draw any decoration
3785     * around the window.
3786     *
3787     * @param obj The window object
3788     * @param borderless If true, the window is borderless
3789     */
3790    EAPI void         elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless) EINA_ARG_NONNULL(1);
3791    /**
3792     * Get the borderless state of a window.
3793     *
3794     * @param obj The window object
3795     * @return If true, the window is borderless
3796     */
3797    EAPI Eina_Bool    elm_win_borderless_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3798    /**
3799     * Set the shaped state of a window.
3800     *
3801     * Shaped windows, when supported, will render the parts of the window that
3802     * has no content, transparent.
3803     *
3804     * If @p shaped is EINA_FALSE, then it is strongly adviced to have some
3805     * background object or cover the entire window in any other way, or the
3806     * parts of the canvas that have no data will show framebuffer artifacts.
3807     *
3808     * @param obj The window object
3809     * @param shaped If true, the window is shaped
3810     *
3811     * @see elm_win_alpha_set()
3812     */
3813    EAPI void         elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped) EINA_ARG_NONNULL(1);
3814    /**
3815     * Get the shaped state of a window.
3816     *
3817     * @param obj The window object
3818     * @return If true, the window is shaped
3819     *
3820     * @see elm_win_shaped_set()
3821     */
3822    EAPI Eina_Bool    elm_win_shaped_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3823    /**
3824     * Set the alpha channel state of a window.
3825     *
3826     * If @p alpha is EINA_TRUE, the alpha channel of the canvas will be enabled
3827     * possibly making parts of the window completely or partially transparent.
3828     * This is also subject to the underlying system supporting it, like for
3829     * example, running under a compositing manager. If no compositing is
3830     * available, enabling this option will instead fallback to using shaped
3831     * windows, with elm_win_shaped_set().
3832     *
3833     * @param obj The window object
3834     * @param alpha If true, the window has an alpha channel
3835     *
3836     * @see elm_win_alpha_set()
3837     */
3838    EAPI void         elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
3839    /**
3840     * Get the transparency state of a window.
3841     *
3842     * @param obj The window object
3843     * @return If true, the window is transparent
3844     *
3845     * @see elm_win_transparent_set()
3846     */
3847    EAPI Eina_Bool    elm_win_transparent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3848    /**
3849     * Set the transparency state of a window.
3850     *
3851     * Use elm_win_alpha_set() instead.
3852     *
3853     * @param obj The window object
3854     * @param transparent If true, the window is transparent
3855     *
3856     * @see elm_win_alpha_set()
3857     */
3858    EAPI void         elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent) EINA_ARG_NONNULL(1);
3859    /**
3860     * Get the alpha channel state of a window.
3861     *
3862     * @param obj The window object
3863     * @return If true, the window has an alpha channel
3864     */
3865    EAPI Eina_Bool    elm_win_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3866    /**
3867     * Set the override state of a window.
3868     *
3869     * A window with @p override set to EINA_TRUE will not be managed by the
3870     * Window Manager. This means that no decorations of any kind will be shown
3871     * for it, moving and resizing must be handled by the application, as well
3872     * as the window visibility.
3873     *
3874     * This should not be used for normal windows, and even for not so normal
3875     * ones, it should only be used when there's a good reason and with a lot
3876     * of care. Mishandling override windows may result situations that
3877     * disrupt the normal workflow of the end user.
3878     *
3879     * @param obj The window object
3880     * @param override If true, the window is overridden
3881     */
3882    EAPI void         elm_win_override_set(Evas_Object *obj, Eina_Bool override) EINA_ARG_NONNULL(1);
3883    /**
3884     * Get the override state of a window.
3885     *
3886     * @param obj The window object
3887     * @return If true, the window is overridden
3888     *
3889     * @see elm_win_override_set()
3890     */
3891    EAPI Eina_Bool    elm_win_override_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3892    /**
3893     * Set the fullscreen state of a window.
3894     *
3895     * @param obj The window object
3896     * @param fullscreen If true, the window is fullscreen
3897     */
3898    EAPI void         elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen) EINA_ARG_NONNULL(1);
3899    /**
3900     * Get the fullscreen state of a window.
3901     *
3902     * @param obj The window object
3903     * @return If true, the window is fullscreen
3904     */
3905    EAPI Eina_Bool    elm_win_fullscreen_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3906    /**
3907     * Set the maximized state of a window.
3908     *
3909     * @param obj The window object
3910     * @param maximized If true, the window is maximized
3911     */
3912    EAPI void         elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized) EINA_ARG_NONNULL(1);
3913    /**
3914     * Get the maximized state of a window.
3915     *
3916     * @param obj The window object
3917     * @return If true, the window is maximized
3918     */
3919    EAPI Eina_Bool    elm_win_maximized_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3920    /**
3921     * Set the iconified state of a window.
3922     *
3923     * @param obj The window object
3924     * @param iconified If true, the window is iconified
3925     */
3926    EAPI void         elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified) EINA_ARG_NONNULL(1);
3927    /**
3928     * Get the iconified state of a window.
3929     *
3930     * @param obj The window object
3931     * @return If true, the window is iconified
3932     */
3933    EAPI Eina_Bool    elm_win_iconified_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3934    /**
3935     * Set the layer of the window.
3936     *
3937     * What this means exactly will depend on the underlying engine used.
3938     *
3939     * In the case of X11 backed engines, the value in @p layer has the
3940     * following meanings:
3941     * @li < 3: The window will be placed below all others.
3942     * @li > 5: The window will be placed above all others.
3943     * @li other: The window will be placed in the default layer.
3944     *
3945     * @param obj The window object
3946     * @param layer The layer of the window
3947     */
3948    EAPI void         elm_win_layer_set(Evas_Object *obj, int layer) EINA_ARG_NONNULL(1);
3949    /**
3950     * Get the layer of the window.
3951     *
3952     * @param obj The window object
3953     * @return The layer of the window
3954     *
3955     * @see elm_win_layer_set()
3956     */
3957    EAPI int          elm_win_layer_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3958    /**
3959     * Set the rotation of the window.
3960     *
3961     * Most engines only work with multiples of 90.
3962     *
3963     * This function is used to set the orientation of the window @p obj to
3964     * match that of the screen. The window itself will be resized to adjust
3965     * to the new geometry of its contents. If you want to keep the window size,
3966     * see elm_win_rotation_with_resize_set().
3967     *
3968     * @param obj The window object
3969     * @param rotation The rotation of the window, in degrees (0-360),
3970     * counter-clockwise.
3971     */
3972    EAPI void         elm_win_rotation_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
3973    /**
3974     * Rotates the window and resizes it.
3975     *
3976     * Like elm_win_rotation_set(), but it also resizes the window's contents so
3977     * that they fit inside the current window geometry.
3978     *
3979     * @param obj The window object
3980     * @param layer The rotation of the window in degrees (0-360),
3981     * counter-clockwise.
3982     */
3983    EAPI void         elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
3984    /**
3985     * Get the rotation of the window.
3986     *
3987     * @param obj The window object
3988     * @return The rotation of the window in degrees (0-360)
3989     *
3990     * @see elm_win_rotation_set()
3991     * @see elm_win_rotation_with_resize_set()
3992     */
3993    EAPI int          elm_win_rotation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3994    /**
3995     * Set the sticky state of the window.
3996     *
3997     * Hints the Window Manager that the window in @p obj should be left fixed
3998     * at its position even when the virtual desktop it's on moves or changes.
3999     *
4000     * @param obj The window object
4001     * @param sticky If true, the window's sticky state is enabled
4002     */
4003    EAPI void         elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky) EINA_ARG_NONNULL(1);
4004    /**
4005     * Get the sticky state of the window.
4006     *
4007     * @param obj The window object
4008     * @return If true, the window's sticky state is enabled
4009     *
4010     * @see elm_win_sticky_set()
4011     */
4012    EAPI Eina_Bool    elm_win_sticky_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4013    /**
4014     * Set if this window is an illume conformant window
4015     *
4016     * @param obj The window object
4017     * @param conformant The conformant flag (1 = conformant, 0 = non-conformant)
4018     */
4019    EAPI void         elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant) EINA_ARG_NONNULL(1);
4020    /**
4021     * Get if this window is an illume conformant window
4022     *
4023     * @param obj The window object
4024     * @return A boolean if this window is illume conformant or not
4025     */
4026    EAPI Eina_Bool    elm_win_conformant_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4027    /**
4028     * Set a window to be an illume quickpanel window
4029     *
4030     * By default window objects are not quickpanel windows.
4031     *
4032     * @param obj The window object
4033     * @param quickpanel The quickpanel flag (1 = quickpanel, 0 = normal window)
4034     */
4035    EAPI void         elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel) EINA_ARG_NONNULL(1);
4036    /**
4037     * Get if this window is a quickpanel or not
4038     *
4039     * @param obj The window object
4040     * @return A boolean if this window is a quickpanel or not
4041     */
4042    EAPI Eina_Bool    elm_win_quickpanel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4043    /**
4044     * Set the major priority of a quickpanel window
4045     *
4046     * @param obj The window object
4047     * @param priority The major priority for this quickpanel
4048     */
4049    EAPI void         elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4050    /**
4051     * Get the major priority of a quickpanel window
4052     *
4053     * @param obj The window object
4054     * @return The major priority of this quickpanel
4055     */
4056    EAPI int          elm_win_quickpanel_priority_major_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4057    /**
4058     * Set the minor priority of a quickpanel window
4059     *
4060     * @param obj The window object
4061     * @param priority The minor priority for this quickpanel
4062     */
4063    EAPI void         elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4064    /**
4065     * Get the minor priority of a quickpanel window
4066     *
4067     * @param obj The window object
4068     * @return The minor priority of this quickpanel
4069     */
4070    EAPI int          elm_win_quickpanel_priority_minor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4071    /**
4072     * Set which zone this quickpanel should appear in
4073     *
4074     * @param obj The window object
4075     * @param zone The requested zone for this quickpanel
4076     */
4077    EAPI void         elm_win_quickpanel_zone_set(Evas_Object *obj, int zone) EINA_ARG_NONNULL(1);
4078    /**
4079     * Get which zone this quickpanel should appear in
4080     *
4081     * @param obj The window object
4082     * @return The requested zone for this quickpanel
4083     */
4084    EAPI int          elm_win_quickpanel_zone_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4085    /**
4086     * Set the window to be skipped by keyboard focus
4087     *
4088     * This sets the window to be skipped by normal keyboard input. This means
4089     * a window manager will be asked to not focus this window as well as omit
4090     * it from things like the taskbar, pager, "alt-tab" list etc. etc.
4091     *
4092     * Call this and enable it on a window BEFORE you show it for the first time,
4093     * otherwise it may have no effect.
4094     *
4095     * Use this for windows that have only output information or might only be
4096     * interacted with by the mouse or fingers, and never for typing input.
4097     * Be careful that this may have side-effects like making the window
4098     * non-accessible in some cases unless the window is specially handled. Use
4099     * this with care.
4100     *
4101     * @param obj The window object
4102     * @param skip The skip flag state (EINA_TRUE if it is to be skipped)
4103     */
4104    EAPI void         elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip) EINA_ARG_NONNULL(1);
4105    /**
4106     * Send a command to the windowing environment
4107     *
4108     * This is intended to work in touchscreen or small screen device
4109     * environments where there is a more simplistic window management policy in
4110     * place. This uses the window object indicated to select which part of the
4111     * environment to control (the part that this window lives in), and provides
4112     * a command and an optional parameter structure (use NULL for this if not
4113     * needed).
4114     *
4115     * @param obj The window object that lives in the environment to control
4116     * @param command The command to send
4117     * @param params Optional parameters for the command
4118     */
4119    EAPI void         elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params) EINA_ARG_NONNULL(1);
4120    /**
4121     * Get the inlined image object handle
4122     *
4123     * When you create a window with elm_win_add() of type ELM_WIN_INLINED_IMAGE,
4124     * then the window is in fact an evas image object inlined in the parent
4125     * canvas. You can get this object (be careful to not manipulate it as it
4126     * is under control of elementary), and use it to do things like get pixel
4127     * data, save the image to a file, etc.
4128     *
4129     * @param obj The window object to get the inlined image from
4130     * @return The inlined image object, or NULL if none exists
4131     */
4132    EAPI Evas_Object *elm_win_inlined_image_object_get(Evas_Object *obj);
4133    /**
4134     * Set the enabled status for the focus highlight in a window
4135     *
4136     * This function will enable or disable the focus highlight only for the
4137     * given window, regardless of the global setting for it
4138     *
4139     * @param obj The window where to enable the highlight
4140     * @param enabled The enabled value for the highlight
4141     */
4142    EAPI void         elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
4143    /**
4144     * Get the enabled value of the focus highlight for this window
4145     *
4146     * @param obj The window in which to check if the focus highlight is enabled
4147     *
4148     * @return EINA_TRUE if enabled, EINA_FALSE otherwise
4149     */
4150    EAPI Eina_Bool    elm_win_focus_highlight_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4151    /**
4152     * Set the style for the focus highlight on this window
4153     *
4154     * Sets the style to use for theming the highlight of focused objects on
4155     * the given window. If @p style is NULL, the default will be used.
4156     *
4157     * @param obj The window where to set the style
4158     * @param style The style to set
4159     */
4160    EAPI void         elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
4161    /**
4162     * Get the style set for the focus highlight object
4163     *
4164     * Gets the style set for this windows highilght object, or NULL if none
4165     * is set.
4166     *
4167     * @param obj The window to retrieve the highlights style from
4168     *
4169     * @return The style set or NULL if none was. Default is used in that case.
4170     */
4171    EAPI const char  *elm_win_focus_highlight_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4172    /*...
4173     * ecore_x_icccm_hints_set -> accepts_focus (add to ecore_evas)
4174     * ecore_x_icccm_hints_set -> window_group (add to ecore_evas)
4175     * ecore_x_icccm_size_pos_hints_set -> request_pos (add to ecore_evas)
4176     * ecore_x_icccm_client_leader_set -> l (add to ecore_evas)
4177     * ecore_x_icccm_window_role_set -> role (add to ecore_evas)
4178     * ecore_x_icccm_transient_for_set -> forwin (add to ecore_evas)
4179     * ecore_x_netwm_window_type_set -> type (add to ecore_evas)
4180     *
4181     * (add to ecore_x) set netwm argb icon! (add to ecore_evas)
4182     * (blank mouse, private mouse obj, defaultmouse)
4183     *
4184     */
4185    /**
4186     * Sets the keyboard mode of the window.
4187     *
4188     * @param obj The window object
4189     * @param mode The mode to set, one of #Elm_Win_Keyboard_Mode
4190     */
4191    EAPI void                  elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode) EINA_ARG_NONNULL(1);
4192    /**
4193     * Gets the keyboard mode of the window.
4194     *
4195     * @param obj The window object
4196     * @return The mode, one of #Elm_Win_Keyboard_Mode
4197     */
4198    EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4199    /**
4200     * Sets whether the window is a keyboard.
4201     *
4202     * @param obj The window object
4203     * @param is_keyboard If true, the window is a virtual keyboard
4204     */
4205    EAPI void                  elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard) EINA_ARG_NONNULL(1);
4206    /**
4207     * Gets whether the window is a keyboard.
4208     *
4209     * @param obj The window object
4210     * @return If the window is a virtual keyboard
4211     */
4212    EAPI Eina_Bool             elm_win_keyboard_win_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4213
4214    /**
4215     * Get the screen position of a window.
4216     *
4217     * @param obj The window object
4218     * @param x The int to store the x coordinate to
4219     * @param y The int to store the y coordinate to
4220     */
4221    EAPI void                  elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y) EINA_ARG_NONNULL(1);
4222    /**
4223     * @}
4224     */
4225
4226    /**
4227     * @defgroup Inwin Inwin
4228     *
4229     * @image html img/widget/inwin/preview-00.png
4230     * @image latex img/widget/inwin/preview-00.eps
4231     * @image html img/widget/inwin/preview-01.png
4232     * @image latex img/widget/inwin/preview-01.eps
4233     * @image html img/widget/inwin/preview-02.png
4234     * @image latex img/widget/inwin/preview-02.eps
4235     *
4236     * An inwin is a window inside a window that is useful for a quick popup.
4237     * It does not hover.
4238     *
4239     * It works by creating an object that will occupy the entire window, so it
4240     * must be created using an @ref Win "elm_win" as parent only. The inwin
4241     * object can be hidden or restacked below every other object if it's
4242     * needed to show what's behind it without destroying it. If this is done,
4243     * the elm_win_inwin_activate() function can be used to bring it back to
4244     * full visibility again.
4245     *
4246     * There are three styles available in the default theme. These are:
4247     * @li default: The inwin is sized to take over most of the window it's
4248     * placed in.
4249     * @li minimal: The size of the inwin will be the minimum necessary to show
4250     * its contents.
4251     * @li minimal_vertical: Horizontally, the inwin takes as much space as
4252     * possible, but it's sized vertically the most it needs to fit its\
4253     * contents.
4254     *
4255     * Some examples of Inwin can be found in the following:
4256     * @li @ref inwin_example_01
4257     *
4258     * @{
4259     */
4260    /**
4261     * Adds an inwin to the current window
4262     *
4263     * The @p obj used as parent @b MUST be an @ref Win "Elementary Window".
4264     * Never call this function with anything other than the top-most window
4265     * as its parameter, unless you are fond of undefined behavior.
4266     *
4267     * After creating the object, the widget will set itself as resize object
4268     * for the window with elm_win_resize_object_add(), so when shown it will
4269     * appear to cover almost the entire window (how much of it depends on its
4270     * content and the style used). It must not be added into other container
4271     * objects and it needs not be moved or resized manually.
4272     *
4273     * @param parent The parent object
4274     * @return The new object or NULL if it cannot be created
4275     */
4276    EAPI Evas_Object          *elm_win_inwin_add(Evas_Object *obj) EINA_ARG_NONNULL(1);
4277    /**
4278     * Activates an inwin object, ensuring its visibility
4279     *
4280     * This function will make sure that the inwin @p obj is completely visible
4281     * by calling evas_object_show() and evas_object_raise() on it, to bring it
4282     * to the front. It also sets the keyboard focus to it, which will be passed
4283     * onto its content.
4284     *
4285     * The object's theme will also receive the signal "elm,action,show" with
4286     * source "elm".
4287     *
4288     * @param obj The inwin to activate
4289     */
4290    EAPI void                  elm_win_inwin_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
4291    /**
4292     * Set the content of an inwin object.
4293     *
4294     * Once the content object is set, a previously set one will be deleted.
4295     * If you want to keep that old content object, use the
4296     * elm_win_inwin_content_unset() function.
4297     *
4298     * @param obj The inwin object
4299     * @param content The object to set as content
4300     */
4301    EAPI void                  elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
4302    /**
4303     * Get the content of an inwin object.
4304     *
4305     * Return the content object which is set for this widget.
4306     *
4307     * The returned object is valid as long as the inwin is still alive and no
4308     * other content is set on it. Deleting the object will notify the inwin
4309     * about it and this one will be left empty.
4310     *
4311     * If you need to remove an inwin's content to be reused somewhere else,
4312     * see elm_win_inwin_content_unset().
4313     *
4314     * @param obj The inwin object
4315     * @return The content that is being used
4316     */
4317    EAPI Evas_Object          *elm_win_inwin_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4318    /**
4319     * Unset the content of an inwin object.
4320     *
4321     * Unparent and return the content object which was set for this widget.
4322     *
4323     * @param obj The inwin object
4324     * @return The content that was being used
4325     */
4326    EAPI Evas_Object          *elm_win_inwin_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4327    /**
4328     * @}
4329     */
4330    /* X specific calls - won't work on non-x engines (return 0) */
4331
4332    /**
4333     * Get the Ecore_X_Window of an Evas_Object
4334     *
4335     * @param obj The object
4336     *
4337     * @return The Ecore_X_Window of @p obj
4338     *
4339     * @ingroup Win
4340     */
4341    EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4342
4343    /* smart callbacks called:
4344     * "delete,request" - the user requested to delete the window
4345     * "focus,in" - window got focus
4346     * "focus,out" - window lost focus
4347     * "moved" - window that holds the canvas was moved
4348     */
4349
4350    /**
4351     * @defgroup Bg Bg
4352     *
4353     * @image html img/widget/bg/preview-00.png
4354     * @image latex img/widget/bg/preview-00.eps
4355     *
4356     * @brief Background object, used for setting a solid color, image or Edje
4357     * group as background to a window or any container object.
4358     *
4359     * The bg object is used for setting a solid background to a window or
4360     * packing into any container object. It works just like an image, but has
4361     * some properties useful to a background, like setting it to tiled,
4362     * centered, scaled or stretched.
4363     *
4364     * Here is some sample code using it:
4365     * @li @ref bg_01_example_page
4366     * @li @ref bg_02_example_page
4367     * @li @ref bg_03_example_page
4368     */
4369
4370    /* bg */
4371    typedef enum _Elm_Bg_Option
4372      {
4373         ELM_BG_OPTION_CENTER,  /**< center the background */
4374         ELM_BG_OPTION_SCALE,   /**< scale the background retaining aspect ratio */
4375         ELM_BG_OPTION_STRETCH, /**< stretch the background to fill */
4376         ELM_BG_OPTION_TILE     /**< tile background at its original size */
4377      } Elm_Bg_Option;
4378
4379    /**
4380     * Add a new background to the parent
4381     *
4382     * @param parent The parent object
4383     * @return The new object or NULL if it cannot be created
4384     *
4385     * @ingroup Bg
4386     */
4387    EAPI Evas_Object  *elm_bg_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4388
4389    /**
4390     * Set the file (image or edje) used for the background
4391     *
4392     * @param obj The bg object
4393     * @param file The file path
4394     * @param group Optional key (group in Edje) within the file
4395     *
4396     * This sets the image file used in the background object. The image (or edje)
4397     * will be stretched (retaining aspect if its an image file) to completely fill
4398     * the bg object. This may mean some parts are not visible.
4399     *
4400     * @note  Once the image of @p obj is set, a previously set one will be deleted,
4401     * even if @p file is NULL.
4402     *
4403     * @ingroup Bg
4404     */
4405    EAPI void          elm_bg_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
4406
4407    /**
4408     * Get the file (image or edje) used for the background
4409     *
4410     * @param obj The bg object
4411     * @param file The file path
4412     * @param group Optional key (group in Edje) within the file
4413     *
4414     * @ingroup Bg
4415     */
4416    EAPI void          elm_bg_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4417
4418    /**
4419     * Set the option used for the background image
4420     *
4421     * @param obj The bg object
4422     * @param option The desired background option (TILE, SCALE)
4423     *
4424     * This sets the option used for manipulating the display of the background
4425     * image. The image can be tiled or scaled.
4426     *
4427     * @ingroup Bg
4428     */
4429    EAPI void          elm_bg_option_set(Evas_Object *obj, Elm_Bg_Option option) EINA_ARG_NONNULL(1);
4430
4431    /**
4432     * Get the option used for the background image
4433     *
4434     * @param obj The bg object
4435     * @return The desired background option (CENTER, SCALE, STRETCH or TILE)
4436     *
4437     * @ingroup Bg
4438     */
4439    EAPI Elm_Bg_Option elm_bg_option_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4440    /**
4441     * Set the option used for the background color
4442     *
4443     * @param obj The bg object
4444     * @param r
4445     * @param g
4446     * @param b
4447     *
4448     * This sets the color used for the background rectangle. Its range goes
4449     * from 0 to 255.
4450     *
4451     * @ingroup Bg
4452     */
4453    EAPI void          elm_bg_color_set(Evas_Object *obj, int r, int g, int b) EINA_ARG_NONNULL(1);
4454    /**
4455     * Get the option used for the background color
4456     *
4457     * @param obj The bg object
4458     * @param r
4459     * @param g
4460     * @param b
4461     *
4462     * @ingroup Bg
4463     */
4464    EAPI void          elm_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b) EINA_ARG_NONNULL(1);
4465
4466    /**
4467     * Set the overlay object used for the background object.
4468     *
4469     * @param obj The bg object
4470     * @param overlay The overlay object
4471     *
4472     * This provides a way for elm_bg to have an 'overlay' that will be on top
4473     * of the bg. Once the over object is set, a previously set one will be
4474     * deleted, even if you set the new one to NULL. If you want to keep that
4475     * old content object, use the elm_bg_overlay_unset() function.
4476     *
4477     * @ingroup Bg
4478     */
4479
4480    EAPI void          elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay) EINA_ARG_NONNULL(1);
4481
4482    /**
4483     * Get the overlay object used for the background object.
4484     *
4485     * @param obj The bg object
4486     * @return The content that is being used
4487     *
4488     * Return the content object which is set for this widget
4489     *
4490     * @ingroup Bg
4491     */
4492    EAPI Evas_Object  *elm_bg_overlay_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4493
4494    /**
4495     * Get the overlay object used for the background object.
4496     *
4497     * @param obj The bg object
4498     * @return The content that was being used
4499     *
4500     * Unparent and return the overlay object which was set for this widget
4501     *
4502     * @ingroup Bg
4503     */
4504    EAPI Evas_Object  *elm_bg_overlay_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4505
4506    /**
4507     * Set the size of the pixmap representation of the image.
4508     *
4509     * This option just makes sense if an image is going to be set in the bg.
4510     *
4511     * @param obj The bg object
4512     * @param w The new width of the image pixmap representation.
4513     * @param h The new height of the image pixmap representation.
4514     *
4515     * This function sets a new size for pixmap representation of the given bg
4516     * image. It allows the image to be loaded already in the specified size,
4517     * reducing the memory usage and load time when loading a big image with load
4518     * size set to a smaller size.
4519     *
4520     * NOTE: this is just a hint, the real size of the pixmap may differ
4521     * depending on the type of image being loaded, being bigger than requested.
4522     *
4523     * @ingroup Bg
4524     */
4525    EAPI void          elm_bg_load_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
4526    /* smart callbacks called:
4527     */
4528
4529    /**
4530     * @defgroup Icon Icon
4531     *
4532     * @image html img/widget/icon/preview-00.png
4533     * @image latex img/widget/icon/preview-00.eps
4534     *
4535     * An object that provides standard icon images (delete, edit, arrows, etc.)
4536     * or a custom file (PNG, JPG, EDJE, etc.) used for an icon.
4537     *
4538     * The icon image requested can be in the elementary theme, or in the
4539     * freedesktop.org paths. It's possible to set the order of preference from
4540     * where the image will be used.
4541     *
4542     * This API is very similar to @ref Image, but with ready to use images.
4543     *
4544     * Default images provided by the theme are described below.
4545     *
4546     * The first list contains icons that were first intended to be used in
4547     * toolbars, but can be used in many other places too:
4548     * @li home
4549     * @li close
4550     * @li apps
4551     * @li arrow_up
4552     * @li arrow_down
4553     * @li arrow_left
4554     * @li arrow_right
4555     * @li chat
4556     * @li clock
4557     * @li delete
4558     * @li edit
4559     * @li refresh
4560     * @li folder
4561     * @li file
4562     *
4563     * Now some icons that were designed to be used in menus (but again, you can
4564     * use them anywhere else):
4565     * @li menu/home
4566     * @li menu/close
4567     * @li menu/apps
4568     * @li menu/arrow_up
4569     * @li menu/arrow_down
4570     * @li menu/arrow_left
4571     * @li menu/arrow_right
4572     * @li menu/chat
4573     * @li menu/clock
4574     * @li menu/delete
4575     * @li menu/edit
4576     * @li menu/refresh
4577     * @li menu/folder
4578     * @li menu/file
4579     *
4580     * And here we have some media player specific icons:
4581     * @li media_player/forward
4582     * @li media_player/info
4583     * @li media_player/next
4584     * @li media_player/pause
4585     * @li media_player/play
4586     * @li media_player/prev
4587     * @li media_player/rewind
4588     * @li media_player/stop
4589     *
4590     * Signals that you can add callbacks for are:
4591     *
4592     * "clicked" - This is called when a user has clicked the icon
4593     *
4594     * An example of usage for this API follows:
4595     * @li @ref tutorial_icon
4596     */
4597
4598    /**
4599     * @addtogroup Icon
4600     * @{
4601     */
4602
4603    typedef enum _Elm_Icon_Type
4604      {
4605         ELM_ICON_NONE,
4606         ELM_ICON_FILE,
4607         ELM_ICON_STANDARD
4608      } Elm_Icon_Type;
4609    /**
4610     * @enum _Elm_Icon_Lookup_Order
4611     * @typedef Elm_Icon_Lookup_Order
4612     *
4613     * Lookup order used by elm_icon_standard_set(). Should look for icons in the
4614     * theme, FDO paths, or both?
4615     *
4616     * @ingroup Icon
4617     */
4618    typedef enum _Elm_Icon_Lookup_Order
4619      {
4620         ELM_ICON_LOOKUP_FDO_THEME, /**< icon look up order: freedesktop, theme */
4621         ELM_ICON_LOOKUP_THEME_FDO, /**< icon look up order: theme, freedesktop */
4622         ELM_ICON_LOOKUP_FDO,       /**< icon look up order: freedesktop */
4623         ELM_ICON_LOOKUP_THEME      /**< icon look up order: theme */
4624      } Elm_Icon_Lookup_Order;
4625
4626    /**
4627     * Add a new icon object to the parent.
4628     *
4629     * @param parent The parent object
4630     * @return The new object or NULL if it cannot be created
4631     *
4632     * @see elm_icon_file_set()
4633     *
4634     * @ingroup Icon
4635     */
4636    EAPI Evas_Object          *elm_icon_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4637    /**
4638     * Set the file that will be used as icon.
4639     *
4640     * @param obj The icon object
4641     * @param file The path to file that will be used as icon image
4642     * @param group The group that the icon belongs to in edje file
4643     *
4644     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4645     *
4646     * @note The icon image set by this function can be changed by
4647     * elm_icon_standard_set().
4648     *
4649     * @see elm_icon_file_get()
4650     *
4651     * @ingroup Icon
4652     */
4653    EAPI Eina_Bool             elm_icon_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
4654    /**
4655     * Set a location in memory to be used as an icon
4656     *
4657     * @param obj The icon object
4658     * @param img The binary data that will be used as an image
4659     * @param size The size of binary data @p img
4660     * @param format Optional format of @p img to pass to the image loader
4661     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
4662     *
4663     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4664     *
4665     * @note The icon image set by this function can be changed by
4666     * elm_icon_standard_set().
4667     *
4668     * @ingroup Icon
4669     */
4670    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);
4671    /**
4672     * Get the file that will be used as icon.
4673     *
4674     * @param obj The icon object
4675     * @param file The path to file that will be used as icon icon image
4676     * @param group The group that the icon belongs to in edje file
4677     *
4678     * @see elm_icon_file_set()
4679     *
4680     * @ingroup Icon
4681     */
4682    EAPI void                  elm_icon_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4683    EAPI void                  elm_icon_thumb_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
4684    /**
4685     * Set the icon by icon standards names.
4686     *
4687     * @param obj The icon object
4688     * @param name The icon name
4689     *
4690     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4691     *
4692     * For example, freedesktop.org defines standard icon names such as "home",
4693     * "network", etc. There can be different icon sets to match those icon
4694     * keys. The @p name given as parameter is one of these "keys", and will be
4695     * used to look in the freedesktop.org paths and elementary theme. One can
4696     * change the lookup order with elm_icon_order_lookup_set().
4697     *
4698     * If name is not found in any of the expected locations and it is the
4699     * absolute path of an image file, this image will be used.
4700     *
4701     * @note The icon image set by this function can be changed by
4702     * elm_icon_file_set().
4703     *
4704     * @see elm_icon_standard_get()
4705     * @see elm_icon_file_set()
4706     *
4707     * @ingroup Icon
4708     */
4709    EAPI Eina_Bool             elm_icon_standard_set(Evas_Object *obj, const char *name) EINA_ARG_NONNULL(1);
4710    /**
4711     * Get the icon name set by icon standard names.
4712     *
4713     * @param obj The icon object
4714     * @return The icon name
4715     *
4716     * If the icon image was set using elm_icon_file_set() instead of
4717     * elm_icon_standard_set(), then this function will return @c NULL.
4718     *
4719     * @see elm_icon_standard_set()
4720     *
4721     * @ingroup Icon
4722     */
4723    EAPI const char           *elm_icon_standard_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4724    /**
4725     * Set the smooth effect for an icon object.
4726     *
4727     * @param obj The icon object
4728     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
4729     * otherwise. Default is @c EINA_TRUE.
4730     *
4731     * Set the scaling algorithm to be used when scaling the icon image. Smooth
4732     * scaling provides a better resulting image, but is slower.
4733     *
4734     * The smooth scaling should be disabled when making animations that change
4735     * the icon size, since they will be faster. Animations that don't require
4736     * resizing of the icon can keep the smooth scaling enabled (even if the icon
4737     * is already scaled, since the scaled icon image will be cached).
4738     *
4739     * @see elm_icon_smooth_get()
4740     *
4741     * @ingroup Icon
4742     */
4743    EAPI void                  elm_icon_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
4744    /**
4745     * Get the smooth effect for an icon object.
4746     *
4747     * @param obj The icon object
4748     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
4749     *
4750     * @see elm_icon_smooth_set()
4751     *
4752     * @ingroup Icon
4753     */
4754    EAPI Eina_Bool             elm_icon_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4755    /**
4756     * Disable scaling of this object.
4757     *
4758     * @param obj The icon object.
4759     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
4760     * otherwise. Default is @c EINA_FALSE.
4761     *
4762     * This function disables scaling of the icon object through the function
4763     * elm_object_scale_set(). However, this does not affect the object
4764     * size/resize in any way. For that effect, take a look at
4765     * elm_icon_scale_set().
4766     *
4767     * @see elm_icon_no_scale_get()
4768     * @see elm_icon_scale_set()
4769     * @see elm_object_scale_set()
4770     *
4771     * @ingroup Icon
4772     */
4773    EAPI void                  elm_icon_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
4774    /**
4775     * Get whether scaling is disabled on the object.
4776     *
4777     * @param obj The icon object
4778     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
4779     *
4780     * @see elm_icon_no_scale_set()
4781     *
4782     * @ingroup Icon
4783     */
4784    EAPI Eina_Bool             elm_icon_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4785    /**
4786     * Set if the object is (up/down) resizable.
4787     *
4788     * @param obj The icon object
4789     * @param scale_up A bool to set if the object is resizable up. Default is
4790     * @c EINA_TRUE.
4791     * @param scale_down A bool to set if the object is resizable down. Default
4792     * is @c EINA_TRUE.
4793     *
4794     * This function limits the icon object resize ability. If @p scale_up is set to
4795     * @c EINA_FALSE, the object can't have its height or width resized to a value
4796     * higher than the original icon size. Same is valid for @p scale_down.
4797     *
4798     * @see elm_icon_scale_get()
4799     *
4800     * @ingroup Icon
4801     */
4802    EAPI void                  elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
4803    /**
4804     * Get if the object is (up/down) resizable.
4805     *
4806     * @param obj The icon object
4807     * @param scale_up A bool to set if the object is resizable up
4808     * @param scale_down A bool to set if the object is resizable down
4809     *
4810     * @see elm_icon_scale_set()
4811     *
4812     * @ingroup Icon
4813     */
4814    EAPI void                  elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
4815    /**
4816     * Get the object's image size
4817     *
4818     * @param obj The icon object
4819     * @param w A pointer to store the width in
4820     * @param h A pointer to store the height in
4821     *
4822     * @ingroup Icon
4823     */
4824    EAPI void                  elm_icon_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
4825    /**
4826     * Set if the icon fill the entire object area.
4827     *
4828     * @param obj The icon object
4829     * @param fill_outside @c EINA_TRUE if the object is filled outside,
4830     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
4831     *
4832     * When the icon object is resized to a different aspect ratio from the
4833     * original icon image, the icon image will still keep its aspect. This flag
4834     * tells how the image should fill the object's area. They are: keep the
4835     * entire icon inside the limits of height and width of the object (@p
4836     * fill_outside is @c EINA_FALSE) or let the extra width or height go outside
4837     * of the object, and the icon will fill the entire object (@p fill_outside
4838     * is @c EINA_TRUE).
4839     *
4840     * @note Unlike @ref Image, there's no option in icon to set the aspect ratio
4841     * retain property to false. Thus, the icon image will always keep its
4842     * original aspect ratio.
4843     *
4844     * @see elm_icon_fill_outside_get()
4845     * @see elm_image_fill_outside_set()
4846     *
4847     * @ingroup Icon
4848     */
4849    EAPI void                  elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
4850    /**
4851     * Get if the object is filled outside.
4852     *
4853     * @param obj The icon object
4854     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
4855     *
4856     * @see elm_icon_fill_outside_set()
4857     *
4858     * @ingroup Icon
4859     */
4860    EAPI Eina_Bool             elm_icon_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4861    /**
4862     * Set the prescale size for the icon.
4863     *
4864     * @param obj The icon object
4865     * @param size The prescale size. This value is used for both width and
4866     * height.
4867     *
4868     * This function sets a new size for pixmap representation of the given
4869     * icon. It allows the icon to be loaded already in the specified size,
4870     * reducing the memory usage and load time when loading a big icon with load
4871     * size set to a smaller size.
4872     *
4873     * It's equivalent to the elm_bg_load_size_set() function for bg.
4874     *
4875     * @note this is just a hint, the real size of the pixmap may differ
4876     * depending on the type of icon being loaded, being bigger than requested.
4877     *
4878     * @see elm_icon_prescale_get()
4879     * @see elm_bg_load_size_set()
4880     *
4881     * @ingroup Icon
4882     */
4883    EAPI void                  elm_icon_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
4884    /**
4885     * Get the prescale size for the icon.
4886     *
4887     * @param obj The icon object
4888     * @return The prescale size
4889     *
4890     * @see elm_icon_prescale_set()
4891     *
4892     * @ingroup Icon
4893     */
4894    EAPI int                   elm_icon_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4895    /**
4896     * Sets the icon lookup order used by elm_icon_standard_set().
4897     *
4898     * @param obj The icon object
4899     * @param order The icon lookup order (can be one of
4900     * ELM_ICON_LOOKUP_FDO_THEME, ELM_ICON_LOOKUP_THEME_FDO, ELM_ICON_LOOKUP_FDO
4901     * or ELM_ICON_LOOKUP_THEME)
4902     *
4903     * @see elm_icon_order_lookup_get()
4904     * @see Elm_Icon_Lookup_Order
4905     *
4906     * @ingroup Icon
4907     */
4908    EAPI void                  elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
4909    /**
4910     * Gets the icon lookup order.
4911     *
4912     * @param obj The icon object
4913     * @return The icon lookup order
4914     *
4915     * @see elm_icon_order_lookup_set()
4916     * @see Elm_Icon_Lookup_Order
4917     *
4918     * @ingroup Icon
4919     */
4920    EAPI Elm_Icon_Lookup_Order elm_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4921    /**
4922     * Get if the icon supports animation or not.
4923     *
4924     * @param obj The icon object
4925     * @return @c EINA_TRUE if the icon supports animation,
4926     *         @c EINA_FALSE otherwise.
4927     *
4928     * Return if this elm icon's image can be animated. Currently Evas only
4929     * supports gif animation. If the return value is EINA_FALSE, other
4930     * elm_icon_animated_XXX APIs won't work.
4931     * @ingroup Icon
4932     */
4933    EAPI Eina_Bool           elm_icon_animated_available_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4934    /**
4935     * Set animation mode of the icon.
4936     *
4937     * @param obj The icon object
4938     * @param anim @c EINA_TRUE if the object do animation job,
4939     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
4940     *
4941     * Even though elm icon's file can be animated,
4942     * sometimes appication developer want to just first page of image.
4943     * In that time, don't call this function, because default value is EINA_FALSE
4944     * Only when you want icon support anition,
4945     * use this function and set animated to EINA_TURE
4946     * @ingroup Icon
4947     */
4948    EAPI void                elm_icon_animated_set(Evas_Object *obj, Eina_Bool animated) EINA_ARG_NONNULL(1);
4949    /**
4950     * Get animation mode of the icon.
4951     *
4952     * @param obj The icon object
4953     * @return The animation mode of the icon object
4954     * @see elm_icon_animated_set
4955     * @ingroup Icon
4956     */
4957    EAPI Eina_Bool           elm_icon_animated_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4958    /**
4959     * Set animation play mode of the icon.
4960     *
4961     * @param obj The icon object
4962     * @param play @c EINA_TRUE the object play animation images,
4963     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
4964     *
4965     * If you want to play elm icon's animation, you set play to EINA_TURE.
4966     * For example, you make gif player using this set/get API and click event.
4967     *
4968     * 1. Click event occurs
4969     * 2. Check play flag using elm_icon_animaged_play_get
4970     * 3. If elm icon was playing, set play to EINA_FALSE.
4971     *    Then animation will be stopped and vice versa
4972     * @ingroup Icon
4973     */
4974    EAPI void                elm_icon_animated_play_set(Evas_Object *obj, Eina_Bool play) EINA_ARG_NONNULL(1);
4975    /**
4976     * Get animation play mode of the icon.
4977     *
4978     * @param obj The icon object
4979     * @return The play mode of the icon object
4980     *
4981     * @see elm_icon_animated_lay_get
4982     * @ingroup Icon
4983     */
4984    EAPI Eina_Bool           elm_icon_animated_play_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4985
4986    /**
4987     * @}
4988     */
4989
4990    /**
4991     * @defgroup Image Image
4992     *
4993     * @image html img/widget/image/preview-00.png
4994     * @image latex img/widget/image/preview-00.eps
4995
4996     *
4997     * An object that allows one to load an image file to it. It can be used
4998     * anywhere like any other elementary widget.
4999     *
5000     * This widget provides most of the functionality provided from @ref Bg or @ref
5001     * Icon, but with a slightly different API (use the one that fits better your
5002     * needs).
5003     *
5004     * The features not provided by those two other image widgets are:
5005     * @li allowing to get the basic @c Evas_Object with elm_image_object_get();
5006     * @li change the object orientation with elm_image_orient_set();
5007     * @li and turning the image editable with elm_image_editable_set().
5008     *
5009     * Signals that you can add callbacks for are:
5010     *
5011     * @li @c "clicked" - This is called when a user has clicked the image
5012     *
5013     * An example of usage for this API follows:
5014     * @li @ref tutorial_image
5015     */
5016
5017    /**
5018     * @addtogroup Image
5019     * @{
5020     */
5021
5022    /**
5023     * @enum _Elm_Image_Orient
5024     * @typedef Elm_Image_Orient
5025     *
5026     * Possible orientation options for elm_image_orient_set().
5027     *
5028     * @image html elm_image_orient_set.png
5029     * @image latex elm_image_orient_set.eps width=\textwidth
5030     *
5031     * @ingroup Image
5032     */
5033    typedef enum _Elm_Image_Orient
5034      {
5035         ELM_IMAGE_ORIENT_NONE, /**< no orientation change */
5036         ELM_IMAGE_ROTATE_90_CW, /**< rotate 90 degrees clockwise */
5037         ELM_IMAGE_ROTATE_180_CW, /**< rotate 180 degrees clockwise */
5038         ELM_IMAGE_ROTATE_90_CCW, /**< rotate 90 degrees counter-clockwise (i.e. 270 degrees clockwise) */
5039         ELM_IMAGE_FLIP_HORIZONTAL, /**< flip image horizontally */
5040         ELM_IMAGE_FLIP_VERTICAL, /**< flip image vertically */
5041         ELM_IMAGE_FLIP_TRANSPOSE, /**< flip the image along the y = (side - x) line*/
5042         ELM_IMAGE_FLIP_TRANSVERSE /**< flip the image along the y = x line */
5043      } Elm_Image_Orient;
5044
5045    /**
5046     * Add a new image to the parent.
5047     *
5048     * @param parent The parent object
5049     * @return The new object or NULL if it cannot be created
5050     *
5051     * @see elm_image_file_set()
5052     *
5053     * @ingroup Image
5054     */
5055    EAPI Evas_Object     *elm_image_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5056    /**
5057     * Set the file that will be used as image.
5058     *
5059     * @param obj The image object
5060     * @param file The path to file that will be used as image
5061     * @param group The group that the image belongs in edje file (if it's an
5062     * edje image)
5063     *
5064     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5065     *
5066     * @see elm_image_file_get()
5067     *
5068     * @ingroup Image
5069     */
5070    EAPI Eina_Bool        elm_image_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5071    /**
5072     * Get the file that will be used as image.
5073     *
5074     * @param obj The image object
5075     * @param file The path to file
5076     * @param group The group that the image belongs in edje file
5077     *
5078     * @see elm_image_file_set()
5079     *
5080     * @ingroup Image
5081     */
5082    EAPI void             elm_image_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
5083    /**
5084     * Set the smooth effect for an image.
5085     *
5086     * @param obj The image object
5087     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
5088     * otherwise. Default is @c EINA_TRUE.
5089     *
5090     * Set the scaling algorithm to be used when scaling the image. Smooth
5091     * scaling provides a better resulting image, but is slower.
5092     *
5093     * The smooth scaling should be disabled when making animations that change
5094     * the image size, since it will be faster. Animations that don't require
5095     * resizing of the image can keep the smooth scaling enabled (even if the
5096     * image is already scaled, since the scaled image will be cached).
5097     *
5098     * @see elm_image_smooth_get()
5099     *
5100     * @ingroup Image
5101     */
5102    EAPI void             elm_image_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
5103    /**
5104     * Get the smooth effect for an image.
5105     *
5106     * @param obj The image object
5107     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
5108     *
5109     * @see elm_image_smooth_get()
5110     *
5111     * @ingroup Image
5112     */
5113    EAPI Eina_Bool        elm_image_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5114    /**
5115     * Gets the current size of the image.
5116     *
5117     * @param obj The image object.
5118     * @param w Pointer to store width, or NULL.
5119     * @param h Pointer to store height, or NULL.
5120     *
5121     * This is the real size of the image, not the size of the object.
5122     *
5123     * On error, neither w or h will be written.
5124     *
5125     * @ingroup Image
5126     */
5127    EAPI void             elm_image_object_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
5128    /**
5129     * Disable scaling of this object.
5130     *
5131     * @param obj The image object.
5132     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
5133     * otherwise. Default is @c EINA_FALSE.
5134     *
5135     * This function disables scaling of the elm_image widget through the
5136     * function elm_object_scale_set(). However, this does not affect the widget
5137     * size/resize in any way. For that effect, take a look at
5138     * elm_image_scale_set().
5139     *
5140     * @see elm_image_no_scale_get()
5141     * @see elm_image_scale_set()
5142     * @see elm_object_scale_set()
5143     *
5144     * @ingroup Image
5145     */
5146    EAPI void             elm_image_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
5147    /**
5148     * Get whether scaling is disabled on the object.
5149     *
5150     * @param obj The image object
5151     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
5152     *
5153     * @see elm_image_no_scale_set()
5154     *
5155     * @ingroup Image
5156     */
5157    EAPI Eina_Bool        elm_image_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5158    /**
5159     * Set if the object is (up/down) resizable.
5160     *
5161     * @param obj The image object
5162     * @param scale_up A bool to set if the object is resizable up. Default is
5163     * @c EINA_TRUE.
5164     * @param scale_down A bool to set if the object is resizable down. Default
5165     * is @c EINA_TRUE.
5166     *
5167     * This function limits the image resize ability. If @p scale_up is set to
5168     * @c EINA_FALSE, the object can't have its height or width resized to a value
5169     * higher than the original image size. Same is valid for @p scale_down.
5170     *
5171     * @see elm_image_scale_get()
5172     *
5173     * @ingroup Image
5174     */
5175    EAPI void             elm_image_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
5176    /**
5177     * Get if the object is (up/down) resizable.
5178     *
5179     * @param obj The image object
5180     * @param scale_up A bool to set if the object is resizable up
5181     * @param scale_down A bool to set if the object is resizable down
5182     *
5183     * @see elm_image_scale_set()
5184     *
5185     * @ingroup Image
5186     */
5187    EAPI void             elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
5188    /**
5189     * Set if the image fill the entire object area when keeping the aspect ratio.
5190     *
5191     * @param obj The image object
5192     * @param fill_outside @c EINA_TRUE if the object is filled outside,
5193     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5194     *
5195     * When the image should keep its aspect ratio even if resized to another
5196     * aspect ratio, there are two possibilities to resize it: keep the entire
5197     * image inside the limits of height and width of the object (@p fill_outside
5198     * is @c EINA_FALSE) or let the extra width or height go outside of the object,
5199     * and the image will fill the entire object (@p fill_outside is @c EINA_TRUE).
5200     *
5201     * @note This option will have no effect if
5202     * elm_image_aspect_ratio_retained_set() is set to @c EINA_FALSE.
5203     *
5204     * @see elm_image_fill_outside_get()
5205     * @see elm_image_aspect_ratio_retained_set()
5206     *
5207     * @ingroup Image
5208     */
5209    EAPI void             elm_image_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5210    /**
5211     * Get if the object is filled outside
5212     *
5213     * @param obj The image object
5214     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5215     *
5216     * @see elm_image_fill_outside_set()
5217     *
5218     * @ingroup Image
5219     */
5220    EAPI Eina_Bool        elm_image_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5221    /**
5222     * Set the prescale size for the image
5223     *
5224     * @param obj The image object
5225     * @param size The prescale size. This value is used for both width and
5226     * height.
5227     *
5228     * This function sets a new size for pixmap representation of the given
5229     * image. It allows the image to be loaded already in the specified size,
5230     * reducing the memory usage and load time when loading a big image with load
5231     * size set to a smaller size.
5232     *
5233     * It's equivalent to the elm_bg_load_size_set() function for bg.
5234     *
5235     * @note this is just a hint, the real size of the pixmap may differ
5236     * depending on the type of image being loaded, being bigger than requested.
5237     *
5238     * @see elm_image_prescale_get()
5239     * @see elm_bg_load_size_set()
5240     *
5241     * @ingroup Image
5242     */
5243    EAPI void             elm_image_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5244    /**
5245     * Get the prescale size for the image
5246     *
5247     * @param obj The image object
5248     * @return The prescale size
5249     *
5250     * @see elm_image_prescale_set()
5251     *
5252     * @ingroup Image
5253     */
5254    EAPI int              elm_image_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5255    /**
5256     * Set the image orientation.
5257     *
5258     * @param obj The image object
5259     * @param orient The image orientation
5260     * (one of #ELM_IMAGE_ORIENT_NONE, #ELM_IMAGE_ROTATE_90_CW,
5261     *  #ELM_IMAGE_ROTATE_180_CW, #ELM_IMAGE_ROTATE_90_CCW,
5262     *  #ELM_IMAGE_FLIP_HORIZONTAL, #ELM_IMAGE_FLIP_VERTICAL,
5263     *  #ELM_IMAGE_FLIP_TRANSPOSE, #ELM_IMAGE_FLIP_TRANSVERSE).
5264     *  Default is #ELM_IMAGE_ORIENT_NONE.
5265     *
5266     * This function allows to rotate or flip the given image.
5267     *
5268     * @see elm_image_orient_get()
5269     * @see @ref Elm_Image_Orient
5270     *
5271     * @ingroup Image
5272     */
5273    EAPI void             elm_image_orient_set(Evas_Object *obj, Elm_Image_Orient orient) EINA_ARG_NONNULL(1);
5274    /**
5275     * Get the image orientation.
5276     *
5277     * @param obj The image object
5278     * @return The image orientation
5279     * (one of #ELM_IMAGE_ORIENT_NONE, #ELM_IMAGE_ROTATE_90_CW,
5280     *  #ELM_IMAGE_ROTATE_180_CW, #ELM_IMAGE_ROTATE_90_CCW,
5281     *  #ELM_IMAGE_FLIP_HORIZONTAL, #ELM_IMAGE_FLIP_VERTICAL,
5282     *  #ELM_IMAGE_FLIP_TRANSPOSE, #ELM_IMAGE_FLIP_TRANSVERSE)
5283     *
5284     * @see elm_image_orient_set()
5285     * @see @ref Elm_Image_Orient
5286     *
5287     * @ingroup Image
5288     */
5289    EAPI Elm_Image_Orient elm_image_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5290    /**
5291     * Make the image 'editable'.
5292     *
5293     * @param obj Image object.
5294     * @param set Turn on or off editability. Default is @c EINA_FALSE.
5295     *
5296     * This means the image is a valid drag target for drag and drop, and can be
5297     * cut or pasted too.
5298     *
5299     * @ingroup Image
5300     */
5301    EAPI void             elm_image_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
5302    /**
5303     * Make the image 'editable'.
5304     *
5305     * @param obj Image object.
5306     * @return Editability.
5307     *
5308     * This means the image is a valid drag target for drag and drop, and can be
5309     * cut or pasted too.
5310     *
5311     * @ingroup Image
5312     */
5313    EAPI Eina_Bool        elm_image_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5314    /**
5315     * Get the basic Evas_Image object from this object (widget).
5316     *
5317     * @param obj The image object to get the inlined image from
5318     * @return The inlined image object, or NULL if none exists
5319     *
5320     * This function allows one to get the underlying @c Evas_Object of type
5321     * Image from this elementary widget. It can be useful to do things like get
5322     * the pixel data, save the image to a file, etc.
5323     *
5324     * @note Be careful to not manipulate it, as it is under control of
5325     * elementary.
5326     *
5327     * @ingroup Image
5328     */
5329    EAPI Evas_Object     *elm_image_object_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5330    /**
5331     * Set whether the original aspect ratio of the image should be kept on resize.
5332     *
5333     * @param obj The image object.
5334     * @param retained @c EINA_TRUE if the image should retain the aspect,
5335     * @c EINA_FALSE otherwise.
5336     *
5337     * The original aspect ratio (width / height) of the image is usually
5338     * distorted to match the object's size. Enabling this option will retain
5339     * this original aspect, and the way that the image is fit into the object's
5340     * area depends on the option set by elm_image_fill_outside_set().
5341     *
5342     * @see elm_image_aspect_ratio_retained_get()
5343     * @see elm_image_fill_outside_set()
5344     *
5345     * @ingroup Image
5346     */
5347    EAPI void             elm_image_aspect_ratio_retained_set(Evas_Object *obj, Eina_Bool retained) EINA_ARG_NONNULL(1);
5348    /**
5349     * Get if the object retains the original aspect ratio.
5350     *
5351     * @param obj The image object.
5352     * @return @c EINA_TRUE if the object keeps the original aspect, @c EINA_FALSE
5353     * otherwise.
5354     *
5355     * @ingroup Image
5356     */
5357    EAPI Eina_Bool        elm_image_aspect_ratio_retained_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5358
5359    /**
5360     * @}
5361     */
5362
5363    /* glview */
5364    typedef void (*Elm_GLView_Func_Cb)(Evas_Object *obj);
5365
5366    typedef enum _Elm_GLView_Mode
5367      {
5368         ELM_GLVIEW_ALPHA   = 1,
5369         ELM_GLVIEW_DEPTH   = 2,
5370         ELM_GLVIEW_STENCIL = 4
5371      } Elm_GLView_Mode;
5372
5373    /**
5374     * Defines a policy for the glview resizing.
5375     *
5376     * @note Default is ELM_GLVIEW_RESIZE_POLICY_RECREATE
5377     */
5378    typedef enum _Elm_GLView_Resize_Policy
5379      {
5380         ELM_GLVIEW_RESIZE_POLICY_RECREATE = 1,      /**< Resize the internal surface along with the image */
5381         ELM_GLVIEW_RESIZE_POLICY_SCALE    = 2       /**< Only reize the internal image and not the surface */
5382      } Elm_GLView_Resize_Policy;
5383
5384    typedef enum _Elm_GLView_Render_Policy
5385      {
5386         ELM_GLVIEW_RENDER_POLICY_ON_DEMAND = 1,     /**< Render only when there is a need for redrawing */
5387         ELM_GLVIEW_RENDER_POLICY_ALWAYS    = 2      /**< Render always even when it is not visible */
5388      } Elm_GLView_Render_Policy;
5389
5390    /**
5391     * @defgroup GLView
5392     *
5393     * A simple GLView widget that allows GL rendering.
5394     *
5395     * Signals that you can add callbacks for are:
5396     *
5397     * @{
5398     */
5399
5400    /**
5401     * Add a new glview to the parent
5402     *
5403     * @param parent The parent object
5404     * @return The new object or NULL if it cannot be created
5405     *
5406     * @ingroup GLView
5407     */
5408    EAPI Evas_Object     *elm_glview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5409
5410    /**
5411     * Sets the size of the glview
5412     *
5413     * @param obj The glview object
5414     * @param width width of the glview object
5415     * @param height height of the glview object
5416     *
5417     * @ingroup GLView
5418     */
5419    EAPI void             elm_glview_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
5420
5421    /**
5422     * Gets the size of the glview.
5423     *
5424     * @param obj The glview object
5425     * @param width width of the glview object
5426     * @param height height of the glview object
5427     *
5428     * Note that this function returns the actual image size of the
5429     * glview.  This means that when the scale policy is set to
5430     * ELM_GLVIEW_RESIZE_POLICY_SCALE, it'll return the non-scaled
5431     * size.
5432     *
5433     * @ingroup GLView
5434     */
5435    EAPI void             elm_glview_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
5436
5437    /**
5438     * Gets the gl api struct for gl rendering
5439     *
5440     * @param obj The glview object
5441     * @return The api object or NULL if it cannot be created
5442     *
5443     * @ingroup GLView
5444     */
5445    EAPI Evas_GL_API     *elm_glview_gl_api_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5446
5447    /**
5448     * Set the mode of the GLView. Supports Three simple modes.
5449     *
5450     * @param obj The glview object
5451     * @param mode The mode Options OR'ed enabling Alpha, Depth, Stencil.
5452     * @return True if set properly.
5453     *
5454     * @ingroup GLView
5455     */
5456    EAPI Eina_Bool        elm_glview_mode_set(Evas_Object *obj, Elm_GLView_Mode mode) EINA_ARG_NONNULL(1);
5457
5458    /**
5459     * Set the resize policy for the glview object.
5460     *
5461     * @param obj The glview object.
5462     * @param policy The scaling policy.
5463     *
5464     * By default, the resize policy is set to
5465     * ELM_GLVIEW_RESIZE_POLICY_RECREATE.  When resize is called it
5466     * destroys the previous surface and recreates the newly specified
5467     * size. If the policy is set to ELM_GLVIEW_RESIZE_POLICY_SCALE,
5468     * however, glview only scales the image object and not the underlying
5469     * GL Surface.
5470     *
5471     * @ingroup GLView
5472     */
5473    EAPI Eina_Bool        elm_glview_resize_policy_set(Evas_Object *obj, Elm_GLView_Resize_Policy policy) EINA_ARG_NONNULL(1);
5474
5475    /**
5476     * Set the render policy for the glview object.
5477     *
5478     * @param obj The glview object.
5479     * @param policy The render policy.
5480     *
5481     * By default, the render policy is set to
5482     * ELM_GLVIEW_RENDER_POLICY_ON_DEMAND.  This policy is set such
5483     * that during the render loop, glview is only redrawn if it needs
5484     * to be redrawn. (i.e. When it is visible) If the policy is set to
5485     * ELM_GLVIEWW_RENDER_POLICY_ALWAYS, it redraws regardless of
5486     * whether it is visible/need redrawing or not.
5487     *
5488     * @ingroup GLView
5489     */
5490    EAPI Eina_Bool        elm_glview_render_policy_set(Evas_Object *obj, Elm_GLView_Render_Policy policy) EINA_ARG_NONNULL(1);
5491
5492    /**
5493     * Set the init function that runs once in the main loop.
5494     *
5495     * @param obj The glview object.
5496     * @param func The init function to be registered.
5497     *
5498     * The registered init function gets called once during the render loop.
5499     *
5500     * @ingroup GLView
5501     */
5502    EAPI void             elm_glview_init_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5503
5504    /**
5505     * Set the render function that runs in the main loop.
5506     *
5507     * @param obj The glview object.
5508     * @param func The delete function to be registered.
5509     *
5510     * The registered del function gets called when GLView object is deleted.
5511     *
5512     * @ingroup GLView
5513     */
5514    EAPI void             elm_glview_del_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5515
5516    /**
5517     * Set the resize function that gets called when resize happens.
5518     *
5519     * @param obj The glview object.
5520     * @param func The resize function to be registered.
5521     *
5522     * @ingroup GLView
5523     */
5524    EAPI void             elm_glview_resize_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5525
5526    /**
5527     * Set the render function that runs in the main loop.
5528     *
5529     * @param obj The glview object.
5530     * @param func The render function to be registered.
5531     *
5532     * @ingroup GLView
5533     */
5534    EAPI void             elm_glview_render_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5535
5536    /**
5537     * Notifies that there has been changes in the GLView.
5538     *
5539     * @param obj The glview object.
5540     *
5541     * @ingroup GLView
5542     */
5543    EAPI void             elm_glview_changed_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
5544
5545    /**
5546     * @}
5547     */
5548
5549    /* box */
5550    /**
5551     * @defgroup Box Box
5552     *
5553     * @image html img/widget/box/preview-00.png
5554     * @image latex img/widget/box/preview-00.eps width=\textwidth
5555     *
5556     * @image html img/box.png
5557     * @image latex img/box.eps width=\textwidth
5558     *
5559     * A box arranges objects in a linear fashion, governed by a layout function
5560     * that defines the details of this arrangement.
5561     *
5562     * By default, the box will use an internal function to set the layout to
5563     * a single row, either vertical or horizontal. This layout is affected
5564     * by a number of parameters, such as the homogeneous flag set by
5565     * elm_box_homogeneous_set(), the values given by elm_box_padding_set() and
5566     * elm_box_align_set() and the hints set to each object in the box.
5567     *
5568     * For this default layout, it's possible to change the orientation with
5569     * elm_box_horizontal_set(). The box will start in the vertical orientation,
5570     * placing its elements ordered from top to bottom. When horizontal is set,
5571     * the order will go from left to right. If the box is set to be
5572     * homogeneous, every object in it will be assigned the same space, that
5573     * of the largest object. Padding can be used to set some spacing between
5574     * the cell given to each object. The alignment of the box, set with
5575     * elm_box_align_set(), determines how the bounding box of all the elements
5576     * will be placed within the space given to the box widget itself.
5577     *
5578     * The size hints of each object also affect how they are placed and sized
5579     * within the box. evas_object_size_hint_min_set() will give the minimum
5580     * size the object can have, and the box will use it as the basis for all
5581     * latter calculations. Elementary widgets set their own minimum size as
5582     * needed, so there's rarely any need to use it manually.
5583     *
5584     * evas_object_size_hint_weight_set(), when not in homogeneous mode, is
5585     * used to tell whether the object will be allocated the minimum size it
5586     * needs or if the space given to it should be expanded. It's important
5587     * to realize that expanding the size given to the object is not the same
5588     * thing as resizing the object. It could very well end being a small
5589     * widget floating in a much larger empty space. If not set, the weight
5590     * for objects will normally be 0.0 for both axis, meaning the widget will
5591     * not be expanded. To take as much space possible, set the weight to
5592     * EVAS_HINT_EXPAND (defined to 1.0) for the desired axis to expand.
5593     *
5594     * Besides how much space each object is allocated, it's possible to control
5595     * how the widget will be placed within that space using
5596     * evas_object_size_hint_align_set(). By default, this value will be 0.5
5597     * for both axis, meaning the object will be centered, but any value from
5598     * 0.0 (left or top, for the @c x and @c y axis, respectively) to 1.0
5599     * (right or bottom) can be used. The special value EVAS_HINT_FILL, which
5600     * is -1.0, means the object will be resized to fill the entire space it
5601     * was allocated.
5602     *
5603     * In addition, customized functions to define the layout can be set, which
5604     * allow the application developer to organize the objects within the box
5605     * in any number of ways.
5606     *
5607     * The special elm_box_layout_transition() function can be used
5608     * to switch from one layout to another, animating the motion of the
5609     * children of the box.
5610     *
5611     * @note Objects should not be added to box objects using _add() calls.
5612     *
5613     * Some examples on how to use boxes follow:
5614     * @li @ref box_example_01
5615     * @li @ref box_example_02
5616     *
5617     * @{
5618     */
5619    /**
5620     * @typedef Elm_Box_Transition
5621     *
5622     * Opaque handler containing the parameters to perform an animated
5623     * transition of the layout the box uses.
5624     *
5625     * @see elm_box_transition_new()
5626     * @see elm_box_layout_set()
5627     * @see elm_box_layout_transition()
5628     */
5629    typedef struct _Elm_Box_Transition Elm_Box_Transition;
5630
5631    /**
5632     * Add a new box to the parent
5633     *
5634     * By default, the box will be in vertical mode and non-homogeneous.
5635     *
5636     * @param parent The parent object
5637     * @return The new object or NULL if it cannot be created
5638     */
5639    EAPI Evas_Object        *elm_box_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5640    /**
5641     * Set the horizontal orientation
5642     *
5643     * By default, box object arranges their contents vertically from top to
5644     * bottom.
5645     * By calling this function with @p horizontal as EINA_TRUE, the box will
5646     * become horizontal, arranging contents from left to right.
5647     *
5648     * @note This flag is ignored if a custom layout function is set.
5649     *
5650     * @param obj The box object
5651     * @param horizontal The horizontal flag (EINA_TRUE = horizontal,
5652     * EINA_FALSE = vertical)
5653     */
5654    EAPI void                elm_box_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
5655    /**
5656     * Get the horizontal orientation
5657     *
5658     * @param obj The box object
5659     * @return EINA_TRUE if the box is set to horizontal mode, EINA_FALSE otherwise
5660     */
5661    EAPI Eina_Bool           elm_box_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5662    /**
5663     * Set the box to arrange its children homogeneously
5664     *
5665     * If enabled, homogeneous layout makes all items the same size, according
5666     * to the size of the largest of its children.
5667     *
5668     * @note This flag is ignored if a custom layout function is set.
5669     *
5670     * @param obj The box object
5671     * @param homogeneous The homogeneous flag
5672     */
5673    EAPI void                elm_box_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
5674    /**
5675     * Get whether the box is using homogeneous mode or not
5676     *
5677     * @param obj The box object
5678     * @return EINA_TRUE if it's homogeneous, EINA_FALSE otherwise
5679     */
5680    EAPI Eina_Bool           elm_box_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5681    EINA_DEPRECATED EAPI void elm_box_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
5682    EINA_DEPRECATED EAPI Eina_Bool elm_box_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5683    /**
5684     * Add an object to the beginning of the pack list
5685     *
5686     * Pack @p subobj into the box @p obj, placing it first in the list of
5687     * children objects. The actual position the object will get on screen
5688     * depends on the layout used. If no custom layout is set, it will be at
5689     * the top or left, depending if the box is vertical or horizontal,
5690     * respectively.
5691     *
5692     * @param obj The box object
5693     * @param subobj The object to add to the box
5694     *
5695     * @see elm_box_pack_end()
5696     * @see elm_box_pack_before()
5697     * @see elm_box_pack_after()
5698     * @see elm_box_unpack()
5699     * @see elm_box_unpack_all()
5700     * @see elm_box_clear()
5701     */
5702    EAPI void                elm_box_pack_start(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5703    /**
5704     * Add an object at the end of the pack list
5705     *
5706     * Pack @p subobj into the box @p obj, placing it last in the list of
5707     * children objects. The actual position the object will get on screen
5708     * depends on the layout used. If no custom layout is set, it will be at
5709     * the bottom or right, depending if the box is vertical or horizontal,
5710     * respectively.
5711     *
5712     * @param obj The box object
5713     * @param subobj The object to add to the box
5714     *
5715     * @see elm_box_pack_start()
5716     * @see elm_box_pack_before()
5717     * @see elm_box_pack_after()
5718     * @see elm_box_unpack()
5719     * @see elm_box_unpack_all()
5720     * @see elm_box_clear()
5721     */
5722    EAPI void                elm_box_pack_end(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5723    /**
5724     * Adds an object to the box before the indicated object
5725     *
5726     * This will add the @p subobj to the box indicated before the object
5727     * indicated with @p before. If @p before is not already in the box, results
5728     * are undefined. Before means either to the left of the indicated object or
5729     * above it depending on orientation.
5730     *
5731     * @param obj The box object
5732     * @param subobj The object to add to the box
5733     * @param before The object before which to add it
5734     *
5735     * @see elm_box_pack_start()
5736     * @see elm_box_pack_end()
5737     * @see elm_box_pack_after()
5738     * @see elm_box_unpack()
5739     * @see elm_box_unpack_all()
5740     * @see elm_box_clear()
5741     */
5742    EAPI void                elm_box_pack_before(Evas_Object *obj, Evas_Object *subobj, Evas_Object *before) EINA_ARG_NONNULL(1);
5743    /**
5744     * Adds an object to the box after the indicated object
5745     *
5746     * This will add the @p subobj to the box indicated after the object
5747     * indicated with @p after. If @p after is not already in the box, results
5748     * are undefined. After means either to the right of the indicated object or
5749     * below it depending on orientation.
5750     *
5751     * @param obj The box object
5752     * @param subobj The object to add to the box
5753     * @param after The object after which to add it
5754     *
5755     * @see elm_box_pack_start()
5756     * @see elm_box_pack_end()
5757     * @see elm_box_pack_before()
5758     * @see elm_box_unpack()
5759     * @see elm_box_unpack_all()
5760     * @see elm_box_clear()
5761     */
5762    EAPI void                elm_box_pack_after(Evas_Object *obj, Evas_Object *subobj, Evas_Object *after) EINA_ARG_NONNULL(1);
5763    /**
5764     * Clear the box of all children
5765     *
5766     * Remove all the elements contained by the box, deleting the respective
5767     * objects.
5768     *
5769     * @param obj The box object
5770     *
5771     * @see elm_box_unpack()
5772     * @see elm_box_unpack_all()
5773     */
5774    EAPI void                elm_box_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
5775    /**
5776     * Unpack a box item
5777     *
5778     * Remove the object given by @p subobj from the box @p obj without
5779     * deleting it.
5780     *
5781     * @param obj The box object
5782     *
5783     * @see elm_box_unpack_all()
5784     * @see elm_box_clear()
5785     */
5786    EAPI void                elm_box_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5787    /**
5788     * Remove all items from the box, without deleting them
5789     *
5790     * Clear the box from all children, but don't delete the respective objects.
5791     * If no other references of the box children exist, the objects will never
5792     * be deleted, and thus the application will leak the memory. Make sure
5793     * when using this function that you hold a reference to all the objects
5794     * in the box @p obj.
5795     *
5796     * @param obj The box object
5797     *
5798     * @see elm_box_clear()
5799     * @see elm_box_unpack()
5800     */
5801    EAPI void                elm_box_unpack_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
5802    /**
5803     * Retrieve a list of the objects packed into the box
5804     *
5805     * Returns a new @c Eina_List with a pointer to @c Evas_Object in its nodes.
5806     * The order of the list corresponds to the packing order the box uses.
5807     *
5808     * You must free this list with eina_list_free() once you are done with it.
5809     *
5810     * @param obj The box object
5811     */
5812    EAPI const Eina_List    *elm_box_children_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5813    /**
5814     * Set the space (padding) between the box's elements.
5815     *
5816     * Extra space in pixels that will be added between a box child and its
5817     * neighbors after its containing cell has been calculated. This padding
5818     * is set for all elements in the box, besides any possible padding that
5819     * individual elements may have through their size hints.
5820     *
5821     * @param obj The box object
5822     * @param horizontal The horizontal space between elements
5823     * @param vertical The vertical space between elements
5824     */
5825    EAPI void                elm_box_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
5826    /**
5827     * Get the space (padding) between the box's elements.
5828     *
5829     * @param obj The box object
5830     * @param horizontal The horizontal space between elements
5831     * @param vertical The vertical space between elements
5832     *
5833     * @see elm_box_padding_set()
5834     */
5835    EAPI void                elm_box_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
5836    /**
5837     * Set the alignment of the whole bouding box of contents.
5838     *
5839     * Sets how the bounding box containing all the elements of the box, after
5840     * their sizes and position has been calculated, will be aligned within
5841     * the space given for the whole box widget.
5842     *
5843     * @param obj The box object
5844     * @param horizontal The horizontal alignment of elements
5845     * @param vertical The vertical alignment of elements
5846     */
5847    EAPI void                elm_box_align_set(Evas_Object *obj, double horizontal, double vertical) EINA_ARG_NONNULL(1);
5848    /**
5849     * Get the alignment of the whole bouding box of contents.
5850     *
5851     * @param obj The box object
5852     * @param horizontal The horizontal alignment of elements
5853     * @param vertical The vertical alignment of elements
5854     *
5855     * @see elm_box_align_set()
5856     */
5857    EAPI void                elm_box_align_get(const Evas_Object *obj, double *horizontal, double *vertical) EINA_ARG_NONNULL(1);
5858
5859    /**
5860     * Force the box to recalculate its children packing.
5861     *
5862     * If any children was added or removed, box will not calculate the
5863     * values immediately rather leaving it to the next main loop
5864     * iteration. While this is great as it would save lots of
5865     * recalculation, whenever you need to get the position of a just
5866     * added item you must force recalculate before doing so.
5867     *
5868     * @param obj The box object.
5869     */
5870    EAPI void                 elm_box_recalculate(Evas_Object *obj);
5871
5872    /**
5873     * Set the layout defining function to be used by the box
5874     *
5875     * Whenever anything changes that requires the box in @p obj to recalculate
5876     * the size and position of its elements, the function @p cb will be called
5877     * to determine what the layout of the children will be.
5878     *
5879     * Once a custom function is set, everything about the children layout
5880     * is defined by it. The flags set by elm_box_horizontal_set() and
5881     * elm_box_homogeneous_set() no longer have any meaning, and the values
5882     * given by elm_box_padding_set() and elm_box_align_set() are up to this
5883     * layout function to decide if they are used and how. These last two
5884     * will be found in the @c priv parameter, of type @c Evas_Object_Box_Data,
5885     * passed to @p cb. The @c Evas_Object the function receives is not the
5886     * Elementary widget, but the internal Evas Box it uses, so none of the
5887     * functions described here can be used on it.
5888     *
5889     * Any of the layout functions in @c Evas can be used here, as well as the
5890     * special elm_box_layout_transition().
5891     *
5892     * The final @p data argument received by @p cb is the same @p data passed
5893     * here, and the @p free_data function will be called to free it
5894     * whenever the box is destroyed or another layout function is set.
5895     *
5896     * Setting @p cb to NULL will revert back to the default layout function.
5897     *
5898     * @param obj The box object
5899     * @param cb The callback function used for layout
5900     * @param data Data that will be passed to layout function
5901     * @param free_data Function called to free @p data
5902     *
5903     * @see elm_box_layout_transition()
5904     */
5905    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);
5906    /**
5907     * Special layout function that animates the transition from one layout to another
5908     *
5909     * Normally, when switching the layout function for a box, this will be
5910     * reflected immediately on screen on the next render, but it's also
5911     * possible to do this through an animated transition.
5912     *
5913     * This is done by creating an ::Elm_Box_Transition and setting the box
5914     * layout to this function.
5915     *
5916     * For example:
5917     * @code
5918     * Elm_Box_Transition *t = elm_box_transition_new(1.0,
5919     *                            evas_object_box_layout_vertical, // start
5920     *                            NULL, // data for initial layout
5921     *                            NULL, // free function for initial data
5922     *                            evas_object_box_layout_horizontal, // end
5923     *                            NULL, // data for final layout
5924     *                            NULL, // free function for final data
5925     *                            anim_end, // will be called when animation ends
5926     *                            NULL); // data for anim_end function\
5927     * elm_box_layout_set(box, elm_box_layout_transition, t,
5928     *                    elm_box_transition_free);
5929     * @endcode
5930     *
5931     * @note This function can only be used with elm_box_layout_set(). Calling
5932     * it directly will not have the expected results.
5933     *
5934     * @see elm_box_transition_new
5935     * @see elm_box_transition_free
5936     * @see elm_box_layout_set
5937     */
5938    EAPI void                elm_box_layout_transition(Evas_Object *obj, Evas_Object_Box_Data *priv, void *data);
5939    /**
5940     * Create a new ::Elm_Box_Transition to animate the switch of layouts
5941     *
5942     * If you want to animate the change from one layout to another, you need
5943     * to set the layout function of the box to elm_box_layout_transition(),
5944     * passing as user data to it an instance of ::Elm_Box_Transition with the
5945     * necessary information to perform this animation. The free function to
5946     * set for the layout is elm_box_transition_free().
5947     *
5948     * The parameters to create an ::Elm_Box_Transition sum up to how long
5949     * will it be, in seconds, a layout function to describe the initial point,
5950     * another for the final position of the children and one function to be
5951     * called when the whole animation ends. This last function is useful to
5952     * set the definitive layout for the box, usually the same as the end
5953     * layout for the animation, but could be used to start another transition.
5954     *
5955     * @param start_layout The layout function that will be used to start the animation
5956     * @param start_layout_data The data to be passed the @p start_layout function
5957     * @param start_layout_free_data Function to free @p start_layout_data
5958     * @param end_layout The layout function that will be used to end the animation
5959     * @param end_layout_free_data The data to be passed the @p end_layout function
5960     * @param end_layout_free_data Function to free @p end_layout_data
5961     * @param transition_end_cb Callback function called when animation ends
5962     * @param transition_end_data Data to be passed to @p transition_end_cb
5963     * @return An instance of ::Elm_Box_Transition
5964     *
5965     * @see elm_box_transition_new
5966     * @see elm_box_layout_transition
5967     */
5968    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);
5969    /**
5970     * Free a Elm_Box_Transition instance created with elm_box_transition_new().
5971     *
5972     * This function is mostly useful as the @c free_data parameter in
5973     * elm_box_layout_set() when elm_box_layout_transition().
5974     *
5975     * @param data The Elm_Box_Transition instance to be freed.
5976     *
5977     * @see elm_box_transition_new
5978     * @see elm_box_layout_transition
5979     */
5980    EAPI void                elm_box_transition_free(void *data);
5981    /**
5982     * @}
5983     */
5984
5985    /* button */
5986    /**
5987     * @defgroup Button Button
5988     *
5989     * @image html img/widget/button/preview-00.png
5990     * @image latex img/widget/button/preview-00.eps
5991     * @image html img/widget/button/preview-01.png
5992     * @image latex img/widget/button/preview-01.eps
5993     * @image html img/widget/button/preview-02.png
5994     * @image latex img/widget/button/preview-02.eps
5995     *
5996     * This is a push-button. Press it and run some function. It can contain
5997     * a simple label and icon object and it also has an autorepeat feature.
5998     *
5999     * This widgets emits the following signals:
6000     * @li "clicked": the user clicked the button (press/release).
6001     * @li "repeated": the user pressed the button without releasing it.
6002     * @li "pressed": button was pressed.
6003     * @li "unpressed": button was released after being pressed.
6004     * In all three cases, the @c event parameter of the callback will be
6005     * @c NULL.
6006     *
6007     * Also, defined in the default theme, the button has the following styles
6008     * available:
6009     * @li default: a normal button.
6010     * @li anchor: Like default, but the button fades away when the mouse is not
6011     * over it, leaving only the text or icon.
6012     * @li hoversel_vertical: Internally used by @ref Hoversel to give a
6013     * continuous look across its options.
6014     * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
6015     *
6016     * Follow through a complete example @ref button_example_01 "here".
6017     * @{
6018     */
6019    /**
6020     * Add a new button to the parent's canvas
6021     *
6022     * @param parent The parent object
6023     * @return The new object or NULL if it cannot be created
6024     */
6025    EAPI Evas_Object *elm_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6026    /**
6027     * Set the label used in the button
6028     *
6029     * The passed @p label can be NULL to clean any existing text in it and
6030     * leave the button as an icon only object.
6031     *
6032     * @param obj The button object
6033     * @param label The text will be written on the button
6034     * @deprecated use elm_object_text_set() instead.
6035     */
6036    EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6037    /**
6038     * Get the label set for the button
6039     *
6040     * The string returned is an internal pointer and should not be freed or
6041     * altered. It will also become invalid when the button is destroyed.
6042     * The string returned, if not NULL, is a stringshare, so if you need to
6043     * keep it around even after the button is destroyed, you can use
6044     * eina_stringshare_ref().
6045     *
6046     * @param obj The button object
6047     * @return The text set to the label, or NULL if nothing is set
6048     * @deprecated use elm_object_text_set() instead.
6049     */
6050    EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6051    /**
6052     * Set the icon used for the button
6053     *
6054     * Setting a new icon will delete any other that was previously set, making
6055     * any reference to them invalid. If you need to maintain the previous
6056     * object alive, unset it first with elm_button_icon_unset().
6057     *
6058     * @param obj The button object
6059     * @param icon The icon object for the button
6060     */
6061    EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6062    /**
6063     * Get the icon used for the button
6064     *
6065     * Return the icon object which is set for this widget. If the button is
6066     * destroyed or another icon is set, the returned object will be deleted
6067     * and any reference to it will be invalid.
6068     *
6069     * @param obj The button object
6070     * @return The icon object that is being used
6071     *
6072     * @see elm_button_icon_unset()
6073     */
6074    EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6075    /**
6076     * Remove the icon set without deleting it and return the object
6077     *
6078     * This function drops the reference the button holds of the icon object
6079     * and returns this last object. It is used in case you want to remove any
6080     * icon, or set another one, without deleting the actual object. The button
6081     * will be left without an icon set.
6082     *
6083     * @param obj The button object
6084     * @return The icon object that was being used
6085     */
6086    EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6087    /**
6088     * Turn on/off the autorepeat event generated when the button is kept pressed
6089     *
6090     * When off, no autorepeat is performed and buttons emit a normal @c clicked
6091     * signal when they are clicked.
6092     *
6093     * When on, keeping a button pressed will continuously emit a @c repeated
6094     * signal until the button is released. The time it takes until it starts
6095     * emitting the signal is given by
6096     * elm_button_autorepeat_initial_timeout_set(), and the time between each
6097     * new emission by elm_button_autorepeat_gap_timeout_set().
6098     *
6099     * @param obj The button object
6100     * @param on  A bool to turn on/off the event
6101     */
6102    EAPI void         elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on) EINA_ARG_NONNULL(1);
6103    /**
6104     * Get whether the autorepeat feature is enabled
6105     *
6106     * @param obj The button object
6107     * @return EINA_TRUE if autorepeat is on, EINA_FALSE otherwise
6108     *
6109     * @see elm_button_autorepeat_set()
6110     */
6111    EAPI Eina_Bool    elm_button_autorepeat_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6112    /**
6113     * Set the initial timeout before the autorepeat event is generated
6114     *
6115     * Sets the timeout, in seconds, since the button is pressed until the
6116     * first @c repeated signal is emitted. If @p t is 0.0 or less, there
6117     * won't be any delay and the even will be fired the moment the button is
6118     * pressed.
6119     *
6120     * @param obj The button object
6121     * @param t   Timeout in seconds
6122     *
6123     * @see elm_button_autorepeat_set()
6124     * @see elm_button_autorepeat_gap_timeout_set()
6125     */
6126    EAPI void         elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6127    /**
6128     * Get the initial timeout before the autorepeat event is generated
6129     *
6130     * @param obj The button object
6131     * @return Timeout in seconds
6132     *
6133     * @see elm_button_autorepeat_initial_timeout_set()
6134     */
6135    EAPI double       elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6136    /**
6137     * Set the interval between each generated autorepeat event
6138     *
6139     * After the first @c repeated event is fired, all subsequent ones will
6140     * follow after a delay of @p t seconds for each.
6141     *
6142     * @param obj The button object
6143     * @param t   Interval in seconds
6144     *
6145     * @see elm_button_autorepeat_initial_timeout_set()
6146     */
6147    EAPI void         elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6148    /**
6149     * Get the interval between each generated autorepeat event
6150     *
6151     * @param obj The button object
6152     * @return Interval in seconds
6153     */
6154    EAPI double       elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6155    /**
6156     * @}
6157     */
6158
6159    /**
6160     * @defgroup File_Selector_Button File Selector Button
6161     *
6162     * @image html img/widget/fileselector_button/preview-00.png
6163     * @image latex img/widget/fileselector_button/preview-00.eps
6164     * @image html img/widget/fileselector_button/preview-01.png
6165     * @image latex img/widget/fileselector_button/preview-01.eps
6166     * @image html img/widget/fileselector_button/preview-02.png
6167     * @image latex img/widget/fileselector_button/preview-02.eps
6168     *
6169     * This is a button that, when clicked, creates an Elementary
6170     * window (or inner window) <b> with a @ref Fileselector "file
6171     * selector widget" within</b>. When a file is chosen, the (inner)
6172     * window is closed and the button emits a signal having the
6173     * selected file as it's @c event_info.
6174     *
6175     * This widget encapsulates operations on its internal file
6176     * selector on its own API. There is less control over its file
6177     * selector than that one would have instatiating one directly.
6178     *
6179     * The following styles are available for this button:
6180     * @li @c "default"
6181     * @li @c "anchor"
6182     * @li @c "hoversel_vertical"
6183     * @li @c "hoversel_vertical_entry"
6184     *
6185     * Smart callbacks one can register to:
6186     * - @c "file,chosen" - the user has selected a path, whose string
6187     *   pointer comes as the @c event_info data (a stringshared
6188     *   string)
6189     *
6190     * Here is an example on its usage:
6191     * @li @ref fileselector_button_example
6192     *
6193     * @see @ref File_Selector_Entry for a similar widget.
6194     * @{
6195     */
6196
6197    /**
6198     * Add a new file selector button widget to the given parent
6199     * Elementary (container) object
6200     *
6201     * @param parent The parent object
6202     * @return a new file selector button widget handle or @c NULL, on
6203     * errors
6204     */
6205    EAPI Evas_Object *elm_fileselector_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6206
6207    /**
6208     * Set the label for a given file selector button widget
6209     *
6210     * @param obj The file selector button widget
6211     * @param label The text label to be displayed on @p obj
6212     *
6213     * @deprecated use elm_object_text_set() instead.
6214     */
6215    EINA_DEPRECATED EAPI void         elm_fileselector_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6216
6217    /**
6218     * Get the label set for a given file selector button widget
6219     *
6220     * @param obj The file selector button widget
6221     * @return The button label
6222     *
6223     * @deprecated use elm_object_text_set() instead.
6224     */
6225    EINA_DEPRECATED EAPI const char  *elm_fileselector_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6226
6227    /**
6228     * Set the icon on a given file selector button widget
6229     *
6230     * @param obj The file selector button widget
6231     * @param icon The icon object for the button
6232     *
6233     * Once the icon object is set, a previously set one will be
6234     * deleted. If you want to keep the latter, use the
6235     * elm_fileselector_button_icon_unset() function.
6236     *
6237     * @see elm_fileselector_button_icon_get()
6238     */
6239    EAPI void         elm_fileselector_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6240
6241    /**
6242     * Get the icon set for a given file selector button widget
6243     *
6244     * @param obj The file selector button widget
6245     * @return The icon object currently set on @p obj or @c NULL, if
6246     * none is
6247     *
6248     * @see elm_fileselector_button_icon_set()
6249     */
6250    EAPI Evas_Object *elm_fileselector_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6251
6252    /**
6253     * Unset the icon used in a given file selector button widget
6254     *
6255     * @param obj The file selector button widget
6256     * @return The icon object that was being used on @p obj or @c
6257     * NULL, on errors
6258     *
6259     * Unparent and return the icon object which was set for this
6260     * widget.
6261     *
6262     * @see elm_fileselector_button_icon_set()
6263     */
6264    EAPI Evas_Object *elm_fileselector_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6265
6266    /**
6267     * Set the title for a given file selector button widget's window
6268     *
6269     * @param obj The file selector button widget
6270     * @param title The title string
6271     *
6272     * This will change the window's title, when the file selector pops
6273     * out after a click on the button. Those windows have the default
6274     * (unlocalized) value of @c "Select a file" as titles.
6275     *
6276     * @note It will only take any effect if the file selector
6277     * button widget is @b not under "inwin mode".
6278     *
6279     * @see elm_fileselector_button_window_title_get()
6280     */
6281    EAPI void         elm_fileselector_button_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6282
6283    /**
6284     * Get the title set for a given file selector button widget's
6285     * window
6286     *
6287     * @param obj The file selector button widget
6288     * @return Title of the file selector button's window
6289     *
6290     * @see elm_fileselector_button_window_title_get() for more details
6291     */
6292    EAPI const char  *elm_fileselector_button_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6293
6294    /**
6295     * Set the size of a given file selector button widget's window,
6296     * holding the file selector itself.
6297     *
6298     * @param obj The file selector button widget
6299     * @param width The window's width
6300     * @param height The window's height
6301     *
6302     * @note it will only take any effect if the file selector button
6303     * widget is @b not under "inwin mode". The default size for the
6304     * window (when applicable) is 400x400 pixels.
6305     *
6306     * @see elm_fileselector_button_window_size_get()
6307     */
6308    EAPI void         elm_fileselector_button_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6309
6310    /**
6311     * Get the size of a given file selector button widget's window,
6312     * holding the file selector itself.
6313     *
6314     * @param obj The file selector button widget
6315     * @param width Pointer into which to store the width value
6316     * @param height Pointer into which to store the height value
6317     *
6318     * @note Use @c NULL pointers on the size values you're not
6319     * interested in: they'll be ignored by the function.
6320     *
6321     * @see elm_fileselector_button_window_size_set(), for more details
6322     */
6323    EAPI void         elm_fileselector_button_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6324
6325    /**
6326     * Set the initial file system path for a given file selector
6327     * button widget
6328     *
6329     * @param obj The file selector button widget
6330     * @param path The path string
6331     *
6332     * It must be a <b>directory</b> path, which will have the contents
6333     * displayed initially in the file selector's view, when invoked
6334     * from @p obj. The default initial path is the @c "HOME"
6335     * environment variable's value.
6336     *
6337     * @see elm_fileselector_button_path_get()
6338     */
6339    EAPI void         elm_fileselector_button_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6340
6341    /**
6342     * Get the initial file system path set for a given file selector
6343     * button widget
6344     *
6345     * @param obj The file selector button widget
6346     * @return path The path string
6347     *
6348     * @see elm_fileselector_button_path_set() for more details
6349     */
6350    EAPI const char  *elm_fileselector_button_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6351
6352    /**
6353     * Enable/disable a tree view in the given file selector button
6354     * widget's internal file selector
6355     *
6356     * @param obj The file selector button widget
6357     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6358     * disable
6359     *
6360     * This has the same effect as elm_fileselector_expandable_set(),
6361     * but now applied to a file selector button's internal file
6362     * selector.
6363     *
6364     * @note There's no way to put a file selector button's internal
6365     * file selector in "grid mode", as one may do with "pure" file
6366     * selectors.
6367     *
6368     * @see elm_fileselector_expandable_get()
6369     */
6370    EAPI void         elm_fileselector_button_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6371
6372    /**
6373     * Get whether tree view is enabled for the given file selector
6374     * button widget's internal file selector
6375     *
6376     * @param obj The file selector button widget
6377     * @return @c EINA_TRUE if @p obj widget's internal file selector
6378     * is in tree view, @c EINA_FALSE otherwise (and or errors)
6379     *
6380     * @see elm_fileselector_expandable_set() for more details
6381     */
6382    EAPI Eina_Bool    elm_fileselector_button_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6383
6384    /**
6385     * Set whether a given file selector button widget's internal file
6386     * selector is to display folders only or the directory contents,
6387     * as well.
6388     *
6389     * @param obj The file selector button widget
6390     * @param only @c EINA_TRUE to make @p obj widget's internal file
6391     * selector only display directories, @c EINA_FALSE to make files
6392     * to be displayed in it too
6393     *
6394     * This has the same effect as elm_fileselector_folder_only_set(),
6395     * but now applied to a file selector button's internal file
6396     * selector.
6397     *
6398     * @see elm_fileselector_folder_only_get()
6399     */
6400    EAPI void         elm_fileselector_button_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6401
6402    /**
6403     * Get whether a given file selector button widget's internal file
6404     * selector is displaying folders only or the directory contents,
6405     * as well.
6406     *
6407     * @param obj The file selector button widget
6408     * @return @c EINA_TRUE if @p obj widget's internal file
6409     * selector is only displaying directories, @c EINA_FALSE if files
6410     * are being displayed in it too (and on errors)
6411     *
6412     * @see elm_fileselector_button_folder_only_set() for more details
6413     */
6414    EAPI Eina_Bool    elm_fileselector_button_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6415
6416    /**
6417     * Enable/disable the file name entry box where the user can type
6418     * in a name for a file, in a given file selector button widget's
6419     * internal file selector.
6420     *
6421     * @param obj The file selector button widget
6422     * @param is_save @c EINA_TRUE to make @p obj widget's internal
6423     * file selector a "saving dialog", @c EINA_FALSE otherwise
6424     *
6425     * This has the same effect as elm_fileselector_is_save_set(),
6426     * but now applied to a file selector button's internal file
6427     * selector.
6428     *
6429     * @see elm_fileselector_is_save_get()
6430     */
6431    EAPI void         elm_fileselector_button_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6432
6433    /**
6434     * Get whether the given file selector button widget's internal
6435     * file selector is in "saving dialog" mode
6436     *
6437     * @param obj The file selector button widget
6438     * @return @c EINA_TRUE, if @p obj widget's internal file selector
6439     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
6440     * errors)
6441     *
6442     * @see elm_fileselector_button_is_save_set() for more details
6443     */
6444    EAPI Eina_Bool    elm_fileselector_button_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6445
6446    /**
6447     * Set whether a given file selector button widget's internal file
6448     * selector will raise an Elementary "inner window", instead of a
6449     * dedicated Elementary window. By default, it won't.
6450     *
6451     * @param obj The file selector button widget
6452     * @param value @c EINA_TRUE to make it use an inner window, @c
6453     * EINA_TRUE to make it use a dedicated window
6454     *
6455     * @see elm_win_inwin_add() for more information on inner windows
6456     * @see elm_fileselector_button_inwin_mode_get()
6457     */
6458    EAPI void         elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6459
6460    /**
6461     * Get whether a given file selector button widget's internal file
6462     * selector will raise an Elementary "inner window", instead of a
6463     * dedicated Elementary window.
6464     *
6465     * @param obj The file selector button widget
6466     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
6467     * if it will use a dedicated window
6468     *
6469     * @see elm_fileselector_button_inwin_mode_set() for more details
6470     */
6471    EAPI Eina_Bool    elm_fileselector_button_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6472
6473    /**
6474     * @}
6475     */
6476
6477     /**
6478     * @defgroup File_Selector_Entry File Selector Entry
6479     *
6480     * @image html img/widget/fileselector_entry/preview-00.png
6481     * @image latex img/widget/fileselector_entry/preview-00.eps
6482     *
6483     * This is an entry made to be filled with or display a <b>file
6484     * system path string</b>. Besides the entry itself, the widget has
6485     * a @ref File_Selector_Button "file selector button" on its side,
6486     * which will raise an internal @ref Fileselector "file selector widget",
6487     * when clicked, for path selection aided by file system
6488     * navigation.
6489     *
6490     * This file selector may appear in an Elementary window or in an
6491     * inner window. When a file is chosen from it, the (inner) window
6492     * is closed and the selected file's path string is exposed both as
6493     * an smart event and as the new text on the entry.
6494     *
6495     * This widget encapsulates operations on its internal file
6496     * selector on its own API. There is less control over its file
6497     * selector than that one would have instatiating one directly.
6498     *
6499     * Smart callbacks one can register to:
6500     * - @c "changed" - The text within the entry was changed
6501     * - @c "activated" - The entry has had editing finished and
6502     *   changes are to be "committed"
6503     * - @c "press" - The entry has been clicked
6504     * - @c "longpressed" - The entry has been clicked (and held) for a
6505     *   couple seconds
6506     * - @c "clicked" - The entry has been clicked
6507     * - @c "clicked,double" - The entry has been double clicked
6508     * - @c "focused" - The entry has received focus
6509     * - @c "unfocused" - The entry has lost focus
6510     * - @c "selection,paste" - A paste action has occurred on the
6511     *   entry
6512     * - @c "selection,copy" - A copy action has occurred on the entry
6513     * - @c "selection,cut" - A cut action has occurred on the entry
6514     * - @c "unpressed" - The file selector entry's button was released
6515     *   after being pressed.
6516     * - @c "file,chosen" - The user has selected a path via the file
6517     *   selector entry's internal file selector, whose string pointer
6518     *   comes as the @c event_info data (a stringshared string)
6519     *
6520     * Here is an example on its usage:
6521     * @li @ref fileselector_entry_example
6522     *
6523     * @see @ref File_Selector_Button for a similar widget.
6524     * @{
6525     */
6526
6527    /**
6528     * Add a new file selector entry widget to the given parent
6529     * Elementary (container) object
6530     *
6531     * @param parent The parent object
6532     * @return a new file selector entry widget handle or @c NULL, on
6533     * errors
6534     */
6535    EAPI Evas_Object *elm_fileselector_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6536
6537    /**
6538     * Set the label for a given file selector entry widget's button
6539     *
6540     * @param obj The file selector entry widget
6541     * @param label The text label to be displayed on @p obj widget's
6542     * button
6543     *
6544     * @deprecated use elm_object_text_set() instead.
6545     */
6546    EINA_DEPRECATED EAPI void         elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6547
6548    /**
6549     * Get the label set for a given file selector entry widget's button
6550     *
6551     * @param obj The file selector entry widget
6552     * @return The widget button's label
6553     *
6554     * @deprecated use elm_object_text_set() instead.
6555     */
6556    EINA_DEPRECATED EAPI const char  *elm_fileselector_entry_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6557
6558    /**
6559     * Set the icon on a given file selector entry widget's button
6560     *
6561     * @param obj The file selector entry widget
6562     * @param icon The icon object for the entry's button
6563     *
6564     * Once the icon object is set, a previously set one will be
6565     * deleted. If you want to keep the latter, use the
6566     * elm_fileselector_entry_button_icon_unset() function.
6567     *
6568     * @see elm_fileselector_entry_button_icon_get()
6569     */
6570    EAPI void         elm_fileselector_entry_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6571
6572    /**
6573     * Get the icon set for a given file selector entry widget's button
6574     *
6575     * @param obj The file selector entry widget
6576     * @return The icon object currently set on @p obj widget's button
6577     * or @c NULL, if none is
6578     *
6579     * @see elm_fileselector_entry_button_icon_set()
6580     */
6581    EAPI Evas_Object *elm_fileselector_entry_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6582
6583    /**
6584     * Unset the icon used in a given file selector entry widget's
6585     * button
6586     *
6587     * @param obj The file selector entry widget
6588     * @return The icon object that was being used on @p obj widget's
6589     * button or @c NULL, on errors
6590     *
6591     * Unparent and return the icon object which was set for this
6592     * widget's button.
6593     *
6594     * @see elm_fileselector_entry_button_icon_set()
6595     */
6596    EAPI Evas_Object *elm_fileselector_entry_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6597
6598    /**
6599     * Set the title for a given file selector entry widget's window
6600     *
6601     * @param obj The file selector entry widget
6602     * @param title The title string
6603     *
6604     * This will change the window's title, when the file selector pops
6605     * out after a click on the entry's button. Those windows have the
6606     * default (unlocalized) value of @c "Select a file" as titles.
6607     *
6608     * @note It will only take any effect if the file selector
6609     * entry widget is @b not under "inwin mode".
6610     *
6611     * @see elm_fileselector_entry_window_title_get()
6612     */
6613    EAPI void         elm_fileselector_entry_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6614
6615    /**
6616     * Get the title set for a given file selector entry widget's
6617     * window
6618     *
6619     * @param obj The file selector entry widget
6620     * @return Title of the file selector entry's window
6621     *
6622     * @see elm_fileselector_entry_window_title_get() for more details
6623     */
6624    EAPI const char  *elm_fileselector_entry_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6625
6626    /**
6627     * Set the size of a given file selector entry widget's window,
6628     * holding the file selector itself.
6629     *
6630     * @param obj The file selector entry widget
6631     * @param width The window's width
6632     * @param height The window's height
6633     *
6634     * @note it will only take any effect if the file selector entry
6635     * widget is @b not under "inwin mode". The default size for the
6636     * window (when applicable) is 400x400 pixels.
6637     *
6638     * @see elm_fileselector_entry_window_size_get()
6639     */
6640    EAPI void         elm_fileselector_entry_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6641
6642    /**
6643     * Get the size of a given file selector entry widget's window,
6644     * holding the file selector itself.
6645     *
6646     * @param obj The file selector entry widget
6647     * @param width Pointer into which to store the width value
6648     * @param height Pointer into which to store the height value
6649     *
6650     * @note Use @c NULL pointers on the size values you're not
6651     * interested in: they'll be ignored by the function.
6652     *
6653     * @see elm_fileselector_entry_window_size_set(), for more details
6654     */
6655    EAPI void         elm_fileselector_entry_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6656
6657    /**
6658     * Set the initial file system path and the entry's path string for
6659     * a given file selector entry widget
6660     *
6661     * @param obj The file selector entry widget
6662     * @param path The path string
6663     *
6664     * It must be a <b>directory</b> path, which will have the contents
6665     * displayed initially in the file selector's view, when invoked
6666     * from @p obj. The default initial path is the @c "HOME"
6667     * environment variable's value.
6668     *
6669     * @see elm_fileselector_entry_path_get()
6670     */
6671    EAPI void         elm_fileselector_entry_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6672
6673    /**
6674     * Get the entry's path string for a given file selector entry
6675     * widget
6676     *
6677     * @param obj The file selector entry widget
6678     * @return path The path string
6679     *
6680     * @see elm_fileselector_entry_path_set() for more details
6681     */
6682    EAPI const char  *elm_fileselector_entry_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6683
6684    /**
6685     * Enable/disable a tree view in the given file selector entry
6686     * widget's internal file selector
6687     *
6688     * @param obj The file selector entry widget
6689     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6690     * disable
6691     *
6692     * This has the same effect as elm_fileselector_expandable_set(),
6693     * but now applied to a file selector entry's internal file
6694     * selector.
6695     *
6696     * @note There's no way to put a file selector entry's internal
6697     * file selector in "grid mode", as one may do with "pure" file
6698     * selectors.
6699     *
6700     * @see elm_fileselector_expandable_get()
6701     */
6702    EAPI void         elm_fileselector_entry_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6703
6704    /**
6705     * Get whether tree view is enabled for the given file selector
6706     * entry widget's internal file selector
6707     *
6708     * @param obj The file selector entry widget
6709     * @return @c EINA_TRUE if @p obj widget's internal file selector
6710     * is in tree view, @c EINA_FALSE otherwise (and or errors)
6711     *
6712     * @see elm_fileselector_expandable_set() for more details
6713     */
6714    EAPI Eina_Bool    elm_fileselector_entry_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6715
6716    /**
6717     * Set whether a given file selector entry widget's internal file
6718     * selector is to display folders only or the directory contents,
6719     * as well.
6720     *
6721     * @param obj The file selector entry widget
6722     * @param only @c EINA_TRUE to make @p obj widget's internal file
6723     * selector only display directories, @c EINA_FALSE to make files
6724     * to be displayed in it too
6725     *
6726     * This has the same effect as elm_fileselector_folder_only_set(),
6727     * but now applied to a file selector entry's internal file
6728     * selector.
6729     *
6730     * @see elm_fileselector_folder_only_get()
6731     */
6732    EAPI void         elm_fileselector_entry_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6733
6734    /**
6735     * Get whether a given file selector entry widget's internal file
6736     * selector is displaying folders only or the directory contents,
6737     * as well.
6738     *
6739     * @param obj The file selector entry widget
6740     * @return @c EINA_TRUE if @p obj widget's internal file
6741     * selector is only displaying directories, @c EINA_FALSE if files
6742     * are being displayed in it too (and on errors)
6743     *
6744     * @see elm_fileselector_entry_folder_only_set() for more details
6745     */
6746    EAPI Eina_Bool    elm_fileselector_entry_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6747
6748    /**
6749     * Enable/disable the file name entry box where the user can type
6750     * in a name for a file, in a given file selector entry widget's
6751     * internal file selector.
6752     *
6753     * @param obj The file selector entry widget
6754     * @param is_save @c EINA_TRUE to make @p obj widget's internal
6755     * file selector a "saving dialog", @c EINA_FALSE otherwise
6756     *
6757     * This has the same effect as elm_fileselector_is_save_set(),
6758     * but now applied to a file selector entry's internal file
6759     * selector.
6760     *
6761     * @see elm_fileselector_is_save_get()
6762     */
6763    EAPI void         elm_fileselector_entry_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6764
6765    /**
6766     * Get whether the given file selector entry widget's internal
6767     * file selector is in "saving dialog" mode
6768     *
6769     * @param obj The file selector entry widget
6770     * @return @c EINA_TRUE, if @p obj widget's internal file selector
6771     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
6772     * errors)
6773     *
6774     * @see elm_fileselector_entry_is_save_set() for more details
6775     */
6776    EAPI Eina_Bool    elm_fileselector_entry_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6777
6778    /**
6779     * Set whether a given file selector entry widget's internal file
6780     * selector will raise an Elementary "inner window", instead of a
6781     * dedicated Elementary window. By default, it won't.
6782     *
6783     * @param obj The file selector entry widget
6784     * @param value @c EINA_TRUE to make it use an inner window, @c
6785     * EINA_TRUE to make it use a dedicated window
6786     *
6787     * @see elm_win_inwin_add() for more information on inner windows
6788     * @see elm_fileselector_entry_inwin_mode_get()
6789     */
6790    EAPI void         elm_fileselector_entry_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6791
6792    /**
6793     * Get whether a given file selector entry widget's internal file
6794     * selector will raise an Elementary "inner window", instead of a
6795     * dedicated Elementary window.
6796     *
6797     * @param obj The file selector entry widget
6798     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
6799     * if it will use a dedicated window
6800     *
6801     * @see elm_fileselector_entry_inwin_mode_set() for more details
6802     */
6803    EAPI Eina_Bool    elm_fileselector_entry_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6804
6805    /**
6806     * Set the initial file system path for a given file selector entry
6807     * widget
6808     *
6809     * @param obj The file selector entry widget
6810     * @param path The path string
6811     *
6812     * It must be a <b>directory</b> path, which will have the contents
6813     * displayed initially in the file selector's view, when invoked
6814     * from @p obj. The default initial path is the @c "HOME"
6815     * environment variable's value.
6816     *
6817     * @see elm_fileselector_entry_path_get()
6818     */
6819    EAPI void         elm_fileselector_entry_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6820
6821    /**
6822     * Get the parent directory's path to the latest file selection on
6823     * a given filer selector entry widget
6824     *
6825     * @param obj The file selector object
6826     * @return The (full) path of the directory of the last selection
6827     * on @p obj widget, a @b stringshared string
6828     *
6829     * @see elm_fileselector_entry_path_set()
6830     */
6831    EAPI const char  *elm_fileselector_entry_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6832
6833    /**
6834     * @}
6835     */
6836
6837    /**
6838     * @defgroup Scroller Scroller
6839     *
6840     * A scroller holds a single object and "scrolls it around". This means that
6841     * it allows the user to use a scrollbar (or a finger) to drag the viewable
6842     * region around, allowing to move through a much larger object that is
6843     * contained in the scroller. The scroiller will always have a small minimum
6844     * size by default as it won't be limited by the contents of the scroller.
6845     *
6846     * Signals that you can add callbacks for are:
6847     * @li "edge,left" - the left edge of the content has been reached
6848     * @li "edge,right" - the right edge of the content has been reached
6849     * @li "edge,top" - the top edge of the content has been reached
6850     * @li "edge,bottom" - the bottom edge of the content has been reached
6851     * @li "scroll" - the content has been scrolled (moved)
6852     * @li "scroll,anim,start" - scrolling animation has started
6853     * @li "scroll,anim,stop" - scrolling animation has stopped
6854     * @li "scroll,drag,start" - dragging the contents around has started
6855     * @li "scroll,drag,stop" - dragging the contents around has stopped
6856     * @note The "scroll,anim,*" and "scroll,drag,*" signals are only emitted by
6857     * user intervetion.
6858     *
6859     * @note When Elemementary is in embedded mode the scrollbars will not be
6860     * dragable, they appear merely as indicators of how much has been scrolled.
6861     * @note When Elementary is in desktop mode the thumbscroll(a.k.a.
6862     * fingerscroll) won't work.
6863     *
6864     * In @ref tutorial_scroller you'll find an example of how to use most of
6865     * this API.
6866     * @{
6867     */
6868    /**
6869     * @brief Type that controls when scrollbars should appear.
6870     *
6871     * @see elm_scroller_policy_set()
6872     */
6873    typedef enum _Elm_Scroller_Policy
6874      {
6875         ELM_SCROLLER_POLICY_AUTO = 0, /**< Show scrollbars as needed */
6876         ELM_SCROLLER_POLICY_ON, /**< Always show scrollbars */
6877         ELM_SCROLLER_POLICY_OFF, /**< Never show scrollbars */
6878         ELM_SCROLLER_POLICY_LAST
6879      } Elm_Scroller_Policy;
6880    /**
6881     * @brief Add a new scroller to the parent
6882     *
6883     * @param parent The parent object
6884     * @return The new object or NULL if it cannot be created
6885     */
6886    EAPI Evas_Object *elm_scroller_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6887    /**
6888     * @brief Set the content of the scroller widget (the object to be scrolled around).
6889     *
6890     * @param obj The scroller object
6891     * @param content The new content object
6892     *
6893     * Once the content object is set, a previously set one will be deleted.
6894     * If you want to keep that old content object, use the
6895     * elm_scroller_content_unset() function.
6896     */
6897    EAPI void         elm_scroller_content_set(Evas_Object *obj, Evas_Object *child) EINA_ARG_NONNULL(1);
6898    /**
6899     * @brief Get the content of the scroller widget
6900     *
6901     * @param obj The slider object
6902     * @return The content that is being used
6903     *
6904     * Return the content object which is set for this widget
6905     *
6906     * @see elm_scroller_content_set()
6907     */
6908    EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6909    /**
6910     * @brief Unset the content of the scroller widget
6911     *
6912     * @param obj The slider object
6913     * @return The content that was being used
6914     *
6915     * Unparent and return the content object which was set for this widget
6916     *
6917     * @see elm_scroller_content_set()
6918     */
6919    EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6920    /**
6921     * @brief Set custom theme elements for the scroller
6922     *
6923     * @param obj The scroller object
6924     * @param widget The widget name to use (default is "scroller")
6925     * @param base The base name to use (default is "base")
6926     */
6927    EAPI void         elm_scroller_custom_widget_base_theme_set(Evas_Object *obj, const char *widget, const char *base) EINA_ARG_NONNULL(1, 2, 3);
6928    /**
6929     * @brief Make the scroller minimum size limited to the minimum size of the content
6930     *
6931     * @param obj The scroller object
6932     * @param w Enable limiting minimum size horizontally
6933     * @param h Enable limiting minimum size vertically
6934     *
6935     * By default the scroller will be as small as its design allows,
6936     * irrespective of its content. This will make the scroller minimum size the
6937     * right size horizontally and/or vertically to perfectly fit its content in
6938     * that direction.
6939     */
6940    EAPI void         elm_scroller_content_min_limit(Evas_Object *obj, Eina_Bool w, Eina_Bool h) EINA_ARG_NONNULL(1);
6941    /**
6942     * @brief Show a specific virtual region within the scroller content object
6943     *
6944     * @param obj The scroller object
6945     * @param x X coordinate of the region
6946     * @param y Y coordinate of the region
6947     * @param w Width of the region
6948     * @param h Height of the region
6949     *
6950     * This will ensure all (or part if it does not fit) of the designated
6951     * region in the virtual content object (0, 0 starting at the top-left of the
6952     * virtual content object) is shown within the scroller.
6953     */
6954    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);
6955    /**
6956     * @brief Set the scrollbar visibility policy
6957     *
6958     * @param obj The scroller object
6959     * @param policy_h Horizontal scrollbar policy
6960     * @param policy_v Vertical scrollbar policy
6961     *
6962     * This sets the scrollbar visibility policy for the given scroller.
6963     * ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it is
6964     * needed, and otherwise kept hidden. ELM_SCROLLER_POLICY_ON turns it on all
6965     * the time, and ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
6966     * respectively for the horizontal and vertical scrollbars.
6967     */
6968    EAPI void         elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
6969    /**
6970     * @brief Gets scrollbar visibility policy
6971     *
6972     * @param obj The scroller object
6973     * @param policy_h Horizontal scrollbar policy
6974     * @param policy_v Vertical scrollbar policy
6975     *
6976     * @see elm_scroller_policy_set()
6977     */
6978    EAPI void         elm_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
6979    /**
6980     * @brief Get the currently visible content region
6981     *
6982     * @param obj The scroller object
6983     * @param x X coordinate of the region
6984     * @param y Y coordinate of the region
6985     * @param w Width of the region
6986     * @param h Height of the region
6987     *
6988     * This gets the current region in the content object that is visible through
6989     * the scroller. The region co-ordinates are returned in the @p x, @p y, @p
6990     * w, @p h values pointed to.
6991     *
6992     * @note All coordinates are relative to the content.
6993     *
6994     * @see elm_scroller_region_show()
6995     */
6996    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);
6997    /**
6998     * @brief Get the size of the content object
6999     *
7000     * @param obj The scroller object
7001     * @param w Width return
7002     * @param h Height return
7003     *
7004     * This gets the size of the content object of the scroller.
7005     */
7006    EAPI void         elm_scroller_child_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
7007    /**
7008     * @brief Set bouncing behavior
7009     *
7010     * @param obj The scroller object
7011     * @param h_bounce Will the scroller bounce horizontally or not
7012     * @param v_bounce Will the scroller bounce vertically or not
7013     *
7014     * When scrolling, the scroller may "bounce" when reaching an edge of the
7015     * content object. This is a visual way to indicate the end has been reached.
7016     * This is enabled by default for both axis. This will set if it is enabled
7017     * for that axis with the boolean parameters for each axis.
7018     */
7019    EAPI void         elm_scroller_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
7020    /**
7021     * @brief Get the bounce mode
7022     *
7023     * @param obj The Scroller object
7024     * @param h_bounce Allow bounce horizontally
7025     * @param v_bounce Allow bounce vertically
7026     *
7027     * @see elm_scroller_bounce_set()
7028     */
7029    EAPI void         elm_scroller_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
7030    /**
7031     * @brief Set scroll page size relative to viewport size.
7032     *
7033     * @param obj The scroller object
7034     * @param h_pagerel The horizontal page relative size
7035     * @param v_pagerel The vertical page relative size
7036     *
7037     * The scroller is capable of limiting scrolling by the user to "pages". That
7038     * is to jump by and only show a "whole page" at a time as if the continuous
7039     * area of the scroller content is split into page sized pieces. This sets
7040     * the size of a page relative to the viewport of the scroller. 1.0 is "1
7041     * viewport" is size (horizontally or vertically). 0.0 turns it off in that
7042     * axis. This is mutually exclusive with page size
7043     * (see elm_scroller_page_size_set()  for more information). Likewise 0.5
7044     * is "half a viewport". Sane usable valus are normally between 0.0 and 1.0
7045     * including 1.0. If you only want 1 axis to be page "limited", use 0.0 for
7046     * the other axis.
7047     */
7048    EAPI void         elm_scroller_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
7049    /**
7050     * @brief Set scroll page size.
7051     *
7052     * @param obj The scroller object
7053     * @param h_pagesize The horizontal page size
7054     * @param v_pagesize The vertical page size
7055     *
7056     * This sets the page size to an absolute fixed value, with 0 turning it off
7057     * for that axis.
7058     *
7059     * @see elm_scroller_page_relative_set()
7060     */
7061    EAPI void         elm_scroller_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
7062    /**
7063     * @brief Get scroll current page number.
7064     *
7065     * @param obj The scroller object
7066     * @param h_pagenumber The horizontal page number
7067     * @param v_pagenumber The vertical page number
7068     *
7069     * The page number starts from 0. 0 is the first page.
7070     * Current page means the page which meet the top-left of the viewport.
7071     * If there are two or more pages in the viewport, it returns the number of page
7072     * which meet the top-left of the viewport.
7073     *
7074     * @see elm_scroller_last_page_get()
7075     * @see elm_scroller_page_show()
7076     * @see elm_scroller_page_brint_in()
7077     */
7078    EAPI void         elm_scroller_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7079    /**
7080     * @brief Get scroll last page number.
7081     *
7082     * @param obj The scroller object
7083     * @param h_pagenumber The horizontal page number
7084     * @param v_pagenumber The vertical page number
7085     *
7086     * The page number starts from 0. 0 is the first page.
7087     * This returns the last page number among the pages.
7088     *
7089     * @see elm_scroller_current_page_get()
7090     * @see elm_scroller_page_show()
7091     * @see elm_scroller_page_brint_in()
7092     */
7093    EAPI void         elm_scroller_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7094    /**
7095     * Show a specific virtual region within the scroller content object by page number.
7096     *
7097     * @param obj The scroller object
7098     * @param h_pagenumber The horizontal page number
7099     * @param v_pagenumber The vertical page number
7100     *
7101     * 0, 0 of the indicated page is located at the top-left of the viewport.
7102     * This will jump to the page directly without animation.
7103     *
7104     * Example of usage:
7105     *
7106     * @code
7107     * sc = elm_scroller_add(win);
7108     * elm_scroller_content_set(sc, content);
7109     * elm_scroller_page_relative_set(sc, 1, 0);
7110     * elm_scroller_current_page_get(sc, &h_page, &v_page);
7111     * elm_scroller_page_show(sc, h_page + 1, v_page);
7112     * @endcode
7113     *
7114     * @see elm_scroller_page_bring_in()
7115     */
7116    EAPI void         elm_scroller_page_show(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7117    /**
7118     * Show a specific virtual region within the scroller content object by page number.
7119     *
7120     * @param obj The scroller object
7121     * @param h_pagenumber The horizontal page number
7122     * @param v_pagenumber The vertical page number
7123     *
7124     * 0, 0 of the indicated page is located at the top-left of the viewport.
7125     * This will slide to the page with animation.
7126     *
7127     * Example of usage:
7128     *
7129     * @code
7130     * sc = elm_scroller_add(win);
7131     * elm_scroller_content_set(sc, content);
7132     * elm_scroller_page_relative_set(sc, 1, 0);
7133     * elm_scroller_last_page_get(sc, &h_page, &v_page);
7134     * elm_scroller_page_bring_in(sc, h_page, v_page);
7135     * @endcode
7136     *
7137     * @see elm_scroller_page_show()
7138     */
7139    EAPI void         elm_scroller_page_bring_in(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7140    /**
7141     * @brief Show a specific virtual region within the scroller content object.
7142     *
7143     * @param obj The scroller object
7144     * @param x X coordinate of the region
7145     * @param y Y coordinate of the region
7146     * @param w Width of the region
7147     * @param h Height of the region
7148     *
7149     * This will ensure all (or part if it does not fit) of the designated
7150     * region in the virtual content object (0, 0 starting at the top-left of the
7151     * virtual content object) is shown within the scroller. Unlike
7152     * elm_scroller_region_show(), this allow the scroller to "smoothly slide"
7153     * to this location (if configuration in general calls for transitions). It
7154     * may not jump immediately to the new location and make take a while and
7155     * show other content along the way.
7156     *
7157     * @see elm_scroller_region_show()
7158     */
7159    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);
7160    /**
7161     * @brief Set event propagation on a scroller
7162     *
7163     * @param obj The scroller object
7164     * @param propagation If propagation is enabled or not
7165     *
7166     * This enables or disabled event propagation from the scroller content to
7167     * the scroller and its parent. By default event propagation is disabled.
7168     */
7169    EAPI void         elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation);
7170    /**
7171     * @brief Get event propagation for a scroller
7172     *
7173     * @param obj The scroller object
7174     * @return The propagation state
7175     *
7176     * This gets the event propagation for a scroller.
7177     *
7178     * @see elm_scroller_propagate_events_set()
7179     */
7180    EAPI Eina_Bool    elm_scroller_propagate_events_get(const Evas_Object *obj);
7181    /**
7182     * @}
7183     */
7184
7185    /**
7186     * @defgroup Label Label
7187     *
7188     * @image html img/widget/label/preview-00.png
7189     * @image latex img/widget/label/preview-00.eps
7190     *
7191     * @brief Widget to display text, with simple html-like markup.
7192     *
7193     * The Label widget @b doesn't allow text to overflow its boundaries, if the
7194     * text doesn't fit the geometry of the label it will be ellipsized or be
7195     * cut. Elementary provides several themes for this widget:
7196     * @li default - No animation
7197     * @li marker - Centers the text in the label and make it bold by default
7198     * @li slide_long - The entire text appears from the right of the screen and
7199     * slides until it disappears in the left of the screen(reappering on the
7200     * right again).
7201     * @li slide_short - The text appears in the left of the label and slides to
7202     * the right to show the overflow. When all of the text has been shown the
7203     * position is reset.
7204     * @li slide_bounce - The text appears in the left of the label and slides to
7205     * the right to show the overflow. When all of the text has been shown the
7206     * animation reverses, moving the text to the left.
7207     *
7208     * Custom themes can of course invent new markup tags and style them any way
7209     * they like.
7210     *
7211     * See @ref tutorial_label for a demonstration of how to use a label widget.
7212     * @{
7213     */
7214    /**
7215     * @brief Add a new label to the parent
7216     *
7217     * @param parent The parent object
7218     * @return The new object or NULL if it cannot be created
7219     */
7220    EAPI Evas_Object *elm_label_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7221    /**
7222     * @brief Set the label on the label object
7223     *
7224     * @param obj The label object
7225     * @param label The label will be used on the label object
7226     * @deprecated See elm_object_text_set()
7227     */
7228    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 */
7229    /**
7230     * @brief Get the label used on the label object
7231     *
7232     * @param obj The label object
7233     * @return The string inside the label
7234     * @deprecated See elm_object_text_get()
7235     */
7236    EINA_DEPRECATED EAPI const char *elm_label_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1); /* deprecated, use elm_object_text_get instead */
7237    /**
7238     * @brief Set the wrapping behavior of the label
7239     *
7240     * @param obj The label object
7241     * @param wrap To wrap text or not
7242     *
7243     * By default no wrapping is done. Possible values for @p wrap are:
7244     * @li ELM_WRAP_NONE - No wrapping
7245     * @li ELM_WRAP_CHAR - wrap between characters
7246     * @li ELM_WRAP_WORD - wrap between words
7247     * @li ELM_WRAP_MIXED - Word wrap, and if that fails, char wrap
7248     */
7249    EAPI void         elm_label_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
7250    /**
7251     * @brief Get the wrapping behavior of the label
7252     *
7253     * @param obj The label object
7254     * @return Wrap type
7255     *
7256     * @see elm_label_line_wrap_set()
7257     */
7258    EAPI Elm_Wrap_Type elm_label_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7259    /**
7260     * @brief Set wrap width of the label
7261     *
7262     * @param obj The label object
7263     * @param w The wrap width in pixels at a minimum where words need to wrap
7264     *
7265     * This function sets the maximum width size hint of the label.
7266     *
7267     * @warning This is only relevant if the label is inside a container.
7268     */
7269    EAPI void         elm_label_wrap_width_set(Evas_Object *obj, Evas_Coord w) EINA_ARG_NONNULL(1);
7270    /**
7271     * @brief Get wrap width of the label
7272     *
7273     * @param obj The label object
7274     * @return The wrap width in pixels at a minimum where words need to wrap
7275     *
7276     * @see elm_label_wrap_width_set()
7277     */
7278    EAPI Evas_Coord   elm_label_wrap_width_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7279    /**
7280     * @brief Set wrap height of the label
7281     *
7282     * @param obj The label object
7283     * @param h The wrap height in pixels at a minimum where words need to wrap
7284     *
7285     * This function sets the maximum height size hint of the label.
7286     *
7287     * @warning This is only relevant if the label is inside a container.
7288     */
7289    EAPI void         elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h) EINA_ARG_NONNULL(1);
7290    /**
7291     * @brief get wrap width of the label
7292     *
7293     * @param obj The label object
7294     * @return The wrap height in pixels at a minimum where words need to wrap
7295     */
7296    EAPI Evas_Coord   elm_label_wrap_height_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7297    /**
7298     * @brief Set the font size on the label object.
7299     *
7300     * @param obj The label object
7301     * @param size font size
7302     *
7303     * @warning NEVER use this. It is for hyper-special cases only. use styles
7304     * instead. e.g. "big", "medium", "small" - or better name them by use:
7305     * "title", "footnote", "quote" etc.
7306     */
7307    EAPI void         elm_label_fontsize_set(Evas_Object *obj, int fontsize) EINA_ARG_NONNULL(1);
7308    /**
7309     * @brief Set the text color on the label object
7310     *
7311     * @param obj The label object
7312     * @param r Red property background color of The label object
7313     * @param g Green property background color of The label object
7314     * @param b Blue property background color of The label object
7315     * @param a Alpha property background color of The label object
7316     *
7317     * @warning NEVER use this. It is for hyper-special cases only. use styles
7318     * instead. e.g. "big", "medium", "small" - or better name them by use:
7319     * "title", "footnote", "quote" etc.
7320     */
7321    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);
7322    /**
7323     * @brief Set the text align on the label object
7324     *
7325     * @param obj The label object
7326     * @param align align mode ("left", "center", "right")
7327     *
7328     * @warning NEVER use this. It is for hyper-special cases only. use styles
7329     * instead. e.g. "big", "medium", "small" - or better name them by use:
7330     * "title", "footnote", "quote" etc.
7331     */
7332    EAPI void         elm_label_text_align_set(Evas_Object *obj, const char *alignmode) EINA_ARG_NONNULL(1);
7333    /**
7334     * @brief Set background color of the label
7335     *
7336     * @param obj The label object
7337     * @param r Red property background color of The label object
7338     * @param g Green property background color of The label object
7339     * @param b Blue property background color of The label object
7340     * @param a Alpha property background alpha of The label object
7341     *
7342     * @warning NEVER use this. It is for hyper-special cases only. use styles
7343     * instead. e.g. "big", "medium", "small" - or better name them by use:
7344     * "title", "footnote", "quote" etc.
7345     */
7346    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);
7347    /**
7348     * @brief Set the ellipsis behavior of the label
7349     *
7350     * @param obj The label object
7351     * @param ellipsis To ellipsis text or not
7352     *
7353     * If set to true and the text doesn't fit in the label an ellipsis("...")
7354     * will be shown at the end of the widget.
7355     *
7356     * @warning This doesn't work with slide(elm_label_slide_set()) or if the
7357     * choosen wrap method was ELM_WRAP_WORD.
7358     */
7359    EAPI void         elm_label_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis) EINA_ARG_NONNULL(1);
7360    /**
7361     * @brief Set the text slide of the label
7362     *
7363     * @param obj The label object
7364     * @param slide To start slide or stop
7365     *
7366     * If set to true the text of the label will slide throught the length of
7367     * label.
7368     *
7369     * @warning This only work with the themes "slide_short", "slide_long" and
7370     * "slide_bounce".
7371     */
7372    EAPI void         elm_label_slide_set(Evas_Object *obj, Eina_Bool slide) EINA_ARG_NONNULL(1);
7373    /**
7374     * @brief Get the text slide mode of the label
7375     *
7376     * @param obj The label object
7377     * @return slide slide mode value
7378     *
7379     * @see elm_label_slide_set()
7380     */
7381    EAPI Eina_Bool    elm_label_slide_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7382    /**
7383     * @brief Set the slide duration(speed) of the label
7384     *
7385     * @param obj The label object
7386     * @return The duration in seconds in moving text from slide begin position
7387     * to slide end position
7388     */
7389    EAPI void         elm_label_slide_duration_set(Evas_Object *obj, double duration) EINA_ARG_NONNULL(1);
7390    /**
7391     * @brief Get the slide duration(speed) of the label
7392     *
7393     * @param obj The label object
7394     * @return The duration time in moving text from slide begin position to slide end position
7395     *
7396     * @see elm_label_slide_duration_set()
7397     */
7398    EAPI double       elm_label_slide_duration_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7399    /**
7400     * @}
7401     */
7402
7403    /**
7404     * @defgroup Toggle Toggle
7405     *
7406     * @image html img/widget/toggle/preview-00.png
7407     * @image latex img/widget/toggle/preview-00.eps
7408     *
7409     * @brief A toggle is a slider which can be used to toggle between
7410     * two values.  It has two states: on and off.
7411     *
7412     * Signals that you can add callbacks for are:
7413     * @li "changed" - Whenever the toggle value has been changed.  Is not called
7414     *                 until the toggle is released by the cursor (assuming it
7415     *                 has been triggered by the cursor in the first place).
7416     *
7417     * @ref tutorial_toggle show how to use a toggle.
7418     * @{
7419     */
7420    /**
7421     * @brief Add a toggle to @p parent.
7422     *
7423     * @param parent The parent object
7424     *
7425     * @return The toggle object
7426     */
7427    EAPI Evas_Object *elm_toggle_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7428    /**
7429     * @brief Sets the label to be displayed with the toggle.
7430     *
7431     * @param obj The toggle object
7432     * @param label The label to be displayed
7433     *
7434     * @deprecated use elm_object_text_set() instead.
7435     */
7436    EINA_DEPRECATED EAPI void         elm_toggle_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7437    /**
7438     * @brief Gets the label of the toggle
7439     *
7440     * @param obj  toggle object
7441     * @return The label of the toggle
7442     *
7443     * @deprecated use elm_object_text_get() instead.
7444     */
7445    EINA_DEPRECATED EAPI const char  *elm_toggle_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7446    /**
7447     * @brief Set the icon used for the toggle
7448     *
7449     * @param obj The toggle object
7450     * @param icon The icon object for the button
7451     *
7452     * Once the icon object is set, a previously set one will be deleted
7453     * If you want to keep that old content object, use the
7454     * elm_toggle_icon_unset() function.
7455     */
7456    EAPI void         elm_toggle_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
7457    /**
7458     * @brief Get the icon used for the toggle
7459     *
7460     * @param obj The toggle object
7461     * @return The icon object that is being used
7462     *
7463     * Return the icon object which is set for this widget.
7464     *
7465     * @see elm_toggle_icon_set()
7466     */
7467    EAPI Evas_Object *elm_toggle_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7468    /**
7469     * @brief Unset the icon used for the toggle
7470     *
7471     * @param obj The toggle object
7472     * @return The icon object that was being used
7473     *
7474     * Unparent and return the icon object which was set for this widget.
7475     *
7476     * @see elm_toggle_icon_set()
7477     */
7478    EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7479    /**
7480     * @brief Sets the labels to be associated with the on and off states of the toggle.
7481     *
7482     * @param obj The toggle object
7483     * @param onlabel The label displayed when the toggle is in the "on" state
7484     * @param offlabel The label displayed when the toggle is in the "off" state
7485     */
7486    EAPI void         elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel) EINA_ARG_NONNULL(1);
7487    /**
7488     * @brief Gets the labels associated with the on and off states of the toggle.
7489     *
7490     * @param obj The toggle object
7491     * @param onlabel A char** to place the onlabel of @p obj into
7492     * @param offlabel A char** to place the offlabel of @p obj into
7493     */
7494    EAPI void         elm_toggle_states_labels_get(const Evas_Object *obj, const char **onlabel, const char **offlabel) EINA_ARG_NONNULL(1);
7495    /**
7496     * @brief Sets the state of the toggle to @p state.
7497     *
7498     * @param obj The toggle object
7499     * @param state The state of @p obj
7500     */
7501    EAPI void         elm_toggle_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
7502    /**
7503     * @brief Gets the state of the toggle to @p state.
7504     *
7505     * @param obj The toggle object
7506     * @return The state of @p obj
7507     */
7508    EAPI Eina_Bool    elm_toggle_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7509    /**
7510     * @brief Sets the state pointer of the toggle to @p statep.
7511     *
7512     * @param obj The toggle object
7513     * @param statep The state pointer of @p obj
7514     */
7515    EAPI void         elm_toggle_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
7516    /**
7517     * @}
7518     */
7519
7520    /**
7521     * @defgroup Frame Frame
7522     *
7523     * @image html img/widget/frame/preview-00.png
7524     * @image latex img/widget/frame/preview-00.eps
7525     *
7526     * @brief Frame is a widget that holds some content and has a title.
7527     *
7528     * The default look is a frame with a title, but Frame supports multple
7529     * styles:
7530     * @li default
7531     * @li pad_small
7532     * @li pad_medium
7533     * @li pad_large
7534     * @li pad_huge
7535     * @li outdent_top
7536     * @li outdent_bottom
7537     *
7538     * Of all this styles only default shows the title. Frame emits no signals.
7539     *
7540     * For a detailed example see the @ref tutorial_frame.
7541     *
7542     * @{
7543     */
7544    /**
7545     * @brief Add a new frame to the parent
7546     *
7547     * @param parent The parent object
7548     * @return The new object or NULL if it cannot be created
7549     */
7550    EAPI Evas_Object *elm_frame_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7551    /**
7552     * @brief Set the frame label
7553     *
7554     * @param obj The frame object
7555     * @param label The label of this frame object
7556     *
7557     * @deprecated use elm_object_text_set() instead.
7558     */
7559    EINA_DEPRECATED EAPI void         elm_frame_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7560    /**
7561     * @brief Get the frame label
7562     *
7563     * @param obj The frame object
7564     *
7565     * @return The label of this frame objet or NULL if unable to get frame
7566     *
7567     * @deprecated use elm_object_text_get() instead.
7568     */
7569    EINA_DEPRECATED EAPI const char  *elm_frame_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7570    /**
7571     * @brief Set the content of the frame widget
7572     *
7573     * Once the content object is set, a previously set one will be deleted.
7574     * If you want to keep that old content object, use the
7575     * elm_frame_content_unset() function.
7576     *
7577     * @param obj The frame object
7578     * @param content The content will be filled in this frame object
7579     */
7580    EAPI void         elm_frame_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
7581    /**
7582     * @brief Get the content of the frame widget
7583     *
7584     * Return the content object which is set for this widget
7585     *
7586     * @param obj The frame object
7587     * @return The content that is being used
7588     */
7589    EAPI Evas_Object *elm_frame_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7590    /**
7591     * @brief Unset the content of the frame widget
7592     *
7593     * Unparent and return the content object which was set for this widget
7594     *
7595     * @param obj The frame object
7596     * @return The content that was being used
7597     */
7598    EAPI Evas_Object *elm_frame_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7599    /**
7600     * @}
7601     */
7602
7603    /**
7604     * @defgroup Table Table
7605     *
7606     * A container widget to arrange other widgets in a table where items can
7607     * also span multiple columns or rows - even overlap (and then be raised or
7608     * lowered accordingly to adjust stacking if they do overlap).
7609     *
7610     * The followin are examples of how to use a table:
7611     * @li @ref tutorial_table_01
7612     * @li @ref tutorial_table_02
7613     *
7614     * @{
7615     */
7616    /**
7617     * @brief Add a new table to the parent
7618     *
7619     * @param parent The parent object
7620     * @return The new object or NULL if it cannot be created
7621     */
7622    EAPI Evas_Object *elm_table_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7623    /**
7624     * @brief Set the homogeneous layout in the table
7625     *
7626     * @param obj The layout object
7627     * @param homogeneous A boolean to set if the layout is homogeneous in the
7628     * table (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
7629     */
7630    EAPI void         elm_table_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
7631    /**
7632     * @brief Get the current table homogeneous mode.
7633     *
7634     * @param obj The table object
7635     * @return A boolean to indicating if the layout is homogeneous in the table
7636     * (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
7637     */
7638    EAPI Eina_Bool    elm_table_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7639    /**
7640     * @warning <b>Use elm_table_homogeneous_set() instead</b>
7641     */
7642    EINA_DEPRECATED EAPI void elm_table_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
7643    /**
7644     * @warning <b>Use elm_table_homogeneous_get() instead</b>
7645     */
7646    EINA_DEPRECATED EAPI Eina_Bool elm_table_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7647    /**
7648     * @brief Set padding between cells.
7649     *
7650     * @param obj The layout object.
7651     * @param horizontal set the horizontal padding.
7652     * @param vertical set the vertical padding.
7653     *
7654     * Default value is 0.
7655     */
7656    EAPI void         elm_table_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
7657    /**
7658     * @brief Get padding between cells.
7659     *
7660     * @param obj The layout object.
7661     * @param horizontal set the horizontal padding.
7662     * @param vertical set the vertical padding.
7663     */
7664    EAPI void         elm_table_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
7665    /**
7666     * @brief Add a subobject on the table with the coordinates passed
7667     *
7668     * @param obj The table object
7669     * @param subobj The subobject to be added to the table
7670     * @param x Row number
7671     * @param y Column number
7672     * @param w rowspan
7673     * @param h colspan
7674     *
7675     * @note All positioning inside the table is relative to rows and columns, so
7676     * a value of 0 for x and y, means the top left cell of the table, and a
7677     * value of 1 for w and h means @p subobj only takes that 1 cell.
7678     */
7679    EAPI void         elm_table_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
7680    /**
7681     * @brief Remove child from table.
7682     *
7683     * @param obj The table object
7684     * @param subobj The subobject
7685     */
7686    EAPI void         elm_table_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
7687    /**
7688     * @brief Faster way to remove all child objects from a table object.
7689     *
7690     * @param obj The table object
7691     * @param clear If true, will delete children, else just remove from table.
7692     */
7693    EAPI void         elm_table_clear(Evas_Object *obj, Eina_Bool clear) EINA_ARG_NONNULL(1);
7694    /**
7695     * @brief Set the packing location of an existing child of the table
7696     *
7697     * @param subobj The subobject to be modified in the table
7698     * @param x Row number
7699     * @param y Column number
7700     * @param w rowspan
7701     * @param h colspan
7702     *
7703     * Modifies the position of an object already in the table.
7704     *
7705     * @note All positioning inside the table is relative to rows and columns, so
7706     * a value of 0 for x and y, means the top left cell of the table, and a
7707     * value of 1 for w and h means @p subobj only takes that 1 cell.
7708     */
7709    EAPI void         elm_table_pack_set(Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
7710    /**
7711     * @brief Get the packing location of an existing child of the table
7712     *
7713     * @param subobj The subobject to be modified in the table
7714     * @param x Row number
7715     * @param y Column number
7716     * @param w rowspan
7717     * @param h colspan
7718     *
7719     * @see elm_table_pack_set()
7720     */
7721    EAPI void         elm_table_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
7722    /**
7723     * @}
7724     */
7725
7726    /**
7727     * @defgroup Gengrid Gengrid (Generic grid)
7728     *
7729     * This widget aims to position objects in a grid layout while
7730     * actually creating and rendering only the visible ones, using the
7731     * same idea as the @ref Genlist "genlist": the user defines a @b
7732     * class for each item, specifying functions that will be called at
7733     * object creation, deletion, etc. When those items are selected by
7734     * the user, a callback function is issued. Users may interact with
7735     * a gengrid via the mouse (by clicking on items to select them and
7736     * clicking on the grid's viewport and swiping to pan the whole
7737     * view) or via the keyboard, navigating through item with the
7738     * arrow keys.
7739     *
7740     * @section Gengrid_Layouts Gengrid layouts
7741     *
7742     * Gengrids may layout its items in one of two possible layouts:
7743     * - horizontal or
7744     * - vertical.
7745     *
7746     * When in "horizontal mode", items will be placed in @b columns,
7747     * from top to bottom and, when the space for a column is filled,
7748     * another one is started on the right, thus expanding the grid
7749     * horizontally, making for horizontal scrolling. When in "vertical
7750     * mode" , though, items will be placed in @b rows, from left to
7751     * right and, when the space for a row is filled, another one is
7752     * started below, thus expanding the grid vertically (and making
7753     * for vertical scrolling).
7754     *
7755     * @section Gengrid_Items Gengrid items
7756     *
7757     * An item in a gengrid can have 0 or more text labels (they can be
7758     * regular text or textblock Evas objects - that's up to the style
7759     * to determine), 0 or more icons (which are simply objects
7760     * swallowed into the gengrid item's theming Edje object) and 0 or
7761     * more <b>boolean states</b>, which have the behavior left to the
7762     * user to define. The Edje part names for each of these properties
7763     * will be looked up, in the theme file for the gengrid, under the
7764     * Edje (string) data items named @c "labels", @c "icons" and @c
7765     * "states", respectively. For each of those properties, if more
7766     * than one part is provided, they must have names listed separated
7767     * by spaces in the data fields. For the default gengrid item
7768     * theme, we have @b one label part (@c "elm.text"), @b two icon
7769     * parts (@c "elm.swalllow.icon" and @c "elm.swallow.end") and @b
7770     * no state parts.
7771     *
7772     * A gengrid item may be at one of several styles. Elementary
7773     * provides one by default - "default", but this can be extended by
7774     * system or application custom themes/overlays/extensions (see
7775     * @ref Theme "themes" for more details).
7776     *
7777     * @section Gengrid_Item_Class Gengrid item classes
7778     *
7779     * In order to have the ability to add and delete items on the fly,
7780     * gengrid implements a class (callback) system where the
7781     * application provides a structure with information about that
7782     * type of item (gengrid may contain multiple different items with
7783     * different classes, states and styles). Gengrid will call the
7784     * functions in this struct (methods) when an item is "realized"
7785     * (i.e., created dynamically, while the user is scrolling the
7786     * grid). All objects will simply be deleted when no longer needed
7787     * with evas_object_del(). The #Elm_GenGrid_Item_Class structure
7788     * contains the following members:
7789     * - @c item_style - This is a constant string and simply defines
7790     * the name of the item style. It @b must be specified and the
7791     * default should be @c "default".
7792     * - @c func.label_get - This function is called when an item
7793     * object is actually created. The @c data parameter will point to
7794     * the same data passed to elm_gengrid_item_append() and related
7795     * item creation functions. The @c obj parameter is the gengrid
7796     * object itself, while the @c part one is the name string of one
7797     * of the existing text parts in the Edje group implementing the
7798     * item's theme. This function @b must return a strdup'()ed string,
7799     * as the caller will free() it when done. See
7800     * #Elm_Gengrid_Item_Label_Get_Cb.
7801     * - @c func.icon_get - This function is called when an item object
7802     * is actually created. The @c data parameter will point to the
7803     * same data passed to elm_gengrid_item_append() and related item
7804     * creation functions. The @c obj parameter is the gengrid object
7805     * itself, while the @c part one is the name string of one of the
7806     * existing (icon) swallow parts in the Edje group implementing the
7807     * item's theme. It must return @c NULL, when no icon is desired,
7808     * or a valid object handle, otherwise. The object will be deleted
7809     * by the gengrid on its deletion or when the item is "unrealized".
7810     * See #Elm_Gengrid_Item_Icon_Get_Cb.
7811     * - @c func.state_get - This function is called when an item
7812     * object is actually created. The @c data parameter will point to
7813     * the same data passed to elm_gengrid_item_append() and related
7814     * item creation functions. The @c obj parameter is the gengrid
7815     * object itself, while the @c part one is the name string of one
7816     * of the state parts in the Edje group implementing the item's
7817     * theme. Return @c EINA_FALSE for false/off or @c EINA_TRUE for
7818     * true/on. Gengrids will emit a signal to its theming Edje object
7819     * with @c "elm,state,XXX,active" and @c "elm" as "emission" and
7820     * "source" arguments, respectively, when the state is true (the
7821     * default is false), where @c XXX is the name of the (state) part.
7822     * See #Elm_Gengrid_Item_State_Get_Cb.
7823     * - @c func.del - This is called when elm_gengrid_item_del() is
7824     * called on an item or elm_gengrid_clear() is called on the
7825     * gengrid. This is intended for use when gengrid items are
7826     * deleted, so any data attached to the item (e.g. its data
7827     * parameter on creation) can be deleted. See #Elm_Gengrid_Item_Del_Cb.
7828     *
7829     * @section Gengrid_Usage_Hints Usage hints
7830     *
7831     * If the user wants to have multiple items selected at the same
7832     * time, elm_gengrid_multi_select_set() will permit it. If the
7833     * gengrid is single-selection only (the default), then
7834     * elm_gengrid_select_item_get() will return the selected item or
7835     * @c NULL, if none is selected. If the gengrid is under
7836     * multi-selection, then elm_gengrid_selected_items_get() will
7837     * return a list (that is only valid as long as no items are
7838     * modified (added, deleted, selected or unselected) of child items
7839     * on a gengrid.
7840     *
7841     * If an item changes (internal (boolean) state, label or icon
7842     * changes), then use elm_gengrid_item_update() to have gengrid
7843     * update the item with the new state. A gengrid will re-"realize"
7844     * the item, thus calling the functions in the
7845     * #Elm_Gengrid_Item_Class set for that item.
7846     *
7847     * To programmatically (un)select an item, use
7848     * elm_gengrid_item_selected_set(). To get its selected state use
7849     * elm_gengrid_item_selected_get(). To make an item disabled
7850     * (unable to be selected and appear differently) use
7851     * elm_gengrid_item_disabled_set() to set this and
7852     * elm_gengrid_item_disabled_get() to get the disabled state.
7853     *
7854     * Grid cells will only have their selection smart callbacks called
7855     * when firstly getting selected. Any further clicks will do
7856     * nothing, unless you enable the "always select mode", with
7857     * elm_gengrid_always_select_mode_set(), thus making every click to
7858     * issue selection callbacks. elm_gengrid_no_select_mode_set() will
7859     * turn off the ability to select items entirely in the widget and
7860     * they will neither appear selected nor call the selection smart
7861     * callbacks.
7862     *
7863     * Remember that you can create new styles and add your own theme
7864     * augmentation per application with elm_theme_extension_add(). If
7865     * you absolutely must have a specific style that overrides any
7866     * theme the user or system sets up you can use
7867     * elm_theme_overlay_add() to add such a file.
7868     *
7869     * @section Gengrid_Smart_Events Gengrid smart events
7870     *
7871     * Smart events that you can add callbacks for are:
7872     * - @c "activated" - The user has double-clicked or pressed
7873     *   (enter|return|spacebar) on an item. The @c event_info parameter
7874     *   is the gengrid item that was activated.
7875     * - @c "clicked,double" - The user has double-clicked an item.
7876     *   The @c event_info parameter is the gengrid item that was double-clicked.
7877     * - @c "longpressed" - This is called when the item is pressed for a certain
7878     *   amount of time. By default it's 1 second.
7879     * - @c "selected" - The user has made an item selected. The
7880     *   @c event_info parameter is the gengrid item that was selected.
7881     * - @c "unselected" - The user has made an item unselected. The
7882     *   @c event_info parameter is the gengrid item that was unselected.
7883     * - @c "realized" - This is called when the item in the gengrid
7884     *   has its implementing Evas object instantiated, de facto. @c
7885     *   event_info is the gengrid item that was created. The object
7886     *   may be deleted at any time, so it is highly advised to the
7887     *   caller @b not to use the object pointer returned from
7888     *   elm_gengrid_item_object_get(), because it may point to freed
7889     *   objects.
7890     * - @c "unrealized" - This is called when the implementing Evas
7891     *   object for this item is deleted. @c event_info is the gengrid
7892     *   item that was deleted.
7893     * - @c "changed" - Called when an item is added, removed, resized
7894     *   or moved and when the gengrid is resized or gets "horizontal"
7895     *   property changes.
7896     * - @c "scroll,anim,start" - This is called when scrolling animation has
7897     *   started.
7898     * - @c "scroll,anim,stop" - This is called when scrolling animation has
7899     *   stopped.
7900     * - @c "drag,start,up" - Called when the item in the gengrid has
7901     *   been dragged (not scrolled) up.
7902     * - @c "drag,start,down" - Called when the item in the gengrid has
7903     *   been dragged (not scrolled) down.
7904     * - @c "drag,start,left" - Called when the item in the gengrid has
7905     *   been dragged (not scrolled) left.
7906     * - @c "drag,start,right" - Called when the item in the gengrid has
7907     *   been dragged (not scrolled) right.
7908     * - @c "drag,stop" - Called when the item in the gengrid has
7909     *   stopped being dragged.
7910     * - @c "drag" - Called when the item in the gengrid is being
7911     *   dragged.
7912     * - @c "scroll" - called when the content has been scrolled
7913     *   (moved).
7914     * - @c "scroll,drag,start" - called when dragging the content has
7915     *   started.
7916     * - @c "scroll,drag,stop" - called when dragging the content has
7917     *   stopped.
7918     * - @c "scroll,edge,top" - This is called when the gengrid is scrolled until
7919     *   the top edge.
7920     * - @c "scroll,edge,bottom" - This is called when the gengrid is scrolled
7921     *   until the bottom edge.
7922     * - @c "scroll,edge,left" - This is called when the gengrid is scrolled
7923     *   until the left edge.
7924     * - @c "scroll,edge,right" - This is called when the gengrid is scrolled
7925     *   until the right edge.
7926     *
7927     * List of gengrid examples:
7928     * @li @ref gengrid_example
7929     */
7930
7931    /**
7932     * @addtogroup Gengrid
7933     * @{
7934     */
7935
7936    typedef struct _Elm_Gengrid_Item_Class Elm_Gengrid_Item_Class; /**< Gengrid item class definition structs */
7937    typedef struct _Elm_Gengrid_Item_Class_Func Elm_Gengrid_Item_Class_Func; /**< Class functions for gengrid item classes. */
7938    typedef struct _Elm_Gengrid_Item Elm_Gengrid_Item; /**< Gengrid item handles */
7939    typedef char        *(*Elm_Gengrid_Item_Label_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< Label fetching class function for gengrid item classes. */
7940    typedef Evas_Object *(*Elm_Gengrid_Item_Icon_Get_Cb)  (void *data, Evas_Object *obj, const char *part); /**< Icon fetching class function for gengrid item classes. */
7941    typedef Eina_Bool    (*Elm_Gengrid_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< State fetching class function for gengrid item classes. */
7942    typedef void         (*Elm_Gengrid_Item_Del_Cb)      (void *data, Evas_Object *obj); /**< Deletion class function for gengrid item classes. */
7943
7944    typedef char        *(*GridItemLabelGetFunc) (void *data, Evas_Object *obj, const char *part) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Gengrid_Item_Label_Get_Cb. */
7945    typedef Evas_Object *(*GridItemIconGetFunc)  (void *data, Evas_Object *obj, const char *part) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Gengrid_Item_Icon_Get_Cb. */
7946    typedef Eina_Bool    (*GridItemStateGetFunc) (void *data, Evas_Object *obj, const char *part) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Gengrid_Item_State_Get_Cb. */
7947    typedef void         (*GridItemDelFunc)      (void *data, Evas_Object *obj) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Gengrid_Item_Del_Cb. */
7948
7949    /**
7950     * @struct _Elm_Gengrid_Item_Class
7951     *
7952     * Gengrid item class definition. See @ref Gengrid_Item_Class for
7953     * field details.
7954     */
7955    struct _Elm_Gengrid_Item_Class
7956      {
7957         const char             *item_style;
7958         struct _Elm_Gengrid_Item_Class_Func
7959           {
7960              Elm_Gengrid_Item_Label_Get_Cb label_get;
7961              Elm_Gengrid_Item_Icon_Get_Cb  icon_get;
7962              Elm_Gengrid_Item_State_Get_Cb state_get;
7963              Elm_Gengrid_Item_Del_Cb       del;
7964           } func;
7965      }; /**< #Elm_Gengrid_Item_Class member definitions */
7966
7967    /**
7968     * Add a new gengrid widget to the given parent Elementary
7969     * (container) object
7970     *
7971     * @param parent The parent object
7972     * @return a new gengrid widget handle or @c NULL, on errors
7973     *
7974     * This function inserts a new gengrid widget on the canvas.
7975     *
7976     * @see elm_gengrid_item_size_set()
7977     * @see elm_gengrid_group_item_size_set()
7978     * @see elm_gengrid_horizontal_set()
7979     * @see elm_gengrid_item_append()
7980     * @see elm_gengrid_item_del()
7981     * @see elm_gengrid_clear()
7982     *
7983     * @ingroup Gengrid
7984     */
7985    EAPI Evas_Object       *elm_gengrid_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7986
7987    /**
7988     * Set the size for the items of a given gengrid widget
7989     *
7990     * @param obj The gengrid object.
7991     * @param w The items' width.
7992     * @param h The items' height;
7993     *
7994     * A gengrid, after creation, has still no information on the size
7995     * to give to each of its cells. So, you most probably will end up
7996     * with squares one @ref Fingers "finger" wide, the default
7997     * size. Use this function to force a custom size for you items,
7998     * making them as big as you wish.
7999     *
8000     * @see elm_gengrid_item_size_get()
8001     *
8002     * @ingroup Gengrid
8003     */
8004    EAPI void               elm_gengrid_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8005
8006    /**
8007     * Get the size set for the items of a given gengrid widget
8008     *
8009     * @param obj The gengrid object.
8010     * @param w Pointer to a variable where to store the items' width.
8011     * @param h Pointer to a variable where to store the items' height.
8012     *
8013     * @note Use @c NULL pointers on the size values you're not
8014     * interested in: they'll be ignored by the function.
8015     *
8016     * @see elm_gengrid_item_size_get() for more details
8017     *
8018     * @ingroup Gengrid
8019     */
8020    EAPI void               elm_gengrid_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8021
8022    /**
8023     * Set the size for the group items of a given gengrid widget
8024     *
8025     * @param obj The gengrid object.
8026     * @param w The group items' width.
8027     * @param h The group items' height;
8028     *
8029     * A gengrid, after creation, has still no information on the size
8030     * to give to each of its cells. So, you most probably will end up
8031     * with squares one @ref Fingers "finger" wide, the default
8032     * size. Use this function to force a custom size for you group items,
8033     * making them as big as you wish.
8034     *
8035     * @see elm_gengrid_group_item_size_get()
8036     *
8037     * @ingroup Gengrid
8038     */
8039    EAPI void               elm_gengrid_group_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8040
8041    /**
8042     * Get the size set for the group items of a given gengrid widget
8043     *
8044     * @param obj The gengrid object.
8045     * @param w Pointer to a variable where to store the group items' width.
8046     * @param h Pointer to a variable where to store the group items' height.
8047     *
8048     * @note Use @c NULL pointers on the size values you're not
8049     * interested in: they'll be ignored by the function.
8050     *
8051     * @see elm_gengrid_group_item_size_get() for more details
8052     *
8053     * @ingroup Gengrid
8054     */
8055    EAPI void               elm_gengrid_group_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8056
8057    /**
8058     * Set the items grid's alignment within a given gengrid widget
8059     *
8060     * @param obj The gengrid object.
8061     * @param align_x Alignment in the horizontal axis (0 <= align_x <= 1).
8062     * @param align_y Alignment in the vertical axis (0 <= align_y <= 1).
8063     *
8064     * This sets the alignment of the whole grid of items of a gengrid
8065     * within its given viewport. By default, those values are both
8066     * 0.5, meaning that the gengrid will have its items grid placed
8067     * exactly in the middle of its viewport.
8068     *
8069     * @note If given alignment values are out of the cited ranges,
8070     * they'll be changed to the nearest boundary values on the valid
8071     * ranges.
8072     *
8073     * @see elm_gengrid_align_get()
8074     *
8075     * @ingroup Gengrid
8076     */
8077    EAPI void               elm_gengrid_align_set(Evas_Object *obj, double align_x, double align_y) EINA_ARG_NONNULL(1);
8078
8079    /**
8080     * Get the items grid's alignment values within a given gengrid
8081     * widget
8082     *
8083     * @param obj The gengrid object.
8084     * @param align_x Pointer to a variable where to store the
8085     * horizontal alignment.
8086     * @param align_y Pointer to a variable where to store the vertical
8087     * alignment.
8088     *
8089     * @note Use @c NULL pointers on the alignment values you're not
8090     * interested in: they'll be ignored by the function.
8091     *
8092     * @see elm_gengrid_align_set() for more details
8093     *
8094     * @ingroup Gengrid
8095     */
8096    EAPI void               elm_gengrid_align_get(const Evas_Object *obj, double *align_x, double *align_y) EINA_ARG_NONNULL(1);
8097
8098    /**
8099     * Set whether a given gengrid widget is or not able have items
8100     * @b reordered
8101     *
8102     * @param obj The gengrid object
8103     * @param reorder_mode Use @c EINA_TRUE to turn reoderding on,
8104     * @c EINA_FALSE to turn it off
8105     *
8106     * If a gengrid is set to allow reordering, a click held for more
8107     * than 0.5 over a given item will highlight it specially,
8108     * signalling the gengrid has entered the reordering state. From
8109     * that time on, the user will be able to, while still holding the
8110     * mouse button down, move the item freely in the gengrid's
8111     * viewport, replacing to said item to the locations it goes to.
8112     * The replacements will be animated and, whenever the user
8113     * releases the mouse button, the item being replaced gets a new
8114     * definitive place in the grid.
8115     *
8116     * @see elm_gengrid_reorder_mode_get()
8117     *
8118     * @ingroup Gengrid
8119     */
8120    EAPI void               elm_gengrid_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
8121
8122    /**
8123     * Get whether a given gengrid widget is or not able have items
8124     * @b reordered
8125     *
8126     * @param obj The gengrid object
8127     * @return @c EINA_TRUE, if reoderding is on, @c EINA_FALSE if it's
8128     * off
8129     *
8130     * @see elm_gengrid_reorder_mode_set() for more details
8131     *
8132     * @ingroup Gengrid
8133     */
8134    EAPI Eina_Bool          elm_gengrid_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8135
8136    /**
8137     * Append a new item in a given gengrid widget.
8138     *
8139     * @param obj The gengrid object.
8140     * @param gic The item class for the item.
8141     * @param data The item data.
8142     * @param func Convenience function called when the item is
8143     * selected.
8144     * @param func_data Data to be passed to @p func.
8145     * @return A handle to the item added or @c NULL, on errors.
8146     *
8147     * This adds an item to the beginning of the gengrid.
8148     *
8149     * @see elm_gengrid_item_prepend()
8150     * @see elm_gengrid_item_insert_before()
8151     * @see elm_gengrid_item_insert_after()
8152     * @see elm_gengrid_item_del()
8153     *
8154     * @ingroup Gengrid
8155     */
8156    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);
8157
8158    /**
8159     * Prepend a new item in a given gengrid widget.
8160     *
8161     * @param obj The gengrid object.
8162     * @param gic The item class for the item.
8163     * @param data The item data.
8164     * @param func Convenience function called when the item is
8165     * selected.
8166     * @param func_data Data to be passed to @p func.
8167     * @return A handle to the item added or @c NULL, on errors.
8168     *
8169     * This adds an item to the end of the gengrid.
8170     *
8171     * @see elm_gengrid_item_append()
8172     * @see elm_gengrid_item_insert_before()
8173     * @see elm_gengrid_item_insert_after()
8174     * @see elm_gengrid_item_del()
8175     *
8176     * @ingroup Gengrid
8177     */
8178    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);
8179
8180    /**
8181     * Insert an item before another in a gengrid widget
8182     *
8183     * @param obj The gengrid object.
8184     * @param gic The item class for the item.
8185     * @param data The item data.
8186     * @param relative The item to place this new one before.
8187     * @param func Convenience function called when the item is
8188     * selected.
8189     * @param func_data Data to be passed to @p func.
8190     * @return A handle to the item added or @c NULL, on errors.
8191     *
8192     * This inserts an item before another in the gengrid.
8193     *
8194     * @see elm_gengrid_item_append()
8195     * @see elm_gengrid_item_prepend()
8196     * @see elm_gengrid_item_insert_after()
8197     * @see elm_gengrid_item_del()
8198     *
8199     * @ingroup Gengrid
8200     */
8201    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);
8202
8203    /**
8204     * Insert an item after another in a gengrid widget
8205     *
8206     * @param obj The gengrid object.
8207     * @param gic The item class for the item.
8208     * @param data The item data.
8209     * @param relative The item to place this new one after.
8210     * @param func Convenience function called when the item is
8211     * selected.
8212     * @param func_data Data to be passed to @p func.
8213     * @return A handle to the item added or @c NULL, on errors.
8214     *
8215     * This inserts an item after another in the gengrid.
8216     *
8217     * @see elm_gengrid_item_append()
8218     * @see elm_gengrid_item_prepend()
8219     * @see elm_gengrid_item_insert_after()
8220     * @see elm_gengrid_item_del()
8221     *
8222     * @ingroup Gengrid
8223     */
8224    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);
8225
8226    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);
8227
8228    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);
8229
8230    /**
8231     * Set whether items on a given gengrid widget are to get their
8232     * selection callbacks issued for @b every subsequent selection
8233     * click on them or just for the first click.
8234     *
8235     * @param obj The gengrid object
8236     * @param always_select @c EINA_TRUE to make items "always
8237     * selected", @c EINA_FALSE, otherwise
8238     *
8239     * By default, grid items will only call their selection callback
8240     * function when firstly getting selected, any subsequent further
8241     * clicks will do nothing. With this call, you make those
8242     * subsequent clicks also to issue the selection callbacks.
8243     *
8244     * @note <b>Double clicks</b> will @b always be reported on items.
8245     *
8246     * @see elm_gengrid_always_select_mode_get()
8247     *
8248     * @ingroup Gengrid
8249     */
8250    EAPI void               elm_gengrid_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
8251
8252    /**
8253     * Get whether items on a given gengrid widget have their selection
8254     * callbacks issued for @b every subsequent selection click on them
8255     * or just for the first click.
8256     *
8257     * @param obj The gengrid object.
8258     * @return @c EINA_TRUE if the gengrid items are "always selected",
8259     * @c EINA_FALSE, otherwise
8260     *
8261     * @see elm_gengrid_always_select_mode_set() for more details
8262     *
8263     * @ingroup Gengrid
8264     */
8265    EAPI Eina_Bool          elm_gengrid_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8266
8267    /**
8268     * Set whether items on a given gengrid widget can be selected or not.
8269     *
8270     * @param obj The gengrid object
8271     * @param no_select @c EINA_TRUE to make items selectable,
8272     * @c EINA_FALSE otherwise
8273     *
8274     * This will make items in @p obj selectable or not. In the latter
8275     * case, any user interaction on the gengrid items will neither make
8276     * them appear selected nor them call their selection callback
8277     * functions.
8278     *
8279     * @see elm_gengrid_no_select_mode_get()
8280     *
8281     * @ingroup Gengrid
8282     */
8283    EAPI void               elm_gengrid_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
8284
8285    /**
8286     * Get whether items on a given gengrid widget can be selected or
8287     * not.
8288     *
8289     * @param obj The gengrid object
8290     * @return @c EINA_TRUE, if items are selectable, @c EINA_FALSE
8291     * otherwise
8292     *
8293     * @see elm_gengrid_no_select_mode_set() for more details
8294     *
8295     * @ingroup Gengrid
8296     */
8297    EAPI Eina_Bool          elm_gengrid_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8298
8299    /**
8300     * Enable or disable multi-selection in a given gengrid widget
8301     *
8302     * @param obj The gengrid object.
8303     * @param multi @c EINA_TRUE, to enable multi-selection,
8304     * @c EINA_FALSE to disable it.
8305     *
8306     * Multi-selection is the ability for one to have @b more than one
8307     * item selected, on a given gengrid, simultaneously. When it is
8308     * enabled, a sequence of clicks on different items will make them
8309     * all selected, progressively. A click on an already selected item
8310     * will unselect it. If interecting via the keyboard,
8311     * multi-selection is enabled while holding the "Shift" key.
8312     *
8313     * @note By default, multi-selection is @b disabled on gengrids
8314     *
8315     * @see elm_gengrid_multi_select_get()
8316     *
8317     * @ingroup Gengrid
8318     */
8319    EAPI void               elm_gengrid_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
8320
8321    /**
8322     * Get whether multi-selection is enabled or disabled for a given
8323     * gengrid widget
8324     *
8325     * @param obj The gengrid object.
8326     * @return @c EINA_TRUE, if multi-selection is enabled, @c
8327     * EINA_FALSE otherwise
8328     *
8329     * @see elm_gengrid_multi_select_set() for more details
8330     *
8331     * @ingroup Gengrid
8332     */
8333    EAPI Eina_Bool          elm_gengrid_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8334
8335    /**
8336     * Enable or disable bouncing effect for a given gengrid widget
8337     *
8338     * @param obj The gengrid object
8339     * @param h_bounce @c EINA_TRUE, to enable @b horizontal bouncing,
8340     * @c EINA_FALSE to disable it
8341     * @param v_bounce @c EINA_TRUE, to enable @b vertical bouncing,
8342     * @c EINA_FALSE to disable it
8343     *
8344     * The bouncing effect occurs whenever one reaches the gengrid's
8345     * edge's while panning it -- it will scroll past its limits a
8346     * little bit and return to the edge again, in a animated for,
8347     * automatically.
8348     *
8349     * @note By default, gengrids have bouncing enabled on both axis
8350     *
8351     * @see elm_gengrid_bounce_get()
8352     *
8353     * @ingroup Gengrid
8354     */
8355    EAPI void               elm_gengrid_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
8356
8357    /**
8358     * Get whether bouncing effects are enabled or disabled, for a
8359     * given gengrid widget, on each axis
8360     *
8361     * @param obj The gengrid object
8362     * @param h_bounce Pointer to a variable where to store the
8363     * horizontal bouncing flag.
8364     * @param v_bounce Pointer to a variable where to store the
8365     * vertical bouncing flag.
8366     *
8367     * @see elm_gengrid_bounce_set() for more details
8368     *
8369     * @ingroup Gengrid
8370     */
8371    EAPI void               elm_gengrid_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
8372
8373    /**
8374     * Set a given gengrid widget's scrolling page size, relative to
8375     * its viewport size.
8376     *
8377     * @param obj The gengrid object
8378     * @param h_pagerel The horizontal page (relative) size
8379     * @param v_pagerel The vertical page (relative) size
8380     *
8381     * The gengrid's scroller is capable of binding scrolling by the
8382     * user to "pages". It means that, while scrolling and, specially
8383     * after releasing the mouse button, the grid will @b snap to the
8384     * nearest displaying page's area. When page sizes are set, the
8385     * grid's continuous content area is split into (equal) page sized
8386     * pieces.
8387     *
8388     * This function sets the size of a page <b>relatively to the
8389     * viewport dimensions</b> of the gengrid, for each axis. A value
8390     * @c 1.0 means "the exact viewport's size", in that axis, while @c
8391     * 0.0 turns paging off in that axis. Likewise, @c 0.5 means "half
8392     * a viewport". Sane usable values are, than, between @c 0.0 and @c
8393     * 1.0. Values beyond those will make it behave behave
8394     * inconsistently. If you only want one axis to snap to pages, use
8395     * the value @c 0.0 for the other one.
8396     *
8397     * There is a function setting page size values in @b absolute
8398     * values, too -- elm_gengrid_page_size_set(). Naturally, its use
8399     * is mutually exclusive to this one.
8400     *
8401     * @see elm_gengrid_page_relative_get()
8402     *
8403     * @ingroup Gengrid
8404     */
8405    EAPI void               elm_gengrid_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
8406
8407    /**
8408     * Get a given gengrid widget's scrolling page size, relative to
8409     * its viewport size.
8410     *
8411     * @param obj The gengrid object
8412     * @param h_pagerel Pointer to a variable where to store the
8413     * horizontal page (relative) size
8414     * @param v_pagerel Pointer to a variable where to store the
8415     * vertical page (relative) size
8416     *
8417     * @see elm_gengrid_page_relative_set() for more details
8418     *
8419     * @ingroup Gengrid
8420     */
8421    EAPI void               elm_gengrid_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel) EINA_ARG_NONNULL(1);
8422
8423    /**
8424     * Set a given gengrid widget's scrolling page size
8425     *
8426     * @param obj The gengrid object
8427     * @param h_pagerel The horizontal page size, in pixels
8428     * @param v_pagerel The vertical page size, in pixels
8429     *
8430     * The gengrid's scroller is capable of binding scrolling by the
8431     * user to "pages". It means that, while scrolling and, specially
8432     * after releasing the mouse button, the grid will @b snap to the
8433     * nearest displaying page's area. When page sizes are set, the
8434     * grid's continuous content area is split into (equal) page sized
8435     * pieces.
8436     *
8437     * This function sets the size of a page of the gengrid, in pixels,
8438     * for each axis. Sane usable values are, between @c 0 and the
8439     * dimensions of @p obj, for each axis. Values beyond those will
8440     * make it behave behave inconsistently. If you only want one axis
8441     * to snap to pages, use the value @c 0 for the other one.
8442     *
8443     * There is a function setting page size values in @b relative
8444     * values, too -- elm_gengrid_page_relative_set(). Naturally, its
8445     * use is mutually exclusive to this one.
8446     *
8447     * @ingroup Gengrid
8448     */
8449    EAPI void               elm_gengrid_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
8450
8451    /**
8452     * @brief Get gengrid current page number.
8453     *
8454     * @param obj The gengrid object
8455     * @param h_pagenumber The horizontal page number
8456     * @param v_pagenumber The vertical page number
8457     *
8458     * The page number starts from 0. 0 is the first page.
8459     * Current page means the page which meet the top-left of the viewport.
8460     * If there are two or more pages in the viewport, it returns the number of page
8461     * which meet the top-left of the viewport.
8462     *
8463     * @see elm_gengrid_last_page_get()
8464     * @see elm_gengrid_page_show()
8465     * @see elm_gengrid_page_brint_in()
8466     */
8467    EAPI void         elm_gengrid_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
8468
8469    /**
8470     * @brief Get scroll last page number.
8471     *
8472     * @param obj The gengrid object
8473     * @param h_pagenumber The horizontal page number
8474     * @param v_pagenumber The vertical page number
8475     *
8476     * The page number starts from 0. 0 is the first page.
8477     * This returns the last page number among the pages.
8478     *
8479     * @see elm_gengrid_current_page_get()
8480     * @see elm_gengrid_page_show()
8481     * @see elm_gengrid_page_brint_in()
8482     */
8483    EAPI void         elm_gengrid_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
8484
8485    /**
8486     * Show a specific virtual region within the gengrid content object by page number.
8487     *
8488     * @param obj The gengrid object
8489     * @param h_pagenumber The horizontal page number
8490     * @param v_pagenumber The vertical page number
8491     *
8492     * 0, 0 of the indicated page is located at the top-left of the viewport.
8493     * This will jump to the page directly without animation.
8494     *
8495     * Example of usage:
8496     *
8497     * @code
8498     * sc = elm_gengrid_add(win);
8499     * elm_gengrid_content_set(sc, content);
8500     * elm_gengrid_page_relative_set(sc, 1, 0);
8501     * elm_gengrid_current_page_get(sc, &h_page, &v_page);
8502     * elm_gengrid_page_show(sc, h_page + 1, v_page);
8503     * @endcode
8504     *
8505     * @see elm_gengrid_page_bring_in()
8506     */
8507    EAPI void         elm_gengrid_page_show(const Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
8508
8509    /**
8510     * Show a specific virtual region within the gengrid content object by page number.
8511     *
8512     * @param obj The gengrid object
8513     * @param h_pagenumber The horizontal page number
8514     * @param v_pagenumber The vertical page number
8515     *
8516     * 0, 0 of the indicated page is located at the top-left of the viewport.
8517     * This will slide to the page with animation.
8518     *
8519     * Example of usage:
8520     *
8521     * @code
8522     * sc = elm_gengrid_add(win);
8523     * elm_gengrid_content_set(sc, content);
8524     * elm_gengrid_page_relative_set(sc, 1, 0);
8525     * elm_gengrid_last_page_get(sc, &h_page, &v_page);
8526     * elm_gengrid_page_bring_in(sc, h_page, v_page);
8527     * @endcode
8528     *
8529     * @see elm_gengrid_page_show()
8530     */
8531     EAPI void         elm_gengrid_page_bring_in(const Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
8532
8533    /**
8534     * Set for what direction a given gengrid widget will expand while
8535     * placing its items.
8536     *
8537     * @param obj The gengrid object.
8538     * @param setting @c EINA_TRUE to make the gengrid expand
8539     * horizontally, @c EINA_FALSE to expand vertically.
8540     *
8541     * When in "horizontal mode" (@c EINA_TRUE), items will be placed
8542     * in @b columns, from top to bottom and, when the space for a
8543     * column is filled, another one is started on the right, thus
8544     * expanding the grid horizontally. When in "vertical mode"
8545     * (@c EINA_FALSE), though, items will be placed in @b rows, from left
8546     * to right and, when the space for a row is filled, another one is
8547     * started below, thus expanding the grid vertically.
8548     *
8549     * @see elm_gengrid_horizontal_get()
8550     *
8551     * @ingroup Gengrid
8552     */
8553    EAPI void               elm_gengrid_horizontal_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
8554
8555    /**
8556     * Get for what direction a given gengrid widget will expand while
8557     * placing its items.
8558     *
8559     * @param obj The gengrid object.
8560     * @return @c EINA_TRUE, if @p obj is set to expand horizontally,
8561     * @c EINA_FALSE if it's set to expand vertically.
8562     *
8563     * @see elm_gengrid_horizontal_set() for more detais
8564     *
8565     * @ingroup Gengrid
8566     */
8567    EAPI Eina_Bool          elm_gengrid_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8568
8569    /**
8570     * Get the first item in a given gengrid widget
8571     *
8572     * @param obj The gengrid object
8573     * @return The first item's handle or @c NULL, if there are no
8574     * items in @p obj (and on errors)
8575     *
8576     * This returns the first item in the @p obj's internal list of
8577     * items.
8578     *
8579     * @see elm_gengrid_last_item_get()
8580     *
8581     * @ingroup Gengrid
8582     */
8583    EAPI Elm_Gengrid_Item  *elm_gengrid_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8584
8585    /**
8586     * Get the last item in a given gengrid widget
8587     *
8588     * @param obj The gengrid object
8589     * @return The last item's handle or @c NULL, if there are no
8590     * items in @p obj (and on errors)
8591     *
8592     * This returns the last item in the @p obj's internal list of
8593     * items.
8594     *
8595     * @see elm_gengrid_first_item_get()
8596     *
8597     * @ingroup Gengrid
8598     */
8599    EAPI Elm_Gengrid_Item  *elm_gengrid_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8600
8601    /**
8602     * Get the @b next item in a gengrid widget's internal list of items,
8603     * given a handle to one of those items.
8604     *
8605     * @param item The gengrid item to fetch next from
8606     * @return The item after @p item, or @c NULL if there's none (and
8607     * on errors)
8608     *
8609     * This returns the item placed after the @p item, on the container
8610     * gengrid.
8611     *
8612     * @see elm_gengrid_item_prev_get()
8613     *
8614     * @ingroup Gengrid
8615     */
8616    EAPI Elm_Gengrid_Item  *elm_gengrid_item_next_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8617
8618    /**
8619     * Get the @b previous item in a gengrid widget's internal list of items,
8620     * given a handle to one of those items.
8621     *
8622     * @param item The gengrid item to fetch previous from
8623     * @return The item before @p item, or @c NULL if there's none (and
8624     * on errors)
8625     *
8626     * This returns the item placed before the @p item, on the container
8627     * gengrid.
8628     *
8629     * @see elm_gengrid_item_next_get()
8630     *
8631     * @ingroup Gengrid
8632     */
8633    EAPI Elm_Gengrid_Item  *elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8634
8635    /**
8636     * Get the gengrid object's handle which contains a given gengrid
8637     * item
8638     *
8639     * @param item The item to fetch the container from
8640     * @return The gengrid (parent) object
8641     *
8642     * This returns the gengrid object itself that an item belongs to.
8643     *
8644     * @ingroup Gengrid
8645     */
8646    EAPI Evas_Object       *elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8647
8648    /**
8649     * Remove a gengrid item from the its parent, deleting it.
8650     *
8651     * @param item The item to be removed.
8652     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
8653     *
8654     * @see elm_gengrid_clear(), to remove all items in a gengrid at
8655     * once.
8656     *
8657     * @ingroup Gengrid
8658     */
8659    EAPI void               elm_gengrid_item_del(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8660
8661    /**
8662     * Update the contents of a given gengrid item
8663     *
8664     * @param item The gengrid item
8665     *
8666     * This updates an item by calling all the item class functions
8667     * again to get the icons, labels and states. Use this when the
8668     * original item data has changed and you want thta changes to be
8669     * reflected.
8670     *
8671     * @ingroup Gengrid
8672     */
8673    EAPI void               elm_gengrid_item_update(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8674    EAPI const Elm_Gengrid_Item_Class *elm_gengrid_item_item_class_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8675    EAPI void               elm_gengrid_item_item_class_set(Elm_Gengrid_Item *item, const Elm_Gengrid_Item_Class *gic) EINA_ARG_NONNULL(1, 2);
8676
8677    /**
8678     * Return the data associated to a given gengrid item
8679     *
8680     * @param item The gengrid item.
8681     * @return the data associated to this item.
8682     *
8683     * This returns the @c data value passed on the
8684     * elm_gengrid_item_append() and related item addition calls.
8685     *
8686     * @see elm_gengrid_item_append()
8687     * @see elm_gengrid_item_data_set()
8688     *
8689     * @ingroup Gengrid
8690     */
8691    EAPI void              *elm_gengrid_item_data_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8692
8693    /**
8694     * Set the data associated to a given gengrid item
8695     *
8696     * @param item The gengrid item
8697     * @param data The new data pointer to set on it
8698     *
8699     * This @b overrides the @c data value passed on the
8700     * elm_gengrid_item_append() and related item addition calls. This
8701     * function @b won't call elm_gengrid_item_update() automatically,
8702     * so you'd issue it afterwards if you want to hove the item
8703     * updated to reflect the that new data.
8704     *
8705     * @see elm_gengrid_item_data_get()
8706     *
8707     * @ingroup Gengrid
8708     */
8709    EAPI void               elm_gengrid_item_data_set(Elm_Gengrid_Item *item, const void *data) EINA_ARG_NONNULL(1);
8710
8711    /**
8712     * Get a given gengrid item's position, relative to the whole
8713     * gengrid's grid area.
8714     *
8715     * @param item The Gengrid item.
8716     * @param x Pointer to variable where to store the item's <b>row
8717     * number</b>.
8718     * @param y Pointer to variable where to store the item's <b>column
8719     * number</b>.
8720     *
8721     * This returns the "logical" position of the item whithin the
8722     * gengrid. For example, @c (0, 1) would stand for first row,
8723     * second column.
8724     *
8725     * @ingroup Gengrid
8726     */
8727    EAPI void               elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item, unsigned int *x, unsigned int *y) EINA_ARG_NONNULL(1);
8728
8729    /**
8730     * Set whether a given gengrid item is selected or not
8731     *
8732     * @param item The gengrid item
8733     * @param selected Use @c EINA_TRUE, to make it selected, @c
8734     * EINA_FALSE to make it unselected
8735     *
8736     * This sets the selected state of an item. If multi selection is
8737     * not enabled on the containing gengrid and @p selected is @c
8738     * EINA_TRUE, any other previously selected items will get
8739     * unselected in favor of this new one.
8740     *
8741     * @see elm_gengrid_item_selected_get()
8742     *
8743     * @ingroup Gengrid
8744     */
8745    EAPI void               elm_gengrid_item_selected_set(Elm_Gengrid_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
8746
8747    /**
8748     * Get whether a given gengrid item is selected or not
8749     *
8750     * @param item The gengrid item
8751     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
8752     *
8753     * @see elm_gengrid_item_selected_set() for more details
8754     *
8755     * @ingroup Gengrid
8756     */
8757    EAPI Eina_Bool          elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8758
8759    /**
8760     * Get the real Evas object created to implement the view of a
8761     * given gengrid item
8762     *
8763     * @param item The gengrid item.
8764     * @return the Evas object implementing this item's view.
8765     *
8766     * This returns the actual Evas object used to implement the
8767     * specified gengrid item's view. This may be @c NULL, as it may
8768     * not have been created or may have been deleted, at any time, by
8769     * the gengrid. <b>Do not modify this object</b> (move, resize,
8770     * show, hide, etc.), as the gengrid is controlling it. This
8771     * function is for querying, emitting custom signals or hooking
8772     * lower level callbacks for events on that object. Do not delete
8773     * this object under any circumstances.
8774     *
8775     * @see elm_gengrid_item_data_get()
8776     *
8777     * @ingroup Gengrid
8778     */
8779    EAPI const Evas_Object *elm_gengrid_item_object_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8780
8781    /**
8782     * Show the portion of a gengrid's internal grid containing a given
8783     * item, @b immediately.
8784     *
8785     * @param item The item to display
8786     *
8787     * This causes gengrid to @b redraw its viewport's contents to the
8788     * region contining the given @p item item, if it is not fully
8789     * visible.
8790     *
8791     * @see elm_gengrid_item_bring_in()
8792     *
8793     * @ingroup Gengrid
8794     */
8795    EAPI void               elm_gengrid_item_show(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8796
8797    /**
8798     * Animatedly bring in, to the visible are of a gengrid, a given
8799     * item on it.
8800     *
8801     * @param item The gengrid item to display
8802     *
8803     * This causes gengrig to jump to the given @p item item and show
8804     * it (by scrolling), if it is not fully visible. This will use
8805     * animation to do so and take a period of time to complete.
8806     *
8807     * @see elm_gengrid_item_show()
8808     *
8809     * @ingroup Gengrid
8810     */
8811    EAPI void               elm_gengrid_item_bring_in(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8812
8813    /**
8814     * Set whether a given gengrid item is disabled or not.
8815     *
8816     * @param item The gengrid item
8817     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
8818     * to enable it back.
8819     *
8820     * A disabled item cannot be selected or unselected. It will also
8821     * change its appearance, to signal the user it's disabled.
8822     *
8823     * @see elm_gengrid_item_disabled_get()
8824     *
8825     * @ingroup Gengrid
8826     */
8827    EAPI void               elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
8828
8829    /**
8830     * Get whether a given gengrid item is disabled or not.
8831     *
8832     * @param item The gengrid item
8833     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
8834     * (and on errors).
8835     *
8836     * @see elm_gengrid_item_disabled_set() for more details
8837     *
8838     * @ingroup Gengrid
8839     */
8840    EAPI Eina_Bool          elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8841
8842    /**
8843     * Set the text to be shown in a given gengrid item's tooltips.
8844     *
8845     * @param item The gengrid item
8846     * @param text The text to set in the content
8847     *
8848     * This call will setup the text to be used as tooltip to that item
8849     * (analogous to elm_object_tooltip_text_set(), but being item
8850     * tooltips with higher precedence than object tooltips). It can
8851     * have only one tooltip at a time, so any previous tooltip data
8852     * will get removed.
8853     *
8854     * @ingroup Gengrid
8855     */
8856    EAPI void               elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item, const char *text) EINA_ARG_NONNULL(1);
8857
8858    /**
8859     * Set the content to be shown in a given gengrid item's tooltips
8860     *
8861     * @param item The gengrid item.
8862     * @param func The function returning the tooltip contents.
8863     * @param data What to provide to @a func as callback data/context.
8864     * @param del_cb Called when data is not needed anymore, either when
8865     *        another callback replaces @p func, the tooltip is unset with
8866     *        elm_gengrid_item_tooltip_unset() or the owner @p item
8867     *        dies. This callback receives as its first parameter the
8868     *        given @p data, being @c event_info the item handle.
8869     *
8870     * This call will setup the tooltip's contents to @p item
8871     * (analogous to elm_object_tooltip_content_cb_set(), but being
8872     * item tooltips with higher precedence than object tooltips). It
8873     * can have only one tooltip at a time, so any previous tooltip
8874     * content will get removed. @p func (with @p data) will be called
8875     * every time Elementary needs to show the tooltip and it should
8876     * return a valid Evas object, which will be fully managed by the
8877     * tooltip system, getting deleted when the tooltip is gone.
8878     *
8879     * @ingroup Gengrid
8880     */
8881    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);
8882
8883    /**
8884     * Unset a tooltip from a given gengrid item
8885     *
8886     * @param item gengrid item to remove a previously set tooltip from.
8887     *
8888     * This call removes any tooltip set on @p item. The callback
8889     * provided as @c del_cb to
8890     * elm_gengrid_item_tooltip_content_cb_set() will be called to
8891     * notify it is not used anymore (and have resources cleaned, if
8892     * need be).
8893     *
8894     * @see elm_gengrid_item_tooltip_content_cb_set()
8895     *
8896     * @ingroup Gengrid
8897     */
8898    EAPI void               elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8899
8900    /**
8901     * Set a different @b style for a given gengrid item's tooltip.
8902     *
8903     * @param item gengrid item with tooltip set
8904     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
8905     * "default", @c "transparent", etc)
8906     *
8907     * Tooltips can have <b>alternate styles</b> to be displayed on,
8908     * which are defined by the theme set on Elementary. This function
8909     * works analogously as elm_object_tooltip_style_set(), but here
8910     * applied only to gengrid item objects. The default style for
8911     * tooltips is @c "default".
8912     *
8913     * @note before you set a style you should define a tooltip with
8914     *       elm_gengrid_item_tooltip_content_cb_set() or
8915     *       elm_gengrid_item_tooltip_text_set()
8916     *
8917     * @see elm_gengrid_item_tooltip_style_get()
8918     *
8919     * @ingroup Gengrid
8920     */
8921    EAPI void               elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
8922
8923    /**
8924     * Get the style set a given gengrid item's tooltip.
8925     *
8926     * @param item gengrid item with tooltip already set on.
8927     * @return style the theme style in use, which defaults to
8928     *         "default". If the object does not have a tooltip set,
8929     *         then @c NULL is returned.
8930     *
8931     * @see elm_gengrid_item_tooltip_style_set() for more details
8932     *
8933     * @ingroup Gengrid
8934     */
8935    EAPI const char        *elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8936    /**
8937     * @brief Disable size restrictions on an object's tooltip
8938     * @param item The tooltip's anchor object
8939     * @param disable If EINA_TRUE, size restrictions are disabled
8940     * @return EINA_FALSE on failure, EINA_TRUE on success
8941     *
8942     * This function allows a tooltip to expand beyond its parant window's canvas.
8943     * It will instead be limited only by the size of the display.
8944     */
8945    EAPI Eina_Bool          elm_gengrid_item_tooltip_size_restrict_disable(Elm_Gengrid_Item *item, Eina_Bool disable);
8946    /**
8947     * @brief Retrieve size restriction state of an object's tooltip
8948     * @param item The tooltip's anchor object
8949     * @return If EINA_TRUE, size restrictions are disabled
8950     *
8951     * This function returns whether a tooltip is allowed to expand beyond
8952     * its parant window's canvas.
8953     * It will instead be limited only by the size of the display.
8954     */
8955    EAPI Eina_Bool          elm_gengrid_item_tooltip_size_restrict_disabled_get(const Elm_Gengrid_Item *item);
8956    /**
8957     * Set the type of mouse pointer/cursor decoration to be shown,
8958     * when the mouse pointer is over the given gengrid widget item
8959     *
8960     * @param item gengrid item to customize cursor on
8961     * @param cursor the cursor type's name
8962     *
8963     * This function works analogously as elm_object_cursor_set(), but
8964     * here the cursor's changing area is restricted to the item's
8965     * area, and not the whole widget's. Note that that item cursors
8966     * have precedence over widget cursors, so that a mouse over @p
8967     * item will always show cursor @p type.
8968     *
8969     * If this function is called twice for an object, a previously set
8970     * cursor will be unset on the second call.
8971     *
8972     * @see elm_object_cursor_set()
8973     * @see elm_gengrid_item_cursor_get()
8974     * @see elm_gengrid_item_cursor_unset()
8975     *
8976     * @ingroup Gengrid
8977     */
8978    EAPI void               elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
8979
8980    /**
8981     * Get the type of mouse pointer/cursor decoration set to be shown,
8982     * when the mouse pointer is over the given gengrid widget item
8983     *
8984     * @param item gengrid item with custom cursor set
8985     * @return the cursor type's name or @c NULL, if no custom cursors
8986     * were set to @p item (and on errors)
8987     *
8988     * @see elm_object_cursor_get()
8989     * @see elm_gengrid_item_cursor_set() for more details
8990     * @see elm_gengrid_item_cursor_unset()
8991     *
8992     * @ingroup Gengrid
8993     */
8994    EAPI const char        *elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8995
8996    /**
8997     * Unset any custom mouse pointer/cursor decoration set to be
8998     * shown, when the mouse pointer is over the given gengrid widget
8999     * item, thus making it show the @b default cursor again.
9000     *
9001     * @param item a gengrid item
9002     *
9003     * Use this call to undo any custom settings on this item's cursor
9004     * decoration, bringing it back to defaults (no custom style set).
9005     *
9006     * @see elm_object_cursor_unset()
9007     * @see elm_gengrid_item_cursor_set() for more details
9008     *
9009     * @ingroup Gengrid
9010     */
9011    EAPI void               elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9012
9013    /**
9014     * Set a different @b style for a given custom cursor set for a
9015     * gengrid item.
9016     *
9017     * @param item gengrid item with custom cursor set
9018     * @param style the <b>theme style</b> to use (e.g. @c "default",
9019     * @c "transparent", etc)
9020     *
9021     * This function only makes sense when one is using custom mouse
9022     * cursor decorations <b>defined in a theme file</b> , which can
9023     * have, given a cursor name/type, <b>alternate styles</b> on
9024     * it. It works analogously as elm_object_cursor_style_set(), but
9025     * here applied only to gengrid item objects.
9026     *
9027     * @warning Before you set a cursor style you should have defined a
9028     *       custom cursor previously on the item, with
9029     *       elm_gengrid_item_cursor_set()
9030     *
9031     * @see elm_gengrid_item_cursor_engine_only_set()
9032     * @see elm_gengrid_item_cursor_style_get()
9033     *
9034     * @ingroup Gengrid
9035     */
9036    EAPI void               elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
9037
9038    /**
9039     * Get the current @b style set for a given gengrid item's custom
9040     * cursor
9041     *
9042     * @param item gengrid item with custom cursor set.
9043     * @return style the cursor style in use. If the object does not
9044     *         have a cursor set, then @c NULL is returned.
9045     *
9046     * @see elm_gengrid_item_cursor_style_set() for more details
9047     *
9048     * @ingroup Gengrid
9049     */
9050    EAPI const char        *elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9051
9052    /**
9053     * Set if the (custom) cursor for a given gengrid item should be
9054     * searched in its theme, also, or should only rely on the
9055     * rendering engine.
9056     *
9057     * @param item item with custom (custom) cursor already set on
9058     * @param engine_only Use @c EINA_TRUE to have cursors looked for
9059     * only on those provided by the rendering engine, @c EINA_FALSE to
9060     * have them searched on the widget's theme, as well.
9061     *
9062     * @note This call is of use only if you've set a custom cursor
9063     * for gengrid items, with elm_gengrid_item_cursor_set().
9064     *
9065     * @note By default, cursors will only be looked for between those
9066     * provided by the rendering engine.
9067     *
9068     * @ingroup Gengrid
9069     */
9070    EAPI void               elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
9071
9072    /**
9073     * Get if the (custom) cursor for a given gengrid item is being
9074     * searched in its theme, also, or is only relying on the rendering
9075     * engine.
9076     *
9077     * @param item a gengrid item
9078     * @return @c EINA_TRUE, if cursors are being looked for only on
9079     * those provided by the rendering engine, @c EINA_FALSE if they
9080     * are being searched on the widget's theme, as well.
9081     *
9082     * @see elm_gengrid_item_cursor_engine_only_set(), for more details
9083     *
9084     * @ingroup Gengrid
9085     */
9086    EAPI Eina_Bool          elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9087
9088    /**
9089     * Remove all items from a given gengrid widget
9090     *
9091     * @param obj The gengrid object.
9092     *
9093     * This removes (and deletes) all items in @p obj, leaving it
9094     * empty.
9095     *
9096     * @see elm_gengrid_item_del(), to remove just one item.
9097     *
9098     * @ingroup Gengrid
9099     */
9100    EAPI void               elm_gengrid_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
9101
9102    /**
9103     * Get the selected item in a given gengrid widget
9104     *
9105     * @param obj The gengrid object.
9106     * @return The selected item's handleor @c NULL, if none is
9107     * selected at the moment (and on errors)
9108     *
9109     * This returns the selected item in @p obj. If multi selection is
9110     * enabled on @p obj (@see elm_gengrid_multi_select_set()), only
9111     * the first item in the list is selected, which might not be very
9112     * useful. For that case, see elm_gengrid_selected_items_get().
9113     *
9114     * @ingroup Gengrid
9115     */
9116    EAPI Elm_Gengrid_Item  *elm_gengrid_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9117
9118    /**
9119     * Get <b>a list</b> of selected items in a given gengrid
9120     *
9121     * @param obj The gengrid object.
9122     * @return The list of selected items or @c NULL, if none is
9123     * selected at the moment (and on errors)
9124     *
9125     * This returns a list of the selected items, in the order that
9126     * they appear in the grid. This list is only valid as long as no
9127     * more items are selected or unselected (or unselected implictly
9128     * by deletion). The list contains #Elm_Gengrid_Item pointers as
9129     * data, naturally.
9130     *
9131     * @see elm_gengrid_selected_item_get()
9132     *
9133     * @ingroup Gengrid
9134     */
9135    EAPI const Eina_List   *elm_gengrid_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9136
9137    /**
9138     * @}
9139     */
9140
9141    /**
9142     * @defgroup Clock Clock
9143     *
9144     * @image html img/widget/clock/preview-00.png
9145     * @image latex img/widget/clock/preview-00.eps
9146     *
9147     * This is a @b digital clock widget. In its default theme, it has a
9148     * vintage "flipping numbers clock" appearance, which will animate
9149     * sheets of individual algarisms individually as time goes by.
9150     *
9151     * A newly created clock will fetch system's time (already
9152     * considering local time adjustments) to start with, and will tick
9153     * accondingly. It may or may not show seconds.
9154     *
9155     * Clocks have an @b edition mode. When in it, the sheets will
9156     * display extra arrow indications on the top and bottom and the
9157     * user may click on them to raise or lower the time values. After
9158     * it's told to exit edition mode, it will keep ticking with that
9159     * new time set (it keeps the difference from local time).
9160     *
9161     * Also, when under edition mode, user clicks on the cited arrows
9162     * which are @b held for some time will make the clock to flip the
9163     * sheet, thus editing the time, continuosly and automatically for
9164     * the user. The interval between sheet flips will keep growing in
9165     * time, so that it helps the user to reach a time which is distant
9166     * from the one set.
9167     *
9168     * The time display is, by default, in military mode (24h), but an
9169     * am/pm indicator may be optionally shown, too, when it will
9170     * switch to 12h.
9171     *
9172     * Smart callbacks one can register to:
9173     * - "changed" - the clock's user changed the time
9174     *
9175     * Here is an example on its usage:
9176     * @li @ref clock_example
9177     */
9178
9179    /**
9180     * @addtogroup Clock
9181     * @{
9182     */
9183
9184    /**
9185     * Identifiers for which clock digits should be editable, when a
9186     * clock widget is in edition mode. Values may be ORed together to
9187     * make a mask, naturally.
9188     *
9189     * @see elm_clock_edit_set()
9190     * @see elm_clock_digit_edit_set()
9191     */
9192    typedef enum _Elm_Clock_Digedit
9193      {
9194         ELM_CLOCK_NONE         = 0, /**< Default value. Means that all digits are editable, when in edition mode. */
9195         ELM_CLOCK_HOUR_DECIMAL = 1 << 0, /**< Decimal algarism of hours value should be editable */
9196         ELM_CLOCK_HOUR_UNIT    = 1 << 1, /**< Unit algarism of hours value should be editable */
9197         ELM_CLOCK_MIN_DECIMAL  = 1 << 2, /**< Decimal algarism of minutes value should be editable */
9198         ELM_CLOCK_MIN_UNIT     = 1 << 3, /**< Unit algarism of minutes value should be editable */
9199         ELM_CLOCK_SEC_DECIMAL  = 1 << 4, /**< Decimal algarism of seconds value should be editable */
9200         ELM_CLOCK_SEC_UNIT     = 1 << 5, /**< Unit algarism of seconds value should be editable */
9201         ELM_CLOCK_ALL          = (1 << 6) - 1 /**< All digits should be editable */
9202      } Elm_Clock_Digedit;
9203
9204    /**
9205     * Add a new clock widget to the given parent Elementary
9206     * (container) object
9207     *
9208     * @param parent The parent object
9209     * @return a new clock widget handle or @c NULL, on errors
9210     *
9211     * This function inserts a new clock widget on the canvas.
9212     *
9213     * @ingroup Clock
9214     */
9215    EAPI Evas_Object      *elm_clock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9216
9217    /**
9218     * Set a clock widget's time, programmatically
9219     *
9220     * @param obj The clock widget object
9221     * @param hrs The hours to set
9222     * @param min The minutes to set
9223     * @param sec The secondes to set
9224     *
9225     * This function updates the time that is showed by the clock
9226     * widget.
9227     *
9228     *  Values @b must be set within the following ranges:
9229     * - 0 - 23, for hours
9230     * - 0 - 59, for minutes
9231     * - 0 - 59, for seconds,
9232     *
9233     * even if the clock is not in "military" mode.
9234     *
9235     * @warning The behavior for values set out of those ranges is @b
9236     * indefined.
9237     *
9238     * @ingroup Clock
9239     */
9240    EAPI void              elm_clock_time_set(Evas_Object *obj, int hrs, int min, int sec) EINA_ARG_NONNULL(1);
9241
9242    /**
9243     * Get a clock widget's time values
9244     *
9245     * @param obj The clock object
9246     * @param[out] hrs Pointer to the variable to get the hours value
9247     * @param[out] min Pointer to the variable to get the minutes value
9248     * @param[out] sec Pointer to the variable to get the seconds value
9249     *
9250     * This function gets the time set for @p obj, returning
9251     * it on the variables passed as the arguments to function
9252     *
9253     * @note Use @c NULL pointers on the time values you're not
9254     * interested in: they'll be ignored by the function.
9255     *
9256     * @ingroup Clock
9257     */
9258    EAPI void              elm_clock_time_get(const Evas_Object *obj, int *hrs, int *min, int *sec) EINA_ARG_NONNULL(1);
9259
9260    /**
9261     * Set whether a given clock widget is under <b>edition mode</b> or
9262     * under (default) displaying-only mode.
9263     *
9264     * @param obj The clock object
9265     * @param edit @c EINA_TRUE to put it in edition, @c EINA_FALSE to
9266     * put it back to "displaying only" mode
9267     *
9268     * This function makes a clock's time to be editable or not <b>by
9269     * user interaction</b>. When in edition mode, clocks @b stop
9270     * ticking, until one brings them back to canonical mode. The
9271     * elm_clock_digit_edit_set() function will influence which digits
9272     * of the clock will be editable. By default, all of them will be
9273     * (#ELM_CLOCK_NONE).
9274     *
9275     * @note am/pm sheets, if being shown, will @b always be editable
9276     * under edition mode.
9277     *
9278     * @see elm_clock_edit_get()
9279     *
9280     * @ingroup Clock
9281     */
9282    EAPI void              elm_clock_edit_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
9283
9284    /**
9285     * Retrieve whether a given clock widget is under <b>edition
9286     * mode</b> or under (default) displaying-only mode.
9287     *
9288     * @param obj The clock object
9289     * @param edit @c EINA_TRUE, if it's in edition mode, @c EINA_FALSE
9290     * otherwise
9291     *
9292     * This function retrieves whether the clock's time can be edited
9293     * or not by user interaction.
9294     *
9295     * @see elm_clock_edit_set() for more details
9296     *
9297     * @ingroup Clock
9298     */
9299    EAPI Eina_Bool         elm_clock_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9300
9301    /**
9302     * Set what digits of the given clock widget should be editable
9303     * when in edition mode.
9304     *
9305     * @param obj The clock object
9306     * @param digedit Bit mask indicating the digits to be editable
9307     * (values in #Elm_Clock_Digedit).
9308     *
9309     * If the @p digedit param is #ELM_CLOCK_NONE, editing will be
9310     * disabled on @p obj (same effect as elm_clock_edit_set(), with @c
9311     * EINA_FALSE).
9312     *
9313     * @see elm_clock_digit_edit_get()
9314     *
9315     * @ingroup Clock
9316     */
9317    EAPI void              elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Digedit digedit) EINA_ARG_NONNULL(1);
9318
9319    /**
9320     * Retrieve what digits of the given clock widget should be
9321     * editable when in edition mode.
9322     *
9323     * @param obj The clock object
9324     * @return Bit mask indicating the digits to be editable
9325     * (values in #Elm_Clock_Digedit).
9326     *
9327     * @see elm_clock_digit_edit_set() for more details
9328     *
9329     * @ingroup Clock
9330     */
9331    EAPI Elm_Clock_Digedit elm_clock_digit_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9332
9333    /**
9334     * Set if the given clock widget must show hours in military or
9335     * am/pm mode
9336     *
9337     * @param obj The clock object
9338     * @param am_pm @c EINA_TRUE to put it in am/pm mode, @c EINA_FALSE
9339     * to military mode
9340     *
9341     * This function sets if the clock must show hours in military or
9342     * am/pm mode. In some countries like Brazil the military mode
9343     * (00-24h-format) is used, in opposition to the USA, where the
9344     * am/pm mode is more commonly used.
9345     *
9346     * @see elm_clock_show_am_pm_get()
9347     *
9348     * @ingroup Clock
9349     */
9350    EAPI void              elm_clock_show_am_pm_set(Evas_Object *obj, Eina_Bool am_pm) EINA_ARG_NONNULL(1);
9351
9352    /**
9353     * Get if the given clock widget shows hours in military or am/pm
9354     * mode
9355     *
9356     * @param obj The clock object
9357     * @return @c EINA_TRUE, if in am/pm mode, @c EINA_FALSE if in
9358     * military
9359     *
9360     * This function gets if the clock shows hours in military or am/pm
9361     * mode.
9362     *
9363     * @see elm_clock_show_am_pm_set() for more details
9364     *
9365     * @ingroup Clock
9366     */
9367    EAPI Eina_Bool         elm_clock_show_am_pm_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9368
9369    /**
9370     * Set if the given clock widget must show time with seconds or not
9371     *
9372     * @param obj The clock object
9373     * @param seconds @c EINA_TRUE to show seconds, @c EINA_FALSE otherwise
9374     *
9375     * This function sets if the given clock must show or not elapsed
9376     * seconds. By default, they are @b not shown.
9377     *
9378     * @see elm_clock_show_seconds_get()
9379     *
9380     * @ingroup Clock
9381     */
9382    EAPI void              elm_clock_show_seconds_set(Evas_Object *obj, Eina_Bool seconds) EINA_ARG_NONNULL(1);
9383
9384    /**
9385     * Get whether the given clock widget is showing time with seconds
9386     * or not
9387     *
9388     * @param obj The clock object
9389     * @return @c EINA_TRUE if it's showing seconds, @c EINA_FALSE otherwise
9390     *
9391     * This function gets whether @p obj is showing or not the elapsed
9392     * seconds.
9393     *
9394     * @see elm_clock_show_seconds_set()
9395     *
9396     * @ingroup Clock
9397     */
9398    EAPI Eina_Bool         elm_clock_show_seconds_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9399
9400    /**
9401     * Set the interval on time updates for an user mouse button hold
9402     * on clock widgets' time edition.
9403     *
9404     * @param obj The clock object
9405     * @param interval The (first) interval value in seconds
9406     *
9407     * This interval value is @b decreased while the user holds the
9408     * mouse pointer either incrementing or decrementing a given the
9409     * clock digit's value.
9410     *
9411     * This helps the user to get to a given time distant from the
9412     * current one easier/faster, as it will start to flip quicker and
9413     * quicker on mouse button holds.
9414     *
9415     * The calculation for the next flip interval value, starting from
9416     * the one set with this call, is the previous interval divided by
9417     * 1.05, so it decreases a little bit.
9418     *
9419     * The default starting interval value for automatic flips is
9420     * @b 0.85 seconds.
9421     *
9422     * @see elm_clock_interval_get()
9423     *
9424     * @ingroup Clock
9425     */
9426    EAPI void              elm_clock_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
9427
9428    /**
9429     * Get the interval on time updates for an user mouse button hold
9430     * on clock widgets' time edition.
9431     *
9432     * @param obj The clock object
9433     * @return The (first) interval value, in seconds, set on it
9434     *
9435     * @see elm_clock_interval_set() for more details
9436     *
9437     * @ingroup Clock
9438     */
9439    EAPI double            elm_clock_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9440
9441    /**
9442     * @}
9443     */
9444
9445    /**
9446     * @defgroup Layout Layout
9447     *
9448     * @image html img/widget/layout/preview-00.png
9449     * @image latex img/widget/layout/preview-00.eps width=\textwidth
9450     *
9451     * @image html img/layout-predefined.png
9452     * @image latex img/layout-predefined.eps width=\textwidth
9453     *
9454     * This is a container widget that takes a standard Edje design file and
9455     * wraps it very thinly in a widget.
9456     *
9457     * An Edje design (theme) file has a very wide range of possibilities to
9458     * describe the behavior of elements added to the Layout. Check out the Edje
9459     * documentation and the EDC reference to get more information about what can
9460     * be done with Edje.
9461     *
9462     * Just like @ref List, @ref Box, and other container widgets, any
9463     * object added to the Layout will become its child, meaning that it will be
9464     * deleted if the Layout is deleted, move if the Layout is moved, and so on.
9465     *
9466     * The Layout widget can contain as many Contents, Boxes or Tables as
9467     * described in its theme file. For instance, objects can be added to
9468     * different Tables by specifying the respective Table part names. The same
9469     * is valid for Content and Box.
9470     *
9471     * The objects added as child of the Layout will behave as described in the
9472     * part description where they were added. There are 3 possible types of
9473     * parts where a child can be added:
9474     *
9475     * @section secContent Content (SWALLOW part)
9476     *
9477     * Only one object can be added to the @c SWALLOW part (but you still can
9478     * have many @c SWALLOW parts and one object on each of them). Use the @c
9479     * elm_layout_content_* set of functions to set, retrieve and unset objects
9480     * as content of the @c SWALLOW. After being set to this part, the object
9481     * size, position, visibility, clipping and other description properties
9482     * will be totally controled by the description of the given part (inside
9483     * the Edje theme file).
9484     *
9485     * One can use @c evas_object_size_hint_* functions on the child to have some
9486     * kind of control over its behavior, but the resulting behavior will still
9487     * depend heavily on the @c SWALLOW part description.
9488     *
9489     * The Edje theme also can change the part description, based on signals or
9490     * scripts running inside the theme. This change can also be animated. All of
9491     * this will affect the child object set as content accordingly. The object
9492     * size will be changed if the part size is changed, it will animate move if
9493     * the part is moving, and so on.
9494     *
9495     * The following picture demonstrates a Layout widget with a child object
9496     * added to its @c SWALLOW:
9497     *
9498     * @image html layout_swallow.png
9499     * @image latex layout_swallow.eps width=\textwidth
9500     *
9501     * @section secBox Box (BOX part)
9502     *
9503     * An Edje @c BOX part is very similar to the Elementary @ref Box widget. It
9504     * allows one to add objects to the box and have them distributed along its
9505     * area, accordingly to the specified @a layout property (now by @a layout we
9506     * mean the chosen layouting design of the Box, not the Layout widget
9507     * itself).
9508     *
9509     * A similar effect for having a box with its position, size and other things
9510     * controled by the Layout theme would be to create an Elementary @ref Box
9511     * widget and add it as a Content in the @c SWALLOW part.
9512     *
9513     * The main difference of using the Layout Box is that its behavior, the box
9514     * properties like layouting format, padding, align, etc. will be all
9515     * controled by the theme. This means, for example, that a signal could be
9516     * sent to the Layout theme (with elm_object_signal_emit()) and the theme
9517     * handled the signal by changing the box padding, or align, or both. Using
9518     * the Elementary @ref Box widget is not necessarily harder or easier, it
9519     * just depends on the circunstances and requirements.
9520     *
9521     * The Layout Box can be used through the @c elm_layout_box_* set of
9522     * functions.
9523     *
9524     * The following picture demonstrates a Layout widget with many child objects
9525     * added to its @c BOX part:
9526     *
9527     * @image html layout_box.png
9528     * @image latex layout_box.eps width=\textwidth
9529     *
9530     * @section secTable Table (TABLE part)
9531     *
9532     * Just like the @ref secBox, the Layout Table is very similar to the
9533     * Elementary @ref Table widget. It allows one to add objects to the Table
9534     * specifying the row and column where the object should be added, and any
9535     * column or row span if necessary.
9536     *
9537     * Again, we could have this design by adding a @ref Table widget to the @c
9538     * SWALLOW part using elm_layout_content_set(). The same difference happens
9539     * here when choosing to use the Layout Table (a @c TABLE part) instead of
9540     * the @ref Table plus @c SWALLOW part. It's just a matter of convenience.
9541     *
9542     * The Layout Table can be used through the @c elm_layout_table_* set of
9543     * functions.
9544     *
9545     * The following picture demonstrates a Layout widget with many child objects
9546     * added to its @c TABLE part:
9547     *
9548     * @image html layout_table.png
9549     * @image latex layout_table.eps width=\textwidth
9550     *
9551     * @section secPredef Predefined Layouts
9552     *
9553     * Another interesting thing about the Layout widget is that it offers some
9554     * predefined themes that come with the default Elementary theme. These
9555     * themes can be set by the call elm_layout_theme_set(), and provide some
9556     * basic functionality depending on the theme used.
9557     *
9558     * Most of them already send some signals, some already provide a toolbar or
9559     * back and next buttons.
9560     *
9561     * These are available predefined theme layouts. All of them have class = @c
9562     * layout, group = @c application, and style = one of the following options:
9563     *
9564     * @li @c toolbar-content - application with toolbar and main content area
9565     * @li @c toolbar-content-back - application with toolbar and main content
9566     * area with a back button and title area
9567     * @li @c toolbar-content-back-next - application with toolbar and main
9568     * content area with a back and next buttons and title area
9569     * @li @c content-back - application with a main content area with a back
9570     * button and title area
9571     * @li @c content-back-next - application with a main content area with a
9572     * back and next buttons and title area
9573     * @li @c toolbar-vbox - application with toolbar and main content area as a
9574     * vertical box
9575     * @li @c toolbar-table - application with toolbar and main content area as a
9576     * table
9577     *
9578     * @section secExamples Examples
9579     *
9580     * Some examples of the Layout widget can be found here:
9581     * @li @ref layout_example_01
9582     * @li @ref layout_example_02
9583     * @li @ref layout_example_03
9584     * @li @ref layout_example_edc
9585     *
9586     */
9587
9588    /**
9589     * Add a new layout to the parent
9590     *
9591     * @param parent The parent object
9592     * @return The new object or NULL if it cannot be created
9593     *
9594     * @see elm_layout_file_set()
9595     * @see elm_layout_theme_set()
9596     *
9597     * @ingroup Layout
9598     */
9599    EAPI Evas_Object       *elm_layout_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9600    /**
9601     * Set the file that will be used as layout
9602     *
9603     * @param obj The layout object
9604     * @param file The path to file (edj) that will be used as layout
9605     * @param group The group that the layout belongs in edje file
9606     *
9607     * @return (1 = success, 0 = error)
9608     *
9609     * @ingroup Layout
9610     */
9611    EAPI Eina_Bool          elm_layout_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
9612    /**
9613     * Set the edje group from the elementary theme that will be used as layout
9614     *
9615     * @param obj The layout object
9616     * @param clas the clas of the group
9617     * @param group the group
9618     * @param style the style to used
9619     *
9620     * @return (1 = success, 0 = error)
9621     *
9622     * @ingroup Layout
9623     */
9624    EAPI Eina_Bool          elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, const char *style) EINA_ARG_NONNULL(1);
9625    /**
9626     * Set the layout content.
9627     *
9628     * @param obj The layout object
9629     * @param swallow The swallow part name in the edje file
9630     * @param content The child that will be added in this layout object
9631     *
9632     * Once the content object is set, a previously set one will be deleted.
9633     * If you want to keep that old content object, use the
9634     * elm_layout_content_unset() function.
9635     *
9636     * @note In an Edje theme, the part used as a content container is called @c
9637     * SWALLOW. This is why the parameter name is called @p swallow, but it is
9638     * expected to be a part name just like the second parameter of
9639     * elm_layout_box_append().
9640     *
9641     * @see elm_layout_box_append()
9642     * @see elm_layout_content_get()
9643     * @see elm_layout_content_unset()
9644     * @see @ref secBox
9645     *
9646     * @ingroup Layout
9647     */
9648    EAPI void               elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
9649    /**
9650     * Get the child object in the given content part.
9651     *
9652     * @param obj The layout object
9653     * @param swallow The SWALLOW part to get its content
9654     *
9655     * @return The swallowed object or NULL if none or an error occurred
9656     *
9657     * @see elm_layout_content_set()
9658     *
9659     * @ingroup Layout
9660     */
9661    EAPI Evas_Object       *elm_layout_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
9662    /**
9663     * Unset the layout content.
9664     *
9665     * @param obj The layout object
9666     * @param swallow The swallow part name in the edje file
9667     * @return The content that was being used
9668     *
9669     * Unparent and return the content object which was set for this part.
9670     *
9671     * @see elm_layout_content_set()
9672     *
9673     * @ingroup Layout
9674     */
9675     EAPI Evas_Object       *elm_layout_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
9676    /**
9677     * Set the text of the given part
9678     *
9679     * @param obj The layout object
9680     * @param part The TEXT part where to set the text
9681     * @param text The text to set
9682     *
9683     * @ingroup Layout
9684     * @deprecated use elm_object_text_* instead.
9685     */
9686    EINA_DEPRECATED EAPI void               elm_layout_text_set(Evas_Object *obj, const char *part, const char *text) EINA_ARG_NONNULL(1);
9687    /**
9688     * Get the text set in the given part
9689     *
9690     * @param obj The layout object
9691     * @param part The TEXT part to retrieve the text off
9692     *
9693     * @return The text set in @p part
9694     *
9695     * @ingroup Layout
9696     * @deprecated use elm_object_text_* instead.
9697     */
9698    EINA_DEPRECATED EAPI const char        *elm_layout_text_get(const Evas_Object *obj, const char *part) EINA_ARG_NONNULL(1);
9699    /**
9700     * Append child to layout box part.
9701     *
9702     * @param obj the layout object
9703     * @param part the box part to which the object will be appended.
9704     * @param child the child object to append to box.
9705     *
9706     * Once the object is appended, it will become child of the layout. Its
9707     * lifetime will be bound to the layout, whenever the layout dies the child
9708     * will be deleted automatically. One should use elm_layout_box_remove() to
9709     * make this layout forget about the object.
9710     *
9711     * @see elm_layout_box_prepend()
9712     * @see elm_layout_box_insert_before()
9713     * @see elm_layout_box_insert_at()
9714     * @see elm_layout_box_remove()
9715     *
9716     * @ingroup Layout
9717     */
9718    EAPI void               elm_layout_box_append(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
9719    /**
9720     * Prepend child to layout box part.
9721     *
9722     * @param obj the layout object
9723     * @param part the box part to prepend.
9724     * @param child the child object to prepend to box.
9725     *
9726     * Once the object is prepended, it will become child of the layout. Its
9727     * lifetime will be bound to the layout, whenever the layout dies the child
9728     * will be deleted automatically. One should use elm_layout_box_remove() to
9729     * make this layout forget about the object.
9730     *
9731     * @see elm_layout_box_append()
9732     * @see elm_layout_box_insert_before()
9733     * @see elm_layout_box_insert_at()
9734     * @see elm_layout_box_remove()
9735     *
9736     * @ingroup Layout
9737     */
9738    EAPI void               elm_layout_box_prepend(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
9739    /**
9740     * Insert child to layout box part before a reference object.
9741     *
9742     * @param obj the layout object
9743     * @param part the box part to insert.
9744     * @param child the child object to insert into box.
9745     * @param reference another reference object to insert before in box.
9746     *
9747     * Once the object is inserted, it will become child of the layout. Its
9748     * lifetime will be bound to the layout, whenever the layout dies the child
9749     * will be deleted automatically. One should use elm_layout_box_remove() to
9750     * make this layout forget about the object.
9751     *
9752     * @see elm_layout_box_append()
9753     * @see elm_layout_box_prepend()
9754     * @see elm_layout_box_insert_before()
9755     * @see elm_layout_box_remove()
9756     *
9757     * @ingroup Layout
9758     */
9759    EAPI void               elm_layout_box_insert_before(Evas_Object *obj, const char *part, Evas_Object *child, const Evas_Object *reference) EINA_ARG_NONNULL(1);
9760    /**
9761     * Insert child to layout box part at a given position.
9762     *
9763     * @param obj the layout object
9764     * @param part the box part to insert.
9765     * @param child the child object to insert into box.
9766     * @param pos the numeric position >=0 to insert the child.
9767     *
9768     * Once the object is inserted, it will become child of the layout. Its
9769     * lifetime will be bound to the layout, whenever the layout dies the child
9770     * will be deleted automatically. One should use elm_layout_box_remove() to
9771     * make this layout forget about the object.
9772     *
9773     * @see elm_layout_box_append()
9774     * @see elm_layout_box_prepend()
9775     * @see elm_layout_box_insert_before()
9776     * @see elm_layout_box_remove()
9777     *
9778     * @ingroup Layout
9779     */
9780    EAPI void               elm_layout_box_insert_at(Evas_Object *obj, const char *part, Evas_Object *child, unsigned int pos) EINA_ARG_NONNULL(1);
9781    /**
9782     * Remove a child of the given part box.
9783     *
9784     * @param obj The layout object
9785     * @param part The box part name to remove child.
9786     * @param child The object to remove from box.
9787     * @return The object that was being used, or NULL if not found.
9788     *
9789     * The object will be removed from the box part and its lifetime will
9790     * not be handled by the layout anymore. This is equivalent to
9791     * elm_layout_content_unset() for box.
9792     *
9793     * @see elm_layout_box_append()
9794     * @see elm_layout_box_remove_all()
9795     *
9796     * @ingroup Layout
9797     */
9798    EAPI Evas_Object       *elm_layout_box_remove(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1, 2, 3);
9799    /**
9800     * Remove all child of the given part box.
9801     *
9802     * @param obj The layout object
9803     * @param part The box part name to remove child.
9804     * @param clear If EINA_TRUE, then all objects will be deleted as
9805     *        well, otherwise they will just be removed and will be
9806     *        dangling on the canvas.
9807     *
9808     * The objects will be removed from the box part and their lifetime will
9809     * not be handled by the layout anymore. This is equivalent to
9810     * elm_layout_box_remove() for all box children.
9811     *
9812     * @see elm_layout_box_append()
9813     * @see elm_layout_box_remove()
9814     *
9815     * @ingroup Layout
9816     */
9817    EAPI void               elm_layout_box_remove_all(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
9818    /**
9819     * Insert child to layout table part.
9820     *
9821     * @param obj the layout object
9822     * @param part the box part to pack child.
9823     * @param child_obj the child object to pack into table.
9824     * @param col the column to which the child should be added. (>= 0)
9825     * @param row the row to which the child should be added. (>= 0)
9826     * @param colspan how many columns should be used to store this object. (>=
9827     *        1)
9828     * @param rowspan how many rows should be used to store this object. (>= 1)
9829     *
9830     * Once the object is inserted, it will become child of the table. Its
9831     * lifetime will be bound to the layout, and whenever the layout dies the
9832     * child will be deleted automatically. One should use
9833     * elm_layout_table_remove() to make this layout forget about the object.
9834     *
9835     * If @p colspan or @p rowspan are bigger than 1, that object will occupy
9836     * more space than a single cell. For instance, the following code:
9837     * @code
9838     * elm_layout_table_pack(layout, "table_part", child, 0, 1, 3, 1);
9839     * @endcode
9840     *
9841     * Would result in an object being added like the following picture:
9842     *
9843     * @image html layout_colspan.png
9844     * @image latex layout_colspan.eps width=\textwidth
9845     *
9846     * @see elm_layout_table_unpack()
9847     * @see elm_layout_table_clear()
9848     *
9849     * @ingroup Layout
9850     */
9851    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);
9852    /**
9853     * Unpack (remove) a child of the given part table.
9854     *
9855     * @param obj The layout object
9856     * @param part The table part name to remove child.
9857     * @param child_obj The object to remove from table.
9858     * @return The object that was being used, or NULL if not found.
9859     *
9860     * The object will be unpacked from the table part and its lifetime
9861     * will not be handled by the layout anymore. This is equivalent to
9862     * elm_layout_content_unset() for table.
9863     *
9864     * @see elm_layout_table_pack()
9865     * @see elm_layout_table_clear()
9866     *
9867     * @ingroup Layout
9868     */
9869    EAPI Evas_Object       *elm_layout_table_unpack(Evas_Object *obj, const char *part, Evas_Object *child_obj) EINA_ARG_NONNULL(1, 2, 3);
9870    /**
9871     * Remove all child of the given part table.
9872     *
9873     * @param obj The layout object
9874     * @param part The table part name to remove child.
9875     * @param clear If EINA_TRUE, then all objects will be deleted as
9876     *        well, otherwise they will just be removed and will be
9877     *        dangling on the canvas.
9878     *
9879     * The objects will be removed from the table part and their lifetime will
9880     * not be handled by the layout anymore. This is equivalent to
9881     * elm_layout_table_unpack() for all table children.
9882     *
9883     * @see elm_layout_table_pack()
9884     * @see elm_layout_table_unpack()
9885     *
9886     * @ingroup Layout
9887     */
9888    EAPI void               elm_layout_table_clear(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
9889    /**
9890     * Get the edje layout
9891     *
9892     * @param obj The layout object
9893     *
9894     * @return A Evas_Object with the edje layout settings loaded
9895     * with function elm_layout_file_set
9896     *
9897     * This returns the edje object. It is not expected to be used to then
9898     * swallow objects via edje_object_part_swallow() for example. Use
9899     * elm_layout_content_set() instead so child object handling and sizing is
9900     * done properly.
9901     *
9902     * @note This function should only be used if you really need to call some
9903     * low level Edje function on this edje object. All the common stuff (setting
9904     * text, emitting signals, hooking callbacks to signals, etc.) can be done
9905     * with proper elementary functions.
9906     *
9907     * @see elm_object_signal_callback_add()
9908     * @see elm_object_signal_emit()
9909     * @see elm_object_text_part_set()
9910     * @see elm_layout_content_set()
9911     * @see elm_layout_box_append()
9912     * @see elm_layout_table_pack()
9913     * @see elm_layout_data_get()
9914     *
9915     * @ingroup Layout
9916     */
9917    EAPI Evas_Object       *elm_layout_edje_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9918    /**
9919     * Get the edje data from the given layout
9920     *
9921     * @param obj The layout object
9922     * @param key The data key
9923     *
9924     * @return The edje data string
9925     *
9926     * This function fetches data specified inside the edje theme of this layout.
9927     * This function return NULL if data is not found.
9928     *
9929     * In EDC this comes from a data block within the group block that @p
9930     * obj was loaded from. E.g.
9931     *
9932     * @code
9933     * collections {
9934     *   group {
9935     *     name: "a_group";
9936     *     data {
9937     *       item: "key1" "value1";
9938     *       item: "key2" "value2";
9939     *     }
9940     *   }
9941     * }
9942     * @endcode
9943     *
9944     * @ingroup Layout
9945     */
9946    EAPI const char        *elm_layout_data_get(const Evas_Object *obj, const char *key) EINA_ARG_NONNULL(1, 2);
9947    /**
9948     * Eval sizing
9949     *
9950     * @param obj The layout object
9951     *
9952     * Manually forces a sizing re-evaluation. This is useful when the minimum
9953     * size required by the edje theme of this layout has changed. The change on
9954     * the minimum size required by the edje theme is not immediately reported to
9955     * the elementary layout, so one needs to call this function in order to tell
9956     * the widget (layout) that it needs to reevaluate its own size.
9957     *
9958     * The minimum size of the theme is calculated based on minimum size of
9959     * parts, the size of elements inside containers like box and table, etc. All
9960     * of this can change due to state changes, and that's when this function
9961     * should be called.
9962     *
9963     * Also note that a standard signal of "size,eval" "elm" emitted from the
9964     * edje object will cause this to happen too.
9965     *
9966     * @ingroup Layout
9967     */
9968    EAPI void               elm_layout_sizing_eval(Evas_Object *obj) EINA_ARG_NONNULL(1);
9969
9970    /**
9971     * Sets a specific cursor for an edje part.
9972     *
9973     * @param obj The layout object.
9974     * @param part_name a part from loaded edje group.
9975     * @param cursor cursor name to use, see Elementary_Cursor.h
9976     *
9977     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
9978     *         part not exists or it has "mouse_events: 0".
9979     *
9980     * @ingroup Layout
9981     */
9982    EAPI Eina_Bool          elm_layout_part_cursor_set(Evas_Object *obj, const char *part_name, const char *cursor) EINA_ARG_NONNULL(1, 2);
9983
9984    /**
9985     * Get the cursor to be shown when mouse is over an edje part
9986     *
9987     * @param obj The layout object.
9988     * @param part_name a part from loaded edje group.
9989     * @return the cursor name.
9990     *
9991     * @ingroup Layout
9992     */
9993    EAPI const char        *elm_layout_part_cursor_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
9994
9995    /**
9996     * Unsets a cursor previously set with elm_layout_part_cursor_set().
9997     *
9998     * @param obj The layout object.
9999     * @param part_name a part from loaded edje group, that had a cursor set
10000     *        with elm_layout_part_cursor_set().
10001     *
10002     * @ingroup Layout
10003     */
10004    EAPI void               elm_layout_part_cursor_unset(Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10005
10006    /**
10007     * Sets a specific cursor style for an edje part.
10008     *
10009     * @param obj The layout object.
10010     * @param part_name a part from loaded edje group.
10011     * @param style the theme style to use (default, transparent, ...)
10012     *
10013     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10014     *         part not exists or it did not had a cursor set.
10015     *
10016     * @ingroup Layout
10017     */
10018    EAPI Eina_Bool          elm_layout_part_cursor_style_set(Evas_Object *obj, const char *part_name, const char *style) EINA_ARG_NONNULL(1, 2);
10019
10020    /**
10021     * Gets a specific cursor style for an edje part.
10022     *
10023     * @param obj The layout object.
10024     * @param part_name a part from loaded edje group.
10025     *
10026     * @return the theme style in use, defaults to "default". If the
10027     *         object does not have a cursor set, then NULL is returned.
10028     *
10029     * @ingroup Layout
10030     */
10031    EAPI const char        *elm_layout_part_cursor_style_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10032
10033    /**
10034     * Sets if the cursor set should be searched on the theme or should use
10035     * the provided by the engine, only.
10036     *
10037     * @note before you set if should look on theme you should define a
10038     * cursor with elm_layout_part_cursor_set(). By default it will only
10039     * look for cursors provided by the engine.
10040     *
10041     * @param obj The layout object.
10042     * @param part_name a part from loaded edje group.
10043     * @param engine_only if cursors should be just provided by the engine
10044     *        or should also search on widget's theme as well
10045     *
10046     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10047     *         part not exists or it did not had a cursor set.
10048     *
10049     * @ingroup Layout
10050     */
10051    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);
10052
10053    /**
10054     * Gets a specific cursor engine_only for an edje part.
10055     *
10056     * @param obj The layout object.
10057     * @param part_name a part from loaded edje group.
10058     *
10059     * @return whenever the cursor is just provided by engine or also from theme.
10060     *
10061     * @ingroup Layout
10062     */
10063    EAPI Eina_Bool          elm_layout_part_cursor_engine_only_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10064
10065 /**
10066  * @def elm_layout_icon_set
10067  * Convienience macro to set the icon object in a layout that follows the
10068  * Elementary naming convention for its parts.
10069  *
10070  * @ingroup Layout
10071  */
10072 #define elm_layout_icon_set(_ly, _obj) \
10073   do { \
10074     const char *sig; \
10075     elm_layout_content_set((_ly), "elm.swallow.icon", (_obj)); \
10076     if ((_obj)) sig = "elm,state,icon,visible"; \
10077     else sig = "elm,state,icon,hidden"; \
10078     elm_object_signal_emit((_ly), sig, "elm"); \
10079   } while (0)
10080
10081 /**
10082  * @def elm_layout_icon_get
10083  * Convienience macro to get the icon object from a layout that follows the
10084  * Elementary naming convention for its parts.
10085  *
10086  * @ingroup Layout
10087  */
10088 #define elm_layout_icon_get(_ly) \
10089   elm_layout_content_get((_ly), "elm.swallow.icon")
10090
10091 /**
10092  * @def elm_layout_end_set
10093  * Convienience macro to set the end object in a layout that follows the
10094  * Elementary naming convention for its parts.
10095  *
10096  * @ingroup Layout
10097  */
10098 #define elm_layout_end_set(_ly, _obj) \
10099   do { \
10100     const char *sig; \
10101     elm_layout_content_set((_ly), "elm.swallow.end", (_obj)); \
10102     if ((_obj)) sig = "elm,state,end,visible"; \
10103     else sig = "elm,state,end,hidden"; \
10104     elm_object_signal_emit((_ly), sig, "elm"); \
10105   } while (0)
10106
10107 /**
10108  * @def elm_layout_end_get
10109  * Convienience macro to get the end object in a layout that follows the
10110  * Elementary naming convention for its parts.
10111  *
10112  * @ingroup Layout
10113  */
10114 #define elm_layout_end_get(_ly) \
10115   elm_layout_content_get((_ly), "elm.swallow.end")
10116
10117 /**
10118  * @def elm_layout_label_set
10119  * Convienience macro to set the label in a layout that follows the
10120  * Elementary naming convention for its parts.
10121  *
10122  * @ingroup Layout
10123  * @deprecated use elm_object_text_* instead.
10124  */
10125 #define elm_layout_label_set(_ly, _txt) \
10126   elm_layout_text_set((_ly), "elm.text", (_txt))
10127
10128 /**
10129  * @def elm_layout_label_get
10130  * Convienience macro to get the label in a layout that follows the
10131  * Elementary naming convention for its parts.
10132  *
10133  * @ingroup Layout
10134  * @deprecated use elm_object_text_* instead.
10135  */
10136 #define elm_layout_label_get(_ly) \
10137   elm_layout_text_get((_ly), "elm.text")
10138
10139    /* smart callbacks called:
10140     * "theme,changed" - when elm theme is changed.
10141     */
10142
10143    /**
10144     * @defgroup Notify Notify
10145     *
10146     * @image html img/widget/notify/preview-00.png
10147     * @image latex img/widget/notify/preview-00.eps
10148     *
10149     * Display a container in a particular region of the parent(top, bottom,
10150     * etc.  A timeout can be set to automatically hide the notify. This is so
10151     * that, after an evas_object_show() on a notify object, if a timeout was set
10152     * on it, it will @b automatically get hidden after that time.
10153     *
10154     * Signals that you can add callbacks for are:
10155     * @li "timeout" - when timeout happens on notify and it's hidden
10156     * @li "block,clicked" - when a click outside of the notify happens
10157     *
10158     * @ref tutorial_notify show usage of the API.
10159     *
10160     * @{
10161     */
10162    /**
10163     * @brief Possible orient values for notify.
10164     *
10165     * This values should be used in conjunction to elm_notify_orient_set() to
10166     * set the position in which the notify should appear(relative to its parent)
10167     * and in conjunction with elm_notify_orient_get() to know where the notify
10168     * is appearing.
10169     */
10170    typedef enum _Elm_Notify_Orient
10171      {
10172         ELM_NOTIFY_ORIENT_TOP, /**< Notify should appear in the top of parent, default */
10173         ELM_NOTIFY_ORIENT_CENTER, /**< Notify should appear in the center of parent */
10174         ELM_NOTIFY_ORIENT_BOTTOM, /**< Notify should appear in the bottom of parent */
10175         ELM_NOTIFY_ORIENT_LEFT, /**< Notify should appear in the left of parent */
10176         ELM_NOTIFY_ORIENT_RIGHT, /**< Notify should appear in the right of parent */
10177         ELM_NOTIFY_ORIENT_TOP_LEFT, /**< Notify should appear in the top left of parent */
10178         ELM_NOTIFY_ORIENT_TOP_RIGHT, /**< Notify should appear in the top right of parent */
10179         ELM_NOTIFY_ORIENT_BOTTOM_LEFT, /**< Notify should appear in the bottom left of parent */
10180         ELM_NOTIFY_ORIENT_BOTTOM_RIGHT, /**< Notify should appear in the bottom right of parent */
10181         ELM_NOTIFY_ORIENT_LAST /**< Sentinel value, @b don't use */
10182      } Elm_Notify_Orient;
10183    /**
10184     * @brief Add a new notify to the parent
10185     *
10186     * @param parent The parent object
10187     * @return The new object or NULL if it cannot be created
10188     */
10189    EAPI Evas_Object      *elm_notify_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10190    /**
10191     * @brief Set the content of the notify widget
10192     *
10193     * @param obj The notify object
10194     * @param content The content will be filled in this notify object
10195     *
10196     * Once the content object is set, a previously set one will be deleted. If
10197     * you want to keep that old content object, use the
10198     * elm_notify_content_unset() function.
10199     */
10200    EAPI void              elm_notify_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
10201    /**
10202     * @brief Unset the content of the notify widget
10203     *
10204     * @param obj The notify object
10205     * @return The content that was being used
10206     *
10207     * Unparent and return the content object which was set for this widget
10208     *
10209     * @see elm_notify_content_set()
10210     */
10211    EAPI Evas_Object      *elm_notify_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
10212    /**
10213     * @brief Return the content of the notify widget
10214     *
10215     * @param obj The notify object
10216     * @return The content that is being used
10217     *
10218     * @see elm_notify_content_set()
10219     */
10220    EAPI Evas_Object      *elm_notify_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10221    /**
10222     * @brief Set the notify parent
10223     *
10224     * @param obj The notify object
10225     * @param content The new parent
10226     *
10227     * Once the parent object is set, a previously set one will be disconnected
10228     * and replaced.
10229     */
10230    EAPI void              elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10231    /**
10232     * @brief Get the notify parent
10233     *
10234     * @param obj The notify object
10235     * @return The parent
10236     *
10237     * @see elm_notify_parent_set()
10238     */
10239    EAPI Evas_Object      *elm_notify_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10240    /**
10241     * @brief Set the orientation
10242     *
10243     * @param obj The notify object
10244     * @param orient The new orientation
10245     *
10246     * Sets the position in which the notify will appear in its parent.
10247     *
10248     * @see @ref Elm_Notify_Orient for possible values.
10249     */
10250    EAPI void              elm_notify_orient_set(Evas_Object *obj, Elm_Notify_Orient orient) EINA_ARG_NONNULL(1);
10251    /**
10252     * @brief Return the orientation
10253     * @param obj The notify object
10254     * @return The orientation of the notification
10255     *
10256     * @see elm_notify_orient_set()
10257     * @see Elm_Notify_Orient
10258     */
10259    EAPI Elm_Notify_Orient elm_notify_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10260    /**
10261     * @brief Set the time interval after which the notify window is going to be
10262     * hidden.
10263     *
10264     * @param obj The notify object
10265     * @param time The timeout in seconds
10266     *
10267     * This function sets a timeout and starts the timer controlling when the
10268     * notify is hidden. Since calling evas_object_show() on a notify restarts
10269     * the timer controlling when the notify is hidden, setting this before the
10270     * notify is shown will in effect mean starting the timer when the notify is
10271     * shown.
10272     *
10273     * @note Set a value <= 0.0 to disable a running timer.
10274     *
10275     * @note If the value > 0.0 and the notify is previously visible, the
10276     * timer will be started with this value, canceling any running timer.
10277     */
10278    EAPI void              elm_notify_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
10279    /**
10280     * @brief Return the timeout value (in seconds)
10281     * @param obj the notify object
10282     *
10283     * @see elm_notify_timeout_set()
10284     */
10285    EAPI double            elm_notify_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10286    /**
10287     * @brief Sets whether events should be passed to by a click outside
10288     * its area.
10289     *
10290     * @param obj The notify object
10291     * @param repeats EINA_TRUE Events are repeats, else no
10292     *
10293     * When true if the user clicks outside the window the events will be caught
10294     * by the others widgets, else the events are blocked.
10295     *
10296     * @note The default value is EINA_TRUE.
10297     */
10298    EAPI void              elm_notify_repeat_events_set(Evas_Object *obj, Eina_Bool repeat) EINA_ARG_NONNULL(1);
10299    /**
10300     * @brief Return true if events are repeat below the notify object
10301     * @param obj the notify object
10302     *
10303     * @see elm_notify_repeat_events_set()
10304     */
10305    EAPI Eina_Bool         elm_notify_repeat_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10306    /**
10307     * @}
10308     */
10309
10310    /**
10311     * @defgroup Hover Hover
10312     *
10313     * @image html img/widget/hover/preview-00.png
10314     * @image latex img/widget/hover/preview-00.eps
10315     *
10316     * A Hover object will hover over its @p parent object at the @p target
10317     * location. Anything in the background will be given a darker coloring to
10318     * indicate that the hover object is on top (at the default theme). When the
10319     * hover is clicked it is dismissed(hidden), if the contents of the hover are
10320     * clicked that @b doesn't cause the hover to be dismissed.
10321     *
10322     * @note The hover object will take up the entire space of @p target
10323     * object.
10324     *
10325     * Elementary has the following styles for the hover widget:
10326     * @li default
10327     * @li popout
10328     * @li menu
10329     * @li hoversel_vertical
10330     *
10331     * The following are the available position for content:
10332     * @li left
10333     * @li top-left
10334     * @li top
10335     * @li top-right
10336     * @li right
10337     * @li bottom-right
10338     * @li bottom
10339     * @li bottom-left
10340     * @li middle
10341     * @li smart
10342     *
10343     * Signals that you can add callbacks for are:
10344     * @li "clicked" - the user clicked the empty space in the hover to dismiss
10345     * @li "smart,changed" - a content object placed under the "smart"
10346     *                   policy was replaced to a new slot direction.
10347     *
10348     * See @ref tutorial_hover for more information.
10349     *
10350     * @{
10351     */
10352    typedef enum _Elm_Hover_Axis
10353      {
10354         ELM_HOVER_AXIS_NONE, /**< ELM_HOVER_AXIS_NONE -- no prefered orientation */
10355         ELM_HOVER_AXIS_HORIZONTAL, /**< ELM_HOVER_AXIS_HORIZONTAL -- horizontal */
10356         ELM_HOVER_AXIS_VERTICAL, /**< ELM_HOVER_AXIS_VERTICAL -- vertical */
10357         ELM_HOVER_AXIS_BOTH /**< ELM_HOVER_AXIS_BOTH -- both */
10358      } Elm_Hover_Axis;
10359    /**
10360     * @brief Adds a hover object to @p parent
10361     *
10362     * @param parent The parent object
10363     * @return The hover object or NULL if one could not be created
10364     */
10365    EAPI Evas_Object *elm_hover_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10366    /**
10367     * @brief Sets the target object for the hover.
10368     *
10369     * @param obj The hover object
10370     * @param target The object to center the hover onto. The hover
10371     *
10372     * This function will cause the hover to be centered on the target object.
10373     */
10374    EAPI void         elm_hover_target_set(Evas_Object *obj, Evas_Object *target) EINA_ARG_NONNULL(1);
10375    /**
10376     * @brief Gets the target object for the hover.
10377     *
10378     * @param obj The hover object
10379     * @param parent The object to locate the hover over.
10380     *
10381     * @see elm_hover_target_set()
10382     */
10383    EAPI Evas_Object *elm_hover_target_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10384    /**
10385     * @brief Sets the parent object for the hover.
10386     *
10387     * @param obj The hover object
10388     * @param parent The object to locate the hover over.
10389     *
10390     * This function will cause the hover to take up the entire space that the
10391     * parent object fills.
10392     */
10393    EAPI void         elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10394    /**
10395     * @brief Gets the parent object for the hover.
10396     *
10397     * @param obj The hover object
10398     * @return The parent object to locate the hover over.
10399     *
10400     * @see elm_hover_parent_set()
10401     */
10402    EAPI Evas_Object *elm_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10403    /**
10404     * @brief Sets the content of the hover object and the direction in which it
10405     * will pop out.
10406     *
10407     * @param obj The hover object
10408     * @param swallow The direction that the object will be displayed
10409     * at. Accepted values are "left", "top-left", "top", "top-right",
10410     * "right", "bottom-right", "bottom", "bottom-left", "middle" and
10411     * "smart".
10412     * @param content The content to place at @p swallow
10413     *
10414     * Once the content object is set for a given direction, a previously
10415     * set one (on the same direction) will be deleted. If you want to
10416     * keep that old content object, use the elm_hover_content_unset()
10417     * function.
10418     *
10419     * All directions may have contents at the same time, except for
10420     * "smart". This is a special placement hint and its use case
10421     * independs of the calculations coming from
10422     * elm_hover_best_content_location_get(). Its use is for cases when
10423     * one desires only one hover content, but with a dinamic special
10424     * placement within the hover area. The content's geometry, whenever
10425     * it changes, will be used to decide on a best location not
10426     * extrapolating the hover's parent object view to show it in (still
10427     * being the hover's target determinant of its medium part -- move and
10428     * resize it to simulate finger sizes, for example). If one of the
10429     * directions other than "smart" are used, a previously content set
10430     * using it will be deleted, and vice-versa.
10431     */
10432    EAPI void         elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
10433    /**
10434     * @brief Get the content of the hover object, in a given direction.
10435     *
10436     * Return the content object which was set for this widget in the
10437     * @p swallow direction.
10438     *
10439     * @param obj The hover object
10440     * @param swallow The direction that the object was display at.
10441     * @return The content that was being used
10442     *
10443     * @see elm_hover_content_set()
10444     */
10445    EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10446    /**
10447     * @brief Unset the content of the hover object, in a given direction.
10448     *
10449     * Unparent and return the content object set at @p swallow direction.
10450     *
10451     * @param obj The hover object
10452     * @param swallow The direction that the object was display at.
10453     * @return The content that was being used.
10454     *
10455     * @see elm_hover_content_set()
10456     */
10457    EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10458    /**
10459     * @brief Returns the best swallow location for content in the hover.
10460     *
10461     * @param obj The hover object
10462     * @param pref_axis The preferred orientation axis for the hover object to use
10463     * @return The edje location to place content into the hover or @c
10464     *         NULL, on errors.
10465     *
10466     * Best is defined here as the location at which there is the most available
10467     * space.
10468     *
10469     * @p pref_axis may be one of
10470     * - @c ELM_HOVER_AXIS_NONE -- no prefered orientation
10471     * - @c ELM_HOVER_AXIS_HORIZONTAL -- horizontal
10472     * - @c ELM_HOVER_AXIS_VERTICAL -- vertical
10473     * - @c ELM_HOVER_AXIS_BOTH -- both
10474     *
10475     * If ELM_HOVER_AXIS_HORIZONTAL is choosen the returned position will
10476     * nescessarily be along the horizontal axis("left" or "right"). If
10477     * ELM_HOVER_AXIS_VERTICAL is choosen the returned position will nescessarily
10478     * be along the vertical axis("top" or "bottom"). Chossing
10479     * ELM_HOVER_AXIS_BOTH or ELM_HOVER_AXIS_NONE has the same effect and the
10480     * returned position may be in either axis.
10481     *
10482     * @see elm_hover_content_set()
10483     */
10484    EAPI const char  *elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis) EINA_ARG_NONNULL(1);
10485    /**
10486     * @}
10487     */
10488
10489    /* entry */
10490    /**
10491     * @defgroup Entry Entry
10492     *
10493     * @image html img/widget/entry/preview-00.png
10494     * @image latex img/widget/entry/preview-00.eps width=\textwidth
10495     * @image html img/widget/entry/preview-01.png
10496     * @image latex img/widget/entry/preview-01.eps width=\textwidth
10497     * @image html img/widget/entry/preview-02.png
10498     * @image latex img/widget/entry/preview-02.eps width=\textwidth
10499     * @image html img/widget/entry/preview-03.png
10500     * @image latex img/widget/entry/preview-03.eps width=\textwidth
10501     *
10502     * An entry is a convenience widget which shows a box that the user can
10503     * enter text into. Entries by default don't scroll, so they grow to
10504     * accomodate the entire text, resizing the parent window as needed. This
10505     * can be changed with the elm_entry_scrollable_set() function.
10506     *
10507     * They can also be single line or multi line (the default) and when set
10508     * to multi line mode they support text wrapping in any of the modes
10509     * indicated by #Elm_Wrap_Type.
10510     *
10511     * Other features include password mode, filtering of inserted text with
10512     * elm_entry_text_filter_append() and related functions, inline "items" and
10513     * formatted markup text.
10514     *
10515     * @section entry-markup Formatted text
10516     *
10517     * The markup tags supported by the Entry are defined by the theme, but
10518     * even when writing new themes or extensions it's a good idea to stick to
10519     * a sane default, to maintain coherency and avoid application breakages.
10520     * Currently defined by the default theme are the following tags:
10521     * @li \<br\>: Inserts a line break.
10522     * @li \<ps\>: Inserts a paragraph separator. This is preferred over line
10523     * breaks.
10524     * @li \<tab\>: Inserts a tab.
10525     * @li \<em\>...\</em\>: Emphasis. Sets the @em oblique style for the
10526     * enclosed text.
10527     * @li \<b\>...\</b\>: Sets the @b bold style for the enclosed text.
10528     * @li \<link\>...\</link\>: Underlines the enclosed text.
10529     * @li \<hilight\>...\</hilight\>: Hilights the enclosed text.
10530     *
10531     * @section entry-special Special markups
10532     *
10533     * Besides those used to format text, entries support two special markup
10534     * tags used to insert clickable portions of text or items inlined within
10535     * the text.
10536     *
10537     * @subsection entry-anchors Anchors
10538     *
10539     * Anchors are similar to HTML anchors. Text can be surrounded by \<a\> and
10540     * \</a\> tags and an event will be generated when this text is clicked,
10541     * like this:
10542     *
10543     * @code
10544     * This text is outside <a href=anc-01>but this one is an anchor</a>
10545     * @endcode
10546     *
10547     * The @c href attribute in the opening tag gives the name that will be
10548     * used to identify the anchor and it can be any valid utf8 string.
10549     *
10550     * When an anchor is clicked, an @c "anchor,clicked" signal is emitted with
10551     * an #Elm_Entry_Anchor_Info in the @c event_info parameter for the
10552     * callback function. The same applies for "anchor,in" (mouse in), "anchor,out"
10553     * (mouse out), "anchor,down" (mouse down), and "anchor,up" (mouse up) events on
10554     * an anchor.
10555     *
10556     * @subsection entry-items Items
10557     *
10558     * Inlined in the text, any other @c Evas_Object can be inserted by using
10559     * \<item\> tags this way:
10560     *
10561     * @code
10562     * <item size=16x16 vsize=full href=emoticon/haha></item>
10563     * @endcode
10564     *
10565     * Just like with anchors, the @c href identifies each item, but these need,
10566     * in addition, to indicate their size, which is done using any one of
10567     * @c size, @c absize or @c relsize attributes. These attributes take their
10568     * value in the WxH format, where W is the width and H the height of the
10569     * item.
10570     *
10571     * @li absize: Absolute pixel size for the item. Whatever value is set will
10572     * be the item's size regardless of any scale value the object may have
10573     * been set to. The final line height will be adjusted to fit larger items.
10574     * @li size: Similar to @c absize, but it's adjusted to the scale value set
10575     * for the object.
10576     * @li relsize: Size is adjusted for the item to fit within the current
10577     * line height.
10578     *
10579     * Besides their size, items are specificed a @c vsize value that affects
10580     * how their final size and position are calculated. The possible values
10581     * are:
10582     * @li ascent: Item will be placed within the line's baseline and its
10583     * ascent. That is, the height between the line where all characters are
10584     * positioned and the highest point in the line. For @c size and @c absize
10585     * items, the descent value will be added to the total line height to make
10586     * them fit. @c relsize items will be adjusted to fit within this space.
10587     * @li full: Items will be placed between the descent and ascent, or the
10588     * lowest point in the line and its highest.
10589     *
10590     * The next image shows different configurations of items and how they
10591     * are the previously mentioned options affect their sizes. In all cases,
10592     * the green line indicates the ascent, blue for the baseline and red for
10593     * the descent.
10594     *
10595     * @image html entry_item.png
10596     * @image latex entry_item.eps width=\textwidth
10597     *
10598     * And another one to show how size differs from absize. In the first one,
10599     * the scale value is set to 1.0, while the second one is using one of 2.0.
10600     *
10601     * @image html entry_item_scale.png
10602     * @image latex entry_item_scale.eps width=\textwidth
10603     *
10604     * After the size for an item is calculated, the entry will request an
10605     * object to place in its space. For this, the functions set with
10606     * elm_entry_item_provider_append() and related functions will be called
10607     * in order until one of them returns a @c non-NULL value. If no providers
10608     * are available, or all of them return @c NULL, then the entry falls back
10609     * to one of the internal defaults, provided the name matches with one of
10610     * them.
10611     *
10612     * All of the following are currently supported:
10613     *
10614     * - emoticon/angry
10615     * - emoticon/angry-shout
10616     * - emoticon/crazy-laugh
10617     * - emoticon/evil-laugh
10618     * - emoticon/evil
10619     * - emoticon/goggle-smile
10620     * - emoticon/grumpy
10621     * - emoticon/grumpy-smile
10622     * - emoticon/guilty
10623     * - emoticon/guilty-smile
10624     * - emoticon/haha
10625     * - emoticon/half-smile
10626     * - emoticon/happy-panting
10627     * - emoticon/happy
10628     * - emoticon/indifferent
10629     * - emoticon/kiss
10630     * - emoticon/knowing-grin
10631     * - emoticon/laugh
10632     * - emoticon/little-bit-sorry
10633     * - emoticon/love-lots
10634     * - emoticon/love
10635     * - emoticon/minimal-smile
10636     * - emoticon/not-happy
10637     * - emoticon/not-impressed
10638     * - emoticon/omg
10639     * - emoticon/opensmile
10640     * - emoticon/smile
10641     * - emoticon/sorry
10642     * - emoticon/squint-laugh
10643     * - emoticon/surprised
10644     * - emoticon/suspicious
10645     * - emoticon/tongue-dangling
10646     * - emoticon/tongue-poke
10647     * - emoticon/uh
10648     * - emoticon/unhappy
10649     * - emoticon/very-sorry
10650     * - emoticon/what
10651     * - emoticon/wink
10652     * - emoticon/worried
10653     * - emoticon/wtf
10654     *
10655     * Alternatively, an item may reference an image by its path, using
10656     * the URI form @c file:///path/to/an/image.png and the entry will then
10657     * use that image for the item.
10658     *
10659     * @section entry-files Loading and saving files
10660     *
10661     * Entries have convinience functions to load text from a file and save
10662     * changes back to it after a short delay. The automatic saving is enabled
10663     * by default, but can be disabled with elm_entry_autosave_set() and files
10664     * can be loaded directly as plain text or have any markup in them
10665     * recognized. See elm_entry_file_set() for more details.
10666     *
10667     * @section entry-signals Emitted signals
10668     *
10669     * This widget emits the following signals:
10670     *
10671     * @li "changed": The text within the entry was changed.
10672     * @li "changed,user": The text within the entry was changed because of user interaction.
10673     * @li "activated": The enter key was pressed on a single line entry.
10674     * @li "press": A mouse button has been pressed on the entry.
10675     * @li "longpressed": A mouse button has been pressed and held for a couple
10676     * seconds.
10677     * @li "clicked": The entry has been clicked (mouse press and release).
10678     * @li "clicked,double": The entry has been double clicked.
10679     * @li "clicked,triple": The entry has been triple clicked.
10680     * @li "focused": The entry has received focus.
10681     * @li "unfocused": The entry has lost focus.
10682     * @li "selection,paste": A paste of the clipboard contents was requested.
10683     * @li "selection,copy": A copy of the selected text into the clipboard was
10684     * requested.
10685     * @li "selection,cut": A cut of the selected text into the clipboard was
10686     * requested.
10687     * @li "selection,start": A selection has begun and no previous selection
10688     * existed.
10689     * @li "selection,changed": The current selection has changed.
10690     * @li "selection,cleared": The current selection has been cleared.
10691     * @li "cursor,changed": The cursor has changed position.
10692     * @li "anchor,clicked": An anchor has been clicked. The event_info
10693     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10694     * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
10695     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10696     * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
10697     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10698     * @li "anchor,up": Mouse button has been unpressed on an anchor. The event_info
10699     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10700     * @li "anchor,down": Mouse button has been pressed on an anchor. The event_info
10701     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10702     * @li "preedit,changed": The preedit string has changed.
10703     *
10704     * @section entry-examples
10705     *
10706     * An overview of the Entry API can be seen in @ref entry_example_01
10707     *
10708     * @{
10709     */
10710    /**
10711     * @typedef Elm_Entry_Anchor_Info
10712     *
10713     * The info sent in the callback for the "anchor,clicked" signals emitted
10714     * by entries.
10715     */
10716    typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
10717    /**
10718     * @struct _Elm_Entry_Anchor_Info
10719     *
10720     * The info sent in the callback for the "anchor,clicked" signals emitted
10721     * by entries.
10722     */
10723    struct _Elm_Entry_Anchor_Info
10724      {
10725         const char *name; /**< The name of the anchor, as stated in its href */
10726         int         button; /**< The mouse button used to click on it */
10727         Evas_Coord  x, /**< Anchor geometry, relative to canvas */
10728                     y, /**< Anchor geometry, relative to canvas */
10729                     w, /**< Anchor geometry, relative to canvas */
10730                     h; /**< Anchor geometry, relative to canvas */
10731      };
10732    /**
10733     * @typedef Elm_Entry_Filter_Cb
10734     * This callback type is used by entry filters to modify text.
10735     * @param data The data specified as the last param when adding the filter
10736     * @param entry The entry object
10737     * @param text A pointer to the location of the text being filtered. This data can be modified,
10738     * but any additional allocations must be managed by the user.
10739     * @see elm_entry_text_filter_append
10740     * @see elm_entry_text_filter_prepend
10741     */
10742    typedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text);
10743
10744    /**
10745     * This adds an entry to @p parent object.
10746     *
10747     * By default, entries are:
10748     * @li not scrolled
10749     * @li multi-line
10750     * @li word wrapped
10751     * @li autosave is enabled
10752     *
10753     * @param parent The parent object
10754     * @return The new object or NULL if it cannot be created
10755     */
10756    EAPI Evas_Object *elm_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10757    /**
10758     * Sets the entry to single line mode.
10759     *
10760     * In single line mode, entries don't ever wrap when the text reaches the
10761     * edge, and instead they keep growing horizontally. Pressing the @c Enter
10762     * key will generate an @c "activate" event instead of adding a new line.
10763     *
10764     * When @p single_line is @c EINA_FALSE, line wrapping takes effect again
10765     * and pressing enter will break the text into a different line
10766     * without generating any events.
10767     *
10768     * @param obj The entry object
10769     * @param single_line If true, the text in the entry
10770     * will be on a single line.
10771     */
10772    EAPI void         elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
10773    /**
10774     * Gets whether the entry is set to be single line.
10775     *
10776     * @param obj The entry object
10777     * @return single_line If true, the text in the entry is set to display
10778     * on a single line.
10779     *
10780     * @see elm_entry_single_line_set()
10781     */
10782    EAPI Eina_Bool    elm_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10783    /**
10784     * Sets the entry to password mode.
10785     *
10786     * In password mode, entries are implicitly single line and the display of
10787     * any text in them is replaced with asterisks (*).
10788     *
10789     * @param obj The entry object
10790     * @param password If true, password mode is enabled.
10791     */
10792    EAPI void         elm_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
10793    /**
10794     * Gets whether the entry is set to password mode.
10795     *
10796     * @param obj The entry object
10797     * @return If true, the entry is set to display all characters
10798     * as asterisks (*).
10799     *
10800     * @see elm_entry_password_set()
10801     */
10802    EAPI Eina_Bool    elm_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10803    /**
10804     * This sets the text displayed within the entry to @p entry.
10805     *
10806     * @param obj The entry object
10807     * @param entry The text to be displayed
10808     *
10809     * @deprecated Use elm_object_text_set() instead.
10810     */
10811    EAPI void         elm_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
10812    /**
10813     * This returns the text currently shown in object @p entry.
10814     * See also elm_entry_entry_set().
10815     *
10816     * @param obj The entry object
10817     * @return The currently displayed text or NULL on failure
10818     *
10819     * @deprecated Use elm_object_text_get() instead.
10820     */
10821    EAPI const char  *elm_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10822    /**
10823     * Appends @p entry to the text of the entry.
10824     *
10825     * Adds the text in @p entry to the end of any text already present in the
10826     * widget.
10827     *
10828     * The appended text is subject to any filters set for the widget.
10829     *
10830     * @param obj The entry object
10831     * @param entry The text to be displayed
10832     *
10833     * @see elm_entry_text_filter_append()
10834     */
10835    EAPI void         elm_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
10836    /**
10837     * Gets whether the entry is empty.
10838     *
10839     * Empty means no text at all. If there are any markup tags, like an item
10840     * tag for which no provider finds anything, and no text is displayed, this
10841     * function still returns EINA_FALSE.
10842     *
10843     * @param obj The entry object
10844     * @return EINA_TRUE if the entry is empty, EINA_FALSE otherwise.
10845     */
10846    EAPI Eina_Bool    elm_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10847    /**
10848     * Gets any selected text within the entry.
10849     *
10850     * If there's any selected text in the entry, this function returns it as
10851     * a string in markup format. NULL is returned if no selection exists or
10852     * if an error occurred.
10853     *
10854     * The returned value points to an internal string and should not be freed
10855     * or modified in any way. If the @p entry object is deleted or its
10856     * contents are changed, the returned pointer should be considered invalid.
10857     *
10858     * @param obj The entry object
10859     * @return The selected text within the entry or NULL on failure
10860     */
10861    EAPI const char  *elm_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10862    /**
10863     * Inserts the given text into the entry at the current cursor position.
10864     *
10865     * This inserts text at the cursor position as if it was typed
10866     * by the user (note that this also allows markup which a user
10867     * can't just "type" as it would be converted to escaped text, so this
10868     * call can be used to insert things like emoticon items or bold push/pop
10869     * tags, other font and color change tags etc.)
10870     *
10871     * If any selection exists, it will be replaced by the inserted text.
10872     *
10873     * The inserted text is subject to any filters set for the widget.
10874     *
10875     * @param obj The entry object
10876     * @param entry The text to insert
10877     *
10878     * @see elm_entry_text_filter_append()
10879     */
10880    EAPI void         elm_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
10881    /**
10882     * Set the line wrap type to use on multi-line entries.
10883     *
10884     * Sets the wrap type used by the entry to any of the specified in
10885     * #Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
10886     * line (without inserting a line break or paragraph separator) when it
10887     * reaches the far edge of the widget.
10888     *
10889     * Note that this only makes sense for multi-line entries. A widget set
10890     * to be single line will never wrap.
10891     *
10892     * @param obj The entry object
10893     * @param wrap The wrap mode to use. See #Elm_Wrap_Type for details on them
10894     */
10895    EAPI void         elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
10896    /**
10897     * Gets the wrap mode the entry was set to use.
10898     *
10899     * @param obj The entry object
10900     * @return Wrap type
10901     *
10902     * @see also elm_entry_line_wrap_set()
10903     */
10904    EAPI Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10905    /**
10906     * Sets if the entry is to be editable or not.
10907     *
10908     * By default, entries are editable and when focused, any text input by the
10909     * user will be inserted at the current cursor position. But calling this
10910     * function with @p editable as EINA_FALSE will prevent the user from
10911     * inputting text into the entry.
10912     *
10913     * The only way to change the text of a non-editable entry is to use
10914     * elm_object_text_set(), elm_entry_entry_insert() and other related
10915     * functions.
10916     *
10917     * @param obj The entry object
10918     * @param editable If EINA_TRUE, user input will be inserted in the entry,
10919     * if not, the entry is read-only and no user input is allowed.
10920     */
10921    EAPI void         elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
10922    /**
10923     * Gets whether the entry is editable or not.
10924     *
10925     * @param obj The entry object
10926     * @return If true, the entry is editable by the user.
10927     * If false, it is not editable by the user
10928     *
10929     * @see elm_entry_editable_set()
10930     */
10931    EAPI Eina_Bool    elm_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10932    /**
10933     * This drops any existing text selection within the entry.
10934     *
10935     * @param obj The entry object
10936     */
10937    EAPI void         elm_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
10938    /**
10939     * This selects all text within the entry.
10940     *
10941     * @param obj The entry object
10942     */
10943    EAPI void         elm_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
10944    /**
10945     * This moves the cursor one place to the right within the entry.
10946     *
10947     * @param obj The entry object
10948     * @return EINA_TRUE upon success, EINA_FALSE upon failure
10949     */
10950    EAPI Eina_Bool    elm_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
10951    /**
10952     * This moves the cursor one place to the left within the entry.
10953     *
10954     * @param obj The entry object
10955     * @return EINA_TRUE upon success, EINA_FALSE upon failure
10956     */
10957    EAPI Eina_Bool    elm_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
10958    /**
10959     * This moves the cursor one line up within the entry.
10960     *
10961     * @param obj The entry object
10962     * @return EINA_TRUE upon success, EINA_FALSE upon failure
10963     */
10964    EAPI Eina_Bool    elm_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
10965    /**
10966     * This moves the cursor one line down within the entry.
10967     *
10968     * @param obj The entry object
10969     * @return EINA_TRUE upon success, EINA_FALSE upon failure
10970     */
10971    EAPI Eina_Bool    elm_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
10972    /**
10973     * This moves the cursor to the beginning of the entry.
10974     *
10975     * @param obj The entry object
10976     */
10977    EAPI void         elm_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10978    /**
10979     * This moves the cursor to the end of the entry.
10980     *
10981     * @param obj The entry object
10982     */
10983    EAPI void         elm_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10984    /**
10985     * This moves the cursor to the beginning of the current line.
10986     *
10987     * @param obj The entry object
10988     */
10989    EAPI void         elm_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10990    /**
10991     * This moves the cursor to the end of the current line.
10992     *
10993     * @param obj The entry object
10994     */
10995    EAPI void         elm_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10996    /**
10997     * This begins a selection within the entry as though
10998     * the user were holding down the mouse button to make a selection.
10999     *
11000     * @param obj The entry object
11001     */
11002    EAPI void         elm_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
11003    /**
11004     * This ends a selection within the entry as though
11005     * the user had just released the mouse button while making a selection.
11006     *
11007     * @param obj The entry object
11008     */
11009    EAPI void         elm_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
11010    /**
11011     * Gets whether a format node exists at the current cursor position.
11012     *
11013     * A format node is anything that defines how the text is rendered. It can
11014     * be a visible format node, such as a line break or a paragraph separator,
11015     * or an invisible one, such as bold begin or end tag.
11016     * This function returns whether any format node exists at the current
11017     * cursor position.
11018     *
11019     * @param obj The entry object
11020     * @return EINA_TRUE if the current cursor position contains a format node,
11021     * EINA_FALSE otherwise.
11022     *
11023     * @see elm_entry_cursor_is_visible_format_get()
11024     */
11025    EAPI Eina_Bool    elm_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11026    /**
11027     * Gets if the current cursor position holds a visible format node.
11028     *
11029     * @param obj The entry object
11030     * @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
11031     * if it's an invisible one or no format exists.
11032     *
11033     * @see elm_entry_cursor_is_format_get()
11034     */
11035    EAPI Eina_Bool    elm_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11036    /**
11037     * Gets the character pointed by the cursor at its current position.
11038     *
11039     * This function returns a string with the utf8 character stored at the
11040     * current cursor position.
11041     * Only the text is returned, any format that may exist will not be part
11042     * of the return value.
11043     *
11044     * @param obj The entry object
11045     * @return The text pointed by the cursors.
11046     */
11047    EAPI const char  *elm_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11048    /**
11049     * This function returns the geometry of the cursor.
11050     *
11051     * It's useful if you want to draw something on the cursor (or where it is),
11052     * or for example in the case of scrolled entry where you want to show the
11053     * cursor.
11054     *
11055     * @param obj The entry object
11056     * @param x returned geometry
11057     * @param y returned geometry
11058     * @param w returned geometry
11059     * @param h returned geometry
11060     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11061     */
11062    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);
11063    /**
11064     * Sets the cursor position in the entry to the given value
11065     *
11066     * The value in @p pos is the index of the character position within the
11067     * contents of the string as returned by elm_entry_cursor_pos_get().
11068     *
11069     * @param obj The entry object
11070     * @param pos The position of the cursor
11071     */
11072    EAPI void         elm_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
11073    /**
11074     * Retrieves the current position of the cursor in the entry
11075     *
11076     * @param obj The entry object
11077     * @return The cursor position
11078     */
11079    EAPI int          elm_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11080    /**
11081     * This executes a "cut" action on the selected text in the entry.
11082     *
11083     * @param obj The entry object
11084     */
11085    EAPI void         elm_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
11086    /**
11087     * This executes a "copy" action on the selected text in the entry.
11088     *
11089     * @param obj The entry object
11090     */
11091    EAPI void         elm_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
11092    /**
11093     * This executes a "paste" action in the entry.
11094     *
11095     * @param obj The entry object
11096     */
11097    EAPI void         elm_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
11098    /**
11099     * This clears and frees the items in a entry's contextual (longpress)
11100     * menu.
11101     *
11102     * @param obj The entry object
11103     *
11104     * @see elm_entry_context_menu_item_add()
11105     */
11106    EAPI void         elm_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
11107    /**
11108     * This adds an item to the entry's contextual menu.
11109     *
11110     * A longpress on an entry will make the contextual menu show up, if this
11111     * hasn't been disabled with elm_entry_context_menu_disabled_set().
11112     * By default, this menu provides a few options like enabling selection mode,
11113     * which is useful on embedded devices that need to be explicit about it,
11114     * and when a selection exists it also shows the copy and cut actions.
11115     *
11116     * With this function, developers can add other options to this menu to
11117     * perform any action they deem necessary.
11118     *
11119     * @param obj The entry object
11120     * @param label The item's text label
11121     * @param icon_file The item's icon file
11122     * @param icon_type The item's icon type
11123     * @param func The callback to execute when the item is clicked
11124     * @param data The data to associate with the item for related functions
11125     */
11126    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);
11127    /**
11128     * This disables the entry's contextual (longpress) menu.
11129     *
11130     * @param obj The entry object
11131     * @param disabled If true, the menu is disabled
11132     */
11133    EAPI void         elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
11134    /**
11135     * This returns whether the entry's contextual (longpress) menu is
11136     * disabled.
11137     *
11138     * @param obj The entry object
11139     * @return If true, the menu is disabled
11140     */
11141    EAPI Eina_Bool    elm_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11142    /**
11143     * This appends a custom item provider to the list for that entry
11144     *
11145     * This appends the given callback. The list is walked from beginning to end
11146     * with each function called given the item href string in the text. If the
11147     * function returns an object handle other than NULL (it should create an
11148     * object to do this), then this object is used to replace that item. If
11149     * not the next provider is called until one provides an item object, or the
11150     * default provider in entry does.
11151     *
11152     * @param obj The entry object
11153     * @param func The function called to provide the item object
11154     * @param data The data passed to @p func
11155     *
11156     * @see @ref entry-items
11157     */
11158    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);
11159    /**
11160     * This prepends a custom item provider to the list for that entry
11161     *
11162     * This prepends the given callback. See elm_entry_item_provider_append() for
11163     * more information
11164     *
11165     * @param obj The entry object
11166     * @param func The function called to provide the item object
11167     * @param data The data passed to @p func
11168     */
11169    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);
11170    /**
11171     * This removes a custom item provider to the list for that entry
11172     *
11173     * This removes the given callback. See elm_entry_item_provider_append() for
11174     * more information
11175     *
11176     * @param obj The entry object
11177     * @param func The function called to provide the item object
11178     * @param data The data passed to @p func
11179     */
11180    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);
11181    /**
11182     * Append a filter function for text inserted in the entry
11183     *
11184     * Append the given callback to the list. This functions will be called
11185     * whenever any text is inserted into the entry, with the text to be inserted
11186     * as a parameter. The callback function is free to alter the text in any way
11187     * it wants, but it must remember to free the given pointer and update it.
11188     * If the new text is to be discarded, the function can free it and set its
11189     * text parameter to NULL. This will also prevent any following filters from
11190     * being called.
11191     *
11192     * @param obj The entry object
11193     * @param func The function to use as text filter
11194     * @param data User data to pass to @p func
11195     */
11196    EAPI void         elm_entry_text_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11197    /**
11198     * Prepend a filter function for text insdrted in the entry
11199     *
11200     * Prepend the given callback to the list. See elm_entry_text_filter_append()
11201     * for more information
11202     *
11203     * @param obj The entry object
11204     * @param func The function to use as text filter
11205     * @param data User data to pass to @p func
11206     */
11207    EAPI void         elm_entry_text_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11208    /**
11209     * Remove a filter from the list
11210     *
11211     * Removes the given callback from the filter list. See
11212     * elm_entry_text_filter_append() for more information.
11213     *
11214     * @param obj The entry object
11215     * @param func The filter function to remove
11216     * @param data The user data passed when adding the function
11217     */
11218    EAPI void         elm_entry_text_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11219    /**
11220     * This converts a markup (HTML-like) string into UTF-8.
11221     *
11222     * The returned string is a malloc'ed buffer and it should be freed when
11223     * not needed anymore.
11224     *
11225     * @param s The string (in markup) to be converted
11226     * @return The converted string (in UTF-8). It should be freed.
11227     */
11228    EAPI char        *elm_entry_markup_to_utf8(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11229    /**
11230     * This converts a UTF-8 string into markup (HTML-like).
11231     *
11232     * The returned string is a malloc'ed buffer and it should be freed when
11233     * not needed anymore.
11234     *
11235     * @param s The string (in UTF-8) to be converted
11236     * @return The converted string (in markup). It should be freed.
11237     */
11238    EAPI char        *elm_entry_utf8_to_markup(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11239    /**
11240     * This sets the file (and implicitly loads it) for the text to display and
11241     * then edit. All changes are written back to the file after a short delay if
11242     * the entry object is set to autosave (which is the default).
11243     *
11244     * If the entry had any other file set previously, any changes made to it
11245     * will be saved if the autosave feature is enabled, otherwise, the file
11246     * will be silently discarded and any non-saved changes will be lost.
11247     *
11248     * @param obj The entry object
11249     * @param file The path to the file to load and save
11250     * @param format The file format
11251     */
11252    EAPI void         elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
11253    /**
11254     * Gets the file being edited by the entry.
11255     *
11256     * This function can be used to retrieve any file set on the entry for
11257     * edition, along with the format used to load and save it.
11258     *
11259     * @param obj The entry object
11260     * @param file The path to the file to load and save
11261     * @param format The file format
11262     */
11263    EAPI void         elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
11264    /**
11265     * This function writes any changes made to the file set with
11266     * elm_entry_file_set()
11267     *
11268     * @param obj The entry object
11269     */
11270    EAPI void         elm_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
11271    /**
11272     * This sets the entry object to 'autosave' the loaded text file or not.
11273     *
11274     * @param obj The entry object
11275     * @param autosave Autosave the loaded file or not
11276     *
11277     * @see elm_entry_file_set()
11278     */
11279    EAPI void         elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
11280    /**
11281     * This gets the entry object's 'autosave' status.
11282     *
11283     * @param obj The entry object
11284     * @return Autosave the loaded file or not
11285     *
11286     * @see elm_entry_file_set()
11287     */
11288    EAPI Eina_Bool    elm_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11289    /**
11290     * Control pasting of text and images for the widget.
11291     *
11292     * Normally the entry allows both text and images to be pasted.  By setting
11293     * textonly to be true, this prevents images from being pasted.
11294     *
11295     * Note this only changes the behaviour of text.
11296     *
11297     * @param obj The entry object
11298     * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is
11299     * text+image+other.
11300     */
11301    EAPI void         elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
11302    /**
11303     * Getting elm_entry text paste/drop mode.
11304     *
11305     * In textonly mode, only text may be pasted or dropped into the widget.
11306     *
11307     * @param obj The entry object
11308     * @return If the widget only accepts text from pastes.
11309     */
11310    EAPI Eina_Bool    elm_entry_cnp_textonly_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11311    /**
11312     * Enable or disable scrolling in entry
11313     *
11314     * Normally the entry is not scrollable unless you enable it with this call.
11315     *
11316     * @param obj The entry object
11317     * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
11318     */
11319    EAPI void         elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
11320    /**
11321     * Get the scrollable state of the entry
11322     *
11323     * Normally the entry is not scrollable. This gets the scrollable state
11324     * of the entry. See elm_entry_scrollable_set() for more information.
11325     *
11326     * @param obj The entry object
11327     * @return The scrollable state
11328     */
11329    EAPI Eina_Bool    elm_entry_scrollable_get(const Evas_Object *obj);
11330    /**
11331     * This sets a widget to be displayed to the left of a scrolled entry.
11332     *
11333     * @param obj The scrolled entry object
11334     * @param icon The widget to display on the left side of the scrolled
11335     * entry.
11336     *
11337     * @note A previously set widget will be destroyed.
11338     * @note If the object being set does not have minimum size hints set,
11339     * it won't get properly displayed.
11340     *
11341     * @see elm_entry_end_set()
11342     */
11343    EAPI void         elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
11344    /**
11345     * Gets the leftmost widget of the scrolled entry. This object is
11346     * owned by the scrolled entry and should not be modified.
11347     *
11348     * @param obj The scrolled entry object
11349     * @return the left widget inside the scroller
11350     */
11351    EAPI Evas_Object *elm_entry_icon_get(const Evas_Object *obj);
11352    /**
11353     * Unset the leftmost widget of the scrolled entry, unparenting and
11354     * returning it.
11355     *
11356     * @param obj The scrolled entry object
11357     * @return the previously set icon sub-object of this entry, on
11358     * success.
11359     *
11360     * @see elm_entry_icon_set()
11361     */
11362    EAPI Evas_Object *elm_entry_icon_unset(Evas_Object *obj);
11363    /**
11364     * Sets the visibility of the left-side widget of the scrolled entry,
11365     * set by elm_entry_icon_set().
11366     *
11367     * @param obj The scrolled entry object
11368     * @param setting EINA_TRUE if the object should be displayed,
11369     * EINA_FALSE if not.
11370     */
11371    EAPI void         elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
11372    /**
11373     * This sets a widget to be displayed to the end of a scrolled entry.
11374     *
11375     * @param obj The scrolled entry object
11376     * @param end The widget to display on the right side of the scrolled
11377     * entry.
11378     *
11379     * @note A previously set widget will be destroyed.
11380     * @note If the object being set does not have minimum size hints set,
11381     * it won't get properly displayed.
11382     *
11383     * @see elm_entry_icon_set
11384     */
11385    EAPI void         elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
11386    /**
11387     * Gets the endmost widget of the scrolled entry. This object is owned
11388     * by the scrolled entry and should not be modified.
11389     *
11390     * @param obj The scrolled entry object
11391     * @return the right widget inside the scroller
11392     */
11393    EAPI Evas_Object *elm_entry_end_get(const Evas_Object *obj);
11394    /**
11395     * Unset the endmost widget of the scrolled entry, unparenting and
11396     * returning it.
11397     *
11398     * @param obj The scrolled entry object
11399     * @return the previously set icon sub-object of this entry, on
11400     * success.
11401     *
11402     * @see elm_entry_icon_set()
11403     */
11404    EAPI Evas_Object *elm_entry_end_unset(Evas_Object *obj);
11405    /**
11406     * Sets the visibility of the end widget of the scrolled entry, set by
11407     * elm_entry_end_set().
11408     *
11409     * @param obj The scrolled entry object
11410     * @param setting EINA_TRUE if the object should be displayed,
11411     * EINA_FALSE if not.
11412     */
11413    EAPI void         elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
11414    /**
11415     * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling
11416     * them).
11417     *
11418     * Setting an entry to single-line mode with elm_entry_single_line_set()
11419     * will automatically disable the display of scrollbars when the entry
11420     * moves inside its scroller.
11421     *
11422     * @param obj The scrolled entry object
11423     * @param h The horizontal scrollbar policy to apply
11424     * @param v The vertical scrollbar policy to apply
11425     */
11426    EAPI void         elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
11427    /**
11428     * This enables/disables bouncing within the entry.
11429     *
11430     * This function sets whether the entry will bounce when scrolling reaches
11431     * the end of the contained entry.
11432     *
11433     * @param obj The scrolled entry object
11434     * @param h The horizontal bounce state
11435     * @param v The vertical bounce state
11436     */
11437    EAPI void         elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
11438    /**
11439     * Get the bounce mode
11440     *
11441     * @param obj The Entry object
11442     * @param h_bounce Allow bounce horizontally
11443     * @param v_bounce Allow bounce vertically
11444     */
11445    EAPI void         elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
11446
11447    /* pre-made filters for entries */
11448    /**
11449     * @typedef Elm_Entry_Filter_Limit_Size
11450     *
11451     * Data for the elm_entry_filter_limit_size() entry filter.
11452     */
11453    typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
11454    /**
11455     * @struct _Elm_Entry_Filter_Limit_Size
11456     *
11457     * Data for the elm_entry_filter_limit_size() entry filter.
11458     */
11459    struct _Elm_Entry_Filter_Limit_Size
11460      {
11461         int max_char_count; /**< The maximum number of characters allowed. */
11462         int max_byte_count; /**< The maximum number of bytes allowed*/
11463      };
11464    /**
11465     * Filter inserted text based on user defined character and byte limits
11466     *
11467     * Add this filter to an entry to limit the characters that it will accept
11468     * based the the contents of the provided #Elm_Entry_Filter_Limit_Size.
11469     * The funtion works on the UTF-8 representation of the string, converting
11470     * it from the set markup, thus not accounting for any format in it.
11471     *
11472     * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
11473     * it as data when setting the filter. In it, it's possible to set limits
11474     * by character count or bytes (any of them is disabled if 0), and both can
11475     * be set at the same time. In that case, it first checks for characters,
11476     * then bytes.
11477     *
11478     * The function will cut the inserted text in order to allow only the first
11479     * number of characters that are still allowed. The cut is made in
11480     * characters, even when limiting by bytes, in order to always contain
11481     * valid ones and avoid half unicode characters making it in.
11482     *
11483     * This filter, like any others, does not apply when setting the entry text
11484     * directly with elm_object_text_set() (or the deprecated
11485     * elm_entry_entry_set()).
11486     */
11487    EAPI void         elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 2, 3);
11488    /**
11489     * @typedef Elm_Entry_Filter_Accept_Set
11490     *
11491     * Data for the elm_entry_filter_accept_set() entry filter.
11492     */
11493    typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
11494    /**
11495     * @struct _Elm_Entry_Filter_Accept_Set
11496     *
11497     * Data for the elm_entry_filter_accept_set() entry filter.
11498     */
11499    struct _Elm_Entry_Filter_Accept_Set
11500      {
11501         const char *accepted; /**< Set of characters accepted in the entry. */
11502         const char *rejected; /**< Set of characters rejected from the entry. */
11503      };
11504    /**
11505     * Filter inserted text based on accepted or rejected sets of characters
11506     *
11507     * Add this filter to an entry to restrict the set of accepted characters
11508     * based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
11509     * This structure contains both accepted and rejected sets, but they are
11510     * mutually exclusive.
11511     *
11512     * The @c accepted set takes preference, so if it is set, the filter will
11513     * only work based on the accepted characters, ignoring anything in the
11514     * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.
11515     *
11516     * In both cases, the function filters by matching utf8 characters to the
11517     * raw markup text, so it can be used to remove formatting tags.
11518     *
11519     * This filter, like any others, does not apply when setting the entry text
11520     * directly with elm_object_text_set() (or the deprecated
11521     * elm_entry_entry_set()).
11522     */
11523    EAPI void         elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 3);
11524    /**
11525     * Set the input panel layout of the entry
11526     *
11527     * @param obj The entry object
11528     * @param layout layout type
11529     */
11530    EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout) EINA_ARG_NONNULL(1);
11531    /**
11532     * Get the input panel layout of the entry
11533     *
11534     * @param obj The entry object
11535     * @return layout type
11536     *
11537     * @see elm_entry_input_panel_layout_set
11538     */
11539    EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
11540    /**
11541     * @}
11542     */
11543
11544    /* composite widgets - these basically put together basic widgets above
11545     * in convenient packages that do more than basic stuff */
11546
11547    /* anchorview */
11548    /**
11549     * @defgroup Anchorview Anchorview
11550     *
11551     * @image html img/widget/anchorview/preview-00.png
11552     * @image latex img/widget/anchorview/preview-00.eps
11553     *
11554     * Anchorview is for displaying text that contains markup with anchors
11555     * like <c>\<a href=1234\>something\</\></c> in it.
11556     *
11557     * Besides being styled differently, the anchorview widget provides the
11558     * necessary functionality so that clicking on these anchors brings up a
11559     * popup with user defined content such as "call", "add to contacts" or
11560     * "open web page". This popup is provided using the @ref Hover widget.
11561     *
11562     * This widget is very similar to @ref Anchorblock, so refer to that
11563     * widget for an example. The only difference Anchorview has is that the
11564     * widget is already provided with scrolling functionality, so if the
11565     * text set to it is too large to fit in the given space, it will scroll,
11566     * whereas the @ref Anchorblock widget will keep growing to ensure all the
11567     * text can be displayed.
11568     *
11569     * This widget emits the following signals:
11570     * @li "anchor,clicked": will be called when an anchor is clicked. The
11571     * @p event_info parameter on the callback will be a pointer of type
11572     * ::Elm_Entry_Anchorview_Info.
11573     *
11574     * See @ref Anchorblock for an example on how to use both of them.
11575     *
11576     * @see Anchorblock
11577     * @see Entry
11578     * @see Hover
11579     *
11580     * @{
11581     */
11582    /**
11583     * @typedef Elm_Entry_Anchorview_Info
11584     *
11585     * The info sent in the callback for "anchor,clicked" signals emitted by
11586     * the Anchorview widget.
11587     */
11588    typedef struct _Elm_Entry_Anchorview_Info Elm_Entry_Anchorview_Info;
11589    /**
11590     * @struct _Elm_Entry_Anchorview_Info
11591     *
11592     * The info sent in the callback for "anchor,clicked" signals emitted by
11593     * the Anchorview widget.
11594     */
11595    struct _Elm_Entry_Anchorview_Info
11596      {
11597         const char     *name; /**< Name of the anchor, as indicated in its href
11598                                    attribute */
11599         int             button; /**< The mouse button used to click on it */
11600         Evas_Object    *hover; /**< The hover object to use for the popup */
11601         struct {
11602              Evas_Coord    x, y, w, h;
11603         } anchor, /**< Geometry selection of text used as anchor */
11604           hover_parent; /**< Geometry of the object used as parent by the
11605                              hover */
11606         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
11607                                              for content on the left side of
11608                                              the hover. Before calling the
11609                                              callback, the widget will make the
11610                                              necessary calculations to check
11611                                              which sides are fit to be set with
11612                                              content, based on the position the
11613                                              hover is activated and its distance
11614                                              to the edges of its parent object
11615                                              */
11616         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
11617                                               the right side of the hover.
11618                                               See @ref hover_left */
11619         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
11620                                             of the hover. See @ref hover_left */
11621         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
11622                                                below the hover. See @ref
11623                                                hover_left */
11624      };
11625    /**
11626     * Add a new Anchorview object
11627     *
11628     * @param parent The parent object
11629     * @return The new object or NULL if it cannot be created
11630     */
11631    EAPI Evas_Object *elm_anchorview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11632    /**
11633     * Set the text to show in the anchorview
11634     *
11635     * Sets the text of the anchorview to @p text. This text can include markup
11636     * format tags, including <c>\<a href=anchorname\></c> to begin a segment of
11637     * text that will be specially styled and react to click events, ended with
11638     * either of \</a\> or \</\>. When clicked, the anchor will emit an
11639     * "anchor,clicked" signal that you can attach a callback to with
11640     * evas_object_smart_callback_add(). The name of the anchor given in the
11641     * event info struct will be the one set in the href attribute, in this
11642     * case, anchorname.
11643     *
11644     * Other markup can be used to style the text in different ways, but it's
11645     * up to the style defined in the theme which tags do what.
11646     * @deprecated use elm_object_text_set() instead.
11647     */
11648    EINA_DEPRECATED EAPI void         elm_anchorview_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
11649    /**
11650     * Get the markup text set for the anchorview
11651     *
11652     * Retrieves the text set on the anchorview, with markup tags included.
11653     *
11654     * @param obj The anchorview object
11655     * @return The markup text set or @c NULL if nothing was set or an error
11656     * occurred
11657     * @deprecated use elm_object_text_set() instead.
11658     */
11659    EINA_DEPRECATED EAPI const char  *elm_anchorview_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11660    /**
11661     * Set the parent of the hover popup
11662     *
11663     * Sets the parent object to use by the hover created by the anchorview
11664     * when an anchor is clicked. See @ref Hover for more details on this.
11665     * If no parent is set, the same anchorview object will be used.
11666     *
11667     * @param obj The anchorview object
11668     * @param parent The object to use as parent for the hover
11669     */
11670    EAPI void         elm_anchorview_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
11671    /**
11672     * Get the parent of the hover popup
11673     *
11674     * Get the object used as parent for the hover created by the anchorview
11675     * widget. See @ref Hover for more details on this.
11676     *
11677     * @param obj The anchorview object
11678     * @return The object used as parent for the hover, NULL if none is set.
11679     */
11680    EAPI Evas_Object *elm_anchorview_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11681    /**
11682     * Set the style that the hover should use
11683     *
11684     * When creating the popup hover, anchorview will request that it's
11685     * themed according to @p style.
11686     *
11687     * @param obj The anchorview object
11688     * @param style The style to use for the underlying hover
11689     *
11690     * @see elm_object_style_set()
11691     */
11692    EAPI void         elm_anchorview_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
11693    /**
11694     * Get the style that the hover should use
11695     *
11696     * Get the style the hover created by anchorview will use.
11697     *
11698     * @param obj The anchorview object
11699     * @return The style to use by the hover. NULL means the default is used.
11700     *
11701     * @see elm_object_style_set()
11702     */
11703    EAPI const char  *elm_anchorview_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11704    /**
11705     * Ends the hover popup in the anchorview
11706     *
11707     * When an anchor is clicked, the anchorview widget will create a hover
11708     * object to use as a popup with user provided content. This function
11709     * terminates this popup, returning the anchorview to its normal state.
11710     *
11711     * @param obj The anchorview object
11712     */
11713    EAPI void         elm_anchorview_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
11714    /**
11715     * Set bouncing behaviour when the scrolled content reaches an edge
11716     *
11717     * Tell the internal scroller object whether it should bounce or not
11718     * when it reaches the respective edges for each axis.
11719     *
11720     * @param obj The anchorview object
11721     * @param h_bounce Whether to bounce or not in the horizontal axis
11722     * @param v_bounce Whether to bounce or not in the vertical axis
11723     *
11724     * @see elm_scroller_bounce_set()
11725     */
11726    EAPI void         elm_anchorview_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
11727    /**
11728     * Get the set bouncing behaviour of the internal scroller
11729     *
11730     * Get whether the internal scroller should bounce when the edge of each
11731     * axis is reached scrolling.
11732     *
11733     * @param obj The anchorview object
11734     * @param h_bounce Pointer where to store the bounce state of the horizontal
11735     *                 axis
11736     * @param v_bounce Pointer where to store the bounce state of the vertical
11737     *                 axis
11738     *
11739     * @see elm_scroller_bounce_get()
11740     */
11741    EAPI void         elm_anchorview_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
11742    /**
11743     * Appends a custom item provider to the given anchorview
11744     *
11745     * Appends the given function to the list of items providers. This list is
11746     * called, one function at a time, with the given @p data pointer, the
11747     * anchorview object and, in the @p item parameter, the item name as
11748     * referenced in its href string. Following functions in the list will be
11749     * called in order until one of them returns something different to NULL,
11750     * which should be an Evas_Object which will be used in place of the item
11751     * element.
11752     *
11753     * Items in the markup text take the form \<item relsize=16x16 vsize=full
11754     * href=item/name\>\</item\>
11755     *
11756     * @param obj The anchorview object
11757     * @param func The function to add to the list of providers
11758     * @param data User data that will be passed to the callback function
11759     *
11760     * @see elm_entry_item_provider_append()
11761     */
11762    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);
11763    /**
11764     * Prepend a custom item provider to the given anchorview
11765     *
11766     * Like elm_anchorview_item_provider_append(), but it adds the function
11767     * @p func to the beginning of the list, instead of the end.
11768     *
11769     * @param obj The anchorview object
11770     * @param func The function to add to the list of providers
11771     * @param data User data that will be passed to the callback function
11772     */
11773    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);
11774    /**
11775     * Remove a custom item provider from the list of the given anchorview
11776     *
11777     * Removes the function and data pairing that matches @p func and @p data.
11778     * That is, unless the same function and same user data are given, the
11779     * function will not be removed from the list. This allows us to add the
11780     * same callback several times, with different @p data pointers and be
11781     * able to remove them later without conflicts.
11782     *
11783     * @param obj The anchorview object
11784     * @param func The function to remove from the list
11785     * @param data The data matching the function to remove from the list
11786     */
11787    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);
11788    /**
11789     * @}
11790     */
11791
11792    /* anchorblock */
11793    /**
11794     * @defgroup Anchorblock Anchorblock
11795     *
11796     * @image html img/widget/anchorblock/preview-00.png
11797     * @image latex img/widget/anchorblock/preview-00.eps
11798     *
11799     * Anchorblock is for displaying text that contains markup with anchors
11800     * like <c>\<a href=1234\>something\</\></c> in it.
11801     *
11802     * Besides being styled differently, the anchorblock widget provides the
11803     * necessary functionality so that clicking on these anchors brings up a
11804     * popup with user defined content such as "call", "add to contacts" or
11805     * "open web page". This popup is provided using the @ref Hover widget.
11806     *
11807     * This widget emits the following signals:
11808     * @li "anchor,clicked": will be called when an anchor is clicked. The
11809     * @p event_info parameter on the callback will be a pointer of type
11810     * ::Elm_Entry_Anchorblock_Info.
11811     *
11812     * @see Anchorview
11813     * @see Entry
11814     * @see Hover
11815     *
11816     * Since examples are usually better than plain words, we might as well
11817     * try @ref tutorial_anchorblock_example "one".
11818     */
11819    /**
11820     * @addtogroup Anchorblock
11821     * @{
11822     */
11823    /**
11824     * @typedef Elm_Entry_Anchorblock_Info
11825     *
11826     * The info sent in the callback for "anchor,clicked" signals emitted by
11827     * the Anchorblock widget.
11828     */
11829    typedef struct _Elm_Entry_Anchorblock_Info Elm_Entry_Anchorblock_Info;
11830    /**
11831     * @struct _Elm_Entry_Anchorblock_Info
11832     *
11833     * The info sent in the callback for "anchor,clicked" signals emitted by
11834     * the Anchorblock widget.
11835     */
11836    struct _Elm_Entry_Anchorblock_Info
11837      {
11838         const char     *name; /**< Name of the anchor, as indicated in its href
11839                                    attribute */
11840         int             button; /**< The mouse button used to click on it */
11841         Evas_Object    *hover; /**< The hover object to use for the popup */
11842         struct {
11843              Evas_Coord    x, y, w, h;
11844         } anchor, /**< Geometry selection of text used as anchor */
11845           hover_parent; /**< Geometry of the object used as parent by the
11846                              hover */
11847         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
11848                                              for content on the left side of
11849                                              the hover. Before calling the
11850                                              callback, the widget will make the
11851                                              necessary calculations to check
11852                                              which sides are fit to be set with
11853                                              content, based on the position the
11854                                              hover is activated and its distance
11855                                              to the edges of its parent object
11856                                              */
11857         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
11858                                               the right side of the hover.
11859                                               See @ref hover_left */
11860         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
11861                                             of the hover. See @ref hover_left */
11862         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
11863                                                below the hover. See @ref
11864                                                hover_left */
11865      };
11866    /**
11867     * Add a new Anchorblock object
11868     *
11869     * @param parent The parent object
11870     * @return The new object or NULL if it cannot be created
11871     */
11872    EAPI Evas_Object *elm_anchorblock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11873    /**
11874     * Set the text to show in the anchorblock
11875     *
11876     * Sets the text of the anchorblock to @p text. This text can include markup
11877     * format tags, including <c>\<a href=anchorname\></a></c> to begin a segment
11878     * of text that will be specially styled and react to click events, ended
11879     * with either of \</a\> or \</\>. When clicked, the anchor will emit an
11880     * "anchor,clicked" signal that you can attach a callback to with
11881     * evas_object_smart_callback_add(). The name of the anchor given in the
11882     * event info struct will be the one set in the href attribute, in this
11883     * case, anchorname.
11884     *
11885     * Other markup can be used to style the text in different ways, but it's
11886     * up to the style defined in the theme which tags do what.
11887     * @deprecated use elm_object_text_set() instead.
11888     */
11889    EINA_DEPRECATED EAPI void         elm_anchorblock_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
11890    /**
11891     * Get the markup text set for the anchorblock
11892     *
11893     * Retrieves the text set on the anchorblock, with markup tags included.
11894     *
11895     * @param obj The anchorblock object
11896     * @return The markup text set or @c NULL if nothing was set or an error
11897     * occurred
11898     * @deprecated use elm_object_text_set() instead.
11899     */
11900    EINA_DEPRECATED EAPI const char  *elm_anchorblock_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11901    /**
11902     * Set the parent of the hover popup
11903     *
11904     * Sets the parent object to use by the hover created by the anchorblock
11905     * when an anchor is clicked. See @ref Hover for more details on this.
11906     *
11907     * @param obj The anchorblock object
11908     * @param parent The object to use as parent for the hover
11909     */
11910    EAPI void         elm_anchorblock_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
11911    /**
11912     * Get the parent of the hover popup
11913     *
11914     * Get the object used as parent for the hover created by the anchorblock
11915     * widget. See @ref Hover for more details on this.
11916     * If no parent is set, the same anchorblock object will be used.
11917     *
11918     * @param obj The anchorblock object
11919     * @return The object used as parent for the hover, NULL if none is set.
11920     */
11921    EAPI Evas_Object *elm_anchorblock_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11922    /**
11923     * Set the style that the hover should use
11924     *
11925     * When creating the popup hover, anchorblock will request that it's
11926     * themed according to @p style.
11927     *
11928     * @param obj The anchorblock object
11929     * @param style The style to use for the underlying hover
11930     *
11931     * @see elm_object_style_set()
11932     */
11933    EAPI void         elm_anchorblock_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
11934    /**
11935     * Get the style that the hover should use
11936     *
11937     * Get the style the hover created by anchorblock will use.
11938     *
11939     * @param obj The anchorblock object
11940     * @return The style to use by the hover. NULL means the default is used.
11941     *
11942     * @see elm_object_style_set()
11943     */
11944    EAPI const char  *elm_anchorblock_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11945    /**
11946     * Ends the hover popup in the anchorblock
11947     *
11948     * When an anchor is clicked, the anchorblock widget will create a hover
11949     * object to use as a popup with user provided content. This function
11950     * terminates this popup, returning the anchorblock to its normal state.
11951     *
11952     * @param obj The anchorblock object
11953     */
11954    EAPI void         elm_anchorblock_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
11955    /**
11956     * Appends a custom item provider to the given anchorblock
11957     *
11958     * Appends the given function to the list of items providers. This list is
11959     * called, one function at a time, with the given @p data pointer, the
11960     * anchorblock object and, in the @p item parameter, the item name as
11961     * referenced in its href string. Following functions in the list will be
11962     * called in order until one of them returns something different to NULL,
11963     * which should be an Evas_Object which will be used in place of the item
11964     * element.
11965     *
11966     * Items in the markup text take the form \<item relsize=16x16 vsize=full
11967     * href=item/name\>\</item\>
11968     *
11969     * @param obj The anchorblock object
11970     * @param func The function to add to the list of providers
11971     * @param data User data that will be passed to the callback function
11972     *
11973     * @see elm_entry_item_provider_append()
11974     */
11975    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);
11976    /**
11977     * Prepend a custom item provider to the given anchorblock
11978     *
11979     * Like elm_anchorblock_item_provider_append(), but it adds the function
11980     * @p func to the beginning of the list, instead of the end.
11981     *
11982     * @param obj The anchorblock object
11983     * @param func The function to add to the list of providers
11984     * @param data User data that will be passed to the callback function
11985     */
11986    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);
11987    /**
11988     * Remove a custom item provider from the list of the given anchorblock
11989     *
11990     * Removes the function and data pairing that matches @p func and @p data.
11991     * That is, unless the same function and same user data are given, the
11992     * function will not be removed from the list. This allows us to add the
11993     * same callback several times, with different @p data pointers and be
11994     * able to remove them later without conflicts.
11995     *
11996     * @param obj The anchorblock object
11997     * @param func The function to remove from the list
11998     * @param data The data matching the function to remove from the list
11999     */
12000    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);
12001    /**
12002     * @}
12003     */
12004
12005    /**
12006     * @defgroup Bubble Bubble
12007     *
12008     * @image html img/widget/bubble/preview-00.png
12009     * @image latex img/widget/bubble/preview-00.eps
12010     * @image html img/widget/bubble/preview-01.png
12011     * @image latex img/widget/bubble/preview-01.eps
12012     * @image html img/widget/bubble/preview-02.png
12013     * @image latex img/widget/bubble/preview-02.eps
12014     *
12015     * @brief The Bubble is a widget to show text similarly to how speech is
12016     * represented in comics.
12017     *
12018     * The bubble widget contains 5 important visual elements:
12019     * @li The frame is a rectangle with rounded rectangles and an "arrow".
12020     * @li The @p icon is an image to which the frame's arrow points to.
12021     * @li The @p label is a text which appears to the right of the icon if the
12022     * corner is "top_left" or "bottom_left" and is right aligned to the frame
12023     * otherwise.
12024     * @li The @p info is a text which appears to the right of the label. Info's
12025     * font is of a ligther color than label.
12026     * @li The @p content is an evas object that is shown inside the frame.
12027     *
12028     * The position of the arrow, icon, label and info depends on which corner is
12029     * selected. The four available corners are:
12030     * @li "top_left" - Default
12031     * @li "top_right"
12032     * @li "bottom_left"
12033     * @li "bottom_right"
12034     *
12035     * Signals that you can add callbacks for are:
12036     * @li "clicked" - This is called when a user has clicked the bubble.
12037     *
12038     * For an example of using a buble see @ref bubble_01_example_page "this".
12039     *
12040     * @{
12041     */
12042    /**
12043     * Add a new bubble to the parent
12044     *
12045     * @param parent The parent object
12046     * @return The new object or NULL if it cannot be created
12047     *
12048     * This function adds a text bubble to the given parent evas object.
12049     */
12050    EAPI Evas_Object *elm_bubble_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12051    /**
12052     * Set the label of the bubble
12053     *
12054     * @param obj The bubble object
12055     * @param label The string to set in the label
12056     *
12057     * This function sets the title of the bubble. Where this appears depends on
12058     * the selected corner.
12059     * @deprecated use elm_object_text_set() instead.
12060     */
12061    EINA_DEPRECATED EAPI void         elm_bubble_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12062    /**
12063     * Get the label of the bubble
12064     *
12065     * @param obj The bubble object
12066     * @return The string of set in the label
12067     *
12068     * This function gets the title of the bubble.
12069     * @deprecated use elm_object_text_get() instead.
12070     */
12071    EINA_DEPRECATED EAPI const char  *elm_bubble_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12072    /**
12073     * Set the info of the bubble
12074     *
12075     * @param obj The bubble object
12076     * @param info The given info about the bubble
12077     *
12078     * This function sets the info of the bubble. Where this appears depends on
12079     * the selected corner.
12080     * @deprecated use elm_object_text_part_set() instead. (with "info" as the parameter).
12081     */
12082    EINA_DEPRECATED EAPI void         elm_bubble_info_set(Evas_Object *obj, const char *info) EINA_ARG_NONNULL(1);
12083    /**
12084     * Get the info of the bubble
12085     *
12086     * @param obj The bubble object
12087     *
12088     * @return The "info" string of the bubble
12089     *
12090     * This function gets the info text.
12091     * @deprecated use elm_object_text_part_get() instead. (with "info" as the parameter).
12092     */
12093    EINA_DEPRECATED EAPI const char  *elm_bubble_info_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12094    /**
12095     * Set the content to be shown in the bubble
12096     *
12097     * Once the content object is set, a previously set one will be deleted.
12098     * If you want to keep the old content object, use the
12099     * elm_bubble_content_unset() function.
12100     *
12101     * @param obj The bubble object
12102     * @param content The given content of the bubble
12103     *
12104     * This function sets the content shown on the middle of the bubble.
12105     */
12106    EAPI void         elm_bubble_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
12107    /**
12108     * Get the content shown in the bubble
12109     *
12110     * Return the content object which is set for this widget.
12111     *
12112     * @param obj The bubble object
12113     * @return The content that is being used
12114     */
12115    EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12116    /**
12117     * Unset the content shown in the bubble
12118     *
12119     * Unparent and return the content object which was set for this widget.
12120     *
12121     * @param obj The bubble object
12122     * @return The content that was being used
12123     */
12124    EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12125    /**
12126     * Set the icon of the bubble
12127     *
12128     * Once the icon object is set, a previously set one will be deleted.
12129     * If you want to keep the old content object, use the
12130     * elm_icon_content_unset() function.
12131     *
12132     * @param obj The bubble object
12133     * @param icon The given icon for the bubble
12134     */
12135    EAPI void         elm_bubble_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12136    /**
12137     * Get the icon of the bubble
12138     *
12139     * @param obj The bubble object
12140     * @return The icon for the bubble
12141     *
12142     * This function gets the icon shown on the top left of bubble.
12143     */
12144    EAPI Evas_Object *elm_bubble_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12145    /**
12146     * Unset the icon of the bubble
12147     *
12148     * Unparent and return the icon object which was set for this widget.
12149     *
12150     * @param obj The bubble object
12151     * @return The icon that was being used
12152     */
12153    EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12154    /**
12155     * Set the corner of the bubble
12156     *
12157     * @param obj The bubble object.
12158     * @param corner The given corner for the bubble.
12159     *
12160     * This function sets the corner of the bubble. The corner will be used to
12161     * determine where the arrow in the frame points to and where label, icon and
12162     * info arre shown.
12163     *
12164     * Possible values for corner are:
12165     * @li "top_left" - Default
12166     * @li "top_right"
12167     * @li "bottom_left"
12168     * @li "bottom_right"
12169     */
12170    EAPI void         elm_bubble_corner_set(Evas_Object *obj, const char *corner) EINA_ARG_NONNULL(1, 2);
12171    /**
12172     * Get the corner of the bubble
12173     *
12174     * @param obj The bubble object.
12175     * @return The given corner for the bubble.
12176     *
12177     * This function gets the selected corner of the bubble.
12178     */
12179    EAPI const char  *elm_bubble_corner_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12180    /**
12181     * @}
12182     */
12183
12184    /**
12185     * @defgroup Photo Photo
12186     *
12187     * For displaying the photo of a person (contact). Simple yet
12188     * with a very specific purpose.
12189     *
12190     * Signals that you can add callbacks for are:
12191     *
12192     * "clicked" - This is called when a user has clicked the photo
12193     * "drag,start" - Someone started dragging the image out of the object
12194     * "drag,end" - Dragged item was dropped (somewhere)
12195     *
12196     * @{
12197     */
12198
12199    /**
12200     * Add a new photo to the parent
12201     *
12202     * @param parent The parent object
12203     * @return The new object or NULL if it cannot be created
12204     *
12205     * @ingroup Photo
12206     */
12207    EAPI Evas_Object *elm_photo_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12208
12209    /**
12210     * Set the file that will be used as photo
12211     *
12212     * @param obj The photo object
12213     * @param file The path to file that will be used as photo
12214     *
12215     * @return (1 = success, 0 = error)
12216     *
12217     * @ingroup Photo
12218     */
12219    EAPI Eina_Bool    elm_photo_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
12220
12221     /**
12222     * Set the file that will be used as thumbnail in the photo.
12223     *
12224     * @param obj The photo object.
12225     * @param file The path to file that will be used as thumb.
12226     * @param group The key used in case of an EET file.
12227     *
12228     * @ingroup Photo
12229     */
12230    EAPI void         elm_photo_thumb_set(const Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
12231
12232    /**
12233     * Set the size that will be used on the photo
12234     *
12235     * @param obj The photo object
12236     * @param size The size that the photo will be
12237     *
12238     * @ingroup Photo
12239     */
12240    EAPI void         elm_photo_size_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
12241
12242    /**
12243     * Set if the photo should be completely visible or not.
12244     *
12245     * @param obj The photo object
12246     * @param fill if true the photo will be completely visible
12247     *
12248     * @ingroup Photo
12249     */
12250    EAPI void         elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill) EINA_ARG_NONNULL(1);
12251
12252    /**
12253     * Set editability of the photo.
12254     *
12255     * An editable photo can be dragged to or from, and can be cut or
12256     * pasted too.  Note that pasting an image or dropping an item on
12257     * the image will delete the existing content.
12258     *
12259     * @param obj The photo object.
12260     * @param set To set of clear editablity.
12261     */
12262    EAPI void         elm_photo_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
12263
12264    /**
12265     * @}
12266     */
12267
12268    /* gesture layer */
12269    /**
12270     * @defgroup Elm_Gesture_Layer Gesture Layer
12271     * Gesture Layer Usage:
12272     *
12273     * Use Gesture Layer to detect gestures.
12274     * The advantage is that you don't have to implement
12275     * gesture detection, just set callbacks of gesture state.
12276     * By using gesture layer we make standard interface.
12277     *
12278     * In order to use Gesture Layer you start with @ref elm_gesture_layer_add
12279     * with a parent object parameter.
12280     * Next 'activate' gesture layer with a @ref elm_gesture_layer_attach
12281     * call. Usually with same object as target (2nd parameter).
12282     *
12283     * Now you need to tell gesture layer what gestures you follow.
12284     * This is done with @ref elm_gesture_layer_cb_set call.
12285     * By setting the callback you actually saying to gesture layer:
12286     * I would like to know when the gesture @ref Elm_Gesture_Types
12287     * switches to state @ref Elm_Gesture_State.
12288     *
12289     * Next, you need to implement the actual action that follows the input
12290     * in your callback.
12291     *
12292     * Note that if you like to stop being reported about a gesture, just set
12293     * all callbacks referring this gesture to NULL.
12294     * (again with @ref elm_gesture_layer_cb_set)
12295     *
12296     * The information reported by gesture layer to your callback is depending
12297     * on @ref Elm_Gesture_Types:
12298     * @ref Elm_Gesture_Taps_Info is the info reported for tap gestures:
12299     * @ref ELM_GESTURE_N_TAPS, @ref ELM_GESTURE_N_LONG_TAPS,
12300     * @ref ELM_GESTURE_N_DOUBLE_TAPS, @ref ELM_GESTURE_N_TRIPLE_TAPS.
12301     *
12302     * @ref Elm_Gesture_Momentum_Info is info reported for momentum gestures:
12303     * @ref ELM_GESTURE_MOMENTUM.
12304     *
12305     * @ref Elm_Gesture_Line_Info is the info reported for line gestures:
12306     * (this also contains @ref Elm_Gesture_Momentum_Info internal structure)
12307     * @ref ELM_GESTURE_N_LINES, @ref ELM_GESTURE_N_FLICKS.
12308     * Note that we consider a flick as a line-gesture that should be completed
12309     * in flick-time-limit as defined in @ref Config.
12310     *
12311     * @ref Elm_Gesture_Zoom_Info is the info reported for @ref ELM_GESTURE_ZOOM gesture.
12312     *
12313     * @ref Elm_Gesture_Rotate_Info is the info reported for @ref ELM_GESTURE_ROTATE gesture.
12314     *
12315     *
12316     * Gesture Layer Tweaks:
12317     *
12318     * Note that line, flick, gestures can start without the need to remove fingers from surface.
12319     * When user fingers rests on same-spot gesture is ended and starts again when fingers moved.
12320     *
12321     * Setting glayer_continues_enable to false in @ref Config will change this behavior
12322     * so gesture starts when user touches (a *DOWN event) touch-surface
12323     * and ends when no fingers touches surface (a *UP event).
12324     */
12325
12326    /**
12327     * @enum _Elm_Gesture_Types
12328     * Enum of supported gesture types.
12329     * @ingroup Elm_Gesture_Layer
12330     */
12331    enum _Elm_Gesture_Types
12332      {
12333         ELM_GESTURE_FIRST = 0,
12334
12335         ELM_GESTURE_N_TAPS, /**< N fingers single taps */
12336         ELM_GESTURE_N_LONG_TAPS, /**< N fingers single long-taps */
12337         ELM_GESTURE_N_DOUBLE_TAPS, /**< N fingers double-single taps */
12338         ELM_GESTURE_N_TRIPLE_TAPS, /**< N fingers triple-single taps */
12339
12340         ELM_GESTURE_MOMENTUM, /**< Reports momentum in the dircetion of move */
12341
12342         ELM_GESTURE_N_LINES, /**< N fingers line gesture */
12343         ELM_GESTURE_N_FLICKS, /**< N fingers flick gesture */
12344
12345         ELM_GESTURE_ZOOM, /**< Zoom */
12346         ELM_GESTURE_ROTATE, /**< Rotate */
12347
12348         ELM_GESTURE_LAST
12349      };
12350
12351    /**
12352     * @typedef Elm_Gesture_Types
12353     * gesture types enum
12354     * @ingroup Elm_Gesture_Layer
12355     */
12356    typedef enum _Elm_Gesture_Types Elm_Gesture_Types;
12357
12358    /**
12359     * @enum _Elm_Gesture_State
12360     * Enum of gesture states.
12361     * @ingroup Elm_Gesture_Layer
12362     */
12363    enum _Elm_Gesture_State
12364      {
12365         ELM_GESTURE_STATE_UNDEFINED = -1, /**< Gesture not STARTed */
12366         ELM_GESTURE_STATE_START,          /**< Gesture STARTed     */
12367         ELM_GESTURE_STATE_MOVE,           /**< Gesture is ongoing  */
12368         ELM_GESTURE_STATE_END,            /**< Gesture completed   */
12369         ELM_GESTURE_STATE_ABORT    /**< Onging gesture was ABORTed */
12370      };
12371
12372    /**
12373     * @typedef Elm_Gesture_State
12374     * gesture states enum
12375     * @ingroup Elm_Gesture_Layer
12376     */
12377    typedef enum _Elm_Gesture_State Elm_Gesture_State;
12378
12379    /**
12380     * @struct _Elm_Gesture_Taps_Info
12381     * Struct holds taps info for user
12382     * @ingroup Elm_Gesture_Layer
12383     */
12384    struct _Elm_Gesture_Taps_Info
12385      {
12386         Evas_Coord x, y;         /**< Holds center point between fingers */
12387         unsigned int n;          /**< Number of fingers tapped           */
12388         unsigned int timestamp;  /**< event timestamp       */
12389      };
12390
12391    /**
12392     * @typedef Elm_Gesture_Taps_Info
12393     * holds taps info for user
12394     * @ingroup Elm_Gesture_Layer
12395     */
12396    typedef struct _Elm_Gesture_Taps_Info Elm_Gesture_Taps_Info;
12397
12398    /**
12399     * @struct _Elm_Gesture_Momentum_Info
12400     * Struct holds momentum info for user
12401     * x1 and y1 are not necessarily in sync
12402     * x1 holds x value of x direction starting point
12403     * and same holds for y1.
12404     * This is noticeable when doing V-shape movement
12405     * @ingroup Elm_Gesture_Layer
12406     */
12407    struct _Elm_Gesture_Momentum_Info
12408      {  /* Report line ends, timestamps, and momentum computed        */
12409         Evas_Coord x1; /**< Final-swipe direction starting point on X */
12410         Evas_Coord y1; /**< Final-swipe direction starting point on Y */
12411         Evas_Coord x2; /**< Final-swipe direction ending point on X   */
12412         Evas_Coord y2; /**< Final-swipe direction ending point on Y   */
12413
12414         unsigned int tx; /**< Timestamp of start of final x-swipe */
12415         unsigned int ty; /**< Timestamp of start of final y-swipe */
12416
12417         Evas_Coord mx; /**< Momentum on X */
12418         Evas_Coord my; /**< Momentum on Y */
12419      };
12420
12421    /**
12422     * @typedef Elm_Gesture_Momentum_Info
12423     * holds momentum info for user
12424     * @ingroup Elm_Gesture_Layer
12425     */
12426     typedef struct _Elm_Gesture_Momentum_Info Elm_Gesture_Momentum_Info;
12427
12428    /**
12429     * @struct _Elm_Gesture_Line_Info
12430     * Struct holds line info for user
12431     * @ingroup Elm_Gesture_Layer
12432     */
12433    struct _Elm_Gesture_Line_Info
12434      {  /* Report line ends, timestamps, and momentum computed      */
12435         Elm_Gesture_Momentum_Info momentum; /**< Line momentum info */
12436         unsigned int n;            /**< Number of fingers (lines)   */
12437         /* FIXME should be radians, bot degrees */
12438         double angle;              /**< Angle (direction) of lines  */
12439      };
12440
12441    /**
12442     * @typedef Elm_Gesture_Line_Info
12443     * Holds line info for user
12444     * @ingroup Elm_Gesture_Layer
12445     */
12446     typedef struct  _Elm_Gesture_Line_Info Elm_Gesture_Line_Info;
12447
12448    /**
12449     * @struct _Elm_Gesture_Zoom_Info
12450     * Struct holds zoom info for user
12451     * @ingroup Elm_Gesture_Layer
12452     */
12453    struct _Elm_Gesture_Zoom_Info
12454      {
12455         Evas_Coord x, y;       /**< Holds zoom center point reported to user  */
12456         Evas_Coord radius; /**< Holds radius between fingers reported to user */
12457         double zoom;            /**< Zoom value: 1.0 means no zoom             */
12458         double momentum;        /**< Zoom momentum: zoom growth per second (NOT YET SUPPORTED) */
12459      };
12460
12461    /**
12462     * @typedef Elm_Gesture_Zoom_Info
12463     * Holds zoom info for user
12464     * @ingroup Elm_Gesture_Layer
12465     */
12466    typedef struct _Elm_Gesture_Zoom_Info Elm_Gesture_Zoom_Info;
12467
12468    /**
12469     * @struct _Elm_Gesture_Rotate_Info
12470     * Struct holds rotation info for user
12471     * @ingroup Elm_Gesture_Layer
12472     */
12473    struct _Elm_Gesture_Rotate_Info
12474      {
12475         Evas_Coord x, y;   /**< Holds zoom center point reported to user      */
12476         Evas_Coord radius; /**< Holds radius between fingers reported to user */
12477         double base_angle; /**< Holds start-angle */
12478         double angle;      /**< Rotation value: 0.0 means no rotation         */
12479         double momentum;   /**< Rotation momentum: rotation done per second (NOT YET SUPPORTED) */
12480      };
12481
12482    /**
12483     * @typedef Elm_Gesture_Rotate_Info
12484     * Holds rotation info for user
12485     * @ingroup Elm_Gesture_Layer
12486     */
12487    typedef struct _Elm_Gesture_Rotate_Info Elm_Gesture_Rotate_Info;
12488
12489    /**
12490     * @typedef Elm_Gesture_Event_Cb
12491     * User callback used to stream gesture info from gesture layer
12492     * @param data user data
12493     * @param event_info gesture report info
12494     * Returns a flag field to be applied on the causing event.
12495     * You should probably return EVAS_EVENT_FLAG_ON_HOLD if your widget acted
12496     * upon the event, in an irreversible way.
12497     *
12498     * @ingroup Elm_Gesture_Layer
12499     */
12500    typedef Evas_Event_Flags (*Elm_Gesture_Event_Cb) (void *data, void *event_info);
12501
12502    /**
12503     * Use function to set callbacks to be notified about
12504     * change of state of gesture.
12505     * When a user registers a callback with this function
12506     * this means this gesture has to be tested.
12507     *
12508     * When ALL callbacks for a gesture are set to NULL
12509     * it means user isn't interested in gesture-state
12510     * and it will not be tested.
12511     *
12512     * @param obj Pointer to gesture-layer.
12513     * @param idx The gesture you would like to track its state.
12514     * @param cb callback function pointer.
12515     * @param cb_type what event this callback tracks: START, MOVE, END, ABORT.
12516     * @param data user info to be sent to callback (usually, Smart Data)
12517     *
12518     * @ingroup Elm_Gesture_Layer
12519     */
12520    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);
12521
12522    /**
12523     * Call this function to get repeat-events settings.
12524     *
12525     * @param obj Pointer to gesture-layer.
12526     *
12527     * @return repeat events settings.
12528     * @see elm_gesture_layer_hold_events_set()
12529     * @ingroup Elm_Gesture_Layer
12530     */
12531    EAPI Eina_Bool elm_gesture_layer_hold_events_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12532
12533    /**
12534     * This function called in order to make gesture-layer repeat events.
12535     * Set this of you like to get the raw events only if gestures were not detected.
12536     * Clear this if you like gesture layer to fwd events as testing gestures.
12537     *
12538     * @param obj Pointer to gesture-layer.
12539     * @param r Repeat: TRUE/FALSE
12540     *
12541     * @ingroup Elm_Gesture_Layer
12542     */
12543    EAPI void elm_gesture_layer_hold_events_set(Evas_Object *obj, Eina_Bool r) EINA_ARG_NONNULL(1);
12544
12545    /**
12546     * This function sets step-value for zoom action.
12547     * Set step to any positive value.
12548     * Cancel step setting by setting to 0.0
12549     *
12550     * @param obj Pointer to gesture-layer.
12551     * @param s new zoom step value.
12552     *
12553     * @ingroup Elm_Gesture_Layer
12554     */
12555    EAPI void elm_gesture_layer_zoom_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
12556
12557    /**
12558     * This function sets step-value for rotate action.
12559     * Set step to any positive value.
12560     * Cancel step setting by setting to 0.0
12561     *
12562     * @param obj Pointer to gesture-layer.
12563     * @param s new roatate step value.
12564     *
12565     * @ingroup Elm_Gesture_Layer
12566     */
12567    EAPI void elm_gesture_layer_rotate_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
12568
12569    /**
12570     * This function called to attach gesture-layer to an Evas_Object.
12571     * @param obj Pointer to gesture-layer.
12572     * @param t Pointer to underlying object (AKA Target)
12573     *
12574     * @return TRUE, FALSE on success, failure.
12575     *
12576     * @ingroup Elm_Gesture_Layer
12577     */
12578    EAPI Eina_Bool elm_gesture_layer_attach(Evas_Object *obj, Evas_Object *t) EINA_ARG_NONNULL(1, 2);
12579
12580    /**
12581     * Call this function to construct a new gesture-layer object.
12582     * This does not activate the gesture layer. You have to
12583     * call elm_gesture_layer_attach in order to 'activate' gesture-layer.
12584     *
12585     * @param parent the parent object.
12586     *
12587     * @return Pointer to new gesture-layer object.
12588     *
12589     * @ingroup Elm_Gesture_Layer
12590     */
12591    EAPI Evas_Object *elm_gesture_layer_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12592
12593    /**
12594     * @defgroup Thumb Thumb
12595     *
12596     * @image html img/widget/thumb/preview-00.png
12597     * @image latex img/widget/thumb/preview-00.eps
12598     *
12599     * A thumb object is used for displaying the thumbnail of an image or video.
12600     * You must have compiled Elementary with Ethumb_Client support and the DBus
12601     * service must be present and auto-activated in order to have thumbnails to
12602     * be generated.
12603     *
12604     * Once the thumbnail object becomes visible, it will check if there is a
12605     * previously generated thumbnail image for the file set on it. If not, it
12606     * will start generating this thumbnail.
12607     *
12608     * Different config settings will cause different thumbnails to be generated
12609     * even on the same file.
12610     *
12611     * Generated thumbnails are stored under @c $HOME/.thumbnails/. Check the
12612     * Ethumb documentation to change this path, and to see other configuration
12613     * options.
12614     *
12615     * Signals that you can add callbacks for are:
12616     *
12617     * - "clicked" - This is called when a user has clicked the thumb without dragging
12618     *             around.
12619     * - "clicked,double" - This is called when a user has double-clicked the thumb.
12620     * - "press" - This is called when a user has pressed down the thumb.
12621     * - "generate,start" - The thumbnail generation started.
12622     * - "generate,stop" - The generation process stopped.
12623     * - "generate,error" - The generation failed.
12624     * - "load,error" - The thumbnail image loading failed.
12625     *
12626     * available styles:
12627     * - default
12628     * - noframe
12629     *
12630     * An example of use of thumbnail:
12631     *
12632     * - @ref thumb_example_01
12633     */
12634
12635    /**
12636     * @addtogroup Thumb
12637     * @{
12638     */
12639
12640    /**
12641     * @enum _Elm_Thumb_Animation_Setting
12642     * @typedef Elm_Thumb_Animation_Setting
12643     *
12644     * Used to set if a video thumbnail is animating or not.
12645     *
12646     * @ingroup Thumb
12647     */
12648    typedef enum _Elm_Thumb_Animation_Setting
12649      {
12650         ELM_THUMB_ANIMATION_START = 0, /**< Play animation once */
12651         ELM_THUMB_ANIMATION_LOOP,      /**< Keep playing animation until stop is requested */
12652         ELM_THUMB_ANIMATION_STOP,      /**< Stop playing the animation */
12653         ELM_THUMB_ANIMATION_LAST
12654      } Elm_Thumb_Animation_Setting;
12655
12656    /**
12657     * Add a new thumb object to the parent.
12658     *
12659     * @param parent The parent object.
12660     * @return The new object or NULL if it cannot be created.
12661     *
12662     * @see elm_thumb_file_set()
12663     * @see elm_thumb_ethumb_client_get()
12664     *
12665     * @ingroup Thumb
12666     */
12667    EAPI Evas_Object                 *elm_thumb_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12668    /**
12669     * Reload thumbnail if it was generated before.
12670     *
12671     * @param obj The thumb object to reload
12672     *
12673     * This is useful if the ethumb client configuration changed, like its
12674     * size, aspect or any other property one set in the handle returned
12675     * by elm_thumb_ethumb_client_get().
12676     *
12677     * If the options didn't change, the thumbnail won't be generated again, but
12678     * the old one will still be used.
12679     *
12680     * @see elm_thumb_file_set()
12681     *
12682     * @ingroup Thumb
12683     */
12684    EAPI void                         elm_thumb_reload(Evas_Object *obj) EINA_ARG_NONNULL(1);
12685    /**
12686     * Set the file that will be used as thumbnail.
12687     *
12688     * @param obj The thumb object.
12689     * @param file The path to file that will be used as thumb.
12690     * @param key The key used in case of an EET file.
12691     *
12692     * The file can be an image or a video (in that case, acceptable extensions are:
12693     * avi, mp4, ogv, mov, mpg and wmv). To start the video animation, use the
12694     * function elm_thumb_animate().
12695     *
12696     * @see elm_thumb_file_get()
12697     * @see elm_thumb_reload()
12698     * @see elm_thumb_animate()
12699     *
12700     * @ingroup Thumb
12701     */
12702    EAPI void                         elm_thumb_file_set(Evas_Object *obj, const char *file, const char *key) EINA_ARG_NONNULL(1);
12703    /**
12704     * Get the image or video path and key used to generate the thumbnail.
12705     *
12706     * @param obj The thumb object.
12707     * @param file Pointer to filename.
12708     * @param key Pointer to key.
12709     *
12710     * @see elm_thumb_file_set()
12711     * @see elm_thumb_path_get()
12712     *
12713     * @ingroup Thumb
12714     */
12715    EAPI void                         elm_thumb_file_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
12716    /**
12717     * Get the path and key to the image or video generated by ethumb.
12718     *
12719     * One just need to make sure that the thumbnail was generated before getting
12720     * its path; otherwise, the path will be NULL. One way to do that is by asking
12721     * for the path when/after the "generate,stop" smart callback is called.
12722     *
12723     * @param obj The thumb object.
12724     * @param file Pointer to thumb path.
12725     * @param key Pointer to thumb key.
12726     *
12727     * @see elm_thumb_file_get()
12728     *
12729     * @ingroup Thumb
12730     */
12731    EAPI void                         elm_thumb_path_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
12732    /**
12733     * Set the animation state for the thumb object. If its content is an animated
12734     * video, you may start/stop the animation or tell it to play continuously and
12735     * looping.
12736     *
12737     * @param obj The thumb object.
12738     * @param setting The animation setting.
12739     *
12740     * @see elm_thumb_file_set()
12741     *
12742     * @ingroup Thumb
12743     */
12744    EAPI void                         elm_thumb_animate_set(Evas_Object *obj, Elm_Thumb_Animation_Setting s) EINA_ARG_NONNULL(1);
12745    /**
12746     * Get the animation state for the thumb object.
12747     *
12748     * @param obj The thumb object.
12749     * @return getting The animation setting or @c ELM_THUMB_ANIMATION_LAST,
12750     * on errors.
12751     *
12752     * @see elm_thumb_animate_set()
12753     *
12754     * @ingroup Thumb
12755     */
12756    EAPI Elm_Thumb_Animation_Setting  elm_thumb_animate_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12757    /**
12758     * Get the ethumb_client handle so custom configuration can be made.
12759     *
12760     * @return Ethumb_Client instance or NULL.
12761     *
12762     * This must be called before the objects are created to be sure no object is
12763     * visible and no generation started.
12764     *
12765     * Example of usage:
12766     *
12767     * @code
12768     * #include <Elementary.h>
12769     * #ifndef ELM_LIB_QUICKLAUNCH
12770     * EAPI_MAIN int
12771     * elm_main(int argc, char **argv)
12772     * {
12773     *    Ethumb_Client *client;
12774     *
12775     *    elm_need_ethumb();
12776     *
12777     *    // ... your code
12778     *
12779     *    client = elm_thumb_ethumb_client_get();
12780     *    if (!client)
12781     *      {
12782     *         ERR("could not get ethumb_client");
12783     *         return 1;
12784     *      }
12785     *    ethumb_client_size_set(client, 100, 100);
12786     *    ethumb_client_crop_align_set(client, 0.5, 0.5);
12787     *    // ... your code
12788     *
12789     *    // Create elm_thumb objects here
12790     *
12791     *    elm_run();
12792     *    elm_shutdown();
12793     *    return 0;
12794     * }
12795     * #endif
12796     * ELM_MAIN()
12797     * @endcode
12798     *
12799     * @note There's only one client handle for Ethumb, so once a configuration
12800     * change is done to it, any other request for thumbnails (for any thumbnail
12801     * object) will use that configuration. Thus, this configuration is global.
12802     *
12803     * @ingroup Thumb
12804     */
12805    EAPI void                        *elm_thumb_ethumb_client_get(void);
12806    /**
12807     * Get the ethumb_client connection state.
12808     *
12809     * @return EINA_TRUE if the client is connected to the server or EINA_FALSE
12810     * otherwise.
12811     */
12812    EAPI Eina_Bool                    elm_thumb_ethumb_client_connected(void);
12813    /**
12814     * Make the thumbnail 'editable'.
12815     *
12816     * @param obj Thumb object.
12817     * @param set Turn on or off editability. Default is @c EINA_FALSE.
12818     *
12819     * This means the thumbnail is a valid drag target for drag and drop, and can be
12820     * cut or pasted too.
12821     *
12822     * @see elm_thumb_editable_get()
12823     *
12824     * @ingroup Thumb
12825     */
12826    EAPI Eina_Bool                    elm_thumb_editable_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
12827    /**
12828     * Make the thumbnail 'editable'.
12829     *
12830     * @param obj Thumb object.
12831     * @return Editability.
12832     *
12833     * This means the thumbnail is a valid drag target for drag and drop, and can be
12834     * cut or pasted too.
12835     *
12836     * @see elm_thumb_editable_set()
12837     *
12838     * @ingroup Thumb
12839     */
12840    EAPI Eina_Bool                    elm_thumb_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12841
12842    /**
12843     * @}
12844     */
12845
12846    /**
12847     * @defgroup Hoversel Hoversel
12848     *
12849     * @image html img/widget/hoversel/preview-00.png
12850     * @image latex img/widget/hoversel/preview-00.eps
12851     *
12852     * A hoversel is a button that pops up a list of items (automatically
12853     * choosing the direction to display) that have a label and, optionally, an
12854     * icon to select from. It is a convenience widget to avoid the need to do
12855     * all the piecing together yourself. It is intended for a small number of
12856     * items in the hoversel menu (no more than 8), though is capable of many
12857     * more.
12858     *
12859     * Signals that you can add callbacks for are:
12860     * "clicked" - the user clicked the hoversel button and popped up the sel
12861     * "selected" - an item in the hoversel list is selected. event_info is the item
12862     * "dismissed" - the hover is dismissed
12863     *
12864     * See @ref tutorial_hoversel for an example.
12865     * @{
12866     */
12867    typedef struct _Elm_Hoversel_Item Elm_Hoversel_Item; /**< Item of Elm_Hoversel. Sub-type of Elm_Widget_Item */
12868    /**
12869     * @brief Add a new Hoversel object
12870     *
12871     * @param parent The parent object
12872     * @return The new object or NULL if it cannot be created
12873     */
12874    EAPI Evas_Object       *elm_hoversel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12875    /**
12876     * @brief This sets the hoversel to expand horizontally.
12877     *
12878     * @param obj The hoversel object
12879     * @param horizontal If true, the hover will expand horizontally to the
12880     * right.
12881     *
12882     * @note The initial button will display horizontally regardless of this
12883     * setting.
12884     */
12885    EAPI void               elm_hoversel_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
12886    /**
12887     * @brief This returns whether the hoversel is set to expand horizontally.
12888     *
12889     * @param obj The hoversel object
12890     * @return If true, the hover will expand horizontally to the right.
12891     *
12892     * @see elm_hoversel_horizontal_set()
12893     */
12894    EAPI Eina_Bool          elm_hoversel_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12895    /**
12896     * @brief Set the Hover parent
12897     *
12898     * @param obj The hoversel object
12899     * @param parent The parent to use
12900     *
12901     * Sets the hover parent object, the area that will be darkened when the
12902     * hoversel is clicked. Should probably be the window that the hoversel is
12903     * in. See @ref Hover objects for more information.
12904     */
12905    EAPI void               elm_hoversel_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12906    /**
12907     * @brief Get the Hover parent
12908     *
12909     * @param obj The hoversel object
12910     * @return The used parent
12911     *
12912     * Gets the hover parent object.
12913     *
12914     * @see elm_hoversel_hover_parent_set()
12915     */
12916    EAPI Evas_Object       *elm_hoversel_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12917    /**
12918     * @brief Set the hoversel button label
12919     *
12920     * @param obj The hoversel object
12921     * @param label The label text.
12922     *
12923     * This sets the label of the button that is always visible (before it is
12924     * clicked and expanded).
12925     *
12926     * @deprecated elm_object_text_set()
12927     */
12928    EINA_DEPRECATED EAPI void               elm_hoversel_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12929    /**
12930     * @brief Get the hoversel button label
12931     *
12932     * @param obj The hoversel object
12933     * @return The label text.
12934     *
12935     * @deprecated elm_object_text_get()
12936     */
12937    EINA_DEPRECATED EAPI const char        *elm_hoversel_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12938    /**
12939     * @brief Set the icon of the hoversel button
12940     *
12941     * @param obj The hoversel object
12942     * @param icon The icon object
12943     *
12944     * Sets the icon of the button that is always visible (before it is clicked
12945     * and expanded).  Once the icon object is set, a previously set one will be
12946     * deleted, if you want to keep that old content object, use the
12947     * elm_hoversel_icon_unset() function.
12948     *
12949     * @see elm_button_icon_set()
12950     */
12951    EAPI void               elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12952    /**
12953     * @brief Get the icon of the hoversel button
12954     *
12955     * @param obj The hoversel object
12956     * @return The icon object
12957     *
12958     * Get the icon of the button that is always visible (before it is clicked
12959     * and expanded). Also see elm_button_icon_get().
12960     *
12961     * @see elm_hoversel_icon_set()
12962     */
12963    EAPI Evas_Object       *elm_hoversel_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12964    /**
12965     * @brief Get and unparent the icon of the hoversel button
12966     *
12967     * @param obj The hoversel object
12968     * @return The icon object that was being used
12969     *
12970     * Unparent and return the icon of the button that is always visible
12971     * (before it is clicked and expanded).
12972     *
12973     * @see elm_hoversel_icon_set()
12974     * @see elm_button_icon_unset()
12975     */
12976    EAPI Evas_Object       *elm_hoversel_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12977    /**
12978     * @brief This triggers the hoversel popup from code, the same as if the user
12979     * had clicked the button.
12980     *
12981     * @param obj The hoversel object
12982     */
12983    EAPI void               elm_hoversel_hover_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
12984    /**
12985     * @brief This dismisses the hoversel popup as if the user had clicked
12986     * outside the hover.
12987     *
12988     * @param obj The hoversel object
12989     */
12990    EAPI void               elm_hoversel_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12991    /**
12992     * @brief Returns whether the hoversel is expanded.
12993     *
12994     * @param obj The hoversel object
12995     * @return  This will return EINA_TRUE if the hoversel is expanded or
12996     * EINA_FALSE if it is not expanded.
12997     */
12998    EAPI Eina_Bool          elm_hoversel_expanded_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12999    /**
13000     * @brief This will remove all the children items from the hoversel.
13001     *
13002     * @param obj The hoversel object
13003     *
13004     * @warning Should @b not be called while the hoversel is active; use
13005     * elm_hoversel_expanded_get() to check first.
13006     *
13007     * @see elm_hoversel_item_del_cb_set()
13008     * @see elm_hoversel_item_del()
13009     */
13010    EAPI void               elm_hoversel_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
13011    /**
13012     * @brief Get the list of items within the given hoversel.
13013     *
13014     * @param obj The hoversel object
13015     * @return Returns a list of Elm_Hoversel_Item*
13016     *
13017     * @see elm_hoversel_item_add()
13018     */
13019    EAPI const Eina_List   *elm_hoversel_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13020    /**
13021     * @brief Add an item to the hoversel button
13022     *
13023     * @param obj The hoversel object
13024     * @param label The text label to use for the item (NULL if not desired)
13025     * @param icon_file An image file path on disk to use for the icon or standard
13026     * icon name (NULL if not desired)
13027     * @param icon_type The icon type if relevant
13028     * @param func Convenience function to call when this item is selected
13029     * @param data Data to pass to item-related functions
13030     * @return A handle to the item added.
13031     *
13032     * This adds an item to the hoversel to show when it is clicked. Note: if you
13033     * need to use an icon from an edje file then use
13034     * elm_hoversel_item_icon_set() right after the this function, and set
13035     * icon_file to NULL here.
13036     *
13037     * For more information on what @p icon_file and @p icon_type are see the
13038     * @ref Icon "icon documentation".
13039     */
13040    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);
13041    /**
13042     * @brief Delete an item from the hoversel
13043     *
13044     * @param item The item to delete
13045     *
13046     * This deletes the item from the hoversel (should not be called while the
13047     * hoversel is active; use elm_hoversel_expanded_get() to check first).
13048     *
13049     * @see elm_hoversel_item_add()
13050     * @see elm_hoversel_item_del_cb_set()
13051     */
13052    EAPI void               elm_hoversel_item_del(Elm_Hoversel_Item *item) EINA_ARG_NONNULL(1);
13053    /**
13054     * @brief Set the function to be called when an item from the hoversel is
13055     * freed.
13056     *
13057     * @param item The item to set the callback on
13058     * @param func The function called
13059     *
13060     * That function will receive these parameters:
13061     * @li void *item_data
13062     * @li Evas_Object *the_item_object
13063     * @li Elm_Hoversel_Item *the_object_struct
13064     *
13065     * @see elm_hoversel_item_add()
13066     */
13067    EAPI void               elm_hoversel_item_del_cb_set(Elm_Hoversel_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
13068    /**
13069     * @brief This returns the data pointer supplied with elm_hoversel_item_add()
13070     * that will be passed to associated function callbacks.
13071     *
13072     * @param item The item to get the data from
13073     * @return The data pointer set with elm_hoversel_item_add()
13074     *
13075     * @see elm_hoversel_item_add()
13076     */
13077    EAPI void              *elm_hoversel_item_data_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
13078    /**
13079     * @brief This returns the label text of the given hoversel item.
13080     *
13081     * @param item The item to get the label
13082     * @return The label text of the hoversel item
13083     *
13084     * @see elm_hoversel_item_add()
13085     */
13086    EAPI const char        *elm_hoversel_item_label_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
13087    /**
13088     * @brief This sets the icon for the given hoversel item.
13089     *
13090     * @param item The item to set the icon
13091     * @param icon_file An image file path on disk to use for the icon or standard
13092     * icon name
13093     * @param icon_group The edje group to use if @p icon_file is an edje file. Set this
13094     * to NULL if the icon is not an edje file
13095     * @param icon_type The icon type
13096     *
13097     * The icon can be loaded from the standard set, from an image file, or from
13098     * an edje file.
13099     *
13100     * @see elm_hoversel_item_add()
13101     */
13102    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);
13103    /**
13104     * @brief Get the icon object of the hoversel item
13105     *
13106     * @param item The item to get the icon from
13107     * @param icon_file The image file path on disk used for the icon or standard
13108     * icon name
13109     * @param icon_group The edje group used if @p icon_file is an edje file. NULL
13110     * if the icon is not an edje file
13111     * @param icon_type The icon type
13112     *
13113     * @see elm_hoversel_item_icon_set()
13114     * @see elm_hoversel_item_add()
13115     */
13116    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);
13117    /**
13118     * @}
13119     */
13120
13121    /**
13122     * @defgroup Toolbar Toolbar
13123     * @ingroup Elementary
13124     *
13125     * @image html img/widget/toolbar/preview-00.png
13126     * @image latex img/widget/toolbar/preview-00.eps width=\textwidth
13127     *
13128     * @image html img/toolbar.png
13129     * @image latex img/toolbar.eps width=\textwidth
13130     *
13131     * A toolbar is a widget that displays a list of items inside
13132     * a box. It can be scrollable, show a menu with items that don't fit
13133     * to toolbar size or even crop them.
13134     *
13135     * Only one item can be selected at a time.
13136     *
13137     * Items can have multiple states, or show menus when selected by the user.
13138     *
13139     * Smart callbacks one can listen to:
13140     * - "clicked" - when the user clicks on a toolbar item and becomes selected.
13141     *
13142     * Available styles for it:
13143     * - @c "default"
13144     * - @c "transparent" - no background or shadow, just show the content
13145     *
13146     * List of examples:
13147     * @li @ref toolbar_example_01
13148     * @li @ref toolbar_example_02
13149     * @li @ref toolbar_example_03
13150     */
13151
13152    /**
13153     * @addtogroup Toolbar
13154     * @{
13155     */
13156
13157    /**
13158     * @enum _Elm_Toolbar_Shrink_Mode
13159     * @typedef Elm_Toolbar_Shrink_Mode
13160     *
13161     * Set toolbar's items display behavior, it can be scrollabel,
13162     * show a menu with exceeding items, or simply hide them.
13163     *
13164     * @note Default value is #ELM_TOOLBAR_SHRINK_MENU. It reads value
13165     * from elm config.
13166     *
13167     * Values <b> don't </b> work as bitmask, only one can be choosen.
13168     *
13169     * @see elm_toolbar_mode_shrink_set()
13170     * @see elm_toolbar_mode_shrink_get()
13171     *
13172     * @ingroup Toolbar
13173     */
13174    typedef enum _Elm_Toolbar_Shrink_Mode
13175      {
13176         ELM_TOOLBAR_SHRINK_NONE,   /**< Set toolbar minimun size to fit all the items. */
13177         ELM_TOOLBAR_SHRINK_HIDE,   /**< Hide exceeding items. */
13178         ELM_TOOLBAR_SHRINK_SCROLL, /**< Allow accessing exceeding items through a scroller. */
13179         ELM_TOOLBAR_SHRINK_MENU    /**< Inserts a button to pop up a menu with exceeding items. */
13180      } Elm_Toolbar_Shrink_Mode;
13181
13182    typedef struct _Elm_Toolbar_Item Elm_Toolbar_Item; /**< Item of Elm_Toolbar. Sub-type of Elm_Widget_Item. Can be created with elm_toolbar_item_append(), elm_toolbar_item_prepend() and functions to add items in relative positions, like elm_toolbar_item_insert_before(), and deleted with elm_toolbar_item_del(). */
13183
13184    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(). */
13185
13186    /**
13187     * Add a new toolbar widget to the given parent Elementary
13188     * (container) object.
13189     *
13190     * @param parent The parent object.
13191     * @return a new toolbar widget handle or @c NULL, on errors.
13192     *
13193     * This function inserts a new toolbar widget on the canvas.
13194     *
13195     * @ingroup Toolbar
13196     */
13197    EAPI Evas_Object            *elm_toolbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13198
13199    /**
13200     * Set the icon size, in pixels, to be used by toolbar items.
13201     *
13202     * @param obj The toolbar object
13203     * @param icon_size The icon size in pixels
13204     *
13205     * @note Default value is @c 32. It reads value from elm config.
13206     *
13207     * @see elm_toolbar_icon_size_get()
13208     *
13209     * @ingroup Toolbar
13210     */
13211    EAPI void                    elm_toolbar_icon_size_set(Evas_Object *obj, int icon_size) EINA_ARG_NONNULL(1);
13212
13213    /**
13214     * Get the icon size, in pixels, to be used by toolbar items.
13215     *
13216     * @param obj The toolbar object.
13217     * @return The icon size in pixels.
13218     *
13219     * @see elm_toolbar_icon_size_set() for details.
13220     *
13221     * @ingroup Toolbar
13222     */
13223    EAPI int                     elm_toolbar_icon_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13224
13225    /**
13226     * Sets icon lookup order, for toolbar items' icons.
13227     *
13228     * @param obj The toolbar object.
13229     * @param order The icon lookup order.
13230     *
13231     * Icons added before calling this function will not be affected.
13232     * The default lookup order is #ELM_ICON_LOOKUP_THEME_FDO.
13233     *
13234     * @see elm_toolbar_icon_order_lookup_get()
13235     *
13236     * @ingroup Toolbar
13237     */
13238    EAPI void                    elm_toolbar_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
13239
13240    /**
13241     * Gets the icon lookup order.
13242     *
13243     * @param obj The toolbar object.
13244     * @return The icon lookup order.
13245     *
13246     * @see elm_toolbar_icon_order_lookup_set() for details.
13247     *
13248     * @ingroup Toolbar
13249     */
13250    EAPI Elm_Icon_Lookup_Order   elm_toolbar_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13251
13252    /**
13253     * Set whether the toolbar items' should be selected by the user or not.
13254     *
13255     * @param obj The toolbar object.
13256     * @param wrap @c EINA_TRUE to disable selection or @c EINA_FALSE to
13257     * enable it.
13258     *
13259     * This will turn off the ability to select items entirely and they will
13260     * neither appear selected nor emit selected signals. The clicked
13261     * callback function will still be called.
13262     *
13263     * Selection is enabled by default.
13264     *
13265     * @see elm_toolbar_no_select_mode_get().
13266     *
13267     * @ingroup Toolbar
13268     */
13269    EAPI void                    elm_toolbar_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
13270
13271    /**
13272     * Set whether the toolbar items' should be selected by the user or not.
13273     *
13274     * @param obj The toolbar object.
13275     * @return @c EINA_TRUE means items can be selected. @c EINA_FALSE indicates
13276     * they can't. If @p obj is @c NULL, @c EINA_FALSE is returned.
13277     *
13278     * @see elm_toolbar_no_select_mode_set() for details.
13279     *
13280     * @ingroup Toolbar
13281     */
13282    EAPI Eina_Bool               elm_toolbar_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13283
13284    /**
13285     * Append item to the toolbar.
13286     *
13287     * @param obj The toolbar object.
13288     * @param icon A string with icon name or the absolute path of an image file.
13289     * @param label The label of the item.
13290     * @param func The function to call when the item is clicked.
13291     * @param data The data to associate with the item for related callbacks.
13292     * @return The created item or @c NULL upon failure.
13293     *
13294     * A new item will be created and appended to the toolbar, i.e., will
13295     * be set as @b last item.
13296     *
13297     * Items created with this method can be deleted with
13298     * elm_toolbar_item_del().
13299     *
13300     * Associated @p data can be properly freed when item is deleted if a
13301     * callback function is set with elm_toolbar_item_del_cb_set().
13302     *
13303     * If a function is passed as argument, it will be called everytime this item
13304     * is selected, i.e., the user clicks over an unselected item.
13305     * If such function isn't needed, just passing
13306     * @c NULL as @p func is enough. The same should be done for @p data.
13307     *
13308     * Toolbar will load icon image from fdo or current theme.
13309     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
13310     * If an absolute path is provided it will load it direct from a file.
13311     *
13312     * @see elm_toolbar_item_icon_set()
13313     * @see elm_toolbar_item_del()
13314     * @see elm_toolbar_item_del_cb_set()
13315     *
13316     * @ingroup Toolbar
13317     */
13318    EAPI Elm_Toolbar_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);
13319
13320    /**
13321     * Prepend item to the toolbar.
13322     *
13323     * @param obj The toolbar object.
13324     * @param icon A string with icon name or the absolute path of an image file.
13325     * @param label The label of the item.
13326     * @param func The function to call when the item is clicked.
13327     * @param data The data to associate with the item for related callbacks.
13328     * @return The created item or @c NULL upon failure.
13329     *
13330     * A new item will be created and prepended to the toolbar, i.e., will
13331     * be set as @b first item.
13332     *
13333     * Items created with this method can be deleted with
13334     * elm_toolbar_item_del().
13335     *
13336     * Associated @p data can be properly freed when item is deleted if a
13337     * callback function is set with elm_toolbar_item_del_cb_set().
13338     *
13339     * If a function is passed as argument, it will be called everytime this item
13340     * is selected, i.e., the user clicks over an unselected item.
13341     * If such function isn't needed, just passing
13342     * @c NULL as @p func is enough. The same should be done for @p data.
13343     *
13344     * Toolbar will load icon image from fdo or current theme.
13345     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
13346     * If an absolute path is provided it will load it direct from a file.
13347     *
13348     * @see elm_toolbar_item_icon_set()
13349     * @see elm_toolbar_item_del()
13350     * @see elm_toolbar_item_del_cb_set()
13351     *
13352     * @ingroup Toolbar
13353     */
13354    EAPI Elm_Toolbar_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);
13355
13356    /**
13357     * Insert a new item into the toolbar object before item @p before.
13358     *
13359     * @param obj The toolbar object.
13360     * @param before The toolbar item to insert before.
13361     * @param icon A string with icon name or the absolute path of an image file.
13362     * @param label The label of the item.
13363     * @param func The function to call when the item is clicked.
13364     * @param data The data to associate with the item for related callbacks.
13365     * @return The created item or @c NULL upon failure.
13366     *
13367     * A new item will be created and added to the toolbar. Its position in
13368     * this toolbar will be just before item @p before.
13369     *
13370     * Items created with this method can be deleted with
13371     * elm_toolbar_item_del().
13372     *
13373     * Associated @p data can be properly freed when item is deleted if a
13374     * callback function is set with elm_toolbar_item_del_cb_set().
13375     *
13376     * If a function is passed as argument, it will be called everytime this item
13377     * is selected, i.e., the user clicks over an unselected item.
13378     * If such function isn't needed, just passing
13379     * @c NULL as @p func is enough. The same should be done for @p data.
13380     *
13381     * Toolbar will load icon image from fdo or current theme.
13382     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
13383     * If an absolute path is provided it will load it direct from a file.
13384     *
13385     * @see elm_toolbar_item_icon_set()
13386     * @see elm_toolbar_item_del()
13387     * @see elm_toolbar_item_del_cb_set()
13388     *
13389     * @ingroup Toolbar
13390     */
13391    EAPI Elm_Toolbar_Item       *elm_toolbar_item_insert_before(Evas_Object *obj, Elm_Toolbar_Item *before, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
13392
13393    /**
13394     * Insert a new item into the toolbar object after item @p after.
13395     *
13396     * @param obj The toolbar object.
13397     * @param before The toolbar item to insert before.
13398     * @param icon A string with icon name or the absolute path of an image file.
13399     * @param label The label of the item.
13400     * @param func The function to call when the item is clicked.
13401     * @param data The data to associate with the item for related callbacks.
13402     * @return The created item or @c NULL upon failure.
13403     *
13404     * A new item will be created and added to the toolbar. Its position in
13405     * this toolbar will be just after item @p after.
13406     *
13407     * Items created with this method can be deleted with
13408     * elm_toolbar_item_del().
13409     *
13410     * Associated @p data can be properly freed when item is deleted if a
13411     * callback function is set with elm_toolbar_item_del_cb_set().
13412     *
13413     * If a function is passed as argument, it will be called everytime this item
13414     * is selected, i.e., the user clicks over an unselected item.
13415     * If such function isn't needed, just passing
13416     * @c NULL as @p func is enough. The same should be done for @p data.
13417     *
13418     * Toolbar will load icon image from fdo or current theme.
13419     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
13420     * If an absolute path is provided it will load it direct from a file.
13421     *
13422     * @see elm_toolbar_item_icon_set()
13423     * @see elm_toolbar_item_del()
13424     * @see elm_toolbar_item_del_cb_set()
13425     *
13426     * @ingroup Toolbar
13427     */
13428    EAPI Elm_Toolbar_Item       *elm_toolbar_item_insert_after(Evas_Object *obj, Elm_Toolbar_Item *after, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
13429
13430    /**
13431     * Get the first item in the given toolbar widget's list of
13432     * items.
13433     *
13434     * @param obj The toolbar object
13435     * @return The first item or @c NULL, if it has no items (and on
13436     * errors)
13437     *
13438     * @see elm_toolbar_item_append()
13439     * @see elm_toolbar_last_item_get()
13440     *
13441     * @ingroup Toolbar
13442     */
13443    EAPI Elm_Toolbar_Item       *elm_toolbar_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13444
13445    /**
13446     * Get the last item in the given toolbar widget's list of
13447     * items.
13448     *
13449     * @param obj The toolbar object
13450     * @return The last item or @c NULL, if it has no items (and on
13451     * errors)
13452     *
13453     * @see elm_toolbar_item_prepend()
13454     * @see elm_toolbar_first_item_get()
13455     *
13456     * @ingroup Toolbar
13457     */
13458    EAPI Elm_Toolbar_Item       *elm_toolbar_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13459
13460    /**
13461     * Get the item after @p item in toolbar.
13462     *
13463     * @param item The toolbar item.
13464     * @return The item after @p item, or @c NULL if none or on failure.
13465     *
13466     * @note If it is the last item, @c NULL will be returned.
13467     *
13468     * @see elm_toolbar_item_append()
13469     *
13470     * @ingroup Toolbar
13471     */
13472    EAPI Elm_Toolbar_Item       *elm_toolbar_item_next_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13473
13474    /**
13475     * Get the item before @p item in toolbar.
13476     *
13477     * @param item The toolbar item.
13478     * @return The item before @p item, or @c NULL if none or on failure.
13479     *
13480     * @note If it is the first item, @c NULL will be returned.
13481     *
13482     * @see elm_toolbar_item_prepend()
13483     *
13484     * @ingroup Toolbar
13485     */
13486    EAPI Elm_Toolbar_Item       *elm_toolbar_item_prev_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13487
13488    /**
13489     * Get the toolbar object from an item.
13490     *
13491     * @param item The item.
13492     * @return The toolbar object.
13493     *
13494     * This returns the toolbar object itself that an item belongs to.
13495     *
13496     * @ingroup Toolbar
13497     */
13498    EAPI Evas_Object            *elm_toolbar_item_toolbar_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13499
13500    /**
13501     * Set the priority of a toolbar item.
13502     *
13503     * @param item The toolbar item.
13504     * @param priority The item priority. The default is zero.
13505     *
13506     * This is used only when the toolbar shrink mode is set to
13507     * #ELM_TOOLBAR_SHRINK_MENU or #ELM_TOOLBAR_SHRINK_HIDE.
13508     * When space is less than required, items with low priority
13509     * will be removed from the toolbar and added to a dynamically-created menu,
13510     * while items with higher priority will remain on the toolbar,
13511     * with the same order they were added.
13512     *
13513     * @see elm_toolbar_item_priority_get()
13514     *
13515     * @ingroup Toolbar
13516     */
13517    EAPI void                    elm_toolbar_item_priority_set(Elm_Toolbar_Item *item, int priority) EINA_ARG_NONNULL(1);
13518
13519    /**
13520     * Get the priority of a toolbar item.
13521     *
13522     * @param item The toolbar item.
13523     * @return The @p item priority, or @c 0 on failure.
13524     *
13525     * @see elm_toolbar_item_priority_set() for details.
13526     *
13527     * @ingroup Toolbar
13528     */
13529    EAPI int                     elm_toolbar_item_priority_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13530
13531    /**
13532     * Get the label of item.
13533     *
13534     * @param item The item of toolbar.
13535     * @return The label of item.
13536     *
13537     * The return value is a pointer to the label associated to @p item when
13538     * it was created, with function elm_toolbar_item_append() or similar,
13539     * or later,
13540     * with function elm_toolbar_item_label_set. If no label
13541     * was passed as argument, it will return @c NULL.
13542     *
13543     * @see elm_toolbar_item_label_set() for more details.
13544     * @see elm_toolbar_item_append()
13545     *
13546     * @ingroup Toolbar
13547     */
13548    EAPI const char             *elm_toolbar_item_label_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13549
13550    /**
13551     * Set the label of item.
13552     *
13553     * @param item The item of toolbar.
13554     * @param text The label of item.
13555     *
13556     * The label to be displayed by the item.
13557     * Label will be placed at icons bottom (if set).
13558     *
13559     * If a label was passed as argument on item creation, with function
13560     * elm_toolbar_item_append() or similar, it will be already
13561     * displayed by the item.
13562     *
13563     * @see elm_toolbar_item_label_get()
13564     * @see elm_toolbar_item_append()
13565     *
13566     * @ingroup Toolbar
13567     */
13568    EAPI void                    elm_toolbar_item_label_set(Elm_Toolbar_Item *item, const char *label) EINA_ARG_NONNULL(1);
13569
13570    /**
13571     * Return the data associated with a given toolbar widget item.
13572     *
13573     * @param item The toolbar widget item handle.
13574     * @return The data associated with @p item.
13575     *
13576     * @see elm_toolbar_item_data_set()
13577     *
13578     * @ingroup Toolbar
13579     */
13580    EAPI void                   *elm_toolbar_item_data_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13581
13582    /**
13583     * Set the data associated with a given toolbar widget item.
13584     *
13585     * @param item The toolbar widget item handle.
13586     * @param data The new data pointer to set to @p item.
13587     *
13588     * This sets new item data on @p item.
13589     *
13590     * @warning The old data pointer won't be touched by this function, so
13591     * the user had better to free that old data himself/herself.
13592     *
13593     * @ingroup Toolbar
13594     */
13595    EAPI void                    elm_toolbar_item_data_set(Elm_Toolbar_Item *item, const void *data) EINA_ARG_NONNULL(1);
13596
13597    /**
13598     * Returns a pointer to a toolbar item by its label.
13599     *
13600     * @param obj The toolbar object.
13601     * @param label The label of the item to find.
13602     *
13603     * @return The pointer to the toolbar item matching @p label or @c NULL
13604     * on failure.
13605     *
13606     * @ingroup Toolbar
13607     */
13608    EAPI Elm_Toolbar_Item       *elm_toolbar_item_find_by_label(const Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
13609
13610    /*
13611     * Get whether the @p item is selected or not.
13612     *
13613     * @param item The toolbar item.
13614     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
13615     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
13616     *
13617     * @see elm_toolbar_selected_item_set() for details.
13618     * @see elm_toolbar_item_selected_get()
13619     *
13620     * @ingroup Toolbar
13621     */
13622    EAPI Eina_Bool               elm_toolbar_item_selected_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13623
13624    /**
13625     * Set the selected state of an item.
13626     *
13627     * @param item The toolbar item
13628     * @param selected The selected state
13629     *
13630     * This sets the selected state of the given item @p it.
13631     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
13632     *
13633     * If a new item is selected the previosly selected will be unselected.
13634     * Previoulsy selected item can be get with function
13635     * elm_toolbar_selected_item_get().
13636     *
13637     * Selected items will be highlighted.
13638     *
13639     * @see elm_toolbar_item_selected_get()
13640     * @see elm_toolbar_selected_item_get()
13641     *
13642     * @ingroup Toolbar
13643     */
13644    EAPI void                    elm_toolbar_item_selected_set(Elm_Toolbar_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
13645
13646    /**
13647     * Get the selected item.
13648     *
13649     * @param obj The toolbar object.
13650     * @return The selected toolbar item.
13651     *
13652     * The selected item can be unselected with function
13653     * elm_toolbar_item_selected_set().
13654     *
13655     * The selected item always will be highlighted on toolbar.
13656     *
13657     * @see elm_toolbar_selected_items_get()
13658     *
13659     * @ingroup Toolbar
13660     */
13661    EAPI Elm_Toolbar_Item       *elm_toolbar_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13662
13663    /**
13664     * Set the icon associated with @p item.
13665     *
13666     * @param obj The parent of this item.
13667     * @param item The toolbar item.
13668     * @param icon A string with icon name or the absolute path of an image file.
13669     *
13670     * Toolbar will load icon image from fdo or current theme.
13671     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
13672     * If an absolute path is provided it will load it direct from a file.
13673     *
13674     * @see elm_toolbar_icon_order_lookup_set()
13675     * @see elm_toolbar_icon_order_lookup_get()
13676     *
13677     * @ingroup Toolbar
13678     */
13679    EAPI void                    elm_toolbar_item_icon_set(Elm_Toolbar_Item *item, const char *icon) EINA_ARG_NONNULL(1);
13680
13681    /**
13682     * Get the string used to set the icon of @p item.
13683     *
13684     * @param item The toolbar item.
13685     * @return The string associated with the icon object.
13686     *
13687     * @see elm_toolbar_item_icon_set() for details.
13688     *
13689     * @ingroup Toolbar
13690     */
13691    EAPI const char             *elm_toolbar_item_icon_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13692
13693    /**
13694     * Delete them item from the toolbar.
13695     *
13696     * @param item The item of toolbar to be deleted.
13697     *
13698     * @see elm_toolbar_item_append()
13699     * @see elm_toolbar_item_del_cb_set()
13700     *
13701     * @ingroup Toolbar
13702     */
13703    EAPI void                    elm_toolbar_item_del(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13704
13705    /**
13706     * Set the function called when a toolbar item is freed.
13707     *
13708     * @param item The item to set the callback on.
13709     * @param func The function called.
13710     *
13711     * If there is a @p func, then it will be called prior item's memory release.
13712     * That will be called with the following arguments:
13713     * @li item's data;
13714     * @li item's Evas object;
13715     * @li item itself;
13716     *
13717     * This way, a data associated to a toolbar item could be properly freed.
13718     *
13719     * @ingroup Toolbar
13720     */
13721    EAPI void                    elm_toolbar_item_del_cb_set(Elm_Toolbar_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
13722
13723    /**
13724     * Get a value whether toolbar item is disabled or not.
13725     *
13726     * @param item The item.
13727     * @return The disabled state.
13728     *
13729     * @see elm_toolbar_item_disabled_set() for more details.
13730     *
13731     * @ingroup Toolbar
13732     */
13733    EAPI Eina_Bool               elm_toolbar_item_disabled_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13734
13735    /**
13736     * Sets the disabled/enabled state of a toolbar item.
13737     *
13738     * @param item The item.
13739     * @param disabled The disabled state.
13740     *
13741     * A disabled item cannot be selected or unselected. It will also
13742     * change its appearance (generally greyed out). This sets the
13743     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
13744     * enabled).
13745     *
13746     * @ingroup Toolbar
13747     */
13748    EAPI void                    elm_toolbar_item_disabled_set(Elm_Toolbar_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
13749
13750    /**
13751     * Set or unset item as a separator.
13752     *
13753     * @param item The toolbar item.
13754     * @param setting @c EINA_TRUE to set item @p item as separator or
13755     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
13756     *
13757     * Items aren't set as separator by default.
13758     *
13759     * If set as separator it will display separator theme, so won't display
13760     * icons or label.
13761     *
13762     * @see elm_toolbar_item_separator_get()
13763     *
13764     * @ingroup Toolbar
13765     */
13766    EAPI void                    elm_toolbar_item_separator_set(Elm_Toolbar_Item *item, Eina_Bool separator) EINA_ARG_NONNULL(1);
13767
13768    /**
13769     * Get a value whether item is a separator or not.
13770     *
13771     * @param item The toolbar item.
13772     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
13773     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
13774     *
13775     * @see elm_toolbar_item_separator_set() for details.
13776     *
13777     * @ingroup Toolbar
13778     */
13779    EAPI Eina_Bool               elm_toolbar_item_separator_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13780
13781    /**
13782     * Set the shrink state of toolbar @p obj.
13783     *
13784     * @param obj The toolbar object.
13785     * @param shrink_mode Toolbar's items display behavior.
13786     *
13787     * The toolbar won't scroll if #ELM_TOOLBAR_SHRINK_NONE,
13788     * but will enforce a minimun size so all the items will fit, won't scroll
13789     * and won't show the items that don't fit if #ELM_TOOLBAR_SHRINK_HIDE,
13790     * will scroll if #ELM_TOOLBAR_SHRINK_SCROLL, and will create a button to
13791     * pop up excess elements with #ELM_TOOLBAR_SHRINK_MENU.
13792     *
13793     * @ingroup Toolbar
13794     */
13795    EAPI void                    elm_toolbar_mode_shrink_set(Evas_Object *obj, Elm_Toolbar_Shrink_Mode shrink_mode) EINA_ARG_NONNULL(1);
13796
13797    /**
13798     * Get the shrink mode of toolbar @p obj.
13799     *
13800     * @param obj The toolbar object.
13801     * @return Toolbar's items display behavior.
13802     *
13803     * @see elm_toolbar_mode_shrink_set() for details.
13804     *
13805     * @ingroup Toolbar
13806     */
13807    EAPI Elm_Toolbar_Shrink_Mode elm_toolbar_mode_shrink_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13808
13809    /**
13810     * Enable/disable homogenous mode.
13811     *
13812     * @param obj The toolbar object
13813     * @param homogeneous Assume the items within the toolbar are of the
13814     * same size (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE.
13815     *
13816     * This will enable the homogeneous mode where items are of the same size.
13817     * @see elm_toolbar_homogeneous_get()
13818     *
13819     * @ingroup Toolbar
13820     */
13821    EAPI void                    elm_toolbar_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
13822
13823    /**
13824     * Get whether the homogenous mode is enabled.
13825     *
13826     * @param obj The toolbar object.
13827     * @return Assume the items within the toolbar are of the same height
13828     * and width (EINA_TRUE = on, EINA_FALSE = off).
13829     *
13830     * @see elm_toolbar_homogeneous_set()
13831     *
13832     * @ingroup Toolbar
13833     */
13834    EAPI Eina_Bool               elm_toolbar_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13835
13836    /**
13837     * Enable/disable homogenous mode.
13838     *
13839     * @param obj The toolbar object
13840     * @param homogeneous Assume the items within the toolbar are of the
13841     * same size (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE.
13842     *
13843     * This will enable the homogeneous mode where items are of the same size.
13844     * @see elm_toolbar_homogeneous_get()
13845     *
13846     * @deprecated use elm_toolbar_homogeneous_set() instead.
13847     *
13848     * @ingroup Toolbar
13849     */
13850    EINA_DEPRECATED EAPI void    elm_toolbar_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
13851
13852    /**
13853     * Get whether the homogenous mode is enabled.
13854     *
13855     * @param obj The toolbar object.
13856     * @return Assume the items within the toolbar are of the same height
13857     * and width (EINA_TRUE = on, EINA_FALSE = off).
13858     *
13859     * @see elm_toolbar_homogeneous_set()
13860     * @deprecated use elm_toolbar_homogeneous_get() instead.
13861     *
13862     * @ingroup Toolbar
13863     */
13864    EINA_DEPRECATED EAPI Eina_Bool elm_toolbar_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13865
13866    /**
13867     * Set the parent object of the toolbar items' menus.
13868     *
13869     * @param obj The toolbar object.
13870     * @param parent The parent of the menu objects.
13871     *
13872     * Each item can be set as item menu, with elm_toolbar_item_menu_set().
13873     *
13874     * For more details about setting the parent for toolbar menus, see
13875     * elm_menu_parent_set().
13876     *
13877     * @see elm_menu_parent_set() for details.
13878     * @see elm_toolbar_item_menu_set() for details.
13879     *
13880     * @ingroup Toolbar
13881     */
13882    EAPI void                    elm_toolbar_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
13883
13884    /**
13885     * Get the parent object of the toolbar items' menus.
13886     *
13887     * @param obj The toolbar object.
13888     * @return The parent of the menu objects.
13889     *
13890     * @see elm_toolbar_menu_parent_set() for details.
13891     *
13892     * @ingroup Toolbar
13893     */
13894    EAPI Evas_Object            *elm_toolbar_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13895
13896    /**
13897     * Set the alignment of the items.
13898     *
13899     * @param obj The toolbar object.
13900     * @param align The new alignment, a float between <tt> 0.0 </tt>
13901     * and <tt> 1.0 </tt>.
13902     *
13903     * Alignment of toolbar items, from <tt> 0.0 </tt> to indicates to align
13904     * left, to <tt> 1.0 </tt>, to align to right. <tt> 0.5 </tt> centralize
13905     * items.
13906     *
13907     * Centered items by default.
13908     *
13909     * @see elm_toolbar_align_get()
13910     *
13911     * @ingroup Toolbar
13912     */
13913    EAPI void                    elm_toolbar_align_set(Evas_Object *obj, double align) EINA_ARG_NONNULL(1);
13914
13915    /**
13916     * Get the alignment of the items.
13917     *
13918     * @param obj The toolbar object.
13919     * @return toolbar items alignment, a float between <tt> 0.0 </tt> and
13920     * <tt> 1.0 </tt>.
13921     *
13922     * @see elm_toolbar_align_set() for details.
13923     *
13924     * @ingroup Toolbar
13925     */
13926    EAPI double                  elm_toolbar_align_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13927
13928    /**
13929     * Set whether the toolbar item opens a menu.
13930     *
13931     * @param item The toolbar item.
13932     * @param menu If @c EINA_TRUE, @p item will opens a menu when selected.
13933     *
13934     * A toolbar item can be set to be a menu, using this function.
13935     *
13936     * Once it is set to be a menu, it can be manipulated through the
13937     * menu-like function elm_toolbar_menu_parent_set() and the other
13938     * elm_menu functions, using the Evas_Object @c menu returned by
13939     * elm_toolbar_item_menu_get().
13940     *
13941     * So, items to be displayed in this item's menu should be added with
13942     * elm_menu_item_add().
13943     *
13944     * The following code exemplifies the most basic usage:
13945     * @code
13946     * tb = elm_toolbar_add(win)
13947     * item = elm_toolbar_item_append(tb, "refresh", "Menu", NULL, NULL);
13948     * elm_toolbar_item_menu_set(item, EINA_TRUE);
13949     * elm_toolbar_menu_parent_set(tb, win);
13950     * menu = elm_toolbar_item_menu_get(item);
13951     * elm_menu_item_add(menu, NULL, "edit-cut", "Cut", NULL, NULL);
13952     * menu_item = elm_menu_item_add(menu, NULL, "edit-copy", "Copy", NULL,
13953     * NULL);
13954     * @endcode
13955     *
13956     * @see elm_toolbar_item_menu_get()
13957     *
13958     * @ingroup Toolbar
13959     */
13960    EAPI void                    elm_toolbar_item_menu_set(Elm_Toolbar_Item *item, Eina_Bool menu) EINA_ARG_NONNULL(1);
13961
13962    /**
13963     * Get toolbar item's menu.
13964     *
13965     * @param item The toolbar item.
13966     * @return Item's menu object or @c NULL on failure.
13967     *
13968     * If @p item wasn't set as menu item with elm_toolbar_item_menu_set(),
13969     * this function will set it.
13970     *
13971     * @see elm_toolbar_item_menu_set() for details.
13972     *
13973     * @ingroup Toolbar
13974     */
13975    EAPI Evas_Object            *elm_toolbar_item_menu_get(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
13976
13977    /**
13978     * Add a new state to @p item.
13979     *
13980     * @param item The item.
13981     * @param icon A string with icon name or the absolute path of an image file.
13982     * @param label The label of the new state.
13983     * @param func The function to call when the item is clicked when this
13984     * state is selected.
13985     * @param data The data to associate with the state.
13986     * @return The toolbar item state, or @c NULL upon failure.
13987     *
13988     * Toolbar will load icon image from fdo or current theme.
13989     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
13990     * If an absolute path is provided it will load it direct from a file.
13991     *
13992     * States created with this function can be removed with
13993     * elm_toolbar_item_state_del().
13994     *
13995     * @see elm_toolbar_item_state_del()
13996     * @see elm_toolbar_item_state_sel()
13997     * @see elm_toolbar_item_state_get()
13998     *
13999     * @ingroup Toolbar
14000     */
14001    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_add(Elm_Toolbar_Item *item, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14002
14003    /**
14004     * Delete a previoulsy added state to @p item.
14005     *
14006     * @param item The toolbar item.
14007     * @param state The state to be deleted.
14008     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
14009     *
14010     * @see elm_toolbar_item_state_add()
14011     */
14012    EAPI Eina_Bool               elm_toolbar_item_state_del(Elm_Toolbar_Item *item, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
14013
14014    /**
14015     * Set @p state as the current state of @p it.
14016     *
14017     * @param it The item.
14018     * @param state The state to use.
14019     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
14020     *
14021     * If @p state is @c NULL, it won't select any state and the default item's
14022     * icon and label will be used. It's the same behaviour than
14023     * elm_toolbar_item_state_unser().
14024     *
14025     * @see elm_toolbar_item_state_unset()
14026     *
14027     * @ingroup Toolbar
14028     */
14029    EAPI Eina_Bool               elm_toolbar_item_state_set(Elm_Toolbar_Item *it, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
14030
14031    /**
14032     * Unset the state of @p it.
14033     *
14034     * @param it The item.
14035     *
14036     * The default icon and label from this item will be displayed.
14037     *
14038     * @see elm_toolbar_item_state_set() for more details.
14039     *
14040     * @ingroup Toolbar
14041     */
14042    EAPI void                    elm_toolbar_item_state_unset(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
14043
14044    /**
14045     * Get the current state of @p it.
14046     *
14047     * @param item The item.
14048     * @return The selected state or @c NULL if none is selected or on failure.
14049     *
14050     * @see elm_toolbar_item_state_set() for details.
14051     * @see elm_toolbar_item_state_unset()
14052     * @see elm_toolbar_item_state_add()
14053     *
14054     * @ingroup Toolbar
14055     */
14056    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_get(const Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
14057
14058    /**
14059     * Get the state after selected state in toolbar's @p item.
14060     *
14061     * @param it The toolbar item to change state.
14062     * @return The state after current state, or @c NULL on failure.
14063     *
14064     * If last state is selected, this function will return first state.
14065     *
14066     * @see elm_toolbar_item_state_set()
14067     * @see elm_toolbar_item_state_add()
14068     *
14069     * @ingroup Toolbar
14070     */
14071    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_next(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
14072
14073    /**
14074     * Get the state before selected state in toolbar's @p item.
14075     *
14076     * @param it The toolbar item to change state.
14077     * @return The state before current state, or @c NULL on failure.
14078     *
14079     * If first state is selected, this function will return last state.
14080     *
14081     * @see elm_toolbar_item_state_set()
14082     * @see elm_toolbar_item_state_add()
14083     *
14084     * @ingroup Toolbar
14085     */
14086    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_prev(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
14087
14088    /**
14089     * Set the text to be shown in a given toolbar item's tooltips.
14090     *
14091     * @param item Target item.
14092     * @param text The text to set in the content.
14093     *
14094     * Setup the text as tooltip to object. The item can have only one tooltip,
14095     * so any previous tooltip data - set with this function or
14096     * elm_toolbar_item_tooltip_content_cb_set() - is removed.
14097     *
14098     * @see elm_object_tooltip_text_set() for more details.
14099     *
14100     * @ingroup Toolbar
14101     */
14102    EAPI void             elm_toolbar_item_tooltip_text_set(Elm_Toolbar_Item *item, const char *text) EINA_ARG_NONNULL(1);
14103
14104    /**
14105     * Set the content to be shown in the tooltip item.
14106     *
14107     * Setup the tooltip to item. The item can have only one tooltip,
14108     * so any previous tooltip data is removed. @p func(with @p data) will
14109     * be called every time that need show the tooltip and it should
14110     * return a valid Evas_Object. This object is then managed fully by
14111     * tooltip system and is deleted when the tooltip is gone.
14112     *
14113     * @param item the toolbar item being attached a tooltip.
14114     * @param func the function used to create the tooltip contents.
14115     * @param data what to provide to @a func as callback data/context.
14116     * @param del_cb called when data is not needed anymore, either when
14117     *        another callback replaces @a func, the tooltip is unset with
14118     *        elm_toolbar_item_tooltip_unset() or the owner @a item
14119     *        dies. This callback receives as the first parameter the
14120     *        given @a data, and @c event_info is the item.
14121     *
14122     * @see elm_object_tooltip_content_cb_set() for more details.
14123     *
14124     * @ingroup Toolbar
14125     */
14126    EAPI void             elm_toolbar_item_tooltip_content_cb_set(Elm_Toolbar_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
14127
14128    /**
14129     * Unset tooltip from item.
14130     *
14131     * @param item toolbar item to remove previously set tooltip.
14132     *
14133     * Remove tooltip from item. The callback provided as del_cb to
14134     * elm_toolbar_item_tooltip_content_cb_set() will be called to notify
14135     * it is not used anymore.
14136     *
14137     * @see elm_object_tooltip_unset() for more details.
14138     * @see elm_toolbar_item_tooltip_content_cb_set()
14139     *
14140     * @ingroup Toolbar
14141     */
14142    EAPI void             elm_toolbar_item_tooltip_unset(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14143
14144    /**
14145     * Sets a different style for this item tooltip.
14146     *
14147     * @note before you set a style you should define a tooltip with
14148     *       elm_toolbar_item_tooltip_content_cb_set() or
14149     *       elm_toolbar_item_tooltip_text_set()
14150     *
14151     * @param item toolbar item with tooltip already set.
14152     * @param style the theme style to use (default, transparent, ...)
14153     *
14154     * @see elm_object_tooltip_style_set() for more details.
14155     *
14156     * @ingroup Toolbar
14157     */
14158    EAPI void             elm_toolbar_item_tooltip_style_set(Elm_Toolbar_Item *item, const char *style) EINA_ARG_NONNULL(1);
14159
14160    /**
14161     * Get the style for this item tooltip.
14162     *
14163     * @param item toolbar item with tooltip already set.
14164     * @return style the theme style in use, defaults to "default". If the
14165     *         object does not have a tooltip set, then NULL is returned.
14166     *
14167     * @see elm_object_tooltip_style_get() for more details.
14168     * @see elm_toolbar_item_tooltip_style_set()
14169     *
14170     * @ingroup Toolbar
14171     */
14172    EAPI const char      *elm_toolbar_item_tooltip_style_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14173
14174    /**
14175     * Set the type of mouse pointer/cursor decoration to be shown,
14176     * when the mouse pointer is over the given toolbar widget item
14177     *
14178     * @param item toolbar item to customize cursor on
14179     * @param cursor the cursor type's name
14180     *
14181     * This function works analogously as elm_object_cursor_set(), but
14182     * here the cursor's changing area is restricted to the item's
14183     * area, and not the whole widget's. Note that that item cursors
14184     * have precedence over widget cursors, so that a mouse over an
14185     * item with custom cursor set will always show @b that cursor.
14186     *
14187     * If this function is called twice for an object, a previously set
14188     * cursor will be unset on the second call.
14189     *
14190     * @see elm_object_cursor_set()
14191     * @see elm_toolbar_item_cursor_get()
14192     * @see elm_toolbar_item_cursor_unset()
14193     *
14194     * @ingroup Toolbar
14195     */
14196    EAPI void             elm_toolbar_item_cursor_set(Elm_Toolbar_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
14197
14198    /*
14199     * Get the type of mouse pointer/cursor decoration set to be shown,
14200     * when the mouse pointer is over the given toolbar widget item
14201     *
14202     * @param item toolbar item with custom cursor set
14203     * @return the cursor type's name or @c NULL, if no custom cursors
14204     * were set to @p item (and on errors)
14205     *
14206     * @see elm_object_cursor_get()
14207     * @see elm_toolbar_item_cursor_set()
14208     * @see elm_toolbar_item_cursor_unset()
14209     *
14210     * @ingroup Toolbar
14211     */
14212    EAPI const char      *elm_toolbar_item_cursor_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14213
14214    /**
14215     * Unset any custom mouse pointer/cursor decoration set to be
14216     * shown, when the mouse pointer is over the given toolbar widget
14217     * item, thus making it show the @b default cursor again.
14218     *
14219     * @param item a toolbar item
14220     *
14221     * Use this call to undo any custom settings on this item's cursor
14222     * decoration, bringing it back to defaults (no custom style set).
14223     *
14224     * @see elm_object_cursor_unset()
14225     * @see elm_toolbar_item_cursor_set()
14226     *
14227     * @ingroup Toolbar
14228     */
14229    EAPI void             elm_toolbar_item_cursor_unset(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14230
14231    /**
14232     * Set a different @b style for a given custom cursor set for a
14233     * toolbar item.
14234     *
14235     * @param item toolbar item with custom cursor set
14236     * @param style the <b>theme style</b> to use (e.g. @c "default",
14237     * @c "transparent", etc)
14238     *
14239     * This function only makes sense when one is using custom mouse
14240     * cursor decorations <b>defined in a theme file</b>, which can have,
14241     * given a cursor name/type, <b>alternate styles</b> on it. It
14242     * works analogously as elm_object_cursor_style_set(), but here
14243     * applyed only to toolbar item objects.
14244     *
14245     * @warning Before you set a cursor style you should have definen a
14246     *       custom cursor previously on the item, with
14247     *       elm_toolbar_item_cursor_set()
14248     *
14249     * @see elm_toolbar_item_cursor_engine_only_set()
14250     * @see elm_toolbar_item_cursor_style_get()
14251     *
14252     * @ingroup Toolbar
14253     */
14254    EAPI void             elm_toolbar_item_cursor_style_set(Elm_Toolbar_Item *item, const char *style) EINA_ARG_NONNULL(1);
14255
14256    /**
14257     * Get the current @b style set for a given toolbar item's custom
14258     * cursor
14259     *
14260     * @param item toolbar item with custom cursor set.
14261     * @return style the cursor style in use. If the object does not
14262     *         have a cursor set, then @c NULL is returned.
14263     *
14264     * @see elm_toolbar_item_cursor_style_set() for more details
14265     *
14266     * @ingroup Toolbar
14267     */
14268    EAPI const char      *elm_toolbar_item_cursor_style_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14269
14270    /**
14271     * Set if the (custom)cursor for a given toolbar item should be
14272     * searched in its theme, also, or should only rely on the
14273     * rendering engine.
14274     *
14275     * @param item item with custom (custom) cursor already set on
14276     * @param engine_only Use @c EINA_TRUE to have cursors looked for
14277     * only on those provided by the rendering engine, @c EINA_FALSE to
14278     * have them searched on the widget's theme, as well.
14279     *
14280     * @note This call is of use only if you've set a custom cursor
14281     * for toolbar items, with elm_toolbar_item_cursor_set().
14282     *
14283     * @note By default, cursors will only be looked for between those
14284     * provided by the rendering engine.
14285     *
14286     * @ingroup Toolbar
14287     */
14288    EAPI void             elm_toolbar_item_cursor_engine_only_set(Elm_Toolbar_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
14289
14290    /**
14291     * Get if the (custom) cursor for a given toolbar item is being
14292     * searched in its theme, also, or is only relying on the rendering
14293     * engine.
14294     *
14295     * @param item a toolbar item
14296     * @return @c EINA_TRUE, if cursors are being looked for only on
14297     * those provided by the rendering engine, @c EINA_FALSE if they
14298     * are being searched on the widget's theme, as well.
14299     *
14300     * @see elm_toolbar_item_cursor_engine_only_set(), for more details
14301     *
14302     * @ingroup Toolbar
14303     */
14304    EAPI Eina_Bool        elm_toolbar_item_cursor_engine_only_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14305
14306    /**
14307     * Change a toolbar's orientation
14308     * @param obj The toolbar object
14309     * @param vertical If @c EINA_TRUE, the toolbar is vertical
14310     * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
14311     * @ingroup Toolbar
14312     */
14313    EAPI void             elm_toolbar_orientation_set(Evas_Object *obj, Eina_Bool vertical) EINA_ARG_NONNULL(1);
14314
14315    /**
14316     * Get a toolbar's orientation
14317     * @param obj The toolbar object
14318     * @return If @c EINA_TRUE, the toolbar is vertical
14319     * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
14320     * @ingroup Toolbar
14321     */
14322    EAPI Eina_Bool        elm_toolbar_orientation_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
14323
14324    /**
14325     * @}
14326     */
14327
14328    /**
14329     * @defgroup Tooltips Tooltips
14330     *
14331     * The Tooltip is an (internal, for now) smart object used to show a
14332     * content in a frame on mouse hover of objects(or widgets), with
14333     * tips/information about them.
14334     *
14335     * @{
14336     */
14337
14338    EAPI double       elm_tooltip_delay_get(void);
14339    EAPI Eina_Bool    elm_tooltip_delay_set(double delay);
14340    EAPI void         elm_object_tooltip_show(Evas_Object *obj) EINA_ARG_NONNULL(1);
14341    EAPI void         elm_object_tooltip_hide(Evas_Object *obj) EINA_ARG_NONNULL(1);
14342    EAPI void         elm_object_tooltip_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1, 2);
14343    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);
14344    EAPI void         elm_object_tooltip_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14345    EAPI void         elm_object_tooltip_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
14346    EAPI const char  *elm_object_tooltip_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14347    EAPI Eina_Bool    elm_tooltip_size_restrict_disable(Evas_Object *obj, Eina_Bool disable); EINA_ARG_NONNULL(1);
14348    EAPI Eina_Bool    elm_tooltip_size_restrict_disabled_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
14349
14350    /**
14351     * @}
14352     */
14353
14354    /**
14355     * @defgroup Cursors Cursors
14356     *
14357     * The Elementary cursor is an internal smart object used to
14358     * customize the mouse cursor displayed over objects (or
14359     * widgets). In the most common scenario, the cursor decoration
14360     * comes from the graphical @b engine Elementary is running
14361     * on. Those engines may provide different decorations for cursors,
14362     * and Elementary provides functions to choose them (think of X11
14363     * cursors, as an example).
14364     *
14365     * There's also the possibility of, besides using engine provided
14366     * cursors, also use ones coming from Edje theming files. Both
14367     * globally and per widget, Elementary makes it possible for one to
14368     * make the cursors lookup to be held on engines only or on
14369     * Elementary's theme file, too.
14370     *
14371     * @{
14372     */
14373
14374    /**
14375     * Set the cursor to be shown when mouse is over the object
14376     *
14377     * Set the cursor that will be displayed when mouse is over the
14378     * object. The object can have only one cursor set to it, so if
14379     * this function is called twice for an object, the previous set
14380     * will be unset.
14381     * If using X cursors, a definition of all the valid cursor names
14382     * is listed on Elementary_Cursors.h. If an invalid name is set
14383     * the default cursor will be used.
14384     *
14385     * @param obj the object being set a cursor.
14386     * @param cursor the cursor name to be used.
14387     *
14388     * @ingroup Cursors
14389     */
14390    EAPI void         elm_object_cursor_set(Evas_Object *obj, const char *cursor) EINA_ARG_NONNULL(1);
14391
14392    /**
14393     * Get the cursor to be shown when mouse is over the object
14394     *
14395     * @param obj an object with cursor already set.
14396     * @return the cursor name.
14397     *
14398     * @ingroup Cursors
14399     */
14400    EAPI const char  *elm_object_cursor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14401
14402    /**
14403     * Unset cursor for object
14404     *
14405     * Unset cursor for object, and set the cursor to default if the mouse
14406     * was over this object.
14407     *
14408     * @param obj Target object
14409     * @see elm_object_cursor_set()
14410     *
14411     * @ingroup Cursors
14412     */
14413    EAPI void         elm_object_cursor_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14414
14415    /**
14416     * Sets a different style for this object cursor.
14417     *
14418     * @note before you set a style you should define a cursor with
14419     *       elm_object_cursor_set()
14420     *
14421     * @param obj an object with cursor already set.
14422     * @param style the theme style to use (default, transparent, ...)
14423     *
14424     * @ingroup Cursors
14425     */
14426    EAPI void         elm_object_cursor_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
14427
14428    /**
14429     * Get the style for this object cursor.
14430     *
14431     * @param obj an object with cursor already set.
14432     * @return style the theme style in use, defaults to "default". If the
14433     *         object does not have a cursor set, then NULL is returned.
14434     *
14435     * @ingroup Cursors
14436     */
14437    EAPI const char  *elm_object_cursor_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14438
14439    /**
14440     * Set if the cursor set should be searched on the theme or should use
14441     * the provided by the engine, only.
14442     *
14443     * @note before you set if should look on theme you should define a cursor
14444     * with elm_object_cursor_set(). By default it will only look for cursors
14445     * provided by the engine.
14446     *
14447     * @param obj an object with cursor already set.
14448     * @param engine_only boolean to define it cursors should be looked only
14449     * between the provided by the engine or searched on widget's theme as well.
14450     *
14451     * @ingroup Cursors
14452     */
14453    EAPI void         elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
14454
14455    /**
14456     * Get the cursor engine only usage for this object cursor.
14457     *
14458     * @param obj an object with cursor already set.
14459     * @return engine_only boolean to define it cursors should be
14460     * looked only between the provided by the engine or searched on
14461     * widget's theme as well. If the object does not have a cursor
14462     * set, then EINA_FALSE is returned.
14463     *
14464     * @ingroup Cursors
14465     */
14466    EAPI Eina_Bool    elm_object_cursor_engine_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14467
14468    /**
14469     * Get the configured cursor engine only usage
14470     *
14471     * This gets the globally configured exclusive usage of engine cursors.
14472     *
14473     * @return 1 if only engine cursors should be used
14474     * @ingroup Cursors
14475     */
14476    EAPI int          elm_cursor_engine_only_get(void);
14477
14478    /**
14479     * Set the configured cursor engine only usage
14480     *
14481     * This sets the globally configured exclusive usage of engine cursors.
14482     * It won't affect cursors set before changing this value.
14483     *
14484     * @param engine_only If 1 only engine cursors will be enabled, if 0 will
14485     * look for them on theme before.
14486     * @return EINA_TRUE if value is valid and setted (0 or 1)
14487     * @ingroup Cursors
14488     */
14489    EAPI Eina_Bool    elm_cursor_engine_only_set(int engine_only);
14490
14491    /**
14492     * @}
14493     */
14494
14495    /**
14496     * @defgroup Menu Menu
14497     *
14498     * @image html img/widget/menu/preview-00.png
14499     * @image latex img/widget/menu/preview-00.eps
14500     *
14501     * A menu is a list of items displayed above its parent. When the menu is
14502     * showing its parent is darkened. Each item can have a sub-menu. The menu
14503     * object can be used to display a menu on a right click event, in a toolbar,
14504     * anywhere.
14505     *
14506     * Signals that you can add callbacks for are:
14507     * @li "clicked" - the user clicked the empty space in the menu to dismiss.
14508     *             event_info is NULL.
14509     *
14510     * @see @ref tutorial_menu
14511     * @{
14512     */
14513    typedef struct _Elm_Menu_Item Elm_Menu_Item; /**< Item of Elm_Menu. Sub-type of Elm_Widget_Item */
14514    /**
14515     * @brief Add a new menu to the parent
14516     *
14517     * @param parent The parent object.
14518     * @return The new object or NULL if it cannot be created.
14519     */
14520    EAPI Evas_Object       *elm_menu_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14521    /**
14522     * @brief Set the parent for the given menu widget
14523     *
14524     * @param obj The menu object.
14525     * @param parent The new parent.
14526     */
14527    EAPI void               elm_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
14528    /**
14529     * @brief Get the parent for the given menu widget
14530     *
14531     * @param obj The menu object.
14532     * @return The parent.
14533     *
14534     * @see elm_menu_parent_set()
14535     */
14536    EAPI Evas_Object       *elm_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14537    /**
14538     * @brief Move the menu to a new position
14539     *
14540     * @param obj The menu object.
14541     * @param x The new position.
14542     * @param y The new position.
14543     *
14544     * Sets the top-left position of the menu to (@p x,@p y).
14545     *
14546     * @note @p x and @p y coordinates are relative to parent.
14547     */
14548    EAPI void               elm_menu_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
14549    /**
14550     * @brief Close a opened menu
14551     *
14552     * @param obj the menu object
14553     * @return void
14554     *
14555     * Hides the menu and all it's sub-menus.
14556     */
14557    EAPI void               elm_menu_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
14558    /**
14559     * @brief Returns a list of @p item's items.
14560     *
14561     * @param obj The menu object
14562     * @return An Eina_List* of @p item's items
14563     */
14564    EAPI const Eina_List   *elm_menu_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14565    /**
14566     * @brief Get the Evas_Object of an Elm_Menu_Item
14567     *
14568     * @param item The menu item object.
14569     * @return The edje object containing the swallowed content
14570     *
14571     * @warning Don't manipulate this object!
14572     */
14573    EAPI Evas_Object       *elm_menu_item_object_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
14574    /**
14575     * @brief Add an item at the end of the given menu widget
14576     *
14577     * @param obj The menu object.
14578     * @param parent The parent menu item (optional)
14579     * @param icon A icon display on the item. The icon will be destryed by the menu.
14580     * @param label The label of the item.
14581     * @param func Function called when the user select the item.
14582     * @param data Data sent by the callback.
14583     * @return Returns the new item.
14584     */
14585    EAPI Elm_Menu_Item     *elm_menu_item_add(Evas_Object *obj, Elm_Menu_Item *parent, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14586    /**
14587     * @brief Add an object swallowed in an item at the end of the given menu
14588     * widget
14589     *
14590     * @param obj The menu object.
14591     * @param parent The parent menu item (optional)
14592     * @param subobj The object to swallow
14593     * @param func Function called when the user select the item.
14594     * @param data Data sent by the callback.
14595     * @return Returns the new item.
14596     *
14597     * Add an evas object as an item to the menu.
14598     */
14599    EAPI Elm_Menu_Item     *elm_menu_item_add_object(Evas_Object *obj, Elm_Menu_Item *parent, Evas_Object *subobj, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14600    /**
14601     * @brief Set the label of a menu item
14602     *
14603     * @param item The menu item object.
14604     * @param label The label to set for @p item
14605     *
14606     * @warning Don't use this funcion on items created with
14607     * elm_menu_item_add_object() or elm_menu_item_separator_add().
14608     */
14609    EAPI void               elm_menu_item_label_set(Elm_Menu_Item *item, const char *label) EINA_ARG_NONNULL(1);
14610    /**
14611     * @brief Get the label of a menu item
14612     *
14613     * @param item The menu item object.
14614     * @return The label of @p item
14615     */
14616    EAPI const char        *elm_menu_item_label_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14617    /**
14618     * @brief Set the icon of a menu item to the standard icon with name @p icon
14619     *
14620     * @param item The menu item object.
14621     * @param icon The icon object to set for the content of @p item
14622     *
14623     * Once this icon is set, any previously set icon will be deleted.
14624     */
14625    EAPI void               elm_menu_item_object_icon_name_set(Elm_Menu_Item *item, const char *icon) EINA_ARG_NONNULL(1, 2);
14626    /**
14627     * @brief Get the string representation from the icon of a menu item
14628     *
14629     * @param item The menu item object.
14630     * @return The string representation of @p item's icon or NULL
14631     *
14632     * @see elm_menu_item_object_icon_name_set()
14633     */
14634    EAPI const char        *elm_menu_item_object_icon_name_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14635    /**
14636     * @brief Set the content object of a menu item
14637     *
14638     * @param item The menu item object
14639     * @param The content object or NULL
14640     * @return EINA_TRUE on success, else EINA_FALSE
14641     *
14642     * Use this function to change the object swallowed by a menu item, deleting
14643     * any previously swallowed object.
14644     */
14645    EAPI Eina_Bool          elm_menu_item_object_content_set(Elm_Menu_Item *item, Evas_Object *obj) EINA_ARG_NONNULL(1);
14646    /**
14647     * @brief Get the content object of a menu item
14648     *
14649     * @param item The menu item object
14650     * @return The content object or NULL
14651     * @note If @p item was added with elm_menu_item_add_object, this
14652     * function will return the object passed, else it will return the
14653     * icon object.
14654     *
14655     * @see elm_menu_item_object_content_set()
14656     */
14657    EAPI Evas_Object *elm_menu_item_object_content_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14658    /**
14659     * @brief Set the selected state of @p item.
14660     *
14661     * @param item The menu item object.
14662     * @param selected The selected/unselected state of the item
14663     */
14664    EAPI void               elm_menu_item_selected_set(Elm_Menu_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
14665    /**
14666     * @brief Get the selected state of @p item.
14667     *
14668     * @param item The menu item object.
14669     * @return The selected/unselected state of the item
14670     *
14671     * @see elm_menu_item_selected_set()
14672     */
14673    EAPI Eina_Bool          elm_menu_item_selected_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14674    /**
14675     * @brief Set the disabled state of @p item.
14676     *
14677     * @param item The menu item object.
14678     * @param disabled The enabled/disabled state of the item
14679     */
14680    EAPI void               elm_menu_item_disabled_set(Elm_Menu_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
14681    /**
14682     * @brief Get the disabled state of @p item.
14683     *
14684     * @param item The menu item object.
14685     * @return The enabled/disabled state of the item
14686     *
14687     * @see elm_menu_item_disabled_set()
14688     */
14689    EAPI Eina_Bool          elm_menu_item_disabled_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14690    /**
14691     * @brief Add a separator item to menu @p obj under @p parent.
14692     *
14693     * @param obj The menu object
14694     * @param parent The item to add the separator under
14695     * @return The created item or NULL on failure
14696     *
14697     * This is item is a @ref Separator.
14698     */
14699    EAPI Elm_Menu_Item     *elm_menu_item_separator_add(Evas_Object *obj, Elm_Menu_Item *parent) EINA_ARG_NONNULL(1);
14700    /**
14701     * @brief Returns whether @p item is a separator.
14702     *
14703     * @param item The item to check
14704     * @return If true, @p item is a separator
14705     *
14706     * @see elm_menu_item_separator_add()
14707     */
14708    EAPI Eina_Bool          elm_menu_item_is_separator(Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14709    /**
14710     * @brief Deletes an item from the menu.
14711     *
14712     * @param item The item to delete.
14713     *
14714     * @see elm_menu_item_add()
14715     */
14716    EAPI void               elm_menu_item_del(Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14717    /**
14718     * @brief Set the function called when a menu item is deleted.
14719     *
14720     * @param item The item to set the callback on
14721     * @param func The function called
14722     *
14723     * @see elm_menu_item_add()
14724     * @see elm_menu_item_del()
14725     */
14726    EAPI void               elm_menu_item_del_cb_set(Elm_Menu_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
14727    /**
14728     * @brief Returns the data associated with menu item @p item.
14729     *
14730     * @param item The item
14731     * @return The data associated with @p item or NULL if none was set.
14732     *
14733     * This is the data set with elm_menu_add() or elm_menu_item_data_set().
14734     */
14735    EAPI void              *elm_menu_item_data_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
14736    /**
14737     * @brief Sets the data to be associated with menu item @p item.
14738     *
14739     * @param item The item
14740     * @param data The data to be associated with @p item
14741     */
14742    EAPI void               elm_menu_item_data_set(Elm_Menu_Item *item, const void *data) EINA_ARG_NONNULL(1);
14743    /**
14744     * @brief Returns a list of @p item's subitems.
14745     *
14746     * @param item The item
14747     * @return An Eina_List* of @p item's subitems
14748     *
14749     * @see elm_menu_add()
14750     */
14751    EAPI const Eina_List   *elm_menu_item_subitems_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
14752    /**
14753     * @brief Get the position of a menu item
14754     *
14755     * @param item The menu item
14756     * @return The item's index
14757     *
14758     * This function returns the index position of a menu item in a menu.
14759     * For a sub-menu, this number is relative to the first item in the sub-menu.
14760     *
14761     * @note Index values begin with 0
14762     */
14763    EAPI unsigned int       elm_menu_item_index_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1) EINA_PURE;
14764    /**
14765     * @brief @brief Return a menu item's owner menu
14766     *
14767     * @param item The menu item
14768     * @return The menu object owning @p item, or NULL on failure
14769     *
14770     * Use this function to get the menu object owning an item.
14771     */
14772    EAPI Evas_Object       *elm_menu_item_menu_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1) EINA_PURE;
14773    /**
14774     * @brief Get the selected item in the menu
14775     *
14776     * @param obj The menu object
14777     * @return The selected item, or NULL if none
14778     *
14779     * @see elm_menu_item_selected_get()
14780     * @see elm_menu_item_selected_set()
14781     */
14782    EAPI Elm_Menu_Item *elm_menu_selected_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
14783    /**
14784     * @brief Get the last item in the menu
14785     *
14786     * @param obj The menu object
14787     * @return The last item, or NULL if none
14788     */
14789    EAPI Elm_Menu_Item *elm_menu_last_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
14790    /**
14791     * @brief Get the first item in the menu
14792     *
14793     * @param obj The menu object
14794     * @return The first item, or NULL if none
14795     */
14796    EAPI Elm_Menu_Item *elm_menu_first_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
14797    /**
14798     * @brief Get the next item in the menu.
14799     *
14800     * @param item The menu item object.
14801     * @return The item after it, or NULL if none
14802     */
14803    EAPI Elm_Menu_Item *elm_menu_item_next_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
14804    /**
14805     * @brief Get the previous item in the menu.
14806     *
14807     * @param item The menu item object.
14808     * @return The item before it, or NULL if none
14809     */
14810    EAPI Elm_Menu_Item *elm_menu_item_prev_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
14811    /**
14812     * @}
14813     */
14814
14815    /**
14816     * @defgroup List List
14817     * @ingroup Elementary
14818     *
14819     * @image html img/widget/list/preview-00.png
14820     * @image latex img/widget/list/preview-00.eps width=\textwidth
14821     *
14822     * @image html img/list.png
14823     * @image latex img/list.eps width=\textwidth
14824     *
14825     * A list widget is a container whose children are displayed vertically or
14826     * horizontally, in order, and can be selected.
14827     * The list can accept only one or multiple items selection. Also has many
14828     * modes of items displaying.
14829     *
14830     * A list is a very simple type of list widget.  For more robust
14831     * lists, @ref Genlist should probably be used.
14832     *
14833     * Smart callbacks one can listen to:
14834     * - @c "activated" - The user has double-clicked or pressed
14835     *   (enter|return|spacebar) on an item. The @c event_info parameter
14836     *   is the item that was activated.
14837     * - @c "clicked,double" - The user has double-clicked an item.
14838     *   The @c event_info parameter is the item that was double-clicked.
14839     * - "selected" - when the user selected an item
14840     * - "unselected" - when the user unselected an item
14841     * - "longpressed" - an item in the list is long-pressed
14842     * - "scroll,edge,top" - the list is scrolled until the top edge
14843     * - "scroll,edge,bottom" - the list is scrolled until the bottom edge
14844     * - "scroll,edge,left" - the list is scrolled until the left edge
14845     * - "scroll,edge,right" - the list is scrolled until the right edge
14846     *
14847     * Available styles for it:
14848     * - @c "default"
14849     *
14850     * List of examples:
14851     * @li @ref list_example_01
14852     * @li @ref list_example_02
14853     * @li @ref list_example_03
14854     */
14855
14856    /**
14857     * @addtogroup List
14858     * @{
14859     */
14860
14861    /**
14862     * @enum _Elm_List_Mode
14863     * @typedef Elm_List_Mode
14864     *
14865     * Set list's resize behavior, transverse axis scroll and
14866     * items cropping. See each mode's description for more details.
14867     *
14868     * @note Default value is #ELM_LIST_SCROLL.
14869     *
14870     * Values <b> don't </b> work as bitmask, only one can be choosen.
14871     *
14872     * @see elm_list_mode_set()
14873     * @see elm_list_mode_get()
14874     *
14875     * @ingroup List
14876     */
14877    typedef enum _Elm_List_Mode
14878      {
14879         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. */
14880         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). */
14881         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. */
14882         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. */
14883         ELM_LIST_LAST /**< Indicates error if returned by elm_list_mode_get() */
14884      } Elm_List_Mode;
14885
14886    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().  */
14887
14888    /**
14889     * Add a new list widget to the given parent Elementary
14890     * (container) object.
14891     *
14892     * @param parent The parent object.
14893     * @return a new list widget handle or @c NULL, on errors.
14894     *
14895     * This function inserts a new list widget on the canvas.
14896     *
14897     * @ingroup List
14898     */
14899    EAPI Evas_Object     *elm_list_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14900
14901    /**
14902     * Starts the list.
14903     *
14904     * @param obj The list object
14905     *
14906     * @note Call before running show() on the list object.
14907     * @warning If not called, it won't display the list properly.
14908     *
14909     * @code
14910     * li = elm_list_add(win);
14911     * elm_list_item_append(li, "First", NULL, NULL, NULL, NULL);
14912     * elm_list_item_append(li, "Second", NULL, NULL, NULL, NULL);
14913     * elm_list_go(li);
14914     * evas_object_show(li);
14915     * @endcode
14916     *
14917     * @ingroup List
14918     */
14919    EAPI void             elm_list_go(Evas_Object *obj) EINA_ARG_NONNULL(1);
14920
14921    /**
14922     * Enable or disable multiple items selection on the list object.
14923     *
14924     * @param obj The list object
14925     * @param multi @c EINA_TRUE to enable multi selection or @c EINA_FALSE to
14926     * disable it.
14927     *
14928     * Disabled by default. If disabled, the user can select a single item of
14929     * the list each time. Selected items are highlighted on list.
14930     * If enabled, many items can be selected.
14931     *
14932     * If a selected item is selected again, it will be unselected.
14933     *
14934     * @see elm_list_multi_select_get()
14935     *
14936     * @ingroup List
14937     */
14938    EAPI void             elm_list_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
14939
14940    /**
14941     * Get a value whether multiple items selection is enabled or not.
14942     *
14943     * @see elm_list_multi_select_set() for details.
14944     *
14945     * @param obj The list object.
14946     * @return @c EINA_TRUE means multiple items selection is enabled.
14947     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
14948     * @c EINA_FALSE is returned.
14949     *
14950     * @ingroup List
14951     */
14952    EAPI Eina_Bool        elm_list_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14953
14954    /**
14955     * Set which mode to use for the list object.
14956     *
14957     * @param obj The list object
14958     * @param mode One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
14959     * #ELM_LIST_LIMIT or #ELM_LIST_EXPAND.
14960     *
14961     * Set list's resize behavior, transverse axis scroll and
14962     * items cropping. See each mode's description for more details.
14963     *
14964     * @note Default value is #ELM_LIST_SCROLL.
14965     *
14966     * Only one can be set, if a previous one was set, it will be changed
14967     * by the new mode set. Bitmask won't work as well.
14968     *
14969     * @see elm_list_mode_get()
14970     *
14971     * @ingroup List
14972     */
14973    EAPI void             elm_list_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
14974
14975    /**
14976     * Get the mode the list is at.
14977     *
14978     * @param obj The list object
14979     * @return One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
14980     * #ELM_LIST_LIMIT, #ELM_LIST_EXPAND or #ELM_LIST_LAST on errors.
14981     *
14982     * @note see elm_list_mode_set() for more information.
14983     *
14984     * @ingroup List
14985     */
14986    EAPI Elm_List_Mode    elm_list_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14987
14988    /**
14989     * Enable or disable horizontal mode on the list object.
14990     *
14991     * @param obj The list object.
14992     * @param horizontal @c EINA_TRUE to enable horizontal or @c EINA_FALSE to
14993     * disable it, i.e., to enable vertical mode.
14994     *
14995     * @note Vertical mode is set by default.
14996     *
14997     * On horizontal mode items are displayed on list from left to right,
14998     * instead of from top to bottom. Also, the list will scroll horizontally.
14999     * Each item will presents left icon on top and right icon, or end, at
15000     * the bottom.
15001     *
15002     * @see elm_list_horizontal_get()
15003     *
15004     * @ingroup List
15005     */
15006    EAPI void             elm_list_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
15007
15008    /**
15009     * Get a value whether horizontal mode is enabled or not.
15010     *
15011     * @param obj The list object.
15012     * @return @c EINA_TRUE means horizontal mode selection is enabled.
15013     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
15014     * @c EINA_FALSE is returned.
15015     *
15016     * @see elm_list_horizontal_set() for details.
15017     *
15018     * @ingroup List
15019     */
15020    EAPI Eina_Bool        elm_list_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15021
15022    /**
15023     * Enable or disable always select mode on the list object.
15024     *
15025     * @param obj The list object
15026     * @param always_select @c EINA_TRUE to enable always select mode or
15027     * @c EINA_FALSE to disable it.
15028     *
15029     * @note Always select mode is disabled by default.
15030     *
15031     * Default behavior of list items is to only call its callback function
15032     * the first time it's pressed, i.e., when it is selected. If a selected
15033     * item is pressed again, and multi-select is disabled, it won't call
15034     * this function (if multi-select is enabled it will unselect the item).
15035     *
15036     * If always select is enabled, it will call the callback function
15037     * everytime a item is pressed, so it will call when the item is selected,
15038     * and again when a selected item is pressed.
15039     *
15040     * @see elm_list_always_select_mode_get()
15041     * @see elm_list_multi_select_set()
15042     *
15043     * @ingroup List
15044     */
15045    EAPI void             elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
15046
15047    /**
15048     * Get a value whether always select mode is enabled or not, meaning that
15049     * an item will always call its callback function, even if already selected.
15050     *
15051     * @param obj The list object
15052     * @return @c EINA_TRUE means horizontal mode selection is enabled.
15053     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
15054     * @c EINA_FALSE is returned.
15055     *
15056     * @see elm_list_always_select_mode_set() for details.
15057     *
15058     * @ingroup List
15059     */
15060    EAPI Eina_Bool        elm_list_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15061
15062    /**
15063     * Set bouncing behaviour when the scrolled content reaches an edge.
15064     *
15065     * Tell the internal scroller object whether it should bounce or not
15066     * when it reaches the respective edges for each axis.
15067     *
15068     * @param obj The list object
15069     * @param h_bounce Whether to bounce or not in the horizontal axis.
15070     * @param v_bounce Whether to bounce or not in the vertical axis.
15071     *
15072     * @see elm_scroller_bounce_set()
15073     *
15074     * @ingroup List
15075     */
15076    EAPI void             elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
15077
15078    /**
15079     * Get the bouncing behaviour of the internal scroller.
15080     *
15081     * Get whether the internal scroller should bounce when the edge of each
15082     * axis is reached scrolling.
15083     *
15084     * @param obj The list object.
15085     * @param h_bounce Pointer where to store the bounce state of the horizontal
15086     * axis.
15087     * @param v_bounce Pointer where to store the bounce state of the vertical
15088     * axis.
15089     *
15090     * @see elm_scroller_bounce_get()
15091     * @see elm_list_bounce_set()
15092     *
15093     * @ingroup List
15094     */
15095    EAPI void             elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
15096
15097    /**
15098     * Set the scrollbar policy.
15099     *
15100     * @param obj The list object
15101     * @param policy_h Horizontal scrollbar policy.
15102     * @param policy_v Vertical scrollbar policy.
15103     *
15104     * This sets the scrollbar visibility policy for the given scroller.
15105     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
15106     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
15107     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
15108     * This applies respectively for the horizontal and vertical scrollbars.
15109     *
15110     * The both are disabled by default, i.e., are set to
15111     * #ELM_SCROLLER_POLICY_OFF.
15112     *
15113     * @ingroup List
15114     */
15115    EAPI void             elm_list_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
15116
15117    /**
15118     * Get the scrollbar policy.
15119     *
15120     * @see elm_list_scroller_policy_get() for details.
15121     *
15122     * @param obj The list object.
15123     * @param policy_h Pointer where to store horizontal scrollbar policy.
15124     * @param policy_v Pointer where to store vertical scrollbar policy.
15125     *
15126     * @ingroup List
15127     */
15128    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);
15129
15130    /**
15131     * Append a new item to the list object.
15132     *
15133     * @param obj The list object.
15134     * @param label The label of the list item.
15135     * @param icon The icon object to use for the left side of the item. An
15136     * icon can be any Evas object, but usually it is an icon created
15137     * with elm_icon_add().
15138     * @param end The icon object to use for the right side of the item. An
15139     * icon can be any Evas object.
15140     * @param func The function to call when the item is clicked.
15141     * @param data The data to associate with the item for related callbacks.
15142     *
15143     * @return The created item or @c NULL upon failure.
15144     *
15145     * A new item will be created and appended to the list, i.e., will
15146     * be set as @b last item.
15147     *
15148     * Items created with this method can be deleted with
15149     * elm_list_item_del().
15150     *
15151     * Associated @p data can be properly freed when item is deleted if a
15152     * callback function is set with elm_list_item_del_cb_set().
15153     *
15154     * If a function is passed as argument, it will be called everytime this item
15155     * is selected, i.e., the user clicks over an unselected item.
15156     * If always select is enabled it will call this function every time
15157     * user clicks over an item (already selected or not).
15158     * If such function isn't needed, just passing
15159     * @c NULL as @p func is enough. The same should be done for @p data.
15160     *
15161     * Simple example (with no function callback or data associated):
15162     * @code
15163     * li = elm_list_add(win);
15164     * ic = elm_icon_add(win);
15165     * elm_icon_file_set(ic, "path/to/image", NULL);
15166     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
15167     * elm_list_item_append(li, "label", ic, NULL, NULL, NULL);
15168     * elm_list_go(li);
15169     * evas_object_show(li);
15170     * @endcode
15171     *
15172     * @see elm_list_always_select_mode_set()
15173     * @see elm_list_item_del()
15174     * @see elm_list_item_del_cb_set()
15175     * @see elm_list_clear()
15176     * @see elm_icon_add()
15177     *
15178     * @ingroup List
15179     */
15180    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);
15181
15182    /**
15183     * Prepend a new item to the list object.
15184     *
15185     * @param obj The list object.
15186     * @param label The label of the list item.
15187     * @param icon The icon object to use for the left side of the item. An
15188     * icon can be any Evas object, but usually it is an icon created
15189     * with elm_icon_add().
15190     * @param end The icon object to use for the right side of the item. An
15191     * icon can be any Evas object.
15192     * @param func The function to call when the item is clicked.
15193     * @param data The data to associate with the item for related callbacks.
15194     *
15195     * @return The created item or @c NULL upon failure.
15196     *
15197     * A new item will be created and prepended to the list, i.e., will
15198     * be set as @b first item.
15199     *
15200     * Items created with this method can be deleted with
15201     * elm_list_item_del().
15202     *
15203     * Associated @p data can be properly freed when item is deleted if a
15204     * callback function is set with elm_list_item_del_cb_set().
15205     *
15206     * If a function is passed as argument, it will be called everytime this item
15207     * is selected, i.e., the user clicks over an unselected item.
15208     * If always select is enabled it will call this function every time
15209     * user clicks over an item (already selected or not).
15210     * If such function isn't needed, just passing
15211     * @c NULL as @p func is enough. The same should be done for @p data.
15212     *
15213     * @see elm_list_item_append() for a simple code example.
15214     * @see elm_list_always_select_mode_set()
15215     * @see elm_list_item_del()
15216     * @see elm_list_item_del_cb_set()
15217     * @see elm_list_clear()
15218     * @see elm_icon_add()
15219     *
15220     * @ingroup List
15221     */
15222    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);
15223
15224    /**
15225     * Insert a new item into the list object before item @p before.
15226     *
15227     * @param obj The list object.
15228     * @param before The list item to insert before.
15229     * @param label The label of the list item.
15230     * @param icon The icon object to use for the left side of the item. An
15231     * icon can be any Evas object, but usually it is an icon created
15232     * with elm_icon_add().
15233     * @param end The icon object to use for the right side of the item. An
15234     * icon can be any Evas object.
15235     * @param func The function to call when the item is clicked.
15236     * @param data The data to associate with the item for related callbacks.
15237     *
15238     * @return The created item or @c NULL upon failure.
15239     *
15240     * A new item will be created and added to the list. Its position in
15241     * this list will be just before item @p before.
15242     *
15243     * Items created with this method can be deleted with
15244     * elm_list_item_del().
15245     *
15246     * Associated @p data can be properly freed when item is deleted if a
15247     * callback function is set with elm_list_item_del_cb_set().
15248     *
15249     * If a function is passed as argument, it will be called everytime this item
15250     * is selected, i.e., the user clicks over an unselected item.
15251     * If always select is enabled it will call this function every time
15252     * user clicks over an item (already selected or not).
15253     * If such function isn't needed, just passing
15254     * @c NULL as @p func is enough. The same should be done for @p data.
15255     *
15256     * @see elm_list_item_append() for a simple code example.
15257     * @see elm_list_always_select_mode_set()
15258     * @see elm_list_item_del()
15259     * @see elm_list_item_del_cb_set()
15260     * @see elm_list_clear()
15261     * @see elm_icon_add()
15262     *
15263     * @ingroup List
15264     */
15265    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);
15266
15267    /**
15268     * Insert a new item into the list object after item @p after.
15269     *
15270     * @param obj The list object.
15271     * @param after The list item to insert after.
15272     * @param label The label of the list item.
15273     * @param icon The icon object to use for the left side of the item. An
15274     * icon can be any Evas object, but usually it is an icon created
15275     * with elm_icon_add().
15276     * @param end The icon object to use for the right side of the item. An
15277     * icon can be any Evas object.
15278     * @param func The function to call when the item is clicked.
15279     * @param data The data to associate with the item for related callbacks.
15280     *
15281     * @return The created item or @c NULL upon failure.
15282     *
15283     * A new item will be created and added to the list. Its position in
15284     * this list will be just after item @p after.
15285     *
15286     * Items created with this method can be deleted with
15287     * elm_list_item_del().
15288     *
15289     * Associated @p data can be properly freed when item is deleted if a
15290     * callback function is set with elm_list_item_del_cb_set().
15291     *
15292     * If a function is passed as argument, it will be called everytime this item
15293     * is selected, i.e., the user clicks over an unselected item.
15294     * If always select is enabled it will call this function every time
15295     * user clicks over an item (already selected or not).
15296     * If such function isn't needed, just passing
15297     * @c NULL as @p func is enough. The same should be done for @p data.
15298     *
15299     * @see elm_list_item_append() for a simple code example.
15300     * @see elm_list_always_select_mode_set()
15301     * @see elm_list_item_del()
15302     * @see elm_list_item_del_cb_set()
15303     * @see elm_list_clear()
15304     * @see elm_icon_add()
15305     *
15306     * @ingroup List
15307     */
15308    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);
15309
15310    /**
15311     * Insert a new item into the sorted list object.
15312     *
15313     * @param obj The list object.
15314     * @param label The label of the list item.
15315     * @param icon The icon object to use for the left side of the item. An
15316     * icon can be any Evas object, but usually it is an icon created
15317     * with elm_icon_add().
15318     * @param end The icon object to use for the right side of the item. An
15319     * icon can be any Evas object.
15320     * @param func The function to call when the item is clicked.
15321     * @param data The data to associate with the item for related callbacks.
15322     * @param cmp_func The comparing function to be used to sort list
15323     * items <b>by #Elm_List_Item item handles</b>. This function will
15324     * receive two items and compare them, returning a non-negative integer
15325     * if the second item should be place after the first, or negative value
15326     * if should be placed before.
15327     *
15328     * @return The created item or @c NULL upon failure.
15329     *
15330     * @note This function inserts values into a list object assuming it was
15331     * sorted and the result will be sorted.
15332     *
15333     * A new item will be created and added to the list. Its position in
15334     * this list will be found comparing the new item with previously inserted
15335     * items using function @p cmp_func.
15336     *
15337     * Items created with this method can be deleted with
15338     * elm_list_item_del().
15339     *
15340     * Associated @p data can be properly freed when item is deleted if a
15341     * callback function is set with elm_list_item_del_cb_set().
15342     *
15343     * If a function is passed as argument, it will be called everytime this item
15344     * is selected, i.e., the user clicks over an unselected item.
15345     * If always select is enabled it will call this function every time
15346     * user clicks over an item (already selected or not).
15347     * If such function isn't needed, just passing
15348     * @c NULL as @p func is enough. The same should be done for @p data.
15349     *
15350     * @see elm_list_item_append() for a simple code example.
15351     * @see elm_list_always_select_mode_set()
15352     * @see elm_list_item_del()
15353     * @see elm_list_item_del_cb_set()
15354     * @see elm_list_clear()
15355     * @see elm_icon_add()
15356     *
15357     * @ingroup List
15358     */
15359    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);
15360
15361    /**
15362     * Remove all list's items.
15363     *
15364     * @param obj The list object
15365     *
15366     * @see elm_list_item_del()
15367     * @see elm_list_item_append()
15368     *
15369     * @ingroup List
15370     */
15371    EAPI void             elm_list_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
15372
15373    /**
15374     * Get a list of all the list items.
15375     *
15376     * @param obj The list object
15377     * @return An @c Eina_List of list items, #Elm_List_Item,
15378     * or @c NULL on failure.
15379     *
15380     * @see elm_list_item_append()
15381     * @see elm_list_item_del()
15382     * @see elm_list_clear()
15383     *
15384     * @ingroup List
15385     */
15386    EAPI const Eina_List *elm_list_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15387
15388    /**
15389     * Get the selected item.
15390     *
15391     * @param obj The list object.
15392     * @return The selected list item.
15393     *
15394     * The selected item can be unselected with function
15395     * elm_list_item_selected_set().
15396     *
15397     * The selected item always will be highlighted on list.
15398     *
15399     * @see elm_list_selected_items_get()
15400     *
15401     * @ingroup List
15402     */
15403    EAPI Elm_List_Item   *elm_list_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15404
15405    /**
15406     * Return a list of the currently selected list items.
15407     *
15408     * @param obj The list object.
15409     * @return An @c Eina_List of list items, #Elm_List_Item,
15410     * or @c NULL on failure.
15411     *
15412     * Multiple items can be selected if multi select is enabled. It can be
15413     * done with elm_list_multi_select_set().
15414     *
15415     * @see elm_list_selected_item_get()
15416     * @see elm_list_multi_select_set()
15417     *
15418     * @ingroup List
15419     */
15420    EAPI const Eina_List *elm_list_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15421
15422    /**
15423     * Set the selected state of an item.
15424     *
15425     * @param item The list item
15426     * @param selected The selected state
15427     *
15428     * This sets the selected state of the given item @p it.
15429     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
15430     *
15431     * If a new item is selected the previosly selected will be unselected,
15432     * unless multiple selection is enabled with elm_list_multi_select_set().
15433     * Previoulsy selected item can be get with function
15434     * elm_list_selected_item_get().
15435     *
15436     * Selected items will be highlighted.
15437     *
15438     * @see elm_list_item_selected_get()
15439     * @see elm_list_selected_item_get()
15440     * @see elm_list_multi_select_set()
15441     *
15442     * @ingroup List
15443     */
15444    EAPI void             elm_list_item_selected_set(Elm_List_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
15445
15446    /*
15447     * Get whether the @p item is selected or not.
15448     *
15449     * @param item The list item.
15450     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
15451     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
15452     *
15453     * @see elm_list_selected_item_set() for details.
15454     * @see elm_list_item_selected_get()
15455     *
15456     * @ingroup List
15457     */
15458    EAPI Eina_Bool        elm_list_item_selected_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15459
15460    /**
15461     * Set or unset item as a separator.
15462     *
15463     * @param it The list item.
15464     * @param setting @c EINA_TRUE to set item @p it as separator or
15465     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
15466     *
15467     * Items aren't set as separator by default.
15468     *
15469     * If set as separator it will display separator theme, so won't display
15470     * icons or label.
15471     *
15472     * @see elm_list_item_separator_get()
15473     *
15474     * @ingroup List
15475     */
15476    EAPI void             elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting) EINA_ARG_NONNULL(1);
15477
15478    /**
15479     * Get a value whether item is a separator or not.
15480     *
15481     * @see elm_list_item_separator_set() for details.
15482     *
15483     * @param it The list item.
15484     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
15485     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
15486     *
15487     * @ingroup List
15488     */
15489    EAPI Eina_Bool        elm_list_item_separator_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
15490
15491    /**
15492     * Show @p item in the list view.
15493     *
15494     * @param item The list item to be shown.
15495     *
15496     * It won't animate list until item is visible. If such behavior is wanted,
15497     * use elm_list_bring_in() intead.
15498     *
15499     * @ingroup List
15500     */
15501    EAPI void             elm_list_item_show(Elm_List_Item *item) EINA_ARG_NONNULL(1);
15502
15503    /**
15504     * Bring in the given item to list view.
15505     *
15506     * @param item The item.
15507     *
15508     * This causes list to jump to the given item @p item and show it
15509     * (by scrolling), if it is not fully visible.
15510     *
15511     * This may use animation to do so and take a period of time.
15512     *
15513     * If animation isn't wanted, elm_list_item_show() can be used.
15514     *
15515     * @ingroup List
15516     */
15517    EAPI void             elm_list_item_bring_in(Elm_List_Item *item) EINA_ARG_NONNULL(1);
15518
15519    /**
15520     * Delete them item from the list.
15521     *
15522     * @param item The item of list to be deleted.
15523     *
15524     * If deleting all list items is required, elm_list_clear()
15525     * should be used instead of getting items list and deleting each one.
15526     *
15527     * @see elm_list_clear()
15528     * @see elm_list_item_append()
15529     * @see elm_list_item_del_cb_set()
15530     *
15531     * @ingroup List
15532     */
15533    EAPI void             elm_list_item_del(Elm_List_Item *item) EINA_ARG_NONNULL(1);
15534
15535    /**
15536     * Set the function called when a list item is freed.
15537     *
15538     * @param item The item to set the callback on
15539     * @param func The function called
15540     *
15541     * If there is a @p func, then it will be called prior item's memory release.
15542     * That will be called with the following arguments:
15543     * @li item's data;
15544     * @li item's Evas object;
15545     * @li item itself;
15546     *
15547     * This way, a data associated to a list item could be properly freed.
15548     *
15549     * @ingroup List
15550     */
15551    EAPI void             elm_list_item_del_cb_set(Elm_List_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
15552
15553    /**
15554     * Get the data associated to the item.
15555     *
15556     * @param item The list item
15557     * @return The data associated to @p item
15558     *
15559     * The return value is a pointer to data associated to @p item when it was
15560     * created, with function elm_list_item_append() or similar. If no data
15561     * was passed as argument, it will return @c NULL.
15562     *
15563     * @see elm_list_item_append()
15564     *
15565     * @ingroup List
15566     */
15567    EAPI void            *elm_list_item_data_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15568
15569    /**
15570     * Get the left side icon associated to the item.
15571     *
15572     * @param item The list item
15573     * @return The left side icon associated to @p item
15574     *
15575     * The return value is a pointer to the icon associated to @p item when
15576     * it was
15577     * created, with function elm_list_item_append() or similar, or later
15578     * with function elm_list_item_icon_set(). If no icon
15579     * was passed as argument, it will return @c NULL.
15580     *
15581     * @see elm_list_item_append()
15582     * @see elm_list_item_icon_set()
15583     *
15584     * @ingroup List
15585     */
15586    EAPI Evas_Object     *elm_list_item_icon_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15587
15588    /**
15589     * Set the left side icon associated to the item.
15590     *
15591     * @param item The list item
15592     * @param icon The left side icon object to associate with @p item
15593     *
15594     * The icon object to use at left side of the item. An
15595     * icon can be any Evas object, but usually it is an icon created
15596     * with elm_icon_add().
15597     *
15598     * Once the icon object is set, a previously set one will be deleted.
15599     * @warning Setting the same icon for two items will cause the icon to
15600     * dissapear from the first item.
15601     *
15602     * If an icon was passed as argument on item creation, with function
15603     * elm_list_item_append() or similar, it will be already
15604     * associated to the item.
15605     *
15606     * @see elm_list_item_append()
15607     * @see elm_list_item_icon_get()
15608     *
15609     * @ingroup List
15610     */
15611    EAPI void             elm_list_item_icon_set(Elm_List_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
15612
15613    /**
15614     * Get the right side icon associated to the item.
15615     *
15616     * @param item The list item
15617     * @return The right side icon associated to @p item
15618     *
15619     * The return value is a pointer to the icon associated to @p item when
15620     * it was
15621     * created, with function elm_list_item_append() or similar, or later
15622     * with function elm_list_item_icon_set(). If no icon
15623     * was passed as argument, it will return @c NULL.
15624     *
15625     * @see elm_list_item_append()
15626     * @see elm_list_item_icon_set()
15627     *
15628     * @ingroup List
15629     */
15630    EAPI Evas_Object     *elm_list_item_end_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15631
15632    /**
15633     * Set the right side icon associated to the item.
15634     *
15635     * @param item The list item
15636     * @param end The right side icon object to associate with @p item
15637     *
15638     * The icon object to use at right side of the item. An
15639     * icon can be any Evas object, but usually it is an icon created
15640     * with elm_icon_add().
15641     *
15642     * Once the icon object is set, a previously set one will be deleted.
15643     * @warning Setting the same icon for two items will cause the icon to
15644     * dissapear from the first item.
15645     *
15646     * If an icon was passed as argument on item creation, with function
15647     * elm_list_item_append() or similar, it will be already
15648     * associated to the item.
15649     *
15650     * @see elm_list_item_append()
15651     * @see elm_list_item_end_get()
15652     *
15653     * @ingroup List
15654     */
15655    EAPI void             elm_list_item_end_set(Elm_List_Item *item, Evas_Object *end) EINA_ARG_NONNULL(1);
15656
15657    /**
15658     * Gets the base object of the item.
15659     *
15660     * @param item The list item
15661     * @return The base object associated with @p item
15662     *
15663     * Base object is the @c Evas_Object that represents that item.
15664     *
15665     * @ingroup List
15666     */
15667    EAPI Evas_Object     *elm_list_item_object_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15668    EINA_DEPRECATED EAPI Evas_Object     *elm_list_item_base_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15669
15670    /**
15671     * Get the label of item.
15672     *
15673     * @param item The item of list.
15674     * @return The label of item.
15675     *
15676     * The return value is a pointer to the label associated to @p item when
15677     * it was created, with function elm_list_item_append(), or later
15678     * with function elm_list_item_label_set. If no label
15679     * was passed as argument, it will return @c NULL.
15680     *
15681     * @see elm_list_item_label_set() for more details.
15682     * @see elm_list_item_append()
15683     *
15684     * @ingroup List
15685     */
15686    EAPI const char      *elm_list_item_label_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15687
15688    /**
15689     * Set the label of item.
15690     *
15691     * @param item The item of list.
15692     * @param text The label of item.
15693     *
15694     * The label to be displayed by the item.
15695     * Label will be placed between left and right side icons (if set).
15696     *
15697     * If a label was passed as argument on item creation, with function
15698     * elm_list_item_append() or similar, it will be already
15699     * displayed by the item.
15700     *
15701     * @see elm_list_item_label_get()
15702     * @see elm_list_item_append()
15703     *
15704     * @ingroup List
15705     */
15706    EAPI void             elm_list_item_label_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
15707
15708
15709    /**
15710     * Get the item before @p it in list.
15711     *
15712     * @param it The list item.
15713     * @return The item before @p it, or @c NULL if none or on failure.
15714     *
15715     * @note If it is the first item, @c NULL will be returned.
15716     *
15717     * @see elm_list_item_append()
15718     * @see elm_list_items_get()
15719     *
15720     * @ingroup List
15721     */
15722    EAPI Elm_List_Item   *elm_list_item_prev(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
15723
15724    /**
15725     * Get the item after @p it in list.
15726     *
15727     * @param it The list item.
15728     * @return The item after @p it, or @c NULL if none or on failure.
15729     *
15730     * @note If it is the last item, @c NULL will be returned.
15731     *
15732     * @see elm_list_item_append()
15733     * @see elm_list_items_get()
15734     *
15735     * @ingroup List
15736     */
15737    EAPI Elm_List_Item   *elm_list_item_next(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
15738
15739    /**
15740     * Sets the disabled/enabled state of a list item.
15741     *
15742     * @param it The item.
15743     * @param disabled The disabled state.
15744     *
15745     * A disabled item cannot be selected or unselected. It will also
15746     * change its appearance (generally greyed out). This sets the
15747     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
15748     * enabled).
15749     *
15750     * @ingroup List
15751     */
15752    EAPI void             elm_list_item_disabled_set(Elm_List_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
15753
15754    /**
15755     * Get a value whether list item is disabled or not.
15756     *
15757     * @param it The item.
15758     * @return The disabled state.
15759     *
15760     * @see elm_list_item_disabled_set() for more details.
15761     *
15762     * @ingroup List
15763     */
15764    EAPI Eina_Bool        elm_list_item_disabled_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
15765
15766    /**
15767     * Set the text to be shown in a given list item's tooltips.
15768     *
15769     * @param item Target item.
15770     * @param text The text to set in the content.
15771     *
15772     * Setup the text as tooltip to object. The item can have only one tooltip,
15773     * so any previous tooltip data - set with this function or
15774     * elm_list_item_tooltip_content_cb_set() - is removed.
15775     *
15776     * @see elm_object_tooltip_text_set() for more details.
15777     *
15778     * @ingroup List
15779     */
15780    EAPI void             elm_list_item_tooltip_text_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
15781
15782
15783    /**
15784     * @brief Disable size restrictions on an object's tooltip
15785     * @param item The tooltip's anchor object
15786     * @param disable If EINA_TRUE, size restrictions are disabled
15787     * @return EINA_FALSE on failure, EINA_TRUE on success
15788     *
15789     * This function allows a tooltip to expand beyond its parant window's canvas.
15790     * It will instead be limited only by the size of the display.
15791     */
15792    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disable(Elm_List_Item *item, Eina_Bool disable) EINA_ARG_NONNULL(1);
15793    /**
15794     * @brief Retrieve size restriction state of an object's tooltip
15795     * @param obj The tooltip's anchor object
15796     * @return If EINA_TRUE, size restrictions are disabled
15797     *
15798     * This function returns whether a tooltip is allowed to expand beyond
15799     * its parant window's canvas.
15800     * It will instead be limited only by the size of the display.
15801     */
15802    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disabled_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15803
15804    /**
15805     * Set the content to be shown in the tooltip item.
15806     *
15807     * Setup the tooltip to item. The item can have only one tooltip,
15808     * so any previous tooltip data is removed. @p func(with @p data) will
15809     * be called every time that need show the tooltip and it should
15810     * return a valid Evas_Object. This object is then managed fully by
15811     * tooltip system and is deleted when the tooltip is gone.
15812     *
15813     * @param item the list item being attached a tooltip.
15814     * @param func the function used to create the tooltip contents.
15815     * @param data what to provide to @a func as callback data/context.
15816     * @param del_cb called when data is not needed anymore, either when
15817     *        another callback replaces @a func, the tooltip is unset with
15818     *        elm_list_item_tooltip_unset() or the owner @a item
15819     *        dies. This callback receives as the first parameter the
15820     *        given @a data, and @c event_info is the item.
15821     *
15822     * @see elm_object_tooltip_content_cb_set() for more details.
15823     *
15824     * @ingroup List
15825     */
15826    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);
15827
15828    /**
15829     * Unset tooltip from item.
15830     *
15831     * @param item list item to remove previously set tooltip.
15832     *
15833     * Remove tooltip from item. The callback provided as del_cb to
15834     * elm_list_item_tooltip_content_cb_set() will be called to notify
15835     * it is not used anymore.
15836     *
15837     * @see elm_object_tooltip_unset() for more details.
15838     * @see elm_list_item_tooltip_content_cb_set()
15839     *
15840     * @ingroup List
15841     */
15842    EAPI void             elm_list_item_tooltip_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
15843
15844    /**
15845     * Sets a different style for this item tooltip.
15846     *
15847     * @note before you set a style you should define a tooltip with
15848     *       elm_list_item_tooltip_content_cb_set() or
15849     *       elm_list_item_tooltip_text_set()
15850     *
15851     * @param item list item with tooltip already set.
15852     * @param style the theme style to use (default, transparent, ...)
15853     *
15854     * @see elm_object_tooltip_style_set() for more details.
15855     *
15856     * @ingroup List
15857     */
15858    EAPI void             elm_list_item_tooltip_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
15859
15860    /**
15861     * Get the style for this item tooltip.
15862     *
15863     * @param item list item with tooltip already set.
15864     * @return style the theme style in use, defaults to "default". If the
15865     *         object does not have a tooltip set, then NULL is returned.
15866     *
15867     * @see elm_object_tooltip_style_get() for more details.
15868     * @see elm_list_item_tooltip_style_set()
15869     *
15870     * @ingroup List
15871     */
15872    EAPI const char      *elm_list_item_tooltip_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15873
15874    /**
15875     * Set the type of mouse pointer/cursor decoration to be shown,
15876     * when the mouse pointer is over the given list widget item
15877     *
15878     * @param item list item to customize cursor on
15879     * @param cursor the cursor type's name
15880     *
15881     * This function works analogously as elm_object_cursor_set(), but
15882     * here the cursor's changing area is restricted to the item's
15883     * area, and not the whole widget's. Note that that item cursors
15884     * have precedence over widget cursors, so that a mouse over an
15885     * item with custom cursor set will always show @b that cursor.
15886     *
15887     * If this function is called twice for an object, a previously set
15888     * cursor will be unset on the second call.
15889     *
15890     * @see elm_object_cursor_set()
15891     * @see elm_list_item_cursor_get()
15892     * @see elm_list_item_cursor_unset()
15893     *
15894     * @ingroup List
15895     */
15896    EAPI void             elm_list_item_cursor_set(Elm_List_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
15897
15898    /*
15899     * Get the type of mouse pointer/cursor decoration set to be shown,
15900     * when the mouse pointer is over the given list widget item
15901     *
15902     * @param item list item with custom cursor set
15903     * @return the cursor type's name or @c NULL, if no custom cursors
15904     * were set to @p item (and on errors)
15905     *
15906     * @see elm_object_cursor_get()
15907     * @see elm_list_item_cursor_set()
15908     * @see elm_list_item_cursor_unset()
15909     *
15910     * @ingroup List
15911     */
15912    EAPI const char      *elm_list_item_cursor_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15913
15914    /**
15915     * Unset any custom mouse pointer/cursor decoration set to be
15916     * shown, when the mouse pointer is over the given list widget
15917     * item, thus making it show the @b default cursor again.
15918     *
15919     * @param item a list item
15920     *
15921     * Use this call to undo any custom settings on this item's cursor
15922     * decoration, bringing it back to defaults (no custom style set).
15923     *
15924     * @see elm_object_cursor_unset()
15925     * @see elm_list_item_cursor_set()
15926     *
15927     * @ingroup List
15928     */
15929    EAPI void             elm_list_item_cursor_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
15930
15931    /**
15932     * Set a different @b style for a given custom cursor set for a
15933     * list item.
15934     *
15935     * @param item list item with custom cursor set
15936     * @param style the <b>theme style</b> to use (e.g. @c "default",
15937     * @c "transparent", etc)
15938     *
15939     * This function only makes sense when one is using custom mouse
15940     * cursor decorations <b>defined in a theme file</b>, which can have,
15941     * given a cursor name/type, <b>alternate styles</b> on it. It
15942     * works analogously as elm_object_cursor_style_set(), but here
15943     * applyed only to list item objects.
15944     *
15945     * @warning Before you set a cursor style you should have definen a
15946     *       custom cursor previously on the item, with
15947     *       elm_list_item_cursor_set()
15948     *
15949     * @see elm_list_item_cursor_engine_only_set()
15950     * @see elm_list_item_cursor_style_get()
15951     *
15952     * @ingroup List
15953     */
15954    EAPI void             elm_list_item_cursor_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
15955
15956    /**
15957     * Get the current @b style set for a given list item's custom
15958     * cursor
15959     *
15960     * @param item list item with custom cursor set.
15961     * @return style the cursor style in use. If the object does not
15962     *         have a cursor set, then @c NULL is returned.
15963     *
15964     * @see elm_list_item_cursor_style_set() for more details
15965     *
15966     * @ingroup List
15967     */
15968    EAPI const char      *elm_list_item_cursor_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
15969
15970    /**
15971     * Set if the (custom)cursor for a given list item should be
15972     * searched in its theme, also, or should only rely on the
15973     * rendering engine.
15974     *
15975     * @param item item with custom (custom) cursor already set on
15976     * @param engine_only Use @c EINA_TRUE to have cursors looked for
15977     * only on those provided by the rendering engine, @c EINA_FALSE to
15978     * have them searched on the widget's theme, as well.
15979     *
15980     * @note This call is of use only if you've set a custom cursor
15981     * for list items, with elm_list_item_cursor_set().
15982     *
15983     * @note By default, cursors will only be looked for between those
15984     * provided by the rendering engine.
15985     *
15986     * @ingroup List
15987     */
15988    EAPI void             elm_list_item_cursor_engine_only_set(Elm_List_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
15989
15990    /**
15991     * Get if the (custom) cursor for a given list item is being
15992     * searched in its theme, also, or is only relying on the rendering
15993     * engine.
15994     *
15995     * @param item a list item
15996     * @return @c EINA_TRUE, if cursors are being looked for only on
15997     * those provided by the rendering engine, @c EINA_FALSE if they
15998     * are being searched on the widget's theme, as well.
15999     *
16000     * @see elm_list_item_cursor_engine_only_set(), for more details
16001     *
16002     * @ingroup List
16003     */
16004    EAPI Eina_Bool        elm_list_item_cursor_engine_only_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16005
16006    /**
16007     * @}
16008     */
16009
16010    /**
16011     * @defgroup Slider Slider
16012     * @ingroup Elementary
16013     *
16014     * @image html img/widget/slider/preview-00.png
16015     * @image latex img/widget/slider/preview-00.eps width=\textwidth
16016     *
16017     * The slider adds a dragable “slider” widget for selecting the value of
16018     * something within a range.
16019     *
16020     * A slider can be horizontal or vertical. It can contain an Icon and has a
16021     * primary label as well as a units label (that is formatted with floating
16022     * point values and thus accepts a printf-style format string, like
16023     * “%1.2f units”. There is also an indicator string that may be somewhere
16024     * else (like on the slider itself) that also accepts a format string like
16025     * units. Label, Icon Unit and Indicator strings/objects are optional.
16026     *
16027     * A slider may be inverted which means values invert, with high vales being
16028     * on the left or top and low values on the right or bottom (as opposed to
16029     * normally being low on the left or top and high on the bottom and right).
16030     *
16031     * The slider should have its minimum and maximum values set by the
16032     * application with  elm_slider_min_max_set() and value should also be set by
16033     * the application before use with  elm_slider_value_set(). The span of the
16034     * slider is its length (horizontally or vertically). This will be scaled by
16035     * the object or applications scaling factor. At any point code can query the
16036     * slider for its value with elm_slider_value_get().
16037     *
16038     * Smart callbacks one can listen to:
16039     * - "changed" - Whenever the slider value is changed by the user.
16040     * - "slider,drag,start" - dragging the slider indicator around has started.
16041     * - "slider,drag,stop" - dragging the slider indicator around has stopped.
16042     * - "delay,changed" - A short time after the value is changed by the user.
16043     * This will be called only when the user stops dragging for
16044     * a very short period or when they release their
16045     * finger/mouse, so it avoids possibly expensive reactions to
16046     * the value change.
16047     *
16048     * Available styles for it:
16049     * - @c "default"
16050     *
16051     * Here is an example on its usage:
16052     * @li @ref slider_example
16053     */
16054
16055    /**
16056     * @addtogroup Slider
16057     * @{
16058     */
16059
16060    /**
16061     * Add a new slider widget to the given parent Elementary
16062     * (container) object.
16063     *
16064     * @param parent The parent object.
16065     * @return a new slider widget handle or @c NULL, on errors.
16066     *
16067     * This function inserts a new slider widget on the canvas.
16068     *
16069     * @ingroup Slider
16070     */
16071    EAPI Evas_Object       *elm_slider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16072
16073    /**
16074     * Set the label of a given slider widget
16075     *
16076     * @param obj The progress bar object
16077     * @param label The text label string, in UTF-8
16078     *
16079     * @ingroup Slider
16080     * @deprecated use elm_object_text_set() instead.
16081     */
16082    EINA_DEPRECATED EAPI void               elm_slider_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
16083
16084    /**
16085     * Get the label of a given slider widget
16086     *
16087     * @param obj The progressbar object
16088     * @return The text label string, in UTF-8
16089     *
16090     * @ingroup Slider
16091     * @deprecated use elm_object_text_get() instead.
16092     */
16093    EINA_DEPRECATED EAPI const char        *elm_slider_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16094
16095    /**
16096     * Set the icon object of the slider object.
16097     *
16098     * @param obj The slider object.
16099     * @param icon The icon object.
16100     *
16101     * On horizontal mode, icon is placed at left, and on vertical mode,
16102     * placed at top.
16103     *
16104     * @note Once the icon object is set, a previously set one will be deleted.
16105     * If you want to keep that old content object, use the
16106     * elm_slider_icon_unset() function.
16107     *
16108     * @warning If the object being set does not have minimum size hints set,
16109     * it won't get properly displayed.
16110     *
16111     * @ingroup Slider
16112     */
16113    EAPI void               elm_slider_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
16114
16115    /**
16116     * Unset an icon set on a given slider widget.
16117     *
16118     * @param obj The slider object.
16119     * @return The icon object that was being used, if any was set, or
16120     * @c NULL, otherwise (and on errors).
16121     *
16122     * On horizontal mode, icon is placed at left, and on vertical mode,
16123     * placed at top.
16124     *
16125     * This call will unparent and return the icon object which was set
16126     * for this widget, previously, on success.
16127     *
16128     * @see elm_slider_icon_set() for more details
16129     * @see elm_slider_icon_get()
16130     *
16131     * @ingroup Slider
16132     */
16133    EAPI Evas_Object       *elm_slider_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
16134
16135    /**
16136     * Retrieve the icon object set for a given slider widget.
16137     *
16138     * @param obj The slider object.
16139     * @return The icon object's handle, if @p obj had one set, or @c NULL,
16140     * otherwise (and on errors).
16141     *
16142     * On horizontal mode, icon is placed at left, and on vertical mode,
16143     * placed at top.
16144     *
16145     * @see elm_slider_icon_set() for more details
16146     * @see elm_slider_icon_unset()
16147     *
16148     * @ingroup Slider
16149     */
16150    EAPI Evas_Object       *elm_slider_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16151
16152    /**
16153     * Set the end object of the slider object.
16154     *
16155     * @param obj The slider object.
16156     * @param end The end object.
16157     *
16158     * On horizontal mode, end is placed at left, and on vertical mode,
16159     * placed at bottom.
16160     *
16161     * @note Once the icon object is set, a previously set one will be deleted.
16162     * If you want to keep that old content object, use the
16163     * elm_slider_end_unset() function.
16164     *
16165     * @warning If the object being set does not have minimum size hints set,
16166     * it won't get properly displayed.
16167     *
16168     * @ingroup Slider
16169     */
16170    EAPI void               elm_slider_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1);
16171
16172    /**
16173     * Unset an end object set on a given slider widget.
16174     *
16175     * @param obj The slider object.
16176     * @return The end object that was being used, if any was set, or
16177     * @c NULL, otherwise (and on errors).
16178     *
16179     * On horizontal mode, end is placed at left, and on vertical mode,
16180     * placed at bottom.
16181     *
16182     * This call will unparent and return the icon object which was set
16183     * for this widget, previously, on success.
16184     *
16185     * @see elm_slider_end_set() for more details.
16186     * @see elm_slider_end_get()
16187     *
16188     * @ingroup Slider
16189     */
16190    EAPI Evas_Object       *elm_slider_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
16191
16192    /**
16193     * Retrieve the end object set for a given slider widget.
16194     *
16195     * @param obj The slider object.
16196     * @return The end object's handle, if @p obj had one set, or @c NULL,
16197     * otherwise (and on errors).
16198     *
16199     * On horizontal mode, icon is placed at right, and on vertical mode,
16200     * placed at bottom.
16201     *
16202     * @see elm_slider_end_set() for more details.
16203     * @see elm_slider_end_unset()
16204     *
16205     * @ingroup Slider
16206     */
16207    EAPI Evas_Object       *elm_slider_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16208
16209    /**
16210     * Set the (exact) length of the bar region of a given slider widget.
16211     *
16212     * @param obj The slider object.
16213     * @param size The length of the slider's bar region.
16214     *
16215     * This sets the minimum width (when in horizontal mode) or height
16216     * (when in vertical mode) of the actual bar area of the slider
16217     * @p obj. This in turn affects the object's minimum size. Use
16218     * this when you're not setting other size hints expanding on the
16219     * given direction (like weight and alignment hints) and you would
16220     * like it to have a specific size.
16221     *
16222     * @note Icon, end, label, indicator and unit text around @p obj
16223     * will require their
16224     * own space, which will make @p obj to require more the @p size,
16225     * actually.
16226     *
16227     * @see elm_slider_span_size_get()
16228     *
16229     * @ingroup Slider
16230     */
16231    EAPI void               elm_slider_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
16232
16233    /**
16234     * Get the length set for the bar region of a given slider widget
16235     *
16236     * @param obj The slider object.
16237     * @return The length of the slider's bar region.
16238     *
16239     * If that size was not set previously, with
16240     * elm_slider_span_size_set(), this call will return @c 0.
16241     *
16242     * @ingroup Slider
16243     */
16244    EAPI Evas_Coord         elm_slider_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16245
16246    /**
16247     * Set the format string for the unit label.
16248     *
16249     * @param obj The slider object.
16250     * @param format The format string for the unit display.
16251     *
16252     * Unit label is displayed all the time, if set, after slider's bar.
16253     * In horizontal mode, at right and in vertical mode, at bottom.
16254     *
16255     * If @c NULL, unit label won't be visible. If not it sets the format
16256     * string for the label text. To the label text is provided a floating point
16257     * value, so the label text can display up to 1 floating point value.
16258     * Note that this is optional.
16259     *
16260     * Use a format string such as "%1.2f meters" for example, and it will
16261     * display values like: "3.14 meters" for a value equal to 3.14159.
16262     *
16263     * Default is unit label disabled.
16264     *
16265     * @see elm_slider_indicator_format_get()
16266     *
16267     * @ingroup Slider
16268     */
16269    EAPI void               elm_slider_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
16270
16271    /**
16272     * Get the unit label format of the slider.
16273     *
16274     * @param obj The slider object.
16275     * @return The unit label format string in UTF-8.
16276     *
16277     * Unit label is displayed all the time, if set, after slider's bar.
16278     * In horizontal mode, at right and in vertical mode, at bottom.
16279     *
16280     * @see elm_slider_unit_format_set() for more
16281     * information on how this works.
16282     *
16283     * @ingroup Slider
16284     */
16285    EAPI const char        *elm_slider_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16286
16287    /**
16288     * Set the format string for the indicator label.
16289     *
16290     * @param obj The slider object.
16291     * @param indicator The format string for the indicator display.
16292     *
16293     * The slider may display its value somewhere else then unit label,
16294     * for example, above the slider knob that is dragged around. This function
16295     * sets the format string used for this.
16296     *
16297     * If @c NULL, indicator label won't be visible. If not it sets the format
16298     * string for the label text. To the label text is provided a floating point
16299     * value, so the label text can display up to 1 floating point value.
16300     * Note that this is optional.
16301     *
16302     * Use a format string such as "%1.2f meters" for example, and it will
16303     * display values like: "3.14 meters" for a value equal to 3.14159.
16304     *
16305     * Default is indicator label disabled.
16306     *
16307     * @see elm_slider_indicator_format_get()
16308     *
16309     * @ingroup Slider
16310     */
16311    EAPI void               elm_slider_indicator_format_set(Evas_Object *obj, const char *indicator) EINA_ARG_NONNULL(1);
16312
16313    /**
16314     * Get the indicator label format of the slider.
16315     *
16316     * @param obj The slider object.
16317     * @return The indicator label format string in UTF-8.
16318     *
16319     * The slider may display its value somewhere else then unit label,
16320     * for example, above the slider knob that is dragged around. This function
16321     * gets the format string used for this.
16322     *
16323     * @see elm_slider_indicator_format_set() for more
16324     * information on how this works.
16325     *
16326     * @ingroup Slider
16327     */
16328    EAPI const char        *elm_slider_indicator_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16329
16330    /**
16331     * Set the format function pointer for the indicator label
16332     *
16333     * @param obj The slider object.
16334     * @param func The indicator format function.
16335     * @param free_func The freeing function for the format string.
16336     *
16337     * Set the callback function to format the indicator string.
16338     *
16339     * @see elm_slider_indicator_format_set() for more info on how this works.
16340     *
16341     * @ingroup Slider
16342     */
16343   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);
16344
16345   /**
16346    * Set the format function pointer for the units label
16347    *
16348    * @param obj The slider object.
16349    * @param func The units format function.
16350    * @param free_func The freeing function for the format string.
16351    *
16352    * Set the callback function to format the indicator string.
16353    *
16354    * @see elm_slider_units_format_set() for more info on how this works.
16355    *
16356    * @ingroup Slider
16357    */
16358   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);
16359
16360   /**
16361    * Set the orientation of a given slider widget.
16362    *
16363    * @param obj The slider object.
16364    * @param horizontal Use @c EINA_TRUE to make @p obj to be
16365    * @b horizontal, @c EINA_FALSE to make it @b vertical.
16366    *
16367    * Use this function to change how your slider is to be
16368    * disposed: vertically or horizontally.
16369    *
16370    * By default it's displayed horizontally.
16371    *
16372    * @see elm_slider_horizontal_get()
16373    *
16374    * @ingroup Slider
16375    */
16376    EAPI void               elm_slider_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
16377
16378    /**
16379     * Retrieve the orientation of a given slider widget
16380     *
16381     * @param obj The slider object.
16382     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
16383     * @c EINA_FALSE if it's @b vertical (and on errors).
16384     *
16385     * @see elm_slider_horizontal_set() for more details.
16386     *
16387     * @ingroup Slider
16388     */
16389    EAPI Eina_Bool          elm_slider_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16390
16391    /**
16392     * Set the minimum and maximum values for the slider.
16393     *
16394     * @param obj The slider object.
16395     * @param min The minimum value.
16396     * @param max The maximum value.
16397     *
16398     * Define the allowed range of values to be selected by the user.
16399     *
16400     * If actual value is less than @p min, it will be updated to @p min. If it
16401     * is bigger then @p max, will be updated to @p max. Actual value can be
16402     * get with elm_slider_value_get().
16403     *
16404     * By default, min is equal to 0.0, and max is equal to 1.0.
16405     *
16406     * @warning Maximum must be greater than minimum, otherwise behavior
16407     * is undefined.
16408     *
16409     * @see elm_slider_min_max_get()
16410     *
16411     * @ingroup Slider
16412     */
16413    EAPI void               elm_slider_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
16414
16415    /**
16416     * Get the minimum and maximum values of the slider.
16417     *
16418     * @param obj The slider object.
16419     * @param min Pointer where to store the minimum value.
16420     * @param max Pointer where to store the maximum value.
16421     *
16422     * @note If only one value is needed, the other pointer can be passed
16423     * as @c NULL.
16424     *
16425     * @see elm_slider_min_max_set() for details.
16426     *
16427     * @ingroup Slider
16428     */
16429    EAPI void               elm_slider_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
16430
16431    /**
16432     * Set the value the slider displays.
16433     *
16434     * @param obj The slider object.
16435     * @param val The value to be displayed.
16436     *
16437     * Value will be presented on the unit label following format specified with
16438     * elm_slider_unit_format_set() and on indicator with
16439     * elm_slider_indicator_format_set().
16440     *
16441     * @warning The value must to be between min and max values. This values
16442     * are set by elm_slider_min_max_set().
16443     *
16444     * @see elm_slider_value_get()
16445     * @see elm_slider_unit_format_set()
16446     * @see elm_slider_indicator_format_set()
16447     * @see elm_slider_min_max_set()
16448     *
16449     * @ingroup Slider
16450     */
16451    EAPI void               elm_slider_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
16452
16453    /**
16454     * Get the value displayed by the spinner.
16455     *
16456     * @param obj The spinner object.
16457     * @return The value displayed.
16458     *
16459     * @see elm_spinner_value_set() for details.
16460     *
16461     * @ingroup Slider
16462     */
16463    EAPI double             elm_slider_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16464
16465    /**
16466     * Invert a given slider widget's displaying values order
16467     *
16468     * @param obj The slider object.
16469     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
16470     * @c EINA_FALSE to bring it back to default, non-inverted values.
16471     *
16472     * A slider may be @b inverted, in which state it gets its
16473     * values inverted, with high vales being on the left or top and
16474     * low values on the right or bottom, as opposed to normally have
16475     * the low values on the former and high values on the latter,
16476     * respectively, for horizontal and vertical modes.
16477     *
16478     * @see elm_slider_inverted_get()
16479     *
16480     * @ingroup Slider
16481     */
16482    EAPI void               elm_slider_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
16483
16484    /**
16485     * Get whether a given slider widget's displaying values are
16486     * inverted or not.
16487     *
16488     * @param obj The slider object.
16489     * @return @c EINA_TRUE, if @p obj has inverted values,
16490     * @c EINA_FALSE otherwise (and on errors).
16491     *
16492     * @see elm_slider_inverted_set() for more details.
16493     *
16494     * @ingroup Slider
16495     */
16496    EAPI Eina_Bool          elm_slider_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16497
16498    /**
16499     * Set whether to enlarge slider indicator (augmented knob) or not.
16500     *
16501     * @param obj The slider object.
16502     * @param show @c EINA_TRUE will make it enlarge, @c EINA_FALSE will
16503     * let the knob always at default size.
16504     *
16505     * By default, indicator will be bigger while dragged by the user.
16506     *
16507     * @warning It won't display values set with
16508     * elm_slider_indicator_format_set() if you disable indicator.
16509     *
16510     * @ingroup Slider
16511     */
16512    EAPI void               elm_slider_indicator_show_set(Evas_Object *obj, Eina_Bool show) EINA_ARG_NONNULL(1);
16513
16514    /**
16515     * Get whether a given slider widget's enlarging indicator or not.
16516     *
16517     * @param obj The slider object.
16518     * @return @c EINA_TRUE, if @p obj is enlarging indicator, or
16519     * @c EINA_FALSE otherwise (and on errors).
16520     *
16521     * @see elm_slider_indicator_show_set() for details.
16522     *
16523     * @ingroup Slider
16524     */
16525    EAPI Eina_Bool          elm_slider_indicator_show_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16526
16527    /**
16528     * @}
16529     */
16530
16531    /**
16532     * @addtogroup Actionslider Actionslider
16533     *
16534     * @image html img/widget/actionslider/preview-00.png
16535     * @image latex img/widget/actionslider/preview-00.eps
16536     *
16537     * A actionslider is a switcher for 2 or 3 labels with customizable magnet
16538     * properties. The indicator is the element the user drags to choose a label.
16539     * When the position is set with magnet, when released the indicator will be
16540     * moved to it if it's nearest the magnetized position.
16541     *
16542     * @note By default all positions are set as enabled.
16543     *
16544     * Signals that you can add callbacks for are:
16545     *
16546     * "selected" - when user selects an enabled position (the label is passed
16547     *              as event info)".
16548     * @n
16549     * "pos_changed" - when the indicator reaches any of the positions("left",
16550     *                 "right" or "center").
16551     *
16552     * See an example of actionslider usage @ref actionslider_example_page "here"
16553     * @{
16554     */
16555    typedef enum _Elm_Actionslider_Pos
16556      {
16557         ELM_ACTIONSLIDER_NONE = 0,
16558         ELM_ACTIONSLIDER_LEFT = 1 << 0,
16559         ELM_ACTIONSLIDER_CENTER = 1 << 1,
16560         ELM_ACTIONSLIDER_RIGHT = 1 << 2,
16561         ELM_ACTIONSLIDER_ALL = (1 << 3) -1
16562      } Elm_Actionslider_Pos;
16563
16564    /**
16565     * Add a new actionslider to the parent.
16566     *
16567     * @param parent The parent object
16568     * @return The new actionslider object or NULL if it cannot be created
16569     */
16570    EAPI Evas_Object          *elm_actionslider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16571    /**
16572     * Set actionslider labels.
16573     *
16574     * @param obj The actionslider object
16575     * @param left_label The label to be set on the left.
16576     * @param center_label The label to be set on the center.
16577     * @param right_label The label to be set on the right.
16578     * @deprecated use elm_object_text_set() instead.
16579     */
16580    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);
16581    /**
16582     * Get actionslider labels.
16583     *
16584     * @param obj The actionslider object
16585     * @param left_label A char** to place the left_label of @p obj into.
16586     * @param center_label A char** to place the center_label of @p obj into.
16587     * @param right_label A char** to place the right_label of @p obj into.
16588     * @deprecated use elm_object_text_set() instead.
16589     */
16590    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);
16591    /**
16592     * Get actionslider selected label.
16593     *
16594     * @param obj The actionslider object
16595     * @return The selected label
16596     */
16597    EAPI const char           *elm_actionslider_selected_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16598    /**
16599     * Set actionslider indicator position.
16600     *
16601     * @param obj The actionslider object.
16602     * @param pos The position of the indicator.
16603     */
16604    EAPI void                  elm_actionslider_indicator_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
16605    /**
16606     * Get actionslider indicator position.
16607     *
16608     * @param obj The actionslider object.
16609     * @return The position of the indicator.
16610     */
16611    EAPI Elm_Actionslider_Pos  elm_actionslider_indicator_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16612    /**
16613     * Set actionslider magnet position. To make multiple positions magnets @c or
16614     * them together(e.g.: ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT)
16615     *
16616     * @param obj The actionslider object.
16617     * @param pos Bit mask indicating the magnet positions.
16618     */
16619    EAPI void                  elm_actionslider_magnet_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
16620    /**
16621     * Get actionslider magnet position.
16622     *
16623     * @param obj The actionslider object.
16624     * @return The positions with magnet property.
16625     */
16626    EAPI Elm_Actionslider_Pos  elm_actionslider_magnet_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16627    /**
16628     * Set actionslider enabled position. To set multiple positions as enabled @c or
16629     * them together(e.g.: ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT).
16630     *
16631     * @note All the positions are enabled by default.
16632     *
16633     * @param obj The actionslider object.
16634     * @param pos Bit mask indicating the enabled positions.
16635     */
16636    EAPI void                  elm_actionslider_enabled_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
16637    /**
16638     * Get actionslider enabled position.
16639     *
16640     * @param obj The actionslider object.
16641     * @return The enabled positions.
16642     */
16643    EAPI Elm_Actionslider_Pos  elm_actionslider_enabled_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16644    /**
16645     * Set the label used on the indicator.
16646     *
16647     * @param obj The actionslider object
16648     * @param label The label to be set on the indicator.
16649     * @deprecated use elm_object_text_set() instead.
16650     */
16651    EINA_DEPRECATED EAPI void                  elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
16652    /**
16653     * Get the label used on the indicator object.
16654     *
16655     * @param obj The actionslider object
16656     * @return The indicator label
16657     * @deprecated use elm_object_text_get() instead.
16658     */
16659    EINA_DEPRECATED EAPI const char           *elm_actionslider_indicator_label_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
16660    /**
16661     * @}
16662     */
16663
16664    /**
16665     * @defgroup Genlist Genlist
16666     *
16667     * @image html img/widget/genlist/preview-00.png
16668     * @image latex img/widget/genlist/preview-00.eps
16669     * @image html img/genlist.png
16670     * @image latex img/genlist.eps
16671     *
16672     * This widget aims to have more expansive list than the simple list in
16673     * Elementary that could have more flexible items and allow many more entries
16674     * while still being fast and low on memory usage. At the same time it was
16675     * also made to be able to do tree structures. But the price to pay is more
16676     * complexity when it comes to usage. If all you want is a simple list with
16677     * icons and a single label, use the normal @ref List object.
16678     *
16679     * Genlist has a fairly large API, mostly because it's relatively complex,
16680     * trying to be both expansive, powerful and efficient. First we will begin
16681     * an overview on the theory behind genlist.
16682     *
16683     * @section Genlist_Item_Class Genlist item classes - creating items
16684     *
16685     * In order to have the ability to add and delete items on the fly, genlist
16686     * implements a class (callback) system where the application provides a
16687     * structure with information about that type of item (genlist may contain
16688     * multiple different items with different classes, states and styles).
16689     * Genlist will call the functions in this struct (methods) when an item is
16690     * "realized" (i.e., created dynamically, while the user is scrolling the
16691     * grid). All objects will simply be deleted when no longer needed with
16692     * evas_object_del(). The #Elm_Genlist_Item_Class structure contains the
16693     * following members:
16694     * - @c item_style - This is a constant string and simply defines the name
16695     *   of the item style. It @b must be specified and the default should be @c
16696     *   "default".
16697     * - @c mode_item_style - This is a constant string and simply defines the
16698     *   name of the style that will be used for mode animations. It can be left
16699     *   as @c NULL if you don't plan to use Genlist mode. See
16700     *   elm_genlist_item_mode_set() for more info.
16701     *
16702     * - @c func - A struct with pointers to functions that will be called when
16703     *   an item is going to be actually created. All of them receive a @c data
16704     *   parameter that will point to the same data passed to
16705     *   elm_genlist_item_append() and related item creation functions, and a @c
16706     *   obj parameter that points to the genlist object itself.
16707     *
16708     * The function pointers inside @c func are @c label_get, @c icon_get, @c
16709     * state_get and @c del. The 3 first functions also receive a @c part
16710     * parameter described below. A brief description of these functions follows:
16711     *
16712     * - @c label_get - The @c part parameter is the name string of one of the
16713     *   existing text parts in the Edje group implementing the item's theme.
16714     *   This function @b must return a strdup'()ed string, as the caller will
16715     *   free() it when done. See #Elm_Genlist_Item_Label_Get_Cb.
16716     * - @c icon_get - The @c part parameter is the name string of one of the
16717     *   existing (icon) swallow parts in the Edje group implementing the item's
16718     *   theme. It must return @c NULL, when no icon is desired, or a valid
16719     *   object handle, otherwise.  The object will be deleted by the genlist on
16720     *   its deletion or when the item is "unrealized".  See
16721     *   #Elm_Genlist_Item_Icon_Get_Cb.
16722     * - @c func.state_get - The @c part parameter is the name string of one of
16723     *   the state parts in the Edje group implementing the item's theme. Return
16724     *   @c EINA_FALSE for false/off or @c EINA_TRUE for true/on. Genlists will
16725     *   emit a signal to its theming Edje object with @c "elm,state,XXX,active"
16726     *   and @c "elm" as "emission" and "source" arguments, respectively, when
16727     *   the state is true (the default is false), where @c XXX is the name of
16728     *   the (state) part.  See #Elm_Genlist_Item_State_Get_Cb.
16729     * - @c func.del - This is intended for use when genlist items are deleted,
16730     *   so any data attached to the item (e.g. its data parameter on creation)
16731     *   can be deleted. See #Elm_Genlist_Item_Del_Cb.
16732     *
16733     * available item styles:
16734     * - default
16735     * - default_style - The text part is a textblock
16736     *
16737     * @image html img/widget/genlist/preview-04.png
16738     * @image latex img/widget/genlist/preview-04.eps
16739     *
16740     * - double_label
16741     *
16742     * @image html img/widget/genlist/preview-01.png
16743     * @image latex img/widget/genlist/preview-01.eps
16744     *
16745     * - icon_top_text_bottom
16746     *
16747     * @image html img/widget/genlist/preview-02.png
16748     * @image latex img/widget/genlist/preview-02.eps
16749     *
16750     * - group_index
16751     *
16752     * @image html img/widget/genlist/preview-03.png
16753     * @image latex img/widget/genlist/preview-03.eps
16754     *
16755     * @section Genlist_Items Structure of items
16756     *
16757     * An item in a genlist can have 0 or more text labels (they can be regular
16758     * text or textblock Evas objects - that's up to the style to determine), 0
16759     * or more icons (which are simply objects swallowed into the genlist item's
16760     * theming Edje object) and 0 or more <b>boolean states</b>, which have the
16761     * behavior left to the user to define. The Edje part names for each of
16762     * these properties will be looked up, in the theme file for the genlist,
16763     * under the Edje (string) data items named @c "labels", @c "icons" and @c
16764     * "states", respectively. For each of those properties, if more than one
16765     * part is provided, they must have names listed separated by spaces in the
16766     * data fields. For the default genlist item theme, we have @b one label
16767     * part (@c "elm.text"), @b two icon parts (@c "elm.swalllow.icon" and @c
16768     * "elm.swallow.end") and @b no state parts.
16769     *
16770     * A genlist item may be at one of several styles. Elementary provides one
16771     * by default - "default", but this can be extended by system or application
16772     * custom themes/overlays/extensions (see @ref Theme "themes" for more
16773     * details).
16774     *
16775     * @section Genlist_Manipulation Editing and Navigating
16776     *
16777     * Items can be added by several calls. All of them return a @ref
16778     * Elm_Genlist_Item handle that is an internal member inside the genlist.
16779     * They all take a data parameter that is meant to be used for a handle to
16780     * the applications internal data (eg the struct with the original item
16781     * data). The parent parameter is the parent genlist item this belongs to if
16782     * it is a tree or an indexed group, and NULL if there is no parent. The
16783     * flags can be a bitmask of #ELM_GENLIST_ITEM_NONE,
16784     * #ELM_GENLIST_ITEM_SUBITEMS and #ELM_GENLIST_ITEM_GROUP. If
16785     * #ELM_GENLIST_ITEM_SUBITEMS is set then this item is displayed as an item
16786     * that is able to expand and have child items.  If ELM_GENLIST_ITEM_GROUP
16787     * is set then this item is group index item that is displayed at the top
16788     * until the next group comes. The func parameter is a convenience callback
16789     * that is called when the item is selected and the data parameter will be
16790     * the func_data parameter, obj be the genlist object and event_info will be
16791     * the genlist item.
16792     *
16793     * elm_genlist_item_append() adds an item to the end of the list, or if
16794     * there is a parent, to the end of all the child items of the parent.
16795     * elm_genlist_item_prepend() is the same but adds to the beginning of
16796     * the list or children list. elm_genlist_item_insert_before() inserts at
16797     * item before another item and elm_genlist_item_insert_after() inserts after
16798     * the indicated item.
16799     *
16800     * The application can clear the list with elm_genlist_clear() which deletes
16801     * all the items in the list and elm_genlist_item_del() will delete a specific
16802     * item. elm_genlist_item_subitems_clear() will clear all items that are
16803     * children of the indicated parent item.
16804     *
16805     * To help inspect list items you can jump to the item at the top of the list
16806     * with elm_genlist_first_item_get() which will return the item pointer, and
16807     * similarly elm_genlist_last_item_get() gets the item at the end of the list.
16808     * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
16809     * and previous items respectively relative to the indicated item. Using
16810     * these calls you can walk the entire item list/tree. Note that as a tree
16811     * the items are flattened in the list, so elm_genlist_item_parent_get() will
16812     * let you know which item is the parent (and thus know how to skip them if
16813     * wanted).
16814     *
16815     * @section Genlist_Muti_Selection Multi-selection
16816     *
16817     * If the application wants multiple items to be able to be selected,
16818     * elm_genlist_multi_select_set() can enable this. If the list is
16819     * single-selection only (the default), then elm_genlist_selected_item_get()
16820     * will return the selected item, if any, or NULL I none is selected. If the
16821     * list is multi-select then elm_genlist_selected_items_get() will return a
16822     * list (that is only valid as long as no items are modified (added, deleted,
16823     * selected or unselected)).
16824     *
16825     * @section Genlist_Usage_Hints Usage hints
16826     *
16827     * There are also convenience functions. elm_genlist_item_genlist_get() will
16828     * return the genlist object the item belongs to. elm_genlist_item_show()
16829     * will make the scroller scroll to show that specific item so its visible.
16830     * elm_genlist_item_data_get() returns the data pointer set by the item
16831     * creation functions.
16832     *
16833     * If an item changes (state of boolean changes, label or icons change),
16834     * then use elm_genlist_item_update() to have genlist update the item with
16835     * the new state. Genlist will re-realize the item thus call the functions
16836     * in the _Elm_Genlist_Item_Class for that item.
16837     *
16838     * To programmatically (un)select an item use elm_genlist_item_selected_set().
16839     * To get its selected state use elm_genlist_item_selected_get(). Similarly
16840     * to expand/contract an item and get its expanded state, use
16841     * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
16842     * again to make an item disabled (unable to be selected and appear
16843     * differently) use elm_genlist_item_disabled_set() to set this and
16844     * elm_genlist_item_disabled_get() to get the disabled state.
16845     *
16846     * In general to indicate how the genlist should expand items horizontally to
16847     * fill the list area, use elm_genlist_horizontal_set(). Valid modes are
16848     * ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is ELM_LIST_SCROLL. This
16849     * mode means that if items are too wide to fit, the scroller will scroll
16850     * horizontally. Otherwise items are expanded to fill the width of the
16851     * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
16852     * to the viewport width and limited to that size. This can be combined with
16853     * a different style that uses edjes' ellipsis feature (cutting text off like
16854     * this: "tex...").
16855     *
16856     * Items will only call their selection func and callback when first becoming
16857     * selected. Any further clicks will do nothing, unless you enable always
16858     * select with elm_genlist_always_select_mode_set(). This means even if
16859     * selected, every click will make the selected callbacks be called.
16860     * elm_genlist_no_select_mode_set() will turn off the ability to select
16861     * items entirely and they will neither appear selected nor call selected
16862     * callback functions.
16863     *
16864     * Remember that you can create new styles and add your own theme augmentation
16865     * per application with elm_theme_extension_add(). If you absolutely must
16866     * have a specific style that overrides any theme the user or system sets up
16867     * you can use elm_theme_overlay_add() to add such a file.
16868     *
16869     * @section Genlist_Implementation Implementation
16870     *
16871     * Evas tracks every object you create. Every time it processes an event
16872     * (mouse move, down, up etc.) it needs to walk through objects and find out
16873     * what event that affects. Even worse every time it renders display updates,
16874     * in order to just calculate what to re-draw, it needs to walk through many
16875     * many many objects. Thus, the more objects you keep active, the more
16876     * overhead Evas has in just doing its work. It is advisable to keep your
16877     * active objects to the minimum working set you need. Also remember that
16878     * object creation and deletion carries an overhead, so there is a
16879     * middle-ground, which is not easily determined. But don't keep massive lists
16880     * of objects you can't see or use. Genlist does this with list objects. It
16881     * creates and destroys them dynamically as you scroll around. It groups them
16882     * into blocks so it can determine the visibility etc. of a whole block at
16883     * once as opposed to having to walk the whole list. This 2-level list allows
16884     * for very large numbers of items to be in the list (tests have used up to
16885     * 2,000,000 items). Also genlist employs a queue for adding items. As items
16886     * may be different sizes, every item added needs to be calculated as to its
16887     * size and thus this presents a lot of overhead on populating the list, this
16888     * genlist employs a queue. Any item added is queued and spooled off over
16889     * time, actually appearing some time later, so if your list has many members
16890     * you may find it takes a while for them to all appear, with your process
16891     * consuming a lot of CPU while it is busy spooling.
16892     *
16893     * Genlist also implements a tree structure, but it does so with callbacks to
16894     * the application, with the application filling in tree structures when
16895     * requested (allowing for efficient building of a very deep tree that could
16896     * even be used for file-management). See the above smart signal callbacks for
16897     * details.
16898     *
16899     * @section Genlist_Smart_Events Genlist smart events
16900     *
16901     * Signals that you can add callbacks for are:
16902     * - @c "activated" - The user has double-clicked or pressed
16903     *   (enter|return|spacebar) on an item. The @c event_info parameter is the
16904     *   item that was activated.
16905     * - @c "clicked,double" - The user has double-clicked an item.  The @c
16906     *   event_info parameter is the item that was double-clicked.
16907     * - @c "selected" - This is called when a user has made an item selected.
16908     *   The event_info parameter is the genlist item that was selected.
16909     * - @c "unselected" - This is called when a user has made an item
16910     *   unselected. The event_info parameter is the genlist item that was
16911     *   unselected.
16912     * - @c "expanded" - This is called when elm_genlist_item_expanded_set() is
16913     *   called and the item is now meant to be expanded. The event_info
16914     *   parameter is the genlist item that was indicated to expand.  It is the
16915     *   job of this callback to then fill in the child items.
16916     * - @c "contracted" - This is called when elm_genlist_item_expanded_set() is
16917     *   called and the item is now meant to be contracted. The event_info
16918     *   parameter is the genlist item that was indicated to contract. It is the
16919     *   job of this callback to then delete the child items.
16920     * - @c "expand,request" - This is called when a user has indicated they want
16921     *   to expand a tree branch item. The callback should decide if the item can
16922     *   expand (has any children) and then call elm_genlist_item_expanded_set()
16923     *   appropriately to set the state. The event_info parameter is the genlist
16924     *   item that was indicated to expand.
16925     * - @c "contract,request" - This is called when a user has indicated they
16926     *   want to contract a tree branch item. The callback should decide if the
16927     *   item can contract (has any children) and then call
16928     *   elm_genlist_item_expanded_set() appropriately to set the state. The
16929     *   event_info parameter is the genlist item that was indicated to contract.
16930     * - @c "realized" - This is called when the item in the list is created as a
16931     *   real evas object. event_info parameter is the genlist item that was
16932     *   created. The object may be deleted at any time, so it is up to the
16933     *   caller to not use the object pointer from elm_genlist_item_object_get()
16934     *   in a way where it may point to freed objects.
16935     * - @c "unrealized" - This is called just before an item is unrealized.
16936     *   After this call icon objects provided will be deleted and the item
16937     *   object itself delete or be put into a floating cache.
16938     * - @c "drag,start,up" - This is called when the item in the list has been
16939     *   dragged (not scrolled) up.
16940     * - @c "drag,start,down" - This is called when the item in the list has been
16941     *   dragged (not scrolled) down.
16942     * - @c "drag,start,left" - This is called when the item in the list has been
16943     *   dragged (not scrolled) left.
16944     * - @c "drag,start,right" - This is called when the item in the list has
16945     *   been dragged (not scrolled) right.
16946     * - @c "drag,stop" - This is called when the item in the list has stopped
16947     *   being dragged.
16948     * - @c "drag" - This is called when the item in the list is being dragged.
16949     * - @c "longpressed" - This is called when the item is pressed for a certain
16950     *   amount of time. By default it's 1 second.
16951     * - @c "scroll,anim,start" - This is called when scrolling animation has
16952     *   started.
16953     * - @c "scroll,anim,stop" - This is called when scrolling animation has
16954     *   stopped.
16955     * - @c "scroll,drag,start" - This is called when dragging the content has
16956     *   started.
16957     * - @c "scroll,drag,stop" - This is called when dragging the content has
16958     *   stopped.
16959     * - @c "scroll,edge,top" - This is called when the genlist is scrolled until
16960     *   the top edge.
16961     * - @c "scroll,edge,bottom" - This is called when the genlist is scrolled
16962     *   until the bottom edge.
16963     * - @c "scroll,edge,left" - This is called when the genlist is scrolled
16964     *   until the left edge.
16965     * - @c "scroll,edge,right" - This is called when the genlist is scrolled
16966     *   until the right edge.
16967     * - @c "multi,swipe,left" - This is called when the genlist is multi-touch
16968     *   swiped left.
16969     * - @c "multi,swipe,right" - This is called when the genlist is multi-touch
16970     *   swiped right.
16971     * - @c "multi,swipe,up" - This is called when the genlist is multi-touch
16972     *   swiped up.
16973     * - @c "multi,swipe,down" - This is called when the genlist is multi-touch
16974     *   swiped down.
16975     * - @c "multi,pinch,out" - This is called when the genlist is multi-touch
16976     *   pinched out.  "- @c multi,pinch,in" - This is called when the genlist is
16977     *   multi-touch pinched in.
16978     * - @c "swipe" - This is called when the genlist is swiped.
16979     *
16980     * @section Genlist_Examples Examples
16981     *
16982     * Here is a list of examples that use the genlist, trying to show some of
16983     * its capabilities:
16984     * - @ref genlist_example_01
16985     * - @ref genlist_example_02
16986     * - @ref genlist_example_03
16987     * - @ref genlist_example_04
16988     * - @ref genlist_example_05
16989     */
16990
16991    /**
16992     * @addtogroup Genlist
16993     * @{
16994     */
16995
16996    /**
16997     * @enum _Elm_Genlist_Item_Flags
16998     * @typedef Elm_Genlist_Item_Flags
16999     *
17000     * Defines if the item is of any special type (has subitems or it's the
17001     * index of a group), or is just a simple item.
17002     *
17003     * @ingroup Genlist
17004     */
17005    typedef enum _Elm_Genlist_Item_Flags
17006      {
17007         ELM_GENLIST_ITEM_NONE = 0, /**< simple item */
17008         ELM_GENLIST_ITEM_SUBITEMS = (1 << 0), /**< may expand and have child items */
17009         ELM_GENLIST_ITEM_GROUP = (1 << 1) /**< index of a group of items */
17010      } Elm_Genlist_Item_Flags;
17011    typedef struct _Elm_Genlist_Item_Class Elm_Genlist_Item_Class;  /**< Genlist item class definition structs */
17012    typedef struct _Elm_Genlist_Item       Elm_Genlist_Item; /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
17013    typedef struct _Elm_Genlist_Item_Class_Func Elm_Genlist_Item_Class_Func; /**< Class functions for genlist item class */
17014    typedef char        *(*Elm_Genlist_Item_Label_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< Label fetching class function for genlist item classes. */
17015    typedef Evas_Object *(*Elm_Genlist_Item_Icon_Get_Cb)  (void *data, Evas_Object *obj, const char *part); /**< Icon fetching class function for genlist item classes. */
17016    typedef Eina_Bool    (*Elm_Genlist_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< State fetching class function for genlist item classes. */
17017    typedef void         (*Elm_Genlist_Item_Del_Cb)      (void *data, Evas_Object *obj); /**< Deletion class function for genlist item classes. */
17018    typedef void         (*GenlistItemMovedFunc)    (Evas_Object *obj, Elm_Genlist_Item *item, Elm_Genlist_Item *rel_item, Eina_Bool move_after); /** TODO: remove this by SeoZ **/
17019
17020    typedef char        *(*GenlistItemLabelGetFunc) (void *data, Evas_Object *obj, const char *part) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Genlist_Item_Label_Get_Cb instead. */
17021    typedef Evas_Object *(*GenlistItemIconGetFunc)  (void *data, Evas_Object *obj, const char *part) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Genlist_Item_Icon_Get_Cb instead. */
17022    typedef Eina_Bool    (*GenlistItemStateGetFunc) (void *data, Evas_Object *obj, const char *part) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Genlist_Item_State_Get_Cb instead. */
17023    typedef void         (*GenlistItemDelFunc)      (void *data, Evas_Object *obj) EINA_DEPRECATED; /** DEPRECATED. Use Elm_Genlist_Item_Del_Cb instead. */
17024
17025    /**
17026     * @struct _Elm_Genlist_Item_Class
17027     *
17028     * Genlist item class definition structs.
17029     *
17030     * This struct contains the style and fetching functions that will define the
17031     * contents of each item.
17032     *
17033     * @see @ref Genlist_Item_Class
17034     */
17035    struct _Elm_Genlist_Item_Class
17036      {
17037         const char                *item_style; /**< style of this class. */
17038         struct
17039           {
17040              Elm_Genlist_Item_Label_Get_Cb  label_get; /**< Label fetching class function for genlist item classes.*/
17041              Elm_Genlist_Item_Icon_Get_Cb   icon_get; /**< Icon fetching class function for genlist item classes. */
17042              Elm_Genlist_Item_State_Get_Cb  state_get; /**< State fetching class function for genlist item classes. */
17043              Elm_Genlist_Item_Del_Cb        del; /**< Deletion class function for genlist item classes. */
17044              GenlistItemMovedFunc     moved; // TODO: do not use this. change this to smart callback.
17045           } func;
17046         const char                *mode_item_style;
17047      };
17048
17049    /**
17050     * Add a new genlist widget to the given parent Elementary
17051     * (container) object
17052     *
17053     * @param parent The parent object
17054     * @return a new genlist widget handle or @c NULL, on errors
17055     *
17056     * This function inserts a new genlist widget on the canvas.
17057     *
17058     * @see elm_genlist_item_append()
17059     * @see elm_genlist_item_del()
17060     * @see elm_genlist_clear()
17061     *
17062     * @ingroup Genlist
17063     */
17064    EAPI Evas_Object      *elm_genlist_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
17065    /**
17066     * Remove all items from a given genlist widget.
17067     *
17068     * @param obj The genlist object
17069     *
17070     * This removes (and deletes) all items in @p obj, leaving it empty.
17071     *
17072     * @see elm_genlist_item_del(), to remove just one item.
17073     *
17074     * @ingroup Genlist
17075     */
17076    EAPI void              elm_genlist_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
17077    /**
17078     * Enable or disable multi-selection in the genlist
17079     *
17080     * @param obj The genlist object
17081     * @param multi Multi-select enable/disable. Default is disabled.
17082     *
17083     * This enables (@c EINA_TRUE) or disables (@c EINA_FALSE) multi-selection in
17084     * the list. This allows more than 1 item to be selected. To retrieve the list
17085     * of selected items, use elm_genlist_selected_items_get().
17086     *
17087     * @see elm_genlist_selected_items_get()
17088     * @see elm_genlist_multi_select_get()
17089     *
17090     * @ingroup Genlist
17091     */
17092    EAPI void              elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
17093    /**
17094     * Gets if multi-selection in genlist is enabled or disabled.
17095     *
17096     * @param obj The genlist object
17097     * @return Multi-select enabled/disabled
17098     * (@c EINA_TRUE = enabled/@c EINA_FALSE = disabled). Default is @c EINA_FALSE.
17099     *
17100     * @see elm_genlist_multi_select_set()
17101     *
17102     * @ingroup Genlist
17103     */
17104    EAPI Eina_Bool         elm_genlist_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17105    /**
17106     * This sets the horizontal stretching mode.
17107     *
17108     * @param obj The genlist object
17109     * @param mode The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT).
17110     *
17111     * This sets the mode used for sizing items horizontally. Valid modes
17112     * are #ELM_LIST_LIMIT and #ELM_LIST_SCROLL. The default is
17113     * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
17114     * the scroller will scroll horizontally. Otherwise items are expanded
17115     * to fill the width of the viewport of the scroller. If it is
17116     * ELM_LIST_LIMIT, items will be expanded to the viewport width and
17117     * limited to that size.
17118     *
17119     * @see elm_genlist_horizontal_get()
17120     *
17121     * @ingroup Genlist
17122     */
17123    EAPI void              elm_genlist_horizontal_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
17124    EINA_DEPRECATED EAPI void              elm_genlist_horizontal_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
17125    /**
17126     * Gets the horizontal stretching mode.
17127     *
17128     * @param obj The genlist object
17129     * @return The mode to use
17130     * (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)
17131     *
17132     * @see elm_genlist_horizontal_set()
17133     *
17134     * @ingroup Genlist
17135     */
17136    EAPI Elm_List_Mode     elm_genlist_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17137    EINA_DEPRECATED EAPI Elm_List_Mode     elm_genlist_horizontal_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17138    /**
17139     * Set the always select mode.
17140     *
17141     * @param obj The genlist object
17142     * @param always_select The always select mode (@c EINA_TRUE = on, @c
17143     * EINA_FALSE = off). Default is @c EINA_FALSE.
17144     *
17145     * Items will only call their selection func and callback when first
17146     * becoming selected. Any further clicks will do nothing, unless you
17147     * enable always select with elm_genlist_always_select_mode_set().
17148     * This means that, even if selected, every click will make the selected
17149     * callbacks be called.
17150     *
17151     * @see elm_genlist_always_select_mode_get()
17152     *
17153     * @ingroup Genlist
17154     */
17155    EAPI void              elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
17156    /**
17157     * Get the always select mode.
17158     *
17159     * @param obj The genlist object
17160     * @return The always select mode
17161     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
17162     *
17163     * @see elm_genlist_always_select_mode_set()
17164     *
17165     * @ingroup Genlist
17166     */
17167    EAPI Eina_Bool         elm_genlist_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17168    /**
17169     * Enable/disable the no select mode.
17170     *
17171     * @param obj The genlist object
17172     * @param no_select The no select mode
17173     * (EINA_TRUE = on, EINA_FALSE = off)
17174     *
17175     * This will turn off the ability to select items entirely and they
17176     * will neither appear selected nor call selected callback functions.
17177     *
17178     * @see elm_genlist_no_select_mode_get()
17179     *
17180     * @ingroup Genlist
17181     */
17182    EAPI void              elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
17183    /**
17184     * Gets whether the no select mode is enabled.
17185     *
17186     * @param obj The genlist object
17187     * @return The no select mode
17188     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
17189     *
17190     * @see elm_genlist_no_select_mode_set()
17191     *
17192     * @ingroup Genlist
17193     */
17194    EAPI Eina_Bool         elm_genlist_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17195    /**
17196     * Enable/disable compress mode.
17197     *
17198     * @param obj The genlist object
17199     * @param compress The compress mode
17200     * (@c EINA_TRUE = on, @c EINA_FALSE = off). Default is @c EINA_FALSE.
17201     *
17202     * This will enable the compress mode where items are "compressed"
17203     * horizontally to fit the genlist scrollable viewport width. This is
17204     * special for genlist.  Do not rely on
17205     * elm_genlist_horizontal_set() being set to @c ELM_LIST_COMPRESS to
17206     * work as genlist needs to handle it specially.
17207     *
17208     * @see elm_genlist_compress_mode_get()
17209     *
17210     * @ingroup Genlist
17211     */
17212    EAPI void              elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress) EINA_ARG_NONNULL(1);
17213    /**
17214     * Get whether the compress mode is enabled.
17215     *
17216     * @param obj The genlist object
17217     * @return The compress mode
17218     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
17219     *
17220     * @see elm_genlist_compress_mode_set()
17221     *
17222     * @ingroup Genlist
17223     */
17224    EAPI Eina_Bool         elm_genlist_compress_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17225    /**
17226     * Enable/disable height-for-width mode.
17227     *
17228     * @param obj The genlist object
17229     * @param setting The height-for-width mode (@c EINA_TRUE = on,
17230     * @c EINA_FALSE = off). Default is @c EINA_FALSE.
17231     *
17232     * With height-for-width mode the item width will be fixed (restricted
17233     * to a minimum of) to the list width when calculating its size in
17234     * order to allow the height to be calculated based on it. This allows,
17235     * for instance, text block to wrap lines if the Edje part is
17236     * configured with "text.min: 0 1".
17237     *
17238     * @note This mode will make list resize slower as it will have to
17239     *       recalculate every item height again whenever the list width
17240     *       changes!
17241     *
17242     * @note When height-for-width mode is enabled, it also enables
17243     *       compress mode (see elm_genlist_compress_mode_set()) and
17244     *       disables homogeneous (see elm_genlist_homogeneous_set()).
17245     *
17246     * @ingroup Genlist
17247     */
17248    EAPI void              elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width) EINA_ARG_NONNULL(1);
17249    /**
17250     * Get whether the height-for-width mode is enabled.
17251     *
17252     * @param obj The genlist object
17253     * @return The height-for-width mode (@c EINA_TRUE = on, @c EINA_FALSE =
17254     * off)
17255     *
17256     * @ingroup Genlist
17257     */
17258    EAPI Eina_Bool         elm_genlist_height_for_width_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17259    /**
17260     * Enable/disable horizontal and vertical bouncing effect.
17261     *
17262     * @param obj The genlist object
17263     * @param h_bounce Allow bounce horizontally (@c EINA_TRUE = on, @c
17264     * EINA_FALSE = off). Default is @c EINA_FALSE.
17265     * @param v_bounce Allow bounce vertically (@c EINA_TRUE = on, @c
17266     * EINA_FALSE = off). Default is @c EINA_TRUE.
17267     *
17268     * This will enable or disable the scroller bouncing effect for the
17269     * genlist. See elm_scroller_bounce_set() for details.
17270     *
17271     * @see elm_scroller_bounce_set()
17272     * @see elm_genlist_bounce_get()
17273     *
17274     * @ingroup Genlist
17275     */
17276    EAPI void              elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
17277    /**
17278     * Get whether the horizontal and vertical bouncing effect is enabled.
17279     *
17280     * @param obj The genlist object
17281     * @param h_bounce Pointer to a bool to receive if the bounce horizontally
17282     * option is set.
17283     * @param v_bounce Pointer to a bool to receive if the bounce vertically
17284     * option is set.
17285     *
17286     * @see elm_genlist_bounce_set()
17287     *
17288     * @ingroup Genlist
17289     */
17290    EAPI void              elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
17291    /**
17292     * Enable/disable homogenous mode.
17293     *
17294     * @param obj The genlist object
17295     * @param homogeneous Assume the items within the genlist are of the
17296     * same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c
17297     * EINA_FALSE.
17298     *
17299     * This will enable the homogeneous mode where items are of the same
17300     * height and width so that genlist may do the lazy-loading at its
17301     * maximum (which increases the performance for scrolling the list). This
17302     * implies 'compressed' mode.
17303     *
17304     * @see elm_genlist_compress_mode_set()
17305     * @see elm_genlist_homogeneous_get()
17306     *
17307     * @ingroup Genlist
17308     */
17309    EAPI void              elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
17310    /**
17311     * Get whether the homogenous mode is enabled.
17312     *
17313     * @param obj The genlist object
17314     * @return Assume the items within the genlist are of the same height
17315     * and width (EINA_TRUE = on, EINA_FALSE = off)
17316     *
17317     * @see elm_genlist_homogeneous_set()
17318     *
17319     * @ingroup Genlist
17320     */
17321    EAPI Eina_Bool         elm_genlist_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17322    /**
17323     * Set the maximum number of items within an item block
17324     *
17325     * @param obj The genlist object
17326     * @param n   Maximum number of items within an item block. Default is 32.
17327     *
17328     * This will configure the block count to tune to the target with
17329     * particular performance matrix.
17330     *
17331     * A block of objects will be used to reduce the number of operations due to
17332     * many objects in the screen. It can determine the visibility, or if the
17333     * object has changed, it theme needs to be updated, etc. doing this kind of
17334     * calculation to the entire block, instead of per object.
17335     *
17336     * The default value for the block count is enough for most lists, so unless
17337     * you know you will have a lot of objects visible in the screen at the same
17338     * time, don't try to change this.
17339     *
17340     * @see elm_genlist_block_count_get()
17341     * @see @ref Genlist_Implementation
17342     *
17343     * @ingroup Genlist
17344     */
17345    EAPI void              elm_genlist_block_count_set(Evas_Object *obj, int n) EINA_ARG_NONNULL(1);
17346    /**
17347     * Get the maximum number of items within an item block
17348     *
17349     * @param obj The genlist object
17350     * @return Maximum number of items within an item block
17351     *
17352     * @see elm_genlist_block_count_set()
17353     *
17354     * @ingroup Genlist
17355     */
17356    EAPI int               elm_genlist_block_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17357    /**
17358     * Set the timeout in seconds for the longpress event.
17359     *
17360     * @param obj The genlist object
17361     * @param timeout timeout in seconds. Default is 1.
17362     *
17363     * This option will change how long it takes to send an event "longpressed"
17364     * after the mouse down signal is sent to the list. If this event occurs, no
17365     * "clicked" event will be sent.
17366     *
17367     * @see elm_genlist_longpress_timeout_set()
17368     *
17369     * @ingroup Genlist
17370     */
17371    EAPI void              elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
17372    /**
17373     * Get the timeout in seconds for the longpress event.
17374     *
17375     * @param obj The genlist object
17376     * @return timeout in seconds
17377     *
17378     * @see elm_genlist_longpress_timeout_get()
17379     *
17380     * @ingroup Genlist
17381     */
17382    EAPI double            elm_genlist_longpress_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17383    /**
17384     * Append a new item in a given genlist widget.
17385     *
17386     * @param obj The genlist object
17387     * @param itc The item class for the item
17388     * @param data The item data
17389     * @param parent The parent item, or NULL if none
17390     * @param flags Item flags
17391     * @param func Convenience function called when the item is selected
17392     * @param func_data Data passed to @p func above.
17393     * @return A handle to the item added or @c NULL if not possible
17394     *
17395     * This adds the given item to the end of the list or the end of
17396     * the children list if the @p parent is given.
17397     *
17398     * @see elm_genlist_item_prepend()
17399     * @see elm_genlist_item_insert_before()
17400     * @see elm_genlist_item_insert_after()
17401     * @see elm_genlist_item_del()
17402     *
17403     * @ingroup Genlist
17404     */
17405    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);
17406    /**
17407     * Prepend a new item in a given genlist widget.
17408     *
17409     * @param obj The genlist object
17410     * @param itc The item class for the item
17411     * @param data The item data
17412     * @param parent The parent item, or NULL if none
17413     * @param flags Item flags
17414     * @param func Convenience function called when the item is selected
17415     * @param func_data Data passed to @p func above.
17416     * @return A handle to the item added or NULL if not possible
17417     *
17418     * This adds an item to the beginning of the list or beginning of the
17419     * children of the parent if given.
17420     *
17421     * @see elm_genlist_item_append()
17422     * @see elm_genlist_item_insert_before()
17423     * @see elm_genlist_item_insert_after()
17424     * @see elm_genlist_item_del()
17425     *
17426     * @ingroup Genlist
17427     */
17428    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);
17429    /**
17430     * Insert an item before another in a genlist widget
17431     *
17432     * @param obj The genlist object
17433     * @param itc The item class for the item
17434     * @param data The item data
17435     * @param before The item to place this new one before.
17436     * @param flags Item flags
17437     * @param func Convenience function called when the item is selected
17438     * @param func_data Data passed to @p func above.
17439     * @return A handle to the item added or @c NULL if not possible
17440     *
17441     * This inserts an item before another in the list. It will be in the
17442     * same tree level or group as the item it is inserted before.
17443     *
17444     * @see elm_genlist_item_append()
17445     * @see elm_genlist_item_prepend()
17446     * @see elm_genlist_item_insert_after()
17447     * @see elm_genlist_item_del()
17448     *
17449     * @ingroup Genlist
17450     */
17451    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);
17452    /**
17453     * Insert an item after another in a genlist widget
17454     *
17455     * @param obj The genlist object
17456     * @param itc The item class for the item
17457     * @param data The item data
17458     * @param after The item to place this new one after.
17459     * @param flags Item flags
17460     * @param func Convenience function called when the item is selected
17461     * @param func_data Data passed to @p func above.
17462     * @return A handle to the item added or @c NULL if not possible
17463     *
17464     * This inserts an item after another in the list. It will be in the
17465     * same tree level or group as the item it is inserted after.
17466     *
17467     * @see elm_genlist_item_append()
17468     * @see elm_genlist_item_prepend()
17469     * @see elm_genlist_item_insert_before()
17470     * @see elm_genlist_item_del()
17471     *
17472     * @ingroup Genlist
17473     */
17474    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);
17475    /**
17476     * Insert a new item into the sorted genlist object
17477     *
17478     * @param obj The genlist object
17479     * @param itc The item class for the item
17480     * @param data The item data
17481     * @param parent The parent item, or NULL if none
17482     * @param flags Item flags
17483     * @param comp The function called for the sort
17484     * @param func Convenience function called when item selected
17485     * @param func_data Data passed to @p func above.
17486     * @return A handle to the item added or NULL if not possible
17487     *
17488     * @ingroup Genlist
17489     */
17490    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);
17491    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);
17492    /* operations to retrieve existing items */
17493    /**
17494     * Get the selectd item in the genlist.
17495     *
17496     * @param obj The genlist object
17497     * @return The selected item, or NULL if none is selected.
17498     *
17499     * This gets the selected item in the list (if multi-selection is enabled, only
17500     * the item that was first selected in the list is returned - which is not very
17501     * useful, so see elm_genlist_selected_items_get() for when multi-selection is
17502     * used).
17503     *
17504     * If no item is selected, NULL is returned.
17505     *
17506     * @see elm_genlist_selected_items_get()
17507     *
17508     * @ingroup Genlist
17509     */
17510    EAPI Elm_Genlist_Item *elm_genlist_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17511    /**
17512     * Get a list of selected items in the genlist.
17513     *
17514     * @param obj The genlist object
17515     * @return The list of selected items, or NULL if none are selected.
17516     *
17517     * It returns a list of the selected items. This list pointer is only valid so
17518     * long as the selection doesn't change (no items are selected or unselected, or
17519     * unselected implicitly by deletion). The list contains Elm_Genlist_Item
17520     * pointers. The order of the items in this list is the order which they were
17521     * selected, i.e. the first item in this list is the first item that was
17522     * selected, and so on.
17523     *
17524     * @note If not in multi-select mode, consider using function
17525     * elm_genlist_selected_item_get() instead.
17526     *
17527     * @see elm_genlist_multi_select_set()
17528     * @see elm_genlist_selected_item_get()
17529     *
17530     * @ingroup Genlist
17531     */
17532    EAPI const Eina_List  *elm_genlist_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17533    /**
17534     * Get a list of realized items in genlist
17535     *
17536     * @param obj The genlist object
17537     * @return The list of realized items, nor NULL if none are realized.
17538     *
17539     * This returns a list of the realized items in the genlist. The list
17540     * contains Elm_Genlist_Item pointers. The list must be freed by the
17541     * caller when done with eina_list_free(). The item pointers in the
17542     * list are only valid so long as those items are not deleted or the
17543     * genlist is not deleted.
17544     *
17545     * @see elm_genlist_realized_items_update()
17546     *
17547     * @ingroup Genlist
17548     */
17549    EAPI Eina_List        *elm_genlist_realized_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17550    /**
17551     * Get the item that is at the x, y canvas coords.
17552     *
17553     * @param obj The gelinst object.
17554     * @param x The input x coordinate
17555     * @param y The input y coordinate
17556     * @param posret The position relative to the item returned here
17557     * @return The item at the coordinates or NULL if none
17558     *
17559     * This returns the item at the given coordinates (which are canvas
17560     * relative, not object-relative). If an item is at that coordinate,
17561     * that item handle is returned, and if @p posret is not NULL, the
17562     * integer pointed to is set to a value of -1, 0 or 1, depending if
17563     * the coordinate is on the upper portion of that item (-1), on the
17564     * middle section (0) or on the lower part (1). If NULL is returned as
17565     * an item (no item found there), then posret may indicate -1 or 1
17566     * based if the coordinate is above or below all items respectively in
17567     * the genlist.
17568     *
17569     * @ingroup Genlist
17570     */
17571    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);
17572    /**
17573     * Get the first item in the genlist
17574     *
17575     * This returns the first item in the list.
17576     *
17577     * @param obj The genlist object
17578     * @return The first item, or NULL if none
17579     *
17580     * @ingroup Genlist
17581     */
17582    EAPI Elm_Genlist_Item *elm_genlist_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17583    /**
17584     * Get the last item in the genlist
17585     *
17586     * This returns the last item in the list.
17587     *
17588     * @return The last item, or NULL if none
17589     *
17590     * @ingroup Genlist
17591     */
17592    EAPI Elm_Genlist_Item *elm_genlist_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17593    /**
17594     * Set the scrollbar policy
17595     *
17596     * @param obj The genlist object
17597     * @param policy_h Horizontal scrollbar policy.
17598     * @param policy_v Vertical scrollbar policy.
17599     *
17600     * This sets the scrollbar visibility policy for the given genlist
17601     * scroller. #ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
17602     * made visible if it is needed, and otherwise kept hidden.
17603     * #ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
17604     * #ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
17605     * respectively for the horizontal and vertical scrollbars. Default is
17606     * #ELM_SMART_SCROLLER_POLICY_AUTO
17607     *
17608     * @see elm_genlist_scroller_policy_get()
17609     *
17610     * @ingroup Genlist
17611     */
17612    EAPI void              elm_genlist_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
17613    /**
17614     * Get the scrollbar policy
17615     *
17616     * @param obj The genlist object
17617     * @param policy_h Pointer to store the horizontal scrollbar policy.
17618     * @param policy_v Pointer to store the vertical scrollbar policy.
17619     *
17620     * @see elm_genlist_scroller_policy_set()
17621     *
17622     * @ingroup Genlist
17623     */
17624    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);
17625    /**
17626     * Get the @b next item in a genlist widget's internal list of items,
17627     * given a handle to one of those items.
17628     *
17629     * @param item The genlist item to fetch next from
17630     * @return The item after @p item, or @c NULL if there's none (and
17631     * on errors)
17632     *
17633     * This returns the item placed after the @p item, on the container
17634     * genlist.
17635     *
17636     * @see elm_genlist_item_prev_get()
17637     *
17638     * @ingroup Genlist
17639     */
17640    EAPI Elm_Genlist_Item  *elm_genlist_item_next_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17641    /**
17642     * Get the @b previous item in a genlist widget's internal list of items,
17643     * given a handle to one of those items.
17644     *
17645     * @param item The genlist item to fetch previous from
17646     * @return The item before @p item, or @c NULL if there's none (and
17647     * on errors)
17648     *
17649     * This returns the item placed before the @p item, on the container
17650     * genlist.
17651     *
17652     * @see elm_genlist_item_next_get()
17653     *
17654     * @ingroup Genlist
17655     */
17656    EAPI Elm_Genlist_Item  *elm_genlist_item_prev_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17657    /**
17658     * Get the genlist object's handle which contains a given genlist
17659     * item
17660     *
17661     * @param item The item to fetch the container from
17662     * @return The genlist (parent) object
17663     *
17664     * This returns the genlist object itself that an item belongs to.
17665     *
17666     * @ingroup Genlist
17667     */
17668    EAPI Evas_Object       *elm_genlist_item_genlist_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17669    /**
17670     * Get the parent item of the given item
17671     *
17672     * @param it The item
17673     * @return The parent of the item or @c NULL if it has no parent.
17674     *
17675     * This returns the item that was specified as parent of the item @p it on
17676     * elm_genlist_item_append() and insertion related functions.
17677     *
17678     * @ingroup Genlist
17679     */
17680    EAPI Elm_Genlist_Item  *elm_genlist_item_parent_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
17681    /**
17682     * Remove all sub-items (children) of the given item
17683     *
17684     * @param it The item
17685     *
17686     * This removes all items that are children (and their descendants) of the
17687     * given item @p it.
17688     *
17689     * @see elm_genlist_clear()
17690     * @see elm_genlist_item_del()
17691     *
17692     * @ingroup Genlist
17693     */
17694    EAPI void               elm_genlist_item_subitems_clear(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17695    /**
17696     * Set whether a given genlist item is selected or not
17697     *
17698     * @param it The item
17699     * @param selected Use @c EINA_TRUE, to make it selected, @c
17700     * EINA_FALSE to make it unselected
17701     *
17702     * This sets the selected state of an item. If multi selection is
17703     * not enabled on the containing genlist and @p selected is @c
17704     * EINA_TRUE, any other previously selected items will get
17705     * unselected in favor of this new one.
17706     *
17707     * @see elm_genlist_item_selected_get()
17708     *
17709     * @ingroup Genlist
17710     */
17711    EAPI void               elm_genlist_item_selected_set(Elm_Genlist_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
17712    /**
17713     * Get whether a given genlist item is selected or not
17714     *
17715     * @param it The item
17716     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
17717     *
17718     * @see elm_genlist_item_selected_set() for more details
17719     *
17720     * @ingroup Genlist
17721     */
17722    EAPI Eina_Bool          elm_genlist_item_selected_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17723    /**
17724     * Sets the expanded state of an item.
17725     *
17726     * @param it The item
17727     * @param expanded The expanded state (@c EINA_TRUE expanded, @c EINA_FALSE not expanded).
17728     *
17729     * This function flags the item of type #ELM_GENLIST_ITEM_SUBITEMS as
17730     * expanded or not.
17731     *
17732     * The theme will respond to this change visually, and a signal "expanded" or
17733     * "contracted" will be sent from the genlist with a pointer to the item that
17734     * has been expanded/contracted.
17735     *
17736     * Calling this function won't show or hide any child of this item (if it is
17737     * a parent). You must manually delete and create them on the callbacks fo
17738     * the "expanded" or "contracted" signals.
17739     *
17740     * @see elm_genlist_item_expanded_get()
17741     *
17742     * @ingroup Genlist
17743     */
17744    EAPI void               elm_genlist_item_expanded_set(Elm_Genlist_Item *item, Eina_Bool expanded) EINA_ARG_NONNULL(1);
17745    /**
17746     * Get the expanded state of an item
17747     *
17748     * @param it The item
17749     * @return The expanded state
17750     *
17751     * This gets the expanded state of an item.
17752     *
17753     * @see elm_genlist_item_expanded_set()
17754     *
17755     * @ingroup Genlist
17756     */
17757    EAPI Eina_Bool          elm_genlist_item_expanded_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17758    /**
17759     * Get the depth of expanded item
17760     *
17761     * @param it The genlist item object
17762     * @return The depth of expanded item
17763     *
17764     * @ingroup Genlist
17765     */
17766    EAPI int                elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
17767    /**
17768     * Set whether a given genlist item is disabled or not.
17769     *
17770     * @param it The item
17771     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
17772     * to enable it back.
17773     *
17774     * A disabled item cannot be selected or unselected. It will also
17775     * change its appearance, to signal the user it's disabled.
17776     *
17777     * @see elm_genlist_item_disabled_get()
17778     *
17779     * @ingroup Genlist
17780     */
17781    EAPI void               elm_genlist_item_disabled_set(Elm_Genlist_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
17782    /**
17783     * Get whether a given genlist item is disabled or not.
17784     *
17785     * @param it The item
17786     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
17787     * (and on errors).
17788     *
17789     * @see elm_genlist_item_disabled_set() for more details
17790     *
17791     * @ingroup Genlist
17792     */
17793    EAPI Eina_Bool          elm_genlist_item_disabled_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17794    /**
17795     * Sets the display only state of an item.
17796     *
17797     * @param it The item
17798     * @param display_only @c EINA_TRUE if the item is display only, @c
17799     * EINA_FALSE otherwise.
17800     *
17801     * A display only item cannot be selected or unselected. It is for
17802     * display only and not selecting or otherwise clicking, dragging
17803     * etc. by the user, thus finger size rules will not be applied to
17804     * this item.
17805     *
17806     * It's good to set group index items to display only state.
17807     *
17808     * @see elm_genlist_item_display_only_get()
17809     *
17810     * @ingroup Genlist
17811     */
17812    EAPI void               elm_genlist_item_display_only_set(Elm_Genlist_Item *it, Eina_Bool display_only) EINA_ARG_NONNULL(1);
17813    /**
17814     * Get the display only state of an item
17815     *
17816     * @param it The item
17817     * @return @c EINA_TRUE if the item is display only, @c
17818     * EINA_FALSE otherwise.
17819     *
17820     * @see elm_genlist_item_display_only_set()
17821     *
17822     * @ingroup Genlist
17823     */
17824    EAPI Eina_Bool          elm_genlist_item_display_only_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
17825    /**
17826     * Show the portion of a genlist's internal list containing a given
17827     * item, immediately.
17828     *
17829     * @param it The item to display
17830     *
17831     * This causes genlist to jump to the given item @p it and show it (by
17832     * immediately scrolling to that position), if it is not fully visible.
17833     *
17834     * @see elm_genlist_item_bring_in()
17835     * @see elm_genlist_item_top_show()
17836     * @see elm_genlist_item_middle_show()
17837     *
17838     * @ingroup Genlist
17839     */
17840    EAPI void               elm_genlist_item_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17841    /**
17842     * Animatedly bring in, to the visible are of a genlist, a given
17843     * item on it.
17844     *
17845     * @param it The item to display
17846     *
17847     * This causes genlist to jump to the given item @p it and show it (by
17848     * animatedly scrolling), if it is not fully visible. This may use animation
17849     * to do so and take a period of time
17850     *
17851     * @see elm_genlist_item_show()
17852     * @see elm_genlist_item_top_bring_in()
17853     * @see elm_genlist_item_middle_bring_in()
17854     *
17855     * @ingroup Genlist
17856     */
17857    EAPI void               elm_genlist_item_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17858    /**
17859     * Show the portion of a genlist's internal list containing a given
17860     * item, immediately.
17861     *
17862     * @param it The item to display
17863     *
17864     * This causes genlist to jump to the given item @p it and show it (by
17865     * immediately scrolling to that position), if it is not fully visible.
17866     *
17867     * The item will be positioned at the top of the genlist viewport.
17868     *
17869     * @see elm_genlist_item_show()
17870     * @see elm_genlist_item_top_bring_in()
17871     *
17872     * @ingroup Genlist
17873     */
17874    EAPI void               elm_genlist_item_top_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17875    /**
17876     * Animatedly bring in, to the visible are of a genlist, a given
17877     * item on it.
17878     *
17879     * @param it The item
17880     *
17881     * This causes genlist to jump to the given item @p it and show it (by
17882     * animatedly scrolling), if it is not fully visible. This may use animation
17883     * to do so and take a period of time
17884     *
17885     * The item will be positioned at the top of the genlist viewport.
17886     *
17887     * @see elm_genlist_item_bring_in()
17888     * @see elm_genlist_item_top_show()
17889     *
17890     * @ingroup Genlist
17891     */
17892    EAPI void               elm_genlist_item_top_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17893    /**
17894     * Show the portion of a genlist's internal list containing a given
17895     * item, immediately.
17896     *
17897     * @param it The item to display
17898     *
17899     * This causes genlist to jump to the given item @p it and show it (by
17900     * immediately scrolling to that position), if it is not fully visible.
17901     *
17902     * The item will be positioned at the middle of the genlist viewport.
17903     *
17904     * @see elm_genlist_item_show()
17905     * @see elm_genlist_item_middle_bring_in()
17906     *
17907     * @ingroup Genlist
17908     */
17909    EAPI void               elm_genlist_item_middle_show(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
17910    /**
17911     * Animatedly bring in, to the visible are of a genlist, a given
17912     * item on it.
17913     *
17914     * @param it The item
17915     *
17916     * This causes genlist to jump to the given item @p it and show it (by
17917     * animatedly scrolling), if it is not fully visible. This may use animation
17918     * to do so and take a period of time
17919     *
17920     * The item will be positioned at the middle of the genlist viewport.
17921     *
17922     * @see elm_genlist_item_bring_in()
17923     * @see elm_genlist_item_middle_show()
17924     *
17925     * @ingroup Genlist
17926     */
17927    EAPI void               elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
17928    /**
17929     * Remove a genlist item from the its parent, deleting it.
17930     *
17931     * @param item The item to be removed.
17932     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
17933     *
17934     * @see elm_genlist_clear(), to remove all items in a genlist at
17935     * once.
17936     *
17937     * @ingroup Genlist
17938     */
17939    EAPI void               elm_genlist_item_del(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17940    /**
17941     * Return the data associated to a given genlist item
17942     *
17943     * @param item The genlist item.
17944     * @return the data associated to this item.
17945     *
17946     * This returns the @c data value passed on the
17947     * elm_genlist_item_append() and related item addition calls.
17948     *
17949     * @see elm_genlist_item_append()
17950     * @see elm_genlist_item_data_set()
17951     *
17952     * @ingroup Genlist
17953     */
17954    EAPI void              *elm_genlist_item_data_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
17955    /**
17956     * Set the data associated to a given genlist item
17957     *
17958     * @param item The genlist item
17959     * @param data The new data pointer to set on it
17960     *
17961     * This @b overrides the @c data value passed on the
17962     * elm_genlist_item_append() and related item addition calls. This
17963     * function @b won't call elm_genlist_item_update() automatically,
17964     * so you'd issue it afterwards if you want to hove the item
17965     * updated to reflect the that new data.
17966     *
17967     * @see elm_genlist_item_data_get()
17968     *
17969     * @ingroup Genlist
17970     */
17971    EAPI void               elm_genlist_item_data_set(Elm_Genlist_Item *it, const void *data) EINA_ARG_NONNULL(1);
17972    /**
17973     * Tells genlist to "orphan" icons fetchs by the item class
17974     *
17975     * @param it The item
17976     *
17977     * This instructs genlist to release references to icons in the item,
17978     * meaning that they will no longer be managed by genlist and are
17979     * floating "orphans" that can be re-used elsewhere if the user wants
17980     * to.
17981     *
17982     * @ingroup Genlist
17983     */
17984    EAPI void               elm_genlist_item_icons_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
17985    /**
17986     * Get the real Evas object created to implement the view of a
17987     * given genlist item
17988     *
17989     * @param item The genlist item.
17990     * @return the Evas object implementing this item's view.
17991     *
17992     * This returns the actual Evas object used to implement the
17993     * specified genlist item's view. This may be @c NULL, as it may
17994     * not have been created or may have been deleted, at any time, by
17995     * the genlist. <b>Do not modify this object</b> (move, resize,
17996     * show, hide, etc.), as the genlist is controlling it. This
17997     * function is for querying, emitting custom signals or hooking
17998     * lower level callbacks for events on that object. Do not delete
17999     * this object under any circumstances.
18000     *
18001     * @see elm_genlist_item_data_get()
18002     *
18003     * @ingroup Genlist
18004     */
18005    EAPI const Evas_Object *elm_genlist_item_object_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
18006    /**
18007     * Update the contents of an item
18008     *
18009     * @param it The item
18010     *
18011     * This updates an item by calling all the item class functions again
18012     * to get the icons, labels and states. Use this when the original
18013     * item data has changed and the changes are desired to be reflected.
18014     *
18015     * Use elm_genlist_realized_items_update() to update all already realized
18016     * items.
18017     *
18018     * @see elm_genlist_realized_items_update()
18019     *
18020     * @ingroup Genlist
18021     */
18022    EAPI void               elm_genlist_item_update(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18023    /**
18024     * Update the item class of an item
18025     *
18026     * @param it The item
18027     * @param itc The item class for the item
18028     *
18029     * This sets another class fo the item, changing the way that it is
18030     * displayed. After changing the item class, elm_genlist_item_update() is
18031     * called on the item @p it.
18032     *
18033     * @ingroup Genlist
18034     */
18035    EAPI void               elm_genlist_item_item_class_update(Elm_Genlist_Item *it, const Elm_Genlist_Item_Class *itc) EINA_ARG_NONNULL(1, 2);
18036    EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
18037    /**
18038     * Set the text to be shown in a given genlist item's tooltips.
18039     *
18040     * @param item The genlist item
18041     * @param text The text to set in the content
18042     *
18043     * This call will setup the text to be used as tooltip to that item
18044     * (analogous to elm_object_tooltip_text_set(), but being item
18045     * tooltips with higher precedence than object tooltips). It can
18046     * have only one tooltip at a time, so any previous tooltip data
18047     * will get removed.
18048     *
18049     * In order to set an icon or something else as a tooltip, look at
18050     * elm_genlist_item_tooltip_content_cb_set().
18051     *
18052     * @ingroup Genlist
18053     */
18054    EAPI void               elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item, const char *text) EINA_ARG_NONNULL(1);
18055    /**
18056     * Set the content to be shown in a given genlist item's tooltips
18057     *
18058     * @param item The genlist item.
18059     * @param func The function returning the tooltip contents.
18060     * @param data What to provide to @a func as callback data/context.
18061     * @param del_cb Called when data is not needed anymore, either when
18062     *        another callback replaces @p func, the tooltip is unset with
18063     *        elm_genlist_item_tooltip_unset() or the owner @p item
18064     *        dies. This callback receives as its first parameter the
18065     *        given @p data, being @c event_info the item handle.
18066     *
18067     * This call will setup the tooltip's contents to @p item
18068     * (analogous to elm_object_tooltip_content_cb_set(), but being
18069     * item tooltips with higher precedence than object tooltips). It
18070     * can have only one tooltip at a time, so any previous tooltip
18071     * content will get removed. @p func (with @p data) will be called
18072     * every time Elementary needs to show the tooltip and it should
18073     * return a valid Evas object, which will be fully managed by the
18074     * tooltip system, getting deleted when the tooltip is gone.
18075     *
18076     * In order to set just a text as a tooltip, look at
18077     * elm_genlist_item_tooltip_text_set().
18078     *
18079     * @ingroup Genlist
18080     */
18081    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);
18082    /**
18083     * Unset a tooltip from a given genlist item
18084     *
18085     * @param item genlist item to remove a previously set tooltip from.
18086     *
18087     * This call removes any tooltip set on @p item. The callback
18088     * provided as @c del_cb to
18089     * elm_genlist_item_tooltip_content_cb_set() will be called to
18090     * notify it is not used anymore (and have resources cleaned, if
18091     * need be).
18092     *
18093     * @see elm_genlist_item_tooltip_content_cb_set()
18094     *
18095     * @ingroup Genlist
18096     */
18097    EAPI void               elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18098    /**
18099     * Set a different @b style for a given genlist item's tooltip.
18100     *
18101     * @param item genlist item with tooltip set
18102     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
18103     * "default", @c "transparent", etc)
18104     *
18105     * Tooltips can have <b>alternate styles</b> to be displayed on,
18106     * which are defined by the theme set on Elementary. This function
18107     * works analogously as elm_object_tooltip_style_set(), but here
18108     * applied only to genlist item objects. The default style for
18109     * tooltips is @c "default".
18110     *
18111     * @note before you set a style you should define a tooltip with
18112     *       elm_genlist_item_tooltip_content_cb_set() or
18113     *       elm_genlist_item_tooltip_text_set()
18114     *
18115     * @see elm_genlist_item_tooltip_style_get()
18116     *
18117     * @ingroup Genlist
18118     */
18119    EAPI void               elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
18120    /**
18121     * Get the style set a given genlist item's tooltip.
18122     *
18123     * @param item genlist item with tooltip already set on.
18124     * @return style the theme style in use, which defaults to
18125     *         "default". If the object does not have a tooltip set,
18126     *         then @c NULL is returned.
18127     *
18128     * @see elm_genlist_item_tooltip_style_set() for more details
18129     *
18130     * @ingroup Genlist
18131     */
18132    EAPI const char        *elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18133    /**
18134     * @brief Disable size restrictions on an object's tooltip
18135     * @param item The tooltip's anchor object
18136     * @param disable If EINA_TRUE, size restrictions are disabled
18137     * @return EINA_FALSE on failure, EINA_TRUE on success
18138     *
18139     * This function allows a tooltip to expand beyond its parant window's canvas.
18140     * It will instead be limited only by the size of the display.
18141     */
18142    EAPI Eina_Bool          elm_genlist_item_tooltip_size_restrict_disable(Elm_Genlist_Item *item, Eina_Bool disable);
18143    /**
18144     * @brief Retrieve size restriction state of an object's tooltip
18145     * @param item The tooltip's anchor object
18146     * @return If EINA_TRUE, size restrictions are disabled
18147     *
18148     * This function returns whether a tooltip is allowed to expand beyond
18149     * its parant window's canvas.
18150     * It will instead be limited only by the size of the display.
18151     */
18152    EAPI Eina_Bool          elm_genlist_item_tooltip_size_restrict_disabled_get(const Elm_Genlist_Item *item);
18153    /**
18154     * Set the type of mouse pointer/cursor decoration to be shown,
18155     * when the mouse pointer is over the given genlist widget item
18156     *
18157     * @param item genlist item to customize cursor on
18158     * @param cursor the cursor type's name
18159     *
18160     * This function works analogously as elm_object_cursor_set(), but
18161     * here the cursor's changing area is restricted to the item's
18162     * area, and not the whole widget's. Note that that item cursors
18163     * have precedence over widget cursors, so that a mouse over @p
18164     * item will always show cursor @p type.
18165     *
18166     * If this function is called twice for an object, a previously set
18167     * cursor will be unset on the second call.
18168     *
18169     * @see elm_object_cursor_set()
18170     * @see elm_genlist_item_cursor_get()
18171     * @see elm_genlist_item_cursor_unset()
18172     *
18173     * @ingroup Genlist
18174     */
18175    EAPI void               elm_genlist_item_cursor_set(Elm_Genlist_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
18176    /**
18177     * Get the type of mouse pointer/cursor decoration set to be shown,
18178     * when the mouse pointer is over the given genlist widget item
18179     *
18180     * @param item genlist item with custom cursor set
18181     * @return the cursor type's name or @c NULL, if no custom cursors
18182     * were set to @p item (and on errors)
18183     *
18184     * @see elm_object_cursor_get()
18185     * @see elm_genlist_item_cursor_set() for more details
18186     * @see elm_genlist_item_cursor_unset()
18187     *
18188     * @ingroup Genlist
18189     */
18190    EAPI const char        *elm_genlist_item_cursor_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18191    /**
18192     * Unset any custom mouse pointer/cursor decoration set to be
18193     * shown, when the mouse pointer is over the given genlist widget
18194     * item, thus making it show the @b default cursor again.
18195     *
18196     * @param item a genlist item
18197     *
18198     * Use this call to undo any custom settings on this item's cursor
18199     * decoration, bringing it back to defaults (no custom style set).
18200     *
18201     * @see elm_object_cursor_unset()
18202     * @see elm_genlist_item_cursor_set() for more details
18203     *
18204     * @ingroup Genlist
18205     */
18206    EAPI void               elm_genlist_item_cursor_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18207    /**
18208     * Set a different @b style for a given custom cursor set for a
18209     * genlist item.
18210     *
18211     * @param item genlist item with custom cursor set
18212     * @param style the <b>theme style</b> to use (e.g. @c "default",
18213     * @c "transparent", etc)
18214     *
18215     * This function only makes sense when one is using custom mouse
18216     * cursor decorations <b>defined in a theme file</b> , which can
18217     * have, given a cursor name/type, <b>alternate styles</b> on
18218     * it. It works analogously as elm_object_cursor_style_set(), but
18219     * here applied only to genlist item objects.
18220     *
18221     * @warning Before you set a cursor style you should have defined a
18222     *       custom cursor previously on the item, with
18223     *       elm_genlist_item_cursor_set()
18224     *
18225     * @see elm_genlist_item_cursor_engine_only_set()
18226     * @see elm_genlist_item_cursor_style_get()
18227     *
18228     * @ingroup Genlist
18229     */
18230    EAPI void               elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
18231    /**
18232     * Get the current @b style set for a given genlist item's custom
18233     * cursor
18234     *
18235     * @param item genlist item with custom cursor set.
18236     * @return style the cursor style in use. If the object does not
18237     *         have a cursor set, then @c NULL is returned.
18238     *
18239     * @see elm_genlist_item_cursor_style_set() for more details
18240     *
18241     * @ingroup Genlist
18242     */
18243    EAPI const char        *elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18244    /**
18245     * Set if the (custom) cursor for a given genlist item should be
18246     * searched in its theme, also, or should only rely on the
18247     * rendering engine.
18248     *
18249     * @param item item with custom (custom) cursor already set on
18250     * @param engine_only Use @c EINA_TRUE to have cursors looked for
18251     * only on those provided by the rendering engine, @c EINA_FALSE to
18252     * have them searched on the widget's theme, as well.
18253     *
18254     * @note This call is of use only if you've set a custom cursor
18255     * for genlist items, with elm_genlist_item_cursor_set().
18256     *
18257     * @note By default, cursors will only be looked for between those
18258     * provided by the rendering engine.
18259     *
18260     * @ingroup Genlist
18261     */
18262    EAPI void               elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
18263    /**
18264     * Get if the (custom) cursor for a given genlist item is being
18265     * searched in its theme, also, or is only relying on the rendering
18266     * engine.
18267     *
18268     * @param item a genlist item
18269     * @return @c EINA_TRUE, if cursors are being looked for only on
18270     * those provided by the rendering engine, @c EINA_FALSE if they
18271     * are being searched on the widget's theme, as well.
18272     *
18273     * @see elm_genlist_item_cursor_engine_only_set(), for more details
18274     *
18275     * @ingroup Genlist
18276     */
18277    EAPI Eina_Bool          elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18278    /**
18279     * Update the contents of all realized items.
18280     *
18281     * @param obj The genlist object.
18282     *
18283     * This updates all realized items by calling all the item class functions again
18284     * to get the icons, labels and states. Use this when the original
18285     * item data has changed and the changes are desired to be reflected.
18286     *
18287     * To update just one item, use elm_genlist_item_update().
18288     *
18289     * @see elm_genlist_realized_items_get()
18290     * @see elm_genlist_item_update()
18291     *
18292     * @ingroup Genlist
18293     */
18294    EAPI void               elm_genlist_realized_items_update(Evas_Object *obj) EINA_ARG_NONNULL(1);
18295    /**
18296     * Activate a genlist mode on an item
18297     *
18298     * @param item The genlist item
18299     * @param mode Mode name
18300     * @param mode_set Boolean to define set or unset mode.
18301     *
18302     * A genlist mode is a different way of selecting an item. Once a mode is
18303     * activated on an item, any other selected item is immediately unselected.
18304     * This feature provides an easy way of implementing a new kind of animation
18305     * for selecting an item, without having to entirely rewrite the item style
18306     * theme. However, the elm_genlist_selected_* API can't be used to get what
18307     * item is activate for a mode.
18308     *
18309     * The current item style will still be used, but applying a genlist mode to
18310     * an item will select it using a different kind of animation.
18311     *
18312     * The current active item for a mode can be found by
18313     * elm_genlist_mode_item_get().
18314     *
18315     * The characteristics of genlist mode are:
18316     * - Only one mode can be active at any time, and for only one item.
18317     * - Genlist handles deactivating other items when one item is activated.
18318     * - A mode is defined in the genlist theme (edc), and more modes can easily
18319     *   be added.
18320     * - A mode style and the genlist item style are different things. They
18321     *   can be combined to provide a default style to the item, with some kind
18322     *   of animation for that item when the mode is activated.
18323     *
18324     * When a mode is activated on an item, a new view for that item is created.
18325     * The theme of this mode defines the animation that will be used to transit
18326     * the item from the old view to the new view. This second (new) view will be
18327     * active for that item while the mode is active on the item, and will be
18328     * destroyed after the mode is totally deactivated from that item.
18329     *
18330     * @see elm_genlist_mode_get()
18331     * @see elm_genlist_mode_item_get()
18332     *
18333     * @ingroup Genlist
18334     */
18335    EAPI void               elm_genlist_item_mode_set(Elm_Genlist_Item *it, const char *mode_type, Eina_Bool mode_set) EINA_ARG_NONNULL(1, 2);
18336    /**
18337     * Get the last (or current) genlist mode used.
18338     *
18339     * @param obj The genlist object
18340     *
18341     * This function just returns the name of the last used genlist mode. It will
18342     * be the current mode if it's still active.
18343     *
18344     * @see elm_genlist_item_mode_set()
18345     * @see elm_genlist_mode_item_get()
18346     *
18347     * @ingroup Genlist
18348     */
18349    EAPI const char        *elm_genlist_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18350    /**
18351     * Get active genlist mode item
18352     *
18353     * @param obj The genlist object
18354     * @return The active item for that current mode. Or @c NULL if no item is
18355     * activated with any mode.
18356     *
18357     * This function returns the item that was activated with a mode, by the
18358     * function elm_genlist_item_mode_set().
18359     *
18360     * @see elm_genlist_item_mode_set()
18361     * @see elm_genlist_mode_get()
18362     *
18363     * @ingroup Genlist
18364     */
18365    EAPI const Elm_Genlist_Item *elm_genlist_mode_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18366
18367    /**
18368     * Set reorder mode
18369     *
18370     * @param obj The genlist object
18371     * @param reorder_mode The reorder mode
18372     * (EINA_TRUE = on, EINA_FALSE = off)
18373     *
18374     * @ingroup Genlist
18375     */
18376    EAPI void               elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
18377
18378    /**
18379     * Get the reorder mode
18380     *
18381     * @param obj The genlist object
18382     * @return The reorder mode
18383     * (EINA_TRUE = on, EINA_FALSE = off)
18384     *
18385     * @ingroup Genlist
18386     */
18387    EAPI Eina_Bool          elm_genlist_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18388
18389    /**
18390     * @}
18391     */
18392
18393    /**
18394     * @defgroup Check Check
18395     *
18396     * @image html img/widget/check/preview-00.png
18397     * @image latex img/widget/check/preview-00.eps
18398     * @image html img/widget/check/preview-01.png
18399     * @image latex img/widget/check/preview-01.eps
18400     * @image html img/widget/check/preview-02.png
18401     * @image latex img/widget/check/preview-02.eps
18402     *
18403     * @brief The check widget allows for toggling a value between true and
18404     * false.
18405     *
18406     * Check objects are a lot like radio objects in layout and functionality
18407     * except they do not work as a group, but independently and only toggle the
18408     * value of a boolean from false to true (0 or 1). elm_check_state_set() sets
18409     * the boolean state (1 for true, 0 for false), and elm_check_state_get()
18410     * returns the current state. For convenience, like the radio objects, you
18411     * can set a pointer to a boolean directly with elm_check_state_pointer_set()
18412     * for it to modify.
18413     *
18414     * Signals that you can add callbacks for are:
18415     * "changed" - This is called whenever the user changes the state of one of
18416     *             the check object(event_info is NULL).
18417     *
18418     * @ref tutorial_check should give you a firm grasp of how to use this widget.
18419     * @{
18420     */
18421    /**
18422     * @brief Add a new Check object
18423     *
18424     * @param parent The parent object
18425     * @return The new object or NULL if it cannot be created
18426     */
18427    EAPI Evas_Object *elm_check_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18428    /**
18429     * @brief Set the text label of the check object
18430     *
18431     * @param obj The check object
18432     * @param label The text label string in UTF-8
18433     *
18434     * @deprecated use elm_object_text_set() instead.
18435     */
18436    EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
18437    /**
18438     * @brief Get the text label of the check object
18439     *
18440     * @param obj The check object
18441     * @return The text label string in UTF-8
18442     *
18443     * @deprecated use elm_object_text_get() instead.
18444     */
18445    EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18446    /**
18447     * @brief Set the icon object of the check object
18448     *
18449     * @param obj The check object
18450     * @param icon The icon object
18451     *
18452     * Once the icon object is set, a previously set one will be deleted.
18453     * If you want to keep that old content object, use the
18454     * elm_check_icon_unset() function.
18455     */
18456    EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
18457    /**
18458     * @brief Get the icon object of the check object
18459     *
18460     * @param obj The check object
18461     * @return The icon object
18462     */
18463    EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18464    /**
18465     * @brief Unset the icon used for the check object
18466     *
18467     * @param obj The check object
18468     * @return The icon object that was being used
18469     *
18470     * Unparent and return the icon object which was set for this widget.
18471     */
18472    EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
18473    /**
18474     * @brief Set the on/off state of the check object
18475     *
18476     * @param obj The check object
18477     * @param state The state to use (1 == on, 0 == off)
18478     *
18479     * This sets the state of the check. If set
18480     * with elm_check_state_pointer_set() the state of that variable is also
18481     * changed. Calling this @b doesn't cause the "changed" signal to be emited.
18482     */
18483    EAPI void         elm_check_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
18484    /**
18485     * @brief Get the state of the check object
18486     *
18487     * @param obj The check object
18488     * @return The boolean state
18489     */
18490    EAPI Eina_Bool    elm_check_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18491    /**
18492     * @brief Set a convenience pointer to a boolean to change
18493     *
18494     * @param obj The check object
18495     * @param statep Pointer to the boolean to modify
18496     *
18497     * This sets a pointer to a boolean, that, in addition to the check objects
18498     * state will also be modified directly. To stop setting the object pointed
18499     * to simply use NULL as the @p statep parameter. If @p statep is not NULL,
18500     * then when this is called, the check objects state will also be modified to
18501     * reflect the value of the boolean @p statep points to, just like calling
18502     * elm_check_state_set().
18503     */
18504    EAPI void         elm_check_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
18505    /**
18506     * @}
18507     */
18508
18509    /**
18510     * @defgroup Radio Radio
18511     *
18512     * @image html img/widget/radio/preview-00.png
18513     * @image latex img/widget/radio/preview-00.eps
18514     *
18515     * @brief Radio is a widget that allows for 1 or more options to be displayed
18516     * and have the user choose only 1 of them.
18517     *
18518     * A radio object contains an indicator, an optional Label and an optional
18519     * icon object. While it's possible to have a group of only one radio they,
18520     * are normally used in groups of 2 or more. To add a radio to a group use
18521     * elm_radio_group_add(). The radio object(s) will select from one of a set
18522     * of integer values, so any value they are configuring needs to be mapped to
18523     * a set of integers. To configure what value that radio object represents,
18524     * use  elm_radio_state_value_set() to set the integer it represents. To set
18525     * the value the whole group(which one is currently selected) is to indicate
18526     * use elm_radio_value_set() on any group member, and to get the groups value
18527     * use elm_radio_value_get(). For convenience the radio objects are also able
18528     * to directly set an integer(int) to the value that is selected. To specify
18529     * the pointer to this integer to modify, use elm_radio_value_pointer_set().
18530     * The radio objects will modify this directly. That implies the pointer must
18531     * point to valid memory for as long as the radio objects exist.
18532     *
18533     * Signals that you can add callbacks for are:
18534     * @li changed - This is called whenever the user changes the state of one of
18535     * the radio objects within the group of radio objects that work together.
18536     *
18537     * @ref tutorial_radio show most of this API in action.
18538     * @{
18539     */
18540    /**
18541     * @brief Add a new radio to the parent
18542     *
18543     * @param parent The parent object
18544     * @return The new object or NULL if it cannot be created
18545     */
18546    EAPI Evas_Object *elm_radio_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18547    /**
18548     * @brief Set the text label of the radio object
18549     *
18550     * @param obj The radio object
18551     * @param label The text label string in UTF-8
18552     *
18553     * @deprecated use elm_object_text_set() instead.
18554     */
18555    EINA_DEPRECATED EAPI void         elm_radio_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
18556    /**
18557     * @brief Get the text label of the radio object
18558     *
18559     * @param obj The radio object
18560     * @return The text label string in UTF-8
18561     *
18562     * @deprecated use elm_object_text_set() instead.
18563     */
18564    EINA_DEPRECATED EAPI const char  *elm_radio_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18565    /**
18566     * @brief Set the icon object of the radio object
18567     *
18568     * @param obj The radio object
18569     * @param icon The icon object
18570     *
18571     * Once the icon object is set, a previously set one will be deleted. If you
18572     * want to keep that old content object, use the elm_radio_icon_unset()
18573     * function.
18574     */
18575    EAPI void         elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
18576    /**
18577     * @brief Get the icon object of the radio object
18578     *
18579     * @param obj The radio object
18580     * @return The icon object
18581     *
18582     * @see elm_radio_icon_set()
18583     */
18584    EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18585    /**
18586     * @brief Unset the icon used for the radio object
18587     *
18588     * @param obj The radio object
18589     * @return The icon object that was being used
18590     *
18591     * Unparent and return the icon object which was set for this widget.
18592     *
18593     * @see elm_radio_icon_set()
18594     */
18595    EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
18596    /**
18597     * @brief Add this radio to a group of other radio objects
18598     *
18599     * @param obj The radio object
18600     * @param group Any object whose group the @p obj is to join.
18601     *
18602     * Radio objects work in groups. Each member should have a different integer
18603     * value assigned. In order to have them work as a group, they need to know
18604     * about each other. This adds the given radio object to the group of which
18605     * the group object indicated is a member.
18606     */
18607    EAPI void         elm_radio_group_add(Evas_Object *obj, Evas_Object *group) EINA_ARG_NONNULL(1);
18608    /**
18609     * @brief Set the integer value that this radio object represents
18610     *
18611     * @param obj The radio object
18612     * @param value The value to use if this radio object is selected
18613     *
18614     * This sets the value of the radio.
18615     */
18616    EAPI void         elm_radio_state_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
18617    /**
18618     * @brief Get the integer value that this radio object represents
18619     *
18620     * @param obj The radio object
18621     * @return The value used if this radio object is selected
18622     *
18623     * This gets the value of the radio.
18624     *
18625     * @see elm_radio_value_set()
18626     */
18627    EAPI int          elm_radio_state_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18628    /**
18629     * @brief Set the value of the radio.
18630     *
18631     * @param obj The radio object
18632     * @param value The value to use for the group
18633     *
18634     * This sets the value of the radio group and will also set the value if
18635     * pointed to, to the value supplied, but will not call any callbacks.
18636     */
18637    EAPI void         elm_radio_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
18638    /**
18639     * @brief Get the state of the radio object
18640     *
18641     * @param obj The radio object
18642     * @return The integer state
18643     */
18644    EAPI int          elm_radio_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18645    /**
18646     * @brief Set a convenience pointer to a integer to change
18647     *
18648     * @param obj The radio object
18649     * @param valuep Pointer to the integer to modify
18650     *
18651     * This sets a pointer to a integer, that, in addition to the radio objects
18652     * state will also be modified directly. To stop setting the object pointed
18653     * to simply use NULL as the @p valuep argument. If valuep is not NULL, then
18654     * when this is called, the radio objects state will also be modified to
18655     * reflect the value of the integer valuep points to, just like calling
18656     * elm_radio_value_set().
18657     */
18658    EAPI void         elm_radio_value_pointer_set(Evas_Object *obj, int *valuep) EINA_ARG_NONNULL(1);
18659    /**
18660     * @}
18661     */
18662
18663    /**
18664     * @defgroup Pager Pager
18665     *
18666     * @image html img/widget/pager/preview-00.png
18667     * @image latex img/widget/pager/preview-00.eps
18668     *
18669     * @brief Widget that allows flipping between 1 or more “pages” of objects.
18670     *
18671     * The flipping between “pages” of objects is animated. All content in pager
18672     * is kept in a stack, the last content to be added will be on the top of the
18673     * stack(be visible).
18674     *
18675     * Objects can be pushed or popped from the stack or deleted as normal.
18676     * Pushes and pops will animate (and a pop will delete the object once the
18677     * animation is finished). Any object already in the pager can be promoted to
18678     * the top(from its current stacking position) through the use of
18679     * elm_pager_content_promote(). Objects are pushed to the top with
18680     * elm_pager_content_push() and when the top item is no longer wanted, simply
18681     * pop it with elm_pager_content_pop() and it will also be deleted. If an
18682     * object is no longer needed and is not the top item, just delete it as
18683     * normal. You can query which objects are the top and bottom with
18684     * elm_pager_content_bottom_get() and elm_pager_content_top_get().
18685     *
18686     * Signals that you can add callbacks for are:
18687     * "hide,finished" - when the previous page is hided
18688     *
18689     * This widget has the following styles available:
18690     * @li default
18691     * @li fade
18692     * @li fade_translucide
18693     * @li fade_invisible
18694     * @note This styles affect only the flipping animations, the appearance when
18695     * not animating is unaffected by styles.
18696     *
18697     * @ref tutorial_pager gives a good overview of the usage of the API.
18698     * @{
18699     */
18700    /**
18701     * Add a new pager to the parent
18702     *
18703     * @param parent The parent object
18704     * @return The new object or NULL if it cannot be created
18705     *
18706     * @ingroup Pager
18707     */
18708    EAPI Evas_Object *elm_pager_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18709    /**
18710     * @brief Push an object to the top of the pager stack (and show it).
18711     *
18712     * @param obj The pager object
18713     * @param content The object to push
18714     *
18715     * The object pushed becomes a child of the pager, it will be controlled and
18716     * deleted when the pager is deleted.
18717     *
18718     * @note If the content is already in the stack use
18719     * elm_pager_content_promote().
18720     * @warning Using this function on @p content already in the stack results in
18721     * undefined behavior.
18722     */
18723    EAPI void         elm_pager_content_push(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
18724    /**
18725     * @brief Pop the object that is on top of the stack
18726     *
18727     * @param obj The pager object
18728     *
18729     * This pops the object that is on the top(visible) of the pager, makes it
18730     * disappear, then deletes the object. The object that was underneath it on
18731     * the stack will become visible.
18732     */
18733    EAPI void         elm_pager_content_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
18734    /**
18735     * @brief Moves an object already in the pager stack to the top of the stack.
18736     *
18737     * @param obj The pager object
18738     * @param content The object to promote
18739     *
18740     * This will take the @p content and move it to the top of the stack as
18741     * if it had been pushed there.
18742     *
18743     * @note If the content isn't already in the stack use
18744     * elm_pager_content_push().
18745     * @warning Using this function on @p content not already in the stack
18746     * results in undefined behavior.
18747     */
18748    EAPI void         elm_pager_content_promote(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
18749    /**
18750     * @brief Return the object at the bottom of the pager stack
18751     *
18752     * @param obj The pager object
18753     * @return The bottom object or NULL if none
18754     */
18755    EAPI Evas_Object *elm_pager_content_bottom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18756    /**
18757     * @brief  Return the object at the top of the pager stack
18758     *
18759     * @param obj The pager object
18760     * @return The top object or NULL if none
18761     */
18762    EAPI Evas_Object *elm_pager_content_top_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18763    /**
18764     * @}
18765     */
18766
18767    /**
18768     * @defgroup Slideshow Slideshow
18769     *
18770     * @image html img/widget/slideshow/preview-00.png
18771     * @image latex img/widget/slideshow/preview-00.eps
18772     *
18773     * This widget, as the name indicates, is a pre-made image
18774     * slideshow panel, with API functions acting on (child) image
18775     * items presentation. Between those actions, are:
18776     * - advance to next/previous image
18777     * - select the style of image transition animation
18778     * - set the exhibition time for each image
18779     * - start/stop the slideshow
18780     *
18781     * The transition animations are defined in the widget's theme,
18782     * consequently new animations can be added without having to
18783     * update the widget's code.
18784     *
18785     * @section Slideshow_Items Slideshow items
18786     *
18787     * For slideshow items, just like for @ref Genlist "genlist" ones,
18788     * the user defines a @b classes, specifying functions that will be
18789     * called on the item's creation and deletion times.
18790     *
18791     * The #Elm_Slideshow_Item_Class structure contains the following
18792     * members:
18793     *
18794     * - @c func.get - When an item is displayed, this function is
18795     *   called, and it's where one should create the item object, de
18796     *   facto. For example, the object can be a pure Evas image object
18797     *   or an Elementary @ref Photocam "photocam" widget. See
18798     *   #SlideshowItemGetFunc.
18799     * - @c func.del - When an item is no more displayed, this function
18800     *   is called, where the user must delete any data associated to
18801     *   the item. See #SlideshowItemDelFunc.
18802     *
18803     * @section Slideshow_Caching Slideshow caching
18804     *
18805     * The slideshow provides facilities to have items adjacent to the
18806     * one being displayed <b>already "realized"</b> (i.e. loaded) for
18807     * you, so that the system does not have to decode image data
18808     * anymore at the time it has to actually switch images on its
18809     * viewport. The user is able to set the numbers of items to be
18810     * cached @b before and @b after the current item, in the widget's
18811     * item list.
18812     *
18813     * Smart events one can add callbacks for are:
18814     *
18815     * - @c "changed" - when the slideshow switches its view to a new
18816     *   item
18817     *
18818     * List of examples for the slideshow widget:
18819     * @li @ref slideshow_example
18820     */
18821
18822    /**
18823     * @addtogroup Slideshow
18824     * @{
18825     */
18826
18827    typedef struct _Elm_Slideshow_Item_Class Elm_Slideshow_Item_Class; /**< Slideshow item class definition struct */
18828    typedef struct _Elm_Slideshow_Item_Class_Func Elm_Slideshow_Item_Class_Func; /**< Class functions for slideshow item classes. */
18829    typedef struct _Elm_Slideshow_Item       Elm_Slideshow_Item; /**< Slideshow item handle */
18830    typedef Evas_Object *(*SlideshowItemGetFunc) (void *data, Evas_Object *obj); /**< Image fetching class function for slideshow item classes. */
18831    typedef void         (*SlideshowItemDelFunc) (void *data, Evas_Object *obj); /**< Deletion class function for slideshow item classes. */
18832
18833    /**
18834     * @struct _Elm_Slideshow_Item_Class
18835     *
18836     * Slideshow item class definition. See @ref Slideshow_Items for
18837     * field details.
18838     */
18839    struct _Elm_Slideshow_Item_Class
18840      {
18841         struct _Elm_Slideshow_Item_Class_Func
18842           {
18843              SlideshowItemGetFunc get;
18844              SlideshowItemDelFunc del;
18845           } func;
18846      }; /**< #Elm_Slideshow_Item_Class member definitions */
18847
18848    /**
18849     * Add a new slideshow widget to the given parent Elementary
18850     * (container) object
18851     *
18852     * @param parent The parent object
18853     * @return A new slideshow widget handle or @c NULL, on errors
18854     *
18855     * This function inserts a new slideshow widget on the canvas.
18856     *
18857     * @ingroup Slideshow
18858     */
18859    EAPI Evas_Object        *elm_slideshow_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18860
18861    /**
18862     * Add (append) a new item in a given slideshow widget.
18863     *
18864     * @param obj The slideshow object
18865     * @param itc The item class for the item
18866     * @param data The item's data
18867     * @return A handle to the item added or @c NULL, on errors
18868     *
18869     * Add a new item to @p obj's internal list of items, appending it.
18870     * The item's class must contain the function really fetching the
18871     * image object to show for this item, which could be an Evas image
18872     * object or an Elementary photo, for example. The @p data
18873     * parameter is going to be passed to both class functions of the
18874     * item.
18875     *
18876     * @see #Elm_Slideshow_Item_Class
18877     * @see elm_slideshow_item_sorted_insert()
18878     *
18879     * @ingroup Slideshow
18880     */
18881    EAPI Elm_Slideshow_Item *elm_slideshow_item_add(Evas_Object *obj, const Elm_Slideshow_Item_Class *itc, const void *data) EINA_ARG_NONNULL(1);
18882
18883    /**
18884     * Insert a new item into the given slideshow widget, using the @p func
18885     * function to sort items (by item handles).
18886     *
18887     * @param obj The slideshow object
18888     * @param itc The item class for the item
18889     * @param data The item's data
18890     * @param func The comparing function to be used to sort slideshow
18891     * items <b>by #Elm_Slideshow_Item item handles</b>
18892     * @return Returns The slideshow item handle, on success, or
18893     * @c NULL, on errors
18894     *
18895     * Add a new item to @p obj's internal list of items, in a position
18896     * determined by the @p func comparing function. The item's class
18897     * must contain the function really fetching the image object to
18898     * show for this item, which could be an Evas image object or an
18899     * Elementary photo, for example. The @p data parameter is going to
18900     * be passed to both class functions of the item.
18901     *
18902     * @see #Elm_Slideshow_Item_Class
18903     * @see elm_slideshow_item_add()
18904     *
18905     * @ingroup Slideshow
18906     */
18907    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);
18908
18909    /**
18910     * Display a given slideshow widget's item, programmatically.
18911     *
18912     * @param obj The slideshow object
18913     * @param item The item to display on @p obj's viewport
18914     *
18915     * The change between the current item and @p item will use the
18916     * transition @p obj is set to use (@see
18917     * elm_slideshow_transition_set()).
18918     *
18919     * @ingroup Slideshow
18920     */
18921    EAPI void                elm_slideshow_show(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
18922
18923    /**
18924     * Slide to the @b next item, in a given slideshow widget
18925     *
18926     * @param obj The slideshow object
18927     *
18928     * The sliding animation @p obj is set to use will be the
18929     * transition effect used, after this call is issued.
18930     *
18931     * @note If the end of the slideshow's internal list of items is
18932     * reached, it'll wrap around to the list's beginning, again.
18933     *
18934     * @ingroup Slideshow
18935     */
18936    EAPI void                elm_slideshow_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
18937
18938    /**
18939     * Slide to the @b previous item, in a given slideshow widget
18940     *
18941     * @param obj The slideshow object
18942     *
18943     * The sliding animation @p obj is set to use will be the
18944     * transition effect used, after this call is issued.
18945     *
18946     * @note If the beginning of the slideshow's internal list of items
18947     * is reached, it'll wrap around to the list's end, again.
18948     *
18949     * @ingroup Slideshow
18950     */
18951    EAPI void                elm_slideshow_previous(Evas_Object *obj) EINA_ARG_NONNULL(1);
18952
18953    /**
18954     * Returns the list of sliding transition/effect names available, for a
18955     * given slideshow widget.
18956     *
18957     * @param obj The slideshow object
18958     * @return The list of transitions (list of @b stringshared strings
18959     * as data)
18960     *
18961     * The transitions, which come from @p obj's theme, must be an EDC
18962     * data item named @c "transitions" on the theme file, with (prefix)
18963     * names of EDC programs actually implementing them.
18964     *
18965     * The available transitions for slideshows on the default theme are:
18966     * - @c "fade" - the current item fades out, while the new one
18967     *   fades in to the slideshow's viewport.
18968     * - @c "black_fade" - the current item fades to black, and just
18969     *   then, the new item will fade in.
18970     * - @c "horizontal" - the current item slides horizontally, until
18971     *   it gets out of the slideshow's viewport, while the new item
18972     *   comes from the left to take its place.
18973     * - @c "vertical" - the current item slides vertically, until it
18974     *   gets out of the slideshow's viewport, while the new item comes
18975     *   from the bottom to take its place.
18976     * - @c "square" - the new item starts to appear from the middle of
18977     *   the current one, but with a tiny size, growing until its
18978     *   target (full) size and covering the old one.
18979     *
18980     * @warning The stringshared strings get no new references
18981     * exclusive to the user grabbing the list, here, so if you'd like
18982     * to use them out of this call's context, you'd better @c
18983     * eina_stringshare_ref() them.
18984     *
18985     * @see elm_slideshow_transition_set()
18986     *
18987     * @ingroup Slideshow
18988     */
18989    EAPI const Eina_List    *elm_slideshow_transitions_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18990
18991    /**
18992     * Set the current slide transition/effect in use for a given
18993     * slideshow widget
18994     *
18995     * @param obj The slideshow object
18996     * @param transition The new transition's name string
18997     *
18998     * If @p transition is implemented in @p obj's theme (i.e., is
18999     * contained in the list returned by
19000     * elm_slideshow_transitions_get()), this new sliding effect will
19001     * be used on the widget.
19002     *
19003     * @see elm_slideshow_transitions_get() for more details
19004     *
19005     * @ingroup Slideshow
19006     */
19007    EAPI void                elm_slideshow_transition_set(Evas_Object *obj, const char *transition) EINA_ARG_NONNULL(1);
19008
19009    /**
19010     * Get the current slide transition/effect in use for a given
19011     * slideshow widget
19012     *
19013     * @param obj The slideshow object
19014     * @return The current transition's name
19015     *
19016     * @see elm_slideshow_transition_set() for more details
19017     *
19018     * @ingroup Slideshow
19019     */
19020    EAPI const char         *elm_slideshow_transition_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19021
19022    /**
19023     * Set the interval between each image transition on a given
19024     * slideshow widget, <b>and start the slideshow, itself</b>
19025     *
19026     * @param obj The slideshow object
19027     * @param timeout The new displaying timeout for images
19028     *
19029     * After this call, the slideshow widget will start cycling its
19030     * view, sequentially and automatically, with the images of the
19031     * items it has. The time between each new image displayed is going
19032     * to be @p timeout, in @b seconds. If a different timeout was set
19033     * previously and an slideshow was in progress, it will continue
19034     * with the new time between transitions, after this call.
19035     *
19036     * @note A value less than or equal to 0 on @p timeout will disable
19037     * the widget's internal timer, thus halting any slideshow which
19038     * could be happening on @p obj.
19039     *
19040     * @see elm_slideshow_timeout_get()
19041     *
19042     * @ingroup Slideshow
19043     */
19044    EAPI void                elm_slideshow_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
19045
19046    /**
19047     * Get the interval set for image transitions on a given slideshow
19048     * widget.
19049     *
19050     * @param obj The slideshow object
19051     * @return Returns the timeout set on it
19052     *
19053     * @see elm_slideshow_timeout_set() for more details
19054     *
19055     * @ingroup Slideshow
19056     */
19057    EAPI double              elm_slideshow_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19058
19059    /**
19060     * Set if, after a slideshow is started, for a given slideshow
19061     * widget, its items should be displayed cyclically or not.
19062     *
19063     * @param obj The slideshow object
19064     * @param loop Use @c EINA_TRUE to make it cycle through items or
19065     * @c EINA_FALSE for it to stop at the end of @p obj's internal
19066     * list of items
19067     *
19068     * @note elm_slideshow_next() and elm_slideshow_previous() will @b
19069     * ignore what is set by this functions, i.e., they'll @b always
19070     * cycle through items. This affects only the "automatic"
19071     * slideshow, as set by elm_slideshow_timeout_set().
19072     *
19073     * @see elm_slideshow_loop_get()
19074     *
19075     * @ingroup Slideshow
19076     */
19077    EAPI void                elm_slideshow_loop_set(Evas_Object *obj, Eina_Bool loop) EINA_ARG_NONNULL(1);
19078
19079    /**
19080     * Get if, after a slideshow is started, for a given slideshow
19081     * widget, its items are to be displayed cyclically or not.
19082     *
19083     * @param obj The slideshow object
19084     * @return @c EINA_TRUE, if the items in @p obj will be cycled
19085     * through or @c EINA_FALSE, otherwise
19086     *
19087     * @see elm_slideshow_loop_set() for more details
19088     *
19089     * @ingroup Slideshow
19090     */
19091    EAPI Eina_Bool           elm_slideshow_loop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19092
19093    /**
19094     * Remove all items from a given slideshow widget
19095     *
19096     * @param obj The slideshow object
19097     *
19098     * This removes (and deletes) all items in @p obj, leaving it
19099     * empty.
19100     *
19101     * @see elm_slideshow_item_del(), to remove just one item.
19102     *
19103     * @ingroup Slideshow
19104     */
19105    EAPI void                elm_slideshow_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
19106
19107    /**
19108     * Get the internal list of items in a given slideshow widget.
19109     *
19110     * @param obj The slideshow object
19111     * @return The list of items (#Elm_Slideshow_Item as data) or
19112     * @c NULL on errors.
19113     *
19114     * This list is @b not to be modified in any way and must not be
19115     * freed. Use the list members with functions like
19116     * elm_slideshow_item_del(), elm_slideshow_item_data_get().
19117     *
19118     * @warning This list is only valid until @p obj object's internal
19119     * items list is changed. It should be fetched again with another
19120     * call to this function when changes happen.
19121     *
19122     * @ingroup Slideshow
19123     */
19124    EAPI const Eina_List    *elm_slideshow_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19125
19126    /**
19127     * Delete a given item from a slideshow widget.
19128     *
19129     * @param item The slideshow item
19130     *
19131     * @ingroup Slideshow
19132     */
19133    EAPI void                elm_slideshow_item_del(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
19134
19135    /**
19136     * Return the data associated with a given slideshow item
19137     *
19138     * @param item The slideshow item
19139     * @return Returns the data associated to this item
19140     *
19141     * @ingroup Slideshow
19142     */
19143    EAPI void               *elm_slideshow_item_data_get(const Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
19144
19145    /**
19146     * Returns the currently displayed item, in a given slideshow widget
19147     *
19148     * @param obj The slideshow object
19149     * @return A handle to the item being displayed in @p obj or
19150     * @c NULL, if none is (and on errors)
19151     *
19152     * @ingroup Slideshow
19153     */
19154    EAPI Elm_Slideshow_Item *elm_slideshow_item_current_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19155
19156    /**
19157     * Get the real Evas object created to implement the view of a
19158     * given slideshow item
19159     *
19160     * @param item The slideshow item.
19161     * @return the Evas object implementing this item's view.
19162     *
19163     * This returns the actual Evas object used to implement the
19164     * specified slideshow item's view. This may be @c NULL, as it may
19165     * not have been created or may have been deleted, at any time, by
19166     * the slideshow. <b>Do not modify this object</b> (move, resize,
19167     * show, hide, etc.), as the slideshow is controlling it. This
19168     * function is for querying, emitting custom signals or hooking
19169     * lower level callbacks for events on that object. Do not delete
19170     * this object under any circumstances.
19171     *
19172     * @see elm_slideshow_item_data_get()
19173     *
19174     * @ingroup Slideshow
19175     */
19176    EAPI Evas_Object*        elm_slideshow_item_object_get(const Elm_Slideshow_Item* item) EINA_ARG_NONNULL(1);
19177
19178    /**
19179     * Get the the item, in a given slideshow widget, placed at
19180     * position @p nth, in its internal items list
19181     *
19182     * @param obj The slideshow object
19183     * @param nth The number of the item to grab a handle to (0 being
19184     * the first)
19185     * @return The item stored in @p obj at position @p nth or @c NULL,
19186     * if there's no item with that index (and on errors)
19187     *
19188     * @ingroup Slideshow
19189     */
19190    EAPI Elm_Slideshow_Item *elm_slideshow_item_nth_get(const Evas_Object *obj, unsigned int nth) EINA_ARG_NONNULL(1);
19191
19192    /**
19193     * Set the current slide layout in use for a given slideshow widget
19194     *
19195     * @param obj The slideshow object
19196     * @param layout The new layout's name string
19197     *
19198     * If @p layout is implemented in @p obj's theme (i.e., is contained
19199     * in the list returned by elm_slideshow_layouts_get()), this new
19200     * images layout will be used on the widget.
19201     *
19202     * @see elm_slideshow_layouts_get() for more details
19203     *
19204     * @ingroup Slideshow
19205     */
19206    EAPI void                elm_slideshow_layout_set(Evas_Object *obj, const char *layout) EINA_ARG_NONNULL(1);
19207
19208    /**
19209     * Get the current slide layout in use for a given slideshow widget
19210     *
19211     * @param obj The slideshow object
19212     * @return The current layout's name
19213     *
19214     * @see elm_slideshow_layout_set() for more details
19215     *
19216     * @ingroup Slideshow
19217     */
19218    EAPI const char         *elm_slideshow_layout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19219
19220    /**
19221     * Returns the list of @b layout names available, for a given
19222     * slideshow widget.
19223     *
19224     * @param obj The slideshow object
19225     * @return The list of layouts (list of @b stringshared strings
19226     * as data)
19227     *
19228     * Slideshow layouts will change how the widget is to dispose each
19229     * image item in its viewport, with regard to cropping, scaling,
19230     * etc.
19231     *
19232     * The layouts, which come from @p obj's theme, must be an EDC
19233     * data item name @c "layouts" on the theme file, with (prefix)
19234     * names of EDC programs actually implementing them.
19235     *
19236     * The available layouts for slideshows on the default theme are:
19237     * - @c "fullscreen" - item images with original aspect, scaled to
19238     *   touch top and down slideshow borders or, if the image's heigh
19239     *   is not enough, left and right slideshow borders.
19240     * - @c "not_fullscreen" - the same behavior as the @c "fullscreen"
19241     *   one, but always leaving 10% of the slideshow's dimensions of
19242     *   distance between the item image's borders and the slideshow
19243     *   borders, for each axis.
19244     *
19245     * @warning The stringshared strings get no new references
19246     * exclusive to the user grabbing the list, here, so if you'd like
19247     * to use them out of this call's context, you'd better @c
19248     * eina_stringshare_ref() them.
19249     *
19250     * @see elm_slideshow_layout_set()
19251     *
19252     * @ingroup Slideshow
19253     */
19254    EAPI const Eina_List    *elm_slideshow_layouts_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19255
19256    /**
19257     * Set the number of items to cache, on a given slideshow widget,
19258     * <b>before the current item</b>
19259     *
19260     * @param obj The slideshow object
19261     * @param count Number of items to cache before the current one
19262     *
19263     * The default value for this property is @c 2. See
19264     * @ref Slideshow_Caching "slideshow caching" for more details.
19265     *
19266     * @see elm_slideshow_cache_before_get()
19267     *
19268     * @ingroup Slideshow
19269     */
19270    EAPI void                elm_slideshow_cache_before_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
19271
19272    /**
19273     * Retrieve the number of items to cache, on a given slideshow widget,
19274     * <b>before the current item</b>
19275     *
19276     * @param obj The slideshow object
19277     * @return The number of items set to be cached before the current one
19278     *
19279     * @see elm_slideshow_cache_before_set() for more details
19280     *
19281     * @ingroup Slideshow
19282     */
19283    EAPI int                 elm_slideshow_cache_before_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19284
19285    /**
19286     * Set the number of items to cache, on a given slideshow widget,
19287     * <b>after the current item</b>
19288     *
19289     * @param obj The slideshow object
19290     * @param count Number of items to cache after the current one
19291     *
19292     * The default value for this property is @c 2. See
19293     * @ref Slideshow_Caching "slideshow caching" for more details.
19294     *
19295     * @see elm_slideshow_cache_after_get()
19296     *
19297     * @ingroup Slideshow
19298     */
19299    EAPI void                elm_slideshow_cache_after_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
19300
19301    /**
19302     * Retrieve the number of items to cache, on a given slideshow widget,
19303     * <b>after the current item</b>
19304     *
19305     * @param obj The slideshow object
19306     * @return The number of items set to be cached after the current one
19307     *
19308     * @see elm_slideshow_cache_after_set() for more details
19309     *
19310     * @ingroup Slideshow
19311     */
19312    EAPI int                 elm_slideshow_cache_after_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19313
19314    /**
19315     * Get the number of items stored in a given slideshow widget
19316     *
19317     * @param obj The slideshow object
19318     * @return The number of items on @p obj, at the moment of this call
19319     *
19320     * @ingroup Slideshow
19321     */
19322    EAPI unsigned int        elm_slideshow_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19323
19324    /**
19325     * @}
19326     */
19327
19328    /**
19329     * @defgroup Fileselector File Selector
19330     *
19331     * @image html img/widget/fileselector/preview-00.png
19332     * @image latex img/widget/fileselector/preview-00.eps
19333     *
19334     * A file selector is a widget that allows a user to navigate
19335     * through a file system, reporting file selections back via its
19336     * API.
19337     *
19338     * It contains shortcut buttons for home directory (@c ~) and to
19339     * jump one directory upwards (..), as well as cancel/ok buttons to
19340     * confirm/cancel a given selection. After either one of those two
19341     * former actions, the file selector will issue its @c "done" smart
19342     * callback.
19343     *
19344     * There's a text entry on it, too, showing the name of the current
19345     * selection. There's the possibility of making it editable, so it
19346     * is useful on file saving dialogs on applications, where one
19347     * gives a file name to save contents to, in a given directory in
19348     * the system. This custom file name will be reported on the @c
19349     * "done" smart callback (explained in sequence).
19350     *
19351     * Finally, it has a view to display file system items into in two
19352     * possible forms:
19353     * - list
19354     * - grid
19355     *
19356     * If Elementary is built with support of the Ethumb thumbnailing
19357     * library, the second form of view will display preview thumbnails
19358     * of files which it supports.
19359     *
19360     * Smart callbacks one can register to:
19361     *
19362     * - @c "selected" - the user has clicked on a file (when not in
19363     *      folders-only mode) or directory (when in folders-only mode)
19364     * - @c "directory,open" - the list has been populated with new
19365     *      content (@c event_info is a pointer to the directory's
19366     *      path, a @b stringshared string)
19367     * - @c "done" - the user has clicked on the "ok" or "cancel"
19368     *      buttons (@c event_info is a pointer to the selection's
19369     *      path, a @b stringshared string)
19370     *
19371     * Here is an example on its usage:
19372     * @li @ref fileselector_example
19373     */
19374
19375    /**
19376     * @addtogroup Fileselector
19377     * @{
19378     */
19379
19380    /**
19381     * Defines how a file selector widget is to layout its contents
19382     * (file system entries).
19383     */
19384    typedef enum _Elm_Fileselector_Mode
19385      {
19386         ELM_FILESELECTOR_LIST = 0, /**< layout as a list */
19387         ELM_FILESELECTOR_GRID, /**< layout as a grid */
19388         ELM_FILESELECTOR_LAST /**< sentinel (helper) value, not used */
19389      } Elm_Fileselector_Mode;
19390
19391    /**
19392     * Add a new file selector widget to the given parent Elementary
19393     * (container) object
19394     *
19395     * @param parent The parent object
19396     * @return a new file selector widget handle or @c NULL, on errors
19397     *
19398     * This function inserts a new file selector widget on the canvas.
19399     *
19400     * @ingroup Fileselector
19401     */
19402    EAPI Evas_Object          *elm_fileselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
19403
19404    /**
19405     * Enable/disable the file name entry box where the user can type
19406     * in a name for a file, in a given file selector widget
19407     *
19408     * @param obj The file selector object
19409     * @param is_save @c EINA_TRUE to make the file selector a "saving
19410     * dialog", @c EINA_FALSE otherwise
19411     *
19412     * Having the entry editable is useful on file saving dialogs on
19413     * applications, where one gives a file name to save contents to,
19414     * in a given directory in the system. This custom file name will
19415     * be reported on the @c "done" smart callback.
19416     *
19417     * @see elm_fileselector_is_save_get()
19418     *
19419     * @ingroup Fileselector
19420     */
19421    EAPI void                  elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save) EINA_ARG_NONNULL(1);
19422
19423    /**
19424     * Get whether the given file selector is in "saving dialog" mode
19425     *
19426     * @param obj The file selector object
19427     * @return @c EINA_TRUE, if the file selector is in "saving dialog"
19428     * mode, @c EINA_FALSE otherwise (and on errors)
19429     *
19430     * @see elm_fileselector_is_save_set() for more details
19431     *
19432     * @ingroup Fileselector
19433     */
19434    EAPI Eina_Bool             elm_fileselector_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19435
19436    /**
19437     * Enable/disable folder-only view for a given file selector widget
19438     *
19439     * @param obj The file selector object
19440     * @param only @c EINA_TRUE to make @p obj only display
19441     * directories, @c EINA_FALSE to make files to be displayed in it
19442     * too
19443     *
19444     * If enabled, the widget's view will only display folder items,
19445     * naturally.
19446     *
19447     * @see elm_fileselector_folder_only_get()
19448     *
19449     * @ingroup Fileselector
19450     */
19451    EAPI void                  elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only) EINA_ARG_NONNULL(1);
19452
19453    /**
19454     * Get whether folder-only view is set for a given file selector
19455     * widget
19456     *
19457     * @param obj The file selector object
19458     * @return only @c EINA_TRUE if @p obj is only displaying
19459     * directories, @c EINA_FALSE if files are being displayed in it
19460     * too (and on errors)
19461     *
19462     * @see elm_fileselector_folder_only_get()
19463     *
19464     * @ingroup Fileselector
19465     */
19466    EAPI Eina_Bool             elm_fileselector_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19467
19468    /**
19469     * Enable/disable the "ok" and "cancel" buttons on a given file
19470     * selector widget
19471     *
19472     * @param obj The file selector object
19473     * @param only @c EINA_TRUE to show them, @c EINA_FALSE to hide.
19474     *
19475     * @note A file selector without those buttons will never emit the
19476     * @c "done" smart event, and is only usable if one is just hooking
19477     * to the other two events.
19478     *
19479     * @see elm_fileselector_buttons_ok_cancel_get()
19480     *
19481     * @ingroup Fileselector
19482     */
19483    EAPI void                  elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons) EINA_ARG_NONNULL(1);
19484
19485    /**
19486     * Get whether the "ok" and "cancel" buttons on a given file
19487     * selector widget are being shown.
19488     *
19489     * @param obj The file selector object
19490     * @return @c EINA_TRUE if they are being shown, @c EINA_FALSE
19491     * otherwise (and on errors)
19492     *
19493     * @see elm_fileselector_buttons_ok_cancel_set() for more details
19494     *
19495     * @ingroup Fileselector
19496     */
19497    EAPI Eina_Bool             elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19498
19499    /**
19500     * Enable/disable a tree view in the given file selector widget,
19501     * <b>if it's in @c #ELM_FILESELECTOR_LIST mode</b>
19502     *
19503     * @param obj The file selector object
19504     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
19505     * disable
19506     *
19507     * In a tree view, arrows are created on the sides of directories,
19508     * allowing them to expand in place.
19509     *
19510     * @note If it's in other mode, the changes made by this function
19511     * will only be visible when one switches back to "list" mode.
19512     *
19513     * @see elm_fileselector_expandable_get()
19514     *
19515     * @ingroup Fileselector
19516     */
19517    EAPI void                  elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand) EINA_ARG_NONNULL(1);
19518
19519    /**
19520     * Get whether tree view is enabled for the given file selector
19521     * widget
19522     *
19523     * @param obj The file selector object
19524     * @return @c EINA_TRUE if @p obj is in tree view, @c EINA_FALSE
19525     * otherwise (and or errors)
19526     *
19527     * @see elm_fileselector_expandable_set() for more details
19528     *
19529     * @ingroup Fileselector
19530     */
19531    EAPI Eina_Bool             elm_fileselector_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19532
19533    /**
19534     * Set, programmatically, the @b directory that a given file
19535     * selector widget will display contents from
19536     *
19537     * @param obj The file selector object
19538     * @param path The path to display in @p obj
19539     *
19540     * This will change the @b directory that @p obj is displaying. It
19541     * will also clear the text entry area on the @p obj object, which
19542     * displays select files' names.
19543     *
19544     * @see elm_fileselector_path_get()
19545     *
19546     * @ingroup Fileselector
19547     */
19548    EAPI void                  elm_fileselector_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
19549
19550    /**
19551     * Get the parent directory's path that a given file selector
19552     * widget is displaying
19553     *
19554     * @param obj The file selector object
19555     * @return The (full) path of the directory the file selector is
19556     * displaying, a @b stringshared string
19557     *
19558     * @see elm_fileselector_path_set()
19559     *
19560     * @ingroup Fileselector
19561     */
19562    EAPI const char           *elm_fileselector_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19563
19564    /**
19565     * Set, programmatically, the currently selected file/directory in
19566     * the given file selector widget
19567     *
19568     * @param obj The file selector object
19569     * @param path The (full) path to a file or directory
19570     * @return @c EINA_TRUE on success, @c EINA_FALSE on failure. The
19571     * latter case occurs if the directory or file pointed to do not
19572     * exist.
19573     *
19574     * @see elm_fileselector_selected_get()
19575     *
19576     * @ingroup Fileselector
19577     */
19578    EAPI Eina_Bool             elm_fileselector_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
19579
19580    /**
19581     * Get the currently selected item's (full) path, in the given file
19582     * selector widget
19583     *
19584     * @param obj The file selector object
19585     * @return The absolute path of the selected item, a @b
19586     * stringshared string
19587     *
19588     * @note Custom editions on @p obj object's text entry, if made,
19589     * will appear on the return string of this function, naturally.
19590     *
19591     * @see elm_fileselector_selected_set() for more details
19592     *
19593     * @ingroup Fileselector
19594     */
19595    EAPI const char           *elm_fileselector_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19596
19597    /**
19598     * Set the mode in which a given file selector widget will display
19599     * (layout) file system entries in its view
19600     *
19601     * @param obj The file selector object
19602     * @param mode The mode of the fileselector, being it one of
19603     * #ELM_FILESELECTOR_LIST (default) or #ELM_FILESELECTOR_GRID. The
19604     * first one, naturally, will display the files in a list. The
19605     * latter will make the widget to display its entries in a grid
19606     * form.
19607     *
19608     * @note By using elm_fileselector_expandable_set(), the user may
19609     * trigger a tree view for that list.
19610     *
19611     * @note If Elementary is built with support of the Ethumb
19612     * thumbnailing library, the second form of view will display
19613     * preview thumbnails of files which it supports. You must have
19614     * elm_need_ethumb() called in your Elementary for thumbnailing to
19615     * work, though.
19616     *
19617     * @see elm_fileselector_expandable_set().
19618     * @see elm_fileselector_mode_get().
19619     *
19620     * @ingroup Fileselector
19621     */
19622    EAPI void                  elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode) EINA_ARG_NONNULL(1);
19623
19624    /**
19625     * Get the mode in which a given file selector widget is displaying
19626     * (layouting) file system entries in its view
19627     *
19628     * @param obj The fileselector object
19629     * @return The mode in which the fileselector is at
19630     *
19631     * @see elm_fileselector_mode_set() for more details
19632     *
19633     * @ingroup Fileselector
19634     */
19635    EAPI Elm_Fileselector_Mode elm_fileselector_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19636
19637    /**
19638     * @}
19639     */
19640
19641    /**
19642     * @defgroup Progressbar Progress bar
19643     *
19644     * The progress bar is a widget for visually representing the
19645     * progress status of a given job/task.
19646     *
19647     * A progress bar may be horizontal or vertical. It may display an
19648     * icon besides it, as well as primary and @b units labels. The
19649     * former is meant to label the widget as a whole, while the
19650     * latter, which is formatted with floating point values (and thus
19651     * accepts a <c>printf</c>-style format string, like <c>"%1.2f
19652     * units"</c>), is meant to label the widget's <b>progress
19653     * value</b>. Label, icon and unit strings/objects are @b optional
19654     * for progress bars.
19655     *
19656     * A progress bar may be @b inverted, in which state it gets its
19657     * values inverted, with high values being on the left or top and
19658     * low values on the right or bottom, as opposed to normally have
19659     * the low values on the former and high values on the latter,
19660     * respectively, for horizontal and vertical modes.
19661     *
19662     * The @b span of the progress, as set by
19663     * elm_progressbar_span_size_set(), is its length (horizontally or
19664     * vertically), unless one puts size hints on the widget to expand
19665     * on desired directions, by any container. That length will be
19666     * scaled by the object or applications scaling factor. At any
19667     * point code can query the progress bar for its value with
19668     * elm_progressbar_value_get().
19669     *
19670     * Available widget styles for progress bars:
19671     * - @c "default"
19672     * - @c "wheel" (simple style, no text, no progression, only
19673     *      "pulse" effect is available)
19674     *
19675     * Here is an example on its usage:
19676     * @li @ref progressbar_example
19677     */
19678
19679    /**
19680     * Add a new progress bar widget to the given parent Elementary
19681     * (container) object
19682     *
19683     * @param parent The parent object
19684     * @return a new progress bar widget handle or @c NULL, on errors
19685     *
19686     * This function inserts a new progress bar widget on the canvas.
19687     *
19688     * @ingroup Progressbar
19689     */
19690    EAPI Evas_Object *elm_progressbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
19691
19692    /**
19693     * Set whether a given progress bar widget is at "pulsing mode" or
19694     * not.
19695     *
19696     * @param obj The progress bar object
19697     * @param pulse @c EINA_TRUE to put @p obj in pulsing mode,
19698     * @c EINA_FALSE to put it back to its default one
19699     *
19700     * By default, progress bars will display values from the low to
19701     * high value boundaries. There are, though, contexts in which the
19702     * state of progression of a given task is @b unknown.  For those,
19703     * one can set a progress bar widget to a "pulsing state", to give
19704     * the user an idea that some computation is being held, but
19705     * without exact progress values. In the default theme it will
19706     * animate its bar with the contents filling in constantly and back
19707     * to non-filled, in a loop. To start and stop this pulsing
19708     * animation, one has to explicitly call elm_progressbar_pulse().
19709     *
19710     * @see elm_progressbar_pulse_get()
19711     * @see elm_progressbar_pulse()
19712     *
19713     * @ingroup Progressbar
19714     */
19715    EAPI void         elm_progressbar_pulse_set(Evas_Object *obj, Eina_Bool pulse) EINA_ARG_NONNULL(1);
19716
19717    /**
19718     * Get whether a given progress bar widget is at "pulsing mode" or
19719     * not.
19720     *
19721     * @param obj The progress bar object
19722     * @return @c EINA_TRUE, if @p obj is in pulsing mode, @c EINA_FALSE
19723     * if it's in the default one (and on errors)
19724     *
19725     * @ingroup Progressbar
19726     */
19727    EAPI Eina_Bool    elm_progressbar_pulse_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19728
19729    /**
19730     * Start/stop a given progress bar "pulsing" animation, if its
19731     * under that mode
19732     *
19733     * @param obj The progress bar object
19734     * @param state @c EINA_TRUE, to @b start the pulsing animation,
19735     * @c EINA_FALSE to @b stop it
19736     *
19737     * @note This call won't do anything if @p obj is not under "pulsing mode".
19738     *
19739     * @see elm_progressbar_pulse_set() for more details.
19740     *
19741     * @ingroup Progressbar
19742     */
19743    EAPI void         elm_progressbar_pulse(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
19744
19745    /**
19746     * Set the progress value (in percentage) on a given progress bar
19747     * widget
19748     *
19749     * @param obj The progress bar object
19750     * @param val The progress value (@b must be between @c 0.0 and @c
19751     * 1.0)
19752     *
19753     * Use this call to set progress bar levels.
19754     *
19755     * @note If you passes a value out of the specified range for @p
19756     * val, it will be interpreted as the @b closest of the @b boundary
19757     * values in the range.
19758     *
19759     * @ingroup Progressbar
19760     */
19761    EAPI void         elm_progressbar_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
19762
19763    /**
19764     * Get the progress value (in percentage) on a given progress bar
19765     * widget
19766     *
19767     * @param obj The progress bar object
19768     * @return The value of the progressbar
19769     *
19770     * @see elm_progressbar_value_set() for more details
19771     *
19772     * @ingroup Progressbar
19773     */
19774    EAPI double       elm_progressbar_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19775
19776    /**
19777     * Set the label of a given progress bar widget
19778     *
19779     * @param obj The progress bar object
19780     * @param label The text label string, in UTF-8
19781     *
19782     * @ingroup Progressbar
19783     * @deprecated use elm_object_text_set() instead.
19784     */
19785    EINA_DEPRECATED EAPI void         elm_progressbar_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
19786
19787    /**
19788     * Get the label of a given progress bar widget
19789     *
19790     * @param obj The progressbar object
19791     * @return The text label string, in UTF-8
19792     *
19793     * @ingroup Progressbar
19794     * @deprecated use elm_object_text_set() instead.
19795     */
19796    EINA_DEPRECATED EAPI const char  *elm_progressbar_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19797
19798    /**
19799     * Set the icon object of a given progress bar widget
19800     *
19801     * @param obj The progress bar object
19802     * @param icon The icon object
19803     *
19804     * Use this call to decorate @p obj with an icon next to it.
19805     *
19806     * @note Once the icon object is set, a previously set one will be
19807     * deleted. If you want to keep that old content object, use the
19808     * elm_progressbar_icon_unset() function.
19809     *
19810     * @see elm_progressbar_icon_get()
19811     *
19812     * @ingroup Progressbar
19813     */
19814    EAPI void         elm_progressbar_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
19815
19816    /**
19817     * Retrieve the icon object set for a given progress bar widget
19818     *
19819     * @param obj The progress bar object
19820     * @return The icon object's handle, if @p obj had one set, or @c NULL,
19821     * otherwise (and on errors)
19822     *
19823     * @see elm_progressbar_icon_set() for more details
19824     *
19825     * @ingroup Progressbar
19826     */
19827    EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19828
19829    /**
19830     * Unset an icon set on a given progress bar widget
19831     *
19832     * @param obj The progress bar object
19833     * @return The icon object that was being used, if any was set, or
19834     * @c NULL, otherwise (and on errors)
19835     *
19836     * This call will unparent and return the icon object which was set
19837     * for this widget, previously, on success.
19838     *
19839     * @see elm_progressbar_icon_set() for more details
19840     *
19841     * @ingroup Progressbar
19842     */
19843    EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
19844
19845    /**
19846     * Set the (exact) length of the bar region of a given progress bar
19847     * widget
19848     *
19849     * @param obj The progress bar object
19850     * @param size The length of the progress bar's bar region
19851     *
19852     * This sets the minimum width (when in horizontal mode) or height
19853     * (when in vertical mode) of the actual bar area of the progress
19854     * bar @p obj. This in turn affects the object's minimum size. Use
19855     * this when you're not setting other size hints expanding on the
19856     * given direction (like weight and alignment hints) and you would
19857     * like it to have a specific size.
19858     *
19859     * @note Icon, label and unit text around @p obj will require their
19860     * own space, which will make @p obj to require more the @p size,
19861     * actually.
19862     *
19863     * @see elm_progressbar_span_size_get()
19864     *
19865     * @ingroup Progressbar
19866     */
19867    EAPI void         elm_progressbar_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
19868
19869    /**
19870     * Get the length set for the bar region of a given progress bar
19871     * widget
19872     *
19873     * @param obj The progress bar object
19874     * @return The length of the progress bar's bar region
19875     *
19876     * If that size was not set previously, with
19877     * elm_progressbar_span_size_set(), this call will return @c 0.
19878     *
19879     * @ingroup Progressbar
19880     */
19881    EAPI Evas_Coord   elm_progressbar_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19882
19883    /**
19884     * Set the format string for a given progress bar widget's units
19885     * label
19886     *
19887     * @param obj The progress bar object
19888     * @param format The format string for @p obj's units label
19889     *
19890     * If @c NULL is passed on @p format, it will make @p obj's units
19891     * area to be hidden completely. If not, it'll set the <b>format
19892     * string</b> for the units label's @b text. The units label is
19893     * provided a floating point value, so the units text is up display
19894     * at most one floating point falue. Note that the units label is
19895     * optional. Use a format string such as "%1.2f meters" for
19896     * example.
19897     *
19898     * @note The default format string for a progress bar is an integer
19899     * percentage, as in @c "%.0f %%".
19900     *
19901     * @see elm_progressbar_unit_format_get()
19902     *
19903     * @ingroup Progressbar
19904     */
19905    EAPI void         elm_progressbar_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
19906
19907    /**
19908     * Retrieve the format string set for a given progress bar widget's
19909     * units label
19910     *
19911     * @param obj The progress bar object
19912     * @return The format set string for @p obj's units label or
19913     * @c NULL, if none was set (and on errors)
19914     *
19915     * @see elm_progressbar_unit_format_set() for more details
19916     *
19917     * @ingroup Progressbar
19918     */
19919    EAPI const char  *elm_progressbar_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19920
19921    /**
19922     * Set the orientation of a given progress bar widget
19923     *
19924     * @param obj The progress bar object
19925     * @param horizontal Use @c EINA_TRUE to make @p obj to be
19926     * @b horizontal, @c EINA_FALSE to make it @b vertical
19927     *
19928     * Use this function to change how your progress bar is to be
19929     * disposed: vertically or horizontally.
19930     *
19931     * @see elm_progressbar_horizontal_get()
19932     *
19933     * @ingroup Progressbar
19934     */
19935    EAPI void         elm_progressbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
19936
19937    /**
19938     * Retrieve the orientation of a given progress bar widget
19939     *
19940     * @param obj The progress bar object
19941     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
19942     * @c EINA_FALSE if it's @b vertical (and on errors)
19943     *
19944     * @see elm_progressbar_horizontal_set() for more details
19945     *
19946     * @ingroup Progressbar
19947     */
19948    EAPI Eina_Bool    elm_progressbar_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19949
19950    /**
19951     * Invert a given progress bar widget's displaying values order
19952     *
19953     * @param obj The progress bar object
19954     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
19955     * @c EINA_FALSE to bring it back to default, non-inverted values.
19956     *
19957     * A progress bar may be @b inverted, in which state it gets its
19958     * values inverted, with high values being on the left or top and
19959     * low values on the right or bottom, as opposed to normally have
19960     * the low values on the former and high values on the latter,
19961     * respectively, for horizontal and vertical modes.
19962     *
19963     * @see elm_progressbar_inverted_get()
19964     *
19965     * @ingroup Progressbar
19966     */
19967    EAPI void         elm_progressbar_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
19968
19969    /**
19970     * Get whether a given progress bar widget's displaying values are
19971     * inverted or not
19972     *
19973     * @param obj The progress bar object
19974     * @return @c EINA_TRUE, if @p obj has inverted values,
19975     * @c EINA_FALSE otherwise (and on errors)
19976     *
19977     * @see elm_progressbar_inverted_set() for more details
19978     *
19979     * @ingroup Progressbar
19980     */
19981    EAPI Eina_Bool    elm_progressbar_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19982
19983    /**
19984     * @defgroup Separator Separator
19985     *
19986     * @brief Separator is a very thin object used to separate other objects.
19987     *
19988     * A separator can be vertical or horizontal.
19989     *
19990     * @ref tutorial_separator is a good example of how to use a separator.
19991     * @{
19992     */
19993    /**
19994     * @brief Add a separator object to @p parent
19995     *
19996     * @param parent The parent object
19997     *
19998     * @return The separator object, or NULL upon failure
19999     */
20000    EAPI Evas_Object *elm_separator_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20001    /**
20002     * @brief Set the horizontal mode of a separator object
20003     *
20004     * @param obj The separator object
20005     * @param horizontal If true, the separator is horizontal
20006     */
20007    EAPI void         elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
20008    /**
20009     * @brief Get the horizontal mode of a separator object
20010     *
20011     * @param obj The separator object
20012     * @return If true, the separator is horizontal
20013     *
20014     * @see elm_separator_horizontal_set()
20015     */
20016    EAPI Eina_Bool    elm_separator_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20017    /**
20018     * @}
20019     */
20020
20021    /**
20022     * @defgroup Spinner Spinner
20023     * @ingroup Elementary
20024     *
20025     * @image html img/widget/spinner/preview-00.png
20026     * @image latex img/widget/spinner/preview-00.eps
20027     *
20028     * A spinner is a widget which allows the user to increase or decrease
20029     * numeric values using arrow buttons, or edit values directly, clicking
20030     * over it and typing the new value.
20031     *
20032     * By default the spinner will not wrap and has a label
20033     * of "%.0f" (just showing the integer value of the double).
20034     *
20035     * A spinner has a label that is formatted with floating
20036     * point values and thus accepts a printf-style format string, like
20037     * “%1.2f units”.
20038     *
20039     * It also allows specific values to be replaced by pre-defined labels.
20040     *
20041     * Smart callbacks one can register to:
20042     *
20043     * - "changed" - Whenever the spinner value is changed.
20044     * - "delay,changed" - A short time after the value is changed by the user.
20045     *    This will be called only when the user stops dragging for a very short
20046     *    period or when they release their finger/mouse, so it avoids possibly
20047     *    expensive reactions to the value change.
20048     *
20049     * Available styles for it:
20050     * - @c "default";
20051     * - @c "vertical": up/down buttons at the right side and text left aligned.
20052     *
20053     * Here is an example on its usage:
20054     * @ref spinner_example
20055     */
20056
20057    /**
20058     * @addtogroup Spinner
20059     * @{
20060     */
20061
20062    /**
20063     * Add a new spinner widget to the given parent Elementary
20064     * (container) object.
20065     *
20066     * @param parent The parent object.
20067     * @return a new spinner widget handle or @c NULL, on errors.
20068     *
20069     * This function inserts a new spinner widget on the canvas.
20070     *
20071     * @ingroup Spinner
20072     *
20073     */
20074    EAPI Evas_Object *elm_spinner_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20075
20076    /**
20077     * Set the format string of the displayed label.
20078     *
20079     * @param obj The spinner object.
20080     * @param fmt The format string for the label display.
20081     *
20082     * If @c NULL, this sets the format to "%.0f". If not it sets the format
20083     * string for the label text. The label text is provided a floating point
20084     * value, so the label text can display up to 1 floating point value.
20085     * Note that this is optional.
20086     *
20087     * Use a format string such as "%1.2f meters" for example, and it will
20088     * display values like: "3.14 meters" for a value equal to 3.14159.
20089     *
20090     * Default is "%0.f".
20091     *
20092     * @see elm_spinner_label_format_get()
20093     *
20094     * @ingroup Spinner
20095     */
20096    EAPI void         elm_spinner_label_format_set(Evas_Object *obj, const char *fmt) EINA_ARG_NONNULL(1);
20097
20098    /**
20099     * Get the label format of the spinner.
20100     *
20101     * @param obj The spinner object.
20102     * @return The text label format string in UTF-8.
20103     *
20104     * @see elm_spinner_label_format_set() for details.
20105     *
20106     * @ingroup Spinner
20107     */
20108    EAPI const char  *elm_spinner_label_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20109
20110    /**
20111     * Set the minimum and maximum values for the spinner.
20112     *
20113     * @param obj The spinner object.
20114     * @param min The minimum value.
20115     * @param max The maximum value.
20116     *
20117     * Define the allowed range of values to be selected by the user.
20118     *
20119     * If actual value is less than @p min, it will be updated to @p min. If it
20120     * is bigger then @p max, will be updated to @p max. Actual value can be
20121     * get with elm_spinner_value_get().
20122     *
20123     * By default, min is equal to 0, and max is equal to 100.
20124     *
20125     * @warning Maximum must be greater than minimum.
20126     *
20127     * @see elm_spinner_min_max_get()
20128     *
20129     * @ingroup Spinner
20130     */
20131    EAPI void         elm_spinner_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
20132
20133    /**
20134     * Get the minimum and maximum values of the spinner.
20135     *
20136     * @param obj The spinner object.
20137     * @param min Pointer where to store the minimum value.
20138     * @param max Pointer where to store the maximum value.
20139     *
20140     * @note If only one value is needed, the other pointer can be passed
20141     * as @c NULL.
20142     *
20143     * @see elm_spinner_min_max_set() for details.
20144     *
20145     * @ingroup Spinner
20146     */
20147    EAPI void         elm_spinner_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
20148
20149    /**
20150     * Set the step used to increment or decrement the spinner value.
20151     *
20152     * @param obj The spinner object.
20153     * @param step The step value.
20154     *
20155     * This value will be incremented or decremented to the displayed value.
20156     * It will be incremented while the user keep right or top arrow pressed,
20157     * and will be decremented while the user keep left or bottom arrow pressed.
20158     *
20159     * The interval to increment / decrement can be set with
20160     * elm_spinner_interval_set().
20161     *
20162     * By default step value is equal to 1.
20163     *
20164     * @see elm_spinner_step_get()
20165     *
20166     * @ingroup Spinner
20167     */
20168    EAPI void         elm_spinner_step_set(Evas_Object *obj, double step) EINA_ARG_NONNULL(1);
20169
20170    /**
20171     * Get the step used to increment or decrement the spinner value.
20172     *
20173     * @param obj The spinner object.
20174     * @return The step value.
20175     *
20176     * @see elm_spinner_step_get() for more details.
20177     *
20178     * @ingroup Spinner
20179     */
20180    EAPI double       elm_spinner_step_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20181
20182    /**
20183     * Set the value the spinner displays.
20184     *
20185     * @param obj The spinner object.
20186     * @param val The value to be displayed.
20187     *
20188     * Value will be presented on the label following format specified with
20189     * elm_spinner_format_set().
20190     *
20191     * @warning The value must to be between min and max values. This values
20192     * are set by elm_spinner_min_max_set().
20193     *
20194     * @see elm_spinner_value_get().
20195     * @see elm_spinner_format_set().
20196     * @see elm_spinner_min_max_set().
20197     *
20198     * @ingroup Spinner
20199     */
20200    EAPI void         elm_spinner_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
20201
20202    /**
20203     * Get the value displayed by the spinner.
20204     *
20205     * @param obj The spinner object.
20206     * @return The value displayed.
20207     *
20208     * @see elm_spinner_value_set() for details.
20209     *
20210     * @ingroup Spinner
20211     */
20212    EAPI double       elm_spinner_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20213
20214    /**
20215     * Set whether the spinner should wrap when it reaches its
20216     * minimum or maximum value.
20217     *
20218     * @param obj The spinner object.
20219     * @param wrap @c EINA_TRUE to enable wrap or @c EINA_FALSE to
20220     * disable it.
20221     *
20222     * Disabled by default. If disabled, when the user tries to increment the
20223     * value,
20224     * but displayed value plus step value is bigger than maximum value,
20225     * the spinner
20226     * won't allow it. The same happens when the user tries to decrement it,
20227     * but the value less step is less than minimum value.
20228     *
20229     * When wrap is enabled, in such situations it will allow these changes,
20230     * but will get the value that would be less than minimum and subtracts
20231     * from maximum. Or add the value that would be more than maximum to
20232     * the minimum.
20233     *
20234     * E.g.:
20235     * @li min value = 10
20236     * @li max value = 50
20237     * @li step value = 20
20238     * @li displayed value = 20
20239     *
20240     * When the user decrement value (using left or bottom arrow), it will
20241     * displays @c 40, because max - (min - (displayed - step)) is
20242     * @c 50 - (@c 10 - (@c 20 - @c 20)) = @c 40.
20243     *
20244     * @see elm_spinner_wrap_get().
20245     *
20246     * @ingroup Spinner
20247     */
20248    EAPI void         elm_spinner_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
20249
20250    /**
20251     * Get whether the spinner should wrap when it reaches its
20252     * minimum or maximum value.
20253     *
20254     * @param obj The spinner object
20255     * @return @c EINA_TRUE means wrap is enabled. @c EINA_FALSE indicates
20256     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
20257     *
20258     * @see elm_spinner_wrap_set() for details.
20259     *
20260     * @ingroup Spinner
20261     */
20262    EAPI Eina_Bool    elm_spinner_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20263
20264    /**
20265     * Set whether the spinner can be directly edited by the user or not.
20266     *
20267     * @param obj The spinner object.
20268     * @param editable @c EINA_TRUE to allow users to edit it or @c EINA_FALSE to
20269     * don't allow users to edit it directly.
20270     *
20271     * Spinner objects can have edition @b disabled, in which state they will
20272     * be changed only by arrows.
20273     * Useful for contexts
20274     * where you don't want your users to interact with it writting the value.
20275     * Specially
20276     * when using special values, the user can see real value instead
20277     * of special label on edition.
20278     *
20279     * It's enabled by default.
20280     *
20281     * @see elm_spinner_editable_get()
20282     *
20283     * @ingroup Spinner
20284     */
20285    EAPI void         elm_spinner_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
20286
20287    /**
20288     * Get whether the spinner can be directly edited by the user or not.
20289     *
20290     * @param obj The spinner object.
20291     * @return @c EINA_TRUE means edition is enabled. @c EINA_FALSE indicates
20292     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
20293     *
20294     * @see elm_spinner_editable_set() for details.
20295     *
20296     * @ingroup Spinner
20297     */
20298    EAPI Eina_Bool    elm_spinner_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20299
20300    /**
20301     * Set a special string to display in the place of the numerical value.
20302     *
20303     * @param obj The spinner object.
20304     * @param value The value to be replaced.
20305     * @param label The label to be used.
20306     *
20307     * It's useful for cases when a user should select an item that is
20308     * better indicated by a label than a value. For example, weekdays or months.
20309     *
20310     * E.g.:
20311     * @code
20312     * sp = elm_spinner_add(win);
20313     * elm_spinner_min_max_set(sp, 1, 3);
20314     * elm_spinner_special_value_add(sp, 1, "January");
20315     * elm_spinner_special_value_add(sp, 2, "February");
20316     * elm_spinner_special_value_add(sp, 3, "March");
20317     * evas_object_show(sp);
20318     * @endcode
20319     *
20320     * @ingroup Spinner
20321     */
20322    EAPI void         elm_spinner_special_value_add(Evas_Object *obj, double value, const char *label) EINA_ARG_NONNULL(1);
20323
20324    /**
20325     * Set the interval on time updates for an user mouse button hold
20326     * on spinner widgets' arrows.
20327     *
20328     * @param obj The spinner object.
20329     * @param interval The (first) interval value in seconds.
20330     *
20331     * This interval value is @b decreased while the user holds the
20332     * mouse pointer either incrementing or decrementing spinner's value.
20333     *
20334     * This helps the user to get to a given value distant from the
20335     * current one easier/faster, as it will start to change quicker and
20336     * quicker on mouse button holds.
20337     *
20338     * The calculation for the next change interval value, starting from
20339     * the one set with this call, is the previous interval divided by
20340     * @c 1.05, so it decreases a little bit.
20341     *
20342     * The default starting interval value for automatic changes is
20343     * @c 0.85 seconds.
20344     *
20345     * @see elm_spinner_interval_get()
20346     *
20347     * @ingroup Spinner
20348     */
20349    EAPI void         elm_spinner_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
20350
20351    /**
20352     * Get the interval on time updates for an user mouse button hold
20353     * on spinner widgets' arrows.
20354     *
20355     * @param obj The spinner object.
20356     * @return The (first) interval value, in seconds, set on it.
20357     *
20358     * @see elm_spinner_interval_set() for more details.
20359     *
20360     * @ingroup Spinner
20361     */
20362    EAPI double       elm_spinner_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20363
20364    /**
20365     * @}
20366     */
20367
20368    /**
20369     * @defgroup Index Index
20370     *
20371     * @image html img/widget/index/preview-00.png
20372     * @image latex img/widget/index/preview-00.eps
20373     *
20374     * An index widget gives you an index for fast access to whichever
20375     * group of other UI items one might have. It's a list of text
20376     * items (usually letters, for alphabetically ordered access).
20377     *
20378     * Index widgets are by default hidden and just appear when the
20379     * user clicks over it's reserved area in the canvas. In its
20380     * default theme, it's an area one @ref Fingers "finger" wide on
20381     * the right side of the index widget's container.
20382     *
20383     * When items on the index are selected, smart callbacks get
20384     * called, so that its user can make other container objects to
20385     * show a given area or child object depending on the index item
20386     * selected. You'd probably be using an index together with @ref
20387     * List "lists", @ref Genlist "generic lists" or @ref Gengrid
20388     * "general grids".
20389     *
20390     * Smart events one  can add callbacks for are:
20391     * - @c "changed" - When the selected index item changes. @c
20392     *      event_info is the selected item's data pointer.
20393     * - @c "delay,changed" - When the selected index item changes, but
20394     *      after a small idling period. @c event_info is the selected
20395     *      item's data pointer.
20396     * - @c "selected" - When the user releases a mouse button and
20397     *      selects an item. @c event_info is the selected item's data
20398     *      pointer.
20399     * - @c "level,up" - when the user moves a finger from the first
20400     *      level to the second level
20401     * - @c "level,down" - when the user moves a finger from the second
20402     *      level to the first level
20403     *
20404     * The @c "delay,changed" event is so that it'll wait a small time
20405     * before actually reporting those events and, moreover, just the
20406     * last event happening on those time frames will actually be
20407     * reported.
20408     *
20409     * Here are some examples on its usage:
20410     * @li @ref index_example_01
20411     * @li @ref index_example_02
20412     */
20413
20414    /**
20415     * @addtogroup Index
20416     * @{
20417     */
20418
20419    typedef struct _Elm_Index_Item Elm_Index_Item; /**< Opaque handle for items of Elementary index widgets */
20420
20421    /**
20422     * Add a new index widget to the given parent Elementary
20423     * (container) object
20424     *
20425     * @param parent The parent object
20426     * @return a new index widget handle or @c NULL, on errors
20427     *
20428     * This function inserts a new index widget on the canvas.
20429     *
20430     * @ingroup Index
20431     */
20432    EAPI Evas_Object    *elm_index_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20433
20434    /**
20435     * Set whether a given index widget is or not visible,
20436     * programatically.
20437     *
20438     * @param obj The index object
20439     * @param active @c EINA_TRUE to show it, @c EINA_FALSE to hide it
20440     *
20441     * Not to be confused with visible as in @c evas_object_show() --
20442     * visible with regard to the widget's auto hiding feature.
20443     *
20444     * @see elm_index_active_get()
20445     *
20446     * @ingroup Index
20447     */
20448    EAPI void            elm_index_active_set(Evas_Object *obj, Eina_Bool active) EINA_ARG_NONNULL(1);
20449
20450    /**
20451     * Get whether a given index widget is currently visible or not.
20452     *
20453     * @param obj The index object
20454     * @return @c EINA_TRUE, if it's shown, @c EINA_FALSE otherwise
20455     *
20456     * @see elm_index_active_set() for more details
20457     *
20458     * @ingroup Index
20459     */
20460    EAPI Eina_Bool       elm_index_active_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20461
20462    /**
20463     * Set the items level for a given index widget.
20464     *
20465     * @param obj The index object.
20466     * @param level @c 0 or @c 1, the currently implemented levels.
20467     *
20468     * @see elm_index_item_level_get()
20469     *
20470     * @ingroup Index
20471     */
20472    EAPI void            elm_index_item_level_set(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
20473
20474    /**
20475     * Get the items level set for a given index widget.
20476     *
20477     * @param obj The index object.
20478     * @return @c 0 or @c 1, which are the levels @p obj might be at.
20479     *
20480     * @see elm_index_item_level_set() for more information
20481     *
20482     * @ingroup Index
20483     */
20484    EAPI int             elm_index_item_level_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20485
20486    /**
20487     * Returns the last selected item's data, for a given index widget.
20488     *
20489     * @param obj The index object.
20490     * @return The item @b data associated to the last selected item on
20491     * @p obj (or @c NULL, on errors).
20492     *
20493     * @warning The returned value is @b not an #Elm_Index_Item item
20494     * handle, but the data associated to it (see the @c item parameter
20495     * in elm_index_item_append(), as an example).
20496     *
20497     * @ingroup Index
20498     */
20499    EAPI void           *elm_index_item_selected_get(const Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
20500
20501    /**
20502     * Append a new item on a given index widget.
20503     *
20504     * @param obj The index object.
20505     * @param letter Letter under which the item should be indexed
20506     * @param item The item data to set for the index's item
20507     *
20508     * Despite the most common usage of the @p letter argument is for
20509     * single char strings, one could use arbitrary strings as index
20510     * entries.
20511     *
20512     * @c item will be the pointer returned back on @c "changed", @c
20513     * "delay,changed" and @c "selected" smart events.
20514     *
20515     * @ingroup Index
20516     */
20517    EAPI void            elm_index_item_append(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
20518
20519    /**
20520     * Prepend a new item on a given index widget.
20521     *
20522     * @param obj The index object.
20523     * @param letter Letter under which the item should be indexed
20524     * @param item The item data to set for the index's item
20525     *
20526     * Despite the most common usage of the @p letter argument is for
20527     * single char strings, one could use arbitrary strings as index
20528     * entries.
20529     *
20530     * @c item will be the pointer returned back on @c "changed", @c
20531     * "delay,changed" and @c "selected" smart events.
20532     *
20533     * @ingroup Index
20534     */
20535    EAPI void            elm_index_item_prepend(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
20536
20537    /**
20538     * Append a new item, on a given index widget, <b>after the item
20539     * having @p relative as data</b>.
20540     *
20541     * @param obj The index object.
20542     * @param letter Letter under which the item should be indexed
20543     * @param item The item data to set for the index's item
20544     * @param relative The item data of the index item to be the
20545     * predecessor of this new one
20546     *
20547     * Despite the most common usage of the @p letter argument is for
20548     * single char strings, one could use arbitrary strings as index
20549     * entries.
20550     *
20551     * @c item will be the pointer returned back on @c "changed", @c
20552     * "delay,changed" and @c "selected" smart events.
20553     *
20554     * @note If @p relative is @c NULL or if it's not found to be data
20555     * set on any previous item on @p obj, this function will behave as
20556     * elm_index_item_append().
20557     *
20558     * @ingroup Index
20559     */
20560    EAPI void            elm_index_item_append_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
20561
20562    /**
20563     * Prepend a new item, on a given index widget, <b>after the item
20564     * having @p relative as data</b>.
20565     *
20566     * @param obj The index object.
20567     * @param letter Letter under which the item should be indexed
20568     * @param item The item data to set for the index's item
20569     * @param relative The item data of the index item to be the
20570     * successor of this new one
20571     *
20572     * Despite the most common usage of the @p letter argument is for
20573     * single char strings, one could use arbitrary strings as index
20574     * entries.
20575     *
20576     * @c item will be the pointer returned back on @c "changed", @c
20577     * "delay,changed" and @c "selected" smart events.
20578     *
20579     * @note If @p relative is @c NULL or if it's not found to be data
20580     * set on any previous item on @p obj, this function will behave as
20581     * elm_index_item_prepend().
20582     *
20583     * @ingroup Index
20584     */
20585    EAPI void            elm_index_item_prepend_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
20586
20587    /**
20588     * Insert a new item into the given index widget, using @p cmp_func
20589     * function to sort items (by item handles).
20590     *
20591     * @param obj The index object.
20592     * @param letter Letter under which the item should be indexed
20593     * @param item The item data to set for the index's item
20594     * @param cmp_func The comparing function to be used to sort index
20595     * items <b>by #Elm_Index_Item item handles</b>
20596     * @param cmp_data_func A @b fallback function to be called for the
20597     * sorting of index items <b>by item data</b>). It will be used
20598     * when @p cmp_func returns @c 0 (equality), which means an index
20599     * item with provided item data already exists. To decide which
20600     * data item should be pointed to by the index item in question, @p
20601     * cmp_data_func will be used. If @p cmp_data_func returns a
20602     * non-negative value, the previous index item data will be
20603     * replaced by the given @p item pointer. If the previous data need
20604     * to be freed, it should be done by the @p cmp_data_func function,
20605     * because all references to it will be lost. If this function is
20606     * not provided (@c NULL is given), index items will be @b
20607     * duplicated, if @p cmp_func returns @c 0.
20608     *
20609     * Despite the most common usage of the @p letter argument is for
20610     * single char strings, one could use arbitrary strings as index
20611     * entries.
20612     *
20613     * @c item will be the pointer returned back on @c "changed", @c
20614     * "delay,changed" and @c "selected" smart events.
20615     *
20616     * @ingroup Index
20617     */
20618    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);
20619
20620    /**
20621     * Remove an item from a given index widget, <b>to be referenced by
20622     * it's data value</b>.
20623     *
20624     * @param obj The index object
20625     * @param item The item's data pointer for the item to be removed
20626     * from @p obj
20627     *
20628     * If a deletion callback is set, via elm_index_item_del_cb_set(),
20629     * that callback function will be called by this one.
20630     *
20631     * @warning The item to be removed from @p obj will be found via
20632     * its item data pointer, and not by an #Elm_Index_Item handle.
20633     *
20634     * @ingroup Index
20635     */
20636    EAPI void            elm_index_item_del(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
20637
20638    /**
20639     * Find a given index widget's item, <b>using item data</b>.
20640     *
20641     * @param obj The index object
20642     * @param item The item data pointed to by the desired index item
20643     * @return The index item handle, if found, or @c NULL otherwise
20644     *
20645     * @ingroup Index
20646     */
20647    EAPI Elm_Index_Item *elm_index_item_find(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
20648
20649    /**
20650     * Removes @b all items from a given index widget.
20651     *
20652     * @param obj The index object.
20653     *
20654     * If deletion callbacks are set, via elm_index_item_del_cb_set(),
20655     * that callback function will be called for each item in @p obj.
20656     *
20657     * @ingroup Index
20658     */
20659    EAPI void            elm_index_item_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
20660
20661    /**
20662     * Go to a given items level on a index widget
20663     *
20664     * @param obj The index object
20665     * @param level The index level (one of @c 0 or @c 1)
20666     *
20667     * @ingroup Index
20668     */
20669    EAPI void            elm_index_item_go(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
20670
20671    /**
20672     * Return the data associated with a given index widget item
20673     *
20674     * @param it The index widget item handle
20675     * @return The data associated with @p it
20676     *
20677     * @see elm_index_item_data_set()
20678     *
20679     * @ingroup Index
20680     */
20681    EAPI void           *elm_index_item_data_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
20682
20683    /**
20684     * Set the data associated with a given index widget item
20685     *
20686     * @param it The index widget item handle
20687     * @param data The new data pointer to set to @p it
20688     *
20689     * This sets new item data on @p it.
20690     *
20691     * @warning The old data pointer won't be touched by this function, so
20692     * the user had better to free that old data himself/herself.
20693     *
20694     * @ingroup Index
20695     */
20696    EAPI void            elm_index_item_data_set(Elm_Index_Item *it, const void *data) EINA_ARG_NONNULL(1);
20697
20698    /**
20699     * Set the function to be called when a given index widget item is freed.
20700     *
20701     * @param it The item to set the callback on
20702     * @param func The function to call on the item's deletion
20703     *
20704     * When called, @p func will have both @c data and @c event_info
20705     * arguments with the @p it item's data value and, naturally, the
20706     * @c obj argument with a handle to the parent index widget.
20707     *
20708     * @ingroup Index
20709     */
20710    EAPI void            elm_index_item_del_cb_set(Elm_Index_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
20711
20712    /**
20713     * Get the letter (string) set on a given index widget item.
20714     *
20715     * @param it The index item handle
20716     * @return The letter string set on @p it
20717     *
20718     * @ingroup Index
20719     */
20720    EAPI const char     *elm_index_item_letter_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
20721
20722    /**
20723     * @}
20724     */
20725
20726    /**
20727     * @defgroup Photocam Photocam
20728     *
20729     * @image html img/widget/photocam/preview-00.png
20730     * @image latex img/widget/photocam/preview-00.eps
20731     *
20732     * This is a widget specifically for displaying high-resolution digital
20733     * camera photos giving speedy feedback (fast load), low memory footprint
20734     * and zooming and panning as well as fitting logic. It is entirely focused
20735     * on jpeg images, and takes advantage of properties of the jpeg format (via
20736     * evas loader features in the jpeg loader).
20737     *
20738     * Signals that you can add callbacks for are:
20739     * @li "clicked" - This is called when a user has clicked the photo without
20740     *                 dragging around.
20741     * @li "press" - This is called when a user has pressed down on the photo.
20742     * @li "longpressed" - This is called when a user has pressed down on the
20743     *                     photo for a long time without dragging around.
20744     * @li "clicked,double" - This is called when a user has double-clicked the
20745     *                        photo.
20746     * @li "load" - Photo load begins.
20747     * @li "loaded" - This is called when the image file load is complete for the
20748     *                first view (low resolution blurry version).
20749     * @li "load,detail" - Photo detailed data load begins.
20750     * @li "loaded,detail" - This is called when the image file load is complete
20751     *                      for the detailed image data (full resolution needed).
20752     * @li "zoom,start" - Zoom animation started.
20753     * @li "zoom,stop" - Zoom animation stopped.
20754     * @li "zoom,change" - Zoom changed when using an auto zoom mode.
20755     * @li "scroll" - the content has been scrolled (moved)
20756     * @li "scroll,anim,start" - scrolling animation has started
20757     * @li "scroll,anim,stop" - scrolling animation has stopped
20758     * @li "scroll,drag,start" - dragging the contents around has started
20759     * @li "scroll,drag,stop" - dragging the contents around has stopped
20760     *
20761     * @ref tutorial_photocam shows the API in action.
20762     * @{
20763     */
20764    /**
20765     * @brief Types of zoom available.
20766     */
20767    typedef enum _Elm_Photocam_Zoom_Mode
20768      {
20769         ELM_PHOTOCAM_ZOOM_MODE_MANUAL = 0, /**< Zoom controled normally by elm_photocam_zoom_set */
20770         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT, /**< Zoom until photo fits in photocam */
20771         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL, /**< Zoom until photo fills photocam */
20772         ELM_PHOTOCAM_ZOOM_MODE_LAST
20773      } Elm_Photocam_Zoom_Mode;
20774    /**
20775     * @brief Add a new Photocam object
20776     *
20777     * @param parent The parent object
20778     * @return The new object or NULL if it cannot be created
20779     */
20780    EAPI Evas_Object           *elm_photocam_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20781    /**
20782     * @brief Set the photo file to be shown
20783     *
20784     * @param obj The photocam object
20785     * @param file The photo file
20786     * @return The return error (see EVAS_LOAD_ERROR_NONE, EVAS_LOAD_ERROR_GENERIC etc.)
20787     *
20788     * This sets (and shows) the specified file (with a relative or absolute
20789     * path) and will return a load error (same error that
20790     * evas_object_image_load_error_get() will return). The image will change and
20791     * adjust its size at this point and begin a background load process for this
20792     * photo that at some time in the future will be displayed at the full
20793     * quality needed.
20794     */
20795    EAPI Evas_Load_Error        elm_photocam_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
20796    /**
20797     * @brief Returns the path of the current image file
20798     *
20799     * @param obj The photocam object
20800     * @return Returns the path
20801     *
20802     * @see elm_photocam_file_set()
20803     */
20804    EAPI const char            *elm_photocam_file_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20805    /**
20806     * @brief Set the zoom level of the photo
20807     *
20808     * @param obj The photocam object
20809     * @param zoom The zoom level to set
20810     *
20811     * This sets the zoom level. 1 will be 1:1 pixel for pixel. 2 will be 2:1
20812     * (that is 2x2 photo pixels will display as 1 on-screen pixel). 4:1 will be
20813     * 4x4 photo pixels as 1 screen pixel, and so on. The @p zoom parameter must
20814     * be greater than 0. It is usggested to stick to powers of 2. (1, 2, 4, 8,
20815     * 16, 32, etc.).
20816     */
20817    EAPI void                   elm_photocam_zoom_set(Evas_Object *obj, double zoom) EINA_ARG_NONNULL(1);
20818    /**
20819     * @brief Get the zoom level of the photo
20820     *
20821     * @param obj The photocam object
20822     * @return The current zoom level
20823     *
20824     * This returns the current zoom level of the photocam object. Note that if
20825     * you set the fill mode to other than ELM_PHOTOCAM_ZOOM_MODE_MANUAL
20826     * (which is the default), the zoom level may be changed at any time by the
20827     * photocam object itself to account for photo size and photocam viewpoer
20828     * size.
20829     *
20830     * @see elm_photocam_zoom_set()
20831     * @see elm_photocam_zoom_mode_set()
20832     */
20833    EAPI double                 elm_photocam_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20834    /**
20835     * @brief Set the zoom mode
20836     *
20837     * @param obj The photocam object
20838     * @param mode The desired mode
20839     *
20840     * This sets the zoom mode to manual or one of several automatic levels.
20841     * Manual (ELM_PHOTOCAM_ZOOM_MODE_MANUAL) means that zoom is set manually by
20842     * elm_photocam_zoom_set() and will stay at that level until changed by code
20843     * or until zoom mode is changed. This is the default mode. The Automatic
20844     * modes will allow the photocam object to automatically adjust zoom mode
20845     * based on properties. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT) will adjust zoom so
20846     * the photo fits EXACTLY inside the scroll frame with no pixels outside this
20847     * area. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL will be similar but ensure no
20848     * pixels within the frame are left unfilled.
20849     */
20850    EAPI void                   elm_photocam_zoom_mode_set(Evas_Object *obj, Elm_Photocam_Zoom_Mode mode) EINA_ARG_NONNULL(1);
20851    /**
20852     * @brief Get the zoom mode
20853     *
20854     * @param obj The photocam object
20855     * @return The current zoom mode
20856     *
20857     * This gets the current zoom mode of the photocam object.
20858     *
20859     * @see elm_photocam_zoom_mode_set()
20860     */
20861    EAPI Elm_Photocam_Zoom_Mode elm_photocam_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20862    /**
20863     * @brief Get the current image pixel width and height
20864     *
20865     * @param obj The photocam object
20866     * @param w A pointer to the width return
20867     * @param h A pointer to the height return
20868     *
20869     * This gets the current photo pixel width and height (for the original).
20870     * The size will be returned in the integers @p w and @p h that are pointed
20871     * to.
20872     */
20873    EAPI void                   elm_photocam_image_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
20874    /**
20875     * @brief Get the area of the image that is currently shown
20876     *
20877     * @param obj
20878     * @param x A pointer to the X-coordinate of region
20879     * @param y A pointer to the Y-coordinate of region
20880     * @param w A pointer to the width
20881     * @param h A pointer to the height
20882     *
20883     * @see elm_photocam_image_region_show()
20884     * @see elm_photocam_image_region_bring_in()
20885     */
20886    EAPI void                   elm_photocam_region_get(const Evas_Object *obj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
20887    /**
20888     * @brief Set the viewed portion of the image
20889     *
20890     * @param obj The photocam object
20891     * @param x X-coordinate of region in image original pixels
20892     * @param y Y-coordinate of region in image original pixels
20893     * @param w Width of region in image original pixels
20894     * @param h Height of region in image original pixels
20895     *
20896     * This shows the region of the image without using animation.
20897     */
20898    EAPI void                   elm_photocam_image_region_show(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
20899    /**
20900     * @brief Bring in the viewed portion of the image
20901     *
20902     * @param obj The photocam object
20903     * @param x X-coordinate of region in image original pixels
20904     * @param y Y-coordinate of region in image original pixels
20905     * @param w Width of region in image original pixels
20906     * @param h Height of region in image original pixels
20907     *
20908     * This shows the region of the image using animation.
20909     */
20910    EAPI void                   elm_photocam_image_region_bring_in(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
20911    /**
20912     * @brief Set the paused state for photocam
20913     *
20914     * @param obj The photocam object
20915     * @param paused The pause state to set
20916     *
20917     * This sets the paused state to on(EINA_TRUE) or off (EINA_FALSE) for
20918     * photocam. The default is off. This will stop zooming using animation on
20919     * zoom levels changes and change instantly. This will stop any existing
20920     * animations that are running.
20921     */
20922    EAPI void                   elm_photocam_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
20923    /**
20924     * @brief Get the paused state for photocam
20925     *
20926     * @param obj The photocam object
20927     * @return The current paused state
20928     *
20929     * This gets the current paused state for the photocam object.
20930     *
20931     * @see elm_photocam_paused_set()
20932     */
20933    EAPI Eina_Bool              elm_photocam_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20934    /**
20935     * @brief Get the internal low-res image used for photocam
20936     *
20937     * @param obj The photocam object
20938     * @return The internal image object handle, or NULL if none exists
20939     *
20940     * This gets the internal image object inside photocam. Do not modify it. It
20941     * is for inspection only, and hooking callbacks to. Nothing else. It may be
20942     * deleted at any time as well.
20943     */
20944    EAPI Evas_Object           *elm_photocam_internal_image_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20945    /**
20946     * @brief Set the photocam scrolling bouncing.
20947     *
20948     * @param obj The photocam object
20949     * @param h_bounce bouncing for horizontal
20950     * @param v_bounce bouncing for vertical
20951     */
20952    EAPI void                   elm_photocam_bounce_set(Evas_Object *obj,  Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
20953    /**
20954     * @brief Get the photocam scrolling bouncing.
20955     *
20956     * @param obj The photocam object
20957     * @param h_bounce bouncing for horizontal
20958     * @param v_bounce bouncing for vertical
20959     *
20960     * @see elm_photocam_bounce_set()
20961     */
20962    EAPI void                   elm_photocam_bounce_get(const Evas_Object *obj,  Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
20963    /**
20964     * @}
20965     */
20966
20967    /**
20968     * @defgroup Map Map
20969     * @ingroup Elementary
20970     *
20971     * @image html img/widget/map/preview-00.png
20972     * @image latex img/widget/map/preview-00.eps
20973     *
20974     * This is a widget specifically for displaying a map. It uses basically
20975     * OpenStreetMap provider http://www.openstreetmap.org/,
20976     * but custom providers can be added.
20977     *
20978     * It supports some basic but yet nice features:
20979     * @li zoom and scroll
20980     * @li markers with content to be displayed when user clicks over it
20981     * @li group of markers
20982     * @li routes
20983     *
20984     * Smart callbacks one can listen to:
20985     *
20986     * - "clicked" - This is called when a user has clicked the map without
20987     *   dragging around.
20988     * - "press" - This is called when a user has pressed down on the map.
20989     * - "longpressed" - This is called when a user has pressed down on the map
20990     *   for a long time without dragging around.
20991     * - "clicked,double" - This is called when a user has double-clicked
20992     *   the map.
20993     * - "load,detail" - Map detailed data load begins.
20994     * - "loaded,detail" - This is called when all currently visible parts of
20995     *   the map are loaded.
20996     * - "zoom,start" - Zoom animation started.
20997     * - "zoom,stop" - Zoom animation stopped.
20998     * - "zoom,change" - Zoom changed when using an auto zoom mode.
20999     * - "scroll" - the content has been scrolled (moved).
21000     * - "scroll,anim,start" - scrolling animation has started.
21001     * - "scroll,anim,stop" - scrolling animation has stopped.
21002     * - "scroll,drag,start" - dragging the contents around has started.
21003     * - "scroll,drag,stop" - dragging the contents around has stopped.
21004     * - "downloaded" - This is called when all currently required map images
21005     *   are downloaded.
21006     * - "route,load" - This is called when route request begins.
21007     * - "route,loaded" - This is called when route request ends.
21008     * - "name,load" - This is called when name request begins.
21009     * - "name,loaded- This is called when name request ends.
21010     *
21011     * Available style for map widget:
21012     * - @c "default"
21013     *
21014     * Available style for markers:
21015     * - @c "radio"
21016     * - @c "radio2"
21017     * - @c "empty"
21018     *
21019     * Available style for marker bubble:
21020     * - @c "default"
21021     *
21022     * List of examples:
21023     * @li @ref map_example_01
21024     * @li @ref map_example_02
21025     * @li @ref map_example_03
21026     */
21027
21028    /**
21029     * @addtogroup Map
21030     * @{
21031     */
21032
21033    /**
21034     * @enum _Elm_Map_Zoom_Mode
21035     * @typedef Elm_Map_Zoom_Mode
21036     *
21037     * Set map's zoom behavior. It can be set to manual or automatic.
21038     *
21039     * Default value is #ELM_MAP_ZOOM_MODE_MANUAL.
21040     *
21041     * Values <b> don't </b> work as bitmask, only one can be choosen.
21042     *
21043     * @note Valid sizes are 2^zoom, consequently the map may be smaller
21044     * than the scroller view.
21045     *
21046     * @see elm_map_zoom_mode_set()
21047     * @see elm_map_zoom_mode_get()
21048     *
21049     * @ingroup Map
21050     */
21051    typedef enum _Elm_Map_Zoom_Mode
21052      {
21053         ELM_MAP_ZOOM_MODE_MANUAL, /**< Zoom controled manually by elm_map_zoom_set(). It's set by default. */
21054         ELM_MAP_ZOOM_MODE_AUTO_FIT, /**< Zoom until map fits inside the scroll frame with no pixels outside this area. */
21055         ELM_MAP_ZOOM_MODE_AUTO_FILL, /**< Zoom until map fills scroll, ensuring no pixels are left unfilled. */
21056         ELM_MAP_ZOOM_MODE_LAST
21057      } Elm_Map_Zoom_Mode;
21058
21059    /**
21060     * @enum _Elm_Map_Route_Sources
21061     * @typedef Elm_Map_Route_Sources
21062     *
21063     * Set route service to be used. By default used source is
21064     * #ELM_MAP_ROUTE_SOURCE_YOURS.
21065     *
21066     * @see elm_map_route_source_set()
21067     * @see elm_map_route_source_get()
21068     *
21069     * @ingroup Map
21070     */
21071    typedef enum _Elm_Map_Route_Sources
21072      {
21073         ELM_MAP_ROUTE_SOURCE_YOURS, /**< Routing service http://www.yournavigation.org/ . Set by default.*/
21074         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. */
21075         ELM_MAP_ROUTE_SOURCE_ORS, /**< Open Route Service: http://www.openrouteservice.org/ . It's not working with Map yet. */
21076         ELM_MAP_ROUTE_SOURCE_LAST
21077      } Elm_Map_Route_Sources;
21078
21079    typedef enum _Elm_Map_Name_Sources
21080      {
21081         ELM_MAP_NAME_SOURCE_NOMINATIM,
21082         ELM_MAP_NAME_SOURCE_LAST
21083      } Elm_Map_Name_Sources;
21084
21085    /**
21086     * @enum _Elm_Map_Route_Type
21087     * @typedef Elm_Map_Route_Type
21088     *
21089     * Set type of transport used on route.
21090     *
21091     * @see elm_map_route_add()
21092     *
21093     * @ingroup Map
21094     */
21095    typedef enum _Elm_Map_Route_Type
21096      {
21097         ELM_MAP_ROUTE_TYPE_MOTOCAR, /**< Route should consider an automobile will be used. */
21098         ELM_MAP_ROUTE_TYPE_BICYCLE, /**< Route should consider a bicycle will be used by the user. */
21099         ELM_MAP_ROUTE_TYPE_FOOT, /**< Route should consider user will be walking. */
21100         ELM_MAP_ROUTE_TYPE_LAST
21101      } Elm_Map_Route_Type;
21102
21103    /**
21104     * @enum _Elm_Map_Route_Method
21105     * @typedef Elm_Map_Route_Method
21106     *
21107     * Set the routing method, what should be priorized, time or distance.
21108     *
21109     * @see elm_map_route_add()
21110     *
21111     * @ingroup Map
21112     */
21113    typedef enum _Elm_Map_Route_Method
21114      {
21115         ELM_MAP_ROUTE_METHOD_FASTEST, /**< Route should priorize time. */
21116         ELM_MAP_ROUTE_METHOD_SHORTEST, /**< Route should priorize distance. */
21117         ELM_MAP_ROUTE_METHOD_LAST
21118      } Elm_Map_Route_Method;
21119
21120    typedef enum _Elm_Map_Name_Method
21121      {
21122         ELM_MAP_NAME_METHOD_SEARCH,
21123         ELM_MAP_NAME_METHOD_REVERSE,
21124         ELM_MAP_NAME_METHOD_LAST
21125      } Elm_Map_Name_Method;
21126
21127    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(). */
21128    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(). */
21129    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(). */
21130    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(). */
21131    typedef struct _Elm_Map_Name            Elm_Map_Name; /**< A handle for specific coordinates. */
21132    typedef struct _Elm_Map_Track           Elm_Map_Track;
21133
21134    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. */
21135    typedef void         (*ElmMapMarkerDelFunc)      (Evas_Object *obj, Elm_Map_Marker *marker, void *data, Evas_Object *o); /**< Function to delete bubble content for marker classes. */
21136    typedef Evas_Object *(*ElmMapMarkerIconGetFunc)  (Evas_Object *obj, Elm_Map_Marker *marker, void *data); /**< Icon fetching class function for marker classes. */
21137    typedef Evas_Object *(*ElmMapGroupIconGetFunc)   (Evas_Object *obj, void *data); /**< Icon fetching class function for markers group classes. */
21138
21139    typedef char        *(*ElmMapModuleSourceFunc) (void);
21140    typedef int          (*ElmMapModuleZoomMinFunc) (void);
21141    typedef int          (*ElmMapModuleZoomMaxFunc) (void);
21142    typedef char        *(*ElmMapModuleUrlFunc) (Evas_Object *obj, int x, int y, int zoom);
21143    typedef int          (*ElmMapModuleRouteSourceFunc) (void);
21144    typedef char        *(*ElmMapModuleRouteUrlFunc) (Evas_Object *obj, char *type_name, int method, double flon, double flat, double tlon, double tlat);
21145    typedef char        *(*ElmMapModuleNameUrlFunc) (Evas_Object *obj, int method, char *name, double lon, double lat);
21146    typedef Eina_Bool    (*ElmMapModuleGeoIntoCoordFunc) (const Evas_Object *obj, int zoom, double lon, double lat, int size, int *x, int *y);
21147    typedef Eina_Bool    (*ElmMapModuleCoordIntoGeoFunc) (const Evas_Object *obj, int zoom, int x, int y, int size, double *lon, double *lat);
21148
21149    /**
21150     * Add a new map widget to the given parent Elementary (container) object.
21151     *
21152     * @param parent The parent object.
21153     * @return a new map widget handle or @c NULL, on errors.
21154     *
21155     * This function inserts a new map widget on the canvas.
21156     *
21157     * @ingroup Map
21158     */
21159    EAPI Evas_Object          *elm_map_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21160
21161    /**
21162     * Set the zoom level of the map.
21163     *
21164     * @param obj The map object.
21165     * @param zoom The zoom level to set.
21166     *
21167     * This sets the zoom level.
21168     *
21169     * It will respect limits defined by elm_map_source_zoom_min_set() and
21170     * elm_map_source_zoom_max_set().
21171     *
21172     * By default these values are 0 (world map) and 18 (maximum zoom).
21173     *
21174     * This function should be used when zoom mode is set to
21175     * #ELM_MAP_ZOOM_MODE_MANUAL. This is the default mode, and can be set
21176     * with elm_map_zoom_mode_set().
21177     *
21178     * @see elm_map_zoom_mode_set().
21179     * @see elm_map_zoom_get().
21180     *
21181     * @ingroup Map
21182     */
21183    EAPI void                  elm_map_zoom_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
21184
21185    /**
21186     * Get the zoom level of the map.
21187     *
21188     * @param obj The map object.
21189     * @return The current zoom level.
21190     *
21191     * This returns the current zoom level of the map object.
21192     *
21193     * Note that if you set the fill mode to other than #ELM_MAP_ZOOM_MODE_MANUAL
21194     * (which is the default), the zoom level may be changed at any time by the
21195     * map object itself to account for map size and map viewport size.
21196     *
21197     * @see elm_map_zoom_set() for details.
21198     *
21199     * @ingroup Map
21200     */
21201    EAPI int                   elm_map_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21202
21203    /**
21204     * Set the zoom mode used by the map object.
21205     *
21206     * @param obj The map object.
21207     * @param mode The zoom mode of the map, being it one of
21208     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
21209     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
21210     *
21211     * This sets the zoom mode to manual or one of the automatic levels.
21212     * Manual (#ELM_MAP_ZOOM_MODE_MANUAL) means that zoom is set manually by
21213     * elm_map_zoom_set() and will stay at that level until changed by code
21214     * or until zoom mode is changed. This is the default mode.
21215     *
21216     * The Automatic modes will allow the map object to automatically
21217     * adjust zoom mode based on properties. #ELM_MAP_ZOOM_MODE_AUTO_FIT will
21218     * adjust zoom so the map fits inside the scroll frame with no pixels
21219     * outside this area. #ELM_MAP_ZOOM_MODE_AUTO_FILL will be similar but
21220     * ensure no pixels within the frame are left unfilled. Do not forget that
21221     * the valid sizes are 2^zoom, consequently the map may be smaller than
21222     * the scroller view.
21223     *
21224     * @see elm_map_zoom_set()
21225     *
21226     * @ingroup Map
21227     */
21228    EAPI void                  elm_map_zoom_mode_set(Evas_Object *obj, Elm_Map_Zoom_Mode mode) EINA_ARG_NONNULL(1);
21229
21230    /**
21231     * Get the zoom mode used by the map object.
21232     *
21233     * @param obj The map object.
21234     * @return The zoom mode of the map, being it one of
21235     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
21236     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
21237     *
21238     * This function returns the current zoom mode used by the map object.
21239     *
21240     * @see elm_map_zoom_mode_set() for more details.
21241     *
21242     * @ingroup Map
21243     */
21244    EAPI Elm_Map_Zoom_Mode     elm_map_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21245
21246    /**
21247     * Get the current coordinates of the map.
21248     *
21249     * @param obj The map object.
21250     * @param lon Pointer where to store longitude.
21251     * @param lat Pointer where to store latitude.
21252     *
21253     * This gets the current center coordinates of the map object. It can be
21254     * set by elm_map_geo_region_bring_in() and elm_map_geo_region_show().
21255     *
21256     * @see elm_map_geo_region_bring_in()
21257     * @see elm_map_geo_region_show()
21258     *
21259     * @ingroup Map
21260     */
21261    EAPI void                  elm_map_geo_region_get(const Evas_Object *obj, double *lon, double *lat) EINA_ARG_NONNULL(1);
21262
21263    /**
21264     * Animatedly bring in given coordinates to the center of the map.
21265     *
21266     * @param obj The map object.
21267     * @param lon Longitude to center at.
21268     * @param lat Latitude to center at.
21269     *
21270     * This causes map to jump to the given @p lat and @p lon coordinates
21271     * and show it (by scrolling) in the center of the viewport, if it is not
21272     * already centered. This will use animation to do so and take a period
21273     * of time to complete.
21274     *
21275     * @see elm_map_geo_region_show() for a function to avoid animation.
21276     * @see elm_map_geo_region_get()
21277     *
21278     * @ingroup Map
21279     */
21280    EAPI void                  elm_map_geo_region_bring_in(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
21281
21282    /**
21283     * Show the given coordinates at the center of the map, @b immediately.
21284     *
21285     * @param obj The map object.
21286     * @param lon Longitude to center at.
21287     * @param lat Latitude to center at.
21288     *
21289     * This causes map to @b redraw its viewport's contents to the
21290     * region contining the given @p lat and @p lon, that will be moved to the
21291     * center of the map.
21292     *
21293     * @see elm_map_geo_region_bring_in() for a function to move with animation.
21294     * @see elm_map_geo_region_get()
21295     *
21296     * @ingroup Map
21297     */
21298    EAPI void                  elm_map_geo_region_show(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
21299
21300    /**
21301     * Pause or unpause the map.
21302     *
21303     * @param obj The map object.
21304     * @param paused Use @c EINA_TRUE to pause the map @p obj or @c EINA_FALSE
21305     * to unpause it.
21306     *
21307     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
21308     * for map.
21309     *
21310     * The default is off.
21311     *
21312     * This will stop zooming using animation, changing zoom levels will
21313     * change instantly. This will stop any existing animations that are running.
21314     *
21315     * @see elm_map_paused_get()
21316     *
21317     * @ingroup Map
21318     */
21319    EAPI void                  elm_map_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
21320
21321    /**
21322     * Get a value whether map is paused or not.
21323     *
21324     * @param obj The map object.
21325     * @return @c EINA_TRUE means map is pause. @c EINA_FALSE indicates
21326     * it is not. If @p obj is @c NULL, @c EINA_FALSE is returned.
21327     *
21328     * This gets the current paused state for the map object.
21329     *
21330     * @see elm_map_paused_set() for details.
21331     *
21332     * @ingroup Map
21333     */
21334    EAPI Eina_Bool             elm_map_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21335
21336    /**
21337     * Set to show markers during zoom level changes or not.
21338     *
21339     * @param obj The map object.
21340     * @param paused Use @c EINA_TRUE to @b not show markers or @c EINA_FALSE
21341     * to show them.
21342     *
21343     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
21344     * for map.
21345     *
21346     * The default is off.
21347     *
21348     * This will stop zooming using animation, changing zoom levels will
21349     * change instantly. This will stop any existing animations that are running.
21350     *
21351     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
21352     * for the markers.
21353     *
21354     * The default  is off.
21355     *
21356     * Enabling it will force the map to stop displaying the markers during
21357     * zoom level changes. Set to on if you have a large number of markers.
21358     *
21359     * @see elm_map_paused_markers_get()
21360     *
21361     * @ingroup Map
21362     */
21363    EAPI void                  elm_map_paused_markers_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
21364
21365    /**
21366     * Get a value whether markers will be displayed on zoom level changes or not
21367     *
21368     * @param obj The map object.
21369     * @return @c EINA_TRUE means map @b won't display markers or @c EINA_FALSE
21370     * indicates it will. If @p obj is @c NULL, @c EINA_FALSE is returned.
21371     *
21372     * This gets the current markers paused state for the map object.
21373     *
21374     * @see elm_map_paused_markers_set() for details.
21375     *
21376     * @ingroup Map
21377     */
21378    EAPI Eina_Bool             elm_map_paused_markers_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21379
21380    /**
21381     * Get the information of downloading status.
21382     *
21383     * @param obj The map object.
21384     * @param try_num Pointer where to store number of tiles being downloaded.
21385     * @param finish_num Pointer where to store number of tiles successfully
21386     * downloaded.
21387     *
21388     * This gets the current downloading status for the map object, the number
21389     * of tiles being downloaded and the number of tiles already downloaded.
21390     *
21391     * @ingroup Map
21392     */
21393    EAPI void                  elm_map_utils_downloading_status_get(const Evas_Object *obj, int *try_num, int *finish_num) EINA_ARG_NONNULL(1, 2, 3);
21394
21395    /**
21396     * Convert a pixel coordinate (x,y) into a geographic coordinate
21397     * (longitude, latitude).
21398     *
21399     * @param obj The map object.
21400     * @param x the coordinate.
21401     * @param y the coordinate.
21402     * @param size the size in pixels of the map.
21403     * The map is a square and generally his size is : pow(2.0, zoom)*256.
21404     * @param lon Pointer where to store the longitude that correspond to x.
21405     * @param lat Pointer where to store the latitude that correspond to y.
21406     *
21407     * @note Origin pixel point is the top left corner of the viewport.
21408     * Map zoom and size are taken on account.
21409     *
21410     * @see elm_map_utils_convert_geo_into_coord() if you need the inverse.
21411     *
21412     * @ingroup Map
21413     */
21414    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);
21415
21416    /**
21417     * Convert a geographic coordinate (longitude, latitude) into a pixel
21418     * coordinate (x, y).
21419     *
21420     * @param obj The map object.
21421     * @param lon the longitude.
21422     * @param lat the latitude.
21423     * @param size the size in pixels of the map. The map is a square
21424     * and generally his size is : pow(2.0, zoom)*256.
21425     * @param x Pointer where to store the horizontal pixel coordinate that
21426     * correspond to the longitude.
21427     * @param y Pointer where to store the vertical pixel coordinate that
21428     * correspond to the latitude.
21429     *
21430     * @note Origin pixel point is the top left corner of the viewport.
21431     * Map zoom and size are taken on account.
21432     *
21433     * @see elm_map_utils_convert_coord_into_geo() if you need the inverse.
21434     *
21435     * @ingroup Map
21436     */
21437    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);
21438
21439    /**
21440     * Convert a geographic coordinate (longitude, latitude) into a name
21441     * (address).
21442     *
21443     * @param obj The map object.
21444     * @param lon the longitude.
21445     * @param lat the latitude.
21446     * @return name A #Elm_Map_Name handle for this coordinate.
21447     *
21448     * To get the string for this address, elm_map_name_address_get()
21449     * should be used.
21450     *
21451     * @see elm_map_utils_convert_name_into_coord() if you need the inverse.
21452     *
21453     * @ingroup Map
21454     */
21455    EAPI Elm_Map_Name         *elm_map_utils_convert_coord_into_name(const Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
21456
21457    /**
21458     * Convert a name (address) into a geographic coordinate
21459     * (longitude, latitude).
21460     *
21461     * @param obj The map object.
21462     * @param name The address.
21463     * @return name A #Elm_Map_Name handle for this address.
21464     *
21465     * To get the longitude and latitude, elm_map_name_region_get()
21466     * should be used.
21467     *
21468     * @see elm_map_utils_convert_coord_into_name() if you need the inverse.
21469     *
21470     * @ingroup Map
21471     */
21472    EAPI Elm_Map_Name         *elm_map_utils_convert_name_into_coord(const Evas_Object *obj, char *address) EINA_ARG_NONNULL(1, 2);
21473
21474    /**
21475     * Convert a pixel coordinate into a rotated pixel coordinate.
21476     *
21477     * @param obj The map object.
21478     * @param x horizontal coordinate of the point to rotate.
21479     * @param y vertical coordinate of the point to rotate.
21480     * @param cx rotation's center horizontal position.
21481     * @param cy rotation's center vertical position.
21482     * @param degree amount of degrees from 0.0 to 360.0 to rotate arount Z axis.
21483     * @param xx Pointer where to store rotated x.
21484     * @param yy Pointer where to store rotated y.
21485     *
21486     * @ingroup Map
21487     */
21488    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);
21489
21490    /**
21491     * Add a new marker to the map object.
21492     *
21493     * @param obj The map object.
21494     * @param lon The longitude of the marker.
21495     * @param lat The latitude of the marker.
21496     * @param clas The class, to use when marker @b isn't grouped to others.
21497     * @param clas_group The class group, to use when marker is grouped to others
21498     * @param data The data passed to the callbacks.
21499     *
21500     * @return The created marker or @c NULL upon failure.
21501     *
21502     * A marker will be created and shown in a specific point of the map, defined
21503     * by @p lon and @p lat.
21504     *
21505     * It will be displayed using style defined by @p class when this marker
21506     * is displayed alone (not grouped). A new class can be created with
21507     * elm_map_marker_class_new().
21508     *
21509     * If the marker is grouped to other markers, it will be displayed with
21510     * style defined by @p class_group. Markers with the same group are grouped
21511     * if they are close. A new group class can be created with
21512     * elm_map_marker_group_class_new().
21513     *
21514     * Markers created with this method can be deleted with
21515     * elm_map_marker_remove().
21516     *
21517     * A marker can have associated content to be displayed by a bubble,
21518     * when a user click over it, as well as an icon. These objects will
21519     * be fetch using class' callback functions.
21520     *
21521     * @see elm_map_marker_class_new()
21522     * @see elm_map_marker_group_class_new()
21523     * @see elm_map_marker_remove()
21524     *
21525     * @ingroup Map
21526     */
21527    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);
21528
21529    /**
21530     * Set the maximum numbers of markers' content to be displayed in a group.
21531     *
21532     * @param obj The map object.
21533     * @param max The maximum numbers of items displayed in a bubble.
21534     *
21535     * A bubble will be displayed when the user clicks over the group,
21536     * and will place the content of markers that belong to this group
21537     * inside it.
21538     *
21539     * A group can have a long list of markers, consequently the creation
21540     * of the content of the bubble can be very slow.
21541     *
21542     * In order to avoid this, a maximum number of items is displayed
21543     * in a bubble.
21544     *
21545     * By default this number is 30.
21546     *
21547     * Marker with the same group class are grouped if they are close.
21548     *
21549     * @see elm_map_marker_add()
21550     *
21551     * @ingroup Map
21552     */
21553    EAPI void                  elm_map_max_marker_per_group_set(Evas_Object *obj, int max) EINA_ARG_NONNULL(1);
21554
21555    /**
21556     * Remove a marker from the map.
21557     *
21558     * @param marker The marker to remove.
21559     *
21560     * @see elm_map_marker_add()
21561     *
21562     * @ingroup Map
21563     */
21564    EAPI void                  elm_map_marker_remove(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
21565
21566    /**
21567     * Get the current coordinates of the marker.
21568     *
21569     * @param marker marker.
21570     * @param lat Pointer where to store the marker's latitude.
21571     * @param lon Pointer where to store the marker's longitude.
21572     *
21573     * These values are set when adding markers, with function
21574     * elm_map_marker_add().
21575     *
21576     * @see elm_map_marker_add()
21577     *
21578     * @ingroup Map
21579     */
21580    EAPI void                  elm_map_marker_region_get(const Elm_Map_Marker *marker, double *lon, double *lat) EINA_ARG_NONNULL(1);
21581
21582    /**
21583     * Animatedly bring in given marker to the center of the map.
21584     *
21585     * @param marker The marker to center at.
21586     *
21587     * This causes map to jump to the given @p marker's coordinates
21588     * and show it (by scrolling) in the center of the viewport, if it is not
21589     * already centered. This will use animation to do so and take a period
21590     * of time to complete.
21591     *
21592     * @see elm_map_marker_show() for a function to avoid animation.
21593     * @see elm_map_marker_region_get()
21594     *
21595     * @ingroup Map
21596     */
21597    EAPI void                  elm_map_marker_bring_in(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
21598
21599    /**
21600     * Show the given marker at the center of the map, @b immediately.
21601     *
21602     * @param marker The marker to center at.
21603     *
21604     * This causes map to @b redraw its viewport's contents to the
21605     * region contining the given @p marker's coordinates, that will be
21606     * moved to the center of the map.
21607     *
21608     * @see elm_map_marker_bring_in() for a function to move with animation.
21609     * @see elm_map_markers_list_show() if more than one marker need to be
21610     * displayed.
21611     * @see elm_map_marker_region_get()
21612     *
21613     * @ingroup Map
21614     */
21615    EAPI void                  elm_map_marker_show(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
21616
21617    /**
21618     * Move and zoom the map to display a list of markers.
21619     *
21620     * @param markers A list of #Elm_Map_Marker handles.
21621     *
21622     * The map will be centered on the center point of the markers in the list.
21623     * Then the map will be zoomed in order to fit the markers using the maximum
21624     * zoom which allows display of all the markers.
21625     *
21626     * @warning All the markers should belong to the same map object.
21627     *
21628     * @see elm_map_marker_show() to show a single marker.
21629     * @see elm_map_marker_bring_in()
21630     *
21631     * @ingroup Map
21632     */
21633    EAPI void                  elm_map_markers_list_show(Eina_List *markers) EINA_ARG_NONNULL(1);
21634
21635    /**
21636     * Get the Evas object returned by the ElmMapMarkerGetFunc callback
21637     *
21638     * @param marker The marker wich content should be returned.
21639     * @return Return the evas object if it exists, else @c NULL.
21640     *
21641     * To set callback function #ElmMapMarkerGetFunc for the marker class,
21642     * elm_map_marker_class_get_cb_set() should be used.
21643     *
21644     * This content is what will be inside the bubble that will be displayed
21645     * when an user clicks over the marker.
21646     *
21647     * This returns the actual Evas object used to be placed inside
21648     * the bubble. This may be @c NULL, as it may
21649     * not have been created or may have been deleted, at any time, by
21650     * the map. <b>Do not modify this object</b> (move, resize,
21651     * show, hide, etc.), as the map is controlling it. This
21652     * function is for querying, emitting custom signals or hooking
21653     * lower level callbacks for events on that object. Do not delete
21654     * this object under any circumstances.
21655     *
21656     * @ingroup Map
21657     */
21658    EAPI Evas_Object          *elm_map_marker_object_get(const Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
21659
21660    /**
21661     * Update the marker
21662     *
21663     * @param marker The marker to be updated.
21664     *
21665     * If a content is set to this marker, it will call function to delete it,
21666     * #ElmMapMarkerDelFunc, and then will fetch the content again with
21667     * #ElmMapMarkerGetFunc.
21668     *
21669     * These functions are set for the marker class with
21670     * elm_map_marker_class_get_cb_set() and elm_map_marker_class_del_cb_set().
21671     *
21672     * @ingroup Map
21673     */
21674    EAPI void                  elm_map_marker_update(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
21675
21676    /**
21677     * Close all the bubbles opened by the user.
21678     *
21679     * @param obj The map object.
21680     *
21681     * A bubble is displayed with a content fetched with #ElmMapMarkerGetFunc
21682     * when the user clicks on a marker.
21683     *
21684     * This functions is set for the marker class with
21685     * elm_map_marker_class_get_cb_set().
21686     *
21687     * @ingroup Map
21688     */
21689    EAPI void                  elm_map_bubbles_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
21690
21691    /**
21692     * Create a new group class.
21693     *
21694     * @param obj The map object.
21695     * @return Returns the new group class.
21696     *
21697     * Each marker must be associated to a group class. Markers in the same
21698     * group are grouped if they are close.
21699     *
21700     * The group class defines the style of the marker when a marker is grouped
21701     * to others markers. When it is alone, another class will be used.
21702     *
21703     * A group class will need to be provided when creating a marker with
21704     * elm_map_marker_add().
21705     *
21706     * Some properties and functions can be set by class, as:
21707     * - style, with elm_map_group_class_style_set()
21708     * - data - to be associated to the group class. It can be set using
21709     *   elm_map_group_class_data_set().
21710     * - min zoom to display markers, set with
21711     *   elm_map_group_class_zoom_displayed_set().
21712     * - max zoom to group markers, set using
21713     *   elm_map_group_class_zoom_grouped_set().
21714     * - visibility - set if markers will be visible or not, set with
21715     *   elm_map_group_class_hide_set().
21716     * - #ElmMapGroupIconGetFunc - used to fetch icon for markers group classes.
21717     *   It can be set using elm_map_group_class_icon_cb_set().
21718     *
21719     * @see elm_map_marker_add()
21720     * @see elm_map_group_class_style_set()
21721     * @see elm_map_group_class_data_set()
21722     * @see elm_map_group_class_zoom_displayed_set()
21723     * @see elm_map_group_class_zoom_grouped_set()
21724     * @see elm_map_group_class_hide_set()
21725     * @see elm_map_group_class_icon_cb_set()
21726     *
21727     * @ingroup Map
21728     */
21729    EAPI Elm_Map_Group_Class  *elm_map_group_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
21730
21731    /**
21732     * Set the marker's style of a group class.
21733     *
21734     * @param clas The group class.
21735     * @param style The style to be used by markers.
21736     *
21737     * Each marker must be associated to a group class, and will use the style
21738     * defined by such class when grouped to other markers.
21739     *
21740     * The following styles are provided by default theme:
21741     * @li @c radio - blue circle
21742     * @li @c radio2 - green circle
21743     * @li @c empty
21744     *
21745     * @see elm_map_group_class_new() for more details.
21746     * @see elm_map_marker_add()
21747     *
21748     * @ingroup Map
21749     */
21750    EAPI void                  elm_map_group_class_style_set(Elm_Map_Group_Class *clas, const char *style) EINA_ARG_NONNULL(1);
21751
21752    /**
21753     * Set the icon callback function of a group class.
21754     *
21755     * @param clas The group class.
21756     * @param icon_get The callback function that will return the icon.
21757     *
21758     * Each marker must be associated to a group class, and it can display a
21759     * custom icon. The function @p icon_get must return this icon.
21760     *
21761     * @see elm_map_group_class_new() for more details.
21762     * @see elm_map_marker_add()
21763     *
21764     * @ingroup Map
21765     */
21766    EAPI void                  elm_map_group_class_icon_cb_set(Elm_Map_Group_Class *clas, ElmMapGroupIconGetFunc icon_get) EINA_ARG_NONNULL(1);
21767
21768    /**
21769     * Set the data associated to the group class.
21770     *
21771     * @param clas The group class.
21772     * @param data The new user data.
21773     *
21774     * This data will be passed for callback functions, like icon get callback,
21775     * that can be set with elm_map_group_class_icon_cb_set().
21776     *
21777     * If a data was previously set, the object will lose the pointer for it,
21778     * so if needs to be freed, you must do it yourself.
21779     *
21780     * @see elm_map_group_class_new() for more details.
21781     * @see elm_map_group_class_icon_cb_set()
21782     * @see elm_map_marker_add()
21783     *
21784     * @ingroup Map
21785     */
21786    EAPI void                  elm_map_group_class_data_set(Elm_Map_Group_Class *clas, void *data) EINA_ARG_NONNULL(1);
21787
21788    /**
21789     * Set the minimum zoom from where the markers are displayed.
21790     *
21791     * @param clas The group class.
21792     * @param zoom The minimum zoom.
21793     *
21794     * Markers only will be displayed when the map is displayed at @p zoom
21795     * or bigger.
21796     *
21797     * @see elm_map_group_class_new() for more details.
21798     * @see elm_map_marker_add()
21799     *
21800     * @ingroup Map
21801     */
21802    EAPI void                  elm_map_group_class_zoom_displayed_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
21803
21804    /**
21805     * Set the zoom from where the markers are no more grouped.
21806     *
21807     * @param clas The group class.
21808     * @param zoom The maximum zoom.
21809     *
21810     * Markers only will be grouped when the map is displayed at
21811     * less than @p zoom.
21812     *
21813     * @see elm_map_group_class_new() for more details.
21814     * @see elm_map_marker_add()
21815     *
21816     * @ingroup Map
21817     */
21818    EAPI void                  elm_map_group_class_zoom_grouped_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
21819
21820    /**
21821     * Set if the markers associated to the group class @clas are hidden or not.
21822     *
21823     * @param clas The group class.
21824     * @param hide Use @c EINA_TRUE to hide markers or @c EINA_FALSE
21825     * to show them.
21826     *
21827     * If @p hide is @c EINA_TRUE the markers will be hidden, but default
21828     * is to show them.
21829     *
21830     * @ingroup Map
21831     */
21832    EAPI void                  elm_map_group_class_hide_set(Evas_Object *obj, Elm_Map_Group_Class *clas, Eina_Bool hide) EINA_ARG_NONNULL(1, 2);
21833
21834    /**
21835     * Create a new marker class.
21836     *
21837     * @param obj The map object.
21838     * @return Returns the new group class.
21839     *
21840     * Each marker must be associated to a class.
21841     *
21842     * The marker class defines the style of the marker when a marker is
21843     * displayed alone, i.e., not grouped to to others markers. When grouped
21844     * it will use group class style.
21845     *
21846     * A marker class will need to be provided when creating a marker with
21847     * elm_map_marker_add().
21848     *
21849     * Some properties and functions can be set by class, as:
21850     * - style, with elm_map_marker_class_style_set()
21851     * - #ElmMapMarkerIconGetFunc - used to fetch icon for markers classes.
21852     *   It can be set using elm_map_marker_class_icon_cb_set().
21853     * - #ElmMapMarkerGetFunc - used to fetch bubble content for marker classes.
21854     *   Set using elm_map_marker_class_get_cb_set().
21855     * - #ElmMapMarkerDelFunc - used to delete bubble content for marker classes.
21856     *   Set using elm_map_marker_class_del_cb_set().
21857     *
21858     * @see elm_map_marker_add()
21859     * @see elm_map_marker_class_style_set()
21860     * @see elm_map_marker_class_icon_cb_set()
21861     * @see elm_map_marker_class_get_cb_set()
21862     * @see elm_map_marker_class_del_cb_set()
21863     *
21864     * @ingroup Map
21865     */
21866    EAPI Elm_Map_Marker_Class *elm_map_marker_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
21867
21868    /**
21869     * Set the marker's style of a marker class.
21870     *
21871     * @param clas The marker class.
21872     * @param style The style to be used by markers.
21873     *
21874     * Each marker must be associated to a marker class, and will use the style
21875     * defined by such class when alone, i.e., @b not grouped to other markers.
21876     *
21877     * The following styles are provided by default theme:
21878     * @li @c radio
21879     * @li @c radio2
21880     * @li @c empty
21881     *
21882     * @see elm_map_marker_class_new() for more details.
21883     * @see elm_map_marker_add()
21884     *
21885     * @ingroup Map
21886     */
21887    EAPI void                  elm_map_marker_class_style_set(Elm_Map_Marker_Class *clas, const char *style) EINA_ARG_NONNULL(1);
21888
21889    /**
21890     * Set the icon callback function of a marker class.
21891     *
21892     * @param clas The marker class.
21893     * @param icon_get The callback function that will return the icon.
21894     *
21895     * Each marker must be associated to a marker class, and it can display a
21896     * custom icon. The function @p icon_get must return this icon.
21897     *
21898     * @see elm_map_marker_class_new() for more details.
21899     * @see elm_map_marker_add()
21900     *
21901     * @ingroup Map
21902     */
21903    EAPI void                  elm_map_marker_class_icon_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerIconGetFunc icon_get) EINA_ARG_NONNULL(1);
21904
21905    /**
21906     * Set the bubble content callback function of a marker class.
21907     *
21908     * @param clas The marker class.
21909     * @param get The callback function that will return the content.
21910     *
21911     * Each marker must be associated to a marker class, and it can display a
21912     * a content on a bubble that opens when the user click over the marker.
21913     * The function @p get must return this content object.
21914     *
21915     * If this content will need to be deleted, elm_map_marker_class_del_cb_set()
21916     * can be used.
21917     *
21918     * @see elm_map_marker_class_new() for more details.
21919     * @see elm_map_marker_class_del_cb_set()
21920     * @see elm_map_marker_add()
21921     *
21922     * @ingroup Map
21923     */
21924    EAPI void                  elm_map_marker_class_get_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerGetFunc get) EINA_ARG_NONNULL(1);
21925
21926    /**
21927     * Set the callback function used to delete bubble content of a marker class.
21928     *
21929     * @param clas The marker class.
21930     * @param del The callback function that will delete the content.
21931     *
21932     * Each marker must be associated to a marker class, and it can display a
21933     * a content on a bubble that opens when the user click over the marker.
21934     * The function to return such content can be set with
21935     * elm_map_marker_class_get_cb_set().
21936     *
21937     * If this content must be freed, a callback function need to be
21938     * set for that task with this function.
21939     *
21940     * If this callback is defined it will have to delete (or not) the
21941     * object inside, but if the callback is not defined the object will be
21942     * destroyed with evas_object_del().
21943     *
21944     * @see elm_map_marker_class_new() for more details.
21945     * @see elm_map_marker_class_get_cb_set()
21946     * @see elm_map_marker_add()
21947     *
21948     * @ingroup Map
21949     */
21950    EAPI void                  elm_map_marker_class_del_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerDelFunc del) EINA_ARG_NONNULL(1);
21951
21952    /**
21953     * Get the list of available sources.
21954     *
21955     * @param obj The map object.
21956     * @return The source names list.
21957     *
21958     * It will provide a list with all available sources, that can be set as
21959     * current source with elm_map_source_name_set(), or get with
21960     * elm_map_source_name_get().
21961     *
21962     * Available sources:
21963     * @li "Mapnik"
21964     * @li "Osmarender"
21965     * @li "CycleMap"
21966     * @li "Maplint"
21967     *
21968     * @see elm_map_source_name_set() for more details.
21969     * @see elm_map_source_name_get()
21970     *
21971     * @ingroup Map
21972     */
21973    EAPI const char          **elm_map_source_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21974
21975    /**
21976     * Set the source of the map.
21977     *
21978     * @param obj The map object.
21979     * @param source The source to be used.
21980     *
21981     * Map widget retrieves images that composes the map from a web service.
21982     * This web service can be set with this method.
21983     *
21984     * A different service can return a different maps with different
21985     * information and it can use different zoom values.
21986     *
21987     * The @p source_name need to match one of the names provided by
21988     * elm_map_source_names_get().
21989     *
21990     * The current source can be get using elm_map_source_name_get().
21991     *
21992     * @see elm_map_source_names_get()
21993     * @see elm_map_source_name_get()
21994     *
21995     *
21996     * @ingroup Map
21997     */
21998    EAPI void                  elm_map_source_name_set(Evas_Object *obj, const char *source_name) EINA_ARG_NONNULL(1);
21999
22000    /**
22001     * Get the name of currently used source.
22002     *
22003     * @param obj The map object.
22004     * @return Returns the name of the source in use.
22005     *
22006     * @see elm_map_source_name_set() for more details.
22007     *
22008     * @ingroup Map
22009     */
22010    EAPI const char           *elm_map_source_name_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22011
22012    /**
22013     * Set the source of the route service to be used by the map.
22014     *
22015     * @param obj The map object.
22016     * @param source The route service to be used, being it one of
22017     * #ELM_MAP_ROUTE_SOURCE_YOURS (default), #ELM_MAP_ROUTE_SOURCE_MONAV,
22018     * and #ELM_MAP_ROUTE_SOURCE_ORS.
22019     *
22020     * Each one has its own algorithm, so the route retrieved may
22021     * differ depending on the source route. Now, only the default is working.
22022     *
22023     * #ELM_MAP_ROUTE_SOURCE_YOURS is the routing service provided at
22024     * http://www.yournavigation.org/.
22025     *
22026     * #ELM_MAP_ROUTE_SOURCE_MONAV, offers exact routing without heuristic
22027     * assumptions. Its routing core is based on Contraction Hierarchies.
22028     *
22029     * #ELM_MAP_ROUTE_SOURCE_ORS, is provided at http://www.openrouteservice.org/
22030     *
22031     * @see elm_map_route_source_get().
22032     *
22033     * @ingroup Map
22034     */
22035    EAPI void                  elm_map_route_source_set(Evas_Object *obj, Elm_Map_Route_Sources source) EINA_ARG_NONNULL(1);
22036
22037    /**
22038     * Get the current route source.
22039     *
22040     * @param obj The map object.
22041     * @return The source of the route service used by the map.
22042     *
22043     * @see elm_map_route_source_set() for details.
22044     *
22045     * @ingroup Map
22046     */
22047    EAPI Elm_Map_Route_Sources elm_map_route_source_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22048
22049    /**
22050     * Set the minimum zoom of the source.
22051     *
22052     * @param obj The map object.
22053     * @param zoom New minimum zoom value to be used.
22054     *
22055     * By default, it's 0.
22056     *
22057     * @ingroup Map
22058     */
22059    EAPI void                  elm_map_source_zoom_min_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
22060
22061    /**
22062     * Get the minimum zoom of the source.
22063     *
22064     * @param obj The map object.
22065     * @return Returns the minimum zoom of the source.
22066     *
22067     * @see elm_map_source_zoom_min_set() for details.
22068     *
22069     * @ingroup Map
22070     */
22071    EAPI int                   elm_map_source_zoom_min_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22072
22073    /**
22074     * Set the maximum zoom of the source.
22075     *
22076     * @param obj The map object.
22077     * @param zoom New maximum zoom value to be used.
22078     *
22079     * By default, it's 18.
22080     *
22081     * @ingroup Map
22082     */
22083    EAPI void                  elm_map_source_zoom_max_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
22084
22085    /**
22086     * Get the maximum zoom of the source.
22087     *
22088     * @param obj The map object.
22089     * @return Returns the maximum zoom of the source.
22090     *
22091     * @see elm_map_source_zoom_min_set() for details.
22092     *
22093     * @ingroup Map
22094     */
22095    EAPI int                   elm_map_source_zoom_max_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22096
22097    /**
22098     * Set the user agent used by the map object to access routing services.
22099     *
22100     * @param obj The map object.
22101     * @param user_agent The user agent to be used by the map.
22102     *
22103     * User agent is a client application implementing a network protocol used
22104     * in communications within a client–server distributed computing system
22105     *
22106     * The @p user_agent identification string will transmitted in a header
22107     * field @c User-Agent.
22108     *
22109     * @see elm_map_user_agent_get()
22110     *
22111     * @ingroup Map
22112     */
22113    EAPI void                  elm_map_user_agent_set(Evas_Object *obj, const char *user_agent) EINA_ARG_NONNULL(1, 2);
22114
22115    /**
22116     * Get the user agent used by the map object.
22117     *
22118     * @param obj The map object.
22119     * @return The user agent identification string used by the map.
22120     *
22121     * @see elm_map_user_agent_set() for details.
22122     *
22123     * @ingroup Map
22124     */
22125    EAPI const char           *elm_map_user_agent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22126
22127    /**
22128     * Add a new route to the map object.
22129     *
22130     * @param obj The map object.
22131     * @param type The type of transport to be considered when tracing a route.
22132     * @param method The routing method, what should be priorized.
22133     * @param flon The start longitude.
22134     * @param flat The start latitude.
22135     * @param tlon The destination longitude.
22136     * @param tlat The destination latitude.
22137     *
22138     * @return The created route or @c NULL upon failure.
22139     *
22140     * A route will be traced by point on coordinates (@p flat, @p flon)
22141     * to point on coordinates (@p tlat, @p tlon), using the route service
22142     * set with elm_map_route_source_set().
22143     *
22144     * It will take @p type on consideration to define the route,
22145     * depending if the user will be walking or driving, the route may vary.
22146     * One of #ELM_MAP_ROUTE_TYPE_MOTOCAR, #ELM_MAP_ROUTE_TYPE_BICYCLE, or
22147     * #ELM_MAP_ROUTE_TYPE_FOOT need to be used.
22148     *
22149     * Another parameter is what the route should priorize, the minor distance
22150     * or the less time to be spend on the route. So @p method should be one
22151     * of #ELM_MAP_ROUTE_METHOD_SHORTEST or #ELM_MAP_ROUTE_METHOD_FASTEST.
22152     *
22153     * Routes created with this method can be deleted with
22154     * elm_map_route_remove(), colored with elm_map_route_color_set(),
22155     * and distance can be get with elm_map_route_distance_get().
22156     *
22157     * @see elm_map_route_remove()
22158     * @see elm_map_route_color_set()
22159     * @see elm_map_route_distance_get()
22160     * @see elm_map_route_source_set()
22161     *
22162     * @ingroup Map
22163     */
22164    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);
22165
22166    /**
22167     * Remove a route from the map.
22168     *
22169     * @param route The route to remove.
22170     *
22171     * @see elm_map_route_add()
22172     *
22173     * @ingroup Map
22174     */
22175    EAPI void                  elm_map_route_remove(Elm_Map_Route *route) EINA_ARG_NONNULL(1);
22176
22177    /**
22178     * Set the route color.
22179     *
22180     * @param route The route object.
22181     * @param r Red channel value, from 0 to 255.
22182     * @param g Green channel value, from 0 to 255.
22183     * @param b Blue channel value, from 0 to 255.
22184     * @param a Alpha channel value, from 0 to 255.
22185     *
22186     * It uses an additive color model, so each color channel represents
22187     * how much of each primary colors must to be used. 0 represents
22188     * ausence of this color, so if all of the three are set to 0,
22189     * the color will be black.
22190     *
22191     * These component values should be integers in the range 0 to 255,
22192     * (single 8-bit byte).
22193     *
22194     * This sets the color used for the route. By default, it is set to
22195     * solid red (r = 255, g = 0, b = 0, a = 255).
22196     *
22197     * For alpha channel, 0 represents completely transparent, and 255, opaque.
22198     *
22199     * @see elm_map_route_color_get()
22200     *
22201     * @ingroup Map
22202     */
22203    EAPI void                  elm_map_route_color_set(Elm_Map_Route *route, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
22204
22205    /**
22206     * Get the route color.
22207     *
22208     * @param route The route object.
22209     * @param r Pointer where to store the red channel value.
22210     * @param g Pointer where to store the green channel value.
22211     * @param b Pointer where to store the blue channel value.
22212     * @param a Pointer where to store the alpha channel value.
22213     *
22214     * @see elm_map_route_color_set() for details.
22215     *
22216     * @ingroup Map
22217     */
22218    EAPI void                  elm_map_route_color_get(const Elm_Map_Route *route, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
22219
22220    /**
22221     * Get the route distance in kilometers.
22222     *
22223     * @param route The route object.
22224     * @return The distance of route (unit : km).
22225     *
22226     * @ingroup Map
22227     */
22228    EAPI double                elm_map_route_distance_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
22229
22230    /**
22231     * Get the information of route nodes.
22232     *
22233     * @param route The route object.
22234     * @return Returns a string with the nodes of route.
22235     *
22236     * @ingroup Map
22237     */
22238    EAPI const char           *elm_map_route_node_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
22239
22240    /**
22241     * Get the information of route waypoint.
22242     *
22243     * @param route the route object.
22244     * @return Returns a string with information about waypoint of route.
22245     *
22246     * @ingroup Map
22247     */
22248    EAPI const char           *elm_map_route_waypoint_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
22249
22250    /**
22251     * Get the address of the name.
22252     *
22253     * @param name The name handle.
22254     * @return Returns the address string of @p name.
22255     *
22256     * This gets the coordinates of the @p name, created with one of the
22257     * conversion functions.
22258     *
22259     * @see elm_map_utils_convert_name_into_coord()
22260     * @see elm_map_utils_convert_coord_into_name()
22261     *
22262     * @ingroup Map
22263     */
22264    EAPI const char           *elm_map_name_address_get(const Elm_Map_Name *name) EINA_ARG_NONNULL(1);
22265
22266    /**
22267     * Get the current coordinates of the name.
22268     *
22269     * @param name The name handle.
22270     * @param lat Pointer where to store the latitude.
22271     * @param lon Pointer where to store The longitude.
22272     *
22273     * This gets the coordinates of the @p name, created with one of the
22274     * conversion functions.
22275     *
22276     * @see elm_map_utils_convert_name_into_coord()
22277     * @see elm_map_utils_convert_coord_into_name()
22278     *
22279     * @ingroup Map
22280     */
22281    EAPI void                  elm_map_name_region_get(const Elm_Map_Name *name, double *lon, double *lat) EINA_ARG_NONNULL(1);
22282
22283    /**
22284     * Remove a name from the map.
22285     *
22286     * @param name The name to remove.
22287     *
22288     * Basically the struct handled by @p name will be freed, so convertions
22289     * between address and coordinates will be lost.
22290     *
22291     * @see elm_map_utils_convert_name_into_coord()
22292     * @see elm_map_utils_convert_coord_into_name()
22293     *
22294     * @ingroup Map
22295     */
22296    EAPI void                  elm_map_name_remove(Elm_Map_Name *name) EINA_ARG_NONNULL(1);
22297
22298    /**
22299     * Rotate the map.
22300     *
22301     * @param obj The map object.
22302     * @param degree Angle from 0.0 to 360.0 to rotate arount Z axis.
22303     * @param cx Rotation's center horizontal position.
22304     * @param cy Rotation's center vertical position.
22305     *
22306     * @see elm_map_rotate_get()
22307     *
22308     * @ingroup Map
22309     */
22310    EAPI void                  elm_map_rotate_set(Evas_Object *obj, double degree, Evas_Coord cx, Evas_Coord cy) EINA_ARG_NONNULL(1);
22311
22312    /**
22313     * Get the rotate degree of the map
22314     *
22315     * @param obj The map object
22316     * @param degree Pointer where to store degrees from 0.0 to 360.0
22317     * to rotate arount Z axis.
22318     * @param cx Pointer where to store rotation's center horizontal position.
22319     * @param cy Pointer where to store rotation's center vertical position.
22320     *
22321     * @see elm_map_rotate_set() to set map rotation.
22322     *
22323     * @ingroup Map
22324     */
22325    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);
22326
22327    /**
22328     * Enable or disable mouse wheel to be used to zoom in / out the map.
22329     *
22330     * @param obj The map object.
22331     * @param disabled Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE
22332     * to enable it.
22333     *
22334     * Mouse wheel can be used for the user to zoom in or zoom out the map.
22335     *
22336     * It's disabled by default.
22337     *
22338     * @see elm_map_wheel_disabled_get()
22339     *
22340     * @ingroup Map
22341     */
22342    EAPI void                  elm_map_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
22343
22344    /**
22345     * Get a value whether mouse wheel is enabled or not.
22346     *
22347     * @param obj The map object.
22348     * @return @c EINA_TRUE means map is disabled. @c EINA_FALSE indicates
22349     * it is enabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
22350     *
22351     * Mouse wheel can be used for the user to zoom in or zoom out the map.
22352     *
22353     * @see elm_map_wheel_disabled_set() for details.
22354     *
22355     * @ingroup Map
22356     */
22357    EAPI Eina_Bool             elm_map_wheel_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22358
22359 #ifdef ELM_EMAP
22360    /**
22361     * Add a track on the map
22362     *
22363     * @param obj The map object.
22364     * @param emap The emap route object.
22365     * @return The route object. This is an elm object of type Route.
22366     *
22367     * @see elm_route_add() for details.
22368     *
22369     * @ingroup Map
22370     */
22371    EAPI Evas_Object          *elm_map_track_add(Evas_Object *obj, EMap_Route *emap) EINA_ARG_NONNULL(1);
22372 #endif
22373
22374    /**
22375     * Remove a track from the map
22376     *
22377     * @param obj The map object.
22378     * @param route The track to remove.
22379     *
22380     * @ingroup Map
22381     */
22382    EAPI void                  elm_map_track_remove(Evas_Object *obj, Evas_Object *route) EINA_ARG_NONNULL(1);
22383
22384    /**
22385     * @}
22386     */
22387
22388    /* Route */
22389    EAPI Evas_Object *elm_route_add(Evas_Object *parent);
22390 #ifdef ELM_EMAP
22391    EAPI void elm_route_emap_set(Evas_Object *obj, EMap_Route *emap);
22392 #endif
22393    EAPI double elm_route_lon_min_get(Evas_Object *obj);
22394    EAPI double elm_route_lat_min_get(Evas_Object *obj);
22395    EAPI double elm_route_lon_max_get(Evas_Object *obj);
22396    EAPI double elm_route_lat_max_get(Evas_Object *obj);
22397
22398
22399    /**
22400     * @defgroup Panel Panel
22401     *
22402     * @image html img/widget/panel/preview-00.png
22403     * @image latex img/widget/panel/preview-00.eps
22404     *
22405     * @brief A panel is a type of animated container that contains subobjects.
22406     * It can be expanded or contracted by clicking the button on it's edge.
22407     *
22408     * Orientations are as follows:
22409     * @li ELM_PANEL_ORIENT_TOP
22410     * @li ELM_PANEL_ORIENT_LEFT
22411     * @li ELM_PANEL_ORIENT_RIGHT
22412     *
22413     * @ref tutorial_panel shows one way to use this widget.
22414     * @{
22415     */
22416    typedef enum _Elm_Panel_Orient
22417      {
22418         ELM_PANEL_ORIENT_TOP, /**< Panel (dis)appears from the top */
22419         ELM_PANEL_ORIENT_BOTTOM, /**< Not implemented */
22420         ELM_PANEL_ORIENT_LEFT, /**< Panel (dis)appears from the left */
22421         ELM_PANEL_ORIENT_RIGHT, /**< Panel (dis)appears from the right */
22422      } Elm_Panel_Orient;
22423    /**
22424     * @brief Adds a panel object
22425     *
22426     * @param parent The parent object
22427     *
22428     * @return The panel object, or NULL on failure
22429     */
22430    EAPI Evas_Object          *elm_panel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22431    /**
22432     * @brief Sets the orientation of the panel
22433     *
22434     * @param parent The parent object
22435     * @param orient The panel orientation. Can be one of the following:
22436     * @li ELM_PANEL_ORIENT_TOP
22437     * @li ELM_PANEL_ORIENT_LEFT
22438     * @li ELM_PANEL_ORIENT_RIGHT
22439     *
22440     * Sets from where the panel will (dis)appear.
22441     */
22442    EAPI void                  elm_panel_orient_set(Evas_Object *obj, Elm_Panel_Orient orient) EINA_ARG_NONNULL(1);
22443    /**
22444     * @brief Get the orientation of the panel.
22445     *
22446     * @param obj The panel object
22447     * @return The Elm_Panel_Orient, or ELM_PANEL_ORIENT_LEFT on failure.
22448     */
22449    EAPI Elm_Panel_Orient      elm_panel_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22450    /**
22451     * @brief Set the content of the panel.
22452     *
22453     * @param obj The panel object
22454     * @param content The panel content
22455     *
22456     * Once the content object is set, a previously set one will be deleted.
22457     * If you want to keep that old content object, use the
22458     * elm_panel_content_unset() function.
22459     */
22460    EAPI void                  elm_panel_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
22461    /**
22462     * @brief Get the content of the panel.
22463     *
22464     * @param obj The panel object
22465     * @return The content that is being used
22466     *
22467     * Return the content object which is set for this widget.
22468     *
22469     * @see elm_panel_content_set()
22470     */
22471    EAPI Evas_Object          *elm_panel_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22472    /**
22473     * @brief Unset the content of the panel.
22474     *
22475     * @param obj The panel object
22476     * @return The content that was being used
22477     *
22478     * Unparent and return the content object which was set for this widget.
22479     *
22480     * @see elm_panel_content_set()
22481     */
22482    EAPI Evas_Object          *elm_panel_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
22483    /**
22484     * @brief Set the state of the panel.
22485     *
22486     * @param obj The panel object
22487     * @param hidden If true, the panel will run the animation to contract
22488     */
22489    EAPI void                  elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden) EINA_ARG_NONNULL(1);
22490    /**
22491     * @brief Get the state of the panel.
22492     *
22493     * @param obj The panel object
22494     * @param hidden If true, the panel is in the "hide" state
22495     */
22496    EAPI Eina_Bool             elm_panel_hidden_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22497    /**
22498     * @brief Toggle the hidden state of the panel from code
22499     *
22500     * @param obj The panel object
22501     */
22502    EAPI void                  elm_panel_toggle(Evas_Object *obj) EINA_ARG_NONNULL(1);
22503    /**
22504     * @}
22505     */
22506
22507    /**
22508     * @defgroup Panes Panes
22509     * @ingroup Elementary
22510     *
22511     * @image html img/widget/panes/preview-00.png
22512     * @image latex img/widget/panes/preview-00.eps width=\textwidth
22513     *
22514     * @image html img/panes.png
22515     * @image latex img/panes.eps width=\textwidth
22516     *
22517     * The panes adds a dragable bar between two contents. When dragged
22518     * this bar will resize contents size.
22519     *
22520     * Panes can be displayed vertically or horizontally, and contents
22521     * size proportion can be customized (homogeneous by default).
22522     *
22523     * Smart callbacks one can listen to:
22524     * - "press" - The panes has been pressed (button wasn't released yet).
22525     * - "unpressed" - The panes was released after being pressed.
22526     * - "clicked" - The panes has been clicked>
22527     * - "clicked,double" - The panes has been double clicked
22528     *
22529     * Available styles for it:
22530     * - @c "default"
22531     *
22532     * Here is an example on its usage:
22533     * @li @ref panes_example
22534     */
22535
22536    /**
22537     * @addtogroup Panes
22538     * @{
22539     */
22540
22541    /**
22542     * Add a new panes widget to the given parent Elementary
22543     * (container) object.
22544     *
22545     * @param parent The parent object.
22546     * @return a new panes widget handle or @c NULL, on errors.
22547     *
22548     * This function inserts a new panes widget on the canvas.
22549     *
22550     * @ingroup Panes
22551     */
22552    EAPI Evas_Object          *elm_panes_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22553
22554    /**
22555     * Set the left content of the panes widget.
22556     *
22557     * @param obj The panes object.
22558     * @param content The new left content object.
22559     *
22560     * Once the content object is set, a previously set one will be deleted.
22561     * If you want to keep that old content object, use the
22562     * elm_panes_content_left_unset() function.
22563     *
22564     * If panes is displayed vertically, left content will be displayed at
22565     * top.
22566     *
22567     * @see elm_panes_content_left_get()
22568     * @see elm_panes_content_right_set() to set content on the other side.
22569     *
22570     * @ingroup Panes
22571     */
22572    EAPI void                  elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
22573
22574    /**
22575     * Set the right content of the panes widget.
22576     *
22577     * @param obj The panes object.
22578     * @param content The new right content object.
22579     *
22580     * Once the content object is set, a previously set one will be deleted.
22581     * If you want to keep that old content object, use the
22582     * elm_panes_content_right_unset() function.
22583     *
22584     * If panes is displayed vertically, left content will be displayed at
22585     * bottom.
22586     *
22587     * @see elm_panes_content_right_get()
22588     * @see elm_panes_content_left_set() to set content on the other side.
22589     *
22590     * @ingroup Panes
22591     */
22592    EAPI void                  elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
22593
22594    /**
22595     * Get the left content of the panes.
22596     *
22597     * @param obj The panes object.
22598     * @return The left content object that is being used.
22599     *
22600     * Return the left content object which is set for this widget.
22601     *
22602     * @see elm_panes_content_left_set() for details.
22603     *
22604     * @ingroup Panes
22605     */
22606    EAPI Evas_Object          *elm_panes_content_left_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22607
22608    /**
22609     * Get the right content of the panes.
22610     *
22611     * @param obj The panes object
22612     * @return The right content object that is being used
22613     *
22614     * Return the right content object which is set for this widget.
22615     *
22616     * @see elm_panes_content_right_set() for details.
22617     *
22618     * @ingroup Panes
22619     */
22620    EAPI Evas_Object          *elm_panes_content_right_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22621
22622    /**
22623     * Unset the left content used for the panes.
22624     *
22625     * @param obj The panes object.
22626     * @return The left content object that was being used.
22627     *
22628     * Unparent and return the left content object which was set for this widget.
22629     *
22630     * @see elm_panes_content_left_set() for details.
22631     * @see elm_panes_content_left_get().
22632     *
22633     * @ingroup Panes
22634     */
22635    EAPI Evas_Object          *elm_panes_content_left_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
22636
22637    /**
22638     * Unset the right content used for the panes.
22639     *
22640     * @param obj The panes object.
22641     * @return The right content object that was being used.
22642     *
22643     * Unparent and return the right content object which was set for this
22644     * widget.
22645     *
22646     * @see elm_panes_content_right_set() for details.
22647     * @see elm_panes_content_right_get().
22648     *
22649     * @ingroup Panes
22650     */
22651    EAPI Evas_Object          *elm_panes_content_right_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
22652
22653    /**
22654     * Get the size proportion of panes widget's left side.
22655     *
22656     * @param obj The panes object.
22657     * @return float value between 0.0 and 1.0 representing size proportion
22658     * of left side.
22659     *
22660     * @see elm_panes_content_left_size_set() for more details.
22661     *
22662     * @ingroup Panes
22663     */
22664    EAPI double                elm_panes_content_left_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22665
22666    /**
22667     * Set the size proportion of panes widget's left side.
22668     *
22669     * @param obj The panes object.
22670     * @param size Value between 0.0 and 1.0 representing size proportion
22671     * of left side.
22672     *
22673     * By default it's homogeneous, i.e., both sides have the same size.
22674     *
22675     * If something different is required, it can be set with this function.
22676     * For example, if the left content should be displayed over
22677     * 75% of the panes size, @p size should be passed as @c 0.75.
22678     * This way, right content will be resized to 25% of panes size.
22679     *
22680     * If displayed vertically, left content is displayed at top, and
22681     * right content at bottom.
22682     *
22683     * @note This proportion will change when user drags the panes bar.
22684     *
22685     * @see elm_panes_content_left_size_get()
22686     *
22687     * @ingroup Panes
22688     */
22689    EAPI void                  elm_panes_content_left_size_set(Evas_Object *obj, double size) EINA_ARG_NONNULL(1);
22690
22691   /**
22692    * Set the orientation of a given panes widget.
22693    *
22694    * @param obj The panes object.
22695    * @param horizontal Use @c EINA_TRUE to make @p obj to be
22696    * @b horizontal, @c EINA_FALSE to make it @b vertical.
22697    *
22698    * Use this function to change how your panes is to be
22699    * disposed: vertically or horizontally.
22700    *
22701    * By default it's displayed horizontally.
22702    *
22703    * @see elm_panes_horizontal_get()
22704    *
22705    * @ingroup Panes
22706    */
22707    EAPI void                  elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
22708
22709    /**
22710     * Retrieve the orientation of a given panes widget.
22711     *
22712     * @param obj The panes object.
22713     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
22714     * @c EINA_FALSE if it's @b vertical (and on errors).
22715     *
22716     * @see elm_panes_horizontal_set() for more details.
22717     *
22718     * @ingroup Panes
22719     */
22720    EAPI Eina_Bool             elm_panes_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22721
22722    /**
22723     * @}
22724     */
22725
22726    /**
22727     * @defgroup Flip Flip
22728     *
22729     * @image html img/widget/flip/preview-00.png
22730     * @image latex img/widget/flip/preview-00.eps
22731     *
22732     * This widget holds 2 content objects(Evas_Object): one on the front and one
22733     * on the back. It allows you to flip from front to back and vice-versa using
22734     * various animations.
22735     *
22736     * If either the front or back contents are not set the flip will treat that
22737     * as transparent. So if you wore to set the front content but not the back,
22738     * and then call elm_flip_go() you would see whatever is below the flip.
22739     *
22740     * For a list of supported animations see elm_flip_go().
22741     *
22742     * Signals that you can add callbacks for are:
22743     * "animate,begin" - when a flip animation was started
22744     * "animate,done" - when a flip animation is finished
22745     *
22746     * @ref tutorial_flip show how to use most of the API.
22747     *
22748     * @{
22749     */
22750    typedef enum _Elm_Flip_Mode
22751      {
22752         ELM_FLIP_ROTATE_Y_CENTER_AXIS,
22753         ELM_FLIP_ROTATE_X_CENTER_AXIS,
22754         ELM_FLIP_ROTATE_XZ_CENTER_AXIS,
22755         ELM_FLIP_ROTATE_YZ_CENTER_AXIS,
22756         ELM_FLIP_CUBE_LEFT,
22757         ELM_FLIP_CUBE_RIGHT,
22758         ELM_FLIP_CUBE_UP,
22759         ELM_FLIP_CUBE_DOWN,
22760         ELM_FLIP_PAGE_LEFT,
22761         ELM_FLIP_PAGE_RIGHT,
22762         ELM_FLIP_PAGE_UP,
22763         ELM_FLIP_PAGE_DOWN
22764      } Elm_Flip_Mode;
22765    typedef enum _Elm_Flip_Interaction
22766      {
22767         ELM_FLIP_INTERACTION_NONE,
22768         ELM_FLIP_INTERACTION_ROTATE,
22769         ELM_FLIP_INTERACTION_CUBE,
22770         ELM_FLIP_INTERACTION_PAGE
22771      } Elm_Flip_Interaction;
22772    typedef enum _Elm_Flip_Direction
22773      {
22774         ELM_FLIP_DIRECTION_UP, /**< Allows interaction with the top of the widget */
22775         ELM_FLIP_DIRECTION_DOWN, /**< Allows interaction with the bottom of the widget */
22776         ELM_FLIP_DIRECTION_LEFT, /**< Allows interaction with the left portion of the widget */
22777         ELM_FLIP_DIRECTION_RIGHT /**< Allows interaction with the right portion of the widget */
22778      } Elm_Flip_Direction;
22779    /**
22780     * @brief Add a new flip to the parent
22781     *
22782     * @param parent The parent object
22783     * @return The new object or NULL if it cannot be created
22784     */
22785    EAPI Evas_Object *elm_flip_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22786    /**
22787     * @brief Set the front content of the flip widget.
22788     *
22789     * @param obj The flip object
22790     * @param content The new front content object
22791     *
22792     * Once the content object is set, a previously set one will be deleted.
22793     * If you want to keep that old content object, use the
22794     * elm_flip_content_front_unset() function.
22795     */
22796    EAPI void         elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
22797    /**
22798     * @brief Set the back content of the flip widget.
22799     *
22800     * @param obj The flip object
22801     * @param content The new back content object
22802     *
22803     * Once the content object is set, a previously set one will be deleted.
22804     * If you want to keep that old content object, use the
22805     * elm_flip_content_back_unset() function.
22806     */
22807    EAPI void         elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
22808    /**
22809     * @brief Get the front content used for the flip
22810     *
22811     * @param obj The flip object
22812     * @return The front content object that is being used
22813     *
22814     * Return the front content object which is set for this widget.
22815     */
22816    EAPI Evas_Object *elm_flip_content_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22817    /**
22818     * @brief Get the back content used for the flip
22819     *
22820     * @param obj The flip object
22821     * @return The back content object that is being used
22822     *
22823     * Return the back content object which is set for this widget.
22824     */
22825    EAPI Evas_Object *elm_flip_content_back_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22826    /**
22827     * @brief Unset the front content used for the flip
22828     *
22829     * @param obj The flip object
22830     * @return The front content object that was being used
22831     *
22832     * Unparent and return the front content object which was set for this widget.
22833     */
22834    EAPI Evas_Object *elm_flip_content_front_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
22835    /**
22836     * @brief Unset the back content used for the flip
22837     *
22838     * @param obj The flip object
22839     * @return The back content object that was being used
22840     *
22841     * Unparent and return the back content object which was set for this widget.
22842     */
22843    EAPI Evas_Object *elm_flip_content_back_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
22844    /**
22845     * @brief Get flip front visibility state
22846     *
22847     * @param obj The flip objct
22848     * @return EINA_TRUE if front front is showing, EINA_FALSE if the back is
22849     * showing.
22850     */
22851    EAPI Eina_Bool    elm_flip_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22852    /**
22853     * @brief Set flip perspective
22854     *
22855     * @param obj The flip object
22856     * @param foc The coordinate to set the focus on
22857     * @param x The X coordinate
22858     * @param y The Y coordinate
22859     *
22860     * @warning This function currently does nothing.
22861     */
22862    EAPI void         elm_flip_perspective_set(Evas_Object *obj, Evas_Coord foc, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
22863    /**
22864     * @brief Runs the flip animation
22865     *
22866     * @param obj The flip object
22867     * @param mode The mode type
22868     *
22869     * Flips the front and back contents using the @p mode animation. This
22870     * efectively hides the currently visible content and shows the hidden one.
22871     *
22872     * There a number of possible animations to use for the flipping:
22873     * @li ELM_FLIP_ROTATE_X_CENTER_AXIS - Rotate the currently visible content
22874     * around a horizontal axis in the middle of its height, the other content
22875     * is shown as the other side of the flip.
22876     * @li ELM_FLIP_ROTATE_Y_CENTER_AXIS - Rotate the currently visible content
22877     * around a vertical axis in the middle of its width, the other content is
22878     * shown as the other side of the flip.
22879     * @li ELM_FLIP_ROTATE_XZ_CENTER_AXIS - Rotate the currently visible content
22880     * around a diagonal axis in the middle of its width, the other content is
22881     * shown as the other side of the flip.
22882     * @li ELM_FLIP_ROTATE_YZ_CENTER_AXIS - Rotate the currently visible content
22883     * around a diagonal axis in the middle of its height, the other content is
22884     * shown as the other side of the flip.
22885     * @li ELM_FLIP_CUBE_LEFT - Rotate the currently visible content to the left
22886     * as if the flip was a cube, the other content is show as the right face of
22887     * the cube.
22888     * @li ELM_FLIP_CUBE_RIGHT - Rotate the currently visible content to the
22889     * right as if the flip was a cube, the other content is show as the left
22890     * face of the cube.
22891     * @li ELM_FLIP_CUBE_UP - Rotate the currently visible content up as if the
22892     * flip was a cube, the other content is show as the bottom face of the cube.
22893     * @li ELM_FLIP_CUBE_DOWN - Rotate the currently visible content down as if
22894     * the flip was a cube, the other content is show as the upper face of the
22895     * cube.
22896     * @li ELM_FLIP_PAGE_LEFT - Move the currently visible content to the left as
22897     * if the flip was a book, the other content is shown as the page below that.
22898     * @li ELM_FLIP_PAGE_RIGHT - Move the currently visible content to the right
22899     * as if the flip was a book, the other content is shown as the page below
22900     * that.
22901     * @li ELM_FLIP_PAGE_UP - Move the currently visible content up as if the
22902     * flip was a book, the other content is shown as the page below that.
22903     * @li ELM_FLIP_PAGE_DOWN - Move the currently visible content down as if the
22904     * flip was a book, the other content is shown as the page below that.
22905     *
22906     * @image html elm_flip.png
22907     * @image latex elm_flip.eps width=\textwidth
22908     */
22909    EAPI void         elm_flip_go(Evas_Object *obj, Elm_Flip_Mode mode) EINA_ARG_NONNULL(1);
22910    /**
22911     * @brief Set the interactive flip mode
22912     *
22913     * @param obj The flip object
22914     * @param mode The interactive flip mode to use
22915     *
22916     * This sets if the flip should be interactive (allow user to click and
22917     * drag a side of the flip to reveal the back page and cause it to flip).
22918     * By default a flip is not interactive. You may also need to set which
22919     * sides of the flip are "active" for flipping and how much space they use
22920     * (a minimum of a finger size) with elm_flip_interacton_direction_enabled_set()
22921     * and elm_flip_interacton_direction_hitsize_set()
22922     *
22923     * The four avilable mode of interaction are:
22924     * @li ELM_FLIP_INTERACTION_NONE - No interaction is allowed
22925     * @li ELM_FLIP_INTERACTION_ROTATE - Interaction will cause rotate animation
22926     * @li ELM_FLIP_INTERACTION_CUBE - Interaction will cause cube animation
22927     * @li ELM_FLIP_INTERACTION_PAGE - Interaction will cause page animation
22928     *
22929     * @note ELM_FLIP_INTERACTION_ROTATE won't cause
22930     * ELM_FLIP_ROTATE_XZ_CENTER_AXIS or ELM_FLIP_ROTATE_YZ_CENTER_AXIS to
22931     * happen, those can only be acheived with elm_flip_go();
22932     */
22933    EAPI void         elm_flip_interaction_set(Evas_Object *obj, Elm_Flip_Interaction mode);
22934    /**
22935     * @brief Get the interactive flip mode
22936     *
22937     * @param obj The flip object
22938     * @return The interactive flip mode
22939     *
22940     * Returns the interactive flip mode set by elm_flip_interaction_set()
22941     */
22942    EAPI Elm_Flip_Interaction elm_flip_interaction_get(const Evas_Object *obj);
22943    /**
22944     * @brief Set which directions of the flip respond to interactive flip
22945     *
22946     * @param obj The flip object
22947     * @param dir The direction to change
22948     * @param enabled If that direction is enabled or not
22949     *
22950     * By default all directions are disabled, so you may want to enable the
22951     * desired directions for flipping if you need interactive flipping. You must
22952     * call this function once for each direction that should be enabled.
22953     *
22954     * @see elm_flip_interaction_set()
22955     */
22956    EAPI void         elm_flip_interacton_direction_enabled_set(Evas_Object *obj, Elm_Flip_Direction dir, Eina_Bool enabled);
22957    /**
22958     * @brief Get the enabled state of that flip direction
22959     *
22960     * @param obj The flip object
22961     * @param dir The direction to check
22962     * @return If that direction is enabled or not
22963     *
22964     * Gets the enabled state set by elm_flip_interacton_direction_enabled_set()
22965     *
22966     * @see elm_flip_interaction_set()
22967     */
22968    EAPI Eina_Bool    elm_flip_interacton_direction_enabled_get(Evas_Object *obj, Elm_Flip_Direction dir);
22969    /**
22970     * @brief Set the amount of the flip that is sensitive to interactive flip
22971     *
22972     * @param obj The flip object
22973     * @param dir The direction to modify
22974     * @param hitsize The amount of that dimension (0.0 to 1.0) to use
22975     *
22976     * Set the amount of the flip that is sensitive to interactive flip, with 0
22977     * representing no area in the flip and 1 representing the entire flip. There
22978     * is however a consideration to be made in that the area will never be
22979     * smaller than the finger size set(as set in your Elementary configuration).
22980     *
22981     * @see elm_flip_interaction_set()
22982     */
22983    EAPI void         elm_flip_interacton_direction_hitsize_set(Evas_Object *obj, Elm_Flip_Direction dir, double hitsize);
22984    /**
22985     * @brief Get the amount of the flip that is sensitive to interactive flip
22986     *
22987     * @param obj The flip object
22988     * @param dir The direction to check
22989     * @return The size set for that direction
22990     *
22991     * Returns the amount os sensitive area set by
22992     * elm_flip_interacton_direction_hitsize_set().
22993     */
22994    EAPI double       elm_flip_interacton_direction_hitsize_get(Evas_Object *obj, Elm_Flip_Direction dir);
22995    /**
22996     * @}
22997     */
22998
22999    /* scrolledentry */
23000    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
23001    EINA_DEPRECATED EAPI void         elm_scrolled_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
23002    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23003    EINA_DEPRECATED EAPI void         elm_scrolled_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
23004    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23005    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
23006    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23007    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
23008    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23009    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23010    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
23011    EINA_DEPRECATED EAPI void         elm_scrolled_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
23012    EINA_DEPRECATED EAPI void         elm_scrolled_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
23013    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23014    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
23015    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
23016    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
23017    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
23018    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
23019    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
23020    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
23021    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
23022    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
23023    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
23024    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
23025    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
23026    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23027    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23028    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23029    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
23030    EINA_DEPRECATED EAPI int          elm_scrolled_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23031    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
23032    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
23033    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
23034    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
23035    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);
23036    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
23037    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23038    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);
23039    EINA_DEPRECATED EAPI void         elm_scrolled_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
23040    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);
23041    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1, 2);
23042    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23043    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
23044    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
23045    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1, 2);
23046    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23047    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
23048    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
23049    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);
23050    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);
23051    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);
23052    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);
23053    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);
23054    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);
23055    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
23056    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
23057    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
23058    EINA_DEPRECATED EAPI void         elm_scrolled_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
23059    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23060    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
23061    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cnp_textonly_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
23062
23063    /**
23064     * @defgroup Conformant Conformant
23065     * @ingroup Elementary
23066     *
23067     * @image html img/widget/conformant/preview-00.png
23068     * @image latex img/widget/conformant/preview-00.eps width=\textwidth
23069     *
23070     * @image html img/conformant.png
23071     * @image latex img/conformant.eps width=\textwidth
23072     *
23073     * The aim is to provide a widget that can be used in elementary apps to
23074     * account for space taken up by the indicator, virtual keypad & softkey
23075     * windows when running the illume2 module of E17.
23076     *
23077     * So conformant content will be sized and positioned considering the
23078     * space required for such stuff, and when they popup, as a keyboard
23079     * shows when an entry is selected, conformant content won't change.
23080     *
23081     * Available styles for it:
23082     * - @c "default"
23083     *
23084     * See how to use this widget in this example:
23085     * @ref conformant_example
23086     */
23087
23088    /**
23089     * @addtogroup Conformant
23090     * @{
23091     */
23092
23093    /**
23094     * Add a new conformant widget to the given parent Elementary
23095     * (container) object.
23096     *
23097     * @param parent The parent object.
23098     * @return A new conformant widget handle or @c NULL, on errors.
23099     *
23100     * This function inserts a new conformant widget on the canvas.
23101     *
23102     * @ingroup Conformant
23103     */
23104    EAPI Evas_Object *elm_conformant_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
23105
23106    /**
23107     * Set the content of the conformant widget.
23108     *
23109     * @param obj The conformant object.
23110     * @param content The content to be displayed by the conformant.
23111     *
23112     * Content will be sized and positioned considering the space required
23113     * to display a virtual keyboard. So it won't fill all the conformant
23114     * size. This way is possible to be sure that content won't resize
23115     * or be re-positioned after the keyboard is displayed.
23116     *
23117     * Once the content object is set, a previously set one will be deleted.
23118     * If you want to keep that old content object, use the
23119     * elm_conformat_content_unset() function.
23120     *
23121     * @see elm_conformant_content_unset()
23122     * @see elm_conformant_content_get()
23123     *
23124     * @ingroup Conformant
23125     */
23126    EAPI void         elm_conformant_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
23127
23128    /**
23129     * Get the content of the conformant widget.
23130     *
23131     * @param obj The conformant object.
23132     * @return The content that is being used.
23133     *
23134     * Return the content object which is set for this widget.
23135     * It won't be unparent from conformant. For that, use
23136     * elm_conformant_content_unset().
23137     *
23138     * @see elm_conformant_content_set() for more details.
23139     * @see elm_conformant_content_unset()
23140     *
23141     * @ingroup Conformant
23142     */
23143    EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23144
23145    /**
23146     * Unset the content of the conformant widget.
23147     *
23148     * @param obj The conformant object.
23149     * @return The content that was being used.
23150     *
23151     * Unparent and return the content object which was set for this widget.
23152     *
23153     * @see elm_conformant_content_set() for more details.
23154     *
23155     * @ingroup Conformant
23156     */
23157    EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
23158
23159    /**
23160     * Returns the Evas_Object that represents the content area.
23161     *
23162     * @param obj The conformant object.
23163     * @return The content area of the widget.
23164     *
23165     * @ingroup Conformant
23166     */
23167    EAPI Evas_Object *elm_conformant_content_area_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23168
23169    /**
23170     * @}
23171     */
23172
23173    /**
23174     * @defgroup Mapbuf Mapbuf
23175     * @ingroup Elementary
23176     *
23177     * @image html img/widget/mapbuf/preview-00.png
23178     * @image latex img/widget/mapbuf/preview-00.eps width=\textwidth
23179     *
23180     * This holds one content object and uses an Evas Map of transformation
23181     * points to be later used with this content. So the content will be
23182     * moved, resized, etc as a single image. So it will improve performance
23183     * when you have a complex interafce, with a lot of elements, and will
23184     * need to resize or move it frequently (the content object and its
23185     * children).
23186     *
23187     * See how to use this widget in this example:
23188     * @ref mapbuf_example
23189     */
23190
23191    /**
23192     * @addtogroup Mapbuf
23193     * @{
23194     */
23195
23196    /**
23197     * Add a new mapbuf widget to the given parent Elementary
23198     * (container) object.
23199     *
23200     * @param parent The parent object.
23201     * @return A new mapbuf widget handle or @c NULL, on errors.
23202     *
23203     * This function inserts a new mapbuf widget on the canvas.
23204     *
23205     * @ingroup Mapbuf
23206     */
23207    EAPI Evas_Object *elm_mapbuf_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
23208
23209    /**
23210     * Set the content of the mapbuf.
23211     *
23212     * @param obj The mapbuf object.
23213     * @param content The content that will be filled in this mapbuf object.
23214     *
23215     * Once the content object is set, a previously set one will be deleted.
23216     * If you want to keep that old content object, use the
23217     * elm_mapbuf_content_unset() function.
23218     *
23219     * To enable map, elm_mapbuf_enabled_set() should be used.
23220     *
23221     * @ingroup Mapbuf
23222     */
23223    EAPI void         elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
23224
23225    /**
23226     * Get the content of the mapbuf.
23227     *
23228     * @param obj The mapbuf object.
23229     * @return The content that is being used.
23230     *
23231     * Return the content object which is set for this widget.
23232     *
23233     * @see elm_mapbuf_content_set() for details.
23234     *
23235     * @ingroup Mapbuf
23236     */
23237    EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23238
23239    /**
23240     * Unset the content of the mapbuf.
23241     *
23242     * @param obj The mapbuf object.
23243     * @return The content that was being used.
23244     *
23245     * Unparent and return the content object which was set for this widget.
23246     *
23247     * @see elm_mapbuf_content_set() for details.
23248     *
23249     * @ingroup Mapbuf
23250     */
23251    EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
23252
23253    /**
23254     * Enable or disable the map.
23255     *
23256     * @param obj The mapbuf object.
23257     * @param enabled @c EINA_TRUE to enable map or @c EINA_FALSE to disable it.
23258     *
23259     * This enables the map that is set or disables it. On enable, the object
23260     * geometry will be saved, and the new geometry will change (position and
23261     * size) to reflect the map geometry set.
23262     *
23263     * Also, when enabled, alpha and smooth states will be used, so if the
23264     * content isn't solid, alpha should be enabled, for example, otherwise
23265     * a black retangle will fill the content.
23266     *
23267     * When disabled, the stored map will be freed and geometry prior to
23268     * enabling the map will be restored.
23269     *
23270     * It's disabled by default.
23271     *
23272     * @see elm_mapbuf_alpha_set()
23273     * @see elm_mapbuf_smooth_set()
23274     *
23275     * @ingroup Mapbuf
23276     */
23277    EAPI void         elm_mapbuf_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
23278
23279    /**
23280     * Get a value whether map is enabled or not.
23281     *
23282     * @param obj The mapbuf object.
23283     * @return @c EINA_TRUE means map is enabled. @c EINA_FALSE indicates
23284     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
23285     *
23286     * @see elm_mapbuf_enabled_set() for details.
23287     *
23288     * @ingroup Mapbuf
23289     */
23290    EAPI Eina_Bool    elm_mapbuf_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23291
23292    /**
23293     * Enable or disable smooth map rendering.
23294     *
23295     * @param obj The mapbuf object.
23296     * @param smooth @c EINA_TRUE to enable smooth map rendering or @c EINA_FALSE
23297     * to disable it.
23298     *
23299     * This sets smoothing for map rendering. If the object is a type that has
23300     * its own smoothing settings, then both the smooth settings for this object
23301     * and the map must be turned off.
23302     *
23303     * By default smooth maps are enabled.
23304     *
23305     * @ingroup Mapbuf
23306     */
23307    EAPI void         elm_mapbuf_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
23308
23309    /**
23310     * Get a value whether smooth map rendering is enabled or not.
23311     *
23312     * @param obj The mapbuf object.
23313     * @return @c EINA_TRUE means smooth map rendering is enabled. @c EINA_FALSE
23314     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
23315     *
23316     * @see elm_mapbuf_smooth_set() for details.
23317     *
23318     * @ingroup Mapbuf
23319     */
23320    EAPI Eina_Bool    elm_mapbuf_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23321
23322    /**
23323     * Set or unset alpha flag for map rendering.
23324     *
23325     * @param obj The mapbuf object.
23326     * @param alpha @c EINA_TRUE to enable alpha blending or @c EINA_FALSE
23327     * to disable it.
23328     *
23329     * This sets alpha flag for map rendering. If the object is a type that has
23330     * its own alpha settings, then this will take precedence. Only image objects
23331     * have this currently. It stops alpha blending of the map area, and is
23332     * useful if you know the object and/or all sub-objects is 100% solid.
23333     *
23334     * Alpha is enabled by default.
23335     *
23336     * @ingroup Mapbuf
23337     */
23338    EAPI void         elm_mapbuf_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
23339
23340    /**
23341     * Get a value whether alpha blending is enabled or not.
23342     *
23343     * @param obj The mapbuf object.
23344     * @return @c EINA_TRUE means alpha blending is enabled. @c EINA_FALSE
23345     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
23346     *
23347     * @see elm_mapbuf_alpha_set() for details.
23348     *
23349     * @ingroup Mapbuf
23350     */
23351    EAPI Eina_Bool    elm_mapbuf_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23352
23353    /**
23354     * @}
23355     */
23356
23357    /**
23358     * @defgroup Flipselector Flip Selector
23359     *
23360     * @image html img/widget/flipselector/preview-00.png
23361     * @image latex img/widget/flipselector/preview-00.eps
23362     *
23363     * A flip selector is a widget to show a set of @b text items, one
23364     * at a time, with the same sheet switching style as the @ref Clock
23365     * "clock" widget, when one changes the current displaying sheet
23366     * (thus, the "flip" in the name).
23367     *
23368     * User clicks to flip sheets which are @b held for some time will
23369     * make the flip selector to flip continuosly and automatically for
23370     * the user. The interval between flips will keep growing in time,
23371     * so that it helps the user to reach an item which is distant from
23372     * the current selection.
23373     *
23374     * Smart callbacks one can register to:
23375     * - @c "selected" - when the widget's selected text item is changed
23376     * - @c "overflowed" - when the widget's current selection is changed
23377     *   from the first item in its list to the last
23378     * - @c "underflowed" - when the widget's current selection is changed
23379     *   from the last item in its list to the first
23380     *
23381     * Available styles for it:
23382     * - @c "default"
23383     *
23384     * Here is an example on its usage:
23385     * @li @ref flipselector_example
23386     */
23387
23388    /**
23389     * @addtogroup Flipselector
23390     * @{
23391     */
23392
23393    typedef struct _Elm_Flipselector_Item Elm_Flipselector_Item; /**< Item handle for a flip selector widget. */
23394
23395    /**
23396     * Add a new flip selector widget to the given parent Elementary
23397     * (container) widget
23398     *
23399     * @param parent The parent object
23400     * @return a new flip selector widget handle or @c NULL, on errors
23401     *
23402     * This function inserts a new flip selector widget on the canvas.
23403     *
23404     * @ingroup Flipselector
23405     */
23406    EAPI Evas_Object               *elm_flipselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
23407
23408    /**
23409     * Programmatically select the next item of a flip selector widget
23410     *
23411     * @param obj The flipselector object
23412     *
23413     * @note The selection will be animated. Also, if it reaches the
23414     * end of its list of member items, it will continue with the first
23415     * one onwards.
23416     *
23417     * @ingroup Flipselector
23418     */
23419    EAPI void                       elm_flipselector_flip_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
23420
23421    /**
23422     * Programmatically select the previous item of a flip selector
23423     * widget
23424     *
23425     * @param obj The flipselector object
23426     *
23427     * @note The selection will be animated.  Also, if it reaches the
23428     * beginning of its list of member items, it will continue with the
23429     * last one backwards.
23430     *
23431     * @ingroup Flipselector
23432     */
23433    EAPI void                       elm_flipselector_flip_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
23434
23435    /**
23436     * Append a (text) item to a flip selector widget
23437     *
23438     * @param obj The flipselector object
23439     * @param label The (text) label of the new item
23440     * @param func Convenience callback function to take place when
23441     * item is selected
23442     * @param data Data passed to @p func, above
23443     * @return A handle to the item added or @c NULL, on errors
23444     *
23445     * The widget's list of labels to show will be appended with the
23446     * given value. If the user wishes so, a callback function pointer
23447     * can be passed, which will get called when this same item is
23448     * selected.
23449     *
23450     * @note The current selection @b won't be modified by appending an
23451     * element to the list.
23452     *
23453     * @note The maximum length of the text label is going to be
23454     * determined <b>by the widget's theme</b>. Strings larger than
23455     * that value are going to be @b truncated.
23456     *
23457     * @ingroup Flipselector
23458     */
23459    EAPI Elm_Flipselector_Item     *elm_flipselector_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
23460
23461    /**
23462     * Prepend a (text) item to a flip selector widget
23463     *
23464     * @param obj The flipselector object
23465     * @param label The (text) label of the new item
23466     * @param func Convenience callback function to take place when
23467     * item is selected
23468     * @param data Data passed to @p func, above
23469     * @return A handle to the item added or @c NULL, on errors
23470     *
23471     * The widget's list of labels to show will be prepended with the
23472     * given value. If the user wishes so, a callback function pointer
23473     * can be passed, which will get called when this same item is
23474     * selected.
23475     *
23476     * @note The current selection @b won't be modified by prepending
23477     * an element to the list.
23478     *
23479     * @note The maximum length of the text label is going to be
23480     * determined <b>by the widget's theme</b>. Strings larger than
23481     * that value are going to be @b truncated.
23482     *
23483     * @ingroup Flipselector
23484     */
23485    EAPI Elm_Flipselector_Item     *elm_flipselector_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
23486
23487    /**
23488     * Get the internal list of items in a given flip selector widget.
23489     *
23490     * @param obj The flipselector object
23491     * @return The list of items (#Elm_Flipselector_Item as data) or
23492     * @c NULL on errors.
23493     *
23494     * This list is @b not to be modified in any way and must not be
23495     * freed. Use the list members with functions like
23496     * elm_flipselector_item_label_set(),
23497     * elm_flipselector_item_label_get(),
23498     * elm_flipselector_item_del(),
23499     * elm_flipselector_item_selected_get(),
23500     * elm_flipselector_item_selected_set().
23501     *
23502     * @warning This list is only valid until @p obj object's internal
23503     * items list is changed. It should be fetched again with another
23504     * call to this function when changes happen.
23505     *
23506     * @ingroup Flipselector
23507     */
23508    EAPI const Eina_List           *elm_flipselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23509
23510    /**
23511     * Get the first item in the given flip selector widget's list of
23512     * items.
23513     *
23514     * @param obj The flipselector object
23515     * @return The first item or @c NULL, if it has no items (and on
23516     * errors)
23517     *
23518     * @see elm_flipselector_item_append()
23519     * @see elm_flipselector_last_item_get()
23520     *
23521     * @ingroup Flipselector
23522     */
23523    EAPI Elm_Flipselector_Item     *elm_flipselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23524
23525    /**
23526     * Get the last item in the given flip selector widget's list of
23527     * items.
23528     *
23529     * @param obj The flipselector object
23530     * @return The last item or @c NULL, if it has no items (and on
23531     * errors)
23532     *
23533     * @see elm_flipselector_item_prepend()
23534     * @see elm_flipselector_first_item_get()
23535     *
23536     * @ingroup Flipselector
23537     */
23538    EAPI Elm_Flipselector_Item     *elm_flipselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23539
23540    /**
23541     * Get the currently selected item in a flip selector widget.
23542     *
23543     * @param obj The flipselector object
23544     * @return The selected item or @c NULL, if the widget has no items
23545     * (and on erros)
23546     *
23547     * @ingroup Flipselector
23548     */
23549    EAPI Elm_Flipselector_Item     *elm_flipselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23550
23551    /**
23552     * Set whether a given flip selector widget's item should be the
23553     * currently selected one.
23554     *
23555     * @param item The flip selector item
23556     * @param selected @c EINA_TRUE to select it, @c EINA_FALSE to unselect.
23557     *
23558     * This sets whether @p item is or not the selected (thus, under
23559     * display) one. If @p item is different than one under display,
23560     * the latter will be unselected. If the @p item is set to be
23561     * unselected, on the other hand, the @b first item in the widget's
23562     * internal members list will be the new selected one.
23563     *
23564     * @see elm_flipselector_item_selected_get()
23565     *
23566     * @ingroup Flipselector
23567     */
23568    EAPI void                       elm_flipselector_item_selected_set(Elm_Flipselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
23569
23570    /**
23571     * Get whether a given flip selector widget's item is the currently
23572     * selected one.
23573     *
23574     * @param item The flip selector item
23575     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
23576     * (or on errors).
23577     *
23578     * @see elm_flipselector_item_selected_set()
23579     *
23580     * @ingroup Flipselector
23581     */
23582    EAPI Eina_Bool                  elm_flipselector_item_selected_get(const Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
23583
23584    /**
23585     * Delete a given item from a flip selector widget.
23586     *
23587     * @param item The item to delete
23588     *
23589     * @ingroup Flipselector
23590     */
23591    EAPI void                       elm_flipselector_item_del(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
23592
23593    /**
23594     * Get the label of a given flip selector widget's item.
23595     *
23596     * @param item The item to get label from
23597     * @return The text label of @p item or @c NULL, on errors
23598     *
23599     * @see elm_flipselector_item_label_set()
23600     *
23601     * @ingroup Flipselector
23602     */
23603    EAPI const char                *elm_flipselector_item_label_get(const Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
23604
23605    /**
23606     * Set the label of a given flip selector widget's item.
23607     *
23608     * @param item The item to set label on
23609     * @param label The text label string, in UTF-8 encoding
23610     *
23611     * @see elm_flipselector_item_label_get()
23612     *
23613     * @ingroup Flipselector
23614     */
23615    EAPI void                       elm_flipselector_item_label_set(Elm_Flipselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
23616
23617    /**
23618     * Gets the item before @p item in a flip selector widget's
23619     * internal list of items.
23620     *
23621     * @param item The item to fetch previous from
23622     * @return The item before the @p item, in its parent's list. If
23623     *         there is no previous item for @p item or there's an
23624     *         error, @c NULL is returned.
23625     *
23626     * @see elm_flipselector_item_next_get()
23627     *
23628     * @ingroup Flipselector
23629     */
23630    EAPI Elm_Flipselector_Item     *elm_flipselector_item_prev_get(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
23631
23632    /**
23633     * Gets the item after @p item in a flip selector widget's
23634     * internal list of items.
23635     *
23636     * @param item The item to fetch next from
23637     * @return The item after the @p item, in its parent's list. If
23638     *         there is no next item for @p item or there's an
23639     *         error, @c NULL is returned.
23640     *
23641     * @see elm_flipselector_item_next_get()
23642     *
23643     * @ingroup Flipselector
23644     */
23645    EAPI Elm_Flipselector_Item     *elm_flipselector_item_next_get(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
23646
23647    /**
23648     * Set the interval on time updates for an user mouse button hold
23649     * on a flip selector widget.
23650     *
23651     * @param obj The flip selector object
23652     * @param interval The (first) interval value in seconds
23653     *
23654     * This interval value is @b decreased while the user holds the
23655     * mouse pointer either flipping up or flipping doww a given flip
23656     * selector.
23657     *
23658     * This helps the user to get to a given item distant from the
23659     * current one easier/faster, as it will start to flip quicker and
23660     * quicker on mouse button holds.
23661     *
23662     * The calculation for the next flip interval value, starting from
23663     * the one set with this call, is the previous interval divided by
23664     * 1.05, so it decreases a little bit.
23665     *
23666     * The default starting interval value for automatic flips is
23667     * @b 0.85 seconds.
23668     *
23669     * @see elm_flipselector_interval_get()
23670     *
23671     * @ingroup Flipselector
23672     */
23673    EAPI void                       elm_flipselector_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
23674
23675    /**
23676     * Get the interval on time updates for an user mouse button hold
23677     * on a flip selector widget.
23678     *
23679     * @param obj The flip selector object
23680     * @return The (first) interval value, in seconds, set on it
23681     *
23682     * @see elm_flipselector_interval_set() for more details
23683     *
23684     * @ingroup Flipselector
23685     */
23686    EAPI double                     elm_flipselector_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23687    /**
23688     * @}
23689     */
23690
23691    /**
23692     * @addtogroup Calendar
23693     * @{
23694     */
23695
23696    /**
23697     * @enum _Elm_Calendar_Mark_Repeat
23698     * @typedef Elm_Calendar_Mark_Repeat
23699     *
23700     * Event periodicity, used to define if a mark should be repeated
23701     * @b beyond event's day. It's set when a mark is added.
23702     *
23703     * So, for a mark added to 13th May with periodicity set to WEEKLY,
23704     * there will be marks every week after this date. Marks will be displayed
23705     * at 13th, 20th, 27th, 3rd June ...
23706     *
23707     * Values don't work as bitmask, only one can be choosen.
23708     *
23709     * @see elm_calendar_mark_add()
23710     *
23711     * @ingroup Calendar
23712     */
23713    typedef enum _Elm_Calendar_Mark_Repeat
23714      {
23715         ELM_CALENDAR_UNIQUE, /**< Default value. Marks will be displayed only on event day. */
23716         ELM_CALENDAR_DAILY, /**< Marks will be displayed everyday after event day (inclusive). */
23717         ELM_CALENDAR_WEEKLY, /**< Marks will be displayed every week after event day (inclusive) - i.e. each seven days. */
23718         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*/
23719         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. */
23720      } Elm_Calendar_Mark_Repeat;
23721
23722    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(). */
23723
23724    /**
23725     * Add a new calendar widget to the given parent Elementary
23726     * (container) object.
23727     *
23728     * @param parent The parent object.
23729     * @return a new calendar widget handle or @c NULL, on errors.
23730     *
23731     * This function inserts a new calendar widget on the canvas.
23732     *
23733     * @ref calendar_example_01
23734     *
23735     * @ingroup Calendar
23736     */
23737    EAPI Evas_Object       *elm_calendar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
23738
23739    /**
23740     * Get weekdays names displayed by the calendar.
23741     *
23742     * @param obj The calendar object.
23743     * @return Array of seven strings to be used as weekday names.
23744     *
23745     * By default, weekdays abbreviations get from system are displayed:
23746     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
23747     * The first string is related to Sunday, the second to Monday...
23748     *
23749     * @see elm_calendar_weekdays_name_set()
23750     *
23751     * @ref calendar_example_05
23752     *
23753     * @ingroup Calendar
23754     */
23755    EAPI const char       **elm_calendar_weekdays_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23756
23757    /**
23758     * Set weekdays names to be displayed by the calendar.
23759     *
23760     * @param obj The calendar object.
23761     * @param weekdays Array of seven strings to be used as weekday names.
23762     * @warning It must have 7 elements, or it will access invalid memory.
23763     * @warning The strings must be NULL terminated ('@\0').
23764     *
23765     * By default, weekdays abbreviations get from system are displayed:
23766     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
23767     *
23768     * The first string should be related to Sunday, the second to Monday...
23769     *
23770     * The usage should be like this:
23771     * @code
23772     *   const char *weekdays[] =
23773     *   {
23774     *      "Sunday", "Monday", "Tuesday", "Wednesday",
23775     *      "Thursday", "Friday", "Saturday"
23776     *   };
23777     *   elm_calendar_weekdays_names_set(calendar, weekdays);
23778     * @endcode
23779     *
23780     * @see elm_calendar_weekdays_name_get()
23781     *
23782     * @ref calendar_example_02
23783     *
23784     * @ingroup Calendar
23785     */
23786    EAPI void               elm_calendar_weekdays_names_set(Evas_Object *obj, const char *weekdays[]) EINA_ARG_NONNULL(1, 2);
23787
23788    /**
23789     * Set the minimum and maximum values for the year
23790     *
23791     * @param obj The calendar object
23792     * @param min The minimum year, greater than 1901;
23793     * @param max The maximum year;
23794     *
23795     * Maximum must be greater than minimum, except if you don't wan't to set
23796     * maximum year.
23797     * Default values are 1902 and -1.
23798     *
23799     * If the maximum year is a negative value, it will be limited depending
23800     * on the platform architecture (year 2037 for 32 bits);
23801     *
23802     * @see elm_calendar_min_max_year_get()
23803     *
23804     * @ref calendar_example_03
23805     *
23806     * @ingroup Calendar
23807     */
23808    EAPI void               elm_calendar_min_max_year_set(Evas_Object *obj, int min, int max) EINA_ARG_NONNULL(1);
23809
23810    /**
23811     * Get the minimum and maximum values for the year
23812     *
23813     * @param obj The calendar object.
23814     * @param min The minimum year.
23815     * @param max The maximum year.
23816     *
23817     * Default values are 1902 and -1.
23818     *
23819     * @see elm_calendar_min_max_year_get() for more details.
23820     *
23821     * @ref calendar_example_05
23822     *
23823     * @ingroup Calendar
23824     */
23825    EAPI void               elm_calendar_min_max_year_get(const Evas_Object *obj, int *min, int *max) EINA_ARG_NONNULL(1);
23826
23827    /**
23828     * Enable or disable day selection
23829     *
23830     * @param obj The calendar object.
23831     * @param enabled @c EINA_TRUE to enable selection or @c EINA_FALSE to
23832     * disable it.
23833     *
23834     * Enabled by default. If disabled, the user still can select months,
23835     * but not days. Selected days are highlighted on calendar.
23836     * It should be used if you won't need such selection for the widget usage.
23837     *
23838     * When a day is selected, or month is changed, smart callbacks for
23839     * signal "changed" will be called.
23840     *
23841     * @see elm_calendar_day_selection_enable_get()
23842     *
23843     * @ref calendar_example_04
23844     *
23845     * @ingroup Calendar
23846     */
23847    EAPI void               elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
23848
23849    /**
23850     * Get a value whether day selection is enabled or not.
23851     *
23852     * @see elm_calendar_day_selection_enable_set() for details.
23853     *
23854     * @param obj The calendar object.
23855     * @return EINA_TRUE means day selection is enabled. EINA_FALSE indicates
23856     * it's disabled. If @p obj is NULL, EINA_FALSE is returned.
23857     *
23858     * @ref calendar_example_05
23859     *
23860     * @ingroup Calendar
23861     */
23862    EAPI Eina_Bool          elm_calendar_day_selection_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23863
23864
23865    /**
23866     * Set selected date to be highlighted on calendar.
23867     *
23868     * @param obj The calendar object.
23869     * @param selected_time A @b tm struct to represent the selected date.
23870     *
23871     * Set the selected date, changing the displayed month if needed.
23872     * Selected date changes when the user goes to next/previous month or
23873     * select a day pressing over it on calendar.
23874     *
23875     * @see elm_calendar_selected_time_get()
23876     *
23877     * @ref calendar_example_04
23878     *
23879     * @ingroup Calendar
23880     */
23881    EAPI void               elm_calendar_selected_time_set(Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1);
23882
23883    /**
23884     * Get selected date.
23885     *
23886     * @param obj The calendar object
23887     * @param selected_time A @b tm struct to point to selected date
23888     * @return EINA_FALSE means an error ocurred and returned time shouldn't
23889     * be considered.
23890     *
23891     * Get date selected by the user or set by function
23892     * elm_calendar_selected_time_set().
23893     * Selected date changes when the user goes to next/previous month or
23894     * select a day pressing over it on calendar.
23895     *
23896     * @see elm_calendar_selected_time_get()
23897     *
23898     * @ref calendar_example_05
23899     *
23900     * @ingroup Calendar
23901     */
23902    EAPI Eina_Bool          elm_calendar_selected_time_get(const Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1, 2);
23903
23904    /**
23905     * Set a function to format the string that will be used to display
23906     * month and year;
23907     *
23908     * @param obj The calendar object
23909     * @param format_function Function to set the month-year string given
23910     * the selected date
23911     *
23912     * By default it uses strftime with "%B %Y" format string.
23913     * It should allocate the memory that will be used by the string,
23914     * that will be freed by the widget after usage.
23915     * A pointer to the string and a pointer to the time struct will be provided.
23916     *
23917     * Example:
23918     * @code
23919     * static char *
23920     * _format_month_year(struct tm *selected_time)
23921     * {
23922     *    char buf[32];
23923     *    if (!strftime(buf, sizeof(buf), "%B %Y", selected_time)) return NULL;
23924     *    return strdup(buf);
23925     * }
23926     *
23927     * elm_calendar_format_function_set(calendar, _format_month_year);
23928     * @endcode
23929     *
23930     * @ref calendar_example_02
23931     *
23932     * @ingroup Calendar
23933     */
23934    EAPI void               elm_calendar_format_function_set(Evas_Object *obj, char * (*format_function) (struct tm *stime)) EINA_ARG_NONNULL(1);
23935
23936    /**
23937     * Add a new mark to the calendar
23938     *
23939     * @param obj The calendar object
23940     * @param mark_type A string used to define the type of mark. It will be
23941     * emitted to the theme, that should display a related modification on these
23942     * days representation.
23943     * @param mark_time A time struct to represent the date of inclusion of the
23944     * mark. For marks that repeats it will just be displayed after the inclusion
23945     * date in the calendar.
23946     * @param repeat Repeat the event following this periodicity. Can be a unique
23947     * mark (that don't repeat), daily, weekly, monthly or annually.
23948     * @return The created mark or @p NULL upon failure.
23949     *
23950     * Add a mark that will be drawn in the calendar respecting the insertion
23951     * time and periodicity. It will emit the type as signal to the widget theme.
23952     * Default theme supports "holiday" and "checked", but it can be extended.
23953     *
23954     * It won't immediately update the calendar, drawing the marks.
23955     * For this, call elm_calendar_marks_draw(). However, when user selects
23956     * next or previous month calendar forces marks drawn.
23957     *
23958     * Marks created with this method can be deleted with
23959     * elm_calendar_mark_del().
23960     *
23961     * Example
23962     * @code
23963     * struct tm selected_time;
23964     * time_t current_time;
23965     *
23966     * current_time = time(NULL) + 5 * 84600;
23967     * localtime_r(&current_time, &selected_time);
23968     * elm_calendar_mark_add(cal, "holiday", selected_time,
23969     *     ELM_CALENDAR_ANNUALLY);
23970     *
23971     * current_time = time(NULL) + 1 * 84600;
23972     * localtime_r(&current_time, &selected_time);
23973     * elm_calendar_mark_add(cal, "checked", selected_time, ELM_CALENDAR_UNIQUE);
23974     *
23975     * elm_calendar_marks_draw(cal);
23976     * @endcode
23977     *
23978     * @see elm_calendar_marks_draw()
23979     * @see elm_calendar_mark_del()
23980     *
23981     * @ref calendar_example_06
23982     *
23983     * @ingroup Calendar
23984     */
23985    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);
23986
23987    /**
23988     * Delete mark from the calendar.
23989     *
23990     * @param mark The mark to be deleted.
23991     *
23992     * If deleting all calendar marks is required, elm_calendar_marks_clear()
23993     * should be used instead of getting marks list and deleting each one.
23994     *
23995     * @see elm_calendar_mark_add()
23996     *
23997     * @ref calendar_example_06
23998     *
23999     * @ingroup Calendar
24000     */
24001    EAPI void               elm_calendar_mark_del(Elm_Calendar_Mark *mark) EINA_ARG_NONNULL(1);
24002
24003    /**
24004     * Remove all calendar's marks
24005     *
24006     * @param obj The calendar object.
24007     *
24008     * @see elm_calendar_mark_add()
24009     * @see elm_calendar_mark_del()
24010     *
24011     * @ingroup Calendar
24012     */
24013    EAPI void               elm_calendar_marks_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
24014
24015
24016    /**
24017     * Get a list of all the calendar marks.
24018     *
24019     * @param obj The calendar object.
24020     * @return An @c Eina_List of calendar marks objects, or @c NULL on failure.
24021     *
24022     * @see elm_calendar_mark_add()
24023     * @see elm_calendar_mark_del()
24024     * @see elm_calendar_marks_clear()
24025     *
24026     * @ingroup Calendar
24027     */
24028    EAPI const Eina_List   *elm_calendar_marks_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24029
24030    /**
24031     * Draw calendar marks.
24032     *
24033     * @param obj The calendar object.
24034     *
24035     * Should be used after adding, removing or clearing marks.
24036     * It will go through the entire marks list updating the calendar.
24037     * If lots of marks will be added, add all the marks and then call
24038     * this function.
24039     *
24040     * When the month is changed, i.e. user selects next or previous month,
24041     * marks will be drawed.
24042     *
24043     * @see elm_calendar_mark_add()
24044     * @see elm_calendar_mark_del()
24045     * @see elm_calendar_marks_clear()
24046     *
24047     * @ref calendar_example_06
24048     *
24049     * @ingroup Calendar
24050     */
24051    EAPI void               elm_calendar_marks_draw(Evas_Object *obj) EINA_ARG_NONNULL(1);
24052
24053    /**
24054     * Set a day text color to the same that represents Saturdays.
24055     *
24056     * @param obj The calendar object.
24057     * @param pos The text position. Position is the cell counter, from left
24058     * to right, up to down. It starts on 0 and ends on 41.
24059     *
24060     * @deprecated use elm_calendar_mark_add() instead like:
24061     *
24062     * @code
24063     * struct tm t = { 0, 0, 12, 6, 0, 0, 6, 6, -1 };
24064     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
24065     * @endcode
24066     *
24067     * @see elm_calendar_mark_add()
24068     *
24069     * @ingroup Calendar
24070     */
24071    EINA_DEPRECATED EAPI void               elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
24072
24073    /**
24074     * Set a day text color to the same that represents Sundays.
24075     *
24076     * @param obj The calendar object.
24077     * @param pos The text position. Position is the cell counter, from left
24078     * to right, up to down. It starts on 0 and ends on 41.
24079
24080     * @deprecated use elm_calendar_mark_add() instead like:
24081     *
24082     * @code
24083     * struct tm t = { 0, 0, 12, 7, 0, 0, 0, 0, -1 };
24084     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
24085     * @endcode
24086     *
24087     * @see elm_calendar_mark_add()
24088     *
24089     * @ingroup Calendar
24090     */
24091    EINA_DEPRECATED EAPI void               elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
24092
24093    /**
24094     * Set a day text color to the same that represents Weekdays.
24095     *
24096     * @param obj The calendar object
24097     * @param pos The text position. Position is the cell counter, from left
24098     * to right, up to down. It starts on 0 and ends on 41.
24099     *
24100     * @deprecated use elm_calendar_mark_add() instead like:
24101     *
24102     * @code
24103     * struct tm t = { 0, 0, 12, 1, 0, 0, 0, 0, -1 };
24104     *
24105     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // monday
24106     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
24107     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // tuesday
24108     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
24109     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // wednesday
24110     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
24111     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // thursday
24112     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
24113     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // friday
24114     * @endcode
24115     *
24116     * @see elm_calendar_mark_add()
24117     *
24118     * @ingroup Calendar
24119     */
24120    EINA_DEPRECATED EAPI void               elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
24121
24122    /**
24123     * Set the interval on time updates for an user mouse button hold
24124     * on calendar widgets' month selection.
24125     *
24126     * @param obj The calendar object
24127     * @param interval The (first) interval value in seconds
24128     *
24129     * This interval value is @b decreased while the user holds the
24130     * mouse pointer either selecting next or previous month.
24131     *
24132     * This helps the user to get to a given month distant from the
24133     * current one easier/faster, as it will start to change quicker and
24134     * quicker on mouse button holds.
24135     *
24136     * The calculation for the next change interval value, starting from
24137     * the one set with this call, is the previous interval divided by
24138     * 1.05, so it decreases a little bit.
24139     *
24140     * The default starting interval value for automatic changes is
24141     * @b 0.85 seconds.
24142     *
24143     * @see elm_calendar_interval_get()
24144     *
24145     * @ingroup Calendar
24146     */
24147    EAPI void               elm_calendar_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
24148
24149    /**
24150     * Get the interval on time updates for an user mouse button hold
24151     * on calendar widgets' month selection.
24152     *
24153     * @param obj The calendar object
24154     * @return The (first) interval value, in seconds, set on it
24155     *
24156     * @see elm_calendar_interval_set() for more details
24157     *
24158     * @ingroup Calendar
24159     */
24160    EAPI double             elm_calendar_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24161
24162    /**
24163     * @}
24164     */
24165
24166    /**
24167     * @defgroup Diskselector Diskselector
24168     * @ingroup Elementary
24169     *
24170     * @image html img/widget/diskselector/preview-00.png
24171     * @image latex img/widget/diskselector/preview-00.eps
24172     *
24173     * A diskselector is a kind of list widget. It scrolls horizontally,
24174     * and can contain label and icon objects. Three items are displayed
24175     * with the selected one in the middle.
24176     *
24177     * It can act like a circular list with round mode and labels can be
24178     * reduced for a defined length for side items.
24179     *
24180     * Smart callbacks one can listen to:
24181     * - "selected" - when item is selected, i.e. scroller stops.
24182     *
24183     * Available styles for it:
24184     * - @c "default"
24185     *
24186     * List of examples:
24187     * @li @ref diskselector_example_01
24188     * @li @ref diskselector_example_02
24189     */
24190
24191    /**
24192     * @addtogroup Diskselector
24193     * @{
24194     */
24195
24196    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(). */
24197
24198    /**
24199     * Add a new diskselector widget to the given parent Elementary
24200     * (container) object.
24201     *
24202     * @param parent The parent object.
24203     * @return a new diskselector widget handle or @c NULL, on errors.
24204     *
24205     * This function inserts a new diskselector widget on the canvas.
24206     *
24207     * @ingroup Diskselector
24208     */
24209    EAPI Evas_Object           *elm_diskselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24210
24211    /**
24212     * Enable or disable round mode.
24213     *
24214     * @param obj The diskselector object.
24215     * @param round @c EINA_TRUE to enable round mode or @c EINA_FALSE to
24216     * disable it.
24217     *
24218     * Disabled by default. If round mode is enabled the items list will
24219     * work like a circle list, so when the user reaches the last item,
24220     * the first one will popup.
24221     *
24222     * @see elm_diskselector_round_get()
24223     *
24224     * @ingroup Diskselector
24225     */
24226    EAPI void                   elm_diskselector_round_set(Evas_Object *obj, Eina_Bool round) EINA_ARG_NONNULL(1);
24227
24228    /**
24229     * Get a value whether round mode is enabled or not.
24230     *
24231     * @see elm_diskselector_round_set() for details.
24232     *
24233     * @param obj The diskselector object.
24234     * @return @c EINA_TRUE means round mode is enabled. @c EINA_FALSE indicates
24235     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
24236     *
24237     * @ingroup Diskselector
24238     */
24239    EAPI Eina_Bool              elm_diskselector_round_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24240
24241    /**
24242     * Get the side labels max length.
24243     *
24244     * @deprecated use elm_diskselector_side_label_length_get() instead:
24245     *
24246     * @param obj The diskselector object.
24247     * @return The max length defined for side labels, or 0 if not a valid
24248     * diskselector.
24249     *
24250     * @ingroup Diskselector
24251     */
24252    EINA_DEPRECATED EAPI int    elm_diskselector_side_label_lenght_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24253
24254    /**
24255     * Set the side labels max length.
24256     *
24257     * @deprecated use elm_diskselector_side_label_length_set() instead:
24258     *
24259     * @param obj The diskselector object.
24260     * @param len The max length defined for side labels.
24261     *
24262     * @ingroup Diskselector
24263     */
24264    EINA_DEPRECATED EAPI void   elm_diskselector_side_label_lenght_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
24265
24266    /**
24267     * Get the side labels max length.
24268     *
24269     * @see elm_diskselector_side_label_length_set() for details.
24270     *
24271     * @param obj The diskselector object.
24272     * @return The max length defined for side labels, or 0 if not a valid
24273     * diskselector.
24274     *
24275     * @ingroup Diskselector
24276     */
24277    EAPI int                    elm_diskselector_side_label_length_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24278
24279    /**
24280     * Set the side labels max length.
24281     *
24282     * @param obj The diskselector object.
24283     * @param len The max length defined for side labels.
24284     *
24285     * Length is the number of characters of items' label that will be
24286     * visible when it's set on side positions. It will just crop
24287     * the string after defined size. E.g.:
24288     *
24289     * An item with label "January" would be displayed on side position as
24290     * "Jan" if max length is set to 3, or "Janu", if this property
24291     * is set to 4.
24292     *
24293     * When it's selected, the entire label will be displayed, except for
24294     * width restrictions. In this case label will be cropped and "..."
24295     * will be concatenated.
24296     *
24297     * Default side label max length is 3.
24298     *
24299     * This property will be applyed over all items, included before or
24300     * later this function call.
24301     *
24302     * @ingroup Diskselector
24303     */
24304    EAPI void                   elm_diskselector_side_label_length_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
24305
24306    /**
24307     * Set the number of items to be displayed.
24308     *
24309     * @param obj The diskselector object.
24310     * @param num The number of items the diskselector will display.
24311     *
24312     * Default value is 3, and also it's the minimun. If @p num is less
24313     * than 3, it will be set to 3.
24314     *
24315     * Also, it can be set on theme, using data item @c display_item_num
24316     * on group "elm/diskselector/item/X", where X is style set.
24317     * E.g.:
24318     *
24319     * group { name: "elm/diskselector/item/X";
24320     * data {
24321     *     item: "display_item_num" "5";
24322     *     }
24323     *
24324     * @ingroup Diskselector
24325     */
24326    EAPI void                   elm_diskselector_display_item_num_set(Evas_Object *obj, int num) EINA_ARG_NONNULL(1);
24327
24328    /**
24329     * Get the number of items in the diskselector object.
24330     *
24331     * @param obj The diskselector object.
24332     *
24333     * @ingroup Diskselector
24334     */
24335    EAPI int                   elm_diskselector_display_item_num_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24336
24337    /**
24338     * Set bouncing behaviour when the scrolled content reaches an edge.
24339     *
24340     * Tell the internal scroller object whether it should bounce or not
24341     * when it reaches the respective edges for each axis.
24342     *
24343     * @param obj The diskselector object.
24344     * @param h_bounce Whether to bounce or not in the horizontal axis.
24345     * @param v_bounce Whether to bounce or not in the vertical axis.
24346     *
24347     * @see elm_scroller_bounce_set()
24348     *
24349     * @ingroup Diskselector
24350     */
24351    EAPI void                   elm_diskselector_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
24352
24353    /**
24354     * Get the bouncing behaviour of the internal scroller.
24355     *
24356     * Get whether the internal scroller should bounce when the edge of each
24357     * axis is reached scrolling.
24358     *
24359     * @param obj The diskselector object.
24360     * @param h_bounce Pointer where to store the bounce state of the horizontal
24361     * axis.
24362     * @param v_bounce Pointer where to store the bounce state of the vertical
24363     * axis.
24364     *
24365     * @see elm_scroller_bounce_get()
24366     * @see elm_diskselector_bounce_set()
24367     *
24368     * @ingroup Diskselector
24369     */
24370    EAPI void                   elm_diskselector_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
24371
24372    /**
24373     * Get the scrollbar policy.
24374     *
24375     * @see elm_diskselector_scroller_policy_get() for details.
24376     *
24377     * @param obj The diskselector object.
24378     * @param policy_h Pointer where to store horizontal scrollbar policy.
24379     * @param policy_v Pointer where to store vertical scrollbar policy.
24380     *
24381     * @ingroup Diskselector
24382     */
24383    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);
24384
24385    /**
24386     * Set the scrollbar policy.
24387     *
24388     * @param obj The diskselector object.
24389     * @param policy_h Horizontal scrollbar policy.
24390     * @param policy_v Vertical scrollbar policy.
24391     *
24392     * This sets the scrollbar visibility policy for the given scroller.
24393     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
24394     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
24395     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
24396     * This applies respectively for the horizontal and vertical scrollbars.
24397     *
24398     * The both are disabled by default, i.e., are set to
24399     * #ELM_SCROLLER_POLICY_OFF.
24400     *
24401     * @ingroup Diskselector
24402     */
24403    EAPI void                   elm_diskselector_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
24404
24405    /**
24406     * Remove all diskselector's items.
24407     *
24408     * @param obj The diskselector object.
24409     *
24410     * @see elm_diskselector_item_del()
24411     * @see elm_diskselector_item_append()
24412     *
24413     * @ingroup Diskselector
24414     */
24415    EAPI void                   elm_diskselector_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
24416
24417    /**
24418     * Get a list of all the diskselector items.
24419     *
24420     * @param obj The diskselector object.
24421     * @return An @c Eina_List of diskselector items, #Elm_Diskselector_Item,
24422     * or @c NULL on failure.
24423     *
24424     * @see elm_diskselector_item_append()
24425     * @see elm_diskselector_item_del()
24426     * @see elm_diskselector_clear()
24427     *
24428     * @ingroup Diskselector
24429     */
24430    EAPI const Eina_List       *elm_diskselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24431
24432    /**
24433     * Appends a new item to the diskselector object.
24434     *
24435     * @param obj The diskselector object.
24436     * @param label The label of the diskselector item.
24437     * @param icon The icon object to use at left side of the item. An
24438     * icon can be any Evas object, but usually it is an icon created
24439     * with elm_icon_add().
24440     * @param func The function to call when the item is selected.
24441     * @param data The data to associate with the item for related callbacks.
24442     *
24443     * @return The created item or @c NULL upon failure.
24444     *
24445     * A new item will be created and appended to the diskselector, i.e., will
24446     * be set as last item. Also, if there is no selected item, it will
24447     * be selected. This will always happens for the first appended item.
24448     *
24449     * If no icon is set, label will be centered on item position, otherwise
24450     * the icon will be placed at left of the label, that will be shifted
24451     * to the right.
24452     *
24453     * Items created with this method can be deleted with
24454     * elm_diskselector_item_del().
24455     *
24456     * Associated @p data can be properly freed when item is deleted if a
24457     * callback function is set with elm_diskselector_item_del_cb_set().
24458     *
24459     * If a function is passed as argument, it will be called everytime this item
24460     * is selected, i.e., the user stops the diskselector with this
24461     * item on center position. If such function isn't needed, just passing
24462     * @c NULL as @p func is enough. The same should be done for @p data.
24463     *
24464     * Simple example (with no function callback or data associated):
24465     * @code
24466     * disk = elm_diskselector_add(win);
24467     * ic = elm_icon_add(win);
24468     * elm_icon_file_set(ic, "path/to/image", NULL);
24469     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
24470     * elm_diskselector_item_append(disk, "label", ic, NULL, NULL);
24471     * @endcode
24472     *
24473     * @see elm_diskselector_item_del()
24474     * @see elm_diskselector_item_del_cb_set()
24475     * @see elm_diskselector_clear()
24476     * @see elm_icon_add()
24477     *
24478     * @ingroup Diskselector
24479     */
24480    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);
24481
24482
24483    /**
24484     * Delete them item from the diskselector.
24485     *
24486     * @param it The item of diskselector to be deleted.
24487     *
24488     * If deleting all diskselector items is required, elm_diskselector_clear()
24489     * should be used instead of getting items list and deleting each one.
24490     *
24491     * @see elm_diskselector_clear()
24492     * @see elm_diskselector_item_append()
24493     * @see elm_diskselector_item_del_cb_set()
24494     *
24495     * @ingroup Diskselector
24496     */
24497    EAPI void                   elm_diskselector_item_del(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24498
24499    /**
24500     * Set the function called when a diskselector item is freed.
24501     *
24502     * @param it The item to set the callback on
24503     * @param func The function called
24504     *
24505     * If there is a @p func, then it will be called prior item's memory release.
24506     * That will be called with the following arguments:
24507     * @li item's data;
24508     * @li item's Evas object;
24509     * @li item itself;
24510     *
24511     * This way, a data associated to a diskselector item could be properly
24512     * freed.
24513     *
24514     * @ingroup Diskselector
24515     */
24516    EAPI void                   elm_diskselector_item_del_cb_set(Elm_Diskselector_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
24517
24518    /**
24519     * Get the data associated to the item.
24520     *
24521     * @param it The diskselector item
24522     * @return The data associated to @p it
24523     *
24524     * The return value is a pointer to data associated to @p item when it was
24525     * created, with function elm_diskselector_item_append(). If no data
24526     * was passed as argument, it will return @c NULL.
24527     *
24528     * @see elm_diskselector_item_append()
24529     *
24530     * @ingroup Diskselector
24531     */
24532    EAPI void                  *elm_diskselector_item_data_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24533
24534    /**
24535     * Set the icon associated to the item.
24536     *
24537     * @param it The diskselector item
24538     * @param icon The icon object to associate with @p it
24539     *
24540     * The icon object to use at left side of the item. An
24541     * icon can be any Evas object, but usually it is an icon created
24542     * with elm_icon_add().
24543     *
24544     * Once the icon object is set, a previously set one will be deleted.
24545     * @warning Setting the same icon for two items will cause the icon to
24546     * dissapear from the first item.
24547     *
24548     * If an icon was passed as argument on item creation, with function
24549     * elm_diskselector_item_append(), it will be already
24550     * associated to the item.
24551     *
24552     * @see elm_diskselector_item_append()
24553     * @see elm_diskselector_item_icon_get()
24554     *
24555     * @ingroup Diskselector
24556     */
24557    EAPI void                   elm_diskselector_item_icon_set(Elm_Diskselector_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
24558
24559    /**
24560     * Get the icon associated to the item.
24561     *
24562     * @param it The diskselector item
24563     * @return The icon associated to @p it
24564     *
24565     * The return value is a pointer to the icon associated to @p item when it was
24566     * created, with function elm_diskselector_item_append(), or later
24567     * with function elm_diskselector_item_icon_set. If no icon
24568     * was passed as argument, it will return @c NULL.
24569     *
24570     * @see elm_diskselector_item_append()
24571     * @see elm_diskselector_item_icon_set()
24572     *
24573     * @ingroup Diskselector
24574     */
24575    EAPI Evas_Object           *elm_diskselector_item_icon_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24576
24577    /**
24578     * Set the label of item.
24579     *
24580     * @param it The item of diskselector.
24581     * @param label The label of item.
24582     *
24583     * The label to be displayed by the item.
24584     *
24585     * If no icon is set, label will be centered on item position, otherwise
24586     * the icon will be placed at left of the label, that will be shifted
24587     * to the right.
24588     *
24589     * An item with label "January" would be displayed on side position as
24590     * "Jan" if max length is set to 3 with function
24591     * elm_diskselector_side_label_lenght_set(), or "Janu", if this property
24592     * is set to 4.
24593     *
24594     * When this @p item is selected, the entire label will be displayed,
24595     * except for width restrictions.
24596     * In this case label will be cropped and "..." will be concatenated,
24597     * but only for display purposes. It will keep the entire string, so
24598     * if diskselector is resized the remaining characters will be displayed.
24599     *
24600     * If a label was passed as argument on item creation, with function
24601     * elm_diskselector_item_append(), it will be already
24602     * displayed by the item.
24603     *
24604     * @see elm_diskselector_side_label_lenght_set()
24605     * @see elm_diskselector_item_label_get()
24606     * @see elm_diskselector_item_append()
24607     *
24608     * @ingroup Diskselector
24609     */
24610    EAPI void                   elm_diskselector_item_label_set(Elm_Diskselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
24611
24612    /**
24613     * Get the label of item.
24614     *
24615     * @param it The item of diskselector.
24616     * @return The label of item.
24617     *
24618     * The return value is a pointer to the label associated to @p item when it was
24619     * created, with function elm_diskselector_item_append(), or later
24620     * with function elm_diskselector_item_label_set. If no label
24621     * was passed as argument, it will return @c NULL.
24622     *
24623     * @see elm_diskselector_item_label_set() for more details.
24624     * @see elm_diskselector_item_append()
24625     *
24626     * @ingroup Diskselector
24627     */
24628    EAPI const char            *elm_diskselector_item_label_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24629
24630    /**
24631     * Get the selected item.
24632     *
24633     * @param obj The diskselector object.
24634     * @return The selected diskselector item.
24635     *
24636     * The selected item can be unselected with function
24637     * elm_diskselector_item_selected_set(), and the first item of
24638     * diskselector will be selected.
24639     *
24640     * The selected item always will be centered on diskselector, with
24641     * full label displayed, i.e., max lenght set to side labels won't
24642     * apply on the selected item. More details on
24643     * elm_diskselector_side_label_length_set().
24644     *
24645     * @ingroup Diskselector
24646     */
24647    EAPI Elm_Diskselector_Item *elm_diskselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24648
24649    /**
24650     * Set the selected state of an item.
24651     *
24652     * @param it The diskselector item
24653     * @param selected The selected state
24654     *
24655     * This sets the selected state of the given item @p it.
24656     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
24657     *
24658     * If a new item is selected the previosly selected will be unselected.
24659     * Previoulsy selected item can be get with function
24660     * elm_diskselector_selected_item_get().
24661     *
24662     * If the item @p it is unselected, the first item of diskselector will
24663     * be selected.
24664     *
24665     * Selected items will be visible on center position of diskselector.
24666     * So if it was on another position before selected, or was invisible,
24667     * diskselector will animate items until the selected item reaches center
24668     * position.
24669     *
24670     * @see elm_diskselector_item_selected_get()
24671     * @see elm_diskselector_selected_item_get()
24672     *
24673     * @ingroup Diskselector
24674     */
24675    EAPI void                   elm_diskselector_item_selected_set(Elm_Diskselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
24676
24677    /*
24678     * Get whether the @p item is selected or not.
24679     *
24680     * @param it The diskselector item.
24681     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
24682     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
24683     *
24684     * @see elm_diskselector_selected_item_set() for details.
24685     * @see elm_diskselector_item_selected_get()
24686     *
24687     * @ingroup Diskselector
24688     */
24689    EAPI Eina_Bool              elm_diskselector_item_selected_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24690
24691    /**
24692     * Get the first item of the diskselector.
24693     *
24694     * @param obj The diskselector object.
24695     * @return The first item, or @c NULL if none.
24696     *
24697     * The list of items follows append order. So it will return the first
24698     * item appended to the widget that wasn't deleted.
24699     *
24700     * @see elm_diskselector_item_append()
24701     * @see elm_diskselector_items_get()
24702     *
24703     * @ingroup Diskselector
24704     */
24705    EAPI Elm_Diskselector_Item *elm_diskselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24706
24707    /**
24708     * Get the last item of the diskselector.
24709     *
24710     * @param obj The diskselector object.
24711     * @return The last item, or @c NULL if none.
24712     *
24713     * The list of items follows append order. So it will return last first
24714     * item appended to the widget that wasn't deleted.
24715     *
24716     * @see elm_diskselector_item_append()
24717     * @see elm_diskselector_items_get()
24718     *
24719     * @ingroup Diskselector
24720     */
24721    EAPI Elm_Diskselector_Item *elm_diskselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24722
24723    /**
24724     * Get the item before @p item in diskselector.
24725     *
24726     * @param it The diskselector item.
24727     * @return The item before @p item, or @c NULL if none or on failure.
24728     *
24729     * The list of items follows append order. So it will return item appended
24730     * just before @p item and that wasn't deleted.
24731     *
24732     * If it is the first item, @c NULL will be returned.
24733     * First item can be get by elm_diskselector_first_item_get().
24734     *
24735     * @see elm_diskselector_item_append()
24736     * @see elm_diskselector_items_get()
24737     *
24738     * @ingroup Diskselector
24739     */
24740    EAPI Elm_Diskselector_Item *elm_diskselector_item_prev_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24741
24742    /**
24743     * Get the item after @p item in diskselector.
24744     *
24745     * @param it The diskselector item.
24746     * @return The item after @p item, or @c NULL if none or on failure.
24747     *
24748     * The list of items follows append order. So it will return item appended
24749     * just after @p item and that wasn't deleted.
24750     *
24751     * If it is the last item, @c NULL will be returned.
24752     * Last item can be get by elm_diskselector_last_item_get().
24753     *
24754     * @see elm_diskselector_item_append()
24755     * @see elm_diskselector_items_get()
24756     *
24757     * @ingroup Diskselector
24758     */
24759    EAPI Elm_Diskselector_Item *elm_diskselector_item_next_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24760
24761    /**
24762     * Set the text to be shown in the diskselector item.
24763     *
24764     * @param item Target item
24765     * @param text The text to set in the content
24766     *
24767     * Setup the text as tooltip to object. The item can have only one tooltip,
24768     * so any previous tooltip data is removed.
24769     *
24770     * @see elm_object_tooltip_text_set() for more details.
24771     *
24772     * @ingroup Diskselector
24773     */
24774    EAPI void                   elm_diskselector_item_tooltip_text_set(Elm_Diskselector_Item *item, const char *text) EINA_ARG_NONNULL(1);
24775
24776    /**
24777     * Set the content to be shown in the tooltip item.
24778     *
24779     * Setup the tooltip to item. The item can have only one tooltip,
24780     * so any previous tooltip data is removed. @p func(with @p data) will
24781     * be called every time that need show the tooltip and it should
24782     * return a valid Evas_Object. This object is then managed fully by
24783     * tooltip system and is deleted when the tooltip is gone.
24784     *
24785     * @param item the diskselector item being attached a tooltip.
24786     * @param func the function used to create the tooltip contents.
24787     * @param data what to provide to @a func as callback data/context.
24788     * @param del_cb called when data is not needed anymore, either when
24789     *        another callback replaces @p func, the tooltip is unset with
24790     *        elm_diskselector_item_tooltip_unset() or the owner @a item
24791     *        dies. This callback receives as the first parameter the
24792     *        given @a data, and @c event_info is the item.
24793     *
24794     * @see elm_object_tooltip_content_cb_set() for more details.
24795     *
24796     * @ingroup Diskselector
24797     */
24798    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);
24799
24800    /**
24801     * Unset tooltip from item.
24802     *
24803     * @param item diskselector item to remove previously set tooltip.
24804     *
24805     * Remove tooltip from item. The callback provided as del_cb to
24806     * elm_diskselector_item_tooltip_content_cb_set() will be called to notify
24807     * it is not used anymore.
24808     *
24809     * @see elm_object_tooltip_unset() for more details.
24810     * @see elm_diskselector_item_tooltip_content_cb_set()
24811     *
24812     * @ingroup Diskselector
24813     */
24814    EAPI void                   elm_diskselector_item_tooltip_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24815
24816
24817    /**
24818     * Sets a different style for this item tooltip.
24819     *
24820     * @note before you set a style you should define a tooltip with
24821     *       elm_diskselector_item_tooltip_content_cb_set() or
24822     *       elm_diskselector_item_tooltip_text_set()
24823     *
24824     * @param item diskselector item with tooltip already set.
24825     * @param style the theme style to use (default, transparent, ...)
24826     *
24827     * @see elm_object_tooltip_style_set() for more details.
24828     *
24829     * @ingroup Diskselector
24830     */
24831    EAPI void                   elm_diskselector_item_tooltip_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
24832
24833    /**
24834     * Get the style for this item tooltip.
24835     *
24836     * @param item diskselector item with tooltip already set.
24837     * @return style the theme style in use, defaults to "default". If the
24838     *         object does not have a tooltip set, then NULL is returned.
24839     *
24840     * @see elm_object_tooltip_style_get() for more details.
24841     * @see elm_diskselector_item_tooltip_style_set()
24842     *
24843     * @ingroup Diskselector
24844     */
24845    EAPI const char            *elm_diskselector_item_tooltip_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24846
24847    /**
24848     * Set the cursor to be shown when mouse is over the diskselector item
24849     *
24850     * @param item Target item
24851     * @param cursor the cursor name to be used.
24852     *
24853     * @see elm_object_cursor_set() for more details.
24854     *
24855     * @ingroup Diskselector
24856     */
24857    EAPI void                   elm_diskselector_item_cursor_set(Elm_Diskselector_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
24858
24859    /**
24860     * Get the cursor to be shown when mouse is over the diskselector item
24861     *
24862     * @param item diskselector item with cursor already set.
24863     * @return the cursor name.
24864     *
24865     * @see elm_object_cursor_get() for more details.
24866     * @see elm_diskselector_cursor_set()
24867     *
24868     * @ingroup Diskselector
24869     */
24870    EAPI const char            *elm_diskselector_item_cursor_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24871
24872
24873    /**
24874     * Unset the cursor to be shown when mouse is over the diskselector item
24875     *
24876     * @param item Target item
24877     *
24878     * @see elm_object_cursor_unset() for more details.
24879     * @see elm_diskselector_cursor_set()
24880     *
24881     * @ingroup Diskselector
24882     */
24883    EAPI void                   elm_diskselector_item_cursor_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24884
24885    /**
24886     * Sets a different style for this item cursor.
24887     *
24888     * @note before you set a style you should define a cursor with
24889     *       elm_diskselector_item_cursor_set()
24890     *
24891     * @param item diskselector item with cursor already set.
24892     * @param style the theme style to use (default, transparent, ...)
24893     *
24894     * @see elm_object_cursor_style_set() for more details.
24895     *
24896     * @ingroup Diskselector
24897     */
24898    EAPI void                   elm_diskselector_item_cursor_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
24899
24900
24901    /**
24902     * Get the style for this item cursor.
24903     *
24904     * @param item diskselector item with cursor already set.
24905     * @return style the theme style in use, defaults to "default". If the
24906     *         object does not have a cursor set, then @c NULL is returned.
24907     *
24908     * @see elm_object_cursor_style_get() for more details.
24909     * @see elm_diskselector_item_cursor_style_set()
24910     *
24911     * @ingroup Diskselector
24912     */
24913    EAPI const char            *elm_diskselector_item_cursor_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24914
24915
24916    /**
24917     * Set if the cursor set should be searched on the theme or should use
24918     * the provided by the engine, only.
24919     *
24920     * @note before you set if should look on theme you should define a cursor
24921     * with elm_diskselector_item_cursor_set().
24922     * By default it will only look for cursors provided by the engine.
24923     *
24924     * @param item widget item with cursor already set.
24925     * @param engine_only boolean to define if cursors set with
24926     * elm_diskselector_item_cursor_set() should be searched only
24927     * between cursors provided by the engine or searched on widget's
24928     * theme as well.
24929     *
24930     * @see elm_object_cursor_engine_only_set() for more details.
24931     *
24932     * @ingroup Diskselector
24933     */
24934    EAPI void                   elm_diskselector_item_cursor_engine_only_set(Elm_Diskselector_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
24935
24936    /**
24937     * Get the cursor engine only usage for this item cursor.
24938     *
24939     * @param item widget item with cursor already set.
24940     * @return engine_only boolean to define it cursors should be looked only
24941     * between the provided by the engine or searched on widget's theme as well.
24942     * If the item does not have a cursor set, then @c EINA_FALSE is returned.
24943     *
24944     * @see elm_object_cursor_engine_only_get() for more details.
24945     * @see elm_diskselector_item_cursor_engine_only_set()
24946     *
24947     * @ingroup Diskselector
24948     */
24949    EAPI Eina_Bool              elm_diskselector_item_cursor_engine_only_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
24950
24951    /**
24952     * @}
24953     */
24954
24955    /**
24956     * @defgroup Colorselector Colorselector
24957     *
24958     * @{
24959     *
24960     * @image html img/widget/colorselector/preview-00.png
24961     * @image latex img/widget/colorselector/preview-00.eps
24962     *
24963     * @brief Widget for user to select a color.
24964     *
24965     * Signals that you can add callbacks for are:
24966     * "changed" - When the color value changes(event_info is NULL).
24967     *
24968     * See @ref tutorial_colorselector.
24969     */
24970    /**
24971     * @brief Add a new colorselector to the parent
24972     *
24973     * @param parent The parent object
24974     * @return The new object or NULL if it cannot be created
24975     *
24976     * @ingroup Colorselector
24977     */
24978    EAPI Evas_Object *elm_colorselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24979    /**
24980     * Set a color for the colorselector
24981     *
24982     * @param obj   Colorselector object
24983     * @param r     r-value of color
24984     * @param g     g-value of color
24985     * @param b     b-value of color
24986     * @param a     a-value of color
24987     *
24988     * @ingroup Colorselector
24989     */
24990    EAPI void         elm_colorselector_color_set(Evas_Object *obj, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
24991    /**
24992     * Get a color from the colorselector
24993     *
24994     * @param obj   Colorselector object
24995     * @param r     integer pointer for r-value of color
24996     * @param g     integer pointer for g-value of color
24997     * @param b     integer pointer for b-value of color
24998     * @param a     integer pointer for a-value of color
24999     *
25000     * @ingroup Colorselector
25001     */
25002    EAPI void         elm_colorselector_color_get(const Evas_Object *obj, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
25003    /**
25004     * @}
25005     */
25006
25007    /**
25008     * @defgroup Ctxpopup Ctxpopup
25009     *
25010     * @image html img/widget/ctxpopup/preview-00.png
25011     * @image latex img/widget/ctxpopup/preview-00.eps
25012     *
25013     * @brief Context popup widet.
25014     *
25015     * A ctxpopup is a widget that, when shown, pops up a list of items.
25016     * It automatically chooses an area inside its parent object's view
25017     * (set via elm_ctxpopup_add() and elm_ctxpopup_hover_parent_set()) to
25018     * optimally fit into it. In the default theme, it will also point an
25019     * arrow to it's top left position at the time one shows it. Ctxpopup
25020     * items have a label and/or an icon. It is intended for a small
25021     * number of items (hence the use of list, not genlist).
25022     *
25023     * @note Ctxpopup is a especialization of @ref Hover.
25024     *
25025     * Signals that you can add callbacks for are:
25026     * "dismissed" - the ctxpopup was dismissed
25027     *
25028     * @ref tutorial_ctxpopup shows the usage of a good deal of the API.
25029     * @{
25030     */
25031    typedef enum _Elm_Ctxpopup_Direction
25032      {
25033         ELM_CTXPOPUP_DIRECTION_DOWN, /**< ctxpopup show appear below clicked
25034                                           area */
25035         ELM_CTXPOPUP_DIRECTION_RIGHT, /**< ctxpopup show appear to the right of
25036                                            the clicked area */
25037         ELM_CTXPOPUP_DIRECTION_LEFT, /**< ctxpopup show appear to the left of
25038                                           the clicked area */
25039         ELM_CTXPOPUP_DIRECTION_UP, /**< ctxpopup show appear above the clicked
25040                                         area */
25041         ELM_CTXPOPUP_DIRECTION_UNKNOWN, /**< ctxpopup does not determine it's direction yet*/
25042      } Elm_Ctxpopup_Direction;
25043
25044    /**
25045     * @brief Add a new Ctxpopup object to the parent.
25046     *
25047     * @param parent Parent object
25048     * @return New object or @c NULL, if it cannot be created
25049     */
25050    EAPI Evas_Object  *elm_ctxpopup_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25051    /**
25052     * @brief Set the Ctxpopup's parent
25053     *
25054     * @param obj The ctxpopup object
25055     * @param area The parent to use
25056     *
25057     * Set the parent object.
25058     *
25059     * @note elm_ctxpopup_add() will automatically call this function
25060     * with its @c parent argument.
25061     *
25062     * @see elm_ctxpopup_add()
25063     * @see elm_hover_parent_set()
25064     */
25065    EAPI void          elm_ctxpopup_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1, 2);
25066    /**
25067     * @brief Get the Ctxpopup's parent
25068     *
25069     * @param obj The ctxpopup object
25070     *
25071     * @see elm_ctxpopup_hover_parent_set() for more information
25072     */
25073    EAPI Evas_Object  *elm_ctxpopup_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25074    /**
25075     * @brief Clear all items in the given ctxpopup object.
25076     *
25077     * @param obj Ctxpopup object
25078     */
25079    EAPI void          elm_ctxpopup_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
25080    /**
25081     * @brief Change the ctxpopup's orientation to horizontal or vertical.
25082     *
25083     * @param obj Ctxpopup object
25084     * @param horizontal @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical
25085     */
25086    EAPI void          elm_ctxpopup_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
25087    /**
25088     * @brief Get the value of current ctxpopup object's orientation.
25089     *
25090     * @param obj Ctxpopup object
25091     * @return @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical mode (or errors)
25092     *
25093     * @see elm_ctxpopup_horizontal_set()
25094     */
25095    EAPI Eina_Bool     elm_ctxpopup_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25096    /**
25097     * @brief Add a new item to a ctxpopup object.
25098     *
25099     * @param obj Ctxpopup object
25100     * @param icon Icon to be set on new item
25101     * @param label The Label of the new item
25102     * @param func Convenience function called when item selected
25103     * @param data Data passed to @p func
25104     * @return A handle to the item added or @c NULL, on errors
25105     *
25106     * @warning Ctxpopup can't hold both an item list and a content at the same
25107     * time. When an item is added, any previous content will be removed.
25108     *
25109     * @see elm_ctxpopup_content_set()
25110     */
25111    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);
25112    /**
25113     * @brief Delete the given item in a ctxpopup object.
25114     *
25115     * @param it Ctxpopup item to be deleted
25116     *
25117     * @see elm_ctxpopup_item_append()
25118     */
25119    EAPI void          elm_ctxpopup_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25120    /**
25121     * @brief Set the ctxpopup item's state as disabled or enabled.
25122     *
25123     * @param it Ctxpopup item to be enabled/disabled
25124     * @param disabled @c EINA_TRUE to disable it, @c EINA_FALSE to enable it
25125     *
25126     * When disabled the item is greyed out to indicate it's state.
25127     */
25128    EAPI void          elm_ctxpopup_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
25129    /**
25130     * @brief Get the ctxpopup item's disabled/enabled state.
25131     *
25132     * @param it Ctxpopup item to be enabled/disabled
25133     * @return disabled @c EINA_TRUE, if disabled, @c EINA_FALSE otherwise
25134     *
25135     * @see elm_ctxpopup_item_disabled_set()
25136     */
25137    EAPI Eina_Bool     elm_ctxpopup_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25138    /**
25139     * @brief Get the icon object for the given ctxpopup item.
25140     *
25141     * @param it Ctxpopup item
25142     * @return icon object or @c NULL, if the item does not have icon or an error
25143     * occurred
25144     *
25145     * @see elm_ctxpopup_item_append()
25146     * @see elm_ctxpopup_item_icon_set()
25147     */
25148    EAPI Evas_Object  *elm_ctxpopup_item_icon_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25149    /**
25150     * @brief Sets the side icon associated with the ctxpopup item
25151     *
25152     * @param it Ctxpopup item
25153     * @param icon Icon object to be set
25154     *
25155     * Once the icon object is set, a previously set one will be deleted.
25156     * @warning Setting the same icon for two items will cause the icon to
25157     * dissapear from the first item.
25158     *
25159     * @see elm_ctxpopup_item_append()
25160     */
25161    EAPI void          elm_ctxpopup_item_icon_set(Elm_Object_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
25162    /**
25163     * @brief Get the label for the given ctxpopup item.
25164     *
25165     * @param it Ctxpopup item
25166     * @return label string or @c NULL, if the item does not have label or an
25167     * error occured
25168     *
25169     * @see elm_ctxpopup_item_append()
25170     * @see elm_ctxpopup_item_label_set()
25171     */
25172    EAPI const char   *elm_ctxpopup_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25173    /**
25174     * @brief (Re)set the label on the given ctxpopup item.
25175     *
25176     * @param it Ctxpopup item
25177     * @param label String to set as label
25178     */
25179    EAPI void          elm_ctxpopup_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
25180    /**
25181     * @brief Set an elm widget as the content of the ctxpopup.
25182     *
25183     * @param obj Ctxpopup object
25184     * @param content Content to be swallowed
25185     *
25186     * If the content object is already set, a previous one will bedeleted. If
25187     * you want to keep that old content object, use the
25188     * elm_ctxpopup_content_unset() function.
25189     *
25190     * @deprecated use elm_object_content_set()
25191     *
25192     * @warning Ctxpopup can't hold both a item list and a content at the same
25193     * time. When a content is set, any previous items will be removed.
25194     */
25195    EINA_DEPRECATED EAPI void          elm_ctxpopup_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1, 2);
25196    /**
25197     * @brief Unset the ctxpopup content
25198     *
25199     * @param obj Ctxpopup object
25200     * @return The content that was being used
25201     *
25202     * Unparent and return the content object which was set for this widget.
25203     *
25204     * @deprecated use elm_object_content_unset()
25205     *
25206     * @see elm_ctxpopup_content_set()
25207     */
25208    EINA_DEPRECATED EAPI Evas_Object  *elm_ctxpopup_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
25209    /**
25210     * @brief Set the direction priority of a ctxpopup.
25211     *
25212     * @param obj Ctxpopup object
25213     * @param first 1st priority of direction
25214     * @param second 2nd priority of direction
25215     * @param third 3th priority of direction
25216     * @param fourth 4th priority of direction
25217     *
25218     * This functions gives a chance to user to set the priority of ctxpopup
25219     * showing direction. This doesn't guarantee the ctxpopup will appear in the
25220     * requested direction.
25221     *
25222     * @see Elm_Ctxpopup_Direction
25223     */
25224    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);
25225    /**
25226     * @brief Get the direction priority of a ctxpopup.
25227     *
25228     * @param obj Ctxpopup object
25229     * @param first 1st priority of direction to be returned
25230     * @param second 2nd priority of direction to be returned
25231     * @param third 3th priority of direction to be returned
25232     * @param fourth 4th priority of direction to be returned
25233     *
25234     * @see elm_ctxpopup_direction_priority_set() for more information.
25235     */
25236    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);
25237
25238    /**
25239     * @brief Get the current direction of a ctxpopup.
25240     *
25241     * @param obj Ctxpopup object
25242     * @return current direction of a ctxpopup
25243     *
25244     * @warning Once the ctxpopup showed up, the direction would be determined
25245     */
25246    EAPI Elm_Ctxpopup_Direction elm_ctxpopup_direction_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25247
25248    /**
25249     * @}
25250     */
25251
25252    /* transit */
25253    /**
25254     *
25255     * @defgroup Transit Transit
25256     * @ingroup Elementary
25257     *
25258     * Transit is designed to apply various animated transition effects to @c
25259     * Evas_Object, such like translation, rotation, etc. For using these
25260     * effects, create an @ref Elm_Transit and add the desired transition effects.
25261     *
25262     * Once the effects are added into transit, they will be automatically
25263     * managed (their callback will be called until the duration is ended, and
25264     * they will be deleted on completion).
25265     *
25266     * Example:
25267     * @code
25268     * Elm_Transit *trans = elm_transit_add();
25269     * elm_transit_object_add(trans, obj);
25270     * elm_transit_effect_translation_add(trans, 0, 0, 280, 280
25271     * elm_transit_duration_set(transit, 1);
25272     * elm_transit_auto_reverse_set(transit, EINA_TRUE);
25273     * elm_transit_tween_mode_set(transit, ELM_TRANSIT_TWEEN_MODE_DECELERATE);
25274     * elm_transit_repeat_times_set(transit, 3);
25275     * @endcode
25276     *
25277     * Some transition effects are used to change the properties of objects. They
25278     * are:
25279     * @li @ref elm_transit_effect_translation_add
25280     * @li @ref elm_transit_effect_color_add
25281     * @li @ref elm_transit_effect_rotation_add
25282     * @li @ref elm_transit_effect_wipe_add
25283     * @li @ref elm_transit_effect_zoom_add
25284     * @li @ref elm_transit_effect_resizing_add
25285     *
25286     * Other transition effects are used to make one object disappear and another
25287     * object appear on its old place. These effects are:
25288     *
25289     * @li @ref elm_transit_effect_flip_add
25290     * @li @ref elm_transit_effect_resizable_flip_add
25291     * @li @ref elm_transit_effect_fade_add
25292     * @li @ref elm_transit_effect_blend_add
25293     *
25294     * It's also possible to make a transition chain with @ref
25295     * elm_transit_chain_transit_add.
25296     *
25297     * @warning We strongly recommend to use elm_transit just when edje can not do
25298     * the trick. Edje has more advantage than Elm_Transit, it has more flexibility and
25299     * animations can be manipulated inside the theme.
25300     *
25301     * List of examples:
25302     * @li @ref transit_example_01_explained
25303     * @li @ref transit_example_02_explained
25304     * @li @ref transit_example_03_c
25305     * @li @ref transit_example_04_c
25306     *
25307     * @{
25308     */
25309
25310    /**
25311     * @enum Elm_Transit_Tween_Mode
25312     *
25313     * The type of acceleration used in the transition.
25314     */
25315    typedef enum
25316      {
25317         ELM_TRANSIT_TWEEN_MODE_LINEAR, /**< Constant speed */
25318         ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL, /**< Starts slow, increase speed
25319                                              over time, then decrease again
25320                                              and stop slowly */
25321         ELM_TRANSIT_TWEEN_MODE_DECELERATE, /**< Starts fast and decrease
25322                                              speed over time */
25323         ELM_TRANSIT_TWEEN_MODE_ACCELERATE /**< Starts slow and increase speed
25324                                             over time */
25325      } Elm_Transit_Tween_Mode;
25326
25327    /**
25328     * @enum Elm_Transit_Effect_Flip_Axis
25329     *
25330     * The axis where flip effect should be applied.
25331     */
25332    typedef enum
25333      {
25334         ELM_TRANSIT_EFFECT_FLIP_AXIS_X, /**< Flip on X axis */
25335         ELM_TRANSIT_EFFECT_FLIP_AXIS_Y /**< Flip on Y axis */
25336      } Elm_Transit_Effect_Flip_Axis;
25337    /**
25338     * @enum Elm_Transit_Effect_Wipe_Dir
25339     *
25340     * The direction where the wipe effect should occur.
25341     */
25342    typedef enum
25343      {
25344         ELM_TRANSIT_EFFECT_WIPE_DIR_LEFT, /**< Wipe to the left */
25345         ELM_TRANSIT_EFFECT_WIPE_DIR_RIGHT, /**< Wipe to the right */
25346         ELM_TRANSIT_EFFECT_WIPE_DIR_UP, /**< Wipe up */
25347         ELM_TRANSIT_EFFECT_WIPE_DIR_DOWN /**< Wipe down */
25348      } Elm_Transit_Effect_Wipe_Dir;
25349    /** @enum Elm_Transit_Effect_Wipe_Type
25350     *
25351     * Whether the wipe effect should show or hide the object.
25352     */
25353    typedef enum
25354      {
25355         ELM_TRANSIT_EFFECT_WIPE_TYPE_HIDE, /**< Hide the object during the
25356                                              animation */
25357         ELM_TRANSIT_EFFECT_WIPE_TYPE_SHOW /**< Show the object during the
25358                                             animation */
25359      } Elm_Transit_Effect_Wipe_Type;
25360
25361    /**
25362     * @typedef Elm_Transit
25363     *
25364     * The Transit created with elm_transit_add(). This type has the information
25365     * about the objects which the transition will be applied, and the
25366     * transition effects that will be used. It also contains info about
25367     * duration, number of repetitions, auto-reverse, etc.
25368     */
25369    typedef struct _Elm_Transit Elm_Transit;
25370    typedef void Elm_Transit_Effect;
25371    /**
25372     * @typedef Elm_Transit_Effect_Transition_Cb
25373     *
25374     * Transition callback called for this effect on each transition iteration.
25375     */
25376    typedef void (*Elm_Transit_Effect_Transition_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit, double progress);
25377    /**
25378     * Elm_Transit_Effect_End_Cb
25379     *
25380     * Transition callback called for this effect when the transition is over.
25381     */
25382    typedef void (*Elm_Transit_Effect_End_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit);
25383
25384    /**
25385     * Elm_Transit_Del_Cb
25386     *
25387     * A callback called when the transit is deleted.
25388     */
25389    typedef void (*Elm_Transit_Del_Cb) (void *data, Elm_Transit *transit);
25390
25391    /**
25392     * Add new transit.
25393     *
25394     * @note Is not necessary to delete the transit object, it will be deleted at
25395     * the end of its operation.
25396     * @note The transit will start playing when the program enter in the main loop, is not
25397     * necessary to give a start to the transit.
25398     *
25399     * @return The transit object.
25400     *
25401     * @ingroup Transit
25402     */
25403    EAPI Elm_Transit                *elm_transit_add(void);
25404
25405    /**
25406     * Stops the animation and delete the @p transit object.
25407     *
25408     * Call this function if you wants to stop the animation before the duration
25409     * time. Make sure the @p transit object is still alive with
25410     * elm_transit_del_cb_set() function.
25411     * All added effects will be deleted, calling its repective data_free_cb
25412     * functions. The function setted by elm_transit_del_cb_set() will be called.
25413     *
25414     * @see elm_transit_del_cb_set()
25415     *
25416     * @param transit The transit object to be deleted.
25417     *
25418     * @ingroup Transit
25419     * @warning Just call this function if you are sure the transit is alive.
25420     */
25421    EAPI void                        elm_transit_del(Elm_Transit *transit) EINA_ARG_NONNULL(1);
25422
25423    /**
25424     * Add a new effect to the transit.
25425     *
25426     * @note The cb function and the data are the key to the effect. If you try to
25427     * add an already added effect, nothing is done.
25428     * @note After the first addition of an effect in @p transit, if its
25429     * effect list become empty again, the @p transit will be killed by
25430     * elm_transit_del(transit) function.
25431     *
25432     * Exemple:
25433     * @code
25434     * Elm_Transit *transit = elm_transit_add();
25435     * elm_transit_effect_add(transit,
25436     *                        elm_transit_effect_blend_op,
25437     *                        elm_transit_effect_blend_context_new(),
25438     *                        elm_transit_effect_blend_context_free);
25439     * @endcode
25440     *
25441     * @param transit The transit object.
25442     * @param transition_cb The operation function. It is called when the
25443     * animation begins, it is the function that actually performs the animation.
25444     * It is called with the @p data, @p transit and the time progression of the
25445     * animation (a double value between 0.0 and 1.0).
25446     * @param effect The context data of the effect.
25447     * @param end_cb The function to free the context data, it will be called
25448     * at the end of the effect, it must finalize the animation and free the
25449     * @p data.
25450     *
25451     * @ingroup Transit
25452     * @warning The transit free the context data at the and of the transition with
25453     * the data_free_cb function, do not use the context data in another transit.
25454     */
25455    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);
25456
25457    /**
25458     * Delete an added effect.
25459     *
25460     * This function will remove the effect from the @p transit, calling the
25461     * data_free_cb to free the @p data.
25462     *
25463     * @see elm_transit_effect_add()
25464     *
25465     * @note If the effect is not found, nothing is done.
25466     * @note If the effect list become empty, this function will call
25467     * elm_transit_del(transit), that is, it will kill the @p transit.
25468     *
25469     * @param transit The transit object.
25470     * @param transition_cb The operation function.
25471     * @param effect The context data of the effect.
25472     *
25473     * @ingroup Transit
25474     */
25475    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);
25476
25477    /**
25478     * Add new object to apply the effects.
25479     *
25480     * @note After the first addition of an object in @p transit, if its
25481     * object list become empty again, the @p transit will be killed by
25482     * elm_transit_del(transit) function.
25483     * @note If the @p obj belongs to another transit, the @p obj will be
25484     * removed from it and it will only belong to the @p transit. If the old
25485     * transit stays without objects, it will die.
25486     * @note When you add an object into the @p transit, its state from
25487     * evas_object_pass_events_get(obj) is saved, and it is applied when the
25488     * transit ends, if you change this state whith evas_object_pass_events_set()
25489     * after add the object, this state will change again when @p transit stops to
25490     * run.
25491     *
25492     * @param transit The transit object.
25493     * @param obj Object to be animated.
25494     *
25495     * @ingroup Transit
25496     * @warning It is not allowed to add a new object after transit begins to go.
25497     */
25498    EAPI void                        elm_transit_object_add(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
25499
25500    /**
25501     * Removes an added object from the transit.
25502     *
25503     * @note If the @p obj is not in the @p transit, nothing is done.
25504     * @note If the list become empty, this function will call
25505     * elm_transit_del(transit), that is, it will kill the @p transit.
25506     *
25507     * @param transit The transit object.
25508     * @param obj Object to be removed from @p transit.
25509     *
25510     * @ingroup Transit
25511     * @warning It is not allowed to remove objects after transit begins to go.
25512     */
25513    EAPI void                        elm_transit_object_remove(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
25514
25515    /**
25516     * Get the objects of the transit.
25517     *
25518     * @param transit The transit object.
25519     * @return a Eina_List with the objects from the transit.
25520     *
25521     * @ingroup Transit
25522     */
25523    EAPI const Eina_List            *elm_transit_objects_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25524
25525    /**
25526     * Enable/disable keeping up the objects states.
25527     * If it is not kept, the objects states will be reset when transition ends.
25528     *
25529     * @note @p transit can not be NULL.
25530     * @note One state includes geometry, color, map data.
25531     *
25532     * @param transit The transit object.
25533     * @param state_keep Keeping or Non Keeping.
25534     *
25535     * @ingroup Transit
25536     */
25537    EAPI void                        elm_transit_objects_final_state_keep_set(Elm_Transit *transit, Eina_Bool state_keep) EINA_ARG_NONNULL(1);
25538
25539    /**
25540     * Get a value whether the objects states will be reset or not.
25541     *
25542     * @note @p transit can not be NULL
25543     *
25544     * @see elm_transit_objects_final_state_keep_set()
25545     *
25546     * @param transit The transit object.
25547     * @return EINA_TRUE means the states of the objects will be reset.
25548     * If @p transit is NULL, EINA_FALSE is returned
25549     *
25550     * @ingroup Transit
25551     */
25552    EAPI Eina_Bool                   elm_transit_objects_final_state_keep_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25553
25554    /**
25555     * Set the event enabled when transit is operating.
25556     *
25557     * If @p enabled is EINA_TRUE, the objects of the transit will receives
25558     * events from mouse and keyboard during the animation.
25559     * @note When you add an object with elm_transit_object_add(), its state from
25560     * evas_object_pass_events_get(obj) is saved, and it is applied when the
25561     * transit ends, if you change this state with evas_object_pass_events_set()
25562     * after adding the object, this state will change again when @p transit stops
25563     * to run.
25564     *
25565     * @param transit The transit object.
25566     * @param enabled Events are received when enabled is @c EINA_TRUE, and
25567     * ignored otherwise.
25568     *
25569     * @ingroup Transit
25570     */
25571    EAPI void                        elm_transit_event_enabled_set(Elm_Transit *transit, Eina_Bool enabled) EINA_ARG_NONNULL(1);
25572
25573    /**
25574     * Get the value of event enabled status.
25575     *
25576     * @see elm_transit_event_enabled_set()
25577     *
25578     * @param transit The Transit object
25579     * @return EINA_TRUE, when event is enabled. If @p transit is NULL
25580     * EINA_FALSE is returned
25581     *
25582     * @ingroup Transit
25583     */
25584    EAPI Eina_Bool                   elm_transit_event_enabled_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25585
25586    /**
25587     * Set the user-callback function when the transit is deleted.
25588     *
25589     * @note Using this function twice will overwrite the first function setted.
25590     * @note the @p transit object will be deleted after call @p cb function.
25591     *
25592     * @param transit The transit object.
25593     * @param cb Callback function pointer. This function will be called before
25594     * the deletion of the transit.
25595     * @param data Callback funtion user data. It is the @p op parameter.
25596     *
25597     * @ingroup Transit
25598     */
25599    EAPI void                        elm_transit_del_cb_set(Elm_Transit *transit, Elm_Transit_Del_Cb cb, void *data) EINA_ARG_NONNULL(1);
25600
25601    /**
25602     * Set reverse effect automatically.
25603     *
25604     * If auto reverse is setted, after running the effects with the progress
25605     * parameter from 0 to 1, it will call the effecs again with the progress
25606     * from 1 to 0. The transit will last for a time iqual to (2 * duration * repeat),
25607     * where the duration was setted with the function elm_transit_add and
25608     * the repeat with the function elm_transit_repeat_times_set().
25609     *
25610     * @param transit The transit object.
25611     * @param reverse EINA_TRUE means the auto_reverse is on.
25612     *
25613     * @ingroup Transit
25614     */
25615    EAPI void                        elm_transit_auto_reverse_set(Elm_Transit *transit, Eina_Bool reverse) EINA_ARG_NONNULL(1);
25616
25617    /**
25618     * Get if the auto reverse is on.
25619     *
25620     * @see elm_transit_auto_reverse_set()
25621     *
25622     * @param transit The transit object.
25623     * @return EINA_TRUE means auto reverse is on. If @p transit is NULL
25624     * EINA_FALSE is returned
25625     *
25626     * @ingroup Transit
25627     */
25628    EAPI Eina_Bool                   elm_transit_auto_reverse_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25629
25630    /**
25631     * Set the transit repeat count. Effect will be repeated by repeat count.
25632     *
25633     * This function sets the number of repetition the transit will run after
25634     * the first one, that is, if @p repeat is 1, the transit will run 2 times.
25635     * If the @p repeat is a negative number, it will repeat infinite times.
25636     *
25637     * @note If this function is called during the transit execution, the transit
25638     * will run @p repeat times, ignoring the times it already performed.
25639     *
25640     * @param transit The transit object
25641     * @param repeat Repeat count
25642     *
25643     * @ingroup Transit
25644     */
25645    EAPI void                        elm_transit_repeat_times_set(Elm_Transit *transit, int repeat) EINA_ARG_NONNULL(1);
25646
25647    /**
25648     * Get the transit repeat count.
25649     *
25650     * @see elm_transit_repeat_times_set()
25651     *
25652     * @param transit The Transit object.
25653     * @return The repeat count. If @p transit is NULL
25654     * 0 is returned
25655     *
25656     * @ingroup Transit
25657     */
25658    EAPI int                         elm_transit_repeat_times_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25659
25660    /**
25661     * Set the transit animation acceleration type.
25662     *
25663     * This function sets the tween mode of the transit that can be:
25664     * ELM_TRANSIT_TWEEN_MODE_LINEAR - The default mode.
25665     * ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL - Starts in accelerate mode and ends decelerating.
25666     * ELM_TRANSIT_TWEEN_MODE_DECELERATE - The animation will be slowed over time.
25667     * ELM_TRANSIT_TWEEN_MODE_ACCELERATE - The animation will accelerate over time.
25668     *
25669     * @param transit The transit object.
25670     * @param tween_mode The tween type.
25671     *
25672     * @ingroup Transit
25673     */
25674    EAPI void                        elm_transit_tween_mode_set(Elm_Transit *transit, Elm_Transit_Tween_Mode tween_mode) EINA_ARG_NONNULL(1);
25675
25676    /**
25677     * Get the transit animation acceleration type.
25678     *
25679     * @note @p transit can not be NULL
25680     *
25681     * @param transit The transit object.
25682     * @return The tween type. If @p transit is NULL
25683     * ELM_TRANSIT_TWEEN_MODE_LINEAR is returned.
25684     *
25685     * @ingroup Transit
25686     */
25687    EAPI Elm_Transit_Tween_Mode      elm_transit_tween_mode_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25688
25689    /**
25690     * Set the transit animation time
25691     *
25692     * @note @p transit can not be NULL
25693     *
25694     * @param transit The transit object.
25695     * @param duration The animation time.
25696     *
25697     * @ingroup Transit
25698     */
25699    EAPI void                        elm_transit_duration_set(Elm_Transit *transit, double duration) EINA_ARG_NONNULL(1);
25700
25701    /**
25702     * Get the transit animation time
25703     *
25704     * @note @p transit can not be NULL
25705     *
25706     * @param transit The transit object.
25707     *
25708     * @return The transit animation time.
25709     *
25710     * @ingroup Transit
25711     */
25712    EAPI double                      elm_transit_duration_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25713
25714    /**
25715     * Starts the transition.
25716     * Once this API is called, the transit begins to measure the time.
25717     *
25718     * @note @p transit can not be NULL
25719     *
25720     * @param transit The transit object.
25721     *
25722     * @ingroup Transit
25723     */
25724    EAPI void                        elm_transit_go(Elm_Transit *transit) EINA_ARG_NONNULL(1);
25725
25726    /**
25727     * Pause/Resume the transition.
25728     *
25729     * If you call elm_transit_go again, the transit will be started from the
25730     * beginning, and will be unpaused.
25731     *
25732     * @note @p transit can not be NULL
25733     *
25734     * @param transit The transit object.
25735     * @param paused Whether the transition should be paused or not.
25736     *
25737     * @ingroup Transit
25738     */
25739    EAPI void                        elm_transit_paused_set(Elm_Transit *transit, Eina_Bool paused) EINA_ARG_NONNULL(1);
25740
25741    /**
25742     * Get the value of paused status.
25743     *
25744     * @see elm_transit_paused_set()
25745     *
25746     * @note @p transit can not be NULL
25747     *
25748     * @param transit The transit object.
25749     * @return EINA_TRUE means transition is paused. If @p transit is NULL
25750     * EINA_FALSE is returned
25751     *
25752     * @ingroup Transit
25753     */
25754    EAPI Eina_Bool                   elm_transit_paused_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25755
25756    /**
25757     * Get the time progression of the animation (a double value between 0.0 and 1.0).
25758     *
25759     * The value returned is a fraction (current time / total time). It
25760     * represents the progression position relative to the total.
25761     *
25762     * @note @p transit can not be NULL
25763     *
25764     * @param transit The transit object.
25765     *
25766     * @return The time progression value. If @p transit is NULL
25767     * 0 is returned
25768     *
25769     * @ingroup Transit
25770     */
25771    EAPI double                      elm_transit_progress_value_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
25772
25773    /**
25774     * Makes the chain relationship between two transits.
25775     *
25776     * @note @p transit can not be NULL. Transit would have multiple chain transits.
25777     * @note @p chain_transit can not be NULL. Chain transits could be chained to the only one transit.
25778     *
25779     * @param transit The transit object.
25780     * @param chain_transit The chain transit object. This transit will be operated
25781     *        after transit is done.
25782     *
25783     * This function adds @p chain_transit transition to a chain after the @p
25784     * transit, and will be started as soon as @p transit ends. See @ref
25785     * transit_example_02_explained for a full example.
25786     *
25787     * @ingroup Transit
25788     */
25789    EAPI void                        elm_transit_chain_transit_add(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1, 2);
25790
25791    /**
25792     * Cut off the chain relationship between two transits.
25793     *
25794     * @note @p transit can not be NULL. Transit would have the chain relationship with @p chain transit.
25795     * @note @p chain_transit can not be NULL. Chain transits should be chained to the @p transit.
25796     *
25797     * @param transit The transit object.
25798     * @param chain_transit The chain transit object.
25799     *
25800     * This function remove the @p chain_transit transition from the @p transit.
25801     *
25802     * @ingroup Transit
25803     */
25804    EAPI void                        elm_transit_chain_transit_del(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1,2);
25805
25806    /**
25807     * Get the current chain transit list.
25808     *
25809     * @note @p transit can not be NULL.
25810     *
25811     * @param transit The transit object.
25812     * @return chain transit list.
25813     *
25814     * @ingroup Transit
25815     */
25816    EAPI Eina_List                  *elm_transit_chain_transits_get(const Elm_Transit *transit);
25817
25818    /**
25819     * Add the Resizing Effect to Elm_Transit.
25820     *
25821     * @note This API is one of the facades. It creates resizing effect context
25822     * and add it's required APIs to elm_transit_effect_add.
25823     *
25824     * @see elm_transit_effect_add()
25825     *
25826     * @param transit Transit object.
25827     * @param from_w Object width size when effect begins.
25828     * @param from_h Object height size when effect begins.
25829     * @param to_w Object width size when effect ends.
25830     * @param to_h Object height size when effect ends.
25831     * @return Resizing effect context data.
25832     *
25833     * @ingroup Transit
25834     */
25835    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);
25836
25837    /**
25838     * Add the Translation Effect to Elm_Transit.
25839     *
25840     * @note This API is one of the facades. It creates translation effect context
25841     * and add it's required APIs to elm_transit_effect_add.
25842     *
25843     * @see elm_transit_effect_add()
25844     *
25845     * @param transit Transit object.
25846     * @param from_dx X Position variation when effect begins.
25847     * @param from_dy Y Position variation when effect begins.
25848     * @param to_dx X Position variation when effect ends.
25849     * @param to_dy Y Position variation when effect ends.
25850     * @return Translation effect context data.
25851     *
25852     * @ingroup Transit
25853     * @warning It is highly recommended just create a transit with this effect when
25854     * the window that the objects of the transit belongs has already been created.
25855     * This is because this effect needs the geometry information about the objects,
25856     * and if the window was not created yet, it can get a wrong information.
25857     */
25858    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);
25859
25860    /**
25861     * Add the Zoom Effect to Elm_Transit.
25862     *
25863     * @note This API is one of the facades. It creates zoom effect context
25864     * and add it's required APIs to elm_transit_effect_add.
25865     *
25866     * @see elm_transit_effect_add()
25867     *
25868     * @param transit Transit object.
25869     * @param from_rate Scale rate when effect begins (1 is current rate).
25870     * @param to_rate Scale rate when effect ends.
25871     * @return Zoom effect context data.
25872     *
25873     * @ingroup Transit
25874     * @warning It is highly recommended just create a transit with this effect when
25875     * the window that the objects of the transit belongs has already been created.
25876     * This is because this effect needs the geometry information about the objects,
25877     * and if the window was not created yet, it can get a wrong information.
25878     */
25879    EAPI Elm_Transit_Effect *elm_transit_effect_zoom_add(Elm_Transit *transit, float from_rate, float to_rate);
25880
25881    /**
25882     * Add the Flip Effect to Elm_Transit.
25883     *
25884     * @note This API is one of the facades. It creates flip effect context
25885     * and add it's required APIs to elm_transit_effect_add.
25886     * @note This effect is applied to each pair of objects in the order they are listed
25887     * in the transit list of objects. The first object in the pair will be the
25888     * "front" object and the second will be the "back" object.
25889     *
25890     * @see elm_transit_effect_add()
25891     *
25892     * @param transit Transit object.
25893     * @param axis Flipping Axis(X or Y).
25894     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
25895     * @return Flip effect context data.
25896     *
25897     * @ingroup Transit
25898     * @warning It is highly recommended just create a transit with this effect when
25899     * the window that the objects of the transit belongs has already been created.
25900     * This is because this effect needs the geometry information about the objects,
25901     * and if the window was not created yet, it can get a wrong information.
25902     */
25903    EAPI Elm_Transit_Effect *elm_transit_effect_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
25904
25905    /**
25906     * Add the Resizable Flip Effect to Elm_Transit.
25907     *
25908     * @note This API is one of the facades. It creates resizable flip effect context
25909     * and add it's required APIs to elm_transit_effect_add.
25910     * @note This effect is applied to each pair of objects in the order they are listed
25911     * in the transit list of objects. The first object in the pair will be the
25912     * "front" object and the second will be the "back" object.
25913     *
25914     * @see elm_transit_effect_add()
25915     *
25916     * @param transit Transit object.
25917     * @param axis Flipping Axis(X or Y).
25918     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
25919     * @return Resizable flip effect context data.
25920     *
25921     * @ingroup Transit
25922     * @warning It is highly recommended just create a transit with this effect when
25923     * the window that the objects of the transit belongs has already been created.
25924     * This is because this effect needs the geometry information about the objects,
25925     * and if the window was not created yet, it can get a wrong information.
25926     */
25927    EAPI Elm_Transit_Effect *elm_transit_effect_resizable_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
25928
25929    /**
25930     * Add the Wipe Effect to Elm_Transit.
25931     *
25932     * @note This API is one of the facades. It creates wipe effect context
25933     * and add it's required APIs to elm_transit_effect_add.
25934     *
25935     * @see elm_transit_effect_add()
25936     *
25937     * @param transit Transit object.
25938     * @param type Wipe type. Hide or show.
25939     * @param dir Wipe Direction.
25940     * @return Wipe effect context data.
25941     *
25942     * @ingroup Transit
25943     * @warning It is highly recommended just create a transit with this effect when
25944     * the window that the objects of the transit belongs has already been created.
25945     * This is because this effect needs the geometry information about the objects,
25946     * and if the window was not created yet, it can get a wrong information.
25947     */
25948    EAPI Elm_Transit_Effect *elm_transit_effect_wipe_add(Elm_Transit *transit, Elm_Transit_Effect_Wipe_Type type, Elm_Transit_Effect_Wipe_Dir dir);
25949
25950    /**
25951     * Add the Color Effect to Elm_Transit.
25952     *
25953     * @note This API is one of the facades. It creates color effect context
25954     * and add it's required APIs to elm_transit_effect_add.
25955     *
25956     * @see elm_transit_effect_add()
25957     *
25958     * @param transit        Transit object.
25959     * @param  from_r        RGB R when effect begins.
25960     * @param  from_g        RGB G when effect begins.
25961     * @param  from_b        RGB B when effect begins.
25962     * @param  from_a        RGB A when effect begins.
25963     * @param  to_r          RGB R when effect ends.
25964     * @param  to_g          RGB G when effect ends.
25965     * @param  to_b          RGB B when effect ends.
25966     * @param  to_a          RGB A when effect ends.
25967     * @return               Color effect context data.
25968     *
25969     * @ingroup Transit
25970     */
25971    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);
25972
25973    /**
25974     * Add the Fade Effect to Elm_Transit.
25975     *
25976     * @note This API is one of the facades. It creates fade effect context
25977     * and add it's required APIs to elm_transit_effect_add.
25978     * @note This effect is applied to each pair of objects in the order they are listed
25979     * in the transit list of objects. The first object in the pair will be the
25980     * "before" object and the second will be the "after" object.
25981     *
25982     * @see elm_transit_effect_add()
25983     *
25984     * @param transit Transit object.
25985     * @return Fade effect context data.
25986     *
25987     * @ingroup Transit
25988     * @warning It is highly recommended just create a transit with this effect when
25989     * the window that the objects of the transit belongs has already been created.
25990     * This is because this effect needs the color information about the objects,
25991     * and if the window was not created yet, it can get a wrong information.
25992     */
25993    EAPI Elm_Transit_Effect *elm_transit_effect_fade_add(Elm_Transit *transit);
25994
25995    /**
25996     * Add the Blend Effect to Elm_Transit.
25997     *
25998     * @note This API is one of the facades. It creates blend effect context
25999     * and add it's required APIs to elm_transit_effect_add.
26000     * @note This effect is applied to each pair of objects in the order they are listed
26001     * in the transit list of objects. The first object in the pair will be the
26002     * "before" object and the second will be the "after" object.
26003     *
26004     * @see elm_transit_effect_add()
26005     *
26006     * @param transit Transit object.
26007     * @return Blend effect context data.
26008     *
26009     * @ingroup Transit
26010     * @warning It is highly recommended just create a transit with this effect when
26011     * the window that the objects of the transit belongs has already been created.
26012     * This is because this effect needs the color information about the objects,
26013     * and if the window was not created yet, it can get a wrong information.
26014     */
26015    EAPI Elm_Transit_Effect *elm_transit_effect_blend_add(Elm_Transit *transit);
26016
26017    /**
26018     * Add the Rotation Effect to Elm_Transit.
26019     *
26020     * @note This API is one of the facades. It creates rotation effect context
26021     * and add it's required APIs to elm_transit_effect_add.
26022     *
26023     * @see elm_transit_effect_add()
26024     *
26025     * @param transit Transit object.
26026     * @param from_degree Degree when effect begins.
26027     * @param to_degree Degree when effect is ends.
26028     * @return Rotation effect context data.
26029     *
26030     * @ingroup Transit
26031     * @warning It is highly recommended just create a transit with this effect when
26032     * the window that the objects of the transit belongs has already been created.
26033     * This is because this effect needs the geometry information about the objects,
26034     * and if the window was not created yet, it can get a wrong information.
26035     */
26036    EAPI Elm_Transit_Effect *elm_transit_effect_rotation_add(Elm_Transit *transit, float from_degree, float to_degree);
26037
26038    /**
26039     * Add the ImageAnimation Effect to Elm_Transit.
26040     *
26041     * @note This API is one of the facades. It creates image animation effect context
26042     * and add it's required APIs to elm_transit_effect_add.
26043     * The @p images parameter is a list images paths. This list and
26044     * its contents will be deleted at the end of the effect by
26045     * elm_transit_effect_image_animation_context_free() function.
26046     *
26047     * Example:
26048     * @code
26049     * char buf[PATH_MAX];
26050     * Eina_List *images = NULL;
26051     * Elm_Transit *transi = elm_transit_add();
26052     *
26053     * snprintf(buf, sizeof(buf), "%s/images/icon_11.png", PACKAGE_DATA_DIR);
26054     * images = eina_list_append(images, eina_stringshare_add(buf));
26055     *
26056     * snprintf(buf, sizeof(buf), "%s/images/logo_small.png", PACKAGE_DATA_DIR);
26057     * images = eina_list_append(images, eina_stringshare_add(buf));
26058     * elm_transit_effect_image_animation_add(transi, images);
26059     *
26060     * @endcode
26061     *
26062     * @see elm_transit_effect_add()
26063     *
26064     * @param transit Transit object.
26065     * @param images Eina_List of images file paths. This list and
26066     * its contents will be deleted at the end of the effect by
26067     * elm_transit_effect_image_animation_context_free() function.
26068     * @return Image Animation effect context data.
26069     *
26070     * @ingroup Transit
26071     */
26072    EAPI Elm_Transit_Effect *elm_transit_effect_image_animation_add(Elm_Transit *transit, Eina_List *images);
26073    /**
26074     * @}
26075     */
26076
26077   typedef struct _Elm_Store                      Elm_Store;
26078   typedef struct _Elm_Store_Filesystem           Elm_Store_Filesystem;
26079   typedef struct _Elm_Store_Item                 Elm_Store_Item;
26080   typedef struct _Elm_Store_Item_Filesystem      Elm_Store_Item_Filesystem;
26081   typedef struct _Elm_Store_Item_Info            Elm_Store_Item_Info;
26082   typedef struct _Elm_Store_Item_Info_Filesystem Elm_Store_Item_Info_Filesystem;
26083   typedef struct _Elm_Store_Item_Mapping         Elm_Store_Item_Mapping;
26084   typedef struct _Elm_Store_Item_Mapping_Empty   Elm_Store_Item_Mapping_Empty;
26085   typedef struct _Elm_Store_Item_Mapping_Icon    Elm_Store_Item_Mapping_Icon;
26086   typedef struct _Elm_Store_Item_Mapping_Photo   Elm_Store_Item_Mapping_Photo;
26087   typedef struct _Elm_Store_Item_Mapping_Custom  Elm_Store_Item_Mapping_Custom;
26088
26089   typedef Eina_Bool (*Elm_Store_Item_List_Cb) (void *data, Elm_Store_Item_Info *info);
26090   typedef void      (*Elm_Store_Item_Fetch_Cb) (void *data, Elm_Store_Item *sti);
26091   typedef void      (*Elm_Store_Item_Unfetch_Cb) (void *data, Elm_Store_Item *sti);
26092   typedef void     *(*Elm_Store_Item_Mapping_Cb) (void *data, Elm_Store_Item *sti, const char *part);
26093
26094   typedef enum
26095     {
26096        ELM_STORE_ITEM_MAPPING_NONE = 0,
26097        ELM_STORE_ITEM_MAPPING_LABEL, // const char * -> label
26098        ELM_STORE_ITEM_MAPPING_STATE, // Eina_Bool -> state
26099        ELM_STORE_ITEM_MAPPING_ICON, // char * -> icon path
26100        ELM_STORE_ITEM_MAPPING_PHOTO, // char * -> photo path
26101        ELM_STORE_ITEM_MAPPING_CUSTOM, // item->custom(it->data, it, part) -> void * (-> any)
26102        // can add more here as needed by common apps
26103        ELM_STORE_ITEM_MAPPING_LAST
26104     } Elm_Store_Item_Mapping_Type;
26105
26106   struct _Elm_Store_Item_Mapping_Icon
26107     {
26108        // FIXME: allow edje file icons
26109        int                   w, h;
26110        Elm_Icon_Lookup_Order lookup_order;
26111        Eina_Bool             standard_name : 1;
26112        Eina_Bool             no_scale : 1;
26113        Eina_Bool             smooth : 1;
26114        Eina_Bool             scale_up : 1;
26115        Eina_Bool             scale_down : 1;
26116     };
26117
26118   struct _Elm_Store_Item_Mapping_Empty
26119     {
26120        Eina_Bool             dummy;
26121     };
26122
26123   struct _Elm_Store_Item_Mapping_Photo
26124     {
26125        int                   size;
26126     };
26127
26128   struct _Elm_Store_Item_Mapping_Custom
26129     {
26130        Elm_Store_Item_Mapping_Cb func;
26131     };
26132
26133   struct _Elm_Store_Item_Mapping
26134     {
26135        Elm_Store_Item_Mapping_Type     type;
26136        const char                     *part;
26137        int                             offset;
26138        union
26139          {
26140             Elm_Store_Item_Mapping_Empty  empty;
26141             Elm_Store_Item_Mapping_Icon   icon;
26142             Elm_Store_Item_Mapping_Photo  photo;
26143             Elm_Store_Item_Mapping_Custom custom;
26144             // add more types here
26145          } details;
26146     };
26147
26148   struct _Elm_Store_Item_Info
26149     {
26150       Elm_Genlist_Item_Class       *item_class;
26151       const Elm_Store_Item_Mapping *mapping;
26152       void                         *data;
26153       char                         *sort_id;
26154     };
26155
26156   struct _Elm_Store_Item_Info_Filesystem
26157     {
26158       Elm_Store_Item_Info  base;
26159       char                *path;
26160     };
26161
26162 #define ELM_STORE_ITEM_MAPPING_END { ELM_STORE_ITEM_MAPPING_NONE, NULL, 0, { .empty = { EINA_TRUE } } }
26163 #define ELM_STORE_ITEM_MAPPING_OFFSET(st, it) offsetof(st, it)
26164
26165   EAPI void                    elm_store_free(Elm_Store *st);
26166
26167   EAPI Elm_Store              *elm_store_filesystem_new(void);
26168   EAPI void                    elm_store_filesystem_directory_set(Elm_Store *st, const char *dir) EINA_ARG_NONNULL(1);
26169   EAPI const char             *elm_store_filesystem_directory_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
26170   EAPI const char             *elm_store_item_filesystem_path_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
26171
26172   EAPI void                    elm_store_target_genlist_set(Elm_Store *st, Evas_Object *obj) EINA_ARG_NONNULL(1);
26173
26174   EAPI void                    elm_store_cache_set(Elm_Store *st, int max) EINA_ARG_NONNULL(1);
26175   EAPI int                     elm_store_cache_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
26176   EAPI void                    elm_store_list_func_set(Elm_Store *st, Elm_Store_Item_List_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
26177   EAPI void                    elm_store_fetch_func_set(Elm_Store *st, Elm_Store_Item_Fetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
26178   EAPI void                    elm_store_fetch_thread_set(Elm_Store *st, Eina_Bool use_thread) EINA_ARG_NONNULL(1);
26179   EAPI Eina_Bool               elm_store_fetch_thread_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
26180
26181   EAPI void                    elm_store_unfetch_func_set(Elm_Store *st, Elm_Store_Item_Unfetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
26182   EAPI void                    elm_store_sorted_set(Elm_Store *st, Eina_Bool sorted) EINA_ARG_NONNULL(1);
26183   EAPI Eina_Bool               elm_store_sorted_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
26184   EAPI void                    elm_store_item_data_set(Elm_Store_Item *sti, void *data) EINA_ARG_NONNULL(1);
26185   EAPI void                   *elm_store_item_data_get(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
26186   EAPI const Elm_Store        *elm_store_item_store_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
26187   EAPI const Elm_Genlist_Item *elm_store_item_genlist_item_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
26188
26189    /**
26190     * @defgroup SegmentControl SegmentControl
26191     * @ingroup Elementary
26192     *
26193     * @image html img/widget/segment_control/preview-00.png
26194     * @image latex img/widget/segment_control/preview-00.eps width=\textwidth
26195     *
26196     * @image html img/segment_control.png
26197     * @image latex img/segment_control.eps width=\textwidth
26198     *
26199     * Segment control widget is a horizontal control made of multiple segment
26200     * items, each segment item functioning similar to discrete two state button.
26201     * A segment control groups the items together and provides compact
26202     * single button with multiple equal size segments.
26203     *
26204     * Segment item size is determined by base widget
26205     * size and the number of items added.
26206     * Only one segment item can be at selected state. A segment item can display
26207     * combination of Text and any Evas_Object like Images or other widget.
26208     *
26209     * Smart callbacks one can listen to:
26210     * - "changed" - When the user clicks on a segment item which is not
26211     *   previously selected and get selected. The event_info parameter is the
26212     *   segment item index.
26213     *
26214     * Available styles for it:
26215     * - @c "default"
26216     *
26217     * Here is an example on its usage:
26218     * @li @ref segment_control_example
26219     */
26220
26221    /**
26222     * @addtogroup SegmentControl
26223     * @{
26224     */
26225
26226    typedef struct _Elm_Segment_Item Elm_Segment_Item; /**< Item handle for a segment control widget. */
26227
26228    /**
26229     * Add a new segment control widget to the given parent Elementary
26230     * (container) object.
26231     *
26232     * @param parent The parent object.
26233     * @return a new segment control widget handle or @c NULL, on errors.
26234     *
26235     * This function inserts a new segment control widget on the canvas.
26236     *
26237     * @ingroup SegmentControl
26238     */
26239    EAPI Evas_Object      *elm_segment_control_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26240
26241    /**
26242     * Append a new item to the segment control object.
26243     *
26244     * @param obj The segment control object.
26245     * @param icon The icon object to use for the left side of the item. An
26246     * icon can be any Evas object, but usually it is an icon created
26247     * with elm_icon_add().
26248     * @param label The label of the item.
26249     *        Note that, NULL is different from empty string "".
26250     * @return The created item or @c NULL upon failure.
26251     *
26252     * A new item will be created and appended to the segment control, i.e., will
26253     * be set as @b last item.
26254     *
26255     * If it should be inserted at another position,
26256     * elm_segment_control_item_insert_at() should be used instead.
26257     *
26258     * Items created with this function can be deleted with function
26259     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
26260     *
26261     * @note @p label set to @c NULL is different from empty string "".
26262     * If an item
26263     * only has icon, it will be displayed bigger and centered. If it has
26264     * icon and label, even that an empty string, icon will be smaller and
26265     * positioned at left.
26266     *
26267     * Simple example:
26268     * @code
26269     * sc = elm_segment_control_add(win);
26270     * ic = elm_icon_add(win);
26271     * elm_icon_file_set(ic, "path/to/image", NULL);
26272     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
26273     * elm_segment_control_item_add(sc, ic, "label");
26274     * evas_object_show(sc);
26275     * @endcode
26276     *
26277     * @see elm_segment_control_item_insert_at()
26278     * @see elm_segment_control_item_del()
26279     *
26280     * @ingroup SegmentControl
26281     */
26282    EAPI Elm_Segment_Item *elm_segment_control_item_add(Evas_Object *obj, Evas_Object *icon, const char *label) EINA_ARG_NONNULL(1);
26283
26284    /**
26285     * Insert a new item to the segment control object at specified position.
26286     *
26287     * @param obj The segment control object.
26288     * @param icon The icon object to use for the left side of the item. An
26289     * icon can be any Evas object, but usually it is an icon created
26290     * with elm_icon_add().
26291     * @param label The label of the item.
26292     * @param index Item position. Value should be between 0 and items count.
26293     * @return The created item or @c NULL upon failure.
26294
26295     * Index values must be between @c 0, when item will be prepended to
26296     * segment control, and items count, that can be get with
26297     * elm_segment_control_item_count_get(), case when item will be appended
26298     * to segment control, just like elm_segment_control_item_add().
26299     *
26300     * Items created with this function can be deleted with function
26301     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
26302     *
26303     * @note @p label set to @c NULL is different from empty string "".
26304     * If an item
26305     * only has icon, it will be displayed bigger and centered. If it has
26306     * icon and label, even that an empty string, icon will be smaller and
26307     * positioned at left.
26308     *
26309     * @see elm_segment_control_item_add()
26310     * @see elm_segment_control_item_count_get()
26311     * @see elm_segment_control_item_del()
26312     *
26313     * @ingroup SegmentControl
26314     */
26315    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);
26316
26317    /**
26318     * Remove a segment control item from its parent, deleting it.
26319     *
26320     * @param it The item to be removed.
26321     *
26322     * Items can be added with elm_segment_control_item_add() or
26323     * elm_segment_control_item_insert_at().
26324     *
26325     * @ingroup SegmentControl
26326     */
26327    EAPI void              elm_segment_control_item_del(Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
26328
26329    /**
26330     * Remove a segment control item at given index from its parent,
26331     * deleting it.
26332     *
26333     * @param obj The segment control object.
26334     * @param index The position of the segment control item to be deleted.
26335     *
26336     * Items can be added with elm_segment_control_item_add() or
26337     * elm_segment_control_item_insert_at().
26338     *
26339     * @ingroup SegmentControl
26340     */
26341    EAPI void              elm_segment_control_item_del_at(Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
26342
26343    /**
26344     * Get the Segment items count from segment control.
26345     *
26346     * @param obj The segment control object.
26347     * @return Segment items count.
26348     *
26349     * It will just return the number of items added to segment control @p obj.
26350     *
26351     * @ingroup SegmentControl
26352     */
26353    EAPI int               elm_segment_control_item_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26354
26355    /**
26356     * Get the item placed at specified index.
26357     *
26358     * @param obj The segment control object.
26359     * @param index The index of the segment item.
26360     * @return The segment control item or @c NULL on failure.
26361     *
26362     * Index is the position of an item in segment control widget. Its
26363     * range is from @c 0 to <tt> count - 1 </tt>.
26364     * Count is the number of items, that can be get with
26365     * elm_segment_control_item_count_get().
26366     *
26367     * @ingroup SegmentControl
26368     */
26369    EAPI Elm_Segment_Item *elm_segment_control_item_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
26370
26371    /**
26372     * Get the label of item.
26373     *
26374     * @param obj The segment control object.
26375     * @param index The index of the segment item.
26376     * @return The label of the item at @p index.
26377     *
26378     * The return value is a pointer to the label associated to the item when
26379     * it was created, with function elm_segment_control_item_add(), or later
26380     * with function elm_segment_control_item_label_set. If no label
26381     * was passed as argument, it will return @c NULL.
26382     *
26383     * @see elm_segment_control_item_label_set() for more details.
26384     * @see elm_segment_control_item_add()
26385     *
26386     * @ingroup SegmentControl
26387     */
26388    EAPI const char       *elm_segment_control_item_label_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
26389
26390    /**
26391     * Set the label of item.
26392     *
26393     * @param it The item of segment control.
26394     * @param text The label of item.
26395     *
26396     * The label to be displayed by the item.
26397     * Label will be at right of the icon (if set).
26398     *
26399     * If a label was passed as argument on item creation, with function
26400     * elm_control_segment_item_add(), it will be already
26401     * displayed by the item.
26402     *
26403     * @see elm_segment_control_item_label_get()
26404     * @see elm_segment_control_item_add()
26405     *
26406     * @ingroup SegmentControl
26407     */
26408    EAPI void              elm_segment_control_item_label_set(Elm_Segment_Item* it, const char* label) EINA_ARG_NONNULL(1);
26409
26410    /**
26411     * Get the icon associated to the item.
26412     *
26413     * @param obj The segment control object.
26414     * @param index The index of the segment item.
26415     * @return The left side icon associated to the item at @p index.
26416     *
26417     * The return value is a pointer to the icon associated to the item when
26418     * it was created, with function elm_segment_control_item_add(), or later
26419     * with function elm_segment_control_item_icon_set(). If no icon
26420     * was passed as argument, it will return @c NULL.
26421     *
26422     * @see elm_segment_control_item_add()
26423     * @see elm_segment_control_item_icon_set()
26424     *
26425     * @ingroup SegmentControl
26426     */
26427    EAPI Evas_Object      *elm_segment_control_item_icon_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
26428
26429    /**
26430     * Set the icon associated to the item.
26431     *
26432     * @param it The segment control item.
26433     * @param icon The icon object to associate with @p it.
26434     *
26435     * The icon object to use at left side of the item. An
26436     * icon can be any Evas object, but usually it is an icon created
26437     * with elm_icon_add().
26438     *
26439     * Once the icon object is set, a previously set one will be deleted.
26440     * @warning Setting the same icon for two items will cause the icon to
26441     * dissapear from the first item.
26442     *
26443     * If an icon was passed as argument on item creation, with function
26444     * elm_segment_control_item_add(), it will be already
26445     * associated to the item.
26446     *
26447     * @see elm_segment_control_item_add()
26448     * @see elm_segment_control_item_icon_get()
26449     *
26450     * @ingroup SegmentControl
26451     */
26452    EAPI void              elm_segment_control_item_icon_set(Elm_Segment_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
26453
26454    /**
26455     * Get the index of an item.
26456     *
26457     * @param it The segment control item.
26458     * @return The position of item in segment control widget.
26459     *
26460     * Index is the position of an item in segment control widget. Its
26461     * range is from @c 0 to <tt> count - 1 </tt>.
26462     * Count is the number of items, that can be get with
26463     * elm_segment_control_item_count_get().
26464     *
26465     * @ingroup SegmentControl
26466     */
26467    EAPI int               elm_segment_control_item_index_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
26468
26469    /**
26470     * Get the base object of the item.
26471     *
26472     * @param it The segment control item.
26473     * @return The base object associated with @p it.
26474     *
26475     * Base object is the @c Evas_Object that represents that item.
26476     *
26477     * @ingroup SegmentControl
26478     */
26479    EAPI Evas_Object      *elm_segment_control_item_object_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
26480
26481    /**
26482     * Get the selected item.
26483     *
26484     * @param obj The segment control object.
26485     * @return The selected item or @c NULL if none of segment items is
26486     * selected.
26487     *
26488     * The selected item can be unselected with function
26489     * elm_segment_control_item_selected_set().
26490     *
26491     * The selected item always will be highlighted on segment control.
26492     *
26493     * @ingroup SegmentControl
26494     */
26495    EAPI Elm_Segment_Item *elm_segment_control_item_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26496
26497    /**
26498     * Set the selected state of an item.
26499     *
26500     * @param it The segment control item
26501     * @param select The selected state
26502     *
26503     * This sets the selected state of the given item @p it.
26504     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
26505     *
26506     * If a new item is selected the previosly selected will be unselected.
26507     * Previoulsy selected item can be get with function
26508     * elm_segment_control_item_selected_get().
26509     *
26510     * The selected item always will be highlighted on segment control.
26511     *
26512     * @see elm_segment_control_item_selected_get()
26513     *
26514     * @ingroup SegmentControl
26515     */
26516    EAPI void              elm_segment_control_item_selected_set(Elm_Segment_Item *it, Eina_Bool select) EINA_ARG_NONNULL(1);
26517
26518    /**
26519     * @}
26520     */
26521
26522    /**
26523     * @defgroup Grid Grid
26524     *
26525     * The grid is a grid layout widget that lays out a series of children as a
26526     * fixed "grid" of widgets using a given percentage of the grid width and
26527     * height each using the child object.
26528     *
26529     * The Grid uses a "Virtual resolution" that is stretched to fill the grid
26530     * widgets size itself. The default is 100 x 100, so that means the
26531     * position and sizes of children will effectively be percentages (0 to 100)
26532     * of the width or height of the grid widget
26533     *
26534     * @{
26535     */
26536
26537    /**
26538     * Add a new grid to the parent
26539     *
26540     * @param parent The parent object
26541     * @return The new object or NULL if it cannot be created
26542     *
26543     * @ingroup Grid
26544     */
26545    EAPI Evas_Object *elm_grid_add(Evas_Object *parent);
26546
26547    /**
26548     * Set the virtual size of the grid
26549     *
26550     * @param obj The grid object
26551     * @param w The virtual width of the grid
26552     * @param h The virtual height of the grid
26553     *
26554     * @ingroup Grid
26555     */
26556    EAPI void         elm_grid_size_set(Evas_Object *obj, int w, int h);
26557
26558    /**
26559     * Get the virtual size of the grid
26560     *
26561     * @param obj The grid object
26562     * @param w Pointer to integer to store the virtual width of the grid
26563     * @param h Pointer to integer to store the virtual height of the grid
26564     *
26565     * @ingroup Grid
26566     */
26567    EAPI void         elm_grid_size_get(Evas_Object *obj, int *w, int *h);
26568
26569    /**
26570     * Pack child at given position and size
26571     *
26572     * @param obj The grid object
26573     * @param subobj The child to pack
26574     * @param x The virtual x coord at which to pack it
26575     * @param y The virtual y coord at which to pack it
26576     * @param w The virtual width at which to pack it
26577     * @param h The virtual height at which to pack it
26578     *
26579     * @ingroup Grid
26580     */
26581    EAPI void         elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h);
26582
26583    /**
26584     * Unpack a child from a grid object
26585     *
26586     * @param obj The grid object
26587     * @param subobj The child to unpack
26588     *
26589     * @ingroup Grid
26590     */
26591    EAPI void         elm_grid_unpack(Evas_Object *obj, Evas_Object *subobj);
26592
26593    /**
26594     * Faster way to remove all child objects from a grid object.
26595     *
26596     * @param obj The grid object
26597     * @param clear If true, it will delete just removed children
26598     *
26599     * @ingroup Grid
26600     */
26601    EAPI void         elm_grid_clear(Evas_Object *obj, Eina_Bool clear);
26602
26603    /**
26604     * Set packing of an existing child at to position and size
26605     *
26606     * @param subobj The child to set packing of
26607     * @param x The virtual x coord at which to pack it
26608     * @param y The virtual y coord at which to pack it
26609     * @param w The virtual width at which to pack it
26610     * @param h The virtual height at which to pack it
26611     *
26612     * @ingroup Grid
26613     */
26614    EAPI void         elm_grid_pack_set(Evas_Object *subobj, int x, int y, int w, int h);
26615
26616    /**
26617     * get packing of a child
26618     *
26619     * @param subobj The child to query
26620     * @param x Pointer to integer to store the virtual x coord
26621     * @param y Pointer to integer to store the virtual y coord
26622     * @param w Pointer to integer to store the virtual width
26623     * @param h Pointer to integer to store the virtual height
26624     *
26625     * @ingroup Grid
26626     */
26627    EAPI void         elm_grid_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h);
26628
26629    /**
26630     * @}
26631     */
26632
26633    EAPI Evas_Object *elm_factory_add(Evas_Object *parent);
26634    EAPI void         elm_factory_content_set(Evas_Object *obj, Evas_Object *content);
26635    EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj);
26636    EAPI void         elm_factory_maxmin_mode_set(Evas_Object *obj, Eina_Bool enabled);
26637    EAPI Eina_Bool    elm_factory_maxmin_mode_get(const Evas_Object *obj);
26638    EAPI void         elm_factory_maxmin_reset_set(Evas_Object *obj);
26639
26640    /**
26641     * @defgroup Video Video
26642     *
26643     * This object display an player that let you control an Elm_Video
26644     * object. It take care of updating it's content according to what is
26645     * going on inside the Emotion object. It does activate the remember
26646     * function on the linked Elm_Video object.
26647     *
26648     * Signals that you can add callback for are :
26649     *
26650     * "forward,clicked" - the user clicked the forward button.
26651     * "info,clicked" - the user clicked the info button.
26652     * "next,clicked" - the user clicked the next button.
26653     * "pause,clicked" - the user clicked the pause button.
26654     * "play,clicked" - the user clicked the play button.
26655     * "prev,clicked" - the user clicked the prev button.
26656     * "rewind,clicked" - the user clicked the rewind button.
26657     * "stop,clicked" - the user clicked the stop button.
26658     */
26659    EAPI Evas_Object *elm_video_add(Evas_Object *parent);
26660    EAPI void elm_video_file_set(Evas_Object *video, const char *filename);
26661    EAPI void elm_video_uri_set(Evas_Object *video, const char *uri);
26662    EAPI Evas_Object *elm_video_emotion_get(Evas_Object *video);
26663    EAPI void elm_video_play(Evas_Object *video);
26664    EAPI void elm_video_pause(Evas_Object *video);
26665    EAPI void elm_video_stop(Evas_Object *video);
26666    EAPI Eina_Bool elm_video_is_playing(Evas_Object *video);
26667    EAPI Eina_Bool elm_video_is_seekable(Evas_Object *video);
26668    EAPI Eina_Bool elm_video_audio_mute_get(Evas_Object *video);
26669    EAPI void elm_video_audio_mute_set(Evas_Object *video, Eina_Bool mute);
26670    EAPI double elm_video_audio_level_get(Evas_Object *video);
26671    EAPI void elm_video_audio_level_set(Evas_Object *video, double volume);
26672    EAPI double elm_video_play_position_get(Evas_Object *video);
26673    EAPI void elm_video_play_position_set(Evas_Object *video, double position);
26674    EAPI double elm_video_play_length_get(Evas_Object *video);
26675    EAPI void elm_video_remember_position_set(Evas_Object *video, Eina_Bool remember);
26676    EAPI Eina_Bool elm_video_remember_position_get(Evas_Object *video);
26677    EAPI const char *elm_video_title_get(Evas_Object *video);
26678
26679    EAPI Evas_Object *elm_player_add(Evas_Object *parent);
26680    EAPI void elm_player_video_set(Evas_Object *player, Evas_Object *video);
26681
26682    /**
26683     * @defgroup Naviframe Naviframe
26684     *
26685     * @brief Naviframe is a kind of view manager for the applications.
26686     *
26687     * Naviframe provides functions to switch different pages with stack
26688     * mechanism. It means if one page(item) needs to be changed to the new one,
26689     * then naviframe would push the new page to it's internal stack. Of course,
26690     * it can be back to the previous page by popping the top page. Naviframe
26691     * provides some transition effect while the pages are switching (same as
26692     * pager).
26693     *
26694     * Since each item could keep the different styles, users could keep the
26695     * same look & feel for the pages or different styles for the items in it's
26696     * application.
26697     *
26698     * Signals that you can add callback for are:
26699     *
26700     * @li "transition,finished" - When the transition is finished in changing
26701     *     the item
26702     * @li "title,clicked" - User clicked title area
26703     *
26704     * Default contents parts for the naviframe items that you can use for are:
26705     *
26706     * @li "elm.swallow.content" - The main content of the page
26707     * @li "elm.swallow.prev_btn" - The button to go to the previous page
26708     * @li "elm.swallow.next_btn" - The button to go to the next page
26709     *
26710     * Default text parts of naviframe items that you can be used are:
26711     *
26712     * @li "elm.text.title" - The title label in the title area
26713     *
26714     * @ref tutorial_naviframe gives a good overview of the usage of the API.
26715     * @{
26716     */
26717    /**
26718     * @brief Add a new Naviframe object to the parent.
26719     *
26720     * @param parent Parent object
26721     * @return New object or @c NULL, if it cannot be created
26722     */
26723    EAPI Evas_Object        *elm_naviframe_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26724    /**
26725     * @brief Push a new item to the top of the naviframe stack (and show it).
26726     *
26727     * @param obj The naviframe object
26728     * @param title_label The label in the title area. The name of the title
26729     *        label part is "elm.text.title"
26730     * @param prev_btn The button to go to the previous item. If it is NULL,
26731     *        then naviframe will create a back button automatically. The name of
26732     *        the prev_btn part is "elm.swallow.prev_btn"
26733     * @param next_btn The button to go to the next item. Or It could be just an
26734     *        extra function button. The name of the next_btn part is
26735     *        "elm.swallow.next_btn"
26736     * @param content The main content object. The name of content part is
26737     *        "elm.swallow.content"
26738     * @param item_style The current item style name. @c NULL would be default.
26739     * @return The created item or @c NULL upon failure.
26740     *
26741     * The item pushed becomes one page of the naviframe, this item will be
26742     * deleted when it is popped.
26743     *
26744     * @see also elm_naviframe_item_style_set()
26745     *
26746     * The following styles are available for this item:
26747     * @li @c "default"
26748     */
26749    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);
26750    /**
26751     * @brief Pop an item that is on top of the stack
26752     *
26753     * @param obj The naviframe object
26754     * @return @c NULL or the content object(if the
26755     *         elm_naviframe_content_preserve_on_pop_get is true).
26756     *
26757     * This pops an item that is on the top(visible) of the naviframe, makes it
26758     * disappear, then deletes the item. The item that was underneath it on the
26759     * stack will become visible.
26760     *
26761     * @see also elm_naviframe_content_preserve_on_pop_get()
26762     */
26763    EAPI Evas_Object        *elm_naviframe_item_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
26764    /**
26765     * @brief Pop the items between the top and the above one on the given item.
26766     *
26767     * @param it The naviframe item
26768     */
26769    EAPI void                elm_naviframe_item_pop_to(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26770    /**
26771     * @brief preserve the content objects when items are popped.
26772     *
26773     * @param obj The naviframe object
26774     * @param preserve Enable the preserve mode if EINA_TRUE, disable otherwise
26775     *
26776     * @see also elm_naviframe_content_preserve_on_pop_get()
26777     */
26778    EAPI void                elm_naviframe_content_preserve_on_pop_set(Evas_Object *obj, Eina_Bool preserve) EINA_ARG_NONNULL(1);
26779    /**
26780     * @brief Get a value whether preserve mode is enabled or not.
26781     *
26782     * @param obj The naviframe object
26783     * @return If @c EINA_TRUE, preserve mode is enabled
26784     *
26785     * @see also elm_naviframe_content_preserve_on_pop_set()
26786     */
26787    EAPI Eina_Bool           elm_naviframe_content_preserve_on_pop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26788    /**
26789     * @brief Get a top item on the naviframe stack
26790     *
26791     * @param obj The naviframe object
26792     * @return The top item on the naviframe stack or @c NULL, if the stack is
26793     *         empty
26794     */
26795    EAPI Elm_Object_Item    *elm_naviframe_top_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26796    /**
26797     * @brief Get a bottom item on the naviframe stack
26798     *
26799     * @param obj The naviframe object
26800     * @return The bottom item on the naviframe stack or @c NULL, if the stack is
26801     *         empty
26802     */
26803    EAPI Elm_Object_Item    *elm_naviframe_bottom_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26804    /**
26805     * @brief Set an item style
26806     *
26807     * @param obj The naviframe item
26808     * @param item_style The current item style name. @c NULL would be default
26809     *
26810     * The following styles are available for this item:
26811     * @li @c "default"
26812     *
26813     * @see also elm_naviframe_item_style_get()
26814     */
26815    EAPI void                elm_naviframe_item_style_set(Elm_Object_Item *it, const char *item_style) EINA_ARG_NONNULL(1);
26816    /**
26817     * @brief Get an item style
26818     *
26819     * @param obj The naviframe item
26820     * @return The current item style name
26821     *
26822     * @see also elm_naviframe_item_style_set()
26823     */
26824    EAPI const char         *elm_naviframe_item_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26825    /**
26826     * @brief Show/Hide the title area
26827     *
26828     * @param it The naviframe item
26829     * @param visible If @c EINA_TRUE, title area will be visible, hidden
26830     *        otherwise
26831     *
26832     * When the title area is invisible, then the controls would be hidden so as     * to expand the content area to full-size.
26833     *
26834     * @see also elm_naviframe_item_title_visible_get()
26835     */
26836    EAPI void                elm_naviframe_item_title_visible_set(Elm_Object_Item *it, Eina_Bool visible) EINA_ARG_NONNULL(1);
26837    /**
26838     * @brief Get a value whether title area is visible or not.
26839     *
26840     * @param it The naviframe item
26841     * @return If @c EINA_TRUE, title area is visible
26842     *
26843     * @see also elm_naviframe_item_title_visible_set()
26844     */
26845    EAPI Eina_Bool           elm_naviframe_item_title_visible_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26846
26847    /**
26848     * @}
26849     */
26850
26851 #ifdef __cplusplus
26852 }
26853 #endif
26854
26855 #endif