elementary: Privide a new api to elm_photo : elm_photo_thumb_set.
[framework/uifw/elementary.git] / src / lib / Elementary.h.in
1 /*
2  *
3  * vim:ts=8:sw=3:sts=3:expandtab:cino=>5n-3f0^-2{2(0W1st0
4  */
5
6 /**
7 @file Elementary.h.in
8 @brief Elementary Widget Library
9 */
10
11 /**
12 @mainpage Elementary
13 @image html  elementary.png
14 @version 0.8.0
15 @date 2008-2011
16
17 @section intro What is Elementary?
18
19 This is a VERY SIMPLE toolkit. It is not meant for writing extensive desktop
20 applications (yet). Small simple ones with simple needs.
21
22 It is meant to make the programmers work almost brainless but give them lots
23 of flexibility.
24
25 @li @ref Start - Go here to quickly get started with writing Apps
26
27 @section organization Organization
28
29 One can divide Elemementary into three main groups:
30 @li @ref infralist - These are modules that deal with Elementary as a whole.
31 @li @ref widgetslist - These are the widgets you'll compose your UI out of.
32 @li @ref containerslist - These are the containers which hold the widgets.
33
34 @section license License
35
36 LGPL v2 (see COPYING in the base of Elementary's source). This applies to
37 all files in the source tree.
38
39 @section ack Acknowledgements
40 There is a lot that goes into making a widget set, and they don't happen out of
41 nothing. It's like trying to make everyone everywhere happy, regardless of age,
42 gender, race or nationality - and that is really tough. So thanks to people and
43 organisations behind this, as listed in the @ref authors page.
44 */
45
46
47 /**
48  * @defgroup Start Getting Started
49  *
50  * To write an Elementary app, you can get started with the following:
51  *
52 @code
53 #include <Elementary.h>
54 EAPI_MAIN int
55 elm_main(int argc, char **argv)
56 {
57    // create window(s) here and do any application init
58    elm_run(); // run main loop
59    elm_shutdown(); // after mainloop finishes running, shutdown
60    return 0; // exit 0 for exit code
61 }
62 ELM_MAIN()
63 @endcode
64  *
65  * To use autotools (which helps in many ways in the long run, like being able
66  * to immediately create releases of your software directly from your tree
67  * and ensure everything needed to build it is there) you will need a
68  * configure.ac, Makefile.am and autogen.sh file.
69  *
70  * configure.ac:
71  *
72 @verbatim
73 AC_INIT(myapp, 0.0.0, myname@mydomain.com)
74 AC_PREREQ(2.52)
75 AC_CONFIG_SRCDIR(configure.ac)
76 AM_CONFIG_HEADER(config.h)
77 AC_PROG_CC
78 AM_INIT_AUTOMAKE(1.6 dist-bzip2)
79 PKG_CHECK_MODULES([ELEMENTARY], elementary)
80 AC_OUTPUT(Makefile)
81 @endverbatim
82  *
83  * Makefile.am:
84  *
85 @verbatim
86 AUTOMAKE_OPTIONS = 1.4 foreign
87 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in configure depcomp install-sh missing
88
89 INCLUDES = -I$(top_srcdir)
90
91 bin_PROGRAMS = myapp
92
93 myapp_SOURCES = main.c
94 myapp_LDADD = @ELEMENTARY_LIBS@
95 myapp_CFLAGS = @ELEMENTARY_CFLAGS@
96 @endverbatim
97  *
98  * autogen.sh:
99  *
100 @verbatim
101 #!/bin/sh
102 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
103 echo "Running autoheader..." ; autoheader || exit 1
104 echo "Running autoconf..." ; autoconf || exit 1
105 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
106 ./configure "$@"
107 @endverbatim
108  *
109  * To generate all the things needed to bootstrap just run:
110  *
111 @verbatim
112 ./autogen.sh
113 @endverbatim
114  *
115  * This will generate Makefile.in's, the confgure script and everything else.
116  * After this it works like all normal autotools projects:
117 @verbatim
118 ./configure
119 make
120 sudo make install
121 @endverbatim
122  *
123  * Note sudo was assumed to get root permissions, as this would install in
124  * /usr/local which is system-owned. Use any way you like to gain root, or
125  * specify a different prefix with configure:
126  *
127 @verbatim
128 ./confiugre --prefix=$HOME/mysoftware
129 @endverbatim
130  *
131  * Also remember that autotools buys you some useful commands like:
132 @verbatim
133 make uninstall
134 @endverbatim
135  *
136  * This uninstalls the software after it was installed with "make install".
137  * It is very useful to clear up what you built if you wish to clean the
138  * system.
139  *
140 @verbatim
141 make distcheck
142 @endverbatim
143  *
144  * This firstly checks if your build tree is "clean" and ready for
145  * distribution. It also builds a tarball (myapp-0.0.0.tar.gz) that is
146  * ready to upload and distribute to the world, that contains the generated
147  * Makefile.in's and configure script. The users do not need to run
148  * autogen.sh - just configure and on. They don't need autotools installed.
149  * This tarball also builds cleanly, has all the sources it needs to build
150  * included (that is sources for your application, not libraries it depends
151  * on like Elementary). It builds cleanly in a buildroot and does not
152  * contain any files that are temporarily generated like binaries and other
153  * build-generated files, so the tarball is clean, and no need to worry
154  * about cleaning up your tree before packaging.
155  *
156 @verbatim
157 make clean
158 @endverbatim
159  *
160  * This cleans up all build files (binaries, objects etc.) from the tree.
161  *
162 @verbatim
163 make distclean
164 @endverbatim
165  *
166  * This cleans out all files from the build and from configure's output too.
167  *
168 @verbatim
169 make maintainer-clean
170 @endverbatim
171  *
172  * This deletes all the files autogen.sh will produce so the tree is clean
173  * to be put into a revision-control system (like CVS, SVN or GIT for example).
174  *
175  * There is a more advanced way of making use of the quicklaunch infrastructure
176  * in Elementary (which will not be covered here due to its more advanced
177  * nature).
178  *
179  * Now let's actually create an interactive "Hello World" gui that you can
180  * click the ok button to exit. It's more code because this now does something
181  * much more significant, but it's still very simple:
182  *
183 @code
184 #include <Elementary.h>
185
186 static void
187 on_done(void *data, Evas_Object *obj, void *event_info)
188 {
189    // quit the mainloop (elm_run function will return)
190    elm_exit();
191 }
192
193 EAPI_MAIN int
194 elm_main(int argc, char **argv)
195 {
196    Evas_Object *win, *bg, *box, *lab, *btn;
197
198    // new window - do the usual and give it a name (hello) and title (Hello)
199    win = elm_win_util_standard_add("hello", "Hello");
200    // when the user clicks "close" on a window there is a request to delete
201    evas_object_smart_callback_add(win, "delete,request", on_done, NULL);
202
203    // add a box object - default is vertical. a box holds children in a row,
204    // either horizontally or vertically. nothing more.
205    box = elm_box_add(win);
206    // make the box hotizontal
207    elm_box_horizontal_set(box, EINA_TRUE);
208    // add object as a resize object for the window (controls window minimum
209    // size as well as gets resized if window is resized)
210    elm_win_resize_object_add(win, box);
211    evas_object_show(box);
212
213    // add a label widget, set the text and put it in the pad frame
214    lab = elm_label_add(win);
215    // set default text of the label
216    elm_object_text_set(lab, "Hello out there world!");
217    // pack the label at the end of the box
218    elm_box_pack_end(box, lab);
219    evas_object_show(lab);
220
221    // add an ok button
222    btn = elm_button_add(win);
223    // set default text of button to "OK"
224    elm_object_text_set(btn, "OK");
225    // pack the button at the end of the box
226    elm_box_pack_end(box, btn);
227    evas_object_show(btn);
228    // call on_done when button is clicked
229    evas_object_smart_callback_add(btn, "clicked", on_done, NULL);
230
231    // now we are done, show the window
232    evas_object_show(win);
233
234    // run the mainloop and process events and callbacks
235    elm_run();
236    return 0;
237 }
238 ELM_MAIN()
239 @endcode
240    *
241    */
242
243 /**
244 @page authors Authors
245 @author Carsten Haitzler <raster@@rasterman.com>
246 @author Gustavo Sverzut Barbieri <barbieri@@profusion.mobi>
247 @author Cedric Bail <cedric.bail@@free.fr>
248 @author Vincent Torri <vtorri@@univ-evry.fr>
249 @author Daniel Kolesa <quaker66@@gmail.com>
250 @author Jaime Thomas <avi.thomas@@gmail.com>
251 @author Swisscom - http://www.swisscom.ch/
252 @author Christopher Michael <devilhorns@@comcast.net>
253 @author Marco Trevisan (TreviƱo) <mail@@3v1n0.net>
254 @author Michael Bouchaud <michael.bouchaud@@gmail.com>
255 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
256 @author Brian Wang <brian.wang.0721@@gmail.com>
257 @author Mike Blumenkrantz (zmike) <mike@@zentific.com>
258 @author Samsung Electronics <tbd>
259 @author Samsung SAIT <tbd>
260 @author Brett Nash <nash@@nash.id.au>
261 @author Bruno Dilly <bdilly@@profusion.mobi>
262 @author Rafael Fonseca <rfonseca@@profusion.mobi>
263 @author Chuneon Park <hermet@@hermet.pe.kr>
264 @author Woohyun Jung <wh0705.jung@@samsung.com>
265 @author Jaehwan Kim <jae.hwan.kim@@samsung.com>
266 @author Wonguk Jeong <wonguk.jeong@@samsung.com>
267 @author Leandro A. F. Pereira <leandro@@profusion.mobi>
268 @author Helen Fornazier <helen.fornazier@@profusion.mobi>
269 @author Gustavo Lima Chaves <glima@@profusion.mobi>
270 @author Fabiano FidĆŖncio <fidencio@@profusion.mobi>
271 @author Tiago FalcĆ£o <tiago@@profusion.mobi>
272 @author Otavio Pontes <otavio@@profusion.mobi>
273 @author Viktor Kojouharov <vkojouharov@@gmail.com>
274 @author Daniel Juyung Seo (SeoZ) <juyung.seo@@samsung.com> <seojuyung2@@gmail.com>
275 @author Sangho Park <sangho.g.park@@samsung.com> <gouache95@@gmail.com>
276 @author Rajeev Ranjan (Rajeev) <rajeev.r@@samsung.com> <rajeev.jnnce@@gmail.com>
277 @author Seunggyun Kim <sgyun.kim@@samsung.com> <tmdrbs@@gmail.com>
278 @author Sohyun Kim <anna1014.kim@@samsung.com> <sohyun.anna@@gmail.com>
279 @author Jihoon Kim <jihoon48.kim@@samsung.com>
280 @author Jeonghyun Yun (arosis) <jh0506.yun@@samsung.com>
281 @author Tom Hacohen <tom@@stosb.com>
282 @author Aharon Hillel <a.hillel@@partner.samsung.com>
283 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
284 @author Shinwoo Kim <kimcinoo@@gmail.com>
285 @author Govindaraju SM <govi.sm@@samsung.com> <govism@@gmail.com>
286 @author Prince Kumar Dubey <prince.dubey@@samsung.com> <prince.dubey@@gmail.com>
287 @author Sung W. Park <sungwoo@gmail.com>
288 @author Thierry el Borgi <thierry@substantiel.fr>
289 @author Shilpa Singh <shilpa.singh@samsung.com> <shilpasingh.o@gmail.com>
290 @author Chanwook Jung <joey.jung@samsung.com>
291 @author Hyoyoung Chang <hyoyoung.chang@samsung.com>
292 @author Guillaume "Kuri" Friloux <guillaume.friloux@asp64.com>
293 @author Kim Yunhan <spbear@gmail.com>
294
295 Please contact <enlightenment-devel@lists.sourceforge.net> to get in
296 contact with the developers and maintainers.
297  */
298
299 #ifndef ELEMENTARY_H
300 #define ELEMENTARY_H
301
302 /**
303  * @file Elementary.h
304  * @brief Elementary's API
305  *
306  * Elementary API.
307  */
308
309 @ELM_UNIX_DEF@ ELM_UNIX
310 @ELM_WIN32_DEF@ ELM_WIN32
311 @ELM_WINCE_DEF@ ELM_WINCE
312 @ELM_EDBUS_DEF@ ELM_EDBUS
313 @ELM_EFREET_DEF@ ELM_EFREET
314 @ELM_ETHUMB_DEF@ ELM_ETHUMB
315 @ELM_WEB_DEF@ ELM_WEB
316 @ELM_EMAP_DEF@ ELM_EMAP
317 @ELM_DEBUG_DEF@ ELM_DEBUG
318 @ELM_ALLOCA_H_DEF@ ELM_ALLOCA_H
319 @ELM_LIBINTL_H_DEF@ ELM_LIBINTL_H
320
321 /* Standard headers for standard system calls etc. */
322 #include <stdio.h>
323 #include <stdlib.h>
324 #include <unistd.h>
325 #include <string.h>
326 #include <sys/types.h>
327 #include <sys/stat.h>
328 #include <sys/time.h>
329 #include <sys/param.h>
330 #include <dlfcn.h>
331 #include <math.h>
332 #include <fnmatch.h>
333 #include <limits.h>
334 #include <ctype.h>
335 #include <time.h>
336 #include <dirent.h>
337 #include <pwd.h>
338 #include <errno.h>
339
340 #ifdef ELM_UNIX
341 # include <locale.h>
342 # ifdef ELM_LIBINTL_H
343 #  include <libintl.h>
344 # endif
345 # include <signal.h>
346 # include <grp.h>
347 # include <glob.h>
348 #endif
349
350 #ifdef ELM_ALLOCA_H
351 # include <alloca.h>
352 #endif
353
354 #if defined (ELM_WIN32) || defined (ELM_WINCE)
355 # include <malloc.h>
356 # ifndef alloca
357 #  define alloca _alloca
358 # endif
359 #endif
360
361
362 /* EFL headers */
363 #include <Eina.h>
364 #include <Eet.h>
365 #include <Evas.h>
366 #include <Evas_GL.h>
367 #include <Ecore.h>
368 #include <Ecore_Evas.h>
369 #include <Ecore_File.h>
370 #include <Ecore_IMF.h>
371 #include <Ecore_Con.h>
372 #include <Edje.h>
373
374 #ifdef ELM_EDBUS
375 # include <E_DBus.h>
376 #endif
377
378 #ifdef ELM_EFREET
379 # include <Efreet.h>
380 # include <Efreet_Mime.h>
381 # include <Efreet_Trash.h>
382 #endif
383
384 #ifdef ELM_ETHUMB
385 # include <Ethumb_Client.h>
386 #endif
387
388 #ifdef ELM_EMAP
389 # include <EMap.h>
390 #endif
391
392 #ifdef EAPI
393 # undef EAPI
394 #endif
395
396 #ifdef _WIN32
397 # ifdef ELEMENTARY_BUILD
398 #  ifdef DLL_EXPORT
399 #   define EAPI __declspec(dllexport)
400 #  else
401 #   define EAPI
402 #  endif /* ! DLL_EXPORT */
403 # else
404 #  define EAPI __declspec(dllimport)
405 # endif /* ! EFL_EVAS_BUILD */
406 #else
407 # ifdef __GNUC__
408 #  if __GNUC__ >= 4
409 #   define EAPI __attribute__ ((visibility("default")))
410 #  else
411 #   define EAPI
412 #  endif
413 # else
414 #  define EAPI
415 # endif
416 #endif /* ! _WIN32 */
417
418 #ifdef _WIN32
419 # define EAPI_MAIN
420 #else
421 # define EAPI_MAIN EAPI
422 #endif
423
424 /* allow usage from c++ */
425 #ifdef __cplusplus
426 extern "C" {
427 #endif
428
429 #define ELM_VERSION_MAJOR @VMAJ@
430 #define ELM_VERSION_MINOR @VMIN@
431
432    typedef struct _Elm_Version
433      {
434         int major;
435         int minor;
436         int micro;
437         int revision;
438      } Elm_Version;
439
440    EAPI extern Elm_Version *elm_version;
441
442 /* handy macros */
443 #define ELM_RECTS_INTERSECT(x, y, w, h, xx, yy, ww, hh) (((x) < ((xx) + (ww))) && ((y) < ((yy) + (hh))) && (((x) + (w)) > (xx)) && (((y) + (h)) > (yy)))
444 #define ELM_PI 3.14159265358979323846
445
446    /**
447     * @defgroup General General
448     *
449     * @brief General Elementary API. Functions that don't relate to
450     * Elementary objects specifically.
451     *
452     * Here are documented functions which init/shutdown the library,
453     * that apply to generic Elementary objects, that deal with
454     * configuration, et cetera.
455     *
456     * @ref general_functions_example_page "This" example contemplates
457     * some of these functions.
458     */
459
460    /**
461     * @addtogroup General
462     * @{
463     */
464
465   /**
466    * Defines couple of standard Evas_Object layers to be used
467    * with evas_object_layer_set().
468    *
469    * @note whenever extending with new values, try to keep some padding
470    *       to siblings so there is room for further extensions.
471    */
472   typedef enum _Elm_Object_Layer
473     {
474        ELM_OBJECT_LAYER_BACKGROUND = EVAS_LAYER_MIN + 64, /**< where to place backgrounds */
475        ELM_OBJECT_LAYER_DEFAULT = 0, /**< Evas_Object default layer (and thus for Elementary) */
476        ELM_OBJECT_LAYER_FOCUS = EVAS_LAYER_MAX - 128, /**< where focus object visualization is */
477        ELM_OBJECT_LAYER_TOOLTIP = EVAS_LAYER_MAX - 64, /**< where to show tooltips */
478        ELM_OBJECT_LAYER_CURSOR = EVAS_LAYER_MAX - 32, /**< where to show cursors */
479        ELM_OBJECT_LAYER_LAST /**< last layer known by Elementary */
480     } Elm_Object_Layer;
481
482 /**************************************************************************/
483    EAPI extern int ELM_ECORE_EVENT_ETHUMB_CONNECT;
484
485    /**
486     * Emitted when any Elementary's policy value is changed.
487     */
488    EAPI extern int ELM_EVENT_POLICY_CHANGED;
489
490    /**
491     * @typedef Elm_Event_Policy_Changed
492     *
493     * Data on the event when an Elementary policy has changed
494     */
495     typedef struct _Elm_Event_Policy_Changed Elm_Event_Policy_Changed;
496
497    /**
498     * @struct _Elm_Event_Policy_Changed
499     *
500     * Data on the event when an Elementary policy has changed
501     */
502     struct _Elm_Event_Policy_Changed
503      {
504         unsigned int policy; /**< the policy identifier */
505         int          new_value; /**< value the policy had before the change */
506         int          old_value; /**< new value the policy got */
507     };
508
509    /**
510     * Policy identifiers.
511     */
512     typedef enum _Elm_Policy
513     {
514         ELM_POLICY_QUIT, /**< under which circumstances the application
515                           * should quit automatically. @see
516                           * Elm_Policy_Quit.
517                           */
518         ELM_POLICY_LAST
519     } Elm_Policy; /**< Elementary policy identifiers/groups enumeration.  @see elm_policy_set()
520  */
521
522    typedef enum _Elm_Policy_Quit
523      {
524         ELM_POLICY_QUIT_NONE = 0, /**< never quit the application
525                                    * automatically */
526         ELM_POLICY_QUIT_LAST_WINDOW_CLOSED /**< quit when the
527                                             * application's last
528                                             * window is closed */
529      } Elm_Policy_Quit; /**< Possible values for the #ELM_POLICY_QUIT policy */
530
531    typedef enum _Elm_Focus_Direction
532      {
533         ELM_FOCUS_PREVIOUS,
534         ELM_FOCUS_NEXT
535      } Elm_Focus_Direction;
536
537    typedef enum _Elm_Text_Format
538      {
539         ELM_TEXT_FORMAT_PLAIN_UTF8,
540         ELM_TEXT_FORMAT_MARKUP_UTF8
541      } Elm_Text_Format;
542
543    /**
544     * Line wrapping types.
545     */
546    typedef enum _Elm_Wrap_Type
547      {
548         ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
549         ELM_WRAP_CHAR, /**< Char wrap - wrap between characters */
550         ELM_WRAP_WORD, /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
551         ELM_WRAP_MIXED, /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
552         ELM_WRAP_LAST
553      } Elm_Wrap_Type;
554
555    typedef enum
556      {
557         ELM_INPUT_PANEL_LAYOUT_NORMAL,          /**< Default layout */
558         ELM_INPUT_PANEL_LAYOUT_NUMBER,          /**< Number layout */
559         ELM_INPUT_PANEL_LAYOUT_EMAIL,           /**< Email layout */
560         ELM_INPUT_PANEL_LAYOUT_URL,             /**< URL layout */
561         ELM_INPUT_PANEL_LAYOUT_PHONENUMBER,     /**< Phone Number layout */
562         ELM_INPUT_PANEL_LAYOUT_IP,              /**< IP layout */
563         ELM_INPUT_PANEL_LAYOUT_MONTH,           /**< Month layout */
564         ELM_INPUT_PANEL_LAYOUT_NUMBERONLY,      /**< Number Only layout */
565         ELM_INPUT_PANEL_LAYOUT_INVALID
566      } Elm_Input_Panel_Layout;
567
568    typedef enum
569      {
570         ELM_AUTOCAPITAL_TYPE_NONE,
571         ELM_AUTOCAPITAL_TYPE_WORD,
572         ELM_AUTOCAPITAL_TYPE_SENTENCE,
573         ELM_AUTOCAPITAL_TYPE_ALLCHARACTER,
574      } Elm_Autocapital_Type;
575
576    /**
577     * @typedef Elm_Object_Item
578     * An Elementary Object item handle.
579     * @ingroup General
580     */
581    typedef struct _Elm_Object_Item Elm_Object_Item;
582
583
584    /**
585     * Called back when a widget's tooltip is activated and needs content.
586     * @param data user-data given to elm_object_tooltip_content_cb_set()
587     * @param obj owner widget.
588     */
589    typedef Evas_Object *(*Elm_Tooltip_Content_Cb) (void *data, Evas_Object *obj);
590
591    /**
592     * Called back when a widget's item tooltip is activated and needs content.
593     * @param data user-data given to elm_object_tooltip_content_cb_set()
594     * @param obj owner widget.
595     * @param item context dependent item. As an example, if tooltip was
596     *        set on Elm_List_Item, then it is of this type.
597     */
598    typedef Evas_Object *(*Elm_Tooltip_Item_Content_Cb) (void *data, Evas_Object *obj, void *item);
599
600    typedef Eina_Bool (*Elm_Event_Cb) (void *data, Evas_Object *obj, Evas_Object *src, Evas_Callback_Type type, void *event_info);
601
602 #ifndef ELM_LIB_QUICKLAUNCH
603 #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 */
604 #else
605 #define ELM_MAIN() int main(int argc, char **argv) {return elm_quicklaunch_fallback(argc, argv);} /**< macro to be used after the elm_main() function */
606 #endif
607
608 /**************************************************************************/
609    /* General calls */
610
611    /**
612     * Initialize Elementary
613     *
614     * @param[in] argc System's argument count value
615     * @param[in] argv System's pointer to array of argument strings
616     * @return The init counter value.
617     *
618     * This function initializes Elementary and increments a counter of
619     * the number of calls to it. It returns the new counter's value.
620     *
621     * @warning This call is exported only for use by the @c ELM_MAIN()
622     * macro. There is no need to use this if you use this macro (which
623     * is highly advisable). An elm_main() should contain the entry
624     * point code for your application, having the same prototype as
625     * elm_init(), and @b not being static (putting the @c EAPI symbol
626     * in front of its type declaration is advisable). The @c
627     * ELM_MAIN() call should be placed just after it.
628     *
629     * Example:
630     * @dontinclude bg_example_01.c
631     * @skip static void
632     * @until ELM_MAIN
633     *
634     * See the full @ref bg_example_01_c "example".
635     *
636     * @see elm_shutdown().
637     * @ingroup General
638     */
639    EAPI int          elm_init(int argc, char **argv);
640
641    /**
642     * Shut down Elementary
643     *
644     * @return The init counter value.
645     *
646     * This should be called at the end of your application, just
647     * before it ceases to do any more processing. This will clean up
648     * any permanent resources your application may have allocated via
649     * Elementary that would otherwise persist.
650     *
651     * @see elm_init() for an example
652     *
653     * @ingroup General
654     */
655    EAPI int          elm_shutdown(void);
656
657    /**
658     * Run Elementary's main loop
659     *
660     * This call should be issued just after all initialization is
661     * completed. This function will not return until elm_exit() is
662     * called. It will keep looping, running the main
663     * (event/processing) loop for Elementary.
664     *
665     * @see elm_init() for an example
666     *
667     * @ingroup General
668     */
669    EAPI void         elm_run(void);
670
671    /**
672     * Exit Elementary's main loop
673     *
674     * If this call is issued, it will flag the main loop to cease
675     * processing and return back to its parent function (usually your
676     * elm_main() function).
677     *
678     * @see elm_init() for an example. There, just after a request to
679     * close the window comes, the main loop will be left.
680     *
681     * @note By using the appropriate #ELM_POLICY_QUIT on your Elementary
682     * applications, you'll be able to get this function called automatically for you.
683     *
684     * @ingroup General
685     */
686    EAPI void         elm_exit(void);
687
688    /**
689     * Provide information in order to make Elementary determine the @b
690     * run time location of the software in question, so other data files
691     * such as images, sound files, executable utilities, libraries,
692     * modules and locale files can be found.
693     *
694     * @param mainfunc This is your application's main function name,
695     *        whose binary's location is to be found. Providing @c NULL
696     *        will make Elementary not to use it
697     * @param dom This will be used as the application's "domain", in the
698     *        form of a prefix to any environment variables that may
699     *        override prefix detection and the directory name, inside the
700     *        standard share or data directories, where the software's
701     *        data files will be looked for.
702     * @param checkfile This is an (optional) magic file's path to check
703     *        for existence (and it must be located in the data directory,
704     *        under the share directory provided above). Its presence will
705     *        help determine the prefix found was correct. Pass @c NULL if
706     *        the check is not to be done.
707     *
708     * This function allows one to re-locate the application somewhere
709     * else after compilation, if the developer wishes for easier
710     * distribution of pre-compiled binaries.
711     *
712     * The prefix system is designed to locate where the given software is
713     * installed (under a common path prefix) at run time and then report
714     * specific locations of this prefix and common directories inside
715     * this prefix like the binary, library, data and locale directories,
716     * through the @c elm_app_*_get() family of functions.
717     *
718     * Call elm_app_info_set() early on before you change working
719     * directory or anything about @c argv[0], so it gets accurate
720     * information.
721     *
722     * It will then try and trace back which file @p mainfunc comes from,
723     * if provided, to determine the application's prefix directory.
724     *
725     * The @p dom parameter provides a string prefix to prepend before
726     * environment variables, allowing a fallback to @b specific
727     * environment variables to locate the software. You would most
728     * probably provide a lowercase string there, because it will also
729     * serve as directory domain, explained next. For environment
730     * variables purposes, this string is made uppercase. For example if
731     * @c "myapp" is provided as the prefix, then the program would expect
732     * @c "MYAPP_PREFIX" as a master environment variable to specify the
733     * exact install prefix for the software, or more specific environment
734     * variables like @c "MYAPP_BIN_DIR", @c "MYAPP_LIB_DIR", @c
735     * "MYAPP_DATA_DIR" and @c "MYAPP_LOCALE_DIR", which could be set by
736     * the user or scripts before launching. If not provided (@c NULL),
737     * environment variables will not be used to override compiled-in
738     * defaults or auto detections.
739     *
740     * The @p dom string also provides a subdirectory inside the system
741     * shared data directory for data files. For example, if the system
742     * directory is @c /usr/local/share, then this directory name is
743     * appended, creating @c /usr/local/share/myapp, if it @p was @c
744     * "myapp". It is expected that the application installs data files in
745     * this directory.
746     *
747     * The @p checkfile is a file name or path of something inside the
748     * share or data directory to be used to test that the prefix
749     * detection worked. For example, your app will install a wallpaper
750     * image as @c /usr/local/share/myapp/images/wallpaper.jpg and so to
751     * check that this worked, provide @c "images/wallpaper.jpg" as the @p
752     * checkfile string.
753     *
754     * @see elm_app_compile_bin_dir_set()
755     * @see elm_app_compile_lib_dir_set()
756     * @see elm_app_compile_data_dir_set()
757     * @see elm_app_compile_locale_set()
758     * @see elm_app_prefix_dir_get()
759     * @see elm_app_bin_dir_get()
760     * @see elm_app_lib_dir_get()
761     * @see elm_app_data_dir_get()
762     * @see elm_app_locale_dir_get()
763     */
764    EAPI void         elm_app_info_set(void *mainfunc, const char *dom, const char *checkfile);
765
766    /**
767     * Provide information on the @b fallback application's binaries
768     * directory, in scenarios where they get overriden by
769     * elm_app_info_set().
770     *
771     * @param dir The path to the default binaries directory (compile time
772     * one)
773     *
774     * @note Elementary will as well use this path to determine actual
775     * names of binaries' directory paths, maybe changing it to be @c
776     * something/local/bin instead of @c something/bin, only, for
777     * example.
778     *
779     * @warning You should call this function @b before
780     * elm_app_info_set().
781     */
782    EAPI void         elm_app_compile_bin_dir_set(const char *dir);
783
784    /**
785     * Provide information on the @b fallback application's libraries
786     * directory, on scenarios where they get overriden by
787     * elm_app_info_set().
788     *
789     * @param dir The path to the default libraries directory (compile
790     * time one)
791     *
792     * @note Elementary will as well use this path to determine actual
793     * names of libraries' directory paths, maybe changing it to be @c
794     * something/lib32 or @c something/lib64 instead of @c something/lib,
795     * only, for example.
796     *
797     * @warning You should call this function @b before
798     * elm_app_info_set().
799     */
800    EAPI void         elm_app_compile_lib_dir_set(const char *dir);
801
802    /**
803     * Provide information on the @b fallback application's data
804     * directory, on scenarios where they get overriden by
805     * elm_app_info_set().
806     *
807     * @param dir The path to the default data directory (compile time
808     * one)
809     *
810     * @note Elementary will as well use this path to determine actual
811     * names of data directory paths, maybe changing it to be @c
812     * something/local/share instead of @c something/share, only, for
813     * example.
814     *
815     * @warning You should call this function @b before
816     * elm_app_info_set().
817     */
818    EAPI void         elm_app_compile_data_dir_set(const char *dir);
819
820    /**
821     * Provide information on the @b fallback application's locale
822     * directory, on scenarios where they get overriden by
823     * elm_app_info_set().
824     *
825     * @param dir The path to the default locale directory (compile time
826     * one)
827     *
828     * @warning You should call this function @b before
829     * elm_app_info_set().
830     */
831    EAPI void         elm_app_compile_locale_set(const char *dir);
832
833    /**
834     * Retrieve the application's run time prefix directory, as set by
835     * elm_app_info_set() and the way (environment) the application was
836     * run from.
837     *
838     * @return The directory prefix the application is actually using.
839     */
840    EAPI const char  *elm_app_prefix_dir_get(void);
841
842    /**
843     * Retrieve the application's run time binaries prefix directory, as
844     * set by elm_app_info_set() and the way (environment) the application
845     * was run from.
846     *
847     * @return The binaries directory prefix the application is actually
848     * using.
849     */
850    EAPI const char  *elm_app_bin_dir_get(void);
851
852    /**
853     * Retrieve the application's run time libraries prefix directory, as
854     * set by elm_app_info_set() and the way (environment) the application
855     * was run from.
856     *
857     * @return The libraries directory prefix the application is actually
858     * using.
859     */
860    EAPI const char  *elm_app_lib_dir_get(void);
861
862    /**
863     * Retrieve the application's run time data prefix directory, as
864     * set by elm_app_info_set() and the way (environment) the application
865     * was run from.
866     *
867     * @return The data directory prefix the application is actually
868     * using.
869     */
870    EAPI const char  *elm_app_data_dir_get(void);
871
872    /**
873     * Retrieve the application's run time locale prefix directory, as
874     * set by elm_app_info_set() and the way (environment) the application
875     * was run from.
876     *
877     * @return The locale directory prefix the application is actually
878     * using.
879     */
880    EAPI const char  *elm_app_locale_dir_get(void);
881
882    EAPI void         elm_quicklaunch_mode_set(Eina_Bool ql_on);
883    EAPI Eina_Bool    elm_quicklaunch_mode_get(void);
884    EAPI int          elm_quicklaunch_init(int argc, char **argv);
885    EAPI int          elm_quicklaunch_sub_init(int argc, char **argv);
886    EAPI int          elm_quicklaunch_sub_shutdown(void);
887    EAPI int          elm_quicklaunch_shutdown(void);
888    EAPI void         elm_quicklaunch_seed(void);
889    EAPI Eina_Bool    elm_quicklaunch_prepare(int argc, char **argv);
890    EAPI Eina_Bool    elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (postfork_func) (void *data), void *postfork_data);
891    EAPI void         elm_quicklaunch_cleanup(void);
892    EAPI int          elm_quicklaunch_fallback(int argc, char **argv);
893    EAPI char        *elm_quicklaunch_exe_path_get(const char *exe);
894
895    EAPI Eina_Bool    elm_need_efreet(void);
896    EAPI Eina_Bool    elm_need_e_dbus(void);
897    EAPI Eina_Bool    elm_need_ethumb(void);
898
899    /**
900     * This must be called before any other function that handle with
901     * elm_web objects or ewk_view instances.
902     *
903     * @ingroup Web
904     */
905    EAPI Eina_Bool    elm_need_web(void);
906
907    /**
908     * Set a new policy's value (for a given policy group/identifier).
909     *
910     * @param policy policy identifier, as in @ref Elm_Policy.
911     * @param value policy value, which depends on the identifier
912     *
913     * @return @c EINA_TRUE on success or @c EINA_FALSE, on error.
914     *
915     * Elementary policies define applications' behavior,
916     * somehow. These behaviors are divided in policy groups (see
917     * #Elm_Policy enumeration). This call will emit the Ecore event
918     * #ELM_EVENT_POLICY_CHANGED, which can be hooked at with
919     * handlers. An #Elm_Event_Policy_Changed struct will be passed,
920     * then.
921     *
922     * @note Currently, we have only one policy identifier/group
923     * (#ELM_POLICY_QUIT), which has two possible values.
924     *
925     * @ingroup General
926     */
927    EAPI Eina_Bool    elm_policy_set(unsigned int policy, int value);
928
929    /**
930     * Gets the policy value for given policy identifier.
931     *
932     * @param policy policy identifier, as in #Elm_Policy.
933     * @return The currently set policy value, for that
934     * identifier. Will be @c 0 if @p policy passed is invalid.
935     *
936     * @ingroup General
937     */
938    EAPI int          elm_policy_get(unsigned int policy);
939
940    /**
941     * Change the language of the current application
942     *
943     * The @p lang passed must be the full name of the locale to use, for
944     * example "en_US.utf8" or "es_ES@euro".
945     *
946     * Changing language with this function will make Elementary run through
947     * all its widgets, translating strings set with
948     * elm_object_domain_translatable_text_part_set(). This way, an entire
949     * UI can have its language changed without having to restart the program.
950     *
951     * For more complex cases, like having formatted strings that need
952     * translation, widgets will also emit a "language,changed" signal that
953     * the user can listen to to manually translate the text.
954     *
955     * @param lang Language to set, must be the full name of the locale
956     *
957     * @ingroup General
958     */
959    EAPI void         elm_language_set(const char *lang);
960
961    /**
962     * Set a label of an object
963     *
964     * @param obj The Elementary object
965     * @param part The text part name to set (NULL for the default label)
966     * @param label The new text of the label
967     *
968     * @note Elementary objects may have many labels (e.g. Action Slider)
969     *
970     * @ingroup General
971     */
972    EAPI void         elm_object_text_part_set(Evas_Object *obj, const char *part, const char *label);
973
974 #define elm_object_text_set(obj, label) elm_object_text_part_set((obj), NULL, (label))
975
976    /**
977     * Get a label of an object
978     *
979     * @param obj The Elementary object
980     * @param part The text part name to get (NULL for the default label)
981     * @return text of the label or NULL for any error
982     *
983     * @note Elementary objects may have many labels (e.g. Action Slider)
984     *
985     * @ingroup General
986     */
987    EAPI const char  *elm_object_text_part_get(const Evas_Object *obj, const char *part);
988
989 #define elm_object_text_get(obj) elm_object_text_part_get((obj), NULL)
990
991    /**
992     * Set the text for an objects' part, marking it as translatable.
993     *
994     * The string to set as @p text must be the original one. Do not pass the
995     * return of @c gettext() here. Elementary will translate the string
996     * internally and set it on the object using elm_object_text_part_set(),
997     * also storing the original string so that it can be automatically
998     * translated when the language is changed with elm_language_set().
999     *
1000     * The @p domain will be stored along to find the translation in the
1001     * correct catalog. It can be NULL, in which case it will use whatever
1002     * domain was set by the application with @c textdomain(). This is useful
1003     * in case you are building a library on top of Elementary that will have
1004     * its own translatable strings, that should not be mixed with those of
1005     * programs using the library.
1006     *
1007     * @param obj The object containing the text part
1008     * @param part The name of the part to set
1009     * @param domain The translation domain to use
1010     * @param text The original, non-translated text to set
1011     *
1012     * @ingroup General
1013     */
1014    EAPI void         elm_object_domain_translatable_text_part_set(Evas_Object *obj, const char *part, const char *domain, const char *text);
1015
1016 #define elm_object_domain_translatable_text_set(obj, domain, text) elm_object_domain_translatable_text_part_set((obj), NULL, (domain), (text))
1017
1018 #define elm_object_translatable_text_set(obj, text) elm_object_domain_translatable_text_part_set((obj), NULL, NULL, (text))
1019
1020    /**
1021     * Gets the original string set as translatable for an object
1022     *
1023     * When setting translated strings, the function elm_object_text_part_get()
1024     * will return the translation returned by @c gettext(). To get the
1025     * original string use this function.
1026     *
1027     * @param obj The object
1028     * @param part The name of the part that was set
1029     *
1030     * @return The original, untranslated string
1031     *
1032     * @ingroup General
1033     */
1034    EAPI const char  *elm_object_translatable_text_part_get(const Evas_Object *obj, const char *part);
1035
1036 #define elm_object_translatable_text_get(obj) elm_object_translatable_text_part_get((obj), NULL)
1037
1038    /**
1039     * Set a content of an object
1040     *
1041     * @param obj The Elementary object
1042     * @param part The content part name to set (NULL for the default content)
1043     * @param content The new content of the object
1044     *
1045     * @note Elementary objects may have many contents
1046     *
1047     * @ingroup General
1048     */
1049    EAPI void elm_object_content_part_set(Evas_Object *obj, const char *part, Evas_Object *content);
1050
1051 #define elm_object_content_set(obj, content) elm_object_content_part_set((obj), NULL, (content))
1052
1053    /**
1054     * Get a content of an object
1055     *
1056     * @param obj The Elementary object
1057     * @param item The content part name to get (NULL for the default content)
1058     * @return content of the object or NULL for any error
1059     *
1060     * @note Elementary objects may have many contents
1061     *
1062     * @ingroup General
1063     */
1064    EAPI Evas_Object *elm_object_content_part_get(const Evas_Object *obj, const char *part);
1065
1066 #define elm_object_content_get(obj) elm_object_content_part_get((obj), NULL)
1067
1068    /**
1069     * Unset a content of an object
1070     *
1071     * @param obj The Elementary object
1072     * @param item The content part name to unset (NULL for the default content)
1073     *
1074     * @note Elementary objects may have many contents
1075     *
1076     * @ingroup General
1077     */
1078    EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj, const char *part);
1079
1080 #define elm_object_content_unset(obj) elm_object_content_part_unset((obj), NULL)
1081
1082    /**
1083     * Get the widget object's handle which contains a given item
1084     *
1085     * @param item The Elementary object item
1086     * @return The widget object
1087     *
1088     * @note This returns the widget object itself that an item belongs to.
1089     *
1090     * @ingroup General
1091     */
1092    EAPI Evas_Object *elm_object_item_object_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
1093
1094    /**
1095     * Set a content of an object item
1096     *
1097     * @param it The Elementary object item
1098     * @param part The content part name to set (NULL for the default content)
1099     * @param content The new content of the object item
1100     *
1101     * @note Elementary object items may have many contents
1102     *
1103     * @ingroup General
1104     */
1105    EAPI void elm_object_item_content_part_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
1106
1107 #define elm_object_item_content_set(it, content) elm_object_item_content_part_set((it), NULL, (content))
1108
1109    /**
1110     * Get a content of an object item
1111     *
1112     * @param it The Elementary object item
1113     * @param part The content part name to unset (NULL for the default content)
1114     * @return content of the object item or NULL for any error
1115     *
1116     * @note Elementary object items may have many contents
1117     *
1118     * @ingroup General
1119     */
1120    EAPI Evas_Object *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *part);
1121
1122 #define elm_object_item_content_get(it) elm_object_item_content_part_get((it), NULL)
1123
1124    /**
1125     * Unset a content of an object item
1126     *
1127     * @param it The Elementary object item
1128     * @param part The content part name to unset (NULL for the default content)
1129     *
1130     * @note Elementary object items may have many contents
1131     *
1132     * @ingroup General
1133     */
1134    EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_Item *it, const char *part);
1135
1136 #define elm_object_item_content_unset(it, content) elm_object_item_content_part_unset((it), (content))
1137
1138    /**
1139     * Set a label of an object item
1140     *
1141     * @param it The Elementary object item
1142     * @param part The text part name to set (NULL for the default label)
1143     * @param label The new text of the label
1144     *
1145     * @note Elementary object items may have many labels
1146     *
1147     * @ingroup General
1148     */
1149    EAPI void elm_object_item_text_part_set(Elm_Object_Item *it, const char *part, const char *label);
1150
1151 #define elm_object_item_text_set(it, label) elm_object_item_text_part_set((it), NULL, (label))
1152
1153    /**
1154     * Get a label of an object item
1155     *
1156     * @param it The Elementary object item
1157     * @param part The text part name to get (NULL for the default label)
1158     * @return text of the label or NULL for any error
1159     *
1160     * @note Elementary object items may have many labels
1161     *
1162     * @ingroup General
1163     */
1164    EAPI const char *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
1165
1166 #define elm_object_item_text_get(it) elm_object_item_text_part_get((it), NULL)
1167
1168    /**
1169     * Set the text to read out when in accessibility mode
1170     *
1171     * @param obj The object which is to be described
1172     * @param txt The text that describes the widget to people with poor or no vision
1173     *
1174     * @ingroup General
1175     */
1176    EAPI void elm_object_access_info_set(Evas_Object *obj, const char *txt);
1177
1178    /**
1179     * Set the text to read out when in accessibility mode
1180     *
1181     * @param it The object item which is to be described
1182     * @param txt The text that describes the widget to people with poor or no vision
1183     *
1184     * @ingroup General
1185     */
1186    EAPI void elm_object_item_access_info_set(Elm_Object_Item *it, const char *txt);
1187
1188    /**
1189     * Get the data associated with an object item
1190     * @param it The object item
1191     * @return The data associated with @p it
1192     *
1193     * @ingroup General
1194     */
1195    EAPI void *elm_object_item_data_get(const Elm_Object_Item *it);
1196
1197    /**
1198     * Set the data associated with an object item
1199     * @param it The object item
1200     * @param data The data to be associated with @p it
1201     *
1202     * @ingroup General
1203     */
1204    EAPI void elm_object_item_data_set(Elm_Object_Item *it, void *data);
1205
1206    /**
1207     * Send a signal to the edje object of the widget item.
1208     *
1209     * This function sends a signal to the edje object of the obj item. An
1210     * edje program can respond to a signal by specifying matching
1211     * 'signal' and 'source' fields.
1212     *
1213     * @param it The Elementary object item
1214     * @param emission The signal's name.
1215     * @param source The signal's source.
1216     * @ingroup General
1217     */
1218    EAPI void             elm_object_item_signal_emit(Elm_Object_Item *it, const char *emission, const char *source) EINA_ARG_NONNULL(1);
1219
1220    /**
1221     * @}
1222     */
1223
1224    /**
1225     * @defgroup Caches Caches
1226     *
1227     * These are functions which let one fine-tune some cache values for
1228     * Elementary applications, thus allowing for performance adjustments.
1229     *
1230     * @{
1231     */
1232
1233    /**
1234     * @brief Flush all caches.
1235     *
1236     * Frees all data that was in cache and is not currently being used to reduce
1237     * memory usage. This frees Edje's, Evas' and Eet's cache. This is equivalent
1238     * to calling all of the following functions:
1239     * @li edje_file_cache_flush()
1240     * @li edje_collection_cache_flush()
1241     * @li eet_clearcache()
1242     * @li evas_image_cache_flush()
1243     * @li evas_font_cache_flush()
1244     * @li evas_render_dump()
1245     * @note Evas caches are flushed for every canvas associated with a window.
1246     *
1247     * @ingroup Caches
1248     */
1249    EAPI void         elm_all_flush(void);
1250
1251    /**
1252     * Get the configured cache flush interval time
1253     *
1254     * This gets the globally configured cache flush interval time, in
1255     * ticks
1256     *
1257     * @return The cache flush interval time
1258     * @ingroup Caches
1259     *
1260     * @see elm_all_flush()
1261     */
1262    EAPI int          elm_cache_flush_interval_get(void);
1263
1264    /**
1265     * Set the configured cache flush interval time
1266     *
1267     * This sets the globally configured cache flush interval time, in ticks
1268     *
1269     * @param size The cache flush interval time
1270     * @ingroup Caches
1271     *
1272     * @see elm_all_flush()
1273     */
1274    EAPI void         elm_cache_flush_interval_set(int size);
1275
1276    /**
1277     * Set the configured cache flush interval time for all applications on the
1278     * display
1279     *
1280     * This sets the globally configured cache flush interval time -- in ticks
1281     * -- for all applications on the display.
1282     *
1283     * @param size The cache flush interval time
1284     * @ingroup Caches
1285     */
1286    EAPI void         elm_cache_flush_interval_all_set(int size);
1287
1288    /**
1289     * Get the configured cache flush enabled state
1290     *
1291     * This gets the globally configured cache flush state - if it is enabled
1292     * or not. When cache flushing is enabled, elementary will regularly
1293     * (see elm_cache_flush_interval_get() ) flush caches and dump data out of
1294     * memory and allow usage to re-seed caches and data in memory where it
1295     * can do so. An idle application will thus minimise its memory usage as
1296     * data will be freed from memory and not be re-loaded as it is idle and
1297     * not rendering or doing anything graphically right now.
1298     *
1299     * @return The cache flush state
1300     * @ingroup Caches
1301     *
1302     * @see elm_all_flush()
1303     */
1304    EAPI Eina_Bool    elm_cache_flush_enabled_get(void);
1305
1306    /**
1307     * Set the configured cache flush enabled state
1308     *
1309     * This sets the globally configured cache flush enabled state.
1310     *
1311     * @param size The cache flush enabled state
1312     * @ingroup Caches
1313     *
1314     * @see elm_all_flush()
1315     */
1316    EAPI void         elm_cache_flush_enabled_set(Eina_Bool enabled);
1317
1318    /**
1319     * Set the configured cache flush enabled state for all applications on the
1320     * display
1321     *
1322     * This sets the globally configured cache flush enabled state for all
1323     * applications on the display.
1324     *
1325     * @param size The cache flush enabled state
1326     * @ingroup Caches
1327     */
1328    EAPI void         elm_cache_flush_enabled_all_set(Eina_Bool enabled);
1329
1330    /**
1331     * Get the configured font cache size
1332     *
1333     * This gets the globally configured font cache size, in bytes.
1334     *
1335     * @return The font cache size
1336     * @ingroup Caches
1337     */
1338    EAPI int          elm_font_cache_get(void);
1339
1340    /**
1341     * Set the configured font cache size
1342     *
1343     * This sets the globally configured font cache size, in bytes
1344     *
1345     * @param size The font cache size
1346     * @ingroup Caches
1347     */
1348    EAPI void         elm_font_cache_set(int size);
1349
1350    /**
1351     * Set the configured font cache size for all applications on the
1352     * display
1353     *
1354     * This sets the globally configured font cache size -- in bytes
1355     * -- for all applications on the display.
1356     *
1357     * @param size The font cache size
1358     * @ingroup Caches
1359     */
1360    EAPI void         elm_font_cache_all_set(int size);
1361
1362    /**
1363     * Get the configured image cache size
1364     *
1365     * This gets the globally configured image cache size, in bytes
1366     *
1367     * @return The image cache size
1368     * @ingroup Caches
1369     */
1370    EAPI int          elm_image_cache_get(void);
1371
1372    /**
1373     * Set the configured image cache size
1374     *
1375     * This sets the globally configured image cache size, in bytes
1376     *
1377     * @param size The image cache size
1378     * @ingroup Caches
1379     */
1380    EAPI void         elm_image_cache_set(int size);
1381
1382    /**
1383     * Set the configured image cache size for all applications on the
1384     * display
1385     *
1386     * This sets the globally configured image cache size -- in bytes
1387     * -- for all applications on the display.
1388     *
1389     * @param size The image cache size
1390     * @ingroup Caches
1391     */
1392    EAPI void         elm_image_cache_all_set(int size);
1393
1394    /**
1395     * Get the configured edje file cache size.
1396     *
1397     * This gets the globally configured edje file cache size, in number
1398     * of files.
1399     *
1400     * @return The edje file cache size
1401     * @ingroup Caches
1402     */
1403    EAPI int          elm_edje_file_cache_get(void);
1404
1405    /**
1406     * Set the configured edje file cache size
1407     *
1408     * This sets the globally configured edje file cache size, in number
1409     * of files.
1410     *
1411     * @param size The edje file cache size
1412     * @ingroup Caches
1413     */
1414    EAPI void         elm_edje_file_cache_set(int size);
1415
1416    /**
1417     * Set the configured edje file cache size for all applications on the
1418     * display
1419     *
1420     * This sets the globally configured edje file cache size -- in number
1421     * of files -- for all applications on the display.
1422     *
1423     * @param size The edje file cache size
1424     * @ingroup Caches
1425     */
1426    EAPI void         elm_edje_file_cache_all_set(int size);
1427
1428    /**
1429     * Get the configured edje collections (groups) cache size.
1430     *
1431     * This gets the globally configured edje collections cache size, in
1432     * number of collections.
1433     *
1434     * @return The edje collections cache size
1435     * @ingroup Caches
1436     */
1437    EAPI int          elm_edje_collection_cache_get(void);
1438
1439    /**
1440     * Set the configured edje collections (groups) cache size
1441     *
1442     * This sets the globally configured edje collections cache size, in
1443     * number of collections.
1444     *
1445     * @param size The edje collections cache size
1446     * @ingroup Caches
1447     */
1448    EAPI void         elm_edje_collection_cache_set(int size);
1449
1450    /**
1451     * Set the configured edje collections (groups) cache size for all
1452     * applications on the display
1453     *
1454     * This sets the globally configured edje collections cache size -- in
1455     * number of collections -- for all applications on the display.
1456     *
1457     * @param size The edje collections cache size
1458     * @ingroup Caches
1459     */
1460    EAPI void         elm_edje_collection_cache_all_set(int size);
1461
1462    /**
1463     * @}
1464     */
1465
1466    /**
1467     * @defgroup Scaling Widget Scaling
1468     *
1469     * Different widgets can be scaled independently. These functions
1470     * allow you to manipulate this scaling on a per-widget basis. The
1471     * object and all its children get their scaling factors multiplied
1472     * by the scale factor set. This is multiplicative, in that if a
1473     * child also has a scale size set it is in turn multiplied by its
1474     * parent's scale size. @c 1.0 means ā€œdon't scaleā€, @c 2.0 is
1475     * double size, @c 0.5 is half, etc.
1476     *
1477     * @ref general_functions_example_page "This" example contemplates
1478     * some of these functions.
1479     */
1480
1481    /**
1482     * Get the global scaling factor
1483     *
1484     * This gets the globally configured scaling factor that is applied to all
1485     * objects.
1486     *
1487     * @return The scaling factor
1488     * @ingroup Scaling
1489     */
1490    EAPI double       elm_scale_get(void);
1491
1492    /**
1493     * Set the global scaling factor
1494     *
1495     * This sets the globally configured scaling factor that is applied to all
1496     * objects.
1497     *
1498     * @param scale The scaling factor to set
1499     * @ingroup Scaling
1500     */
1501    EAPI void         elm_scale_set(double scale);
1502
1503    /**
1504     * Set the global scaling factor for all applications on the display
1505     *
1506     * This sets the globally configured scaling factor that is applied to all
1507     * objects for all applications.
1508     * @param scale The scaling factor to set
1509     * @ingroup Scaling
1510     */
1511    EAPI void         elm_scale_all_set(double scale);
1512
1513    /**
1514     * Set the scaling factor for a given Elementary object
1515     *
1516     * @param obj The Elementary to operate on
1517     * @param scale Scale factor (from @c 0.0 up, with @c 1.0 meaning
1518     * no scaling)
1519     *
1520     * @ingroup Scaling
1521     */
1522    EAPI void         elm_object_scale_set(Evas_Object *obj, double scale) EINA_ARG_NONNULL(1);
1523
1524    /**
1525     * Get the scaling factor for a given Elementary object
1526     *
1527     * @param obj The object
1528     * @return The scaling factor set by elm_object_scale_set()
1529     *
1530     * @ingroup Scaling
1531     */
1532    EAPI double       elm_object_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1533
1534    /**
1535     * @defgroup Password_last_show Password last input show
1536     *
1537     * Last show feature of password mode enables user to view
1538     * the last input entered for few seconds before masking it.
1539     * These functions allow to set this feature in password mode
1540     * of entry widget and also allow to manipulate the duration
1541     * for which the input has to be visible.
1542     *
1543     * @{
1544     */
1545
1546    /**
1547     * Get show last setting of password mode.
1548     *
1549     * This gets the show last input setting of password mode which might be
1550     * enabled or disabled.
1551     *
1552     * @return @c EINA_TRUE, if the last input show setting is enabled, @c EINA_FALSE
1553     *            if it's disabled.
1554     * @ingroup Password_last_show
1555     */
1556    EAPI Eina_Bool elm_password_show_last_get(void);
1557
1558    /**
1559     * Set show last setting in password mode.
1560     *
1561     * This enables or disables show last setting of password mode.
1562     *
1563     * @param password_show_last If EINA_TRUE enable's last input show in password mode.
1564     * @see elm_password_show_last_timeout_set()
1565     * @ingroup Password_last_show
1566     */
1567    EAPI void elm_password_show_last_set(Eina_Bool password_show_last);
1568
1569    /**
1570     * Get's the timeout value in last show password mode.
1571     *
1572     * This gets the time out value for which the last input entered in password
1573     * mode will be visible.
1574     *
1575     * @return The timeout value of last show password mode.
1576     * @ingroup Password_last_show
1577     */
1578    EAPI double elm_password_show_last_timeout_get(void);
1579
1580    /**
1581     * Set's the timeout value in last show password mode.
1582     *
1583     * This sets the time out value for which the last input entered in password
1584     * mode will be visible.
1585     *
1586     * @param password_show_last_timeout The timeout value.
1587     * @see elm_password_show_last_set()
1588     * @ingroup Password_last_show
1589     */
1590    EAPI void elm_password_show_last_timeout_set(double password_show_last_timeout);
1591
1592    /**
1593     * @}
1594     */
1595
1596    /**
1597     * @defgroup UI-Mirroring Selective Widget mirroring
1598     *
1599     * These functions allow you to set ui-mirroring on specific
1600     * widgets or the whole interface. Widgets can be in one of two
1601     * modes, automatic and manual.  Automatic means they'll be changed
1602     * according to the system mirroring mode and manual means only
1603     * explicit changes will matter. You are not supposed to change
1604     * mirroring state of a widget set to automatic, will mostly work,
1605     * but the behavior is not really defined.
1606     *
1607     * @{
1608     */
1609
1610    EAPI Eina_Bool    elm_mirrored_get(void);
1611    EAPI void         elm_mirrored_set(Eina_Bool mirrored);
1612
1613    /**
1614     * Get the system mirrored mode. This determines the default mirrored mode
1615     * of widgets.
1616     *
1617     * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
1618     */
1619    EAPI Eina_Bool    elm_object_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1620
1621    /**
1622     * Set the system mirrored mode. This determines the default mirrored mode
1623     * of widgets.
1624     *
1625     * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
1626     */
1627    EAPI void         elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
1628
1629    /**
1630     * Returns the widget's mirrored mode setting.
1631     *
1632     * @param obj The widget.
1633     * @return mirrored mode setting of the object.
1634     *
1635     **/
1636    EAPI Eina_Bool    elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1637
1638    /**
1639     * Sets the widget's mirrored mode setting.
1640     * When widget in automatic mode, it follows the system mirrored mode set by
1641     * elm_mirrored_set().
1642     * @param obj The widget.
1643     * @param automatic EINA_TRUE for auto mirrored mode. EINA_FALSE for manual.
1644     */
1645    EAPI void         elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
1646
1647    /**
1648     * @}
1649     */
1650
1651    /**
1652     * Set the style to use by a widget
1653     *
1654     * Sets the style name that will define the appearance of a widget. Styles
1655     * vary from widget to widget and may also be defined by other themes
1656     * by means of extensions and overlays.
1657     *
1658     * @param obj The Elementary widget to style
1659     * @param style The style name to use
1660     *
1661     * @see elm_theme_extension_add()
1662     * @see elm_theme_extension_del()
1663     * @see elm_theme_overlay_add()
1664     * @see elm_theme_overlay_del()
1665     *
1666     * @ingroup Styles
1667     */
1668    EAPI void         elm_object_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
1669    /**
1670     * Get the style used by the widget
1671     *
1672     * This gets the style being used for that widget. Note that the string
1673     * pointer is only valid as longas the object is valid and the style doesn't
1674     * change.
1675     *
1676     * @param obj The Elementary widget to query for its style
1677     * @return The style name used
1678     *
1679     * @see elm_object_style_set()
1680     *
1681     * @ingroup Styles
1682     */
1683    EAPI const char  *elm_object_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1684
1685    /**
1686     * @defgroup Styles Styles
1687     *
1688     * Widgets can have different styles of look. These generic API's
1689     * set styles of widgets, if they support them (and if the theme(s)
1690     * do).
1691     *
1692     * @ref general_functions_example_page "This" example contemplates
1693     * some of these functions.
1694     */
1695
1696    /**
1697     * Set the disabled state of an Elementary object.
1698     *
1699     * @param obj The Elementary object to operate on
1700     * @param disabled The state to put in in: @c EINA_TRUE for
1701     *        disabled, @c EINA_FALSE for enabled
1702     *
1703     * Elementary objects can be @b disabled, in which state they won't
1704     * receive input and, in general, will be themed differently from
1705     * their normal state, usually greyed out. Useful for contexts
1706     * where you don't want your users to interact with some of the
1707     * parts of you interface.
1708     *
1709     * This sets the state for the widget, either disabling it or
1710     * enabling it back.
1711     *
1712     * @ingroup Styles
1713     */
1714    EAPI void         elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
1715
1716    /**
1717     * Get the disabled state of an Elementary object.
1718     *
1719     * @param obj The Elementary object to operate on
1720     * @return @c EINA_TRUE, if the widget is disabled, @c EINA_FALSE
1721     *            if it's enabled (or on errors)
1722     *
1723     * This gets the state of the widget, which might be enabled or disabled.
1724     *
1725     * @ingroup Styles
1726     */
1727    EAPI Eina_Bool    elm_object_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1728
1729    /**
1730     * @defgroup WidgetNavigation Widget Tree Navigation.
1731     *
1732     * How to check if an Evas Object is an Elementary widget? How to
1733     * get the first elementary widget that is parent of the given
1734     * object?  These are all covered in widget tree navigation.
1735     *
1736     * @ref general_functions_example_page "This" example contemplates
1737     * some of these functions.
1738     */
1739
1740    /**
1741     * Check if the given Evas Object is an Elementary widget.
1742     *
1743     * @param obj the object to query.
1744     * @return @c EINA_TRUE if it is an elementary widget variant,
1745     *         @c EINA_FALSE otherwise
1746     * @ingroup WidgetNavigation
1747     */
1748    EAPI Eina_Bool    elm_object_widget_check(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1749
1750    /**
1751     * Get the first parent of the given object that is an Elementary
1752     * widget.
1753     *
1754     * @param obj the Elementary object to query parent from.
1755     * @return the parent object that is an Elementary widget, or @c
1756     *         NULL, if it was not found.
1757     *
1758     * Use this to query for an object's parent widget.
1759     *
1760     * @note Most of Elementary users wouldn't be mixing non-Elementary
1761     * smart objects in the objects tree of an application, as this is
1762     * an advanced usage of Elementary with Evas. So, except for the
1763     * application's window, which is the root of that tree, all other
1764     * objects would have valid Elementary widget parents.
1765     *
1766     * @ingroup WidgetNavigation
1767     */
1768    EAPI Evas_Object *elm_object_parent_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1769
1770    /**
1771     * Get the top level parent of an Elementary widget.
1772     *
1773     * @param obj The object to query.
1774     * @return The top level Elementary widget, or @c NULL if parent cannot be
1775     * found.
1776     * @ingroup WidgetNavigation
1777     */
1778    EAPI Evas_Object *elm_object_top_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1779
1780    /**
1781     * Get the string that represents this Elementary widget.
1782     *
1783     * @note Elementary is weird and exposes itself as a single
1784     *       Evas_Object_Smart_Class of type "elm_widget", so
1785     *       evas_object_type_get() always return that, making debug and
1786     *       language bindings hard. This function tries to mitigate this
1787     *       problem, but the solution is to change Elementary to use
1788     *       proper inheritance.
1789     *
1790     * @param obj the object to query.
1791     * @return Elementary widget name, or @c NULL if not a valid widget.
1792     * @ingroup WidgetNavigation
1793     */
1794    EAPI const char  *elm_object_widget_type_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1795
1796    /**
1797     * @defgroup Config Elementary Config
1798     *
1799     * Elementary configuration is formed by a set options bounded to a
1800     * given @ref Profile profile, like @ref Theme theme, @ref Fingers
1801     * "finger size", etc. These are functions with which one syncronizes
1802     * changes made to those values to the configuration storing files, de
1803     * facto. You most probably don't want to use the functions in this
1804     * group unlees you're writing an elementary configuration manager.
1805     *
1806     * @{
1807     */
1808
1809    /**
1810     * Save back Elementary's configuration, so that it will persist on
1811     * future sessions.
1812     *
1813     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
1814     * @ingroup Config
1815     *
1816     * This function will take effect -- thus, do I/O -- immediately. Use
1817     * it when you want to apply all configuration changes at once. The
1818     * current configuration set will get saved onto the current profile
1819     * configuration file.
1820     *
1821     */
1822    EAPI Eina_Bool    elm_config_save(void);
1823
1824    /**
1825     * Reload Elementary's configuration, bounded to current selected
1826     * profile.
1827     *
1828     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
1829     * @ingroup Config
1830     *
1831     * Useful when you want to force reloading of configuration values for
1832     * a profile. If one removes user custom configuration directories,
1833     * for example, it will force a reload with system values insted.
1834     *
1835     */
1836    EAPI void         elm_config_reload(void);
1837
1838    /**
1839     * @}
1840     */
1841
1842    /**
1843     * @defgroup Profile Elementary Profile
1844     *
1845     * Profiles are pre-set options that affect the whole look-and-feel of
1846     * Elementary-based applications. There are, for example, profiles
1847     * aimed at desktop computer applications and others aimed at mobile,
1848     * touchscreen-based ones. You most probably don't want to use the
1849     * functions in this group unlees you're writing an elementary
1850     * configuration manager.
1851     *
1852     * @{
1853     */
1854
1855    /**
1856     * Get Elementary's profile in use.
1857     *
1858     * This gets the global profile that is applied to all Elementary
1859     * applications.
1860     *
1861     * @return The profile's name
1862     * @ingroup Profile
1863     */
1864    EAPI const char  *elm_profile_current_get(void);
1865
1866    /**
1867     * Get an Elementary's profile directory path in the filesystem. One
1868     * may want to fetch a system profile's dir or an user one (fetched
1869     * inside $HOME).
1870     *
1871     * @param profile The profile's name
1872     * @param is_user Whether to lookup for an user profile (@c EINA_TRUE)
1873     *                or a system one (@c EINA_FALSE)
1874     * @return The profile's directory path.
1875     * @ingroup Profile
1876     *
1877     * @note You must free it with elm_profile_dir_free().
1878     */
1879    EAPI const char  *elm_profile_dir_get(const char *profile, Eina_Bool is_user);
1880
1881    /**
1882     * Free an Elementary's profile directory path, as returned by
1883     * elm_profile_dir_get().
1884     *
1885     * @param p_dir The profile's path
1886     * @ingroup Profile
1887     *
1888     */
1889    EAPI void         elm_profile_dir_free(const char *p_dir);
1890
1891    /**
1892     * Get Elementary's list of available profiles.
1893     *
1894     * @return The profiles list. List node data are the profile name
1895     *         strings.
1896     * @ingroup Profile
1897     *
1898     * @note One must free this list, after usage, with the function
1899     *       elm_profile_list_free().
1900     */
1901    EAPI Eina_List   *elm_profile_list_get(void);
1902
1903    /**
1904     * Free Elementary's list of available profiles.
1905     *
1906     * @param l The profiles list, as returned by elm_profile_list_get().
1907     * @ingroup Profile
1908     *
1909     */
1910    EAPI void         elm_profile_list_free(Eina_List *l);
1911
1912    /**
1913     * Set Elementary's profile.
1914     *
1915     * This sets the global profile that is applied to Elementary
1916     * applications. Just the process the call comes from will be
1917     * affected.
1918     *
1919     * @param profile The profile's name
1920     * @ingroup Profile
1921     *
1922     */
1923    EAPI void         elm_profile_set(const char *profile);
1924
1925    /**
1926     * Set Elementary's profile.
1927     *
1928     * This sets the global profile that is applied to all Elementary
1929     * applications. All running Elementary windows will be affected.
1930     *
1931     * @param profile The profile's name
1932     * @ingroup Profile
1933     *
1934     */
1935    EAPI void         elm_profile_all_set(const char *profile);
1936
1937    /**
1938     * @}
1939     */
1940
1941    /**
1942     * @defgroup Engine Elementary Engine
1943     *
1944     * These are functions setting and querying which rendering engine
1945     * Elementary will use for drawing its windows' pixels.
1946     *
1947     * The following are the available engines:
1948     * @li "software_x11"
1949     * @li "fb"
1950     * @li "directfb"
1951     * @li "software_16_x11"
1952     * @li "software_8_x11"
1953     * @li "xrender_x11"
1954     * @li "opengl_x11"
1955     * @li "software_gdi"
1956     * @li "software_16_wince_gdi"
1957     * @li "sdl"
1958     * @li "software_16_sdl"
1959     * @li "opengl_sdl"
1960     * @li "buffer"
1961     * @li "ews"
1962     * @li "opengl_cocoa"
1963     * @li "psl1ght"
1964     *
1965     * @{
1966     */
1967
1968    /**
1969     * @brief Get Elementary's rendering engine in use.
1970     *
1971     * @return The rendering engine's name
1972     * @note there's no need to free the returned string, here.
1973     *
1974     * This gets the global rendering engine that is applied to all Elementary
1975     * applications.
1976     *
1977     * @see elm_engine_set()
1978     */
1979    EAPI const char  *elm_engine_current_get(void);
1980
1981    /**
1982     * @brief Set Elementary's rendering engine for use.
1983     *
1984     * @param engine The rendering engine's name
1985     *
1986     * This sets global rendering engine that is applied to all Elementary
1987     * applications. Note that it will take effect only to Elementary windows
1988     * created after this is called.
1989     *
1990     * @see elm_win_add()
1991     */
1992    EAPI void         elm_engine_set(const char *engine);
1993
1994    /**
1995     * @}
1996     */
1997
1998    /**
1999     * @defgroup Fonts Elementary Fonts
2000     *
2001     * These are functions dealing with font rendering, selection and the
2002     * like for Elementary applications. One might fetch which system
2003     * fonts are there to use and set custom fonts for individual classes
2004     * of UI items containing text (text classes).
2005     *
2006     * @{
2007     */
2008
2009   typedef struct _Elm_Text_Class
2010     {
2011        const char *name;
2012        const char *desc;
2013     } Elm_Text_Class;
2014
2015   typedef struct _Elm_Font_Overlay
2016     {
2017        const char     *text_class;
2018        const char     *font;
2019        Evas_Font_Size  size;
2020     } Elm_Font_Overlay;
2021
2022   typedef struct _Elm_Font_Properties
2023     {
2024        const char *name;
2025        Eina_List  *styles;
2026     } Elm_Font_Properties;
2027
2028    /**
2029     * Get Elementary's list of supported text classes.
2030     *
2031     * @return The text classes list, with @c Elm_Text_Class blobs as data.
2032     * @ingroup Fonts
2033     *
2034     * Release the list with elm_text_classes_list_free().
2035     */
2036    EAPI const Eina_List     *elm_text_classes_list_get(void);
2037
2038    /**
2039     * Free Elementary's list of supported text classes.
2040     *
2041     * @ingroup Fonts
2042     *
2043     * @see elm_text_classes_list_get().
2044     */
2045    EAPI void                 elm_text_classes_list_free(const Eina_List *list);
2046
2047    /**
2048     * Get Elementary's list of font overlays, set with
2049     * elm_font_overlay_set().
2050     *
2051     * @return The font overlays list, with @c Elm_Font_Overlay blobs as
2052     * data.
2053     *
2054     * @ingroup Fonts
2055     *
2056     * For each text class, one can set a <b>font overlay</b> for it,
2057     * overriding the default font properties for that class coming from
2058     * the theme in use. There is no need to free this list.
2059     *
2060     * @see elm_font_overlay_set() and elm_font_overlay_unset().
2061     */
2062    EAPI const Eina_List     *elm_font_overlay_list_get(void);
2063
2064    /**
2065     * Set a font overlay for a given Elementary text class.
2066     *
2067     * @param text_class Text class name
2068     * @param font Font name and style string
2069     * @param size Font size
2070     *
2071     * @ingroup Fonts
2072     *
2073     * @p font has to be in the format returned by
2074     * elm_font_fontconfig_name_get(). @see elm_font_overlay_list_get()
2075     * and elm_font_overlay_unset().
2076     */
2077    EAPI void                 elm_font_overlay_set(const char *text_class, const char *font, Evas_Font_Size size);
2078
2079    /**
2080     * Unset a font overlay for a given Elementary text class.
2081     *
2082     * @param text_class Text class name
2083     *
2084     * @ingroup Fonts
2085     *
2086     * This will bring back text elements belonging to text class
2087     * @p text_class back to their default font settings.
2088     */
2089    EAPI void                 elm_font_overlay_unset(const char *text_class);
2090
2091    /**
2092     * Apply the changes made with elm_font_overlay_set() and
2093     * elm_font_overlay_unset() on the current Elementary window.
2094     *
2095     * @ingroup Fonts
2096     *
2097     * This applies all font overlays set to all objects in the UI.
2098     */
2099    EAPI void                 elm_font_overlay_apply(void);
2100
2101    /**
2102     * Apply the changes made with elm_font_overlay_set() and
2103     * elm_font_overlay_unset() on all Elementary application windows.
2104     *
2105     * @ingroup Fonts
2106     *
2107     * This applies all font overlays set to all objects in the UI.
2108     */
2109    EAPI void                 elm_font_overlay_all_apply(void);
2110
2111    /**
2112     * Translate a font (family) name string in fontconfig's font names
2113     * syntax into an @c Elm_Font_Properties struct.
2114     *
2115     * @param font The font name and styles string
2116     * @return the font properties struct
2117     *
2118     * @ingroup Fonts
2119     *
2120     * @note The reverse translation can be achived with
2121     * elm_font_fontconfig_name_get(), for one style only (single font
2122     * instance, not family).
2123     */
2124    EAPI Elm_Font_Properties *elm_font_properties_get(const char *font) EINA_ARG_NONNULL(1);
2125
2126    /**
2127     * Free font properties return by elm_font_properties_get().
2128     *
2129     * @param efp the font properties struct
2130     *
2131     * @ingroup Fonts
2132     */
2133    EAPI void                 elm_font_properties_free(Elm_Font_Properties *efp) EINA_ARG_NONNULL(1);
2134
2135    /**
2136     * Translate a font name, bound to a style, into fontconfig's font names
2137     * syntax.
2138     *
2139     * @param name The font (family) name
2140     * @param style The given style (may be @c NULL)
2141     *
2142     * @return the font name and style string
2143     *
2144     * @ingroup Fonts
2145     *
2146     * @note The reverse translation can be achived with
2147     * elm_font_properties_get(), for one style only (single font
2148     * instance, not family).
2149     */
2150    EAPI const char          *elm_font_fontconfig_name_get(const char *name, const char *style) EINA_ARG_NONNULL(1);
2151
2152    /**
2153     * Free the font string return by elm_font_fontconfig_name_get().
2154     *
2155     * @param efp the font properties struct
2156     *
2157     * @ingroup Fonts
2158     */
2159    EAPI void                 elm_font_fontconfig_name_free(const char *name) EINA_ARG_NONNULL(1);
2160
2161    /**
2162     * Create a font hash table of available system fonts.
2163     *
2164     * One must call it with @p list being the return value of
2165     * evas_font_available_list(). The hash will be indexed by font
2166     * (family) names, being its values @c Elm_Font_Properties blobs.
2167     *
2168     * @param list The list of available system fonts, as returned by
2169     * evas_font_available_list().
2170     * @return the font hash.
2171     *
2172     * @ingroup Fonts
2173     *
2174     * @note The user is supposed to get it populated at least with 3
2175     * default font families (Sans, Serif, Monospace), which should be
2176     * present on most systems.
2177     */
2178    EAPI Eina_Hash           *elm_font_available_hash_add(Eina_List *list);
2179
2180    /**
2181     * Free the hash return by elm_font_available_hash_add().
2182     *
2183     * @param hash the hash to be freed.
2184     *
2185     * @ingroup Fonts
2186     */
2187    EAPI void                 elm_font_available_hash_del(Eina_Hash *hash);
2188
2189    /**
2190     * @}
2191     */
2192
2193    /**
2194     * @defgroup Fingers Fingers
2195     *
2196     * Elementary is designed to be finger-friendly for touchscreens,
2197     * and so in addition to scaling for display resolution, it can
2198     * also scale based on finger "resolution" (or size). You can then
2199     * customize the granularity of the areas meant to receive clicks
2200     * on touchscreens.
2201     *
2202     * Different profiles may have pre-set values for finger sizes.
2203     *
2204     * @ref general_functions_example_page "This" example contemplates
2205     * some of these functions.
2206     *
2207     * @{
2208     */
2209
2210    /**
2211     * Get the configured "finger size"
2212     *
2213     * @return The finger size
2214     *
2215     * This gets the globally configured finger size, <b>in pixels</b>
2216     *
2217     * @ingroup Fingers
2218     */
2219    EAPI Evas_Coord       elm_finger_size_get(void);
2220
2221    /**
2222     * Set the configured finger size
2223     *
2224     * This sets the globally configured finger size in pixels
2225     *
2226     * @param size The finger size
2227     * @ingroup Fingers
2228     */
2229    EAPI void             elm_finger_size_set(Evas_Coord size);
2230
2231    /**
2232     * Set the configured finger size for all applications on the display
2233     *
2234     * This sets the globally configured finger size in pixels for all
2235     * applications on the display
2236     *
2237     * @param size The finger size
2238     * @ingroup Fingers
2239     */
2240    EAPI void             elm_finger_size_all_set(Evas_Coord size);
2241
2242    /**
2243     * @}
2244     */
2245
2246    /**
2247     * @defgroup Focus Focus
2248     *
2249     * An Elementary application has, at all times, one (and only one)
2250     * @b focused object. This is what determines where the input
2251     * events go to within the application's window. Also, focused
2252     * objects can be decorated differently, in order to signal to the
2253     * user where the input is, at a given moment.
2254     *
2255     * Elementary applications also have the concept of <b>focus
2256     * chain</b>: one can cycle through all the windows' focusable
2257     * objects by input (tab key) or programmatically. The default
2258     * focus chain for an application is the one define by the order in
2259     * which the widgets where added in code. One will cycle through
2260     * top level widgets, and, for each one containg sub-objects, cycle
2261     * through them all, before returning to the level
2262     * above. Elementary also allows one to set @b custom focus chains
2263     * for their applications.
2264     *
2265     * Besides the focused decoration a widget may exhibit, when it
2266     * gets focus, Elementary has a @b global focus highlight object
2267     * that can be enabled for a window. If one chooses to do so, this
2268     * extra highlight effect will surround the current focused object,
2269     * too.
2270     *
2271     * @note Some Elementary widgets are @b unfocusable, after
2272     * creation, by their very nature: they are not meant to be
2273     * interacted with input events, but are there just for visual
2274     * purposes.
2275     *
2276     * @ref general_functions_example_page "This" example contemplates
2277     * some of these functions.
2278     */
2279
2280    /**
2281     * Get the enable status of the focus highlight
2282     *
2283     * This gets whether the highlight on focused objects is enabled or not
2284     * @ingroup Focus
2285     */
2286    EAPI Eina_Bool        elm_focus_highlight_enabled_get(void);
2287
2288    /**
2289     * Set the enable status of the focus highlight
2290     *
2291     * Set whether to show or not the highlight on focused objects
2292     * @param enable Enable highlight if EINA_TRUE, disable otherwise
2293     * @ingroup Focus
2294     */
2295    EAPI void             elm_focus_highlight_enabled_set(Eina_Bool enable);
2296
2297    /**
2298     * Get the enable status of the highlight animation
2299     *
2300     * Get whether the focus highlight, if enabled, will animate its switch from
2301     * one object to the next
2302     * @ingroup Focus
2303     */
2304    EAPI Eina_Bool        elm_focus_highlight_animate_get(void);
2305
2306    /**
2307     * Set the enable status of the highlight animation
2308     *
2309     * Set whether the focus highlight, if enabled, will animate its switch from
2310     * one object to the next
2311     * @param animate Enable animation if EINA_TRUE, disable otherwise
2312     * @ingroup Focus
2313     */
2314    EAPI void             elm_focus_highlight_animate_set(Eina_Bool animate);
2315
2316    /**
2317     * Get the whether an Elementary object has the focus or not.
2318     *
2319     * @param obj The Elementary object to get the information from
2320     * @return @c EINA_TRUE, if the object is focused, @c EINA_FALSE if
2321     *            not (and on errors).
2322     *
2323     * @see elm_object_focus_set()
2324     *
2325     * @ingroup Focus
2326     */
2327    EAPI Eina_Bool        elm_object_focus_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2328    /**
2329     * Set/unset focus to a given Elementary object.
2330     *
2331     * @param obj The Elementary object to operate on.
2332     * @param enable @c EINA_TRUE Set focus to a given object,
2333     *               @c EINA_FALSE Unset focus to a given object.
2334     *
2335     * @note When you set focus to this object, if it can handle focus, will
2336     * take the focus away from the one who had it previously and will, for
2337     * now on, be the one receiving input events. Unsetting focus will remove
2338     * the focus from @p obj, passing it back to the previous element in the
2339     * focus chain list.
2340     *
2341     * @see elm_object_focus_get(), elm_object_focus_custom_chain_get()
2342     *
2343     * @ingroup Focus
2344     */
2345    EAPI void             elm_object_focus_set(Evas_Object *obj, Eina_Bool focus) EINA_ARG_NONNULL(1);
2346
2347    /**
2348     * Make a given Elementary object the focused one.
2349     *
2350     * @param obj The Elementary object to make focused.
2351     *
2352     * @note This object, if it can handle focus, will take the focus
2353     * away from the one who had it previously and will, for now on, be
2354     * the one receiving input events.
2355     *
2356     * @see elm_object_focus_get()
2357     *
2358     * @ingroup Focus
2359     */
2360    EAPI void             elm_object_focus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2361
2362    /**
2363     * Remove the focus from an Elementary object
2364     *
2365     * @param obj The Elementary to take focus from
2366     *
2367     * This removes the focus from @p obj, passing it back to the
2368     * previous element in the focus chain list.
2369     *
2370     * @see elm_object_focus() and elm_object_focus_custom_chain_get()
2371     *
2372     * @ingroup Focus
2373     */
2374    EAPI void             elm_object_unfocus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2375
2376    /**
2377     * Set the ability for an Element object to be focused
2378     *
2379     * @param obj The Elementary object to operate on
2380     * @param enable @c EINA_TRUE if the object can be focused, @c
2381     *        EINA_FALSE if not (and on errors)
2382     *
2383     * This sets whether the object @p obj is able to take focus or
2384     * not. Unfocusable objects do nothing when programmatically
2385     * focused, being the nearest focusable parent object the one
2386     * really getting focus. Also, when they receive mouse input, they
2387     * will get the event, but not take away the focus from where it
2388     * was previously.
2389     *
2390     * @ingroup Focus
2391     */
2392    EAPI void             elm_object_focus_allow_set(Evas_Object *obj, Eina_Bool enable) EINA_ARG_NONNULL(1);
2393
2394    /**
2395     * Get whether an Elementary object is focusable or not
2396     *
2397     * @param obj The Elementary object to operate on
2398     * @return @c EINA_TRUE if the object is allowed to be focused, @c
2399     *             EINA_FALSE if not (and on errors)
2400     *
2401     * @note Objects which are meant to be interacted with by input
2402     * events are created able to be focused, by default. All the
2403     * others are not.
2404     *
2405     * @ingroup Focus
2406     */
2407    EAPI Eina_Bool        elm_object_focus_allow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2408
2409    /**
2410     * Set custom focus chain.
2411     *
2412     * This function overwrites any previous custom focus chain within
2413     * the list of objects. The previous list will be deleted and this list
2414     * will be managed by elementary. After it is set, don't modify it.
2415     *
2416     * @note On focus cycle, only will be evaluated children of this container.
2417     *
2418     * @param obj The container object
2419     * @param objs Chain of objects to pass focus
2420     * @ingroup Focus
2421     */
2422    EAPI void             elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
2423
2424    /**
2425     * Unset a custom focus chain on a given Elementary widget
2426     *
2427     * @param obj The container object to remove focus chain from
2428     *
2429     * Any focus chain previously set on @p obj (for its child objects)
2430     * is removed entirely after this call.
2431     *
2432     * @ingroup Focus
2433     */
2434    EAPI void             elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
2435
2436    /**
2437     * Get custom focus chain
2438     *
2439     * @param obj The container object
2440     * @ingroup Focus
2441     */
2442    EAPI const Eina_List *elm_object_focus_custom_chain_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2443
2444    /**
2445     * Append object to custom focus chain.
2446     *
2447     * @note If relative_child equal to NULL or not in custom chain, the object
2448     * will be added in end.
2449     *
2450     * @note On focus cycle, only will be evaluated children of this container.
2451     *
2452     * @param obj The container object
2453     * @param child The child to be added in custom chain
2454     * @param relative_child The relative object to position the child
2455     * @ingroup Focus
2456     */
2457    EAPI void             elm_object_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2458
2459    /**
2460     * Prepend object to custom focus chain.
2461     *
2462     * @note If relative_child equal to NULL or not in custom chain, the object
2463     * will be added in begin.
2464     *
2465     * @note On focus cycle, only will be evaluated children of this container.
2466     *
2467     * @param obj The container object
2468     * @param child The child to be added in custom chain
2469     * @param relative_child The relative object to position the child
2470     * @ingroup Focus
2471     */
2472    EAPI void             elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2473
2474    /**
2475     * Give focus to next object in object tree.
2476     *
2477     * Give focus to next object in focus chain of one object sub-tree.
2478     * If the last object of chain already have focus, the focus will go to the
2479     * first object of chain.
2480     *
2481     * @param obj The object root of sub-tree
2482     * @param dir Direction to cycle the focus
2483     *
2484     * @ingroup Focus
2485     */
2486    EAPI void             elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir) EINA_ARG_NONNULL(1);
2487
2488    /**
2489     * Give focus to near object in one direction.
2490     *
2491     * Give focus to near object in direction of one object.
2492     * If none focusable object in given direction, the focus will not change.
2493     *
2494     * @param obj The reference object
2495     * @param x Horizontal component of direction to focus
2496     * @param y Vertical component of direction to focus
2497     *
2498     * @ingroup Focus
2499     */
2500    EAPI void             elm_object_focus_direction_go(Evas_Object *obj, int x, int y) EINA_ARG_NONNULL(1);
2501
2502    /**
2503     * Make the elementary object and its children to be unfocusable
2504     * (or focusable).
2505     *
2506     * @param obj The Elementary object to operate on
2507     * @param tree_unfocusable @c EINA_TRUE for unfocusable,
2508     *        @c EINA_FALSE for focusable.
2509     *
2510     * This sets whether the object @p obj and its children objects
2511     * are able to take focus or not. If the tree is set as unfocusable,
2512     * newest focused object which is not in this tree will get focus.
2513     * This API can be helpful for an object to be deleted.
2514     * When an object will be deleted soon, it and its children may not
2515     * want to get focus (by focus reverting or by other focus controls).
2516     * Then, just use this API before deleting.
2517     *
2518     * @see elm_object_tree_unfocusable_get()
2519     *
2520     * @ingroup Focus
2521     */
2522    EAPI void             elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable); EINA_ARG_NONNULL(1);
2523
2524    /**
2525     * Get whether an Elementary object and its children are unfocusable or not.
2526     *
2527     * @param obj The Elementary object to get the information from
2528     * @return @c EINA_TRUE, if the tree is unfocussable,
2529     *         @c EINA_FALSE if not (and on errors).
2530     *
2531     * @see elm_object_tree_unfocusable_set()
2532     *
2533     * @ingroup Focus
2534     */
2535    EAPI Eina_Bool        elm_object_tree_unfocusable_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
2536
2537    /**
2538     * @defgroup Scrolling Scrolling
2539     *
2540     * These are functions setting how scrollable views in Elementary
2541     * widgets should behave on user interaction.
2542     *
2543     * @{
2544     */
2545
2546    /**
2547     * Get whether scrollers should bounce when they reach their
2548     * viewport's edge during a scroll.
2549     *
2550     * @return the thumb scroll bouncing state
2551     *
2552     * This is the default behavior for touch screens, in general.
2553     * @ingroup Scrolling
2554     */
2555    EAPI Eina_Bool        elm_scroll_bounce_enabled_get(void);
2556
2557    /**
2558     * Set whether scrollers should bounce when they reach their
2559     * viewport's edge during a scroll.
2560     *
2561     * @param enabled the thumb scroll bouncing state
2562     *
2563     * @see elm_thumbscroll_bounce_enabled_get()
2564     * @ingroup Scrolling
2565     */
2566    EAPI void             elm_scroll_bounce_enabled_set(Eina_Bool enabled);
2567
2568    /**
2569     * Set whether scrollers should bounce when they reach their
2570     * viewport's edge during a scroll, for all Elementary application
2571     * windows.
2572     *
2573     * @param enabled the thumb scroll bouncing state
2574     *
2575     * @see elm_thumbscroll_bounce_enabled_get()
2576     * @ingroup Scrolling
2577     */
2578    EAPI void             elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
2579
2580    /**
2581     * Get the amount of inertia a scroller will impose at bounce
2582     * animations.
2583     *
2584     * @return the thumb scroll bounce friction
2585     *
2586     * @ingroup Scrolling
2587     */
2588    EAPI double           elm_scroll_bounce_friction_get(void);
2589
2590    /**
2591     * Set the amount of inertia a scroller will impose at bounce
2592     * animations.
2593     *
2594     * @param friction the thumb scroll bounce friction
2595     *
2596     * @see elm_thumbscroll_bounce_friction_get()
2597     * @ingroup Scrolling
2598     */
2599    EAPI void             elm_scroll_bounce_friction_set(double friction);
2600
2601    /**
2602     * Set the amount of inertia a scroller will impose at bounce
2603     * animations, for all Elementary application windows.
2604     *
2605     * @param friction the thumb scroll bounce friction
2606     *
2607     * @see elm_thumbscroll_bounce_friction_get()
2608     * @ingroup Scrolling
2609     */
2610    EAPI void             elm_scroll_bounce_friction_all_set(double friction);
2611
2612    /**
2613     * Get the amount of inertia a <b>paged</b> scroller will impose at
2614     * page fitting animations.
2615     *
2616     * @return the page scroll friction
2617     *
2618     * @ingroup Scrolling
2619     */
2620    EAPI double           elm_scroll_page_scroll_friction_get(void);
2621
2622    /**
2623     * Set the amount of inertia a <b>paged</b> scroller will impose at
2624     * page fitting animations.
2625     *
2626     * @param friction the page scroll friction
2627     *
2628     * @see elm_thumbscroll_page_scroll_friction_get()
2629     * @ingroup Scrolling
2630     */
2631    EAPI void             elm_scroll_page_scroll_friction_set(double friction);
2632
2633    /**
2634     * Set the amount of inertia a <b>paged</b> scroller will impose at
2635     * page fitting animations, for all Elementary application windows.
2636     *
2637     * @param friction the page scroll friction
2638     *
2639     * @see elm_thumbscroll_page_scroll_friction_get()
2640     * @ingroup Scrolling
2641     */
2642    EAPI void             elm_scroll_page_scroll_friction_all_set(double friction);
2643
2644    /**
2645     * Get the amount of inertia a scroller will impose at region bring
2646     * animations.
2647     *
2648     * @return the bring in scroll friction
2649     *
2650     * @ingroup Scrolling
2651     */
2652    EAPI double           elm_scroll_bring_in_scroll_friction_get(void);
2653
2654    /**
2655     * Set the amount of inertia a scroller will impose at region bring
2656     * animations.
2657     *
2658     * @param friction the bring in scroll friction
2659     *
2660     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2661     * @ingroup Scrolling
2662     */
2663    EAPI void             elm_scroll_bring_in_scroll_friction_set(double friction);
2664
2665    /**
2666     * Set the amount of inertia a scroller will impose at region bring
2667     * animations, for all Elementary application windows.
2668     *
2669     * @param friction the bring in scroll friction
2670     *
2671     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2672     * @ingroup Scrolling
2673     */
2674    EAPI void             elm_scroll_bring_in_scroll_friction_all_set(double friction);
2675
2676    /**
2677     * Get the amount of inertia scrollers will impose at animations
2678     * triggered by Elementary widgets' zooming API.
2679     *
2680     * @return the zoom friction
2681     *
2682     * @ingroup Scrolling
2683     */
2684    EAPI double           elm_scroll_zoom_friction_get(void);
2685
2686    /**
2687     * Set the amount of inertia scrollers will impose at animations
2688     * triggered by Elementary widgets' zooming API.
2689     *
2690     * @param friction the zoom friction
2691     *
2692     * @see elm_thumbscroll_zoom_friction_get()
2693     * @ingroup Scrolling
2694     */
2695    EAPI void             elm_scroll_zoom_friction_set(double friction);
2696
2697    /**
2698     * Set the amount of inertia scrollers will impose at animations
2699     * triggered by Elementary widgets' zooming API, for all Elementary
2700     * application windows.
2701     *
2702     * @param friction the zoom friction
2703     *
2704     * @see elm_thumbscroll_zoom_friction_get()
2705     * @ingroup Scrolling
2706     */
2707    EAPI void             elm_scroll_zoom_friction_all_set(double friction);
2708
2709    /**
2710     * Get whether scrollers should be draggable from any point in their
2711     * views.
2712     *
2713     * @return the thumb scroll state
2714     *
2715     * @note This is the default behavior for touch screens, in general.
2716     * @note All other functions namespaced with "thumbscroll" will only
2717     *       have effect if this mode is enabled.
2718     *
2719     * @ingroup Scrolling
2720     */
2721    EAPI Eina_Bool        elm_scroll_thumbscroll_enabled_get(void);
2722
2723    /**
2724     * Set whether scrollers should be draggable from any point in their
2725     * views.
2726     *
2727     * @param enabled the thumb scroll state
2728     *
2729     * @see elm_thumbscroll_enabled_get()
2730     * @ingroup Scrolling
2731     */
2732    EAPI void             elm_scroll_thumbscroll_enabled_set(Eina_Bool enabled);
2733
2734    /**
2735     * Set whether scrollers should be draggable from any point in their
2736     * views, for all Elementary application windows.
2737     *
2738     * @param enabled the thumb scroll state
2739     *
2740     * @see elm_thumbscroll_enabled_get()
2741     * @ingroup Scrolling
2742     */
2743    EAPI void             elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
2744
2745    /**
2746     * Get the number of pixels one should travel while dragging a
2747     * scroller's view to actually trigger scrolling.
2748     *
2749     * @return the thumb scroll threshould
2750     *
2751     * One would use higher values for touch screens, in general, because
2752     * of their inherent imprecision.
2753     * @ingroup Scrolling
2754     */
2755    EAPI unsigned int     elm_scroll_thumbscroll_threshold_get(void);
2756
2757    /**
2758     * Set the number of pixels one should travel while dragging a
2759     * scroller's view to actually trigger scrolling.
2760     *
2761     * @param threshold the thumb scroll threshould
2762     *
2763     * @see elm_thumbscroll_threshould_get()
2764     * @ingroup Scrolling
2765     */
2766    EAPI void             elm_scroll_thumbscroll_threshold_set(unsigned int threshold);
2767
2768    /**
2769     * Set the number of pixels one should travel while dragging a
2770     * scroller's view to actually trigger scrolling, for all Elementary
2771     * application windows.
2772     *
2773     * @param threshold the thumb scroll threshould
2774     *
2775     * @see elm_thumbscroll_threshould_get()
2776     * @ingroup Scrolling
2777     */
2778    EAPI void             elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
2779
2780    /**
2781     * Get the minimum speed of mouse cursor movement which will trigger
2782     * list self scrolling animation after a mouse up event
2783     * (pixels/second).
2784     *
2785     * @return the thumb scroll momentum threshould
2786     *
2787     * @ingroup Scrolling
2788     */
2789    EAPI double           elm_scroll_thumbscroll_momentum_threshold_get(void);
2790
2791    /**
2792     * Set the minimum speed of mouse cursor movement which will trigger
2793     * list self scrolling animation after a mouse up event
2794     * (pixels/second).
2795     *
2796     * @param threshold the thumb scroll momentum threshould
2797     *
2798     * @see elm_thumbscroll_momentum_threshould_get()
2799     * @ingroup Scrolling
2800     */
2801    EAPI void             elm_scroll_thumbscroll_momentum_threshold_set(double threshold);
2802
2803    /**
2804     * Set the minimum speed of mouse cursor movement which will trigger
2805     * list self scrolling animation after a mouse up event
2806     * (pixels/second), for all Elementary application windows.
2807     *
2808     * @param threshold the thumb scroll momentum threshould
2809     *
2810     * @see elm_thumbscroll_momentum_threshould_get()
2811     * @ingroup Scrolling
2812     */
2813    EAPI void             elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
2814
2815    /**
2816     * Get the amount of inertia a scroller will impose at self scrolling
2817     * animations.
2818     *
2819     * @return the thumb scroll friction
2820     *
2821     * @ingroup Scrolling
2822     */
2823    EAPI double           elm_scroll_thumbscroll_friction_get(void);
2824
2825    /**
2826     * Set the amount of inertia a scroller will impose at self scrolling
2827     * animations.
2828     *
2829     * @param friction the thumb scroll friction
2830     *
2831     * @see elm_thumbscroll_friction_get()
2832     * @ingroup Scrolling
2833     */
2834    EAPI void             elm_scroll_thumbscroll_friction_set(double friction);
2835
2836    /**
2837     * Set the amount of inertia a scroller will impose at self scrolling
2838     * animations, for all Elementary application windows.
2839     *
2840     * @param friction the thumb scroll friction
2841     *
2842     * @see elm_thumbscroll_friction_get()
2843     * @ingroup Scrolling
2844     */
2845    EAPI void             elm_scroll_thumbscroll_friction_all_set(double friction);
2846
2847    /**
2848     * Get the amount of lag between your actual mouse cursor dragging
2849     * movement and a scroller's view movement itself, while pushing it
2850     * into bounce state manually.
2851     *
2852     * @return the thumb scroll border friction
2853     *
2854     * @ingroup Scrolling
2855     */
2856    EAPI double           elm_scroll_thumbscroll_border_friction_get(void);
2857
2858    /**
2859     * Set the amount of lag between your actual mouse cursor dragging
2860     * movement and a scroller's view movement itself, while pushing it
2861     * into bounce state manually.
2862     *
2863     * @param friction the thumb scroll border friction. @c 0.0 for
2864     *        perfect synchrony between two movements, @c 1.0 for maximum
2865     *        lag.
2866     *
2867     * @see elm_thumbscroll_border_friction_get()
2868     * @note parameter value will get bound to 0.0 - 1.0 interval, always
2869     *
2870     * @ingroup Scrolling
2871     */
2872    EAPI void             elm_scroll_thumbscroll_border_friction_set(double friction);
2873
2874    /**
2875     * Set the amount of lag between your actual mouse cursor dragging
2876     * movement and a scroller's view movement itself, while pushing it
2877     * into bounce state manually, for all Elementary application windows.
2878     *
2879     * @param friction the thumb scroll border friction. @c 0.0 for
2880     *        perfect synchrony between two movements, @c 1.0 for maximum
2881     *        lag.
2882     *
2883     * @see elm_thumbscroll_border_friction_get()
2884     * @note parameter value will get bound to 0.0 - 1.0 interval, always
2885     *
2886     * @ingroup Scrolling
2887     */
2888    EAPI void             elm_scroll_thumbscroll_border_friction_all_set(double friction);
2889
2890    /**
2891     * Get the sensitivity amount which is be multiplied by the length of
2892     * mouse dragging.
2893     *
2894     * @return the thumb scroll sensitivity friction
2895     *
2896     * @ingroup Scrolling
2897     */
2898    EAPI double           elm_scroll_thumbscroll_sensitivity_friction_get(void);
2899
2900    /**
2901     * Set the sensitivity amount which is be multiplied by the length of
2902     * mouse dragging.
2903     *
2904     * @param friction the thumb scroll sensitivity friction. @c 0.1 for
2905     *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
2906     *        is proper.
2907     *
2908     * @see elm_thumbscroll_sensitivity_friction_get()
2909     * @note parameter value will get bound to 0.1 - 1.0 interval, always
2910     *
2911     * @ingroup Scrolling
2912     */
2913    EAPI void             elm_scroll_thumbscroll_sensitivity_friction_set(double friction);
2914
2915    /**
2916     * Set the sensitivity amount which is be multiplied by the length of
2917     * mouse dragging, for all Elementary application windows.
2918     *
2919     * @param friction the thumb scroll sensitivity friction. @c 0.1 for
2920     *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
2921     *        is proper.
2922     *
2923     * @see elm_thumbscroll_sensitivity_friction_get()
2924     * @note parameter value will get bound to 0.1 - 1.0 interval, always
2925     *
2926     * @ingroup Scrolling
2927     */
2928    EAPI void             elm_scroll_thumbscroll_sensitivity_friction_all_set(double friction);
2929
2930    /**
2931     * @}
2932     */
2933
2934    /**
2935     * @defgroup Scrollhints Scrollhints
2936     *
2937     * Objects when inside a scroller can scroll, but this may not always be
2938     * desirable in certain situations. This allows an object to hint to itself
2939     * and parents to "not scroll" in one of 2 ways. If any child object of a
2940     * scroller has pushed a scroll freeze or hold then it affects all parent
2941     * scrollers until all children have released them.
2942     *
2943     * 1. To hold on scrolling. This means just flicking and dragging may no
2944     * longer scroll, but pressing/dragging near an edge of the scroller will
2945     * still scroll. This is automatically used by the entry object when
2946     * selecting text.
2947     *
2948     * 2. To totally freeze scrolling. This means it stops. until
2949     * popped/released.
2950     *
2951     * @{
2952     */
2953
2954    /**
2955     * Push the scroll hold by 1
2956     *
2957     * This increments the scroll hold count by one. If it is more than 0 it will
2958     * take effect on the parents of the indicated object.
2959     *
2960     * @param obj The object
2961     * @ingroup Scrollhints
2962     */
2963    EAPI void             elm_object_scroll_hold_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
2964
2965    /**
2966     * Pop the scroll hold by 1
2967     *
2968     * This decrements the scroll hold count by one. If it is more than 0 it will
2969     * take effect on the parents of the indicated object.
2970     *
2971     * @param obj The object
2972     * @ingroup Scrollhints
2973     */
2974    EAPI void             elm_object_scroll_hold_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
2975
2976    /**
2977     * Push the scroll freeze by 1
2978     *
2979     * This increments the scroll freeze count by one. If it is more
2980     * than 0 it will take effect on the parents of the indicated
2981     * object.
2982     *
2983     * @param obj The object
2984     * @ingroup Scrollhints
2985     */
2986    EAPI void             elm_object_scroll_freeze_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
2987
2988    /**
2989     * Pop the scroll freeze by 1
2990     *
2991     * This decrements the scroll freeze count by one. If it is more
2992     * than 0 it will take effect on the parents of the indicated
2993     * object.
2994     *
2995     * @param obj The object
2996     * @ingroup Scrollhints
2997     */
2998    EAPI void             elm_object_scroll_freeze_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
2999
3000    /**
3001     * Lock the scrolling of the given widget (and thus all parents)
3002     *
3003     * This locks the given object from scrolling in the X axis (and implicitly
3004     * also locks all parent scrollers too from doing the same).
3005     *
3006     * @param obj The object
3007     * @param lock The lock state (1 == locked, 0 == unlocked)
3008     * @ingroup Scrollhints
3009     */
3010    EAPI void             elm_object_scroll_lock_x_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
3011
3012    /**
3013     * Lock the scrolling of the given widget (and thus all parents)
3014     *
3015     * This locks the given object from scrolling in the Y axis (and implicitly
3016     * also locks all parent scrollers too from doing the same).
3017     *
3018     * @param obj The object
3019     * @param lock The lock state (1 == locked, 0 == unlocked)
3020     * @ingroup Scrollhints
3021     */
3022    EAPI void             elm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
3023
3024    /**
3025     * Get the scrolling lock of the given widget
3026     *
3027     * This gets the lock for X axis scrolling.
3028     *
3029     * @param obj The object
3030     * @ingroup Scrollhints
3031     */
3032    EAPI Eina_Bool        elm_object_scroll_lock_x_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3033
3034    /**
3035     * Get the scrolling lock of the given widget
3036     *
3037     * This gets the lock for X axis scrolling.
3038     *
3039     * @param obj The object
3040     * @ingroup Scrollhints
3041     */
3042    EAPI Eina_Bool        elm_object_scroll_lock_y_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3043
3044    /**
3045     * @}
3046     */
3047
3048    /**
3049     * Send a signal to the widget edje object.
3050     *
3051     * This function sends a signal to the edje object of the obj. An
3052     * edje program can respond to a signal by specifying matching
3053     * 'signal' and 'source' fields.
3054     *
3055     * @param obj The object
3056     * @param emission The signal's name.
3057     * @param source The signal's source.
3058     * @ingroup General
3059     */
3060    EAPI void             elm_object_signal_emit(Evas_Object *obj, const char *emission, const char *source) EINA_ARG_NONNULL(1);
3061
3062    /**
3063     * Add a callback for a signal emitted by widget edje object.
3064     *
3065     * This function connects a callback function to a signal emitted by the
3066     * edje object of the obj.
3067     * Globs can occur in either the emission or source name.
3068     *
3069     * @param obj The object
3070     * @param emission The signal's name.
3071     * @param source The signal's source.
3072     * @param func The callback function to be executed when the signal is
3073     * emitted.
3074     * @param data A pointer to data to pass in to the callback function.
3075     * @ingroup General
3076     */
3077    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);
3078
3079    /**
3080     * Remove a signal-triggered callback from a widget edje object.
3081     *
3082     * This function removes a callback, previoulsy attached to a
3083     * signal emitted by the edje object of the obj.  The parameters
3084     * emission, source and func must match exactly those passed to a
3085     * previous call to elm_object_signal_callback_add(). The data
3086     * pointer that was passed to this call will be returned.
3087     *
3088     * @param obj The object
3089     * @param emission The signal's name.
3090     * @param source The signal's source.
3091     * @param func The callback function to be executed when the signal is
3092     * emitted.
3093     * @return The data pointer
3094     * @ingroup General
3095     */
3096    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);
3097
3098    /**
3099     * Add a callback for input events (key up, key down, mouse wheel)
3100     * on a given Elementary widget
3101     *
3102     * @param obj The widget to add an event callback on
3103     * @param func The callback function to be executed when the event
3104     * happens
3105     * @param data Data to pass in to @p func
3106     *
3107     * Every widget in an Elementary interface set to receive focus,
3108     * with elm_object_focus_allow_set(), will propagate @b all of its
3109     * key up, key down and mouse wheel input events up to its parent
3110     * object, and so on. All of the focusable ones in this chain which
3111     * had an event callback set, with this call, will be able to treat
3112     * those events. There are two ways of making the propagation of
3113     * these event upwards in the tree of widgets to @b cease:
3114     * - Just return @c EINA_TRUE on @p func. @c EINA_FALSE will mean
3115     *   the event was @b not processed, so the propagation will go on.
3116     * - The @c event_info pointer passed to @p func will contain the
3117     *   event's structure and, if you OR its @c event_flags inner
3118     *   value to @c EVAS_EVENT_FLAG_ON_HOLD, you're telling Elementary
3119     *   one has already handled it, thus killing the event's
3120     *   propagation, too.
3121     *
3122     * @note Your event callback will be issued on those events taking
3123     * place only if no other child widget of @obj has consumed the
3124     * event already.
3125     *
3126     * @note Not to be confused with @c
3127     * evas_object_event_callback_add(), which will add event callbacks
3128     * per type on general Evas objects (no event propagation
3129     * infrastructure taken in account).
3130     *
3131     * @note Not to be confused with @c
3132     * elm_object_signal_callback_add(), which will add callbacks to @b
3133     * signals coming from a widget's theme, not input events.
3134     *
3135     * @note Not to be confused with @c
3136     * edje_object_signal_callback_add(), which does the same as
3137     * elm_object_signal_callback_add(), but directly on an Edje
3138     * object.
3139     *
3140     * @note Not to be confused with @c
3141     * evas_object_smart_callback_add(), which adds callbacks to smart
3142     * objects' <b>smart events</b>, and not input events.
3143     *
3144     * @see elm_object_event_callback_del()
3145     *
3146     * @ingroup General
3147     */
3148    EAPI void             elm_object_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3149
3150    /**
3151     * Remove an event callback from a widget.
3152     *
3153     * This function removes a callback, previoulsy attached to event emission
3154     * by the @p obj.
3155     * The parameters func and data must match exactly those passed to
3156     * a previous call to elm_object_event_callback_add(). The data pointer that
3157     * was passed to this call will be returned.
3158     *
3159     * @param obj The object
3160     * @param func The callback function to be executed when the event is
3161     * emitted.
3162     * @param data Data to pass in to the callback function.
3163     * @return The data pointer
3164     * @ingroup General
3165     */
3166    EAPI void            *elm_object_event_callback_del(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3167
3168    /**
3169     * Adjust size of an element for finger usage.
3170     *
3171     * @param times_w How many fingers should fit horizontally
3172     * @param w Pointer to the width size to adjust
3173     * @param times_h How many fingers should fit vertically
3174     * @param h Pointer to the height size to adjust
3175     *
3176     * This takes width and height sizes (in pixels) as input and a
3177     * size multiple (which is how many fingers you want to place
3178     * within the area, being "finger" the size set by
3179     * elm_finger_size_set()), and adjusts the size to be large enough
3180     * to accommodate the resulting size -- if it doesn't already
3181     * accommodate it. On return the @p w and @p h sizes pointed to by
3182     * these parameters will be modified, on those conditions.
3183     *
3184     * @note This is kind of a low level Elementary call, most useful
3185     * on size evaluation times for widgets. An external user wouldn't
3186     * be calling, most of the time.
3187     *
3188     * @ingroup Fingers
3189     */
3190    EAPI void             elm_coords_finger_size_adjust(int times_w, Evas_Coord *w, int times_h, Evas_Coord *h);
3191
3192    /**
3193     * Get the duration for occuring long press event.
3194     *
3195     * @return Timeout for long press event
3196     * @ingroup Longpress
3197     */
3198    EAPI double           elm_longpress_timeout_get(void);
3199
3200    /**
3201     * Set the duration for occuring long press event.
3202     *
3203     * @param lonpress_timeout Timeout for long press event
3204     * @ingroup Longpress
3205     */
3206    EAPI void             elm_longpress_timeout_set(double longpress_timeout);
3207
3208    /**
3209     * @defgroup Debug Debug
3210     * don't use it unless you are sure
3211     *
3212     * @{
3213     */
3214
3215    /**
3216     * Print Tree object hierarchy in stdout
3217     *
3218     * @param obj The root object
3219     * @ingroup Debug
3220     */
3221    EAPI void             elm_object_tree_dump(const Evas_Object *top);
3222    EAPI void             elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
3223
3224    EAPI void             elm_autocapitalization_allow_all_set(Eina_Bool autocap);
3225    EAPI void             elm_autoperiod_allow_all_set(Eina_Bool autoperiod);
3226    /**
3227     * Print Elm Objects tree hierarchy in file as dot(graphviz) syntax.
3228     *
3229     * @param obj The root object
3230     * @param file The path of output file
3231     * @ingroup Debug
3232     */
3233    EAPI void             elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
3234
3235    /**
3236     * @}
3237     */
3238
3239    /**
3240     * @defgroup Theme Theme
3241     *
3242     * Elementary uses Edje to theme its widgets, naturally. But for the most
3243     * part this is hidden behind a simpler interface that lets the user set
3244     * extensions and choose the style of widgets in a much easier way.
3245     *
3246     * Instead of thinking in terms of paths to Edje files and their groups
3247     * each time you want to change the appearance of a widget, Elementary
3248     * works so you can add any theme file with extensions or replace the
3249     * main theme at one point in the application, and then just set the style
3250     * of widgets with elm_object_style_set() and related functions. Elementary
3251     * will then look in its list of themes for a matching group and apply it,
3252     * and when the theme changes midway through the application, all widgets
3253     * will be updated accordingly.
3254     *
3255     * There are three concepts you need to know to understand how Elementary
3256     * theming works: default theme, extensions and overlays.
3257     *
3258     * Default theme, obviously enough, is the one that provides the default
3259     * look of all widgets. End users can change the theme used by Elementary
3260     * by setting the @c ELM_THEME environment variable before running an
3261     * application, or globally for all programs using the @c elementary_config
3262     * utility. Applications can change the default theme using elm_theme_set(),
3263     * but this can go against the user wishes, so it's not an adviced practice.
3264     *
3265     * Ideally, applications should find everything they need in the already
3266     * provided theme, but there may be occasions when that's not enough and
3267     * custom styles are required to correctly express the idea. For this
3268     * cases, Elementary has extensions.
3269     *
3270     * Extensions allow the application developer to write styles of its own
3271     * to apply to some widgets. This requires knowledge of how each widget
3272     * is themed, as extensions will always replace the entire group used by
3273     * the widget, so important signals and parts need to be there for the
3274     * object to behave properly (see documentation of Edje for details).
3275     * Once the theme for the extension is done, the application needs to add
3276     * it to the list of themes Elementary will look into, using
3277     * elm_theme_extension_add(), and set the style of the desired widgets as
3278     * he would normally with elm_object_style_set().
3279     *
3280     * Overlays, on the other hand, can replace the look of all widgets by
3281     * overriding the default style. Like extensions, it's up to the application
3282     * developer to write the theme for the widgets it wants, the difference
3283     * being that when looking for the theme, Elementary will check first the
3284     * list of overlays, then the set theme and lastly the list of extensions,
3285     * so with overlays it's possible to replace the default view and every
3286     * widget will be affected. This is very much alike to setting the whole
3287     * theme for the application and will probably clash with the end user
3288     * options, not to mention the risk of ending up with not matching styles
3289     * across the program. Unless there's a very special reason to use them,
3290     * overlays should be avoided for the resons exposed before.
3291     *
3292     * All these theme lists are handled by ::Elm_Theme instances. Elementary
3293     * keeps one default internally and every function that receives one of
3294     * these can be called with NULL to refer to this default (except for
3295     * elm_theme_free()). It's possible to create a new instance of a
3296     * ::Elm_Theme to set other theme for a specific widget (and all of its
3297     * children), but this is as discouraged, if not even more so, than using
3298     * overlays. Don't use this unless you really know what you are doing.
3299     *
3300     * But to be less negative about things, you can look at the following
3301     * examples:
3302     * @li @ref theme_example_01 "Using extensions"
3303     * @li @ref theme_example_02 "Using overlays"
3304     *
3305     * @{
3306     */
3307    /**
3308     * @typedef Elm_Theme
3309     *
3310     * Opaque handler for the list of themes Elementary looks for when
3311     * rendering widgets.
3312     *
3313     * Stay out of this unless you really know what you are doing. For most
3314     * cases, sticking to the default is all a developer needs.
3315     */
3316    typedef struct _Elm_Theme Elm_Theme;
3317
3318    /**
3319     * Create a new specific theme
3320     *
3321     * This creates an empty specific theme that only uses the default theme. A
3322     * specific theme has its own private set of extensions and overlays too
3323     * (which are empty by default). Specific themes do not fall back to themes
3324     * of parent objects. They are not intended for this use. Use styles, overlays
3325     * and extensions when needed, but avoid specific themes unless there is no
3326     * other way (example: you want to have a preview of a new theme you are
3327     * selecting in a "theme selector" window. The preview is inside a scroller
3328     * and should display what the theme you selected will look like, but not
3329     * actually apply it yet. The child of the scroller will have a specific
3330     * theme set to show this preview before the user decides to apply it to all
3331     * applications).
3332     */
3333    EAPI Elm_Theme       *elm_theme_new(void);
3334    /**
3335     * Free a specific theme
3336     *
3337     * @param th The theme to free
3338     *
3339     * This frees a theme created with elm_theme_new().
3340     */
3341    EAPI void             elm_theme_free(Elm_Theme *th);
3342    /**
3343     * Copy the theme fom the source to the destination theme
3344     *
3345     * @param th The source theme to copy from
3346     * @param thdst The destination theme to copy data to
3347     *
3348     * This makes a one-time static copy of all the theme config, extensions
3349     * and overlays from @p th to @p thdst. If @p th references a theme, then
3350     * @p thdst is also set to reference it, with all the theme settings,
3351     * overlays and extensions that @p th had.
3352     */
3353    EAPI void             elm_theme_copy(Elm_Theme *th, Elm_Theme *thdst);
3354    /**
3355     * Tell the source theme to reference the ref theme
3356     *
3357     * @param th The theme that will do the referencing
3358     * @param thref The theme that is the reference source
3359     *
3360     * This clears @p th to be empty and then sets it to refer to @p thref
3361     * so @p th acts as an override to @p thref, but where its overrides
3362     * don't apply, it will fall through to @p thref for configuration.
3363     */
3364    EAPI void             elm_theme_ref_set(Elm_Theme *th, Elm_Theme *thref);
3365    /**
3366     * Return the theme referred to
3367     *
3368     * @param th The theme to get the reference from
3369     * @return The referenced theme handle
3370     *
3371     * This gets the theme set as the reference theme by elm_theme_ref_set().
3372     * If no theme is set as a reference, NULL is returned.
3373     */
3374    EAPI Elm_Theme       *elm_theme_ref_get(Elm_Theme *th);
3375    /**
3376     * Return the default theme
3377     *
3378     * @return The default theme handle
3379     *
3380     * This returns the internal default theme setup handle that all widgets
3381     * use implicitly unless a specific theme is set. This is also often use
3382     * as a shorthand of NULL.
3383     */
3384    EAPI Elm_Theme       *elm_theme_default_get(void);
3385    /**
3386     * Prepends a theme overlay to the list of overlays
3387     *
3388     * @param th The theme to add to, or if NULL, the default theme
3389     * @param item The Edje file path to be used
3390     *
3391     * Use this if your application needs to provide some custom overlay theme
3392     * (An Edje file that replaces some default styles of widgets) where adding
3393     * new styles, or changing system theme configuration is not possible. Do
3394     * NOT use this instead of a proper system theme configuration. Use proper
3395     * configuration files, profiles, environment variables etc. to set a theme
3396     * so that the theme can be altered by simple confiugration by a user. Using
3397     * this call to achieve that effect is abusing the API and will create lots
3398     * of trouble.
3399     *
3400     * @see elm_theme_extension_add()
3401     */
3402    EAPI void             elm_theme_overlay_add(Elm_Theme *th, const char *item);
3403    /**
3404     * Delete a theme overlay from the list of overlays
3405     *
3406     * @param th The theme to delete from, or if NULL, the default theme
3407     * @param item The name of the theme overlay
3408     *
3409     * @see elm_theme_overlay_add()
3410     */
3411    EAPI void             elm_theme_overlay_del(Elm_Theme *th, const char *item);
3412    /**
3413     * Appends a theme extension to the list of extensions.
3414     *
3415     * @param th The theme to add to, or if NULL, the default theme
3416     * @param item The Edje file path to be used
3417     *
3418     * This is intended when an application needs more styles of widgets or new
3419     * widget themes that the default does not provide (or may not provide). The
3420     * application has "extended" usage by coming up with new custom style names
3421     * for widgets for specific uses, but as these are not "standard", they are
3422     * not guaranteed to be provided by a default theme. This means the
3423     * application is required to provide these extra elements itself in specific
3424     * Edje files. This call adds one of those Edje files to the theme search
3425     * path to be search after the default theme. The use of this call is
3426     * encouraged when default styles do not meet the needs of the application.
3427     * Use this call instead of elm_theme_overlay_add() for almost all cases.
3428     *
3429     * @see elm_object_style_set()
3430     */
3431    EAPI void             elm_theme_extension_add(Elm_Theme *th, const char *item);
3432    /**
3433     * Deletes a theme extension from the list of extensions.
3434     *
3435     * @param th The theme to delete from, or if NULL, the default theme
3436     * @param item The name of the theme extension
3437     *
3438     * @see elm_theme_extension_add()
3439     */
3440    EAPI void             elm_theme_extension_del(Elm_Theme *th, const char *item);
3441    /**
3442     * Set the theme search order for the given theme
3443     *
3444     * @param th The theme to set the search order, or if NULL, the default theme
3445     * @param theme Theme search string
3446     *
3447     * This sets the search string for the theme in path-notation from first
3448     * theme to search, to last, delimited by the : character. Example:
3449     *
3450     * "shiny:/path/to/file.edj:default"
3451     *
3452     * See the ELM_THEME environment variable for more information.
3453     *
3454     * @see elm_theme_get()
3455     * @see elm_theme_list_get()
3456     */
3457    EAPI void             elm_theme_set(Elm_Theme *th, const char *theme);
3458    /**
3459     * Return the theme search order
3460     *
3461     * @param th The theme to get the search order, or if NULL, the default theme
3462     * @return The internal search order path
3463     *
3464     * This function returns a colon separated string of theme elements as
3465     * returned by elm_theme_list_get().
3466     *
3467     * @see elm_theme_set()
3468     * @see elm_theme_list_get()
3469     */
3470    EAPI const char      *elm_theme_get(Elm_Theme *th);
3471    /**
3472     * Return a list of theme elements to be used in a theme.
3473     *
3474     * @param th Theme to get the list of theme elements from.
3475     * @return The internal list of theme elements
3476     *
3477     * This returns the internal list of theme elements (will only be valid as
3478     * long as the theme is not modified by elm_theme_set() or theme is not
3479     * freed by elm_theme_free(). This is a list of strings which must not be
3480     * altered as they are also internal. If @p th is NULL, then the default
3481     * theme element list is returned.
3482     *
3483     * A theme element can consist of a full or relative path to a .edj file,
3484     * or a name, without extension, for a theme to be searched in the known
3485     * theme paths for Elemementary.
3486     *
3487     * @see elm_theme_set()
3488     * @see elm_theme_get()
3489     */
3490    EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
3491    /**
3492     * Return the full patrh for a theme element
3493     *
3494     * @param f The theme element name
3495     * @param in_search_path Pointer to a boolean to indicate if item is in the search path or not
3496     * @return The full path to the file found.
3497     *
3498     * This returns a string you should free with free() on success, NULL on
3499     * failure. This will search for the given theme element, and if it is a
3500     * full or relative path element or a simple searchable name. The returned
3501     * path is the full path to the file, if searched, and the file exists, or it
3502     * is simply the full path given in the element or a resolved path if
3503     * relative to home. The @p in_search_path boolean pointed to is set to
3504     * EINA_TRUE if the file was a searchable file andis in the search path,
3505     * and EINA_FALSE otherwise.
3506     */
3507    EAPI char            *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path);
3508    /**
3509     * Flush the current theme.
3510     *
3511     * @param th Theme to flush
3512     *
3513     * This flushes caches that let elementary know where to find theme elements
3514     * in the given theme. If @p th is NULL, then the default theme is flushed.
3515     * Call this function if source theme data has changed in such a way as to
3516     * make any caches Elementary kept invalid.
3517     */
3518    EAPI void             elm_theme_flush(Elm_Theme *th);
3519    /**
3520     * This flushes all themes (default and specific ones).
3521     *
3522     * This will flush all themes in the current application context, by calling
3523     * elm_theme_flush() on each of them.
3524     */
3525    EAPI void             elm_theme_full_flush(void);
3526    /**
3527     * Set the theme for all elementary using applications on the current display
3528     *
3529     * @param theme The name of the theme to use. Format same as the ELM_THEME
3530     * environment variable.
3531     */
3532    EAPI void             elm_theme_all_set(const char *theme);
3533    /**
3534     * Return a list of theme elements in the theme search path
3535     *
3536     * @return A list of strings that are the theme element names.
3537     *
3538     * This lists all available theme files in the standard Elementary search path
3539     * for theme elements, and returns them in alphabetical order as theme
3540     * element names in a list of strings. Free this with
3541     * elm_theme_name_available_list_free() when you are done with the list.
3542     */
3543    EAPI Eina_List       *elm_theme_name_available_list_new(void);
3544    /**
3545     * Free the list returned by elm_theme_name_available_list_new()
3546     *
3547     * This frees the list of themes returned by
3548     * elm_theme_name_available_list_new(). Once freed the list should no longer
3549     * be used. a new list mys be created.
3550     */
3551    EAPI void             elm_theme_name_available_list_free(Eina_List *list);
3552    /**
3553     * Set a specific theme to be used for this object and its children
3554     *
3555     * @param obj The object to set the theme on
3556     * @param th The theme to set
3557     *
3558     * This sets a specific theme that will be used for the given object and any
3559     * child objects it has. If @p th is NULL then the theme to be used is
3560     * cleared and the object will inherit its theme from its parent (which
3561     * ultimately will use the default theme if no specific themes are set).
3562     *
3563     * Use special themes with great care as this will annoy users and make
3564     * configuration difficult. Avoid any custom themes at all if it can be
3565     * helped.
3566     */
3567    EAPI void             elm_object_theme_set(Evas_Object *obj, Elm_Theme *th) EINA_ARG_NONNULL(1);
3568    /**
3569     * Get the specific theme to be used
3570     *
3571     * @param obj The object to get the specific theme from
3572     * @return The specifc theme set.
3573     *
3574     * This will return a specific theme set, or NULL if no specific theme is
3575     * set on that object. It will not return inherited themes from parents, only
3576     * the specific theme set for that specific object. See elm_object_theme_set()
3577     * for more information.
3578     */
3579    EAPI Elm_Theme       *elm_object_theme_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3580
3581    /**
3582     * Get a data item from a theme
3583     *
3584     * @param th The theme, or NULL for default theme
3585     * @param key The data key to search with
3586     * @return The data value, or NULL on failure
3587     *
3588     * This function is used to return data items from edc in @p th, an overlay, or an extension.
3589     * It works the same way as edje_file_data_get() except that the return is stringshared.
3590     */
3591    EAPI const char      *elm_theme_data_get(Elm_Theme *th, const char *key) EINA_ARG_NONNULL(2);
3592    /**
3593     * @}
3594     */
3595
3596    /* win */
3597    /** @defgroup Win Win
3598     *
3599     * @image html img/widget/win/preview-00.png
3600     * @image latex img/widget/win/preview-00.eps
3601     *
3602     * The window class of Elementary.  Contains functions to manipulate
3603     * windows. The Evas engine used to render the window contents is specified
3604     * in the system or user elementary config files (whichever is found last),
3605     * and can be overridden with the ELM_ENGINE environment variable for
3606     * testing.  Engines that may be supported (depending on Evas and Ecore-Evas
3607     * compilation setup and modules actually installed at runtime) are (listed
3608     * in order of best supported and most likely to be complete and work to
3609     * lowest quality).
3610     *
3611     * @li "x11", "x", "software-x11", "software_x11" (Software rendering in X11)
3612     * @li "gl", "opengl", "opengl-x11", "opengl_x11" (OpenGL or OpenGL-ES2
3613     * rendering in X11)
3614     * @li "shot:..." (Virtual screenshot renderer - renders to output file and
3615     * exits)
3616     * @li "fb", "software-fb", "software_fb" (Linux framebuffer direct software
3617     * rendering)
3618     * @li "sdl", "software-sdl", "software_sdl" (SDL software rendering to SDL
3619     * buffer)
3620     * @li "gl-sdl", "gl_sdl", "opengl-sdl", "opengl_sdl" (OpenGL or OpenGL-ES2
3621     * rendering using SDL as the buffer)
3622     * @li "gdi", "software-gdi", "software_gdi" (Windows WIN32 rendering via
3623     * GDI with software)
3624     * @li "dfb", "directfb" (Rendering to a DirectFB window)
3625     * @li "x11-8", "x8", "software-8-x11", "software_8_x11" (Rendering in
3626     * grayscale using dedicated 8bit software engine in X11)
3627     * @li "x11-16", "x16", "software-16-x11", "software_16_x11" (Rendering in
3628     * X11 using 16bit software engine)
3629     * @li "wince-gdi", "software-16-wince-gdi", "software_16_wince_gdi"
3630     * (Windows CE rendering via GDI with 16bit software renderer)
3631     * @li "sdl-16", "software-16-sdl", "software_16_sdl" (Rendering to SDL
3632     * buffer with 16bit software renderer)
3633     * @li "ews" (rendering to EWS - Ecore + Evas Single Process Windowing System)
3634     * @li "gl-cocoa", "gl_cocoa", "opengl-cocoa", "opengl_cocoa" (OpenGL rendering in Cocoa)
3635     * @li "psl1ght" (PS3 rendering using PSL1GHT)
3636     *
3637     * All engines use a simple string to select the engine to render, EXCEPT
3638     * the "shot" engine. This actually encodes the output of the virtual
3639     * screenshot and how long to delay in the engine string. The engine string
3640     * is encoded in the following way:
3641     *
3642     *   "shot:[delay=XX][:][repeat=DDD][:][file=XX]"
3643     *
3644     * Where options are separated by a ":" char if more than one option is
3645     * given, with delay, if provided being the first option and file the last
3646     * (order is important). The delay specifies how long to wait after the
3647     * window is shown before doing the virtual "in memory" rendering and then
3648     * save the output to the file specified by the file option (and then exit).
3649     * If no delay is given, the default is 0.5 seconds. If no file is given the
3650     * default output file is "out.png". Repeat option is for continous
3651     * capturing screenshots. Repeat range is from 1 to 999 and filename is
3652     * fixed to "out001.png" Some examples of using the shot engine:
3653     *
3654     *   ELM_ENGINE="shot:delay=1.0:repeat=5:file=elm_test.png" elementary_test
3655     *   ELM_ENGINE="shot:delay=1.0:file=elm_test.png" elementary_test
3656     *   ELM_ENGINE="shot:file=elm_test2.png" elementary_test
3657     *   ELM_ENGINE="shot:delay=2.0" elementary_test
3658     *   ELM_ENGINE="shot:" elementary_test
3659     *
3660     * Signals that you can add callbacks for are:
3661     *
3662     * @li "delete,request": the user requested to close the window. See
3663     * elm_win_autodel_set().
3664     * @li "focus,in": window got focus
3665     * @li "focus,out": window lost focus
3666     * @li "moved": window that holds the canvas was moved
3667     *
3668     * Examples:
3669     * @li @ref win_example_01
3670     *
3671     * @{
3672     */
3673    /**
3674     * Defines the types of window that can be created
3675     *
3676     * These are hints set on the window so that a running Window Manager knows
3677     * how the window should be handled and/or what kind of decorations it
3678     * should have.
3679     *
3680     * Currently, only the X11 backed engines use them.
3681     */
3682    typedef enum _Elm_Win_Type
3683      {
3684         ELM_WIN_BASIC, /**< A normal window. Indicates a normal, top-level
3685                          window. Almost every window will be created with this
3686                          type. */
3687         ELM_WIN_DIALOG_BASIC, /**< Used for simple dialog windows/ */
3688         ELM_WIN_DESKTOP, /**< For special desktop windows, like a background
3689                            window holding desktop icons. */
3690         ELM_WIN_DOCK, /**< The window is used as a dock or panel. Usually would
3691                         be kept on top of any other window by the Window
3692                         Manager. */
3693         ELM_WIN_TOOLBAR, /**< The window is used to hold a floating toolbar, or
3694                            similar. */
3695         ELM_WIN_MENU, /**< Similar to #ELM_WIN_TOOLBAR. */
3696         ELM_WIN_UTILITY, /**< A persistent utility window, like a toolbox or
3697                            pallete. */
3698         ELM_WIN_SPLASH, /**< Splash window for a starting up application. */
3699         ELM_WIN_DROPDOWN_MENU, /**< The window is a dropdown menu, as when an
3700                                  entry in a menubar is clicked. Typically used
3701                                  with elm_win_override_set(). This hint exists
3702                                  for completion only, as the EFL way of
3703                                  implementing a menu would not normally use a
3704                                  separate window for its contents. */
3705         ELM_WIN_POPUP_MENU, /**< Like #ELM_WIN_DROPDOWN_MENU, but for the menu
3706                               triggered by right-clicking an object. */
3707         ELM_WIN_TOOLTIP, /**< The window is a tooltip. A short piece of
3708                            explanatory text that typically appear after the
3709                            mouse cursor hovers over an object for a while.
3710                            Typically used with elm_win_override_set() and also
3711                            not very commonly used in the EFL. */
3712         ELM_WIN_NOTIFICATION, /**< A notification window, like a warning about
3713                                 battery life or a new E-Mail received. */
3714         ELM_WIN_COMBO, /**< A window holding the contents of a combo box. Not
3715                          usually used in the EFL. */
3716         ELM_WIN_DND, /**< Used to indicate the window is a representation of an
3717                        object being dragged across different windows, or even
3718                        applications. Typically used with
3719                        elm_win_override_set(). */
3720         ELM_WIN_INLINED_IMAGE, /**< The window is rendered onto an image
3721                                  buffer. No actual window is created for this
3722                                  type, instead the window and all of its
3723                                  contents will be rendered to an image buffer.
3724                                  This allows to have children window inside a
3725                                  parent one just like any other object would
3726                                  be, and do other things like applying @c
3727                                  Evas_Map effects to it. This is the only type
3728                                  of window that requires the @c parent
3729                                  parameter of elm_win_add() to be a valid @c
3730                                  Evas_Object. */
3731      } Elm_Win_Type;
3732
3733    /**
3734     * The differents layouts that can be requested for the virtual keyboard.
3735     *
3736     * When the application window is being managed by Illume, it may request
3737     * any of the following layouts for the virtual keyboard.
3738     */
3739    typedef enum _Elm_Win_Keyboard_Mode
3740      {
3741         ELM_WIN_KEYBOARD_UNKNOWN, /**< Unknown keyboard state */
3742         ELM_WIN_KEYBOARD_OFF, /**< Request to deactivate the keyboard */
3743         ELM_WIN_KEYBOARD_ON, /**< Enable keyboard with default layout */
3744         ELM_WIN_KEYBOARD_ALPHA, /**< Alpha (a-z) keyboard layout */
3745         ELM_WIN_KEYBOARD_NUMERIC, /**< Numeric keyboard layout */
3746         ELM_WIN_KEYBOARD_PIN, /**< PIN keyboard layout */
3747         ELM_WIN_KEYBOARD_PHONE_NUMBER, /**< Phone keyboard layout */
3748         ELM_WIN_KEYBOARD_HEX, /**< Hexadecimal numeric keyboard layout */
3749         ELM_WIN_KEYBOARD_TERMINAL, /**< Full (QUERTY) keyboard layout */
3750         ELM_WIN_KEYBOARD_PASSWORD, /**< Password keyboard layout */
3751         ELM_WIN_KEYBOARD_IP, /**< IP keyboard layout */
3752         ELM_WIN_KEYBOARD_HOST, /**< Host keyboard layout */
3753         ELM_WIN_KEYBOARD_FILE, /**< File keyboard layout */
3754         ELM_WIN_KEYBOARD_URL, /**< URL keyboard layout */
3755         ELM_WIN_KEYBOARD_KEYPAD, /**< Keypad layout */
3756         ELM_WIN_KEYBOARD_J2ME /**< J2ME keyboard layout */
3757      } Elm_Win_Keyboard_Mode;
3758
3759    /**
3760     * Available commands that can be sent to the Illume manager.
3761     *
3762     * When running under an Illume session, a window may send commands to the
3763     * Illume manager to perform different actions.
3764     */
3765    typedef enum _Elm_Illume_Command
3766      {
3767         ELM_ILLUME_COMMAND_FOCUS_BACK, /**< Reverts focus to the previous
3768                                          window */
3769         ELM_ILLUME_COMMAND_FOCUS_FORWARD, /**< Sends focus to the next window\
3770                                             in the list */
3771         ELM_ILLUME_COMMAND_FOCUS_HOME, /**< Hides all windows to show the Home
3772                                          screen */
3773         ELM_ILLUME_COMMAND_CLOSE /**< Closes the currently active window */
3774      } Elm_Illume_Command;
3775
3776    /**
3777     * Adds a window object. If this is the first window created, pass NULL as
3778     * @p parent.
3779     *
3780     * @param parent Parent object to add the window to, or NULL
3781     * @param name The name of the window
3782     * @param type The window type, one of #Elm_Win_Type.
3783     *
3784     * The @p parent paramter can be @c NULL for every window @p type except
3785     * #ELM_WIN_INLINED_IMAGE, which needs a parent to retrieve the canvas on
3786     * which the image object will be created.
3787     *
3788     * @return The created object, or NULL on failure
3789     */
3790    EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type);
3791    /**
3792     * Adds a window object with standard setup
3793     *
3794     * @param name The name of the window
3795     * @param title The title for the window
3796     *
3797     * This creates a window like elm_win_add() but also puts in a standard
3798     * background with elm_bg_add(), as well as setting the window title to
3799     * @p title. The window type created is of type ELM_WIN_BASIC, with NULL
3800     * as the parent widget.
3801     * 
3802     * @return The created object, or NULL on failure
3803     *
3804     * @see elm_win_add()
3805     */
3806    EAPI Evas_Object *elm_win_util_standard_add(const char *name, const char *title);
3807    /**
3808     * Add @p subobj as a resize object of window @p obj.
3809     *
3810     *
3811     * Setting an object as a resize object of the window means that the
3812     * @p subobj child's size and position will be controlled by the window
3813     * directly. That is, the object will be resized to match the window size
3814     * and should never be moved or resized manually by the developer.
3815     *
3816     * In addition, resize objects of the window control what the minimum size
3817     * of it will be, as well as whether it can or not be resized by the user.
3818     *
3819     * For the end user to be able to resize a window by dragging the handles
3820     * or borders provided by the Window Manager, or using any other similar
3821     * mechanism, all of the resize objects in the window should have their
3822     * evas_object_size_hint_weight_set() set to EVAS_HINT_EXPAND.
3823     *
3824     * @param obj The window object
3825     * @param subobj The resize object to add
3826     */
3827    EAPI void         elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
3828    /**
3829     * Delete @p subobj as a resize object of window @p obj.
3830     *
3831     * This function removes the object @p subobj from the resize objects of
3832     * the window @p obj. It will not delete the object itself, which will be
3833     * left unmanaged and should be deleted by the developer, manually handled
3834     * or set as child of some other container.
3835     *
3836     * @param obj The window object
3837     * @param subobj The resize object to add
3838     */
3839    EAPI void         elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
3840    /**
3841     * Set the title of the window
3842     *
3843     * @param obj The window object
3844     * @param title The title to set
3845     */
3846    EAPI void         elm_win_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
3847    /**
3848     * Get the title of the window
3849     *
3850     * The returned string is an internal one and should not be freed or
3851     * modified. It will also be rendered invalid if a new title is set or if
3852     * the window is destroyed.
3853     *
3854     * @param obj The window object
3855     * @return The title
3856     */
3857    EAPI const char  *elm_win_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3858    /**
3859     * Set the window's autodel state.
3860     *
3861     * When closing the window in any way outside of the program control, like
3862     * pressing the X button in the titlebar or using a command from the
3863     * Window Manager, a "delete,request" signal is emitted to indicate that
3864     * this event occurred and the developer can take any action, which may
3865     * include, or not, destroying the window object.
3866     *
3867     * When the @p autodel parameter is set, the window will be automatically
3868     * destroyed when this event occurs, after the signal is emitted.
3869     * If @p autodel is @c EINA_FALSE, then the window will not be destroyed
3870     * and is up to the program to do so when it's required.
3871     *
3872     * @param obj The window object
3873     * @param autodel If true, the window will automatically delete itself when
3874     * closed
3875     */
3876    EAPI void         elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel) EINA_ARG_NONNULL(1);
3877    /**
3878     * Get the window's autodel state.
3879     *
3880     * @param obj The window object
3881     * @return If the window will automatically delete itself when closed
3882     *
3883     * @see elm_win_autodel_set()
3884     */
3885    EAPI Eina_Bool    elm_win_autodel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3886    /**
3887     * Activate a window object.
3888     *
3889     * This function sends a request to the Window Manager to activate the
3890     * window pointed by @p obj. If honored by the WM, the window will receive
3891     * the keyboard focus.
3892     *
3893     * @note This is just a request that a Window Manager may ignore, so calling
3894     * this function does not ensure in any way that the window will be the
3895     * active one after it.
3896     *
3897     * @param obj The window object
3898     */
3899    EAPI void         elm_win_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
3900    /**
3901     * Lower a window object.
3902     *
3903     * Places the window pointed by @p obj at the bottom of the stack, so that
3904     * no other window is covered by it.
3905     *
3906     * If elm_win_override_set() is not set, the Window Manager may ignore this
3907     * request.
3908     *
3909     * @param obj The window object
3910     */
3911    EAPI void         elm_win_lower(Evas_Object *obj) EINA_ARG_NONNULL(1);
3912    /**
3913     * Raise a window object.
3914     *
3915     * Places the window pointed by @p obj at the top of the stack, so that it's
3916     * not covered by any other window.
3917     *
3918     * If elm_win_override_set() is not set, the Window Manager may ignore this
3919     * request.
3920     *
3921     * @param obj The window object
3922     */
3923    EAPI void         elm_win_raise(Evas_Object *obj) EINA_ARG_NONNULL(1);
3924    /**
3925     * Set the borderless state of a window.
3926     *
3927     * This function requests the Window Manager to not draw any decoration
3928     * around the window.
3929     *
3930     * @param obj The window object
3931     * @param borderless If true, the window is borderless
3932     */
3933    EAPI void         elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless) EINA_ARG_NONNULL(1);
3934    /**
3935     * Get the borderless state of a window.
3936     *
3937     * @param obj The window object
3938     * @return If true, the window is borderless
3939     */
3940    EAPI Eina_Bool    elm_win_borderless_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3941    /**
3942     * Set the shaped state of a window.
3943     *
3944     * Shaped windows, when supported, will render the parts of the window that
3945     * has no content, transparent.
3946     *
3947     * If @p shaped is EINA_FALSE, then it is strongly adviced to have some
3948     * background object or cover the entire window in any other way, or the
3949     * parts of the canvas that have no data will show framebuffer artifacts.
3950     *
3951     * @param obj The window object
3952     * @param shaped If true, the window is shaped
3953     *
3954     * @see elm_win_alpha_set()
3955     */
3956    EAPI void         elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped) EINA_ARG_NONNULL(1);
3957    /**
3958     * Get the shaped state of a window.
3959     *
3960     * @param obj The window object
3961     * @return If true, the window is shaped
3962     *
3963     * @see elm_win_shaped_set()
3964     */
3965    EAPI Eina_Bool    elm_win_shaped_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3966    /**
3967     * Set the alpha channel state of a window.
3968     *
3969     * If @p alpha is EINA_TRUE, the alpha channel of the canvas will be enabled
3970     * possibly making parts of the window completely or partially transparent.
3971     * This is also subject to the underlying system supporting it, like for
3972     * example, running under a compositing manager. If no compositing is
3973     * available, enabling this option will instead fallback to using shaped
3974     * windows, with elm_win_shaped_set().
3975     *
3976     * @param obj The window object
3977     * @param alpha If true, the window has an alpha channel
3978     *
3979     * @see elm_win_alpha_set()
3980     */
3981    EAPI void         elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
3982    /**
3983     * Get the transparency state of a window.
3984     *
3985     * @param obj The window object
3986     * @return If true, the window is transparent
3987     *
3988     * @see elm_win_transparent_set()
3989     */
3990    EAPI Eina_Bool    elm_win_transparent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3991    /**
3992     * Set the transparency state of a window.
3993     *
3994     * Use elm_win_alpha_set() instead.
3995     *
3996     * @param obj The window object
3997     * @param transparent If true, the window is transparent
3998     *
3999     * @see elm_win_alpha_set()
4000     */
4001    EAPI void         elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent) EINA_ARG_NONNULL(1);
4002    /**
4003     * Get the alpha channel state of a window.
4004     *
4005     * @param obj The window object
4006     * @return If true, the window has an alpha channel
4007     */
4008    EAPI Eina_Bool    elm_win_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4009    /**
4010     * Set the override state of a window.
4011     *
4012     * A window with @p override set to EINA_TRUE will not be managed by the
4013     * Window Manager. This means that no decorations of any kind will be shown
4014     * for it, moving and resizing must be handled by the application, as well
4015     * as the window visibility.
4016     *
4017     * This should not be used for normal windows, and even for not so normal
4018     * ones, it should only be used when there's a good reason and with a lot
4019     * of care. Mishandling override windows may result situations that
4020     * disrupt the normal workflow of the end user.
4021     *
4022     * @param obj The window object
4023     * @param override If true, the window is overridden
4024     */
4025    EAPI void         elm_win_override_set(Evas_Object *obj, Eina_Bool override) EINA_ARG_NONNULL(1);
4026    /**
4027     * Get the override state of a window.
4028     *
4029     * @param obj The window object
4030     * @return If true, the window is overridden
4031     *
4032     * @see elm_win_override_set()
4033     */
4034    EAPI Eina_Bool    elm_win_override_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4035    /**
4036     * Set the fullscreen state of a window.
4037     *
4038     * @param obj The window object
4039     * @param fullscreen If true, the window is fullscreen
4040     */
4041    EAPI void         elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen) EINA_ARG_NONNULL(1);
4042    /**
4043     * Get the fullscreen state of a window.
4044     *
4045     * @param obj The window object
4046     * @return If true, the window is fullscreen
4047     */
4048    EAPI Eina_Bool    elm_win_fullscreen_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4049    /**
4050     * Set the maximized state of a window.
4051     *
4052     * @param obj The window object
4053     * @param maximized If true, the window is maximized
4054     */
4055    EAPI void         elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized) EINA_ARG_NONNULL(1);
4056    /**
4057     * Get the maximized state of a window.
4058     *
4059     * @param obj The window object
4060     * @return If true, the window is maximized
4061     */
4062    EAPI Eina_Bool    elm_win_maximized_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4063    /**
4064     * Set the iconified state of a window.
4065     *
4066     * @param obj The window object
4067     * @param iconified If true, the window is iconified
4068     */
4069    EAPI void         elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified) EINA_ARG_NONNULL(1);
4070    /**
4071     * Get the iconified state of a window.
4072     *
4073     * @param obj The window object
4074     * @return If true, the window is iconified
4075     */
4076    EAPI Eina_Bool    elm_win_iconified_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4077    /**
4078     * Set the layer of the window.
4079     *
4080     * What this means exactly will depend on the underlying engine used.
4081     *
4082     * In the case of X11 backed engines, the value in @p layer has the
4083     * following meanings:
4084     * @li < 3: The window will be placed below all others.
4085     * @li > 5: The window will be placed above all others.
4086     * @li other: The window will be placed in the default layer.
4087     *
4088     * @param obj The window object
4089     * @param layer The layer of the window
4090     */
4091    EAPI void         elm_win_layer_set(Evas_Object *obj, int layer) EINA_ARG_NONNULL(1);
4092    /**
4093     * Get the layer of the window.
4094     *
4095     * @param obj The window object
4096     * @return The layer of the window
4097     *
4098     * @see elm_win_layer_set()
4099     */
4100    EAPI int          elm_win_layer_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4101    /**
4102     * Set the rotation of the window.
4103     *
4104     * Most engines only work with multiples of 90.
4105     *
4106     * This function is used to set the orientation of the window @p obj to
4107     * match that of the screen. The window itself will be resized to adjust
4108     * to the new geometry of its contents. If you want to keep the window size,
4109     * see elm_win_rotation_with_resize_set().
4110     *
4111     * @param obj The window object
4112     * @param rotation The rotation of the window, in degrees (0-360),
4113     * counter-clockwise.
4114     */
4115    EAPI void         elm_win_rotation_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
4116    /**
4117     * Rotates the window and resizes it.
4118     *
4119     * Like elm_win_rotation_set(), but it also resizes the window's contents so
4120     * that they fit inside the current window geometry.
4121     *
4122     * @param obj The window object
4123     * @param layer The rotation of the window in degrees (0-360),
4124     * counter-clockwise.
4125     */
4126    EAPI void         elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
4127    /**
4128     * Get the rotation of the window.
4129     *
4130     * @param obj The window object
4131     * @return The rotation of the window in degrees (0-360)
4132     *
4133     * @see elm_win_rotation_set()
4134     * @see elm_win_rotation_with_resize_set()
4135     */
4136    EAPI int          elm_win_rotation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4137    /**
4138     * Set the sticky state of the window.
4139     *
4140     * Hints the Window Manager that the window in @p obj should be left fixed
4141     * at its position even when the virtual desktop it's on moves or changes.
4142     *
4143     * @param obj The window object
4144     * @param sticky If true, the window's sticky state is enabled
4145     */
4146    EAPI void         elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky) EINA_ARG_NONNULL(1);
4147    /**
4148     * Get the sticky state of the window.
4149     *
4150     * @param obj The window object
4151     * @return If true, the window's sticky state is enabled
4152     *
4153     * @see elm_win_sticky_set()
4154     */
4155    EAPI Eina_Bool    elm_win_sticky_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4156    /**
4157     * Set if this window is an illume conformant window
4158     *
4159     * @param obj The window object
4160     * @param conformant The conformant flag (1 = conformant, 0 = non-conformant)
4161     */
4162    EAPI void         elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant) EINA_ARG_NONNULL(1);
4163    /**
4164     * Get if this window is an illume conformant window
4165     *
4166     * @param obj The window object
4167     * @return A boolean if this window is illume conformant or not
4168     */
4169    EAPI Eina_Bool    elm_win_conformant_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4170    /**
4171     * Set a window to be an illume quickpanel window
4172     *
4173     * By default window objects are not quickpanel windows.
4174     *
4175     * @param obj The window object
4176     * @param quickpanel The quickpanel flag (1 = quickpanel, 0 = normal window)
4177     */
4178    EAPI void         elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel) EINA_ARG_NONNULL(1);
4179    /**
4180     * Get if this window is a quickpanel or not
4181     *
4182     * @param obj The window object
4183     * @return A boolean if this window is a quickpanel or not
4184     */
4185    EAPI Eina_Bool    elm_win_quickpanel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4186    /**
4187     * Set the major priority of a quickpanel window
4188     *
4189     * @param obj The window object
4190     * @param priority The major priority for this quickpanel
4191     */
4192    EAPI void         elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4193    /**
4194     * Get the major priority of a quickpanel window
4195     *
4196     * @param obj The window object
4197     * @return The major priority of this quickpanel
4198     */
4199    EAPI int          elm_win_quickpanel_priority_major_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4200    /**
4201     * Set the minor priority of a quickpanel window
4202     *
4203     * @param obj The window object
4204     * @param priority The minor priority for this quickpanel
4205     */
4206    EAPI void         elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4207    /**
4208     * Get the minor priority of a quickpanel window
4209     *
4210     * @param obj The window object
4211     * @return The minor priority of this quickpanel
4212     */
4213    EAPI int          elm_win_quickpanel_priority_minor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4214    /**
4215     * Set which zone this quickpanel should appear in
4216     *
4217     * @param obj The window object
4218     * @param zone The requested zone for this quickpanel
4219     */
4220    EAPI void         elm_win_quickpanel_zone_set(Evas_Object *obj, int zone) EINA_ARG_NONNULL(1);
4221    /**
4222     * Get which zone this quickpanel should appear in
4223     *
4224     * @param obj The window object
4225     * @return The requested zone for this quickpanel
4226     */
4227    EAPI int          elm_win_quickpanel_zone_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4228    /**
4229     * Set the window to be skipped by keyboard focus
4230     *
4231     * This sets the window to be skipped by normal keyboard input. This means
4232     * a window manager will be asked to not focus this window as well as omit
4233     * it from things like the taskbar, pager, "alt-tab" list etc. etc.
4234     *
4235     * Call this and enable it on a window BEFORE you show it for the first time,
4236     * otherwise it may have no effect.
4237     *
4238     * Use this for windows that have only output information or might only be
4239     * interacted with by the mouse or fingers, and never for typing input.
4240     * Be careful that this may have side-effects like making the window
4241     * non-accessible in some cases unless the window is specially handled. Use
4242     * this with care.
4243     *
4244     * @param obj The window object
4245     * @param skip The skip flag state (EINA_TRUE if it is to be skipped)
4246     */
4247    EAPI void         elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip) EINA_ARG_NONNULL(1);
4248    /**
4249     * Send a command to the windowing environment
4250     *
4251     * This is intended to work in touchscreen or small screen device
4252     * environments where there is a more simplistic window management policy in
4253     * place. This uses the window object indicated to select which part of the
4254     * environment to control (the part that this window lives in), and provides
4255     * a command and an optional parameter structure (use NULL for this if not
4256     * needed).
4257     *
4258     * @param obj The window object that lives in the environment to control
4259     * @param command The command to send
4260     * @param params Optional parameters for the command
4261     */
4262    EAPI void         elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params) EINA_ARG_NONNULL(1);
4263    /**
4264     * Get the inlined image object handle
4265     *
4266     * When you create a window with elm_win_add() of type ELM_WIN_INLINED_IMAGE,
4267     * then the window is in fact an evas image object inlined in the parent
4268     * canvas. You can get this object (be careful to not manipulate it as it
4269     * is under control of elementary), and use it to do things like get pixel
4270     * data, save the image to a file, etc.
4271     *
4272     * @param obj The window object to get the inlined image from
4273     * @return The inlined image object, or NULL if none exists
4274     */
4275    EAPI Evas_Object *elm_win_inlined_image_object_get(Evas_Object *obj);
4276    /**
4277     * Set the enabled status for the focus highlight in a window
4278     *
4279     * This function will enable or disable the focus highlight only for the
4280     * given window, regardless of the global setting for it
4281     *
4282     * @param obj The window where to enable the highlight
4283     * @param enabled The enabled value for the highlight
4284     */
4285    EAPI void         elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
4286    /**
4287     * Get the enabled value of the focus highlight for this window
4288     *
4289     * @param obj The window in which to check if the focus highlight is enabled
4290     *
4291     * @return EINA_TRUE if enabled, EINA_FALSE otherwise
4292     */
4293    EAPI Eina_Bool    elm_win_focus_highlight_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4294    /**
4295     * Set the style for the focus highlight on this window
4296     *
4297     * Sets the style to use for theming the highlight of focused objects on
4298     * the given window. If @p style is NULL, the default will be used.
4299     *
4300     * @param obj The window where to set the style
4301     * @param style The style to set
4302     */
4303    EAPI void         elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
4304    /**
4305     * Get the style set for the focus highlight object
4306     *
4307     * Gets the style set for this windows highilght object, or NULL if none
4308     * is set.
4309     *
4310     * @param obj The window to retrieve the highlights style from
4311     *
4312     * @return The style set or NULL if none was. Default is used in that case.
4313     */
4314    EAPI const char  *elm_win_focus_highlight_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4315    EAPI void         elm_win_indicator_state_set(Evas_Object *obj, int show_state);
4316    EAPI int          elm_win_indicator_state_get(Evas_Object *obj);
4317    /*...
4318     * ecore_x_icccm_hints_set -> accepts_focus (add to ecore_evas)
4319     * ecore_x_icccm_hints_set -> window_group (add to ecore_evas)
4320     * ecore_x_icccm_size_pos_hints_set -> request_pos (add to ecore_evas)
4321     * ecore_x_icccm_client_leader_set -> l (add to ecore_evas)
4322     * ecore_x_icccm_window_role_set -> role (add to ecore_evas)
4323     * ecore_x_icccm_transient_for_set -> forwin (add to ecore_evas)
4324     * ecore_x_netwm_window_type_set -> type (add to ecore_evas)
4325     *
4326     * (add to ecore_x) set netwm argb icon! (add to ecore_evas)
4327     * (blank mouse, private mouse obj, defaultmouse)
4328     *
4329     */
4330    /**
4331     * Sets the keyboard mode of the window.
4332     *
4333     * @param obj The window object
4334     * @param mode The mode to set, one of #Elm_Win_Keyboard_Mode
4335     */
4336    EAPI void                  elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode) EINA_ARG_NONNULL(1);
4337    /**
4338     * Gets the keyboard mode of the window.
4339     *
4340     * @param obj The window object
4341     * @return The mode, one of #Elm_Win_Keyboard_Mode
4342     */
4343    EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4344    /**
4345     * Sets whether the window is a keyboard.
4346     *
4347     * @param obj The window object
4348     * @param is_keyboard If true, the window is a virtual keyboard
4349     */
4350    EAPI void                  elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard) EINA_ARG_NONNULL(1);
4351    /**
4352     * Gets whether the window is a keyboard.
4353     *
4354     * @param obj The window object
4355     * @return If the window is a virtual keyboard
4356     */
4357    EAPI Eina_Bool             elm_win_keyboard_win_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4358
4359    /**
4360     * Get the screen position of a window.
4361     *
4362     * @param obj The window object
4363     * @param x The int to store the x coordinate to
4364     * @param y The int to store the y coordinate to
4365     */
4366    EAPI void                  elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y) EINA_ARG_NONNULL(1);
4367    /**
4368     * @}
4369     */
4370
4371    /**
4372     * @defgroup Inwin Inwin
4373     *
4374     * @image html img/widget/inwin/preview-00.png
4375     * @image latex img/widget/inwin/preview-00.eps
4376     * @image html img/widget/inwin/preview-01.png
4377     * @image latex img/widget/inwin/preview-01.eps
4378     * @image html img/widget/inwin/preview-02.png
4379     * @image latex img/widget/inwin/preview-02.eps
4380     *
4381     * An inwin is a window inside a window that is useful for a quick popup.
4382     * It does not hover.
4383     *
4384     * It works by creating an object that will occupy the entire window, so it
4385     * must be created using an @ref Win "elm_win" as parent only. The inwin
4386     * object can be hidden or restacked below every other object if it's
4387     * needed to show what's behind it without destroying it. If this is done,
4388     * the elm_win_inwin_activate() function can be used to bring it back to
4389     * full visibility again.
4390     *
4391     * There are three styles available in the default theme. These are:
4392     * @li default: The inwin is sized to take over most of the window it's
4393     * placed in.
4394     * @li minimal: The size of the inwin will be the minimum necessary to show
4395     * its contents.
4396     * @li minimal_vertical: Horizontally, the inwin takes as much space as
4397     * possible, but it's sized vertically the most it needs to fit its\
4398     * contents.
4399     *
4400     * Some examples of Inwin can be found in the following:
4401     * @li @ref inwin_example_01
4402     *
4403     * @{
4404     */
4405    /**
4406     * Adds an inwin to the current window
4407     *
4408     * The @p obj used as parent @b MUST be an @ref Win "Elementary Window".
4409     * Never call this function with anything other than the top-most window
4410     * as its parameter, unless you are fond of undefined behavior.
4411     *
4412     * After creating the object, the widget will set itself as resize object
4413     * for the window with elm_win_resize_object_add(), so when shown it will
4414     * appear to cover almost the entire window (how much of it depends on its
4415     * content and the style used). It must not be added into other container
4416     * objects and it needs not be moved or resized manually.
4417     *
4418     * @param parent The parent object
4419     * @return The new object or NULL if it cannot be created
4420     */
4421    EAPI Evas_Object          *elm_win_inwin_add(Evas_Object *obj) EINA_ARG_NONNULL(1);
4422    /**
4423     * Activates an inwin object, ensuring its visibility
4424     *
4425     * This function will make sure that the inwin @p obj is completely visible
4426     * by calling evas_object_show() and evas_object_raise() on it, to bring it
4427     * to the front. It also sets the keyboard focus to it, which will be passed
4428     * onto its content.
4429     *
4430     * The object's theme will also receive the signal "elm,action,show" with
4431     * source "elm".
4432     *
4433     * @param obj The inwin to activate
4434     */
4435    EAPI void                  elm_win_inwin_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
4436    /**
4437     * Set the content of an inwin object.
4438     *
4439     * Once the content object is set, a previously set one will be deleted.
4440     * If you want to keep that old content object, use the
4441     * elm_win_inwin_content_unset() function.
4442     *
4443     * @param obj The inwin object
4444     * @param content The object to set as content
4445     */
4446    EAPI void                  elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
4447    /**
4448     * Get the content of an inwin object.
4449     *
4450     * Return the content object which is set for this widget.
4451     *
4452     * The returned object is valid as long as the inwin is still alive and no
4453     * other content is set on it. Deleting the object will notify the inwin
4454     * about it and this one will be left empty.
4455     *
4456     * If you need to remove an inwin's content to be reused somewhere else,
4457     * see elm_win_inwin_content_unset().
4458     *
4459     * @param obj The inwin object
4460     * @return The content that is being used
4461     */
4462    EAPI Evas_Object          *elm_win_inwin_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4463    /**
4464     * Unset the content of an inwin object.
4465     *
4466     * Unparent and return the content object which was set for this widget.
4467     *
4468     * @param obj The inwin object
4469     * @return The content that was being used
4470     */
4471    EAPI Evas_Object          *elm_win_inwin_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4472    /**
4473     * @}
4474     */
4475    /* X specific calls - won't work on non-x engines (return 0) */
4476
4477    /**
4478     * Get the Ecore_X_Window of an Evas_Object
4479     *
4480     * @param obj The object
4481     *
4482     * @return The Ecore_X_Window of @p obj
4483     *
4484     * @ingroup Win
4485     */
4486    EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4487
4488    /* smart callbacks called:
4489     * "delete,request" - the user requested to delete the window
4490     * "focus,in" - window got focus
4491     * "focus,out" - window lost focus
4492     * "moved" - window that holds the canvas was moved
4493     */
4494
4495    /**
4496     * @defgroup Bg Bg
4497     *
4498     * @image html img/widget/bg/preview-00.png
4499     * @image latex img/widget/bg/preview-00.eps
4500     *
4501     * @brief Background object, used for setting a solid color, image or Edje
4502     * group as background to a window or any container object.
4503     *
4504     * The bg object is used for setting a solid background to a window or
4505     * packing into any container object. It works just like an image, but has
4506     * some properties useful to a background, like setting it to tiled,
4507     * centered, scaled or stretched.
4508     * 
4509     * Default contents parts of the bg widget that you can use for are:
4510     * @li "elm.swallow.content" - overlay of the bg
4511     *
4512     * Here is some sample code using it:
4513     * @li @ref bg_01_example_page
4514     * @li @ref bg_02_example_page
4515     * @li @ref bg_03_example_page
4516     */
4517
4518    /* bg */
4519    typedef enum _Elm_Bg_Option
4520      {
4521         ELM_BG_OPTION_CENTER,  /**< center the background */
4522         ELM_BG_OPTION_SCALE,   /**< scale the background retaining aspect ratio */
4523         ELM_BG_OPTION_STRETCH, /**< stretch the background to fill */
4524         ELM_BG_OPTION_TILE     /**< tile background at its original size */
4525      } Elm_Bg_Option;
4526
4527    /**
4528     * Add a new background to the parent
4529     *
4530     * @param parent The parent object
4531     * @return The new object or NULL if it cannot be created
4532     *
4533     * @ingroup Bg
4534     */
4535    EAPI Evas_Object  *elm_bg_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4536
4537    /**
4538     * Set the file (image or edje) used for the background
4539     *
4540     * @param obj The bg object
4541     * @param file The file path
4542     * @param group Optional key (group in Edje) within the file
4543     *
4544     * This sets the image file used in the background object. The image (or edje)
4545     * will be stretched (retaining aspect if its an image file) to completely fill
4546     * the bg object. This may mean some parts are not visible.
4547     *
4548     * @note  Once the image of @p obj is set, a previously set one will be deleted,
4549     * even if @p file is NULL.
4550     *
4551     * @ingroup Bg
4552     */
4553    EAPI void          elm_bg_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
4554
4555    /**
4556     * Get the file (image or edje) used for the background
4557     *
4558     * @param obj The bg object
4559     * @param file The file path
4560     * @param group Optional key (group in Edje) within the file
4561     *
4562     * @ingroup Bg
4563     */
4564    EAPI void          elm_bg_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4565
4566    /**
4567     * Set the option used for the background image
4568     *
4569     * @param obj The bg object
4570     * @param option The desired background option (TILE, SCALE)
4571     *
4572     * This sets the option used for manipulating the display of the background
4573     * image. The image can be tiled or scaled.
4574     *
4575     * @ingroup Bg
4576     */
4577    EAPI void          elm_bg_option_set(Evas_Object *obj, Elm_Bg_Option option) EINA_ARG_NONNULL(1);
4578
4579    /**
4580     * Get the option used for the background image
4581     *
4582     * @param obj The bg object
4583     * @return The desired background option (CENTER, SCALE, STRETCH or TILE)
4584     *
4585     * @ingroup Bg
4586     */
4587    EAPI Elm_Bg_Option elm_bg_option_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4588    /**
4589     * Set the option used for the background color
4590     *
4591     * @param obj The bg object
4592     * @param r
4593     * @param g
4594     * @param b
4595     *
4596     * This sets the color used for the background rectangle. Its range goes
4597     * from 0 to 255.
4598     *
4599     * @ingroup Bg
4600     */
4601    EAPI void          elm_bg_color_set(Evas_Object *obj, int r, int g, int b) EINA_ARG_NONNULL(1);
4602    /**
4603     * Get the option used for the background color
4604     *
4605     * @param obj The bg object
4606     * @param r
4607     * @param g
4608     * @param b
4609     *
4610     * @ingroup Bg
4611     */
4612    EAPI void          elm_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b) EINA_ARG_NONNULL(1);
4613
4614    /**
4615     * Set the overlay object used for the background object.
4616     *
4617     * @param obj The bg object
4618     * @param overlay The overlay object
4619     *
4620     * This provides a way for elm_bg to have an 'overlay' that will be on top
4621     * of the bg. Once the over object is set, a previously set one will be
4622     * deleted, even if you set the new one to NULL. If you want to keep that
4623     * old content object, use the elm_bg_overlay_unset() function.
4624     *
4625     * @deprecated use elm_object_content_set() instead
4626     *
4627     * @ingroup Bg
4628     */
4629
4630    EAPI void          elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay) EINA_ARG_NONNULL(1);
4631
4632    /**
4633     * Get the overlay object used for the background object.
4634     *
4635     * @param obj The bg object
4636     * @return The content that is being used
4637     *
4638     * Return the content object which is set for this widget
4639     *
4640     * @deprecated use elm_object_content_get() instead
4641     *
4642     * @ingroup Bg
4643     */
4644    EINA_DEPRECATED EAPI Evas_Object  *elm_bg_overlay_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4645
4646    /**
4647     * Get the overlay object used for the background object.
4648     *
4649     * @param obj The bg object
4650     * @return The content that was being used
4651     *
4652     * Unparent and return the overlay object which was set for this widget
4653     *
4654     * @deprecated use elm_object_content_unset() instead
4655     *
4656     * @ingroup Bg
4657     */
4658    EAPI Evas_Object  *elm_bg_overlay_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4659
4660    /**
4661     * Set the size of the pixmap representation of the image.
4662     *
4663     * This option just makes sense if an image is going to be set in the bg.
4664     *
4665     * @param obj The bg object
4666     * @param w The new width of the image pixmap representation.
4667     * @param h The new height of the image pixmap representation.
4668     *
4669     * This function sets a new size for pixmap representation of the given bg
4670     * image. It allows the image to be loaded already in the specified size,
4671     * reducing the memory usage and load time when loading a big image with load
4672     * size set to a smaller size.
4673     *
4674     * NOTE: this is just a hint, the real size of the pixmap may differ
4675     * depending on the type of image being loaded, being bigger than requested.
4676     *
4677     * @ingroup Bg
4678     */
4679    EAPI void          elm_bg_load_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
4680    /* smart callbacks called:
4681     */
4682
4683    /**
4684     * @defgroup Icon Icon
4685     *
4686     * @image html img/widget/icon/preview-00.png
4687     * @image latex img/widget/icon/preview-00.eps
4688     *
4689     * An object that provides standard icon images (delete, edit, arrows, etc.)
4690     * or a custom file (PNG, JPG, EDJE, etc.) used for an icon.
4691     *
4692     * The icon image requested can be in the elementary theme, or in the
4693     * freedesktop.org paths. It's possible to set the order of preference from
4694     * where the image will be used.
4695     *
4696     * This API is very similar to @ref Image, but with ready to use images.
4697     *
4698     * Default images provided by the theme are described below.
4699     *
4700     * The first list contains icons that were first intended to be used in
4701     * toolbars, but can be used in many other places too:
4702     * @li home
4703     * @li close
4704     * @li apps
4705     * @li arrow_up
4706     * @li arrow_down
4707     * @li arrow_left
4708     * @li arrow_right
4709     * @li chat
4710     * @li clock
4711     * @li delete
4712     * @li edit
4713     * @li refresh
4714     * @li folder
4715     * @li file
4716     *
4717     * Now some icons that were designed to be used in menus (but again, you can
4718     * use them anywhere else):
4719     * @li menu/home
4720     * @li menu/close
4721     * @li menu/apps
4722     * @li menu/arrow_up
4723     * @li menu/arrow_down
4724     * @li menu/arrow_left
4725     * @li menu/arrow_right
4726     * @li menu/chat
4727     * @li menu/clock
4728     * @li menu/delete
4729     * @li menu/edit
4730     * @li menu/refresh
4731     * @li menu/folder
4732     * @li menu/file
4733     *
4734     * And here we have some media player specific icons:
4735     * @li media_player/forward
4736     * @li media_player/info
4737     * @li media_player/next
4738     * @li media_player/pause
4739     * @li media_player/play
4740     * @li media_player/prev
4741     * @li media_player/rewind
4742     * @li media_player/stop
4743     *
4744     * Signals that you can add callbacks for are:
4745     *
4746     * "clicked" - This is called when a user has clicked the icon
4747     *
4748     * An example of usage for this API follows:
4749     * @li @ref tutorial_icon
4750     */
4751
4752    /**
4753     * @addtogroup Icon
4754     * @{
4755     */
4756
4757    typedef enum _Elm_Icon_Type
4758      {
4759         ELM_ICON_NONE,
4760         ELM_ICON_FILE,
4761         ELM_ICON_STANDARD
4762      } Elm_Icon_Type;
4763    /**
4764     * @enum _Elm_Icon_Lookup_Order
4765     * @typedef Elm_Icon_Lookup_Order
4766     *
4767     * Lookup order used by elm_icon_standard_set(). Should look for icons in the
4768     * theme, FDO paths, or both?
4769     *
4770     * @ingroup Icon
4771     */
4772    typedef enum _Elm_Icon_Lookup_Order
4773      {
4774         ELM_ICON_LOOKUP_FDO_THEME, /**< icon look up order: freedesktop, theme */
4775         ELM_ICON_LOOKUP_THEME_FDO, /**< icon look up order: theme, freedesktop */
4776         ELM_ICON_LOOKUP_FDO,       /**< icon look up order: freedesktop */
4777         ELM_ICON_LOOKUP_THEME      /**< icon look up order: theme */
4778      } Elm_Icon_Lookup_Order;
4779
4780    /**
4781     * Add a new icon object to the parent.
4782     *
4783     * @param parent The parent object
4784     * @return The new object or NULL if it cannot be created
4785     *
4786     * @see elm_icon_file_set()
4787     *
4788     * @ingroup Icon
4789     */
4790    EAPI Evas_Object          *elm_icon_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4791    /**
4792     * Set the file that will be used as icon.
4793     *
4794     * @param obj The icon object
4795     * @param file The path to file that will be used as icon image
4796     * @param group The group that the icon belongs to an edje file
4797     *
4798     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4799     *
4800     * @note The icon image set by this function can be changed by
4801     * elm_icon_standard_set().
4802     *
4803     * @see elm_icon_file_get()
4804     *
4805     * @ingroup Icon
4806     */
4807    EAPI Eina_Bool             elm_icon_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
4808    /**
4809     * Set a location in memory to be used as an icon
4810     *
4811     * @param obj The icon object
4812     * @param img The binary data that will be used as an image
4813     * @param size The size of binary data @p img
4814     * @param format Optional format of @p img to pass to the image loader
4815     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
4816     *
4817     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4818     *
4819     * @note The icon image set by this function can be changed by
4820     * elm_icon_standard_set().
4821     *
4822     * @ingroup Icon
4823     */
4824    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);
4825    /**
4826     * Get the file that will be used as icon.
4827     *
4828     * @param obj The icon object
4829     * @param file The path to file that will be used as the icon image
4830     * @param group The group that the icon belongs to, in edje file
4831     *
4832     * @see elm_icon_file_set()
4833     *
4834     * @ingroup Icon
4835     */
4836    EAPI void                  elm_icon_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4837    EAPI void                  elm_icon_thumb_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
4838    /**
4839     * Set the icon by icon standards names.
4840     *
4841     * @param obj The icon object
4842     * @param name The icon name
4843     *
4844     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4845     *
4846     * For example, freedesktop.org defines standard icon names such as "home",
4847     * "network", etc. There can be different icon sets to match those icon
4848     * keys. The @p name given as parameter is one of these "keys", and will be
4849     * used to look in the freedesktop.org paths and elementary theme. One can
4850     * change the lookup order with elm_icon_order_lookup_set().
4851     *
4852     * If name is not found in any of the expected locations and it is the
4853     * absolute path of an image file, this image will be used.
4854     *
4855     * @note The icon image set by this function can be changed by
4856     * elm_icon_file_set().
4857     *
4858     * @see elm_icon_standard_get()
4859     * @see elm_icon_file_set()
4860     *
4861     * @ingroup Icon
4862     */
4863    EAPI Eina_Bool             elm_icon_standard_set(Evas_Object *obj, const char *name) EINA_ARG_NONNULL(1);
4864    /**
4865     * Get the icon name set by icon standard names.
4866     *
4867     * @param obj The icon object
4868     * @return The icon name
4869     *
4870     * If the icon image was set using elm_icon_file_set() instead of
4871     * elm_icon_standard_set(), then this function will return @c NULL.
4872     *
4873     * @see elm_icon_standard_set()
4874     *
4875     * @ingroup Icon
4876     */
4877    EAPI const char           *elm_icon_standard_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4878    /**
4879     * Set the smooth scaling for an icon object.
4880     *
4881     * @param obj The icon object
4882     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
4883     * otherwise. Default is @c EINA_TRUE.
4884     *
4885     * Set the scaling algorithm to be used when scaling the icon image. Smooth
4886     * scaling provides a better resulting image, but is slower.
4887     *
4888     * The smooth scaling should be disabled when making animations that change
4889     * the icon size, since they will be faster. Animations that don't require
4890     * resizing of the icon can keep the smooth scaling enabled (even if the icon
4891     * is already scaled, since the scaled icon image will be cached).
4892     *
4893     * @see elm_icon_smooth_get()
4894     *
4895     * @ingroup Icon
4896     */
4897    EAPI void                  elm_icon_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
4898    /**
4899     * Get whether smooth scaling is enabled for an icon object.
4900     *
4901     * @param obj The icon object
4902     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
4903     *
4904     * @see elm_icon_smooth_set()
4905     *
4906     * @ingroup Icon
4907     */
4908    EAPI Eina_Bool             elm_icon_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4909    /**
4910     * Disable scaling of this object.
4911     *
4912     * @param obj The icon object.
4913     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
4914     * otherwise. Default is @c EINA_FALSE.
4915     *
4916     * This function disables scaling of the icon object through the function
4917     * elm_object_scale_set(). However, this does not affect the object
4918     * size/resize in any way. For that effect, take a look at
4919     * elm_icon_scale_set().
4920     *
4921     * @see elm_icon_no_scale_get()
4922     * @see elm_icon_scale_set()
4923     * @see elm_object_scale_set()
4924     *
4925     * @ingroup Icon
4926     */
4927    EAPI void                  elm_icon_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
4928    /**
4929     * Get whether scaling is disabled on the object.
4930     *
4931     * @param obj The icon object
4932     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
4933     *
4934     * @see elm_icon_no_scale_set()
4935     *
4936     * @ingroup Icon
4937     */
4938    EAPI Eina_Bool             elm_icon_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4939    /**
4940     * Set if the object is (up/down) resizable.
4941     *
4942     * @param obj The icon object
4943     * @param scale_up A bool to set if the object is resizable up. Default is
4944     * @c EINA_TRUE.
4945     * @param scale_down A bool to set if the object is resizable down. Default
4946     * is @c EINA_TRUE.
4947     *
4948     * This function limits the icon object resize ability. If @p scale_up is set to
4949     * @c EINA_FALSE, the object can't have its height or width resized to a value
4950     * higher than the original icon size. Same is valid for @p scale_down.
4951     *
4952     * @see elm_icon_scale_get()
4953     *
4954     * @ingroup Icon
4955     */
4956    EAPI void                  elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
4957    /**
4958     * Get if the object is (up/down) resizable.
4959     *
4960     * @param obj The icon object
4961     * @param scale_up A bool to set if the object is resizable up
4962     * @param scale_down A bool to set if the object is resizable down
4963     *
4964     * @see elm_icon_scale_set()
4965     *
4966     * @ingroup Icon
4967     */
4968    EAPI void                  elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
4969    /**
4970     * Get the object's image size
4971     *
4972     * @param obj The icon object
4973     * @param w A pointer to store the width in
4974     * @param h A pointer to store the height in
4975     *
4976     * @ingroup Icon
4977     */
4978    EAPI void                  elm_icon_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
4979    /**
4980     * Set if the icon fill the entire object area.
4981     *
4982     * @param obj The icon object
4983     * @param fill_outside @c EINA_TRUE if the object is filled outside,
4984     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
4985     *
4986     * When the icon object is resized to a different aspect ratio from the
4987     * original icon image, the icon image will still keep its aspect. This flag
4988     * tells how the image should fill the object's area. They are: keep the
4989     * entire icon inside the limits of height and width of the object (@p
4990     * fill_outside is @c EINA_FALSE) or let the extra width or height go outside
4991     * of the object, and the icon will fill the entire object (@p fill_outside
4992     * is @c EINA_TRUE).
4993     *
4994     * @note Unlike @ref Image, there's no option in icon to set the aspect ratio
4995     * retain property to false. Thus, the icon image will always keep its
4996     * original aspect ratio.
4997     *
4998     * @see elm_icon_fill_outside_get()
4999     * @see elm_image_fill_outside_set()
5000     *
5001     * @ingroup Icon
5002     */
5003    EAPI void                  elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5004    /**
5005     * Get if the object is filled outside.
5006     *
5007     * @param obj The icon object
5008     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5009     *
5010     * @see elm_icon_fill_outside_set()
5011     *
5012     * @ingroup Icon
5013     */
5014    EAPI Eina_Bool             elm_icon_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5015    /**
5016     * Set the prescale size for the icon.
5017     *
5018     * @param obj The icon object
5019     * @param size The prescale size. This value is used for both width and
5020     * height.
5021     *
5022     * This function sets a new size for pixmap representation of the given
5023     * icon. It allows the icon to be loaded already in the specified size,
5024     * reducing the memory usage and load time when loading a big icon with load
5025     * size set to a smaller size.
5026     *
5027     * It's equivalent to the elm_bg_load_size_set() function for bg.
5028     *
5029     * @note this is just a hint, the real size of the pixmap may differ
5030     * depending on the type of icon being loaded, being bigger than requested.
5031     *
5032     * @see elm_icon_prescale_get()
5033     * @see elm_bg_load_size_set()
5034     *
5035     * @ingroup Icon
5036     */
5037    EAPI void                  elm_icon_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5038    /**
5039     * Get the prescale size for the icon.
5040     *
5041     * @param obj The icon object
5042     * @return The prescale size
5043     *
5044     * @see elm_icon_prescale_set()
5045     *
5046     * @ingroup Icon
5047     */
5048    EAPI int                   elm_icon_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5049    /**
5050     * Gets the image object of the icon. DO NOT MODIFY THIS.
5051     *
5052     * @param obj The icon object
5053     * @return The internal icon object
5054     *
5055     * @ingroup Icon
5056     */
5057    EAPI Evas_Object          *elm_icon_object_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
5058    /**
5059     * Sets the icon lookup order used by elm_icon_standard_set().
5060     *
5061     * @param obj The icon object
5062     * @param order The icon lookup order (can be one of
5063     * ELM_ICON_LOOKUP_FDO_THEME, ELM_ICON_LOOKUP_THEME_FDO, ELM_ICON_LOOKUP_FDO
5064     * or ELM_ICON_LOOKUP_THEME)
5065     *
5066     * @see elm_icon_order_lookup_get()
5067     * @see Elm_Icon_Lookup_Order
5068     *
5069     * @ingroup Icon
5070     */
5071    EAPI void                  elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
5072    /**
5073     * Gets the icon lookup order.
5074     *
5075     * @param obj The icon object
5076     * @return The icon lookup order
5077     *
5078     * @see elm_icon_order_lookup_set()
5079     * @see Elm_Icon_Lookup_Order
5080     *
5081     * @ingroup Icon
5082     */
5083    EAPI Elm_Icon_Lookup_Order elm_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5084    /**
5085     * Enable or disable preloading of the icon
5086     *
5087     * @param obj The icon object
5088     * @param disable If EINA_TRUE, preloading will be disabled
5089     * @ingroup Icon
5090     */
5091    EAPI void                  elm_icon_preload_set(Evas_Object *obj, Eina_Bool disable) EINA_ARG_NONNULL(1);
5092    /**
5093     * Get if the icon supports animation or not.
5094     *
5095     * @param obj The icon object
5096     * @return @c EINA_TRUE if the icon supports animation,
5097     *         @c EINA_FALSE otherwise.
5098     *
5099     * Return if this elm icon's image can be animated. Currently Evas only
5100     * supports gif animation. If the return value is EINA_FALSE, other
5101     * elm_icon_animated_XXX APIs won't work.
5102     * @ingroup Icon
5103     */
5104    EAPI Eina_Bool           elm_icon_animated_available_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5105    /**
5106     * Set animation mode of the icon.
5107     *
5108     * @param obj The icon object
5109     * @param anim @c EINA_TRUE if the object do animation job,
5110     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5111     *
5112     * Since the default animation mode is set to EINA_FALSE, 
5113     * the icon is shown without animation.
5114     * This might be desirable when the application developer wants to show
5115     * a snapshot of the animated icon.
5116     * Set it to EINA_TRUE when the icon needs to be animated.
5117     * @ingroup Icon
5118     */
5119    EAPI void                elm_icon_animated_set(Evas_Object *obj, Eina_Bool animated) EINA_ARG_NONNULL(1);
5120    /**
5121     * Get animation mode of the icon.
5122     *
5123     * @param obj The icon object
5124     * @return The animation mode of the icon object
5125     * @see elm_icon_animated_set
5126     * @ingroup Icon
5127     */
5128    EAPI Eina_Bool           elm_icon_animated_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5129    /**
5130     * Set animation play mode of the icon.
5131     *
5132     * @param obj The icon object
5133     * @param play @c EINA_TRUE the object play animation images,
5134     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5135     *
5136     * To play elm icon's animation, set play to EINA_TURE.
5137     * For example, you make gif player using this set/get API and click event.
5138     *
5139     * 1. Click event occurs
5140     * 2. Check play flag using elm_icon_animaged_play_get
5141     * 3. If elm icon was playing, set play to EINA_FALSE.
5142     *    Then animation will be stopped and vice versa
5143     * @ingroup Icon
5144     */
5145    EAPI void                elm_icon_animated_play_set(Evas_Object *obj, Eina_Bool play) EINA_ARG_NONNULL(1);
5146    /**
5147     * Get animation play mode of the icon.
5148     *
5149     * @param obj The icon object
5150     * @return The play mode of the icon object
5151     *
5152     * @see elm_icon_animated_play_get
5153     * @ingroup Icon
5154     */
5155    EAPI Eina_Bool           elm_icon_animated_play_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5156
5157    /* compatibility code to avoid API and ABI breaks */
5158    EINA_DEPRECATED EAPI extern inline void elm_icon_anim_set(Evas_Object *obj, Eina_Bool animated)
5159      {
5160         elm_icon_animated_set(obj, animated);
5161      }
5162
5163    EINA_DEPRECATED EAPI extern inline Eina_Bool elm_icon_anim_get(const Evas_Object *obj)
5164      {
5165         return elm_icon_animated_get(obj);
5166      }
5167
5168    EINA_DEPRECATED EAPI extern inline void elm_icon_anim_play_set(Evas_Object *obj, Eina_Bool play)
5169      {
5170         elm_icon_animated_play_set(obj, play);
5171      }
5172
5173    EINA_DEPRECATED EAPI extern inline Eina_Bool elm_icon_anim_play_get(const Evas_Object *obj)
5174      {
5175         return elm_icon_animated_play_get(obj);
5176      }
5177
5178    /**
5179     * @}
5180     */
5181
5182    /**
5183     * @defgroup Image Image
5184     *
5185     * @image html img/widget/image/preview-00.png
5186     * @image latex img/widget/image/preview-00.eps
5187
5188     *
5189     * An object that allows one to load an image file to it. It can be used
5190     * anywhere like any other elementary widget.
5191     *
5192     * This widget provides most of the functionality provided from @ref Bg or @ref
5193     * Icon, but with a slightly different API (use the one that fits better your
5194     * needs).
5195     *
5196     * The features not provided by those two other image widgets are:
5197     * @li allowing to get the basic @c Evas_Object with elm_image_object_get();
5198     * @li change the object orientation with elm_image_orient_set();
5199     * @li and turning the image editable with elm_image_editable_set().
5200     *
5201     * Signals that you can add callbacks for are:
5202     *
5203     * @li @c "clicked" - This is called when a user has clicked the image
5204     *
5205     * An example of usage for this API follows:
5206     * @li @ref tutorial_image
5207     */
5208
5209    /**
5210     * @addtogroup Image
5211     * @{
5212     */
5213
5214    /**
5215     * @enum _Elm_Image_Orient
5216     * @typedef Elm_Image_Orient
5217     *
5218     * Possible orientation options for elm_image_orient_set().
5219     *
5220     * @image html elm_image_orient_set.png
5221     * @image latex elm_image_orient_set.eps width=\textwidth
5222     *
5223     * @ingroup Image
5224     */
5225    typedef enum _Elm_Image_Orient
5226      {
5227         ELM_IMAGE_ORIENT_NONE, /**< no orientation change */
5228         ELM_IMAGE_ROTATE_90_CW, /**< rotate 90 degrees clockwise */
5229         ELM_IMAGE_ROTATE_180_CW, /**< rotate 180 degrees clockwise */
5230         ELM_IMAGE_ROTATE_90_CCW, /**< rotate 90 degrees counter-clockwise (i.e. 270 degrees clockwise) */
5231         ELM_IMAGE_FLIP_HORIZONTAL, /**< flip image horizontally */
5232         ELM_IMAGE_FLIP_VERTICAL, /**< flip image vertically */
5233         ELM_IMAGE_FLIP_TRANSPOSE, /**< flip the image along the y = (side - x) line*/
5234         ELM_IMAGE_FLIP_TRANSVERSE /**< flip the image along the y = x line */
5235      } Elm_Image_Orient;
5236
5237    /**
5238     * Add a new image to the parent.
5239     *
5240     * @param parent The parent object
5241     * @return The new object or NULL if it cannot be created
5242     *
5243     * @see elm_image_file_set()
5244     *
5245     * @ingroup Image
5246     */
5247    EAPI Evas_Object     *elm_image_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5248    /**
5249     * Set the file that will be used as image.
5250     *
5251     * @param obj The image object
5252     * @param file The path to file that will be used as image
5253     * @param group The group that the image belongs in edje file (if it's an
5254     * edje image)
5255     *
5256     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5257     *
5258     * @see elm_image_file_get()
5259     *
5260     * @ingroup Image
5261     */
5262    EAPI Eina_Bool        elm_image_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5263    /**
5264     * Get the file that will be used as image.
5265     *
5266     * @param obj The image object
5267     * @param file The path to file
5268     * @param group The group that the image belongs in edje file
5269     *
5270     * @see elm_image_file_set()
5271     *
5272     * @ingroup Image
5273     */
5274    EAPI void             elm_image_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
5275    /**
5276     * Set the smooth effect for an image.
5277     *
5278     * @param obj The image object
5279     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
5280     * otherwise. Default is @c EINA_TRUE.
5281     *
5282     * Set the scaling algorithm to be used when scaling the image. Smooth
5283     * scaling provides a better resulting image, but is slower.
5284     *
5285     * The smooth scaling should be disabled when making animations that change
5286     * the image size, since it will be faster. Animations that don't require
5287     * resizing of the image can keep the smooth scaling enabled (even if the
5288     * image is already scaled, since the scaled image will be cached).
5289     *
5290     * @see elm_image_smooth_get()
5291     *
5292     * @ingroup Image
5293     */
5294    EAPI void             elm_image_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
5295    /**
5296     * Get the smooth effect for an image.
5297     *
5298     * @param obj The image object
5299     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
5300     *
5301     * @see elm_image_smooth_get()
5302     *
5303     * @ingroup Image
5304     */
5305    EAPI Eina_Bool        elm_image_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5306
5307    /**
5308     * Gets the current size of the image.
5309     *
5310     * @param obj The image object.
5311     * @param w Pointer to store width, or NULL.
5312     * @param h Pointer to store height, or NULL.
5313     *
5314     * This is the real size of the image, not the size of the object.
5315     *
5316     * On error, neither w or h will be written.
5317     *
5318     * @ingroup Image
5319     */
5320    EAPI void             elm_image_object_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
5321    /**
5322     * Disable scaling of this object.
5323     *
5324     * @param obj The image object.
5325     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
5326     * otherwise. Default is @c EINA_FALSE.
5327     *
5328     * This function disables scaling of the elm_image widget through the
5329     * function elm_object_scale_set(). However, this does not affect the widget
5330     * size/resize in any way. For that effect, take a look at
5331     * elm_image_scale_set().
5332     *
5333     * @see elm_image_no_scale_get()
5334     * @see elm_image_scale_set()
5335     * @see elm_object_scale_set()
5336     *
5337     * @ingroup Image
5338     */
5339    EAPI void             elm_image_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
5340    /**
5341     * Get whether scaling is disabled on the object.
5342     *
5343     * @param obj The image object
5344     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
5345     *
5346     * @see elm_image_no_scale_set()
5347     *
5348     * @ingroup Image
5349     */
5350    EAPI Eina_Bool        elm_image_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5351    /**
5352     * Set if the object is (up/down) resizable.
5353     *
5354     * @param obj The image object
5355     * @param scale_up A bool to set if the object is resizable up. Default is
5356     * @c EINA_TRUE.
5357     * @param scale_down A bool to set if the object is resizable down. Default
5358     * is @c EINA_TRUE.
5359     *
5360     * This function limits the image resize ability. If @p scale_up is set to
5361     * @c EINA_FALSE, the object can't have its height or width resized to a value
5362     * higher than the original image size. Same is valid for @p scale_down.
5363     *
5364     * @see elm_image_scale_get()
5365     *
5366     * @ingroup Image
5367     */
5368    EAPI void             elm_image_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
5369    /**
5370     * Get if the object is (up/down) resizable.
5371     *
5372     * @param obj The image object
5373     * @param scale_up A bool to set if the object is resizable up
5374     * @param scale_down A bool to set if the object is resizable down
5375     *
5376     * @see elm_image_scale_set()
5377     *
5378     * @ingroup Image
5379     */
5380    EAPI void             elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
5381    /**
5382     * Set if the image fills the entire object area, when keeping the aspect ratio.
5383     *
5384     * @param obj The image object
5385     * @param fill_outside @c EINA_TRUE if the object is filled outside,
5386     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5387     *
5388     * When the image should keep its aspect ratio even if resized to another
5389     * aspect ratio, there are two possibilities to resize it: keep the entire
5390     * image inside the limits of height and width of the object (@p fill_outside
5391     * is @c EINA_FALSE) or let the extra width or height go outside of the object,
5392     * and the image will fill the entire object (@p fill_outside is @c EINA_TRUE).
5393     *
5394     * @note This option will have no effect if
5395     * elm_image_aspect_ratio_retained_set() is set to @c EINA_FALSE.
5396     *
5397     * @see elm_image_fill_outside_get()
5398     * @see elm_image_aspect_ratio_retained_set()
5399     *
5400     * @ingroup Image
5401     */
5402    EAPI void             elm_image_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5403    /**
5404     * Get if the object is filled outside
5405     *
5406     * @param obj The image object
5407     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5408     *
5409     * @see elm_image_fill_outside_set()
5410     *
5411     * @ingroup Image
5412     */
5413    EAPI Eina_Bool        elm_image_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5414    /**
5415     * Set the prescale size for the image
5416     *
5417     * @param obj The image object
5418     * @param size The prescale size. This value is used for both width and
5419     * height.
5420     *
5421     * This function sets a new size for pixmap representation of the given
5422     * image. It allows the image to be loaded already in the specified size,
5423     * reducing the memory usage and load time when loading a big image with load
5424     * size set to a smaller size.
5425     *
5426     * It's equivalent to the elm_bg_load_size_set() function for bg.
5427     *
5428     * @note this is just a hint, the real size of the pixmap may differ
5429     * depending on the type of image being loaded, being bigger than requested.
5430     *
5431     * @see elm_image_prescale_get()
5432     * @see elm_bg_load_size_set()
5433     *
5434     * @ingroup Image
5435     */
5436    EAPI void             elm_image_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5437    /**
5438     * Get the prescale size for the image
5439     *
5440     * @param obj The image object
5441     * @return The prescale size
5442     *
5443     * @see elm_image_prescale_set()
5444     *
5445     * @ingroup Image
5446     */
5447    EAPI int              elm_image_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5448    /**
5449     * Set the image orientation.
5450     *
5451     * @param obj The image object
5452     * @param orient The image orientation @ref Elm_Image_Orient
5453     *  Default is #ELM_IMAGE_ORIENT_NONE.
5454     *
5455     * This function allows to rotate or flip the given image.
5456     *
5457     * @see elm_image_orient_get()
5458     * @see @ref Elm_Image_Orient
5459     *
5460     * @ingroup Image
5461     */
5462    EAPI void             elm_image_orient_set(Evas_Object *obj, Elm_Image_Orient orient) EINA_ARG_NONNULL(1);
5463    /**
5464     * Get the image orientation.
5465     *
5466     * @param obj The image object
5467     * @return The image orientation @ref Elm_Image_Orient
5468     *
5469     * @see elm_image_orient_set()
5470     * @see @ref Elm_Image_Orient
5471     *
5472     * @ingroup Image
5473     */
5474    EAPI Elm_Image_Orient elm_image_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5475    /**
5476     * Make the image 'editable'.
5477     *
5478     * @param obj Image object.
5479     * @param set Turn on or off editability. Default is @c EINA_FALSE.
5480     *
5481     * This means the image is a valid drag target for drag and drop, and can be
5482     * cut or pasted too.
5483     *
5484     * @ingroup Image
5485     */
5486    EAPI void             elm_image_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
5487    /**
5488     * Check if the image 'editable'.
5489     *
5490     * @param obj Image object.
5491     * @return Editability.
5492     *
5493     * A return value of EINA_TRUE means the image is a valid drag target
5494     * for drag and drop, and can be cut or pasted too.
5495     *
5496     * @ingroup Image
5497     */
5498    EAPI Eina_Bool        elm_image_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5499    /**
5500     * Get the basic Evas_Image object from this object (widget).
5501     *
5502     * @param obj The image object to get the inlined image from
5503     * @return The inlined image object, or NULL if none exists
5504     *
5505     * This function allows one to get the underlying @c Evas_Object of type
5506     * Image from this elementary widget. It can be useful to do things like get
5507     * the pixel data, save the image to a file, etc.
5508     *
5509     * @note Be careful to not manipulate it, as it is under control of
5510     * elementary.
5511     *
5512     * @ingroup Image
5513     */
5514    EAPI Evas_Object     *elm_image_object_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5515    /**
5516     * Set whether the original aspect ratio of the image should be kept on resize.
5517     *
5518     * @param obj The image object.
5519     * @param retained @c EINA_TRUE if the image should retain the aspect,
5520     * @c EINA_FALSE otherwise.
5521     *
5522     * The original aspect ratio (width / height) of the image is usually
5523     * distorted to match the object's size. Enabling this option will retain
5524     * this original aspect, and the way that the image is fit into the object's
5525     * area depends on the option set by elm_image_fill_outside_set().
5526     *
5527     * @see elm_image_aspect_ratio_retained_get()
5528     * @see elm_image_fill_outside_set()
5529     *
5530     * @ingroup Image
5531     */
5532    EAPI void             elm_image_aspect_ratio_retained_set(Evas_Object *obj, Eina_Bool retained) EINA_ARG_NONNULL(1);
5533    /**
5534     * Get if the object retains the original aspect ratio.
5535     *
5536     * @param obj The image object.
5537     * @return @c EINA_TRUE if the object keeps the original aspect, @c EINA_FALSE
5538     * otherwise.
5539     *
5540     * @ingroup Image
5541     */
5542    EAPI Eina_Bool        elm_image_aspect_ratio_retained_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5543
5544    /**
5545     * @}
5546     */
5547
5548    /* glview */
5549    typedef void (*Elm_GLView_Func_Cb)(Evas_Object *obj);
5550
5551    /* old API compatibility */
5552    typedef Elm_GLView_Func_Cb Elm_GLView_Func;
5553
5554    typedef enum _Elm_GLView_Mode
5555      {
5556         ELM_GLVIEW_ALPHA   = 1,
5557         ELM_GLVIEW_DEPTH   = 2,
5558         ELM_GLVIEW_STENCIL = 4
5559      } Elm_GLView_Mode;
5560
5561    /**
5562     * Defines a policy for the glview resizing.
5563     *
5564     * @note Default is ELM_GLVIEW_RESIZE_POLICY_RECREATE
5565     */
5566    typedef enum _Elm_GLView_Resize_Policy
5567      {
5568         ELM_GLVIEW_RESIZE_POLICY_RECREATE = 1,      /**< Resize the internal surface along with the image */
5569         ELM_GLVIEW_RESIZE_POLICY_SCALE    = 2       /**< Only reize the internal image and not the surface */
5570      } Elm_GLView_Resize_Policy;
5571
5572    typedef enum _Elm_GLView_Render_Policy
5573      {
5574         ELM_GLVIEW_RENDER_POLICY_ON_DEMAND = 1,     /**< Render only when there is a need for redrawing */
5575         ELM_GLVIEW_RENDER_POLICY_ALWAYS    = 2      /**< Render always even when it is not visible */
5576      } Elm_GLView_Render_Policy;
5577
5578    /**
5579     * @defgroup GLView
5580     *
5581     * A simple GLView widget that allows GL rendering.
5582     *
5583     * Signals that you can add callbacks for are:
5584     *
5585     * @{
5586     */
5587
5588    /**
5589     * Add a new glview to the parent
5590     *
5591     * @param parent The parent object
5592     * @return The new object or NULL if it cannot be created
5593     *
5594     * @ingroup GLView
5595     */
5596    EAPI Evas_Object     *elm_glview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5597
5598    /**
5599     * Sets the size of the glview
5600     *
5601     * @param obj The glview object
5602     * @param width width of the glview object
5603     * @param height height of the glview object
5604     *
5605     * @ingroup GLView
5606     */
5607    EAPI void             elm_glview_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
5608
5609    /**
5610     * Gets the size of the glview.
5611     *
5612     * @param obj The glview object
5613     * @param width width of the glview object
5614     * @param height height of the glview object
5615     *
5616     * Note that this function returns the actual image size of the
5617     * glview.  This means that when the scale policy is set to
5618     * ELM_GLVIEW_RESIZE_POLICY_SCALE, it'll return the non-scaled
5619     * size.
5620     *
5621     * @ingroup GLView
5622     */
5623    EAPI void             elm_glview_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
5624
5625    /**
5626     * Gets the gl api struct for gl rendering
5627     *
5628     * @param obj The glview object
5629     * @return The api object or NULL if it cannot be created
5630     *
5631     * @ingroup GLView
5632     */
5633    EAPI Evas_GL_API     *elm_glview_gl_api_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5634
5635    /**
5636     * Set the mode of the GLView. Supports Three simple modes.
5637     *
5638     * @param obj The glview object
5639     * @param mode The mode Options OR'ed enabling Alpha, Depth, Stencil.
5640     * @return True if set properly.
5641     *
5642     * @ingroup GLView
5643     */
5644    EAPI Eina_Bool        elm_glview_mode_set(Evas_Object *obj, Elm_GLView_Mode mode) EINA_ARG_NONNULL(1);
5645
5646    /**
5647     * Set the resize policy for the glview object.
5648     *
5649     * @param obj The glview object.
5650     * @param policy The scaling policy.
5651     *
5652     * By default, the resize policy is set to
5653     * ELM_GLVIEW_RESIZE_POLICY_RECREATE.  When resize is called it
5654     * destroys the previous surface and recreates the newly specified
5655     * size. If the policy is set to ELM_GLVIEW_RESIZE_POLICY_SCALE,
5656     * however, glview only scales the image object and not the underlying
5657     * GL Surface.
5658     *
5659     * @ingroup GLView
5660     */
5661    EAPI Eina_Bool        elm_glview_resize_policy_set(Evas_Object *obj, Elm_GLView_Resize_Policy policy) EINA_ARG_NONNULL(1);
5662
5663    /**
5664     * Set the render policy for the glview object.
5665     *
5666     * @param obj The glview object.
5667     * @param policy The render policy.
5668     *
5669     * By default, the render policy is set to
5670     * ELM_GLVIEW_RENDER_POLICY_ON_DEMAND.  This policy is set such
5671     * that during the render loop, glview is only redrawn if it needs
5672     * to be redrawn. (i.e. When it is visible) If the policy is set to
5673     * ELM_GLVIEWW_RENDER_POLICY_ALWAYS, it redraws regardless of
5674     * whether it is visible/need redrawing or not.
5675     *
5676     * @ingroup GLView
5677     */
5678    EAPI Eina_Bool        elm_glview_render_policy_set(Evas_Object *obj, Elm_GLView_Render_Policy policy) EINA_ARG_NONNULL(1);
5679
5680    /**
5681     * Set the init function that runs once in the main loop.
5682     *
5683     * @param obj The glview object.
5684     * @param func The init function to be registered.
5685     *
5686     * The registered init function gets called once during the render loop.
5687     *
5688     * @ingroup GLView
5689     */
5690    EAPI void             elm_glview_init_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5691
5692    /**
5693     * Set the render function that runs in the main loop.
5694     *
5695     * @param obj The glview object.
5696     * @param func The delete function to be registered.
5697     *
5698     * The registered del function gets called when GLView object is deleted.
5699     *
5700     * @ingroup GLView
5701     */
5702    EAPI void             elm_glview_del_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5703
5704    /**
5705     * Set the resize function that gets called when resize happens.
5706     *
5707     * @param obj The glview object.
5708     * @param func The resize function to be registered.
5709     *
5710     * @ingroup GLView
5711     */
5712    EAPI void             elm_glview_resize_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5713
5714    /**
5715     * Set the render function that runs in the main loop.
5716     *
5717     * @param obj The glview object.
5718     * @param func The render function to be registered.
5719     *
5720     * @ingroup GLView
5721     */
5722    EAPI void             elm_glview_render_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func) EINA_ARG_NONNULL(1);
5723
5724    /**
5725     * Notifies that there has been changes in the GLView.
5726     *
5727     * @param obj The glview object.
5728     *
5729     * @ingroup GLView
5730     */
5731    EAPI void             elm_glview_changed_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
5732
5733    /**
5734     * @}
5735     */
5736
5737    /* box */
5738    /**
5739     * @defgroup Box Box
5740     *
5741     * @image html img/widget/box/preview-00.png
5742     * @image latex img/widget/box/preview-00.eps width=\textwidth
5743     *
5744     * @image html img/box.png
5745     * @image latex img/box.eps width=\textwidth
5746     *
5747     * A box arranges objects in a linear fashion, governed by a layout function
5748     * that defines the details of this arrangement.
5749     *
5750     * By default, the box will use an internal function to set the layout to
5751     * a single row, either vertical or horizontal. This layout is affected
5752     * by a number of parameters, such as the homogeneous flag set by
5753     * elm_box_homogeneous_set(), the values given by elm_box_padding_set() and
5754     * elm_box_align_set() and the hints set to each object in the box.
5755     *
5756     * For this default layout, it's possible to change the orientation with
5757     * elm_box_horizontal_set(). The box will start in the vertical orientation,
5758     * placing its elements ordered from top to bottom. When horizontal is set,
5759     * the order will go from left to right. If the box is set to be
5760     * homogeneous, every object in it will be assigned the same space, that
5761     * of the largest object. Padding can be used to set some spacing between
5762     * the cell given to each object. The alignment of the box, set with
5763     * elm_box_align_set(), determines how the bounding box of all the elements
5764     * will be placed within the space given to the box widget itself.
5765     *
5766     * The size hints of each object also affect how they are placed and sized
5767     * within the box. evas_object_size_hint_min_set() will give the minimum
5768     * size the object can have, and the box will use it as the basis for all
5769     * latter calculations. Elementary widgets set their own minimum size as
5770     * needed, so there's rarely any need to use it manually.
5771     *
5772     * evas_object_size_hint_weight_set(), when not in homogeneous mode, is
5773     * used to tell whether the object will be allocated the minimum size it
5774     * needs or if the space given to it should be expanded. It's important
5775     * to realize that expanding the size given to the object is not the same
5776     * thing as resizing the object. It could very well end being a small
5777     * widget floating in a much larger empty space. If not set, the weight
5778     * for objects will normally be 0.0 for both axis, meaning the widget will
5779     * not be expanded. To take as much space possible, set the weight to
5780     * EVAS_HINT_EXPAND (defined to 1.0) for the desired axis to expand.
5781     *
5782     * Besides how much space each object is allocated, it's possible to control
5783     * how the widget will be placed within that space using
5784     * evas_object_size_hint_align_set(). By default, this value will be 0.5
5785     * for both axis, meaning the object will be centered, but any value from
5786     * 0.0 (left or top, for the @c x and @c y axis, respectively) to 1.0
5787     * (right or bottom) can be used. The special value EVAS_HINT_FILL, which
5788     * is -1.0, means the object will be resized to fill the entire space it
5789     * was allocated.
5790     *
5791     * In addition, customized functions to define the layout can be set, which
5792     * allow the application developer to organize the objects within the box
5793     * in any number of ways.
5794     *
5795     * The special elm_box_layout_transition() function can be used
5796     * to switch from one layout to another, animating the motion of the
5797     * children of the box.
5798     *
5799     * @note Objects should not be added to box objects using _add() calls.
5800     *
5801     * Some examples on how to use boxes follow:
5802     * @li @ref box_example_01
5803     * @li @ref box_example_02
5804     *
5805     * @{
5806     */
5807    /**
5808     * @typedef Elm_Box_Transition
5809     *
5810     * Opaque handler containing the parameters to perform an animated
5811     * transition of the layout the box uses.
5812     *
5813     * @see elm_box_transition_new()
5814     * @see elm_box_layout_set()
5815     * @see elm_box_layout_transition()
5816     */
5817    typedef struct _Elm_Box_Transition Elm_Box_Transition;
5818
5819    /**
5820     * Add a new box to the parent
5821     *
5822     * By default, the box will be in vertical mode and non-homogeneous.
5823     *
5824     * @param parent The parent object
5825     * @return The new object or NULL if it cannot be created
5826     */
5827    EAPI Evas_Object        *elm_box_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5828    /**
5829     * Set the horizontal orientation
5830     *
5831     * By default, box object arranges their contents vertically from top to
5832     * bottom.
5833     * By calling this function with @p horizontal as EINA_TRUE, the box will
5834     * become horizontal, arranging contents from left to right.
5835     *
5836     * @note This flag is ignored if a custom layout function is set.
5837     *
5838     * @param obj The box object
5839     * @param horizontal The horizontal flag (EINA_TRUE = horizontal,
5840     * EINA_FALSE = vertical)
5841     */
5842    EAPI void                elm_box_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
5843    /**
5844     * Get the horizontal orientation
5845     *
5846     * @param obj The box object
5847     * @return EINA_TRUE if the box is set to horizontal mode, EINA_FALSE otherwise
5848     */
5849    EAPI Eina_Bool           elm_box_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5850    /**
5851     * Set the box to arrange its children homogeneously
5852     *
5853     * If enabled, homogeneous layout makes all items the same size, according
5854     * to the size of the largest of its children.
5855     *
5856     * @note This flag is ignored if a custom layout function is set.
5857     *
5858     * @param obj The box object
5859     * @param homogeneous The homogeneous flag
5860     */
5861    EAPI void                elm_box_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
5862    /**
5863     * Get whether the box is using homogeneous mode or not
5864     *
5865     * @param obj The box object
5866     * @return EINA_TRUE if it's homogeneous, EINA_FALSE otherwise
5867     */
5868    EAPI Eina_Bool           elm_box_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5869    EINA_DEPRECATED EAPI void elm_box_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
5870    EINA_DEPRECATED EAPI Eina_Bool elm_box_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5871    /**
5872     * Add an object to the beginning of the pack list
5873     *
5874     * Pack @p subobj into the box @p obj, placing it first in the list of
5875     * children objects. The actual position the object will get on screen
5876     * depends on the layout used. If no custom layout is set, it will be at
5877     * the top or left, depending if the box is vertical or horizontal,
5878     * respectively.
5879     *
5880     * @param obj The box object
5881     * @param subobj The object to add to the box
5882     *
5883     * @see elm_box_pack_end()
5884     * @see elm_box_pack_before()
5885     * @see elm_box_pack_after()
5886     * @see elm_box_unpack()
5887     * @see elm_box_unpack_all()
5888     * @see elm_box_clear()
5889     */
5890    EAPI void                elm_box_pack_start(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5891    /**
5892     * Add an object at the end of the pack list
5893     *
5894     * Pack @p subobj into the box @p obj, placing it last in the list of
5895     * children objects. The actual position the object will get on screen
5896     * depends on the layout used. If no custom layout is set, it will be at
5897     * the bottom or right, depending if the box is vertical or horizontal,
5898     * respectively.
5899     *
5900     * @param obj The box object
5901     * @param subobj The object to add to the box
5902     *
5903     * @see elm_box_pack_start()
5904     * @see elm_box_pack_before()
5905     * @see elm_box_pack_after()
5906     * @see elm_box_unpack()
5907     * @see elm_box_unpack_all()
5908     * @see elm_box_clear()
5909     */
5910    EAPI void                elm_box_pack_end(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5911    /**
5912     * Adds an object to the box before the indicated object
5913     *
5914     * This will add the @p subobj to the box indicated before the object
5915     * indicated with @p before. If @p before is not already in the box, results
5916     * are undefined. Before means either to the left of the indicated object or
5917     * above it depending on orientation.
5918     *
5919     * @param obj The box object
5920     * @param subobj The object to add to the box
5921     * @param before The object before which to add it
5922     *
5923     * @see elm_box_pack_start()
5924     * @see elm_box_pack_end()
5925     * @see elm_box_pack_after()
5926     * @see elm_box_unpack()
5927     * @see elm_box_unpack_all()
5928     * @see elm_box_clear()
5929     */
5930    EAPI void                elm_box_pack_before(Evas_Object *obj, Evas_Object *subobj, Evas_Object *before) EINA_ARG_NONNULL(1);
5931    /**
5932     * Adds an object to the box after the indicated object
5933     *
5934     * This will add the @p subobj to the box indicated after the object
5935     * indicated with @p after. If @p after is not already in the box, results
5936     * are undefined. After means either to the right of the indicated object or
5937     * below it depending on orientation.
5938     *
5939     * @param obj The box object
5940     * @param subobj The object to add to the box
5941     * @param after The object after which to add it
5942     *
5943     * @see elm_box_pack_start()
5944     * @see elm_box_pack_end()
5945     * @see elm_box_pack_before()
5946     * @see elm_box_unpack()
5947     * @see elm_box_unpack_all()
5948     * @see elm_box_clear()
5949     */
5950    EAPI void                elm_box_pack_after(Evas_Object *obj, Evas_Object *subobj, Evas_Object *after) EINA_ARG_NONNULL(1);
5951    /**
5952     * Clear the box of all children
5953     *
5954     * Remove all the elements contained by the box, deleting the respective
5955     * objects.
5956     *
5957     * @param obj The box object
5958     *
5959     * @see elm_box_unpack()
5960     * @see elm_box_unpack_all()
5961     */
5962    EAPI void                elm_box_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
5963    /**
5964     * Unpack a box item
5965     *
5966     * Remove the object given by @p subobj from the box @p obj without
5967     * deleting it.
5968     *
5969     * @param obj The box object
5970     *
5971     * @see elm_box_unpack_all()
5972     * @see elm_box_clear()
5973     */
5974    EAPI void                elm_box_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5975    /**
5976     * Remove all items from the box, without deleting them
5977     *
5978     * Clear the box from all children, but don't delete the respective objects.
5979     * If no other references of the box children exist, the objects will never
5980     * be deleted, and thus the application will leak the memory. Make sure
5981     * when using this function that you hold a reference to all the objects
5982     * in the box @p obj.
5983     *
5984     * @param obj The box object
5985     *
5986     * @see elm_box_clear()
5987     * @see elm_box_unpack()
5988     */
5989    EAPI void                elm_box_unpack_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
5990    /**
5991     * Retrieve a list of the objects packed into the box
5992     *
5993     * Returns a new @c Eina_List with a pointer to @c Evas_Object in its nodes.
5994     * The order of the list corresponds to the packing order the box uses.
5995     *
5996     * You must free this list with eina_list_free() once you are done with it.
5997     *
5998     * @param obj The box object
5999     */
6000    EAPI const Eina_List    *elm_box_children_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6001    /**
6002     * Set the space (padding) between the box's elements.
6003     *
6004     * Extra space in pixels that will be added between a box child and its
6005     * neighbors after its containing cell has been calculated. This padding
6006     * is set for all elements in the box, besides any possible padding that
6007     * individual elements may have through their size hints.
6008     *
6009     * @param obj The box object
6010     * @param horizontal The horizontal space between elements
6011     * @param vertical The vertical space between elements
6012     */
6013    EAPI void                elm_box_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
6014    /**
6015     * Get the space (padding) between the box's elements.
6016     *
6017     * @param obj The box object
6018     * @param horizontal The horizontal space between elements
6019     * @param vertical The vertical space between elements
6020     *
6021     * @see elm_box_padding_set()
6022     */
6023    EAPI void                elm_box_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
6024    /**
6025     * Set the alignment of the whole bouding box of contents.
6026     *
6027     * Sets how the bounding box containing all the elements of the box, after
6028     * their sizes and position has been calculated, will be aligned within
6029     * the space given for the whole box widget.
6030     *
6031     * @param obj The box object
6032     * @param horizontal The horizontal alignment of elements
6033     * @param vertical The vertical alignment of elements
6034     */
6035    EAPI void                elm_box_align_set(Evas_Object *obj, double horizontal, double vertical) EINA_ARG_NONNULL(1);
6036    /**
6037     * Get the alignment of the whole bouding box of contents.
6038     *
6039     * @param obj The box object
6040     * @param horizontal The horizontal alignment of elements
6041     * @param vertical The vertical alignment of elements
6042     *
6043     * @see elm_box_align_set()
6044     */
6045    EAPI void                elm_box_align_get(const Evas_Object *obj, double *horizontal, double *vertical) EINA_ARG_NONNULL(1);
6046
6047    /**
6048     * Force the box to recalculate its children packing.
6049     *
6050     * If any children was added or removed, box will not calculate the
6051     * values immediately rather leaving it to the next main loop
6052     * iteration. While this is great as it would save lots of
6053     * recalculation, whenever you need to get the position of a just
6054     * added item you must force recalculate before doing so.
6055     *
6056     * @param obj The box object.
6057     */
6058    EAPI void                 elm_box_recalculate(Evas_Object *obj);
6059
6060    /**
6061     * Set the layout defining function to be used by the box
6062     *
6063     * Whenever anything changes that requires the box in @p obj to recalculate
6064     * the size and position of its elements, the function @p cb will be called
6065     * to determine what the layout of the children will be.
6066     *
6067     * Once a custom function is set, everything about the children layout
6068     * is defined by it. The flags set by elm_box_horizontal_set() and
6069     * elm_box_homogeneous_set() no longer have any meaning, and the values
6070     * given by elm_box_padding_set() and elm_box_align_set() are up to this
6071     * layout function to decide if they are used and how. These last two
6072     * will be found in the @c priv parameter, of type @c Evas_Object_Box_Data,
6073     * passed to @p cb. The @c Evas_Object the function receives is not the
6074     * Elementary widget, but the internal Evas Box it uses, so none of the
6075     * functions described here can be used on it.
6076     *
6077     * Any of the layout functions in @c Evas can be used here, as well as the
6078     * special elm_box_layout_transition().
6079     *
6080     * The final @p data argument received by @p cb is the same @p data passed
6081     * here, and the @p free_data function will be called to free it
6082     * whenever the box is destroyed or another layout function is set.
6083     *
6084     * Setting @p cb to NULL will revert back to the default layout function.
6085     *
6086     * @param obj The box object
6087     * @param cb The callback function used for layout
6088     * @param data Data that will be passed to layout function
6089     * @param free_data Function called to free @p data
6090     *
6091     * @see elm_box_layout_transition()
6092     */
6093    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);
6094    /**
6095     * Special layout function that animates the transition from one layout to another
6096     *
6097     * Normally, when switching the layout function for a box, this will be
6098     * reflected immediately on screen on the next render, but it's also
6099     * possible to do this through an animated transition.
6100     *
6101     * This is done by creating an ::Elm_Box_Transition and setting the box
6102     * layout to this function.
6103     *
6104     * For example:
6105     * @code
6106     * Elm_Box_Transition *t = elm_box_transition_new(1.0,
6107     *                            evas_object_box_layout_vertical, // start
6108     *                            NULL, // data for initial layout
6109     *                            NULL, // free function for initial data
6110     *                            evas_object_box_layout_horizontal, // end
6111     *                            NULL, // data for final layout
6112     *                            NULL, // free function for final data
6113     *                            anim_end, // will be called when animation ends
6114     *                            NULL); // data for anim_end function\
6115     * elm_box_layout_set(box, elm_box_layout_transition, t,
6116     *                    elm_box_transition_free);
6117     * @endcode
6118     *
6119     * @note This function can only be used with elm_box_layout_set(). Calling
6120     * it directly will not have the expected results.
6121     *
6122     * @see elm_box_transition_new
6123     * @see elm_box_transition_free
6124     * @see elm_box_layout_set
6125     */
6126    EAPI void                elm_box_layout_transition(Evas_Object *obj, Evas_Object_Box_Data *priv, void *data);
6127    /**
6128     * Create a new ::Elm_Box_Transition to animate the switch of layouts
6129     *
6130     * If you want to animate the change from one layout to another, you need
6131     * to set the layout function of the box to elm_box_layout_transition(),
6132     * passing as user data to it an instance of ::Elm_Box_Transition with the
6133     * necessary information to perform this animation. The free function to
6134     * set for the layout is elm_box_transition_free().
6135     *
6136     * The parameters to create an ::Elm_Box_Transition sum up to how long
6137     * will it be, in seconds, a layout function to describe the initial point,
6138     * another for the final position of the children and one function to be
6139     * called when the whole animation ends. This last function is useful to
6140     * set the definitive layout for the box, usually the same as the end
6141     * layout for the animation, but could be used to start another transition.
6142     *
6143     * @param start_layout The layout function that will be used to start the animation
6144     * @param start_layout_data The data to be passed the @p start_layout function
6145     * @param start_layout_free_data Function to free @p start_layout_data
6146     * @param end_layout The layout function that will be used to end the animation
6147     * @param end_layout_free_data The data to be passed the @p end_layout function
6148     * @param end_layout_free_data Function to free @p end_layout_data
6149     * @param transition_end_cb Callback function called when animation ends
6150     * @param transition_end_data Data to be passed to @p transition_end_cb
6151     * @return An instance of ::Elm_Box_Transition
6152     *
6153     * @see elm_box_transition_new
6154     * @see elm_box_layout_transition
6155     */
6156    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);
6157    /**
6158     * Free a Elm_Box_Transition instance created with elm_box_transition_new().
6159     *
6160     * This function is mostly useful as the @c free_data parameter in
6161     * elm_box_layout_set() when elm_box_layout_transition().
6162     *
6163     * @param data The Elm_Box_Transition instance to be freed.
6164     *
6165     * @see elm_box_transition_new
6166     * @see elm_box_layout_transition
6167     */
6168    EAPI void                elm_box_transition_free(void *data);
6169    /**
6170     * @}
6171     */
6172
6173    /* button */
6174    /**
6175     * @defgroup Button Button
6176     *
6177     * @image html img/widget/button/preview-00.png
6178     * @image latex img/widget/button/preview-00.eps
6179     * @image html img/widget/button/preview-01.png
6180     * @image latex img/widget/button/preview-01.eps
6181     * @image html img/widget/button/preview-02.png
6182     * @image latex img/widget/button/preview-02.eps
6183     *
6184     * This is a push-button. Press it and run some function. It can contain
6185     * a simple label and icon object and it also has an autorepeat feature.
6186     *
6187     * This widgets emits the following signals:
6188     * @li "clicked": the user clicked the button (press/release).
6189     * @li "repeated": the user pressed the button without releasing it.
6190     * @li "pressed": button was pressed.
6191     * @li "unpressed": button was released after being pressed.
6192     * In all three cases, the @c event parameter of the callback will be
6193     * @c NULL.
6194     *
6195     * Also, defined in the default theme, the button has the following styles
6196     * available:
6197     * @li default: a normal button.
6198     * @li anchor: Like default, but the button fades away when the mouse is not
6199     * over it, leaving only the text or icon.
6200     * @li hoversel_vertical: Internally used by @ref Hoversel to give a
6201     * continuous look across its options.
6202     * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
6203     *
6204     * Default contents parts of the button widget that you can use for are:
6205     * @li "elm.swallow.content" - A icon of the button
6206     *
6207     * Default text parts of the button widget that you can use for are:
6208     * @li "elm.text" - Label of the button
6209     *
6210     * Follow through a complete example @ref button_example_01 "here".
6211     * @{
6212     */
6213
6214    typedef enum
6215      {
6216         UIControlStateDefault,
6217         UIControlStateHighlighted,
6218         UIControlStateDisabled,
6219         UIControlStateFocused,
6220         UIControlStateReserved
6221      } UIControlState;
6222
6223    /**
6224     * Add a new button to the parent's canvas
6225     *
6226     * @param parent The parent object
6227     * @return The new object or NULL if it cannot be created
6228     */
6229    EAPI Evas_Object *elm_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6230    /**
6231     * Set the label used in the button
6232     *
6233     * The passed @p label can be NULL to clean any existing text in it and
6234     * leave the button as an icon only object.
6235     *
6236     * @param obj The button object
6237     * @param label The text will be written on the button
6238     * @deprecated use elm_object_text_set() instead.
6239     */
6240    EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6241    /**
6242     * Get the label set for the button
6243     *
6244     * The string returned is an internal pointer and should not be freed or
6245     * altered. It will also become invalid when the button is destroyed.
6246     * The string returned, if not NULL, is a stringshare, so if you need to
6247     * keep it around even after the button is destroyed, you can use
6248     * eina_stringshare_ref().
6249     *
6250     * @param obj The button object
6251     * @return The text set to the label, or NULL if nothing is set
6252     * @deprecated use elm_object_text_set() instead.
6253     */
6254    EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6255    /**
6256     * Set the label for each state of button
6257     *
6258     * The passed @p label can be NULL to clean any existing text in it and
6259     * leave the button as an icon only object for the state.
6260     *
6261     * @param obj The button object
6262     * @param label The text will be written on the button
6263     * @param state The state of button
6264     *
6265     * @ingroup Button
6266     */
6267    EINA_DEPRECATED EAPI void         elm_button_label_set_for_state(Evas_Object *obj, const char *label, UIControlState state) EINA_ARG_NONNULL(1);
6268    /**
6269     * Get the label of button for each state
6270     *
6271     * The string returned is an internal pointer and should not be freed or
6272     * altered. It will also become invalid when the button is destroyed.
6273     * The string returned, if not NULL, is a stringshare, so if you need to
6274     * keep it around even after the button is destroyed, you can use
6275     * eina_stringshare_ref().
6276     *
6277     * @param obj The button object
6278     * @param state The state of button
6279     * @return The title of button for state
6280     *
6281     * @ingroup Button
6282     */
6283    EINA_DEPRECATED EAPI const char  *elm_button_label_get_for_state(const Evas_Object *obj, UIControlState state) EINA_ARG_NONNULL(1);
6284    /**
6285     * Set the icon used for the button
6286     *
6287     * Setting a new icon will delete any other that was previously set, making
6288     * any reference to them invalid. If you need to maintain the previous
6289     * object alive, unset it first with elm_button_icon_unset().
6290     *
6291     * @param obj The button object
6292     * @param icon The icon object for the button
6293     * @deprecated use elm_object_content_set() instead.
6294     */
6295    EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6296    /**
6297     * Get the icon used for the button
6298     *
6299     * Return the icon object which is set for this widget. If the button is
6300     * destroyed or another icon is set, the returned object will be deleted
6301     * and any reference to it will be invalid.
6302     *
6303     * @param obj The button object
6304     * @return The icon object that is being used
6305     *
6306     * @deprecated use elm_button_icon_unset() instead
6307     */
6308    EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6309    /**
6310     * Remove the icon set without deleting it and return the object
6311     *
6312     * This function drops the reference the button holds of the icon object
6313     * and returns this last object. It is used in case you want to remove any
6314     * icon, or set another one, without deleting the actual object. The button
6315     * will be left without an icon set.
6316     *
6317     * @param obj The button object
6318     * @return The icon object that was being used
6319     * @deprecated use elm_object_content_unset() instead.
6320     */
6321    EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6322    /**
6323     * Turn on/off the autorepeat event generated when the button is kept pressed
6324     *
6325     * When off, no autorepeat is performed and buttons emit a normal @c clicked
6326     * signal when they are clicked.
6327     *
6328     * When on, keeping a button pressed will continuously emit a @c repeated
6329     * signal until the button is released. The time it takes until it starts
6330     * emitting the signal is given by
6331     * elm_button_autorepeat_initial_timeout_set(), and the time between each
6332     * new emission by elm_button_autorepeat_gap_timeout_set().
6333     *
6334     * @param obj The button object
6335     * @param on  A bool to turn on/off the event
6336     */
6337    EAPI void         elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on) EINA_ARG_NONNULL(1);
6338    /**
6339     * Get whether the autorepeat feature is enabled
6340     *
6341     * @param obj The button object
6342     * @return EINA_TRUE if autorepeat is on, EINA_FALSE otherwise
6343     *
6344     * @see elm_button_autorepeat_set()
6345     */
6346    EAPI Eina_Bool    elm_button_autorepeat_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6347    /**
6348     * Set the initial timeout before the autorepeat event is generated
6349     *
6350     * Sets the timeout, in seconds, since the button is pressed until the
6351     * first @c repeated signal is emitted. If @p t is 0.0 or less, there
6352     * won't be any delay and the even will be fired the moment the button is
6353     * pressed.
6354     *
6355     * @param obj The button object
6356     * @param t   Timeout in seconds
6357     *
6358     * @see elm_button_autorepeat_set()
6359     * @see elm_button_autorepeat_gap_timeout_set()
6360     */
6361    EAPI void         elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6362    /**
6363     * Get the initial timeout before the autorepeat event is generated
6364     *
6365     * @param obj The button object
6366     * @return Timeout in seconds
6367     *
6368     * @see elm_button_autorepeat_initial_timeout_set()
6369     */
6370    EAPI double       elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6371    /**
6372     * Set the interval between each generated autorepeat event
6373     *
6374     * After the first @c repeated event is fired, all subsequent ones will
6375     * follow after a delay of @p t seconds for each.
6376     *
6377     * @param obj The button object
6378     * @param t   Interval in seconds
6379     *
6380     * @see elm_button_autorepeat_initial_timeout_set()
6381     */
6382    EAPI void         elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6383    /**
6384     * Get the interval between each generated autorepeat event
6385     *
6386     * @param obj The button object
6387     * @return Interval in seconds
6388     */
6389    EAPI double       elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6390    /**
6391     * @}
6392     */
6393
6394    /**
6395     * @defgroup File_Selector_Button File Selector Button
6396     *
6397     * @image html img/widget/fileselector_button/preview-00.png
6398     * @image latex img/widget/fileselector_button/preview-00.eps
6399     * @image html img/widget/fileselector_button/preview-01.png
6400     * @image latex img/widget/fileselector_button/preview-01.eps
6401     * @image html img/widget/fileselector_button/preview-02.png
6402     * @image latex img/widget/fileselector_button/preview-02.eps
6403     *
6404     * This is a button that, when clicked, creates an Elementary
6405     * window (or inner window) <b> with a @ref Fileselector "file
6406     * selector widget" within</b>. When a file is chosen, the (inner)
6407     * window is closed and the button emits a signal having the
6408     * selected file as it's @c event_info.
6409     *
6410     * This widget encapsulates operations on its internal file
6411     * selector on its own API. There is less control over its file
6412     * selector than that one would have instatiating one directly.
6413     *
6414     * The following styles are available for this button:
6415     * @li @c "default"
6416     * @li @c "anchor"
6417     * @li @c "hoversel_vertical"
6418     * @li @c "hoversel_vertical_entry"
6419     *
6420     * Smart callbacks one can register to:
6421     * - @c "file,chosen" - the user has selected a path, whose string
6422     *   pointer comes as the @c event_info data (a stringshared
6423     *   string)
6424     *
6425     * Here is an example on its usage:
6426     * @li @ref fileselector_button_example
6427     *
6428     * @see @ref File_Selector_Entry for a similar widget.
6429     * @{
6430     */
6431
6432    /**
6433     * Add a new file selector button widget to the given parent
6434     * Elementary (container) object
6435     *
6436     * @param parent The parent object
6437     * @return a new file selector button widget handle or @c NULL, on
6438     * errors
6439     */
6440    EAPI Evas_Object *elm_fileselector_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6441
6442    /**
6443     * Set the label for a given file selector button widget
6444     *
6445     * @param obj The file selector button widget
6446     * @param label The text label to be displayed on @p obj
6447     *
6448     * @deprecated use elm_object_text_set() instead.
6449     */
6450    EINA_DEPRECATED EAPI void         elm_fileselector_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6451
6452    /**
6453     * Get the label set for a given file selector button widget
6454     *
6455     * @param obj The file selector button widget
6456     * @return The button label
6457     *
6458     * @deprecated use elm_object_text_set() instead.
6459     */
6460    EINA_DEPRECATED EAPI const char  *elm_fileselector_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6461
6462    /**
6463     * Set the icon on a given file selector button widget
6464     *
6465     * @param obj The file selector button widget
6466     * @param icon The icon object for the button
6467     *
6468     * Once the icon object is set, a previously set one will be
6469     * deleted. If you want to keep the latter, use the
6470     * elm_fileselector_button_icon_unset() function.
6471     *
6472     * @see elm_fileselector_button_icon_get()
6473     */
6474    EAPI void         elm_fileselector_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6475
6476    /**
6477     * Get the icon set for a given file selector button widget
6478     *
6479     * @param obj The file selector button widget
6480     * @return The icon object currently set on @p obj or @c NULL, if
6481     * none is
6482     *
6483     * @see elm_fileselector_button_icon_set()
6484     */
6485    EAPI Evas_Object *elm_fileselector_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6486
6487    /**
6488     * Unset the icon used in a given file selector button widget
6489     *
6490     * @param obj The file selector button widget
6491     * @return The icon object that was being used on @p obj or @c
6492     * NULL, on errors
6493     *
6494     * Unparent and return the icon object which was set for this
6495     * widget.
6496     *
6497     * @see elm_fileselector_button_icon_set()
6498     */
6499    EAPI Evas_Object *elm_fileselector_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6500
6501    /**
6502     * Set the title for a given file selector button widget's window
6503     *
6504     * @param obj The file selector button widget
6505     * @param title The title string
6506     *
6507     * This will change the window's title, when the file selector pops
6508     * out after a click on the button. Those windows have the default
6509     * (unlocalized) value of @c "Select a file" as titles.
6510     *
6511     * @note It will only take any effect if the file selector
6512     * button widget is @b not under "inwin mode".
6513     *
6514     * @see elm_fileselector_button_window_title_get()
6515     */
6516    EAPI void         elm_fileselector_button_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6517
6518    /**
6519     * Get the title set for a given file selector button widget's
6520     * window
6521     *
6522     * @param obj The file selector button widget
6523     * @return Title of the file selector button's window
6524     *
6525     * @see elm_fileselector_button_window_title_get() for more details
6526     */
6527    EAPI const char  *elm_fileselector_button_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6528
6529    /**
6530     * Set the size of a given file selector button widget's window,
6531     * holding the file selector itself.
6532     *
6533     * @param obj The file selector button widget
6534     * @param width The window's width
6535     * @param height The window's height
6536     *
6537     * @note it will only take any effect if the file selector button
6538     * widget is @b not under "inwin mode". The default size for the
6539     * window (when applicable) is 400x400 pixels.
6540     *
6541     * @see elm_fileselector_button_window_size_get()
6542     */
6543    EAPI void         elm_fileselector_button_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6544
6545    /**
6546     * Get the size of a given file selector button widget's window,
6547     * holding the file selector itself.
6548     *
6549     * @param obj The file selector button widget
6550     * @param width Pointer into which to store the width value
6551     * @param height Pointer into which to store the height value
6552     *
6553     * @note Use @c NULL pointers on the size values you're not
6554     * interested in: they'll be ignored by the function.
6555     *
6556     * @see elm_fileselector_button_window_size_set(), for more details
6557     */
6558    EAPI void         elm_fileselector_button_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6559
6560    /**
6561     * Set the initial file system path for a given file selector
6562     * button widget
6563     *
6564     * @param obj The file selector button widget
6565     * @param path The path string
6566     *
6567     * It must be a <b>directory</b> path, which will have the contents
6568     * displayed initially in the file selector's view, when invoked
6569     * from @p obj. The default initial path is the @c "HOME"
6570     * environment variable's value.
6571     *
6572     * @see elm_fileselector_button_path_get()
6573     */
6574    EAPI void         elm_fileselector_button_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6575
6576    /**
6577     * Get the initial file system path set for a given file selector
6578     * button widget
6579     *
6580     * @param obj The file selector button widget
6581     * @return path The path string
6582     *
6583     * @see elm_fileselector_button_path_set() for more details
6584     */
6585    EAPI const char  *elm_fileselector_button_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6586
6587    /**
6588     * Enable/disable a tree view in the given file selector button
6589     * widget's internal file selector
6590     *
6591     * @param obj The file selector button widget
6592     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6593     * disable
6594     *
6595     * This has the same effect as elm_fileselector_expandable_set(),
6596     * but now applied to a file selector button's internal file
6597     * selector.
6598     *
6599     * @note There's no way to put a file selector button's internal
6600     * file selector in "grid mode", as one may do with "pure" file
6601     * selectors.
6602     *
6603     * @see elm_fileselector_expandable_get()
6604     */
6605    EAPI void         elm_fileselector_button_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6606
6607    /**
6608     * Get whether tree view is enabled for the given file selector
6609     * button widget's internal file selector
6610     *
6611     * @param obj The file selector button widget
6612     * @return @c EINA_TRUE if @p obj widget's internal file selector
6613     * is in tree view, @c EINA_FALSE otherwise (and or errors)
6614     *
6615     * @see elm_fileselector_expandable_set() for more details
6616     */
6617    EAPI Eina_Bool    elm_fileselector_button_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6618
6619    /**
6620     * Set whether a given file selector button widget's internal file
6621     * selector is to display folders only or the directory contents,
6622     * as well.
6623     *
6624     * @param obj The file selector button widget
6625     * @param only @c EINA_TRUE to make @p obj widget's internal file
6626     * selector only display directories, @c EINA_FALSE to make files
6627     * to be displayed in it too
6628     *
6629     * This has the same effect as elm_fileselector_folder_only_set(),
6630     * but now applied to a file selector button's internal file
6631     * selector.
6632     *
6633     * @see elm_fileselector_folder_only_get()
6634     */
6635    EAPI void         elm_fileselector_button_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6636
6637    /**
6638     * Get whether a given file selector button widget's internal file
6639     * selector is displaying folders only or the directory contents,
6640     * as well.
6641     *
6642     * @param obj The file selector button widget
6643     * @return @c EINA_TRUE if @p obj widget's internal file
6644     * selector is only displaying directories, @c EINA_FALSE if files
6645     * are being displayed in it too (and on errors)
6646     *
6647     * @see elm_fileselector_button_folder_only_set() for more details
6648     */
6649    EAPI Eina_Bool    elm_fileselector_button_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6650
6651    /**
6652     * Enable/disable the file name entry box where the user can type
6653     * in a name for a file, in a given file selector button widget's
6654     * internal file selector.
6655     *
6656     * @param obj The file selector button widget
6657     * @param is_save @c EINA_TRUE to make @p obj widget's internal
6658     * file selector a "saving dialog", @c EINA_FALSE otherwise
6659     *
6660     * This has the same effect as elm_fileselector_is_save_set(),
6661     * but now applied to a file selector button's internal file
6662     * selector.
6663     *
6664     * @see elm_fileselector_is_save_get()
6665     */
6666    EAPI void         elm_fileselector_button_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6667
6668    /**
6669     * Get whether the given file selector button widget's internal
6670     * file selector is in "saving dialog" mode
6671     *
6672     * @param obj The file selector button widget
6673     * @return @c EINA_TRUE, if @p obj widget's internal file selector
6674     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
6675     * errors)
6676     *
6677     * @see elm_fileselector_button_is_save_set() for more details
6678     */
6679    EAPI Eina_Bool    elm_fileselector_button_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6680
6681    /**
6682     * Set whether a given file selector button widget's internal file
6683     * selector will raise an Elementary "inner window", instead of a
6684     * dedicated Elementary window. By default, it won't.
6685     *
6686     * @param obj The file selector button widget
6687     * @param value @c EINA_TRUE to make it use an inner window, @c
6688     * EINA_TRUE to make it use a dedicated window
6689     *
6690     * @see elm_win_inwin_add() for more information on inner windows
6691     * @see elm_fileselector_button_inwin_mode_get()
6692     */
6693    EAPI void         elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6694
6695    /**
6696     * Get whether a given file selector button widget's internal file
6697     * selector will raise an Elementary "inner window", instead of a
6698     * dedicated Elementary window.
6699     *
6700     * @param obj The file selector button widget
6701     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
6702     * if it will use a dedicated window
6703     *
6704     * @see elm_fileselector_button_inwin_mode_set() for more details
6705     */
6706    EAPI Eina_Bool    elm_fileselector_button_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6707
6708    /**
6709     * @}
6710     */
6711
6712     /**
6713     * @defgroup File_Selector_Entry File Selector Entry
6714     *
6715     * @image html img/widget/fileselector_entry/preview-00.png
6716     * @image latex img/widget/fileselector_entry/preview-00.eps
6717     *
6718     * This is an entry made to be filled with or display a <b>file
6719     * system path string</b>. Besides the entry itself, the widget has
6720     * a @ref File_Selector_Button "file selector button" on its side,
6721     * which will raise an internal @ref Fileselector "file selector widget",
6722     * when clicked, for path selection aided by file system
6723     * navigation.
6724     *
6725     * This file selector may appear in an Elementary window or in an
6726     * inner window. When a file is chosen from it, the (inner) window
6727     * is closed and the selected file's path string is exposed both as
6728     * an smart event and as the new text on the entry.
6729     *
6730     * This widget encapsulates operations on its internal file
6731     * selector on its own API. There is less control over its file
6732     * selector than that one would have instatiating one directly.
6733     *
6734     * Smart callbacks one can register to:
6735     * - @c "changed" - The text within the entry was changed
6736     * - @c "activated" - The entry has had editing finished and
6737     *   changes are to be "committed"
6738     * - @c "press" - The entry has been clicked
6739     * - @c "longpressed" - The entry has been clicked (and held) for a
6740     *   couple seconds
6741     * - @c "clicked" - The entry has been clicked
6742     * - @c "clicked,double" - The entry has been double clicked
6743     * - @c "focused" - The entry has received focus
6744     * - @c "unfocused" - The entry has lost focus
6745     * - @c "selection,paste" - A paste action has occurred on the
6746     *   entry
6747     * - @c "selection,copy" - A copy action has occurred on the entry
6748     * - @c "selection,cut" - A cut action has occurred on the entry
6749     * - @c "unpressed" - The file selector entry's button was released
6750     *   after being pressed.
6751     * - @c "file,chosen" - The user has selected a path via the file
6752     *   selector entry's internal file selector, whose string pointer
6753     *   comes as the @c event_info data (a stringshared string)
6754     *
6755     * Here is an example on its usage:
6756     * @li @ref fileselector_entry_example
6757     *
6758     * @see @ref File_Selector_Button for a similar widget.
6759     * @{
6760     */
6761
6762    /**
6763     * Add a new file selector entry widget to the given parent
6764     * Elementary (container) object
6765     *
6766     * @param parent The parent object
6767     * @return a new file selector entry widget handle or @c NULL, on
6768     * errors
6769     */
6770    EAPI Evas_Object *elm_fileselector_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6771
6772    /**
6773     * Set the label for a given file selector entry widget's button
6774     *
6775     * @param obj The file selector entry widget
6776     * @param label The text label to be displayed on @p obj widget's
6777     * button
6778     *
6779     * @deprecated use elm_object_text_set() instead.
6780     */
6781    EINA_DEPRECATED EAPI void         elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6782
6783    /**
6784     * Get the label set for a given file selector entry widget's button
6785     *
6786     * @param obj The file selector entry widget
6787     * @return The widget button's label
6788     *
6789     * @deprecated use elm_object_text_set() instead.
6790     */
6791    EINA_DEPRECATED EAPI const char  *elm_fileselector_entry_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6792
6793    /**
6794     * Set the icon on a given file selector entry widget's button
6795     *
6796     * @param obj The file selector entry widget
6797     * @param icon The icon object for the entry's button
6798     *
6799     * Once the icon object is set, a previously set one will be
6800     * deleted. If you want to keep the latter, use the
6801     * elm_fileselector_entry_button_icon_unset() function.
6802     *
6803     * @see elm_fileselector_entry_button_icon_get()
6804     */
6805    EAPI void         elm_fileselector_entry_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6806
6807    /**
6808     * Get the icon set for a given file selector entry widget's button
6809     *
6810     * @param obj The file selector entry widget
6811     * @return The icon object currently set on @p obj widget's button
6812     * or @c NULL, if none is
6813     *
6814     * @see elm_fileselector_entry_button_icon_set()
6815     */
6816    EAPI Evas_Object *elm_fileselector_entry_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6817
6818    /**
6819     * Unset the icon used in a given file selector entry widget's
6820     * button
6821     *
6822     * @param obj The file selector entry widget
6823     * @return The icon object that was being used on @p obj widget's
6824     * button or @c NULL, on errors
6825     *
6826     * Unparent and return the icon object which was set for this
6827     * widget's button.
6828     *
6829     * @see elm_fileselector_entry_button_icon_set()
6830     */
6831    EAPI Evas_Object *elm_fileselector_entry_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6832
6833    /**
6834     * Set the title for a given file selector entry widget's window
6835     *
6836     * @param obj The file selector entry widget
6837     * @param title The title string
6838     *
6839     * This will change the window's title, when the file selector pops
6840     * out after a click on the entry's button. Those windows have the
6841     * default (unlocalized) value of @c "Select a file" as titles.
6842     *
6843     * @note It will only take any effect if the file selector
6844     * entry widget is @b not under "inwin mode".
6845     *
6846     * @see elm_fileselector_entry_window_title_get()
6847     */
6848    EAPI void         elm_fileselector_entry_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6849
6850    /**
6851     * Get the title set for a given file selector entry widget's
6852     * window
6853     *
6854     * @param obj The file selector entry widget
6855     * @return Title of the file selector entry's window
6856     *
6857     * @see elm_fileselector_entry_window_title_get() for more details
6858     */
6859    EAPI const char  *elm_fileselector_entry_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6860
6861    /**
6862     * Set the size of a given file selector entry widget's window,
6863     * holding the file selector itself.
6864     *
6865     * @param obj The file selector entry widget
6866     * @param width The window's width
6867     * @param height The window's height
6868     *
6869     * @note it will only take any effect if the file selector entry
6870     * widget is @b not under "inwin mode". The default size for the
6871     * window (when applicable) is 400x400 pixels.
6872     *
6873     * @see elm_fileselector_entry_window_size_get()
6874     */
6875    EAPI void         elm_fileselector_entry_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6876
6877    /**
6878     * Get the size of a given file selector entry widget's window,
6879     * holding the file selector itself.
6880     *
6881     * @param obj The file selector entry widget
6882     * @param width Pointer into which to store the width value
6883     * @param height Pointer into which to store the height value
6884     *
6885     * @note Use @c NULL pointers on the size values you're not
6886     * interested in: they'll be ignored by the function.
6887     *
6888     * @see elm_fileselector_entry_window_size_set(), for more details
6889     */
6890    EAPI void         elm_fileselector_entry_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6891
6892    /**
6893     * Set the initial file system path and the entry's path string for
6894     * a given file selector entry widget
6895     *
6896     * @param obj The file selector entry widget
6897     * @param path The path string
6898     *
6899     * It must be a <b>directory</b> path, which will have the contents
6900     * displayed initially in the file selector's view, when invoked
6901     * from @p obj. The default initial path is the @c "HOME"
6902     * environment variable's value.
6903     *
6904     * @see elm_fileselector_entry_path_get()
6905     */
6906    EAPI void         elm_fileselector_entry_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6907
6908    /**
6909     * Get the entry's path string for a given file selector entry
6910     * widget
6911     *
6912     * @param obj The file selector entry widget
6913     * @return path The path string
6914     *
6915     * @see elm_fileselector_entry_path_set() for more details
6916     */
6917    EAPI const char  *elm_fileselector_entry_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6918
6919    /**
6920     * Enable/disable a tree view in the given file selector entry
6921     * widget's internal file selector
6922     *
6923     * @param obj The file selector entry widget
6924     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6925     * disable
6926     *
6927     * This has the same effect as elm_fileselector_expandable_set(),
6928     * but now applied to a file selector entry's internal file
6929     * selector.
6930     *
6931     * @note There's no way to put a file selector entry's internal
6932     * file selector in "grid mode", as one may do with "pure" file
6933     * selectors.
6934     *
6935     * @see elm_fileselector_expandable_get()
6936     */
6937    EAPI void         elm_fileselector_entry_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6938
6939    /**
6940     * Get whether tree view is enabled for the given file selector
6941     * entry widget's internal file selector
6942     *
6943     * @param obj The file selector entry widget
6944     * @return @c EINA_TRUE if @p obj widget's internal file selector
6945     * is in tree view, @c EINA_FALSE otherwise (and or errors)
6946     *
6947     * @see elm_fileselector_expandable_set() for more details
6948     */
6949    EAPI Eina_Bool    elm_fileselector_entry_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6950
6951    /**
6952     * Set whether a given file selector entry widget's internal file
6953     * selector is to display folders only or the directory contents,
6954     * as well.
6955     *
6956     * @param obj The file selector entry widget
6957     * @param only @c EINA_TRUE to make @p obj widget's internal file
6958     * selector only display directories, @c EINA_FALSE to make files
6959     * to be displayed in it too
6960     *
6961     * This has the same effect as elm_fileselector_folder_only_set(),
6962     * but now applied to a file selector entry's internal file
6963     * selector.
6964     *
6965     * @see elm_fileselector_folder_only_get()
6966     */
6967    EAPI void         elm_fileselector_entry_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6968
6969    /**
6970     * Get whether a given file selector entry widget's internal file
6971     * selector is displaying folders only or the directory contents,
6972     * as well.
6973     *
6974     * @param obj The file selector entry widget
6975     * @return @c EINA_TRUE if @p obj widget's internal file
6976     * selector is only displaying directories, @c EINA_FALSE if files
6977     * are being displayed in it too (and on errors)
6978     *
6979     * @see elm_fileselector_entry_folder_only_set() for more details
6980     */
6981    EAPI Eina_Bool    elm_fileselector_entry_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6982
6983    /**
6984     * Enable/disable the file name entry box where the user can type
6985     * in a name for a file, in a given file selector entry widget's
6986     * internal file selector.
6987     *
6988     * @param obj The file selector entry widget
6989     * @param is_save @c EINA_TRUE to make @p obj widget's internal
6990     * file selector a "saving dialog", @c EINA_FALSE otherwise
6991     *
6992     * This has the same effect as elm_fileselector_is_save_set(),
6993     * but now applied to a file selector entry's internal file
6994     * selector.
6995     *
6996     * @see elm_fileselector_is_save_get()
6997     */
6998    EAPI void         elm_fileselector_entry_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6999
7000    /**
7001     * Get whether the given file selector entry widget's internal
7002     * file selector is in "saving dialog" mode
7003     *
7004     * @param obj The file selector entry widget
7005     * @return @c EINA_TRUE, if @p obj widget's internal file selector
7006     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
7007     * errors)
7008     *
7009     * @see elm_fileselector_entry_is_save_set() for more details
7010     */
7011    EAPI Eina_Bool    elm_fileselector_entry_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7012
7013    /**
7014     * Set whether a given file selector entry widget's internal file
7015     * selector will raise an Elementary "inner window", instead of a
7016     * dedicated Elementary window. By default, it won't.
7017     *
7018     * @param obj The file selector entry widget
7019     * @param value @c EINA_TRUE to make it use an inner window, @c
7020     * EINA_TRUE to make it use a dedicated window
7021     *
7022     * @see elm_win_inwin_add() for more information on inner windows
7023     * @see elm_fileselector_entry_inwin_mode_get()
7024     */
7025    EAPI void         elm_fileselector_entry_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
7026
7027    /**
7028     * Get whether a given file selector entry widget's internal file
7029     * selector will raise an Elementary "inner window", instead of a
7030     * dedicated Elementary window.
7031     *
7032     * @param obj The file selector entry widget
7033     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
7034     * if it will use a dedicated window
7035     *
7036     * @see elm_fileselector_entry_inwin_mode_set() for more details
7037     */
7038    EAPI Eina_Bool    elm_fileselector_entry_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7039
7040    /**
7041     * Set the initial file system path for a given file selector entry
7042     * widget
7043     *
7044     * @param obj The file selector entry widget
7045     * @param path The path string
7046     *
7047     * It must be a <b>directory</b> path, which will have the contents
7048     * displayed initially in the file selector's view, when invoked
7049     * from @p obj. The default initial path is the @c "HOME"
7050     * environment variable's value.
7051     *
7052     * @see elm_fileselector_entry_path_get()
7053     */
7054    EAPI void         elm_fileselector_entry_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
7055
7056    /**
7057     * Get the parent directory's path to the latest file selection on
7058     * a given filer selector entry widget
7059     *
7060     * @param obj The file selector object
7061     * @return The (full) path of the directory of the last selection
7062     * on @p obj widget, a @b stringshared string
7063     *
7064     * @see elm_fileselector_entry_path_set()
7065     */
7066    EAPI const char  *elm_fileselector_entry_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7067
7068    /**
7069     * @}
7070     */
7071
7072    /**
7073     * @defgroup Scroller Scroller
7074     *
7075     * A scroller holds a single object and "scrolls it around". This means that
7076     * it allows the user to use a scrollbar (or a finger) to drag the viewable
7077     * region around, allowing to move through a much larger object that is
7078     * contained in the scroller. The scroller will always have a small minimum
7079     * size by default as it won't be limited by the contents of the scroller.
7080     *
7081     * Signals that you can add callbacks for are:
7082     * @li "edge,left" - the left edge of the content has been reached
7083     * @li "edge,right" - the right edge of the content has been reached
7084     * @li "edge,top" - the top edge of the content has been reached
7085     * @li "edge,bottom" - the bottom edge of the content has been reached
7086     * @li "scroll" - the content has been scrolled (moved)
7087     * @li "scroll,anim,start" - scrolling animation has started
7088     * @li "scroll,anim,stop" - scrolling animation has stopped
7089     * @li "scroll,drag,start" - dragging the contents around has started
7090     * @li "scroll,drag,stop" - dragging the contents around has stopped
7091     * @note The "scroll,anim,*" and "scroll,drag,*" signals are only emitted by
7092     * user intervetion.
7093     *
7094     * @note When Elemementary is in embedded mode the scrollbars will not be
7095     * dragable, they appear merely as indicators of how much has been scrolled.
7096     * @note When Elementary is in desktop mode the thumbscroll(a.k.a.
7097     * fingerscroll) won't work.
7098     *
7099     * To set/get/unset the content of the panel, you can use
7100     * elm_object_content_set/get/unset APIs.
7101     * Once the content object is set, a previously set one will be deleted.
7102     * If you want to keep that old content object, use the
7103     * elm_object_content_unset() function
7104     *
7105     * In @ref tutorial_scroller you'll find an example of how to use most of
7106     * this API.
7107     * @{
7108     */
7109    /**
7110     * @brief Type that controls when scrollbars should appear.
7111     *
7112     * @see elm_scroller_policy_set()
7113     */
7114    typedef enum _Elm_Scroller_Policy
7115      {
7116         ELM_SCROLLER_POLICY_AUTO = 0, /**< Show scrollbars as needed */
7117         ELM_SCROLLER_POLICY_ON, /**< Always show scrollbars */
7118         ELM_SCROLLER_POLICY_OFF, /**< Never show scrollbars */
7119         ELM_SCROLLER_POLICY_LAST
7120      } Elm_Scroller_Policy;
7121    /**
7122     * @brief Add a new scroller to the parent
7123     *
7124     * @param parent The parent object
7125     * @return The new object or NULL if it cannot be created
7126     */
7127    EAPI Evas_Object *elm_scroller_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7128    /**
7129     * @brief Set the content of the scroller widget (the object to be scrolled around).
7130     *
7131     * @param obj The scroller object
7132     * @param content The new content object
7133     *
7134     * Once the content object is set, a previously set one will be deleted.
7135     * If you want to keep that old content object, use the
7136     * elm_scroller_content_unset() function.
7137     * @deprecated use elm_object_content_set() instead
7138     */
7139    EAPI void         elm_scroller_content_set(Evas_Object *obj, Evas_Object *child) EINA_ARG_NONNULL(1);
7140    /**
7141     * @brief Get the content of the scroller widget
7142     *
7143     * @param obj The slider object
7144     * @return The content that is being used
7145     *
7146     * Return the content object which is set for this widget
7147     *
7148     * @see elm_scroller_content_set()
7149     * @deprecated use elm_object_content_get() instead.
7150     */
7151    EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7152    /**
7153     * @brief Unset the content of the scroller widget
7154     *
7155     * @param obj The slider object
7156     * @return The content that was being used
7157     *
7158     * Unparent and return the content object which was set for this widget
7159     *
7160     * @see elm_scroller_content_set()
7161     * @deprecated use elm_object_content_unset() instead.
7162     */
7163    EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7164    /**
7165     * @brief Set custom theme elements for the scroller
7166     *
7167     * @param obj The scroller object
7168     * @param widget The widget name to use (default is "scroller")
7169     * @param base The base name to use (default is "base")
7170     */
7171    EAPI void         elm_scroller_custom_widget_base_theme_set(Evas_Object *obj, const char *widget, const char *base) EINA_ARG_NONNULL(1, 2, 3);
7172    /**
7173     * @brief Make the scroller minimum size limited to the minimum size of the content
7174     *
7175     * @param obj The scroller object
7176     * @param w Enable limiting minimum size horizontally
7177     * @param h Enable limiting minimum size vertically
7178     *
7179     * By default the scroller will be as small as its design allows,
7180     * irrespective of its content. This will make the scroller minimum size the
7181     * right size horizontally and/or vertically to perfectly fit its content in
7182     * that direction.
7183     */
7184    EAPI void         elm_scroller_content_min_limit(Evas_Object *obj, Eina_Bool w, Eina_Bool h) EINA_ARG_NONNULL(1);
7185    /**
7186     * @brief Show a specific virtual region within the scroller content object
7187     *
7188     * @param obj The scroller object
7189     * @param x X coordinate of the region
7190     * @param y Y coordinate of the region
7191     * @param w Width of the region
7192     * @param h Height of the region
7193     *
7194     * This will ensure all (or part if it does not fit) of the designated
7195     * region in the virtual content object (0, 0 starting at the top-left of the
7196     * virtual content object) is shown within the scroller.
7197     */
7198    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);
7199    /**
7200     * @brief Set the scrollbar visibility policy
7201     *
7202     * @param obj The scroller object
7203     * @param policy_h Horizontal scrollbar policy
7204     * @param policy_v Vertical scrollbar policy
7205     *
7206     * This sets the scrollbar visibility policy for the given scroller.
7207     * ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it is
7208     * needed, and otherwise kept hidden. ELM_SCROLLER_POLICY_ON turns it on all
7209     * the time, and ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
7210     * respectively for the horizontal and vertical scrollbars.
7211     */
7212    EAPI void         elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
7213    /**
7214     * @brief Gets scrollbar visibility policy
7215     *
7216     * @param obj The scroller object
7217     * @param policy_h Horizontal scrollbar policy
7218     * @param policy_v Vertical scrollbar policy
7219     *
7220     * @see elm_scroller_policy_set()
7221     */
7222    EAPI void         elm_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
7223    /**
7224     * @brief Get the currently visible content region
7225     *
7226     * @param obj The scroller object
7227     * @param x X coordinate of the region
7228     * @param y Y coordinate of the region
7229     * @param w Width of the region
7230     * @param h Height of the region
7231     *
7232     * This gets the current region in the content object that is visible through
7233     * the scroller. The region co-ordinates are returned in the @p x, @p y, @p
7234     * w, @p h values pointed to.
7235     *
7236     * @note All coordinates are relative to the content.
7237     *
7238     * @see elm_scroller_region_show()
7239     */
7240    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);
7241    /**
7242     * @brief Get the size of the content object
7243     *
7244     * @param obj The scroller object
7245     * @param w Width of the content object.
7246     * @param h Height of the content object.
7247     *
7248     * This gets the size of the content object of the scroller.
7249     */
7250    EAPI void         elm_scroller_child_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
7251    /**
7252     * @brief Set bouncing behavior
7253     *
7254     * @param obj The scroller object
7255     * @param h_bounce Allow bounce horizontally
7256     * @param v_bounce Allow bounce vertically
7257     *
7258     * When scrolling, the scroller may "bounce" when reaching an edge of the
7259     * content object. This is a visual way to indicate the end has been reached.
7260     * This is enabled by default for both axis. This API will set if it is enabled
7261     * for the given axis with the boolean parameters for each axis.
7262     */
7263    EAPI void         elm_scroller_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
7264    /**
7265     * @brief Get the bounce behaviour
7266     *
7267     * @param obj The Scroller object
7268     * @param h_bounce Will the scroller bounce horizontally or not
7269     * @param v_bounce Will the scroller bounce vertically or not
7270     *
7271     * @see elm_scroller_bounce_set()
7272     */
7273    EAPI void         elm_scroller_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
7274    /**
7275     * @brief Set scroll page size relative to viewport size.
7276     *
7277     * @param obj The scroller object
7278     * @param h_pagerel The horizontal page relative size
7279     * @param v_pagerel The vertical page relative size
7280     *
7281     * The scroller is capable of limiting scrolling by the user to "pages". That
7282     * is to jump by and only show a "whole page" at a time as if the continuous
7283     * area of the scroller content is split into page sized pieces. This sets
7284     * the size of a page relative to the viewport of the scroller. 1.0 is "1
7285     * viewport" is size (horizontally or vertically). 0.0 turns it off in that
7286     * axis. This is mutually exclusive with page size
7287     * (see elm_scroller_page_size_set()  for more information). Likewise 0.5
7288     * is "half a viewport". Sane usable values are normally between 0.0 and 1.0
7289     * including 1.0. If you only want 1 axis to be page "limited", use 0.0 for
7290     * the other axis.
7291     */
7292    EAPI void         elm_scroller_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
7293    /**
7294     * @brief Set scroll page size.
7295     *
7296     * @param obj The scroller object
7297     * @param h_pagesize The horizontal page size
7298     * @param v_pagesize The vertical page size
7299     *
7300     * This sets the page size to an absolute fixed value, with 0 turning it off
7301     * for that axis.
7302     *
7303     * @see elm_scroller_page_relative_set()
7304     */
7305    EAPI void         elm_scroller_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
7306    /**
7307     * @brief Get scroll current page number.
7308     *
7309     * @param obj The scroller object
7310     * @param h_pagenumber The horizontal page number
7311     * @param v_pagenumber The vertical page number
7312     *
7313     * The page number starts from 0. 0 is the first page.
7314     * Current page means the page which meets the top-left of the viewport.
7315     * If there are two or more pages in the viewport, it returns the number of the page
7316     * which meets the top-left of the viewport.
7317     *
7318     * @see elm_scroller_last_page_get()
7319     * @see elm_scroller_page_show()
7320     * @see elm_scroller_page_brint_in()
7321     */
7322    EAPI void         elm_scroller_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7323    /**
7324     * @brief Get scroll last page number.
7325     *
7326     * @param obj The scroller object
7327     * @param h_pagenumber The horizontal page number
7328     * @param v_pagenumber The vertical page number
7329     *
7330     * The page number starts from 0. 0 is the first page.
7331     * This returns the last page number among the pages.
7332     *
7333     * @see elm_scroller_current_page_get()
7334     * @see elm_scroller_page_show()
7335     * @see elm_scroller_page_brint_in()
7336     */
7337    EAPI void         elm_scroller_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7338    /**
7339     * Show a specific virtual region within the scroller content object by page number.
7340     *
7341     * @param obj The scroller object
7342     * @param h_pagenumber The horizontal page number
7343     * @param v_pagenumber The vertical page number
7344     *
7345     * 0, 0 of the indicated page is located at the top-left of the viewport.
7346     * This will jump to the page directly without animation.
7347     *
7348     * Example of usage:
7349     *
7350     * @code
7351     * sc = elm_scroller_add(win);
7352     * elm_scroller_content_set(sc, content);
7353     * elm_scroller_page_relative_set(sc, 1, 0);
7354     * elm_scroller_current_page_get(sc, &h_page, &v_page);
7355     * elm_scroller_page_show(sc, h_page + 1, v_page);
7356     * @endcode
7357     *
7358     * @see elm_scroller_page_bring_in()
7359     */
7360    EAPI void         elm_scroller_page_show(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7361    /**
7362     * Show a specific virtual region within the scroller content object by page number.
7363     *
7364     * @param obj The scroller object
7365     * @param h_pagenumber The horizontal page number
7366     * @param v_pagenumber The vertical page number
7367     *
7368     * 0, 0 of the indicated page is located at the top-left of the viewport.
7369     * This will slide to the page with animation.
7370     *
7371     * Example of usage:
7372     *
7373     * @code
7374     * sc = elm_scroller_add(win);
7375     * elm_scroller_content_set(sc, content);
7376     * elm_scroller_page_relative_set(sc, 1, 0);
7377     * elm_scroller_last_page_get(sc, &h_page, &v_page);
7378     * elm_scroller_page_bring_in(sc, h_page, v_page);
7379     * @endcode
7380     *
7381     * @see elm_scroller_page_show()
7382     */
7383    EAPI void         elm_scroller_page_bring_in(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7384    /**
7385     * @brief Show a specific virtual region within the scroller content object.
7386     *
7387     * @param obj The scroller object
7388     * @param x X coordinate of the region
7389     * @param y Y coordinate of the region
7390     * @param w Width of the region
7391     * @param h Height of the region
7392     *
7393     * This will ensure all (or part if it does not fit) of the designated
7394     * region in the virtual content object (0, 0 starting at the top-left of the
7395     * virtual content object) is shown within the scroller. Unlike
7396     * elm_scroller_region_show(), this allow the scroller to "smoothly slide"
7397     * to this location (if configuration in general calls for transitions). It
7398     * may not jump immediately to the new location and make take a while and
7399     * show other content along the way.
7400     *
7401     * @see elm_scroller_region_show()
7402     */
7403    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);
7404    /**
7405     * @brief Set event propagation on a scroller
7406     *
7407     * @param obj The scroller object
7408     * @param propagation If propagation is enabled or not
7409     *
7410     * This enables or disabled event propagation from the scroller content to
7411     * the scroller and its parent. By default event propagation is disabled.
7412     */
7413    EAPI void         elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation) EINA_ARG_NONNULL(1);
7414    /**
7415     * @brief Get event propagation for a scroller
7416     *
7417     * @param obj The scroller object
7418     * @return The propagation state
7419     *
7420     * This gets the event propagation for a scroller.
7421     *
7422     * @see elm_scroller_propagate_events_set()
7423     */
7424    EAPI Eina_Bool    elm_scroller_propagate_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7425    /**
7426     * @brief Set scrolling gravity on a scroller
7427     *
7428     * @param obj The scroller object
7429     * @param x The scrolling horizontal gravity
7430     * @param y The scrolling vertical gravity
7431     *
7432     * The gravity, defines how the scroller will adjust its view
7433     * when the size of the scroller contents increase.
7434     *
7435     * The scroller will adjust the view to glue itself as follows.
7436     *
7437     *  x=0.0, for showing the left most region of the content.
7438     *  x=1.0, for showing the right most region of the content.
7439     *  y=0.0, for showing the bottom most region of the content.
7440     *  y=1.0, for showing the top most region of the content.
7441     *
7442     * Default values for x and y are 0.0
7443     */
7444    EAPI void         elm_scroller_gravity_set(Evas_Object *obj, double x, double y) EINA_ARG_NONNULL(1);
7445    /**
7446     * @brief Get scrolling gravity values for a scroller
7447     *
7448     * @param obj The scroller object
7449     * @param x The scrolling horizontal gravity
7450     * @param y The scrolling vertical gravity
7451     *
7452     * This gets gravity values for a scroller.
7453     *
7454     * @see elm_scroller_gravity_set()
7455     *
7456     */
7457    EAPI void         elm_scroller_gravity_get(const Evas_Object *obj, double *x, double *y) EINA_ARG_NONNULL(1);
7458    /**
7459     * @}
7460     */
7461
7462    /**
7463     * @defgroup Label Label
7464     *
7465     * @image html img/widget/label/preview-00.png
7466     * @image latex img/widget/label/preview-00.eps
7467     *
7468     * @brief Widget to display text, with simple html-like markup.
7469     *
7470     * The Label widget @b doesn't allow text to overflow its boundaries, if the
7471     * text doesn't fit the geometry of the label it will be ellipsized or be
7472     * cut. Elementary provides several themes for this widget:
7473     * @li default - No animation
7474     * @li marker - Centers the text in the label and make it bold by default
7475     * @li slide_long - The entire text appears from the right of the screen and
7476     * slides until it disappears in the left of the screen(reappering on the
7477     * right again).
7478     * @li slide_short - The text appears in the left of the label and slides to
7479     * the right to show the overflow. When all of the text has been shown the
7480     * position is reset.
7481     * @li slide_bounce - The text appears in the left of the label and slides to
7482     * the right to show the overflow. When all of the text has been shown the
7483     * animation reverses, moving the text to the left.
7484     *
7485     * Custom themes can of course invent new markup tags and style them any way
7486     * they like.
7487     *
7488     * The following signals may be emitted by the label widget:
7489     * @li "language,changed": The program's language changed.
7490     *
7491     * See @ref tutorial_label for a demonstration of how to use a label widget.
7492     * @{
7493     */
7494    /**
7495     * @brief Add a new label to the parent
7496     *
7497     * @param parent The parent object
7498     * @return The new object or NULL if it cannot be created
7499     */
7500    EAPI Evas_Object *elm_label_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7501    /**
7502     * @brief Set the label on the label object
7503     *
7504     * @param obj The label object
7505     * @param label The label will be used on the label object
7506     * @deprecated See elm_object_text_set()
7507     */
7508    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 */
7509    /**
7510     * @brief Get the label used on the label object
7511     *
7512     * @param obj The label object
7513     * @return The string inside the label
7514     * @deprecated See elm_object_text_get()
7515     */
7516    EINA_DEPRECATED EAPI const char *elm_label_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1); /* deprecated, use elm_object_text_get instead */
7517    /**
7518     * @brief Set the wrapping behavior of the label
7519     *
7520     * @param obj The label object
7521     * @param wrap To wrap text or not
7522     *
7523     * By default no wrapping is done. Possible values for @p wrap are:
7524     * @li ELM_WRAP_NONE - No wrapping
7525     * @li ELM_WRAP_CHAR - wrap between characters
7526     * @li ELM_WRAP_WORD - wrap between words
7527     * @li ELM_WRAP_MIXED - Word wrap, and if that fails, char wrap
7528     */
7529    EAPI void         elm_label_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
7530    /**
7531     * @brief Get the wrapping behavior of the label
7532     *
7533     * @param obj The label object
7534     * @return Wrap type
7535     *
7536     * @see elm_label_line_wrap_set()
7537     */
7538    EAPI Elm_Wrap_Type elm_label_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7539    /**
7540     * @brief Set wrap width of the label
7541     *
7542     * @param obj The label object
7543     * @param w The wrap width in pixels at a minimum where words need to wrap
7544     *
7545     * This function sets the maximum width size hint of the label.
7546     *
7547     * @warning This is only relevant if the label is inside a container.
7548     */
7549    EAPI void         elm_label_wrap_width_set(Evas_Object *obj, Evas_Coord w) EINA_ARG_NONNULL(1);
7550    /**
7551     * @brief Get wrap width of the label
7552     *
7553     * @param obj The label object
7554     * @return The wrap width in pixels at a minimum where words need to wrap
7555     *
7556     * @see elm_label_wrap_width_set()
7557     */
7558    EAPI Evas_Coord   elm_label_wrap_width_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7559    /**
7560     * @brief Set wrap height of the label
7561     *
7562     * @param obj The label object
7563     * @param h The wrap height in pixels at a minimum where words need to wrap
7564     *
7565     * This function sets the maximum height size hint of the label.
7566     *
7567     * @warning This is only relevant if the label is inside a container.
7568     */
7569    EAPI void         elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h) EINA_ARG_NONNULL(1);
7570    /**
7571     * @brief get wrap width of the label
7572     *
7573     * @param obj The label object
7574     * @return The wrap height in pixels at a minimum where words need to wrap
7575     */
7576    EAPI Evas_Coord   elm_label_wrap_height_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7577    /**
7578     * @brief Set the font size on the label object.
7579     *
7580     * @param obj The label object
7581     * @param size font size
7582     *
7583     * @warning NEVER use this. It is for hyper-special cases only. use styles
7584     * instead. e.g. "big", "medium", "small" - or better name them by use:
7585     * "title", "footnote", "quote" etc.
7586     */
7587    EAPI void         elm_label_fontsize_set(Evas_Object *obj, int fontsize) EINA_ARG_NONNULL(1);
7588    /**
7589     * @brief Set the text color on the label object
7590     *
7591     * @param obj The label object
7592     * @param r Red property background color of The label object
7593     * @param g Green property background color of The label object
7594     * @param b Blue property background color of The label object
7595     * @param a Alpha property background color of The label object
7596     *
7597     * @warning NEVER use this. It is for hyper-special cases only. use styles
7598     * instead. e.g. "big", "medium", "small" - or better name them by use:
7599     * "title", "footnote", "quote" etc.
7600     */
7601    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);
7602    /**
7603     * @brief Set the text align on the label object
7604     *
7605     * @param obj The label object
7606     * @param align align mode ("left", "center", "right")
7607     *
7608     * @warning NEVER use this. It is for hyper-special cases only. use styles
7609     * instead. e.g. "big", "medium", "small" - or better name them by use:
7610     * "title", "footnote", "quote" etc.
7611     */
7612    EAPI void         elm_label_text_align_set(Evas_Object *obj, const char *alignmode) EINA_ARG_NONNULL(1);
7613    /**
7614     * @brief Set background color of the label
7615     *
7616     * @param obj The label object
7617     * @param r Red property background color of The label object
7618     * @param g Green property background color of The label object
7619     * @param b Blue property background color of The label object
7620     * @param a Alpha property background alpha of The label object
7621     *
7622     * @warning NEVER use this. It is for hyper-special cases only. use styles
7623     * instead. e.g. "big", "medium", "small" - or better name them by use:
7624     * "title", "footnote", "quote" etc.
7625     */
7626    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);
7627    /**
7628     * @brief Set the ellipsis behavior of the label
7629     *
7630     * @param obj The label object
7631     * @param ellipsis To ellipsis text or not
7632     *
7633     * If set to true and the text doesn't fit in the label an ellipsis("...")
7634     * will be shown at the end of the widget.
7635     *
7636     * @warning This doesn't work with slide(elm_label_slide_set()) or if the
7637     * choosen wrap method was ELM_WRAP_WORD.
7638     */
7639    EAPI void         elm_label_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis) EINA_ARG_NONNULL(1);
7640    EINA_DEPRECATED EAPI void elm_label_wrap_mode_set(Evas_Object *obj, Eina_Bool wrapmode) EINA_ARG_NONNULL(1);
7641    /**
7642     * @brief Set the text slide of the label
7643     *
7644     * @param obj The label object
7645     * @param slide To start slide or stop
7646     *
7647     * If set to true, the text of the label will slide/scroll through the length of
7648     * label.
7649     *
7650     * @warning This only works with the themes "slide_short", "slide_long" and
7651     * "slide_bounce".
7652     */
7653    EAPI void         elm_label_slide_set(Evas_Object *obj, Eina_Bool slide) EINA_ARG_NONNULL(1);
7654    /**
7655     * @brief Get the text slide mode of the label
7656     *
7657     * @param obj The label object
7658     * @return slide slide mode value
7659     *
7660     * @see elm_label_slide_set()
7661     */
7662    EAPI Eina_Bool    elm_label_slide_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7663    /**
7664     * @brief Set the slide duration(speed) of the label
7665     *
7666     * @param obj The label object
7667     * @return The duration in seconds in moving text from slide begin position
7668     * to slide end position
7669     */
7670    EAPI void         elm_label_slide_duration_set(Evas_Object *obj, double duration) EINA_ARG_NONNULL(1);
7671    /**
7672     * @brief Get the slide duration(speed) of the label
7673     *
7674     * @param obj The label object
7675     * @return The duration time in moving text from slide begin position to slide end position
7676     *
7677     * @see elm_label_slide_duration_set()
7678     */
7679    EAPI double       elm_label_slide_duration_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7680    /**
7681     * @}
7682     */
7683
7684    /**
7685     * @defgroup Toggle Toggle
7686     *
7687     * @image html img/widget/toggle/preview-00.png
7688     * @image latex img/widget/toggle/preview-00.eps
7689     *
7690     * @brief A toggle is a slider which can be used to toggle between
7691     * two values.  It has two states: on and off.
7692     *
7693     * This widget is deprecated. Please use elm_check_add() instead using the
7694     * toggle style like:
7695     * 
7696     * @code
7697     * obj = elm_check_add(parent);
7698     * elm_object_style_set(obj, "toggle");
7699     * elm_object_text_part_set(obj, "on", "ON");
7700     * elm_object_text_part_set(obj, "off", "OFF");
7701     * @endcode
7702     * 
7703     * Signals that you can add callbacks for are:
7704     * @li "changed" - Whenever the toggle value has been changed.  Is not called
7705     *                 until the toggle is released by the cursor (assuming it
7706     *                 has been triggered by the cursor in the first place).
7707     *
7708     * @ref tutorial_toggle show how to use a toggle.
7709     * @{
7710     */
7711    /**
7712     * @brief Add a toggle to @p parent.
7713     *
7714     * @param parent The parent object
7715     *
7716     * @return The toggle object
7717     */
7718    EAPI Evas_Object *elm_toggle_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7719    /**
7720     * @brief Sets the label to be displayed with the toggle.
7721     *
7722     * @param obj The toggle object
7723     * @param label The label to be displayed
7724     *
7725     * @deprecated use elm_object_text_set() instead.
7726     */
7727    EINA_DEPRECATED EAPI void         elm_toggle_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7728    /**
7729     * @brief Gets the label of the toggle
7730     *
7731     * @param obj  toggle object
7732     * @return The label of the toggle
7733     *
7734     * @deprecated use elm_object_text_get() instead.
7735     */
7736    EINA_DEPRECATED EAPI const char  *elm_toggle_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7737    /**
7738     * @brief Set the icon used for the toggle
7739     *
7740     * @param obj The toggle object
7741     * @param icon The icon object for the button
7742     *
7743     * Once the icon object is set, a previously set one will be deleted
7744     * If you want to keep that old content object, use the
7745     * elm_toggle_icon_unset() function.
7746     *
7747     * @deprecated use elm_object_content_set() instead.
7748     */
7749    EAPI void         elm_toggle_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
7750    /**
7751     * @brief Get the icon used for the toggle
7752     *
7753     * @param obj The toggle object
7754     * @return The icon object that is being used
7755     *
7756     * Return the icon object which is set for this widget.
7757     *
7758     * @see elm_toggle_icon_set()
7759     *
7760     * @deprecated use elm_object_content_get() instead.
7761     */
7762    EAPI Evas_Object *elm_toggle_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7763    /**
7764     * @brief Unset the icon used for the toggle
7765     *
7766     * @param obj The toggle object
7767     * @return The icon object that was being used
7768     *
7769     * Unparent and return the icon object which was set for this widget.
7770     *
7771     * @see elm_toggle_icon_set()
7772     *
7773     * @deprecated use elm_object_content_unset() instead.
7774     */
7775    EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7776    /**
7777     * @brief Sets the labels to be associated with the on and off states of the toggle.
7778     *
7779     * @param obj The toggle object
7780     * @param onlabel The label displayed when the toggle is in the "on" state
7781     * @param offlabel The label displayed when the toggle is in the "off" state
7782     *
7783     * @deprecated use elm_object_text_part_set() for "on" and "off" parts
7784     * instead.
7785     */
7786    EAPI void         elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel) EINA_ARG_NONNULL(1);
7787    /**
7788     * @brief Gets the labels associated with the on and off states of the
7789     * toggle.
7790     *
7791     * @param obj The toggle object
7792     * @param onlabel A char** to place the onlabel of @p obj into
7793     * @param offlabel A char** to place the offlabel of @p obj into
7794     *
7795     * @deprecated use elm_object_text_part_get() for "on" and "off" parts
7796     * instead.
7797     */
7798    EAPI void         elm_toggle_states_labels_get(const Evas_Object *obj, const char **onlabel, const char **offlabel) EINA_ARG_NONNULL(1);
7799    /**
7800     * @brief Sets the state of the toggle to @p state.
7801     *
7802     * @param obj The toggle object
7803     * @param state The state of @p obj
7804     *
7805     * @deprecated use elm_check_state_set() instead.
7806     */
7807    EAPI void         elm_toggle_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
7808    /**
7809     * @brief Gets the state of the toggle to @p state.
7810     *
7811     * @param obj The toggle object
7812     * @return The state of @p obj
7813     *
7814     * @deprecated use elm_check_state_get() instead.
7815     */
7816    EAPI Eina_Bool    elm_toggle_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7817    /**
7818     * @brief Sets the state pointer of the toggle to @p statep.
7819     *
7820     * @param obj The toggle object
7821     * @param statep The state pointer of @p obj
7822     *
7823     * @deprecated use elm_check_state_pointer_set() instead.
7824     */
7825    EAPI void         elm_toggle_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
7826    /**
7827     * @}
7828     */
7829
7830    /**
7831     * @defgroup Frame Frame
7832     *
7833     * @image html img/widget/frame/preview-00.png
7834     * @image latex img/widget/frame/preview-00.eps
7835     *
7836     * @brief Frame is a widget that holds some content and has a title.
7837     *
7838     * The default look is a frame with a title, but Frame supports multple
7839     * styles:
7840     * @li default
7841     * @li pad_small
7842     * @li pad_medium
7843     * @li pad_large
7844     * @li pad_huge
7845     * @li outdent_top
7846     * @li outdent_bottom
7847     *
7848     * Of all this styles only default shows the title. Frame emits no signals.
7849     *
7850     * Default contents parts of the frame widget that you can use for are:
7851     * @li "elm.swallow.content" - A content of the frame
7852     *
7853     * Default text parts of the frame widget that you can use for are:
7854     * @li "elm.text" - Label of the frame
7855     *
7856     * For a detailed example see the @ref tutorial_frame.
7857     *
7858     * @{
7859     */
7860    /**
7861     * @brief Add a new frame to the parent
7862     *
7863     * @param parent The parent object
7864     * @return The new object or NULL if it cannot be created
7865     */
7866    EAPI Evas_Object *elm_frame_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7867    /**
7868     * @brief Set the frame label
7869     *
7870     * @param obj The frame object
7871     * @param label The label of this frame object
7872     *
7873     * @deprecated use elm_object_text_set() instead.
7874     */
7875    EINA_DEPRECATED EAPI void         elm_frame_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7876    /**
7877     * @brief Get the frame label
7878     *
7879     * @param obj The frame object
7880     *
7881     * @return The label of this frame objet or NULL if unable to get frame
7882     *
7883     * @deprecated use elm_object_text_get() instead.
7884     */
7885    EINA_DEPRECATED EAPI const char  *elm_frame_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7886    /**
7887     * @brief Set the content of the frame widget
7888     *
7889     * Once the content object is set, a previously set one will be deleted.
7890     * If you want to keep that old content object, use the
7891     * elm_frame_content_unset() function.
7892     *
7893     * @param obj The frame object
7894     * @param content The content will be filled in this frame object
7895     *
7896     * @deprecated use elm_object_content_set() instead.
7897     */
7898    EAPI void         elm_frame_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
7899    /**
7900     * @brief Get the content of the frame widget
7901     *
7902     * Return the content object which is set for this widget
7903     *
7904     * @param obj The frame object
7905     * @return The content that is being used
7906     *
7907     * @deprecated use elm_object_content_get() instead.
7908     */
7909    EAPI Evas_Object *elm_frame_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7910    /**
7911     * @brief Unset the content of the frame widget
7912     *
7913     * Unparent and return the content object which was set for this widget
7914     *
7915     * @param obj The frame object
7916     * @return The content that was being used
7917     *
7918     * @deprecated use elm_object_content_unset() instead.
7919     */
7920    EAPI Evas_Object *elm_frame_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7921    /**
7922     * @}
7923     */
7924
7925    /**
7926     * @defgroup Table Table
7927     *
7928     * A container widget to arrange other widgets in a table where items can
7929     * also span multiple columns or rows - even overlap (and then be raised or
7930     * lowered accordingly to adjust stacking if they do overlap).
7931     *
7932     * For a Table widget the row/column count is not fixed.
7933     * The table widget adjusts itself when subobjects are added to it dynamically.
7934     *
7935     * The followin are examples of how to use a table:
7936     * @li @ref tutorial_table_01
7937     * @li @ref tutorial_table_02
7938     *
7939     * @{
7940     */
7941    /**
7942     * @brief Add a new table to the parent
7943     *
7944     * @param parent The parent object
7945     * @return The new object or NULL if it cannot be created
7946     */
7947    EAPI Evas_Object *elm_table_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7948    /**
7949     * @brief Set the homogeneous layout in the table
7950     *
7951     * @param obj The layout object
7952     * @param homogeneous A boolean to set if the layout is homogeneous in the
7953     * table (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
7954     */
7955    EAPI void         elm_table_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
7956    /**
7957     * @brief Get the current table homogeneous mode.
7958     *
7959     * @param obj The table object
7960     * @return A boolean to indicating if the layout is homogeneous in the table
7961     * (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
7962     */
7963    EAPI Eina_Bool    elm_table_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7964    /**
7965     * @warning <b>Use elm_table_homogeneous_set() instead</b>
7966     */
7967    EINA_DEPRECATED EAPI void elm_table_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
7968    /**
7969     * @warning <b>Use elm_table_homogeneous_get() instead</b>
7970     */
7971    EINA_DEPRECATED EAPI Eina_Bool elm_table_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7972    /**
7973     * @brief Set padding between cells.
7974     *
7975     * @param obj The layout object.
7976     * @param horizontal set the horizontal padding.
7977     * @param vertical set the vertical padding.
7978     *
7979     * Default value is 0.
7980     */
7981    EAPI void         elm_table_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
7982    /**
7983     * @brief Get padding between cells.
7984     *
7985     * @param obj The layout object.
7986     * @param horizontal set the horizontal padding.
7987     * @param vertical set the vertical padding.
7988     */
7989    EAPI void         elm_table_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
7990    /**
7991     * @brief Add a subobject on the table with the coordinates passed
7992     *
7993     * @param obj The table object
7994     * @param subobj The subobject to be added to the table
7995     * @param x Row number
7996     * @param y Column number
7997     * @param w rowspan
7998     * @param h colspan
7999     *
8000     * @note All positioning inside the table is relative to rows and columns, so
8001     * a value of 0 for x and y, means the top left cell of the table, and a
8002     * value of 1 for w and h means @p subobj only takes that 1 cell.
8003     */
8004    EAPI void         elm_table_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
8005    /**
8006     * @brief Remove child from table.
8007     *
8008     * @param obj The table object
8009     * @param subobj The subobject
8010     */
8011    EAPI void         elm_table_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
8012    /**
8013     * @brief Faster way to remove all child objects from a table object.
8014     *
8015     * @param obj The table object
8016     * @param clear If true, will delete children, else just remove from table.
8017     */
8018    EAPI void         elm_table_clear(Evas_Object *obj, Eina_Bool clear) EINA_ARG_NONNULL(1);
8019    /**
8020     * @brief Set the packing location of an existing child of the table
8021     *
8022     * @param subobj The subobject to be modified in the table
8023     * @param x Row number
8024     * @param y Column number
8025     * @param w rowspan
8026     * @param h colspan
8027     *
8028     * Modifies the position of an object already in the table.
8029     *
8030     * @note All positioning inside the table is relative to rows and columns, so
8031     * a value of 0 for x and y, means the top left cell of the table, and a
8032     * value of 1 for w and h means @p subobj only takes that 1 cell.
8033     */
8034    EAPI void         elm_table_pack_set(Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
8035    /**
8036     * @brief Get the packing location of an existing child of the table
8037     *
8038     * @param subobj The subobject to be modified in the table
8039     * @param x Row number
8040     * @param y Column number
8041     * @param w rowspan
8042     * @param h colspan
8043     *
8044     * @see elm_table_pack_set()
8045     */
8046    EAPI void         elm_table_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
8047    /**
8048     * @}
8049     */
8050
8051    /**
8052     * @defgroup Gengrid Gengrid (Generic grid)
8053     *
8054     * This widget aims to position objects in a grid layout while
8055     * actually creating and rendering only the visible ones, using the
8056     * same idea as the @ref Genlist "genlist": the user defines a @b
8057     * class for each item, specifying functions that will be called at
8058     * object creation, deletion, etc. When those items are selected by
8059     * the user, a callback function is issued. Users may interact with
8060     * a gengrid via the mouse (by clicking on items to select them and
8061     * clicking on the grid's viewport and swiping to pan the whole
8062     * view) or via the keyboard, navigating through item with the
8063     * arrow keys.
8064     *
8065     * @section Gengrid_Layouts Gengrid layouts
8066     *
8067     * Gengrid may layout its items in one of two possible layouts:
8068     * - horizontal or
8069     * - vertical.
8070     *
8071     * When in "horizontal mode", items will be placed in @b columns,
8072     * from top to bottom and, when the space for a column is filled,
8073     * another one is started on the right, thus expanding the grid
8074     * horizontally, making for horizontal scrolling. When in "vertical
8075     * mode" , though, items will be placed in @b rows, from left to
8076     * right and, when the space for a row is filled, another one is
8077     * started below, thus expanding the grid vertically (and making
8078     * for vertical scrolling).
8079     *
8080     * @section Gengrid_Items Gengrid items
8081     *
8082     * An item in a gengrid can have 0 or more text labels (they can be
8083     * regular text or textblock Evas objects - that's up to the style
8084     * to determine), 0 or more icons (which are simply objects
8085     * swallowed into the gengrid item's theming Edje object) and 0 or
8086     * more <b>boolean states</b>, which have the behavior left to the
8087     * user to define. The Edje part names for each of these properties
8088     * will be looked up, in the theme file for the gengrid, under the
8089     * Edje (string) data items named @c "labels", @c "icons" and @c
8090     * "states", respectively. For each of those properties, if more
8091     * than one part is provided, they must have names listed separated
8092     * by spaces in the data fields. For the default gengrid item
8093     * theme, we have @b one label part (@c "elm.text"), @b two icon
8094     * parts (@c "elm.swalllow.icon" and @c "elm.swallow.end") and @b
8095     * no state parts.
8096     *
8097     * A gengrid item may be at one of several styles. Elementary
8098     * provides one by default - "default", but this can be extended by
8099     * system or application custom themes/overlays/extensions (see
8100     * @ref Theme "themes" for more details).
8101     *
8102     * @section Gengrid_Item_Class Gengrid item classes
8103     *
8104     * In order to have the ability to add and delete items on the fly,
8105     * gengrid implements a class (callback) system where the
8106     * application provides a structure with information about that
8107     * type of item (gengrid may contain multiple different items with
8108     * different classes, states and styles). Gengrid will call the
8109     * functions in this struct (methods) when an item is "realized"
8110     * (i.e., created dynamically, while the user is scrolling the
8111     * grid). All objects will simply be deleted when no longer needed
8112     * with evas_object_del(). The #Elm_GenGrid_Item_Class structure
8113     * contains the following members:
8114     * - @c item_style - This is a constant string and simply defines
8115     * the name of the item style. It @b must be specified and the
8116     * default should be @c "default".
8117     * - @c func.label_get - This function is called when an item
8118     * object is actually created. The @c data parameter will point to
8119     * the same data passed to elm_gengrid_item_append() and related
8120     * item creation functions. The @c obj parameter is the gengrid
8121     * object itself, while the @c part one is the name string of one
8122     * of the existing text parts in the Edje group implementing the
8123     * item's theme. This function @b must return a strdup'()ed string,
8124     * as the caller will free() it when done. See
8125     * #Elm_Gengrid_Item_Label_Get_Cb.
8126     * - @c func.content_get - This function is called when an item object
8127     * is actually created. The @c data parameter will point to the
8128     * same data passed to elm_gengrid_item_append() and related item
8129     * creation functions. The @c obj parameter is the gengrid object
8130     * itself, while the @c part one is the name string of one of the
8131     * existing (content) swallow parts in the Edje group implementing the
8132     * item's theme. It must return @c NULL, when no content is desired,
8133     * or a valid object handle, otherwise. The object will be deleted
8134     * by the gengrid on its deletion or when the item is "unrealized".
8135     * See #Elm_Gengrid_Item_Content_Get_Cb.
8136     * - @c func.state_get - This function is called when an item
8137     * object is actually created. The @c data parameter will point to
8138     * the same data passed to elm_gengrid_item_append() and related
8139     * item creation functions. The @c obj parameter is the gengrid
8140     * object itself, while the @c part one is the name string of one
8141     * of the state parts in the Edje group implementing the item's
8142     * theme. Return @c EINA_FALSE for false/off or @c EINA_TRUE for
8143     * true/on. Gengrids will emit a signal to its theming Edje object
8144     * with @c "elm,state,XXX,active" and @c "elm" as "emission" and
8145     * "source" arguments, respectively, when the state is true (the
8146     * default is false), where @c XXX is the name of the (state) part.
8147     * See #Elm_Gengrid_Item_State_Get_Cb.
8148     * - @c func.del - This is called when elm_gengrid_item_del() is
8149     * called on an item or elm_gengrid_clear() is called on the
8150     * gengrid. This is intended for use when gengrid items are
8151     * deleted, so any data attached to the item (e.g. its data
8152     * parameter on creation) can be deleted. See #Elm_Gengrid_Item_Del_Cb.
8153     *
8154     * @section Gengrid_Usage_Hints Usage hints
8155     *
8156     * If the user wants to have multiple items selected at the same
8157     * time, elm_gengrid_multi_select_set() will permit it. If the
8158     * gengrid is single-selection only (the default), then
8159     * elm_gengrid_select_item_get() will return the selected item or
8160     * @c NULL, if none is selected. If the gengrid is under
8161     * multi-selection, then elm_gengrid_selected_items_get() will
8162     * return a list (that is only valid as long as no items are
8163     * modified (added, deleted, selected or unselected) of child items
8164     * on a gengrid.
8165     *
8166     * If an item changes (internal (boolean) state, label or content 
8167     * changes), then use elm_gengrid_item_update() to have gengrid
8168     * update the item with the new state. A gengrid will re-"realize"
8169     * the item, thus calling the functions in the
8170     * #Elm_Gengrid_Item_Class set for that item.
8171     *
8172     * To programmatically (un)select an item, use
8173     * elm_gengrid_item_selected_set(). To get its selected state use
8174     * elm_gengrid_item_selected_get(). To make an item disabled
8175     * (unable to be selected and appear differently) use
8176     * elm_gengrid_item_disabled_set() to set this and
8177     * elm_gengrid_item_disabled_get() to get the disabled state.
8178     *
8179     * Grid cells will only have their selection smart callbacks called
8180     * when firstly getting selected. Any further clicks will do
8181     * nothing, unless you enable the "always select mode", with
8182     * elm_gengrid_always_select_mode_set(), thus making every click to
8183     * issue selection callbacks. elm_gengrid_no_select_mode_set() will
8184     * turn off the ability to select items entirely in the widget and
8185     * they will neither appear selected nor call the selection smart
8186     * callbacks.
8187     *
8188     * Remember that you can create new styles and add your own theme
8189     * augmentation per application with elm_theme_extension_add(). If
8190     * you absolutely must have a specific style that overrides any
8191     * theme the user or system sets up you can use
8192     * elm_theme_overlay_add() to add such a file.
8193     *
8194     * @section Gengrid_Smart_Events Gengrid smart events
8195     *
8196     * Smart events that you can add callbacks for are:
8197     * - @c "activated" - The user has double-clicked or pressed
8198     *   (enter|return|spacebar) on an item. The @c event_info parameter
8199     *   is the gengrid item that was activated.
8200     * - @c "clicked,double" - The user has double-clicked an item.
8201     *   The @c event_info parameter is the gengrid item that was double-clicked.
8202     * - @c "longpressed" - This is called when the item is pressed for a certain
8203     *   amount of time. By default it's 1 second.
8204     * - @c "selected" - The user has made an item selected. The
8205     *   @c event_info parameter is the gengrid item that was selected.
8206     * - @c "unselected" - The user has made an item unselected. The
8207     *   @c event_info parameter is the gengrid item that was unselected.
8208     * - @c "realized" - This is called when the item in the gengrid
8209     *   has its implementing Evas object instantiated, de facto. @c
8210     *   event_info is the gengrid item that was created. The object
8211     *   may be deleted at any time, so it is highly advised to the
8212     *   caller @b not to use the object pointer returned from
8213     *   elm_gengrid_item_object_get(), because it may point to freed
8214     *   objects.
8215     * - @c "unrealized" - This is called when the implementing Evas
8216     *   object for this item is deleted. @c event_info is the gengrid
8217     *   item that was deleted.
8218     * - @c "changed" - Called when an item is added, removed, resized
8219     *   or moved and when the gengrid is resized or gets "horizontal"
8220     *   property changes.
8221     * - @c "scroll,anim,start" - This is called when scrolling animation has
8222     *   started.
8223     * - @c "scroll,anim,stop" - This is called when scrolling animation has
8224     *   stopped.
8225     * - @c "drag,start,up" - Called when the item in the gengrid has
8226     *   been dragged (not scrolled) up.
8227     * - @c "drag,start,down" - Called when the item in the gengrid has
8228     *   been dragged (not scrolled) down.
8229     * - @c "drag,start,left" - Called when the item in the gengrid has
8230     *   been dragged (not scrolled) left.
8231     * - @c "drag,start,right" - Called when the item in the gengrid has
8232     *   been dragged (not scrolled) right.
8233     * - @c "drag,stop" - Called when the item in the gengrid has
8234     *   stopped being dragged.
8235     * - @c "drag" - Called when the item in the gengrid is being
8236     *   dragged.
8237     * - @c "scroll" - called when the content has been scrolled
8238     *   (moved).
8239     * - @c "scroll,drag,start" - called when dragging the content has
8240     *   started.
8241     * - @c "scroll,drag,stop" - called when dragging the content has
8242     *   stopped.
8243     * - @c "edge,top" - This is called when the gengrid is scrolled until
8244     *   the top edge.
8245     * - @c "edge,bottom" - This is called when the gengrid is scrolled
8246     *   until the bottom edge.
8247     * - @c "edge,left" - This is called when the gengrid is scrolled
8248     *   until the left edge.
8249     * - @c "edge,right" - This is called when the gengrid is scrolled
8250     *   until the right edge.
8251     *
8252     * List of gengrid examples:
8253     * @li @ref gengrid_example
8254     */
8255
8256    /**
8257     * @addtogroup Gengrid
8258     * @{
8259     */
8260
8261    typedef struct _Elm_Gengrid_Item_Class Elm_Gengrid_Item_Class; /**< Gengrid item class definition structs */
8262    typedef struct _Elm_Gengrid_Item Elm_Gengrid_Item; /**< Gengrid item handles */
8263    typedef struct _Elm_Gengrid_Item_Class_Func Elm_Gengrid_Item_Class_Func; /**< Class functions for gengrid item classes. */
8264    typedef char        *(*Elm_Gengrid_Item_Label_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< Label fetching class function for gengrid item classes. */
8265    typedef Evas_Object *(*Elm_Gengrid_Item_Content_Get_Cb)  (void *data, Evas_Object *obj, const char *part); /**< Content (swallowed object) fetching class function for gengrid item classes. */
8266    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. */
8267    typedef void         (*Elm_Gengrid_Item_Del_Cb)      (void *data, Evas_Object *obj); /**< Deletion class function for gengrid item classes. */
8268
8269    /* temporary compatibility code */
8270    typedef Elm_Gengrid_Item_Label_Get_Cb GridItemLabelGetFunc EINA_DEPRECATED;
8271    typedef Elm_Gengrid_Item_Content_Get_Cb GridItemIconGetFunc EINA_DEPRECATED;
8272    typedef Elm_Gengrid_Item_State_Get_Cb GridItemStateGetFunc EINA_DEPRECATED;
8273    typedef Elm_Gengrid_Item_Del_Cb GridItemDelFunc EINA_DEPRECATED;
8274
8275    /**
8276     * @struct _Elm_Gengrid_Item_Class
8277     *
8278     * Gengrid item class definition. See @ref Gengrid_Item_Class for
8279     * field details.
8280     */
8281    struct _Elm_Gengrid_Item_Class
8282      {
8283         const char             *item_style;
8284         struct _Elm_Gengrid_Item_Class_Func
8285           {
8286              Elm_Gengrid_Item_Label_Get_Cb label_get;
8287              union { /* temporary compatibility code */
8288                Elm_Gengrid_Item_Content_Get_Cb icon_get EINA_DEPRECATED;
8289                Elm_Gengrid_Item_Content_Get_Cb content_get;
8290              };
8291              Elm_Gengrid_Item_State_Get_Cb state_get;
8292              Elm_Gengrid_Item_Del_Cb       del;
8293           } func;
8294      }; /**< #Elm_Gengrid_Item_Class member definitions */
8295    /**
8296     * Add a new gengrid widget to the given parent Elementary
8297     * (container) object
8298     *
8299     * @param parent The parent object
8300     * @return a new gengrid widget handle or @c NULL, on errors
8301     *
8302     * This function inserts a new gengrid widget on the canvas.
8303     *
8304     * @see elm_gengrid_item_size_set()
8305     * @see elm_gengrid_group_item_size_set()
8306     * @see elm_gengrid_horizontal_set()
8307     * @see elm_gengrid_item_append()
8308     * @see elm_gengrid_item_del()
8309     * @see elm_gengrid_clear()
8310     *
8311     * @ingroup Gengrid
8312     */
8313    EAPI Evas_Object       *elm_gengrid_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
8314
8315    /**
8316     * Set the size for the items of a given gengrid widget
8317     *
8318     * @param obj The gengrid object.
8319     * @param w The items' width.
8320     * @param h The items' height;
8321     *
8322     * A gengrid, after creation, has still no information on the size
8323     * to give to each of its cells. So, you most probably will end up
8324     * with squares one @ref Fingers "finger" wide, the default
8325     * size. Use this function to force a custom size for you items,
8326     * making them as big as you wish.
8327     *
8328     * @see elm_gengrid_item_size_get()
8329     *
8330     * @ingroup Gengrid
8331     */
8332    EAPI void               elm_gengrid_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8333
8334    /**
8335     * Get the size set for the items of a given gengrid widget
8336     *
8337     * @param obj The gengrid object.
8338     * @param w Pointer to a variable where to store the items' width.
8339     * @param h Pointer to a variable where to store the items' height.
8340     *
8341     * @note Use @c NULL pointers on the size values you're not
8342     * interested in: they'll be ignored by the function.
8343     *
8344     * @see elm_gengrid_item_size_get() for more details
8345     *
8346     * @ingroup Gengrid
8347     */
8348    EAPI void               elm_gengrid_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8349
8350    /**
8351     * Set the items grid's alignment within a given gengrid widget
8352     *
8353     * @param obj The gengrid object.
8354     * @param align_x Alignment in the horizontal axis (0 <= align_x <= 1).
8355     * @param align_y Alignment in the vertical axis (0 <= align_y <= 1).
8356     *
8357     * This sets the alignment of the whole grid of items of a gengrid
8358     * within its given viewport. By default, those values are both
8359     * 0.5, meaning that the gengrid will have its items grid placed
8360     * exactly in the middle of its viewport.
8361     *
8362     * @note If given alignment values are out of the cited ranges,
8363     * they'll be changed to the nearest boundary values on the valid
8364     * ranges.
8365     *
8366     * @see elm_gengrid_align_get()
8367     *
8368     * @ingroup Gengrid
8369     */
8370    EAPI void               elm_gengrid_align_set(Evas_Object *obj, double align_x, double align_y) EINA_ARG_NONNULL(1);
8371
8372    /**
8373     * Get the items grid's alignment values within a given gengrid
8374     * widget
8375     *
8376     * @param obj The gengrid object.
8377     * @param align_x Pointer to a variable where to store the
8378     * horizontal alignment.
8379     * @param align_y Pointer to a variable where to store the vertical
8380     * alignment.
8381     *
8382     * @note Use @c NULL pointers on the alignment values you're not
8383     * interested in: they'll be ignored by the function.
8384     *
8385     * @see elm_gengrid_align_set() for more details
8386     *
8387     * @ingroup Gengrid
8388     */
8389    EAPI void               elm_gengrid_align_get(const Evas_Object *obj, double *align_x, double *align_y) EINA_ARG_NONNULL(1);
8390
8391    /**
8392     * Set whether a given gengrid widget is or not able have items
8393     * @b reordered
8394     *
8395     * @param obj The gengrid object
8396     * @param reorder_mode Use @c EINA_TRUE to turn reoderding on,
8397     * @c EINA_FALSE to turn it off
8398     *
8399     * If a gengrid is set to allow reordering, a click held for more
8400     * than 0.5 over a given item will highlight it specially,
8401     * signalling the gengrid has entered the reordering state. From
8402     * that time on, the user will be able to, while still holding the
8403     * mouse button down, move the item freely in the gengrid's
8404     * viewport, replacing to said item to the locations it goes to.
8405     * The replacements will be animated and, whenever the user
8406     * releases the mouse button, the item being replaced gets a new
8407     * definitive place in the grid.
8408     *
8409     * @see elm_gengrid_reorder_mode_get()
8410     *
8411     * @ingroup Gengrid
8412     */
8413    EAPI void               elm_gengrid_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
8414
8415    /**
8416     * Get whether a given gengrid widget is or not able have items
8417     * @b reordered
8418     *
8419     * @param obj The gengrid object
8420     * @return @c EINA_TRUE, if reoderding is on, @c EINA_FALSE if it's
8421     * off
8422     *
8423     * @see elm_gengrid_reorder_mode_set() for more details
8424     *
8425     * @ingroup Gengrid
8426     */
8427    EAPI Eina_Bool          elm_gengrid_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8428
8429    /**
8430     * Append a new item in a given gengrid widget.
8431     *
8432     * @param obj The gengrid object.
8433     * @param gic The item class for the item.
8434     * @param data The item data.
8435     * @param func Convenience function called when the item is
8436     * selected.
8437     * @param func_data Data to be passed to @p func.
8438     * @return A handle to the item added or @c NULL, on errors.
8439     *
8440     * This adds an item to the beginning of the gengrid.
8441     *
8442     * @see elm_gengrid_item_prepend()
8443     * @see elm_gengrid_item_insert_before()
8444     * @see elm_gengrid_item_insert_after()
8445     * @see elm_gengrid_item_del()
8446     *
8447     * @ingroup Gengrid
8448     */
8449    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);
8450
8451    /**
8452     * Prepend a new item in a given gengrid widget.
8453     *
8454     * @param obj The gengrid object.
8455     * @param gic The item class for the item.
8456     * @param data The item data.
8457     * @param func Convenience function called when the item is
8458     * selected.
8459     * @param func_data Data to be passed to @p func.
8460     * @return A handle to the item added or @c NULL, on errors.
8461     *
8462     * This adds an item to the end of the gengrid.
8463     *
8464     * @see elm_gengrid_item_append()
8465     * @see elm_gengrid_item_insert_before()
8466     * @see elm_gengrid_item_insert_after()
8467     * @see elm_gengrid_item_del()
8468     *
8469     * @ingroup Gengrid
8470     */
8471    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);
8472
8473    /**
8474     * Insert an item before another in a gengrid widget
8475     *
8476     * @param obj The gengrid object.
8477     * @param gic The item class for the item.
8478     * @param data The item data.
8479     * @param relative The item to place this new one before.
8480     * @param func Convenience function called when the item is
8481     * selected.
8482     * @param func_data Data to be passed to @p func.
8483     * @return A handle to the item added or @c NULL, on errors.
8484     *
8485     * This inserts an item before another in the gengrid.
8486     *
8487     * @see elm_gengrid_item_append()
8488     * @see elm_gengrid_item_prepend()
8489     * @see elm_gengrid_item_insert_after()
8490     * @see elm_gengrid_item_del()
8491     *
8492     * @ingroup Gengrid
8493     */
8494    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);
8495
8496    /**
8497     * Insert an item after another in a gengrid widget
8498     *
8499     * @param obj The gengrid object.
8500     * @param gic The item class for the item.
8501     * @param data The item data.
8502     * @param relative The item to place this new one after.
8503     * @param func Convenience function called when the item is
8504     * selected.
8505     * @param func_data Data to be passed to @p func.
8506     * @return A handle to the item added or @c NULL, on errors.
8507     *
8508     * This inserts an item after another in the gengrid.
8509     *
8510     * @see elm_gengrid_item_append()
8511     * @see elm_gengrid_item_prepend()
8512     * @see elm_gengrid_item_insert_after()
8513     * @see elm_gengrid_item_del()
8514     *
8515     * @ingroup Gengrid
8516     */
8517    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);
8518
8519    /**
8520     * Insert an item in a gengrid widget using a user-defined sort function.
8521     *
8522     * @param obj The gengrid object.
8523     * @param gic The item class for the item.
8524     * @param data The item data.
8525     * @param comp User defined comparison function that defines the sort order based on
8526     * Elm_Gen_Item and its data param.
8527     * @param func Convenience function called when the item is selected.
8528     * @param func_data Data to be passed to @p func.
8529     * @return A handle to the item added or @c NULL, on errors.
8530     *
8531     * This inserts an item in the gengrid based on user defined comparison function.
8532     *
8533     * @see elm_gengrid_item_append()
8534     * @see elm_gengrid_item_prepend()
8535     * @see elm_gengrid_item_insert_after()
8536     * @see elm_gengrid_item_del()
8537     * @see elm_gengrid_item_direct_sorted_insert()
8538     *
8539     * @ingroup Gengrid
8540     */
8541    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);
8542
8543    /**
8544     * Insert an item in a gengrid widget using a user-defined sort function.
8545     *
8546     * @param obj The gengrid object.
8547     * @param gic The item class for the item.
8548     * @param data The item data.
8549     * @param comp User defined comparison function that defines the sort order based on
8550     * Elm_Gen_Item.
8551     * @param func Convenience function called when the item is selected.
8552     * @param func_data Data to be passed to @p func.
8553     * @return A handle to the item added or @c NULL, on errors.
8554     *
8555     * This inserts an item in the gengrid based on user defined comparison function.
8556     *
8557     * @see elm_gengrid_item_append()
8558     * @see elm_gengrid_item_prepend()
8559     * @see elm_gengrid_item_insert_after()
8560     * @see elm_gengrid_item_del()
8561     * @see elm_gengrid_item_sorted_insert()
8562     *
8563     * @ingroup Gengrid
8564     */
8565    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);
8566
8567    /**
8568     * Set whether items on a given gengrid widget are to get their
8569     * selection callbacks issued for @b every subsequent selection
8570     * click on them or just for the first click.
8571     *
8572     * @param obj The gengrid object
8573     * @param always_select @c EINA_TRUE to make items "always
8574     * selected", @c EINA_FALSE, otherwise
8575     *
8576     * By default, grid items will only call their selection callback
8577     * function when firstly getting selected, any subsequent further
8578     * clicks will do nothing. With this call, you make those
8579     * subsequent clicks also to issue the selection callbacks.
8580     *
8581     * @note <b>Double clicks</b> will @b always be reported on items.
8582     *
8583     * @see elm_gengrid_always_select_mode_get()
8584     *
8585     * @ingroup Gengrid
8586     */
8587    EAPI void               elm_gengrid_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
8588
8589    /**
8590     * Get whether items on a given gengrid widget have their selection
8591     * callbacks issued for @b every subsequent selection click on them
8592     * or just for the first click.
8593     *
8594     * @param obj The gengrid object.
8595     * @return @c EINA_TRUE if the gengrid items are "always selected",
8596     * @c EINA_FALSE, otherwise
8597     *
8598     * @see elm_gengrid_always_select_mode_set() for more details
8599     *
8600     * @ingroup Gengrid
8601     */
8602    EAPI Eina_Bool          elm_gengrid_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8603
8604    /**
8605     * Set whether items on a given gengrid widget can be selected or not.
8606     *
8607     * @param obj The gengrid object
8608     * @param no_select @c EINA_TRUE to make items selectable,
8609     * @c EINA_FALSE otherwise
8610     *
8611     * This will make items in @p obj selectable or not. In the latter
8612     * case, any user interaction on the gengrid items will neither make
8613     * them appear selected nor them call their selection callback
8614     * functions.
8615     *
8616     * @see elm_gengrid_no_select_mode_get()
8617     *
8618     * @ingroup Gengrid
8619     */
8620    EAPI void               elm_gengrid_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
8621
8622    /**
8623     * Get whether items on a given gengrid widget can be selected or
8624     * not.
8625     *
8626     * @param obj The gengrid object
8627     * @return @c EINA_TRUE, if items are selectable, @c EINA_FALSE
8628     * otherwise
8629     *
8630     * @see elm_gengrid_no_select_mode_set() for more details
8631     *
8632     * @ingroup Gengrid
8633     */
8634    EAPI Eina_Bool          elm_gengrid_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8635
8636    /**
8637     * Enable or disable multi-selection in a given gengrid widget
8638     *
8639     * @param obj The gengrid object.
8640     * @param multi @c EINA_TRUE, to enable multi-selection,
8641     * @c EINA_FALSE to disable it.
8642     *
8643     * Multi-selection is the ability to have @b more than one
8644     * item selected, on a given gengrid, simultaneously. When it is
8645     * enabled, a sequence of clicks on different items will make them
8646     * all selected, progressively. A click on an already selected item
8647     * will unselect it. If interacting via the keyboard,
8648     * multi-selection is enabled while holding the "Shift" key.
8649     *
8650     * @note By default, multi-selection is @b disabled on gengrids
8651     *
8652     * @see elm_gengrid_multi_select_get()
8653     *
8654     * @ingroup Gengrid
8655     */
8656    EAPI void               elm_gengrid_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
8657
8658    /**
8659     * Get whether multi-selection is enabled or disabled for a given
8660     * gengrid widget
8661     *
8662     * @param obj The gengrid object.
8663     * @return @c EINA_TRUE, if multi-selection is enabled, @c
8664     * EINA_FALSE otherwise
8665     *
8666     * @see elm_gengrid_multi_select_set() for more details
8667     *
8668     * @ingroup Gengrid
8669     */
8670    EAPI Eina_Bool          elm_gengrid_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8671
8672    /**
8673     * Enable or disable bouncing effect for a given gengrid widget
8674     *
8675     * @param obj The gengrid object
8676     * @param h_bounce @c EINA_TRUE, to enable @b horizontal bouncing,
8677     * @c EINA_FALSE to disable it
8678     * @param v_bounce @c EINA_TRUE, to enable @b vertical bouncing,
8679     * @c EINA_FALSE to disable it
8680     *
8681     * The bouncing effect occurs whenever one reaches the gengrid's
8682     * edge's while panning it -- it will scroll past its limits a
8683     * little bit and return to the edge again, in a animated for,
8684     * automatically.
8685     *
8686     * @note By default, gengrids have bouncing enabled on both axis
8687     *
8688     * @see elm_gengrid_bounce_get()
8689     *
8690     * @ingroup Gengrid
8691     */
8692    EAPI void               elm_gengrid_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
8693
8694    /**
8695     * Get whether bouncing effects are enabled or disabled, for a
8696     * given gengrid widget, on each axis
8697     *
8698     * @param obj The gengrid object
8699     * @param h_bounce Pointer to a variable where to store the
8700     * horizontal bouncing flag.
8701     * @param v_bounce Pointer to a variable where to store the
8702     * vertical bouncing flag.
8703     *
8704     * @see elm_gengrid_bounce_set() for more details
8705     *
8706     * @ingroup Gengrid
8707     */
8708    EAPI void               elm_gengrid_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
8709
8710    /**
8711     * Set a given gengrid widget's scrolling page size, relative to
8712     * its viewport size.
8713     *
8714     * @param obj The gengrid object
8715     * @param h_pagerel The horizontal page (relative) size
8716     * @param v_pagerel The vertical page (relative) size
8717     *
8718     * The gengrid's scroller is capable of binding scrolling by the
8719     * user to "pages". It means that, while scrolling and, specially
8720     * after releasing the mouse button, the grid will @b snap to the
8721     * nearest displaying page's area. When page sizes are set, the
8722     * grid's continuous content area is split into (equal) page sized
8723     * pieces.
8724     *
8725     * This function sets the size of a page <b>relatively to the
8726     * viewport dimensions</b> of the gengrid, for each axis. A value
8727     * @c 1.0 means "the exact viewport's size", in that axis, while @c
8728     * 0.0 turns paging off in that axis. Likewise, @c 0.5 means "half
8729     * a viewport". Sane usable values are, than, between @c 0.0 and @c
8730     * 1.0. Values beyond those will make it behave behave
8731     * inconsistently. If you only want one axis to snap to pages, use
8732     * the value @c 0.0 for the other one.
8733     *
8734     * There is a function setting page size values in @b absolute
8735     * values, too -- elm_gengrid_page_size_set(). Naturally, its use
8736     * is mutually exclusive to this one.
8737     *
8738     * @see elm_gengrid_page_relative_get()
8739     *
8740     * @ingroup Gengrid
8741     */
8742    EAPI void               elm_gengrid_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
8743
8744    /**
8745     * Get a given gengrid widget's scrolling page size, relative to
8746     * its viewport size.
8747     *
8748     * @param obj The gengrid object
8749     * @param h_pagerel Pointer to a variable where to store the
8750     * horizontal page (relative) size
8751     * @param v_pagerel Pointer to a variable where to store the
8752     * vertical page (relative) size
8753     *
8754     * @see elm_gengrid_page_relative_set() for more details
8755     *
8756     * @ingroup Gengrid
8757     */
8758    EAPI void               elm_gengrid_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel) EINA_ARG_NONNULL(1);
8759
8760    /**
8761     * Set a given gengrid widget's scrolling page size
8762     *
8763     * @param obj The gengrid object
8764     * @param h_pagerel The horizontal page size, in pixels
8765     * @param v_pagerel The vertical page size, in pixels
8766     *
8767     * The gengrid's scroller is capable of binding scrolling by the
8768     * user to "pages". It means that, while scrolling and, specially
8769     * after releasing the mouse button, the grid will @b snap to the
8770     * nearest displaying page's area. When page sizes are set, the
8771     * grid's continuous content area is split into (equal) page sized
8772     * pieces.
8773     *
8774     * This function sets the size of a page of the gengrid, in pixels,
8775     * for each axis. Sane usable values are, between @c 0 and the
8776     * dimensions of @p obj, for each axis. Values beyond those will
8777     * make it behave behave inconsistently. If you only want one axis
8778     * to snap to pages, use the value @c 0 for the other one.
8779     *
8780     * There is a function setting page size values in @b relative
8781     * values, too -- elm_gengrid_page_relative_set(). Naturally, its
8782     * use is mutually exclusive to this one.
8783     *
8784     * @ingroup Gengrid
8785     */
8786    EAPI void               elm_gengrid_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
8787
8788    /**
8789     * Set the direction in which a given gengrid widget will expand while
8790     * placing its items.
8791     *
8792     * @param obj The gengrid object.
8793     * @param setting @c EINA_TRUE to make the gengrid expand
8794     * horizontally, @c EINA_FALSE to expand vertically.
8795     *
8796     * When in "horizontal mode" (@c EINA_TRUE), items will be placed
8797     * in @b columns, from top to bottom and, when the space for a
8798     * column is filled, another one is started on the right, thus
8799     * expanding the grid horizontally. When in "vertical mode"
8800     * (@c EINA_FALSE), though, items will be placed in @b rows, from left
8801     * to right and, when the space for a row is filled, another one is
8802     * started below, thus expanding the grid vertically.
8803     *
8804     * @see elm_gengrid_horizontal_get()
8805     *
8806     * @ingroup Gengrid
8807     */
8808    EAPI void               elm_gengrid_horizontal_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
8809
8810    /**
8811     * Get for what direction a given gengrid widget will expand while
8812     * placing its items.
8813     *
8814     * @param obj The gengrid object.
8815     * @return @c EINA_TRUE, if @p obj is set to expand horizontally,
8816     * @c EINA_FALSE if it's set to expand vertically.
8817     *
8818     * @see elm_gengrid_horizontal_set() for more detais
8819     *
8820     * @ingroup Gengrid
8821     */
8822    EAPI Eina_Bool          elm_gengrid_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8823
8824    /**
8825     * Get the first item in a given gengrid widget
8826     *
8827     * @param obj The gengrid object
8828     * @return The first item's handle or @c NULL, if there are no
8829     * items in @p obj (and on errors)
8830     *
8831     * This returns the first item in the @p obj's internal list of
8832     * items.
8833     *
8834     * @see elm_gengrid_last_item_get()
8835     *
8836     * @ingroup Gengrid
8837     */
8838    EAPI Elm_Gengrid_Item  *elm_gengrid_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8839
8840    /**
8841     * Get the last item in a given gengrid widget
8842     *
8843     * @param obj The gengrid object
8844     * @return The last item's handle or @c NULL, if there are no
8845     * items in @p obj (and on errors)
8846     *
8847     * This returns the last item in the @p obj's internal list of
8848     * items.
8849     *
8850     * @see elm_gengrid_first_item_get()
8851     *
8852     * @ingroup Gengrid
8853     */
8854    EAPI Elm_Gengrid_Item  *elm_gengrid_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8855
8856    /**
8857     * Get the @b next item in a gengrid widget's internal list of items,
8858     * given a handle to one of those items.
8859     *
8860     * @param item The gengrid item to fetch next from
8861     * @return The item after @p item, or @c NULL if there's none (and
8862     * on errors)
8863     *
8864     * This returns the item placed after the @p item, on the container
8865     * gengrid.
8866     *
8867     * @see elm_gengrid_item_prev_get()
8868     *
8869     * @ingroup Gengrid
8870     */
8871    EAPI Elm_Gengrid_Item  *elm_gengrid_item_next_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8872
8873    /**
8874     * Get the @b previous item in a gengrid widget's internal list of items,
8875     * given a handle to one of those items.
8876     *
8877     * @param item The gengrid item to fetch previous from
8878     * @return The item before @p item, or @c NULL if there's none (and
8879     * on errors)
8880     *
8881     * This returns the item placed before the @p item, on the container
8882     * gengrid.
8883     *
8884     * @see elm_gengrid_item_next_get()
8885     *
8886     * @ingroup Gengrid
8887     */
8888    EAPI Elm_Gengrid_Item  *elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8889
8890    /**
8891     * Get the gengrid object's handle which contains a given gengrid
8892     * item
8893     *
8894     * @param item The item to fetch the container from
8895     * @return The gengrid (parent) object
8896     *
8897     * This returns the gengrid object itself that an item belongs to.
8898     *
8899     * @ingroup Gengrid
8900     */
8901    EAPI Evas_Object       *elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8902
8903    /**
8904     * Remove a gengrid item from its parent, deleting it.
8905     *
8906     * @param item The item to be removed.
8907     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
8908     *
8909     * @see elm_gengrid_clear(), to remove all items in a gengrid at
8910     * once.
8911     *
8912     * @ingroup Gengrid
8913     */
8914    EAPI void               elm_gengrid_item_del(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8915
8916    /**
8917     * Update the contents of a given gengrid item
8918     *
8919     * @param item The gengrid item
8920     *
8921     * This updates an item by calling all the item class functions
8922     * again to get the contents, labels and states. Use this when the
8923     * original item data has changed and you want the changes to be
8924     * reflected.
8925     *
8926     * @ingroup Gengrid
8927     */
8928    EAPI void               elm_gengrid_item_update(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8929
8930    /**
8931     * Get the Gengrid Item class for the given Gengrid Item.
8932     *
8933     * @param item The gengrid item
8934     *
8935     * This returns the Gengrid_Item_Class for the given item. It can be used to examine
8936     * the function pointers and item_style.
8937     *
8938     * @ingroup Gengrid
8939     */
8940    EAPI const Elm_Gengrid_Item_Class *elm_gengrid_item_item_class_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8941
8942    /**
8943     * Get the Gengrid Item class for the given Gengrid Item.
8944     *
8945     * This sets the Gengrid_Item_Class for the given item. It can be used to examine
8946     * the function pointers and item_style.
8947     *
8948     * @param item The gengrid item
8949     * @param gic The gengrid item class describing the function pointers and the item style.
8950     *
8951     * @ingroup Gengrid
8952     */
8953    EAPI void               elm_gengrid_item_item_class_set(Elm_Gengrid_Item *item, const Elm_Gengrid_Item_Class *gic) EINA_ARG_NONNULL(1, 2);
8954
8955    /**
8956     * Return the data associated to a given gengrid item
8957     *
8958     * @param item The gengrid item.
8959     * @return the data associated with this item.
8960     *
8961     * This returns the @c data value passed on the
8962     * elm_gengrid_item_append() and related item addition calls.
8963     *
8964     * @see elm_gengrid_item_append()
8965     * @see elm_gengrid_item_data_set()
8966     *
8967     * @ingroup Gengrid
8968     */
8969    EAPI void              *elm_gengrid_item_data_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8970
8971    /**
8972     * Set the data associated with a given gengrid item
8973     *
8974     * @param item The gengrid item
8975     * @param data The data pointer to set on it
8976     *
8977     * This @b overrides the @c data value passed on the
8978     * elm_gengrid_item_append() and related item addition calls. This
8979     * function @b won't call elm_gengrid_item_update() automatically,
8980     * so you'd issue it afterwards if you want to have the item
8981     * updated to reflect the new data.
8982     *
8983     * @see elm_gengrid_item_data_get()
8984     * @see elm_gengrid_item_update()
8985     *
8986     * @ingroup Gengrid
8987     */
8988    EAPI void               elm_gengrid_item_data_set(Elm_Gengrid_Item *item, const void *data) EINA_ARG_NONNULL(1);
8989
8990    /**
8991     * Get a given gengrid item's position, relative to the whole
8992     * gengrid's grid area.
8993     *
8994     * @param item The Gengrid item.
8995     * @param x Pointer to variable to store the item's <b>row number</b>.
8996     * @param y Pointer to variable to store the item's <b>column number</b>.
8997     *
8998     * This returns the "logical" position of the item within the
8999     * gengrid. For example, @c (0, 1) would stand for first row,
9000     * second column.
9001     *
9002     * @ingroup Gengrid
9003     */
9004    EAPI void               elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item, unsigned int *x, unsigned int *y) EINA_ARG_NONNULL(1);
9005
9006    /**
9007     * Set whether a given gengrid item is selected or not
9008     *
9009     * @param item The gengrid item
9010     * @param selected Use @c EINA_TRUE, to make it selected, @c
9011     * EINA_FALSE to make it unselected
9012     *
9013     * This sets the selected state of an item. If multi-selection is
9014     * not enabled on the containing gengrid and @p selected is @c
9015     * EINA_TRUE, any other previously selected items will get
9016     * unselected in favor of this new one.
9017     *
9018     * @see elm_gengrid_item_selected_get()
9019     *
9020     * @ingroup Gengrid
9021     */
9022    EAPI void               elm_gengrid_item_selected_set(Elm_Gengrid_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
9023
9024    /**
9025     * Get whether a given gengrid item is selected or not
9026     *
9027     * @param item The gengrid item
9028     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
9029     *
9030     * This API returns EINA_TRUE for all the items selected in multi-select mode as well.
9031     *
9032     * @see elm_gengrid_item_selected_set() for more details
9033     *
9034     * @ingroup Gengrid
9035     */
9036    EAPI Eina_Bool          elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9037
9038    /**
9039     * Get the real Evas object created to implement the view of a
9040     * given gengrid item
9041     *
9042     * @param item The gengrid item.
9043     * @return the Evas object implementing this item's view.
9044     *
9045     * This returns the actual Evas object used to implement the
9046     * specified gengrid item's view. This may be @c NULL, as it may
9047     * not have been created or may have been deleted, at any time, by
9048     * the gengrid. <b>Do not modify this object</b> (move, resize,
9049     * show, hide, etc.), as the gengrid is controlling it. This
9050     * function is for querying, emitting custom signals or hooking
9051     * lower level callbacks for events on that object. Do not delete
9052     * this object under any circumstances.
9053     *
9054     * @see elm_gengrid_item_data_get()
9055     *
9056     * @ingroup Gengrid
9057     */
9058    EAPI const Evas_Object *elm_gengrid_item_object_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9059
9060    /**
9061     * Show the portion of a gengrid's internal grid containing a given
9062     * item, @b immediately.
9063     *
9064     * @param item The item to display
9065     *
9066     * This causes gengrid to @b redraw its viewport's contents to the
9067     * region contining the given @p item item, if it is not fully
9068     * visible.
9069     *
9070     * @see elm_gengrid_item_bring_in()
9071     *
9072     * @ingroup Gengrid
9073     */
9074    EAPI void               elm_gengrid_item_show(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9075
9076    /**
9077     * Animatedly bring in, to the visible area of a gengrid, a given
9078     * item on it.
9079     *
9080     * @param item The gengrid item to display
9081     *
9082     * This causes gengrid to jump to the given @p item and show
9083     * it (by scrolling), if it is not fully visible. This will use
9084     * animation to do so and take a period of time to complete.
9085     *
9086     * @see elm_gengrid_item_show()
9087     *
9088     * @ingroup Gengrid
9089     */
9090    EAPI void               elm_gengrid_item_bring_in(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9091
9092    /**
9093     * Set whether a given gengrid item is disabled or not.
9094     *
9095     * @param item The gengrid item
9096     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
9097     * to enable it back.
9098     *
9099     * A disabled item cannot be selected or unselected. It will also
9100     * change its appearance, to signal the user it's disabled.
9101     *
9102     * @see elm_gengrid_item_disabled_get()
9103     *
9104     * @ingroup Gengrid
9105     */
9106    EAPI void               elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
9107
9108    /**
9109     * Get whether a given gengrid item is disabled or not.
9110     *
9111     * @param item The gengrid item
9112     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
9113     * (and on errors).
9114     *
9115     * @see elm_gengrid_item_disabled_set() for more details
9116     *
9117     * @ingroup Gengrid
9118     */
9119    EAPI Eina_Bool          elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9120
9121    /**
9122     * Set the text to be shown in a given gengrid item's tooltips.
9123     *
9124     * @param item The gengrid item
9125     * @param text The text to set in the content
9126     *
9127     * This call will setup the text to be used as tooltip to that item
9128     * (analogous to elm_object_tooltip_text_set(), but being item
9129     * tooltips with higher precedence than object tooltips). It can
9130     * have only one tooltip at a time, so any previous tooltip data
9131     * will get removed.
9132     *
9133     * @ingroup Gengrid
9134     */
9135    EAPI void               elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item, const char *text) EINA_ARG_NONNULL(1);
9136
9137    /**
9138     * Set the content to be shown in a given gengrid item's tooltip
9139     *
9140     * @param item The gengrid item.
9141     * @param func The function returning the tooltip contents.
9142     * @param data What to provide to @a func as callback data/context.
9143     * @param del_cb Called when data is not needed anymore, either when
9144     *        another callback replaces @p func, the tooltip is unset with
9145     *        elm_gengrid_item_tooltip_unset() or the owner @p item
9146     *        dies. This callback receives as its first parameter the
9147     *        given @p data, being @c event_info the item handle.
9148     *
9149     * This call will setup the tooltip's contents to @p item
9150     * (analogous to elm_object_tooltip_content_cb_set(), but being
9151     * item tooltips with higher precedence than object tooltips). It
9152     * can have only one tooltip at a time, so any previous tooltip
9153     * content will get removed. @p func (with @p data) will be called
9154     * every time Elementary needs to show the tooltip and it should
9155     * return a valid Evas object, which will be fully managed by the
9156     * tooltip system, getting deleted when the tooltip is gone.
9157     *
9158     * @ingroup Gengrid
9159     */
9160    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);
9161
9162    /**
9163     * Unset a tooltip from a given gengrid item
9164     *
9165     * @param item gengrid item to remove a previously set tooltip from.
9166     *
9167     * This call removes any tooltip set on @p item. The callback
9168     * provided as @c del_cb to
9169     * elm_gengrid_item_tooltip_content_cb_set() will be called to
9170     * notify it is not used anymore (and have resources cleaned, if
9171     * need be).
9172     *
9173     * @see elm_gengrid_item_tooltip_content_cb_set()
9174     *
9175     * @ingroup Gengrid
9176     */
9177    EAPI void               elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9178
9179    /**
9180     * Set a different @b style for a given gengrid item's tooltip.
9181     *
9182     * @param item gengrid item with tooltip set
9183     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
9184     * "default", @c "transparent", etc)
9185     *
9186     * Tooltips can have <b>alternate styles</b> to be displayed on,
9187     * which are defined by the theme set on Elementary. This function
9188     * works analogously as elm_object_tooltip_style_set(), but here
9189     * applied only to gengrid item objects. The default style for
9190     * tooltips is @c "default".
9191     *
9192     * @note before you set a style you should define a tooltip with
9193     *       elm_gengrid_item_tooltip_content_cb_set() or
9194     *       elm_gengrid_item_tooltip_text_set()
9195     *
9196     * @see elm_gengrid_item_tooltip_style_get()
9197     *
9198     * @ingroup Gengrid
9199     */
9200    EAPI void               elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
9201
9202    /**
9203     * Get the style set a given gengrid item's tooltip.
9204     *
9205     * @param item gengrid item with tooltip already set on.
9206     * @return style the theme style in use, which defaults to
9207     *         "default". If the object does not have a tooltip set,
9208     *         then @c NULL is returned.
9209     *
9210     * @see elm_gengrid_item_tooltip_style_set() for more details
9211     *
9212     * @ingroup Gengrid
9213     */
9214    EAPI const char        *elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9215    /**
9216     * Set the type of mouse pointer/cursor decoration to be shown,
9217     * when the mouse pointer is over the given gengrid widget item
9218     *
9219     * @param item gengrid item to customize cursor on
9220     * @param cursor the cursor type's name
9221     *
9222     * This function works analogously as elm_object_cursor_set(), but
9223     * here the cursor's changing area is restricted to the item's
9224     * area, and not the whole widget's. Note that that item cursors
9225     * have precedence over widget cursors, so that a mouse over @p
9226     * item will always show cursor @p type.
9227     *
9228     * If this function is called twice for an object, a previously set
9229     * cursor will be unset on the second call.
9230     *
9231     * @see elm_object_cursor_set()
9232     * @see elm_gengrid_item_cursor_get()
9233     * @see elm_gengrid_item_cursor_unset()
9234     *
9235     * @ingroup Gengrid
9236     */
9237    EAPI void               elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
9238
9239    /**
9240     * Get the type of mouse pointer/cursor decoration set to be shown,
9241     * when the mouse pointer is over the given gengrid widget item
9242     *
9243     * @param item gengrid item with custom cursor set
9244     * @return the cursor type's name or @c NULL, if no custom cursors
9245     * were set to @p item (and on errors)
9246     *
9247     * @see elm_object_cursor_get()
9248     * @see elm_gengrid_item_cursor_set() for more details
9249     * @see elm_gengrid_item_cursor_unset()
9250     *
9251     * @ingroup Gengrid
9252     */
9253    EAPI const char        *elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9254
9255    /**
9256     * Unset any custom mouse pointer/cursor decoration set to be
9257     * shown, when the mouse pointer is over the given gengrid widget
9258     * item, thus making it show the @b default cursor again.
9259     *
9260     * @param item a gengrid item
9261     *
9262     * Use this call to undo any custom settings on this item's cursor
9263     * decoration, bringing it back to defaults (no custom style set).
9264     *
9265     * @see elm_object_cursor_unset()
9266     * @see elm_gengrid_item_cursor_set() for more details
9267     *
9268     * @ingroup Gengrid
9269     */
9270    EAPI void               elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9271
9272    /**
9273     * Set a different @b style for a given custom cursor set for a
9274     * gengrid item.
9275     *
9276     * @param item gengrid item with custom cursor set
9277     * @param style the <b>theme style</b> to use (e.g. @c "default",
9278     * @c "transparent", etc)
9279     *
9280     * This function only makes sense when one is using custom mouse
9281     * cursor decorations <b>defined in a theme file</b> , which can
9282     * have, given a cursor name/type, <b>alternate styles</b> on
9283     * it. It works analogously as elm_object_cursor_style_set(), but
9284     * here applied only to gengrid item objects.
9285     *
9286     * @warning Before you set a cursor style you should have defined a
9287     *       custom cursor previously on the item, with
9288     *       elm_gengrid_item_cursor_set()
9289     *
9290     * @see elm_gengrid_item_cursor_engine_only_set()
9291     * @see elm_gengrid_item_cursor_style_get()
9292     *
9293     * @ingroup Gengrid
9294     */
9295    EAPI void               elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
9296
9297    /**
9298     * Get the current @b style set for a given gengrid item's custom
9299     * cursor
9300     *
9301     * @param item gengrid item with custom cursor set.
9302     * @return style the cursor style in use. If the object does not
9303     *         have a cursor set, then @c NULL is returned.
9304     *
9305     * @see elm_gengrid_item_cursor_style_set() for more details
9306     *
9307     * @ingroup Gengrid
9308     */
9309    EAPI const char        *elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9310
9311    /**
9312     * Set if the (custom) cursor for a given gengrid item should be
9313     * searched in its theme, also, or should only rely on the
9314     * rendering engine.
9315     *
9316     * @param item item with custom (custom) cursor already set on
9317     * @param engine_only Use @c EINA_TRUE to have cursors looked for
9318     * only on those provided by the rendering engine, @c EINA_FALSE to
9319     * have them searched on the widget's theme, as well.
9320     *
9321     * @note This call is of use only if you've set a custom cursor
9322     * for gengrid items, with elm_gengrid_item_cursor_set().
9323     *
9324     * @note By default, cursors will only be looked for between those
9325     * provided by the rendering engine.
9326     *
9327     * @ingroup Gengrid
9328     */
9329    EAPI void               elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
9330
9331    /**
9332     * Get if the (custom) cursor for a given gengrid item is being
9333     * searched in its theme, also, or is only relying on the rendering
9334     * engine.
9335     *
9336     * @param item a gengrid item
9337     * @return @c EINA_TRUE, if cursors are being looked for only on
9338     * those provided by the rendering engine, @c EINA_FALSE if they
9339     * are being searched on the widget's theme, as well.
9340     *
9341     * @see elm_gengrid_item_cursor_engine_only_set(), for more details
9342     *
9343     * @ingroup Gengrid
9344     */
9345    EAPI Eina_Bool          elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9346
9347    /**
9348     * Remove all items from a given gengrid widget
9349     *
9350     * @param obj The gengrid object.
9351     *
9352     * This removes (and deletes) all items in @p obj, leaving it
9353     * empty.
9354     *
9355     * @see elm_gengrid_item_del(), to remove just one item.
9356     *
9357     * @ingroup Gengrid
9358     */
9359    EAPI void               elm_gengrid_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
9360
9361    /**
9362     * Get the selected item in a given gengrid widget
9363     *
9364     * @param obj The gengrid object.
9365     * @return The selected item's handleor @c NULL, if none is
9366     * selected at the moment (and on errors)
9367     *
9368     * This returns the selected item in @p obj. If multi selection is
9369     * enabled on @p obj (@see elm_gengrid_multi_select_set()), only
9370     * the first item in the list is selected, which might not be very
9371     * useful. For that case, see elm_gengrid_selected_items_get().
9372     *
9373     * @ingroup Gengrid
9374     */
9375    EAPI Elm_Gengrid_Item  *elm_gengrid_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9376
9377    /**
9378     * Get <b>a list</b> of selected items in a given gengrid
9379     *
9380     * @param obj The gengrid object.
9381     * @return The list of selected items or @c NULL, if none is
9382     * selected at the moment (and on errors)
9383     *
9384     * This returns a list of the selected items, in the order that
9385     * they appear in the grid. This list is only valid as long as no
9386     * more items are selected or unselected (or unselected implictly
9387     * by deletion). The list contains #Elm_Gengrid_Item pointers as
9388     * data, naturally.
9389     *
9390     * @see elm_gengrid_selected_item_get()
9391     *
9392     * @ingroup Gengrid
9393     */
9394    EAPI const Eina_List   *elm_gengrid_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9395
9396    /**
9397     * @}
9398     */
9399
9400    /**
9401     * @defgroup Clock Clock
9402     *
9403     * @image html img/widget/clock/preview-00.png
9404     * @image latex img/widget/clock/preview-00.eps
9405     *
9406     * This is a @b digital clock widget. In its default theme, it has a
9407     * vintage "flipping numbers clock" appearance, which will animate
9408     * sheets of individual algarisms individually as time goes by.
9409     *
9410     * A newly created clock will fetch system's time (already
9411     * considering local time adjustments) to start with, and will tick
9412     * accondingly. It may or may not show seconds.
9413     *
9414     * Clocks have an @b edition mode. When in it, the sheets will
9415     * display extra arrow indications on the top and bottom and the
9416     * user may click on them to raise or lower the time values. After
9417     * it's told to exit edition mode, it will keep ticking with that
9418     * new time set (it keeps the difference from local time).
9419     *
9420     * Also, when under edition mode, user clicks on the cited arrows
9421     * which are @b held for some time will make the clock to flip the
9422     * sheet, thus editing the time, continuosly and automatically for
9423     * the user. The interval between sheet flips will keep growing in
9424     * time, so that it helps the user to reach a time which is distant
9425     * from the one set.
9426     *
9427     * The time display is, by default, in military mode (24h), but an
9428     * am/pm indicator may be optionally shown, too, when it will
9429     * switch to 12h.
9430     *
9431     * Smart callbacks one can register to:
9432     * - "changed" - the clock's user changed the time
9433     *
9434     * Here is an example on its usage:
9435     * @li @ref clock_example
9436     */
9437
9438    /**
9439     * @addtogroup Clock
9440     * @{
9441     */
9442
9443    /**
9444     * Identifiers for which clock digits should be editable, when a
9445     * clock widget is in edition mode. Values may be ORed together to
9446     * make a mask, naturally.
9447     *
9448     * @see elm_clock_edit_set()
9449     * @see elm_clock_digit_edit_set()
9450     */
9451    typedef enum _Elm_Clock_Digedit
9452      {
9453         ELM_CLOCK_NONE         = 0, /**< Default value. Means that all digits are editable, when in edition mode. */
9454         ELM_CLOCK_HOUR_DECIMAL = 1 << 0, /**< Decimal algarism of hours value should be editable */
9455         ELM_CLOCK_HOUR_UNIT    = 1 << 1, /**< Unit algarism of hours value should be editable */
9456         ELM_CLOCK_MIN_DECIMAL  = 1 << 2, /**< Decimal algarism of minutes value should be editable */
9457         ELM_CLOCK_MIN_UNIT     = 1 << 3, /**< Unit algarism of minutes value should be editable */
9458         ELM_CLOCK_SEC_DECIMAL  = 1 << 4, /**< Decimal algarism of seconds value should be editable */
9459         ELM_CLOCK_SEC_UNIT     = 1 << 5, /**< Unit algarism of seconds value should be editable */
9460         ELM_CLOCK_ALL          = (1 << 6) - 1 /**< All digits should be editable */
9461      } Elm_Clock_Digedit;
9462
9463    /**
9464     * Add a new clock widget to the given parent Elementary
9465     * (container) object
9466     *
9467     * @param parent The parent object
9468     * @return a new clock widget handle or @c NULL, on errors
9469     *
9470     * This function inserts a new clock widget on the canvas.
9471     *
9472     * @ingroup Clock
9473     */
9474    EAPI Evas_Object      *elm_clock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9475
9476    /**
9477     * Set a clock widget's time, programmatically
9478     *
9479     * @param obj The clock widget object
9480     * @param hrs The hours to set
9481     * @param min The minutes to set
9482     * @param sec The secondes to set
9483     *
9484     * This function updates the time that is showed by the clock
9485     * widget.
9486     *
9487     *  Values @b must be set within the following ranges:
9488     * - 0 - 23, for hours
9489     * - 0 - 59, for minutes
9490     * - 0 - 59, for seconds,
9491     *
9492     * even if the clock is not in "military" mode.
9493     *
9494     * @warning The behavior for values set out of those ranges is @b
9495     * undefined.
9496     *
9497     * @ingroup Clock
9498     */
9499    EAPI void              elm_clock_time_set(Evas_Object *obj, int hrs, int min, int sec) EINA_ARG_NONNULL(1);
9500
9501    /**
9502     * Get a clock widget's time values
9503     *
9504     * @param obj The clock object
9505     * @param[out] hrs Pointer to the variable to get the hours value
9506     * @param[out] min Pointer to the variable to get the minutes value
9507     * @param[out] sec Pointer to the variable to get the seconds value
9508     *
9509     * This function gets the time set for @p obj, returning
9510     * it on the variables passed as the arguments to function
9511     *
9512     * @note Use @c NULL pointers on the time values you're not
9513     * interested in: they'll be ignored by the function.
9514     *
9515     * @ingroup Clock
9516     */
9517    EAPI void              elm_clock_time_get(const Evas_Object *obj, int *hrs, int *min, int *sec) EINA_ARG_NONNULL(1);
9518
9519    /**
9520     * Set whether a given clock widget is under <b>edition mode</b> or
9521     * under (default) displaying-only mode.
9522     *
9523     * @param obj The clock object
9524     * @param edit @c EINA_TRUE to put it in edition, @c EINA_FALSE to
9525     * put it back to "displaying only" mode
9526     *
9527     * This function makes a clock's time to be editable or not <b>by
9528     * user interaction</b>. When in edition mode, clocks @b stop
9529     * ticking, until one brings them back to canonical mode. The
9530     * elm_clock_digit_edit_set() function will influence which digits
9531     * of the clock will be editable. By default, all of them will be
9532     * (#ELM_CLOCK_NONE).
9533     *
9534     * @note am/pm sheets, if being shown, will @b always be editable
9535     * under edition mode.
9536     *
9537     * @see elm_clock_edit_get()
9538     *
9539     * @ingroup Clock
9540     */
9541    EAPI void              elm_clock_edit_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
9542
9543    /**
9544     * Retrieve whether a given clock widget is under <b>edition
9545     * mode</b> or under (default) displaying-only mode.
9546     *
9547     * @param obj The clock object
9548     * @param edit @c EINA_TRUE, if it's in edition mode, @c EINA_FALSE
9549     * otherwise
9550     *
9551     * This function retrieves whether the clock's time can be edited
9552     * or not by user interaction.
9553     *
9554     * @see elm_clock_edit_set() for more details
9555     *
9556     * @ingroup Clock
9557     */
9558    EAPI Eina_Bool         elm_clock_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9559
9560    /**
9561     * Set what digits of the given clock widget should be editable
9562     * when in edition mode.
9563     *
9564     * @param obj The clock object
9565     * @param digedit Bit mask indicating the digits to be editable
9566     * (values in #Elm_Clock_Digedit).
9567     *
9568     * If the @p digedit param is #ELM_CLOCK_NONE, editing will be
9569     * disabled on @p obj (same effect as elm_clock_edit_set(), with @c
9570     * EINA_FALSE).
9571     *
9572     * @see elm_clock_digit_edit_get()
9573     *
9574     * @ingroup Clock
9575     */
9576    EAPI void              elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Digedit digedit) EINA_ARG_NONNULL(1);
9577
9578    /**
9579     * Retrieve what digits of the given clock widget should be
9580     * editable when in edition mode.
9581     *
9582     * @param obj The clock object
9583     * @return Bit mask indicating the digits to be editable
9584     * (values in #Elm_Clock_Digedit).
9585     *
9586     * @see elm_clock_digit_edit_set() for more details
9587     *
9588     * @ingroup Clock
9589     */
9590    EAPI Elm_Clock_Digedit elm_clock_digit_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9591
9592    /**
9593     * Set if the given clock widget must show hours in military or
9594     * am/pm mode
9595     *
9596     * @param obj The clock object
9597     * @param am_pm @c EINA_TRUE to put it in am/pm mode, @c EINA_FALSE
9598     * to military mode
9599     *
9600     * This function sets if the clock must show hours in military or
9601     * am/pm mode. In some countries like Brazil the military mode
9602     * (00-24h-format) is used, in opposition to the USA, where the
9603     * am/pm mode is more commonly used.
9604     *
9605     * @see elm_clock_show_am_pm_get()
9606     *
9607     * @ingroup Clock
9608     */
9609    EAPI void              elm_clock_show_am_pm_set(Evas_Object *obj, Eina_Bool am_pm) EINA_ARG_NONNULL(1);
9610
9611    /**
9612     * Get if the given clock widget shows hours in military or am/pm
9613     * mode
9614     *
9615     * @param obj The clock object
9616     * @return @c EINA_TRUE, if in am/pm mode, @c EINA_FALSE if in
9617     * military
9618     *
9619     * This function gets if the clock shows hours in military or am/pm
9620     * mode.
9621     *
9622     * @see elm_clock_show_am_pm_set() for more details
9623     *
9624     * @ingroup Clock
9625     */
9626    EAPI Eina_Bool         elm_clock_show_am_pm_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9627
9628    /**
9629     * Set if the given clock widget must show time with seconds or not
9630     *
9631     * @param obj The clock object
9632     * @param seconds @c EINA_TRUE to show seconds, @c EINA_FALSE otherwise
9633     *
9634     * This function sets if the given clock must show or not elapsed
9635     * seconds. By default, they are @b not shown.
9636     *
9637     * @see elm_clock_show_seconds_get()
9638     *
9639     * @ingroup Clock
9640     */
9641    EAPI void              elm_clock_show_seconds_set(Evas_Object *obj, Eina_Bool seconds) EINA_ARG_NONNULL(1);
9642
9643    /**
9644     * Get whether the given clock widget is showing time with seconds
9645     * or not
9646     *
9647     * @param obj The clock object
9648     * @return @c EINA_TRUE if it's showing seconds, @c EINA_FALSE otherwise
9649     *
9650     * This function gets whether @p obj is showing or not the elapsed
9651     * seconds.
9652     *
9653     * @see elm_clock_show_seconds_set()
9654     *
9655     * @ingroup Clock
9656     */
9657    EAPI Eina_Bool         elm_clock_show_seconds_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9658
9659    /**
9660     * Set the interval on time updates for an user mouse button hold
9661     * on clock widgets' time edition.
9662     *
9663     * @param obj The clock object
9664     * @param interval The (first) interval value in seconds
9665     *
9666     * This interval value is @b decreased while the user holds the
9667     * mouse pointer either incrementing or decrementing a given the
9668     * clock digit's value.
9669     *
9670     * This helps the user to get to a given time distant from the
9671     * current one easier/faster, as it will start to flip quicker and
9672     * quicker on mouse button holds.
9673     *
9674     * The calculation for the next flip interval value, starting from
9675     * the one set with this call, is the previous interval divided by
9676     * 1.05, so it decreases a little bit.
9677     *
9678     * The default starting interval value for automatic flips is
9679     * @b 0.85 seconds.
9680     *
9681     * @see elm_clock_interval_get()
9682     *
9683     * @ingroup Clock
9684     */
9685    EAPI void              elm_clock_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
9686
9687    /**
9688     * Get the interval on time updates for an user mouse button hold
9689     * on clock widgets' time edition.
9690     *
9691     * @param obj The clock object
9692     * @return The (first) interval value, in seconds, set on it
9693     *
9694     * @see elm_clock_interval_set() for more details
9695     *
9696     * @ingroup Clock
9697     */
9698    EAPI double            elm_clock_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9699
9700    /**
9701     * @}
9702     */
9703
9704    /**
9705     * @defgroup Layout Layout
9706     *
9707     * @image html img/widget/layout/preview-00.png
9708     * @image latex img/widget/layout/preview-00.eps width=\textwidth
9709     *
9710     * @image html img/layout-predefined.png
9711     * @image latex img/layout-predefined.eps width=\textwidth
9712     *
9713     * This is a container widget that takes a standard Edje design file and
9714     * wraps it very thinly in a widget.
9715     *
9716     * An Edje design (theme) file has a very wide range of possibilities to
9717     * describe the behavior of elements added to the Layout. Check out the Edje
9718     * documentation and the EDC reference to get more information about what can
9719     * be done with Edje.
9720     *
9721     * Just like @ref List, @ref Box, and other container widgets, any
9722     * object added to the Layout will become its child, meaning that it will be
9723     * deleted if the Layout is deleted, move if the Layout is moved, and so on.
9724     *
9725     * The Layout widget can contain as many Contents, Boxes or Tables as
9726     * described in its theme file. For instance, objects can be added to
9727     * different Tables by specifying the respective Table part names. The same
9728     * is valid for Content and Box.
9729     *
9730     * The objects added as child of the Layout will behave as described in the
9731     * part description where they were added. There are 3 possible types of
9732     * parts where a child can be added:
9733     *
9734     * @section secContent Content (SWALLOW part)
9735     *
9736     * Only one object can be added to the @c SWALLOW part (but you still can
9737     * have many @c SWALLOW parts and one object on each of them). Use the @c
9738     * elm_object_content_set/get/unset functions to set, retrieve and unset 
9739     * objects as content of the @c SWALLOW. After being set to this part, the 
9740     * object size, position, visibility, clipping and other description 
9741     * properties will be totally controled by the description of the given part 
9742     * (inside the Edje theme file).
9743     *
9744     * One can use @c evas_object_size_hint_* functions on the child to have some
9745     * kind of control over its behavior, but the resulting behavior will still
9746     * depend heavily on the @c SWALLOW part description.
9747     *
9748     * The Edje theme also can change the part description, based on signals or
9749     * scripts running inside the theme. This change can also be animated. All of
9750     * this will affect the child object set as content accordingly. The object
9751     * size will be changed if the part size is changed, it will animate move if
9752     * the part is moving, and so on.
9753     *
9754     * The following picture demonstrates a Layout widget with a child object
9755     * added to its @c SWALLOW:
9756     *
9757     * @image html layout_swallow.png
9758     * @image latex layout_swallow.eps width=\textwidth
9759     *
9760     * @section secBox Box (BOX part)
9761     *
9762     * An Edje @c BOX part is very similar to the Elementary @ref Box widget. It
9763     * allows one to add objects to the box and have them distributed along its
9764     * area, accordingly to the specified @a layout property (now by @a layout we
9765     * mean the chosen layouting design of the Box, not the Layout widget
9766     * itself).
9767     *
9768     * A similar effect for having a box with its position, size and other things
9769     * controled by the Layout theme would be to create an Elementary @ref Box
9770     * widget and add it as a Content in the @c SWALLOW part.
9771     *
9772     * The main difference of using the Layout Box is that its behavior, the box
9773     * properties like layouting format, padding, align, etc. will be all
9774     * controled by the theme. This means, for example, that a signal could be
9775     * sent to the Layout theme (with elm_object_signal_emit()) and the theme
9776     * handled the signal by changing the box padding, or align, or both. Using
9777     * the Elementary @ref Box widget is not necessarily harder or easier, it
9778     * just depends on the circunstances and requirements.
9779     *
9780     * The Layout Box can be used through the @c elm_layout_box_* set of
9781     * functions.
9782     *
9783     * The following picture demonstrates a Layout widget with many child objects
9784     * added to its @c BOX part:
9785     *
9786     * @image html layout_box.png
9787     * @image latex layout_box.eps width=\textwidth
9788     *
9789     * @section secTable Table (TABLE part)
9790     *
9791     * Just like the @ref secBox, the Layout Table is very similar to the
9792     * Elementary @ref Table widget. It allows one to add objects to the Table
9793     * specifying the row and column where the object should be added, and any
9794     * column or row span if necessary.
9795     *
9796     * Again, we could have this design by adding a @ref Table widget to the @c
9797     * SWALLOW part using elm_object_content_part_set(). The same difference happens
9798     * here when choosing to use the Layout Table (a @c TABLE part) instead of
9799     * the @ref Table plus @c SWALLOW part. It's just a matter of convenience.
9800     *
9801     * The Layout Table can be used through the @c elm_layout_table_* set of
9802     * functions.
9803     *
9804     * The following picture demonstrates a Layout widget with many child objects
9805     * added to its @c TABLE part:
9806     *
9807     * @image html layout_table.png
9808     * @image latex layout_table.eps width=\textwidth
9809     *
9810     * @section secPredef Predefined Layouts
9811     *
9812     * Another interesting thing about the Layout widget is that it offers some
9813     * predefined themes that come with the default Elementary theme. These
9814     * themes can be set by the call elm_layout_theme_set(), and provide some
9815     * basic functionality depending on the theme used.
9816     *
9817     * Most of them already send some signals, some already provide a toolbar or
9818     * back and next buttons.
9819     *
9820     * These are available predefined theme layouts. All of them have class = @c
9821     * layout, group = @c application, and style = one of the following options:
9822     *
9823     * @li @c toolbar-content - application with toolbar and main content area
9824     * @li @c toolbar-content-back - application with toolbar and main content
9825     * area with a back button and title area
9826     * @li @c toolbar-content-back-next - application with toolbar and main
9827     * content area with a back and next buttons and title area
9828     * @li @c content-back - application with a main content area with a back
9829     * button and title area
9830     * @li @c content-back-next - application with a main content area with a
9831     * back and next buttons and title area
9832     * @li @c toolbar-vbox - application with toolbar and main content area as a
9833     * vertical box
9834     * @li @c toolbar-table - application with toolbar and main content area as a
9835     * table
9836     *
9837     * @section secExamples Examples
9838     *
9839     * Some examples of the Layout widget can be found here:
9840     * @li @ref layout_example_01
9841     * @li @ref layout_example_02
9842     * @li @ref layout_example_03
9843     * @li @ref layout_example_edc
9844     *
9845     */
9846
9847    /**
9848     * Add a new layout to the parent
9849     *
9850     * @param parent The parent object
9851     * @return The new object or NULL if it cannot be created
9852     *
9853     * @see elm_layout_file_set()
9854     * @see elm_layout_theme_set()
9855     *
9856     * @ingroup Layout
9857     */
9858    EAPI Evas_Object       *elm_layout_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9859    /**
9860     * Set the file that will be used as layout
9861     *
9862     * @param obj The layout object
9863     * @param file The path to file (edj) that will be used as layout
9864     * @param group The group that the layout belongs in edje file
9865     *
9866     * @return (1 = success, 0 = error)
9867     *
9868     * @ingroup Layout
9869     */
9870    EAPI Eina_Bool          elm_layout_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
9871    /**
9872     * Set the edje group from the elementary theme that will be used as layout
9873     *
9874     * @param obj The layout object
9875     * @param clas the clas of the group
9876     * @param group the group
9877     * @param style the style to used
9878     *
9879     * @return (1 = success, 0 = error)
9880     *
9881     * @ingroup Layout
9882     */
9883    EAPI Eina_Bool          elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, const char *style) EINA_ARG_NONNULL(1);
9884    /**
9885     * Set the layout content.
9886     *
9887     * @param obj The layout object
9888     * @param swallow The swallow part name in the edje file
9889     * @param content The child that will be added in this layout object
9890     *
9891     * Once the content object is set, a previously set one will be deleted.
9892     * If you want to keep that old content object, use the
9893     * elm_object_content_part_unset() function.
9894     *
9895     * @note In an Edje theme, the part used as a content container is called @c
9896     * SWALLOW. This is why the parameter name is called @p swallow, but it is
9897     * expected to be a part name just like the second parameter of
9898     * elm_layout_box_append().
9899     *
9900     * @see elm_layout_box_append()
9901     * @see elm_object_content_part_get()
9902     * @see elm_object_content_part_unset()
9903     * @see @ref secBox
9904     *
9905     * @ingroup Layout
9906     */
9907    EAPI void               elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
9908    /**
9909     * Get the child object in the given content part.
9910     *
9911     * @param obj The layout object
9912     * @param swallow The SWALLOW part to get its content
9913     *
9914     * @return The swallowed object or NULL if none or an error occurred
9915     *
9916     * @see elm_object_content_part_set()
9917     *
9918     * @ingroup Layout
9919     */
9920    EAPI Evas_Object       *elm_layout_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
9921    /**
9922     * Unset the layout content.
9923     *
9924     * @param obj The layout object
9925     * @param swallow The swallow part name in the edje file
9926     * @return The content that was being used
9927     *
9928     * Unparent and return the content object which was set for this part.
9929     *
9930     * @see elm_object_content_part_set()
9931     *
9932     * @ingroup Layout
9933     */
9934    EAPI Evas_Object       *elm_layout_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
9935    /**
9936     * Set the text of the given part
9937     *
9938     * @param obj The layout object
9939     * @param part The TEXT part where to set the text
9940     * @param text The text to set
9941     *
9942     * @ingroup Layout
9943     * @deprecated use elm_object_text_* instead.
9944     */
9945    EINA_DEPRECATED EAPI void               elm_layout_text_set(Evas_Object *obj, const char *part, const char *text) EINA_ARG_NONNULL(1);
9946    /**
9947     * Get the text set in the given part
9948     *
9949     * @param obj The layout object
9950     * @param part The TEXT part to retrieve the text off
9951     *
9952     * @return The text set in @p part
9953     *
9954     * @ingroup Layout
9955     * @deprecated use elm_object_text_* instead.
9956     */
9957    EINA_DEPRECATED EAPI const char        *elm_layout_text_get(const Evas_Object *obj, const char *part) EINA_ARG_NONNULL(1);
9958    /**
9959     * Append child to layout box part.
9960     *
9961     * @param obj the layout object
9962     * @param part the box part to which the object will be appended.
9963     * @param child the child object to append to box.
9964     *
9965     * Once the object is appended, it will become child of the layout. Its
9966     * lifetime will be bound to the layout, whenever the layout dies the child
9967     * will be deleted automatically. One should use elm_layout_box_remove() to
9968     * make this layout forget about the object.
9969     *
9970     * @see elm_layout_box_prepend()
9971     * @see elm_layout_box_insert_before()
9972     * @see elm_layout_box_insert_at()
9973     * @see elm_layout_box_remove()
9974     *
9975     * @ingroup Layout
9976     */
9977    EAPI void               elm_layout_box_append(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
9978    /**
9979     * Prepend child to layout box part.
9980     *
9981     * @param obj the layout object
9982     * @param part the box part to prepend.
9983     * @param child the child object to prepend to box.
9984     *
9985     * Once the object is prepended, it will become child of the layout. Its
9986     * lifetime will be bound to the layout, whenever the layout dies the child
9987     * will be deleted automatically. One should use elm_layout_box_remove() to
9988     * make this layout forget about the object.
9989     *
9990     * @see elm_layout_box_append()
9991     * @see elm_layout_box_insert_before()
9992     * @see elm_layout_box_insert_at()
9993     * @see elm_layout_box_remove()
9994     *
9995     * @ingroup Layout
9996     */
9997    EAPI void               elm_layout_box_prepend(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
9998    /**
9999     * Insert child to layout box part before a reference object.
10000     *
10001     * @param obj the layout object
10002     * @param part the box part to insert.
10003     * @param child the child object to insert into box.
10004     * @param reference another reference object to insert before in box.
10005     *
10006     * Once the object is inserted, it will become child of the layout. Its
10007     * lifetime will be bound to the layout, whenever the layout dies the child
10008     * will be deleted automatically. One should use elm_layout_box_remove() to
10009     * make this layout forget about the object.
10010     *
10011     * @see elm_layout_box_append()
10012     * @see elm_layout_box_prepend()
10013     * @see elm_layout_box_insert_before()
10014     * @see elm_layout_box_remove()
10015     *
10016     * @ingroup Layout
10017     */
10018    EAPI void               elm_layout_box_insert_before(Evas_Object *obj, const char *part, Evas_Object *child, const Evas_Object *reference) EINA_ARG_NONNULL(1);
10019    /**
10020     * Insert child to layout box part at a given position.
10021     *
10022     * @param obj the layout object
10023     * @param part the box part to insert.
10024     * @param child the child object to insert into box.
10025     * @param pos the numeric position >=0 to insert the child.
10026     *
10027     * Once the object is inserted, it will become child of the layout. Its
10028     * lifetime will be bound to the layout, whenever the layout dies the child
10029     * will be deleted automatically. One should use elm_layout_box_remove() to
10030     * make this layout forget about the object.
10031     *
10032     * @see elm_layout_box_append()
10033     * @see elm_layout_box_prepend()
10034     * @see elm_layout_box_insert_before()
10035     * @see elm_layout_box_remove()
10036     *
10037     * @ingroup Layout
10038     */
10039    EAPI void               elm_layout_box_insert_at(Evas_Object *obj, const char *part, Evas_Object *child, unsigned int pos) EINA_ARG_NONNULL(1);
10040    /**
10041     * Remove a child of the given part box.
10042     *
10043     * @param obj The layout object
10044     * @param part The box part name to remove child.
10045     * @param child The object to remove from box.
10046     * @return The object that was being used, or NULL if not found.
10047     *
10048     * The object will be removed from the box part and its lifetime will
10049     * not be handled by the layout anymore. This is equivalent to
10050     * elm_object_content_part_unset() for box.
10051     *
10052     * @see elm_layout_box_append()
10053     * @see elm_layout_box_remove_all()
10054     *
10055     * @ingroup Layout
10056     */
10057    EAPI Evas_Object       *elm_layout_box_remove(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1, 2, 3);
10058    /**
10059     * Remove all child of the given part box.
10060     *
10061     * @param obj The layout object
10062     * @param part The box part name to remove child.
10063     * @param clear If EINA_TRUE, then all objects will be deleted as
10064     *        well, otherwise they will just be removed and will be
10065     *        dangling on the canvas.
10066     *
10067     * The objects will be removed from the box part and their lifetime will
10068     * not be handled by the layout anymore. This is equivalent to
10069     * elm_layout_box_remove() for all box children.
10070     *
10071     * @see elm_layout_box_append()
10072     * @see elm_layout_box_remove()
10073     *
10074     * @ingroup Layout
10075     */
10076    EAPI void               elm_layout_box_remove_all(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
10077    /**
10078     * Insert child to layout table part.
10079     *
10080     * @param obj the layout object
10081     * @param part the box part to pack child.
10082     * @param child_obj the child object to pack into table.
10083     * @param col the column to which the child should be added. (>= 0)
10084     * @param row the row to which the child should be added. (>= 0)
10085     * @param colspan how many columns should be used to store this object. (>=
10086     *        1)
10087     * @param rowspan how many rows should be used to store this object. (>= 1)
10088     *
10089     * Once the object is inserted, it will become child of the table. Its
10090     * lifetime will be bound to the layout, and whenever the layout dies the
10091     * child will be deleted automatically. One should use
10092     * elm_layout_table_remove() to make this layout forget about the object.
10093     *
10094     * If @p colspan or @p rowspan are bigger than 1, that object will occupy
10095     * more space than a single cell. For instance, the following code:
10096     * @code
10097     * elm_layout_table_pack(layout, "table_part", child, 0, 1, 3, 1);
10098     * @endcode
10099     *
10100     * Would result in an object being added like the following picture:
10101     *
10102     * @image html layout_colspan.png
10103     * @image latex layout_colspan.eps width=\textwidth
10104     *
10105     * @see elm_layout_table_unpack()
10106     * @see elm_layout_table_clear()
10107     *
10108     * @ingroup Layout
10109     */
10110    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);
10111    /**
10112     * Unpack (remove) a child of the given part table.
10113     *
10114     * @param obj The layout object
10115     * @param part The table part name to remove child.
10116     * @param child_obj The object to remove from table.
10117     * @return The object that was being used, or NULL if not found.
10118     *
10119     * The object will be unpacked from the table part and its lifetime
10120     * will not be handled by the layout anymore. This is equivalent to
10121     * elm_object_content_part_unset() for table.
10122     *
10123     * @see elm_layout_table_pack()
10124     * @see elm_layout_table_clear()
10125     *
10126     * @ingroup Layout
10127     */
10128    EAPI Evas_Object       *elm_layout_table_unpack(Evas_Object *obj, const char *part, Evas_Object *child_obj) EINA_ARG_NONNULL(1, 2, 3);
10129    /**
10130     * Remove all child of the given part table.
10131     *
10132     * @param obj The layout object
10133     * @param part The table part name to remove child.
10134     * @param clear If EINA_TRUE, then all objects will be deleted as
10135     *        well, otherwise they will just be removed and will be
10136     *        dangling on the canvas.
10137     *
10138     * The objects will be removed from the table part and their lifetime will
10139     * not be handled by the layout anymore. This is equivalent to
10140     * elm_layout_table_unpack() for all table children.
10141     *
10142     * @see elm_layout_table_pack()
10143     * @see elm_layout_table_unpack()
10144     *
10145     * @ingroup Layout
10146     */
10147    EAPI void               elm_layout_table_clear(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
10148    /**
10149     * Get the edje layout
10150     *
10151     * @param obj The layout object
10152     *
10153     * @return A Evas_Object with the edje layout settings loaded
10154     * with function elm_layout_file_set
10155     *
10156     * This returns the edje object. It is not expected to be used to then
10157     * swallow objects via edje_object_part_swallow() for example. Use
10158     * elm_object_content_part_set() instead so child object handling and sizing is
10159     * done properly.
10160     *
10161     * @note This function should only be used if you really need to call some
10162     * low level Edje function on this edje object. All the common stuff (setting
10163     * text, emitting signals, hooking callbacks to signals, etc.) can be done
10164     * with proper elementary functions.
10165     *
10166     * @see elm_object_signal_callback_add()
10167     * @see elm_object_signal_emit()
10168     * @see elm_object_text_part_set()
10169     * @see elm_object_content_part_set()
10170     * @see elm_layout_box_append()
10171     * @see elm_layout_table_pack()
10172     * @see elm_layout_data_get()
10173     *
10174     * @ingroup Layout
10175     */
10176    EAPI Evas_Object       *elm_layout_edje_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10177    /**
10178     * Get the edje data from the given layout
10179     *
10180     * @param obj The layout object
10181     * @param key The data key
10182     *
10183     * @return The edje data string
10184     *
10185     * This function fetches data specified inside the edje theme of this layout.
10186     * This function return NULL if data is not found.
10187     *
10188     * In EDC this comes from a data block within the group block that @p
10189     * obj was loaded from. E.g.
10190     *
10191     * @code
10192     * collections {
10193     *   group {
10194     *     name: "a_group";
10195     *     data {
10196     *       item: "key1" "value1";
10197     *       item: "key2" "value2";
10198     *     }
10199     *   }
10200     * }
10201     * @endcode
10202     *
10203     * @ingroup Layout
10204     */
10205    EAPI const char        *elm_layout_data_get(const Evas_Object *obj, const char *key) EINA_ARG_NONNULL(1, 2);
10206    /**
10207     * Eval sizing
10208     *
10209     * @param obj The layout object
10210     *
10211     * Manually forces a sizing re-evaluation. This is useful when the minimum
10212     * size required by the edje theme of this layout has changed. The change on
10213     * the minimum size required by the edje theme is not immediately reported to
10214     * the elementary layout, so one needs to call this function in order to tell
10215     * the widget (layout) that it needs to reevaluate its own size.
10216     *
10217     * The minimum size of the theme is calculated based on minimum size of
10218     * parts, the size of elements inside containers like box and table, etc. All
10219     * of this can change due to state changes, and that's when this function
10220     * should be called.
10221     *
10222     * Also note that a standard signal of "size,eval" "elm" emitted from the
10223     * edje object will cause this to happen too.
10224     *
10225     * @ingroup Layout
10226     */
10227    EAPI void               elm_layout_sizing_eval(Evas_Object *obj) EINA_ARG_NONNULL(1);
10228
10229    /**
10230     * Sets a specific cursor for an edje part.
10231     *
10232     * @param obj The layout object.
10233     * @param part_name a part from loaded edje group.
10234     * @param cursor cursor name to use, see Elementary_Cursor.h
10235     *
10236     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10237     *         part not exists or it has "mouse_events: 0".
10238     *
10239     * @ingroup Layout
10240     */
10241    EAPI Eina_Bool          elm_layout_part_cursor_set(Evas_Object *obj, const char *part_name, const char *cursor) EINA_ARG_NONNULL(1, 2);
10242
10243    /**
10244     * Get the cursor to be shown when mouse is over an edje part
10245     *
10246     * @param obj The layout object.
10247     * @param part_name a part from loaded edje group.
10248     * @return the cursor name.
10249     *
10250     * @ingroup Layout
10251     */
10252    EAPI const char        *elm_layout_part_cursor_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10253
10254    /**
10255     * Unsets a cursor previously set with elm_layout_part_cursor_set().
10256     *
10257     * @param obj The layout object.
10258     * @param part_name a part from loaded edje group, that had a cursor set
10259     *        with elm_layout_part_cursor_set().
10260     *
10261     * @ingroup Layout
10262     */
10263    EAPI void               elm_layout_part_cursor_unset(Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10264
10265    /**
10266     * Sets a specific cursor style for an edje part.
10267     *
10268     * @param obj The layout object.
10269     * @param part_name a part from loaded edje group.
10270     * @param style the theme style to use (default, transparent, ...)
10271     *
10272     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10273     *         part not exists or it did not had a cursor set.
10274     *
10275     * @ingroup Layout
10276     */
10277    EAPI Eina_Bool          elm_layout_part_cursor_style_set(Evas_Object *obj, const char *part_name, const char *style) EINA_ARG_NONNULL(1, 2);
10278
10279    /**
10280     * Gets a specific cursor style for an edje part.
10281     *
10282     * @param obj The layout object.
10283     * @param part_name a part from loaded edje group.
10284     *
10285     * @return the theme style in use, defaults to "default". If the
10286     *         object does not have a cursor set, then NULL is returned.
10287     *
10288     * @ingroup Layout
10289     */
10290    EAPI const char        *elm_layout_part_cursor_style_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10291
10292    /**
10293     * Sets if the cursor set should be searched on the theme or should use
10294     * the provided by the engine, only.
10295     *
10296     * @note before you set if should look on theme you should define a
10297     * cursor with elm_layout_part_cursor_set(). By default it will only
10298     * look for cursors provided by the engine.
10299     *
10300     * @param obj The layout object.
10301     * @param part_name a part from loaded edje group.
10302     * @param engine_only if cursors should be just provided by the engine
10303     *        or should also search on widget's theme as well
10304     *
10305     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10306     *         part not exists or it did not had a cursor set.
10307     *
10308     * @ingroup Layout
10309     */
10310    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);
10311
10312    /**
10313     * Gets a specific cursor engine_only for an edje part.
10314     *
10315     * @param obj The layout object.
10316     * @param part_name a part from loaded edje group.
10317     *
10318     * @return whenever the cursor is just provided by engine or also from theme.
10319     *
10320     * @ingroup Layout
10321     */
10322    EAPI Eina_Bool          elm_layout_part_cursor_engine_only_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10323
10324 /**
10325  * @def elm_layout_icon_set
10326  * Convienience macro to set the icon object in a layout that follows the
10327  * Elementary naming convention for its parts.
10328  *
10329  * @ingroup Layout
10330  */
10331 #define elm_layout_icon_set(_ly, _obj) \
10332   do { \
10333     const char *sig; \
10334     elm_object_content_part_set((_ly), "elm.swallow.icon", (_obj)); \
10335     if ((_obj)) sig = "elm,state,icon,visible"; \
10336     else sig = "elm,state,icon,hidden"; \
10337     elm_object_signal_emit((_ly), sig, "elm"); \
10338   } while (0)
10339
10340 /**
10341  * @def elm_layout_icon_get
10342  * Convienience macro to get the icon object from a layout that follows the
10343  * Elementary naming convention for its parts.
10344  *
10345  * @ingroup Layout
10346  */
10347 #define elm_layout_icon_get(_ly) \
10348   elm_object_content_part_get((_ly), "elm.swallow.icon")
10349
10350 /**
10351  * @def elm_layout_end_set
10352  * Convienience macro to set the end object in a layout that follows the
10353  * Elementary naming convention for its parts.
10354  *
10355  * @ingroup Layout
10356  */
10357 #define elm_layout_end_set(_ly, _obj) \
10358   do { \
10359     const char *sig; \
10360     elm_object_content_part_set((_ly), "elm.swallow.end", (_obj)); \
10361     if ((_obj)) sig = "elm,state,end,visible"; \
10362     else sig = "elm,state,end,hidden"; \
10363     elm_object_signal_emit((_ly), sig, "elm"); \
10364   } while (0)
10365
10366 /**
10367  * @def elm_layout_end_get
10368  * Convienience macro to get the end object in a layout that follows the
10369  * Elementary naming convention for its parts.
10370  *
10371  * @ingroup Layout
10372  */
10373 #define elm_layout_end_get(_ly) \
10374   elm_object_content_part_get((_ly), "elm.swallow.end")
10375
10376 /**
10377  * @def elm_layout_label_set
10378  * Convienience macro to set the label in a layout that follows the
10379  * Elementary naming convention for its parts.
10380  *
10381  * @ingroup Layout
10382  * @deprecated use elm_object_text_* instead.
10383  */
10384 #define elm_layout_label_set(_ly, _txt) \
10385   elm_layout_text_set((_ly), "elm.text", (_txt))
10386
10387 /**
10388  * @def elm_layout_label_get
10389  * Convenience macro to get the label in a layout that follows the
10390  * Elementary naming convention for its parts.
10391  *
10392  * @ingroup Layout
10393  * @deprecated use elm_object_text_* instead.
10394  */
10395 #define elm_layout_label_get(_ly) \
10396   elm_layout_text_get((_ly), "elm.text")
10397
10398    /* smart callbacks called:
10399     * "theme,changed" - when elm theme is changed.
10400     */
10401
10402    /**
10403     * @defgroup Notify Notify
10404     *
10405     * @image html img/widget/notify/preview-00.png
10406     * @image latex img/widget/notify/preview-00.eps
10407     *
10408     * Display a container in a particular region of the parent(top, bottom,
10409     * etc).  A timeout can be set to automatically hide the notify. This is so
10410     * that, after an evas_object_show() on a notify object, if a timeout was set
10411     * on it, it will @b automatically get hidden after that time.
10412     *
10413     * Signals that you can add callbacks for are:
10414     * @li "timeout" - when timeout happens on notify and it's hidden
10415     * @li "block,clicked" - when a click outside of the notify happens
10416     *
10417     * Default contents parts of the notify widget that you can use for are:
10418     * @li "elm.swallow.content" - A content of the notify
10419     *
10420     * @ref tutorial_notify show usage of the API.
10421     *
10422     * @{
10423     */
10424    /**
10425     * @brief Possible orient values for notify.
10426     *
10427     * This values should be used in conjunction to elm_notify_orient_set() to
10428     * set the position in which the notify should appear(relative to its parent)
10429     * and in conjunction with elm_notify_orient_get() to know where the notify
10430     * is appearing.
10431     */
10432    typedef enum _Elm_Notify_Orient
10433      {
10434         ELM_NOTIFY_ORIENT_TOP, /**< Notify should appear in the top of parent, default */
10435         ELM_NOTIFY_ORIENT_CENTER, /**< Notify should appear in the center of parent */
10436         ELM_NOTIFY_ORIENT_BOTTOM, /**< Notify should appear in the bottom of parent */
10437         ELM_NOTIFY_ORIENT_LEFT, /**< Notify should appear in the left of parent */
10438         ELM_NOTIFY_ORIENT_RIGHT, /**< Notify should appear in the right of parent */
10439         ELM_NOTIFY_ORIENT_TOP_LEFT, /**< Notify should appear in the top left of parent */
10440         ELM_NOTIFY_ORIENT_TOP_RIGHT, /**< Notify should appear in the top right of parent */
10441         ELM_NOTIFY_ORIENT_BOTTOM_LEFT, /**< Notify should appear in the bottom left of parent */
10442         ELM_NOTIFY_ORIENT_BOTTOM_RIGHT, /**< Notify should appear in the bottom right of parent */
10443         ELM_NOTIFY_ORIENT_LAST /**< Sentinel value, @b don't use */
10444      } Elm_Notify_Orient;
10445    /**
10446     * @brief Add a new notify to the parent
10447     *
10448     * @param parent The parent object
10449     * @return The new object or NULL if it cannot be created
10450     */
10451    EAPI Evas_Object      *elm_notify_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10452    /**
10453     * @brief Set the content of the notify widget
10454     *
10455     * @param obj The notify object
10456     * @param content The content will be filled in this notify object
10457     *
10458     * Once the content object is set, a previously set one will be deleted. If
10459     * you want to keep that old content object, use the
10460     * elm_notify_content_unset() function.
10461     */
10462    EAPI void              elm_notify_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
10463    /**
10464     * @brief Unset the content of the notify widget
10465     *
10466     * @param obj The notify object
10467     * @return The content that was being used
10468     *
10469     * Unparent and return the content object which was set for this widget
10470     *
10471     * @see elm_notify_content_set()
10472     */
10473    EAPI Evas_Object      *elm_notify_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
10474    /**
10475     * @brief Return the content of the notify widget
10476     *
10477     * @param obj The notify object
10478     * @return The content that is being used
10479     *
10480     * @see elm_notify_content_set()
10481     */
10482    EAPI Evas_Object      *elm_notify_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10483    /**
10484     * @brief Set the notify parent
10485     *
10486     * @param obj The notify object
10487     * @param content The new parent
10488     *
10489     * Once the parent object is set, a previously set one will be disconnected
10490     * and replaced.
10491     */
10492    EAPI void              elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10493    /**
10494     * @brief Get the notify parent
10495     *
10496     * @param obj The notify object
10497     * @return The parent
10498     *
10499     * @see elm_notify_parent_set()
10500     */
10501    EAPI Evas_Object      *elm_notify_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10502    /**
10503     * @brief Set the orientation
10504     *
10505     * @param obj The notify object
10506     * @param orient The new orientation
10507     *
10508     * Sets the position in which the notify will appear in its parent.
10509     *
10510     * @see @ref Elm_Notify_Orient for possible values.
10511     */
10512    EAPI void              elm_notify_orient_set(Evas_Object *obj, Elm_Notify_Orient orient) EINA_ARG_NONNULL(1);
10513    /**
10514     * @brief Return the orientation
10515     * @param obj The notify object
10516     * @return The orientation of the notification
10517     *
10518     * @see elm_notify_orient_set()
10519     * @see Elm_Notify_Orient
10520     */
10521    EAPI Elm_Notify_Orient elm_notify_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10522    /**
10523     * @brief Set the time interval after which the notify window is going to be
10524     * hidden.
10525     *
10526     * @param obj The notify object
10527     * @param time The timeout in seconds
10528     *
10529     * This function sets a timeout and starts the timer controlling when the
10530     * notify is hidden. Since calling evas_object_show() on a notify restarts
10531     * the timer controlling when the notify is hidden, setting this before the
10532     * notify is shown will in effect mean starting the timer when the notify is
10533     * shown.
10534     *
10535     * @note Set a value <= 0.0 to disable a running timer.
10536     *
10537     * @note If the value > 0.0 and the notify is previously visible, the
10538     * timer will be started with this value, canceling any running timer.
10539     */
10540    EAPI void              elm_notify_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
10541    /**
10542     * @brief Return the timeout value (in seconds)
10543     * @param obj the notify object
10544     *
10545     * @see elm_notify_timeout_set()
10546     */
10547    EAPI double            elm_notify_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10548    /**
10549     * @brief Sets whether events should be passed to by a click outside
10550     * its area.
10551     *
10552     * @param obj The notify object
10553     * @param repeats EINA_TRUE Events are repeats, else no
10554     *
10555     * When true if the user clicks outside the window the events will be caught
10556     * by the others widgets, else the events are blocked.
10557     *
10558     * @note The default value is EINA_TRUE.
10559     */
10560    EAPI void              elm_notify_repeat_events_set(Evas_Object *obj, Eina_Bool repeat) EINA_ARG_NONNULL(1);
10561    /**
10562     * @brief Return true if events are repeat below the notify object
10563     * @param obj the notify object
10564     *
10565     * @see elm_notify_repeat_events_set()
10566     */
10567    EAPI Eina_Bool         elm_notify_repeat_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10568    /**
10569     * @}
10570     */
10571
10572    /**
10573     * @defgroup Hover Hover
10574     *
10575     * @image html img/widget/hover/preview-00.png
10576     * @image latex img/widget/hover/preview-00.eps
10577     *
10578     * A Hover object will hover over its @p parent object at the @p target
10579     * location. Anything in the background will be given a darker coloring to
10580     * indicate that the hover object is on top (at the default theme). When the
10581     * hover is clicked it is dismissed(hidden), if the contents of the hover are
10582     * clicked that @b doesn't cause the hover to be dismissed.
10583     *
10584     * A Hover object has two parents. One parent that owns it during creation
10585     * and the other parent being the one over which the hover object spans.
10586     *
10587     *
10588     * @note The hover object will take up the entire space of @p target
10589     * object.
10590     *
10591     * Elementary has the following styles for the hover widget:
10592     * @li default
10593     * @li popout
10594     * @li menu
10595     * @li hoversel_vertical
10596     *
10597     * The following are the available position for content:
10598     * @li left
10599     * @li top-left
10600     * @li top
10601     * @li top-right
10602     * @li right
10603     * @li bottom-right
10604     * @li bottom
10605     * @li bottom-left
10606     * @li middle
10607     * @li smart
10608     *
10609     * Signals that you can add callbacks for are:
10610     * @li "clicked" - the user clicked the empty space in the hover to dismiss
10611     * @li "smart,changed" - a content object placed under the "smart"
10612     *                   policy was replaced to a new slot direction.
10613     *
10614     * See @ref tutorial_hover for more information.
10615     *
10616     * @{
10617     */
10618    typedef enum _Elm_Hover_Axis
10619      {
10620         ELM_HOVER_AXIS_NONE, /**< ELM_HOVER_AXIS_NONE -- no prefered orientation */
10621         ELM_HOVER_AXIS_HORIZONTAL, /**< ELM_HOVER_AXIS_HORIZONTAL -- horizontal */
10622         ELM_HOVER_AXIS_VERTICAL, /**< ELM_HOVER_AXIS_VERTICAL -- vertical */
10623         ELM_HOVER_AXIS_BOTH /**< ELM_HOVER_AXIS_BOTH -- both */
10624      } Elm_Hover_Axis;
10625    /**
10626     * @brief Adds a hover object to @p parent
10627     *
10628     * @param parent The parent object
10629     * @return The hover object or NULL if one could not be created
10630     */
10631    EAPI Evas_Object *elm_hover_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10632    /**
10633     * @brief Sets the target object for the hover.
10634     *
10635     * @param obj The hover object
10636     * @param target The object to center the hover onto. The hover
10637     *
10638     * This function will cause the hover to be centered on the target object.
10639     */
10640    EAPI void         elm_hover_target_set(Evas_Object *obj, Evas_Object *target) EINA_ARG_NONNULL(1);
10641    /**
10642     * @brief Gets the target object for the hover.
10643     *
10644     * @param obj The hover object
10645     * @param parent The object to locate the hover over.
10646     *
10647     * @see elm_hover_target_set()
10648     */
10649    EAPI Evas_Object *elm_hover_target_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10650    /**
10651     * @brief Sets the parent object for the hover.
10652     *
10653     * @param obj The hover object
10654     * @param parent The object to locate the hover over.
10655     *
10656     * This function will cause the hover to take up the entire space that the
10657     * parent object fills.
10658     */
10659    EAPI void         elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10660    /**
10661     * @brief Gets the parent object for the hover.
10662     *
10663     * @param obj The hover object
10664     * @return The parent object to locate the hover over.
10665     *
10666     * @see elm_hover_parent_set()
10667     */
10668    EAPI Evas_Object *elm_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10669    /**
10670     * @brief Sets the content of the hover object and the direction in which it
10671     * will pop out.
10672     *
10673     * @param obj The hover object
10674     * @param swallow The direction that the object will be displayed
10675     * at. Accepted values are "left", "top-left", "top", "top-right",
10676     * "right", "bottom-right", "bottom", "bottom-left", "middle" and
10677     * "smart".
10678     * @param content The content to place at @p swallow
10679     *
10680     * Once the content object is set for a given direction, a previously
10681     * set one (on the same direction) will be deleted. If you want to
10682     * keep that old content object, use the elm_hover_content_unset()
10683     * function.
10684     *
10685     * All directions may have contents at the same time, except for
10686     * "smart". This is a special placement hint and its use case
10687     * independs of the calculations coming from
10688     * elm_hover_best_content_location_get(). Its use is for cases when
10689     * one desires only one hover content, but with a dinamic special
10690     * placement within the hover area. The content's geometry, whenever
10691     * it changes, will be used to decide on a best location not
10692     * extrapolating the hover's parent object view to show it in (still
10693     * being the hover's target determinant of its medium part -- move and
10694     * resize it to simulate finger sizes, for example). If one of the
10695     * directions other than "smart" are used, a previously content set
10696     * using it will be deleted, and vice-versa.
10697     */
10698    EAPI void         elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
10699    /**
10700     * @brief Get the content of the hover object, in a given direction.
10701     *
10702     * Return the content object which was set for this widget in the
10703     * @p swallow direction.
10704     *
10705     * @param obj The hover object
10706     * @param swallow The direction that the object was display at.
10707     * @return The content that was being used
10708     *
10709     * @see elm_hover_content_set()
10710     */
10711    EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10712    /**
10713     * @brief Unset the content of the hover object, in a given direction.
10714     *
10715     * Unparent and return the content object set at @p swallow direction.
10716     *
10717     * @param obj The hover object
10718     * @param swallow The direction that the object was display at.
10719     * @return The content that was being used.
10720     *
10721     * @see elm_hover_content_set()
10722     */
10723    EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10724    /**
10725     * @brief Returns the best swallow location for content in the hover.
10726     *
10727     * @param obj The hover object
10728     * @param pref_axis The preferred orientation axis for the hover object to use
10729     * @return The edje location to place content into the hover or @c
10730     *         NULL, on errors.
10731     *
10732     * Best is defined here as the location at which there is the most available
10733     * space.
10734     *
10735     * @p pref_axis may be one of
10736     * - @c ELM_HOVER_AXIS_NONE -- no prefered orientation
10737     * - @c ELM_HOVER_AXIS_HORIZONTAL -- horizontal
10738     * - @c ELM_HOVER_AXIS_VERTICAL -- vertical
10739     * - @c ELM_HOVER_AXIS_BOTH -- both
10740     *
10741     * If ELM_HOVER_AXIS_HORIZONTAL is choosen the returned position will
10742     * nescessarily be along the horizontal axis("left" or "right"). If
10743     * ELM_HOVER_AXIS_VERTICAL is choosen the returned position will nescessarily
10744     * be along the vertical axis("top" or "bottom"). Chossing
10745     * ELM_HOVER_AXIS_BOTH or ELM_HOVER_AXIS_NONE has the same effect and the
10746     * returned position may be in either axis.
10747     *
10748     * @see elm_hover_content_set()
10749     */
10750    EAPI const char  *elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis) EINA_ARG_NONNULL(1);
10751    /**
10752     * @}
10753     */
10754
10755    /* entry */
10756    /**
10757     * @defgroup Entry Entry
10758     *
10759     * @image html img/widget/entry/preview-00.png
10760     * @image latex img/widget/entry/preview-00.eps width=\textwidth
10761     * @image html img/widget/entry/preview-01.png
10762     * @image latex img/widget/entry/preview-01.eps width=\textwidth
10763     * @image html img/widget/entry/preview-02.png
10764     * @image latex img/widget/entry/preview-02.eps width=\textwidth
10765     * @image html img/widget/entry/preview-03.png
10766     * @image latex img/widget/entry/preview-03.eps width=\textwidth
10767     *
10768     * An entry is a convenience widget which shows a box that the user can
10769     * enter text into. Entries by default don't scroll, so they grow to
10770     * accomodate the entire text, resizing the parent window as needed. This
10771     * can be changed with the elm_entry_scrollable_set() function.
10772     *
10773     * They can also be single line or multi line (the default) and when set
10774     * to multi line mode they support text wrapping in any of the modes
10775     * indicated by #Elm_Wrap_Type.
10776     *
10777     * Other features include password mode, filtering of inserted text with
10778     * elm_entry_text_filter_append() and related functions, inline "items" and
10779     * formatted markup text.
10780     *
10781     * @section entry-markup Formatted text
10782     *
10783     * The markup tags supported by the Entry are defined by the theme, but
10784     * even when writing new themes or extensions it's a good idea to stick to
10785     * a sane default, to maintain coherency and avoid application breakages.
10786     * Currently defined by the default theme are the following tags:
10787     * @li \<br\>: Inserts a line break.
10788     * @li \<ps\>: Inserts a paragraph separator. This is preferred over line
10789     * breaks.
10790     * @li \<tab\>: Inserts a tab.
10791     * @li \<em\>...\</em\>: Emphasis. Sets the @em oblique style for the
10792     * enclosed text.
10793     * @li \<b\>...\</b\>: Sets the @b bold style for the enclosed text.
10794     * @li \<link\>...\</link\>: Underlines the enclosed text.
10795     * @li \<hilight\>...\</hilight\>: Hilights the enclosed text.
10796     *
10797     * @section entry-special Special markups
10798     *
10799     * Besides those used to format text, entries support two special markup
10800     * tags used to insert clickable portions of text or items inlined within
10801     * the text.
10802     *
10803     * @subsection entry-anchors Anchors
10804     *
10805     * Anchors are similar to HTML anchors. Text can be surrounded by \<a\> and
10806     * \</a\> tags and an event will be generated when this text is clicked,
10807     * like this:
10808     *
10809     * @code
10810     * This text is outside <a href=anc-01>but this one is an anchor</a>
10811     * @endcode
10812     *
10813     * The @c href attribute in the opening tag gives the name that will be
10814     * used to identify the anchor and it can be any valid utf8 string.
10815     *
10816     * When an anchor is clicked, an @c "anchor,clicked" signal is emitted with
10817     * an #Elm_Entry_Anchor_Info in the @c event_info parameter for the
10818     * callback function. The same applies for "anchor,in" (mouse in), "anchor,out"
10819     * (mouse out), "anchor,down" (mouse down), and "anchor,up" (mouse up) events on
10820     * an anchor.
10821     *
10822     * @subsection entry-items Items
10823     *
10824     * Inlined in the text, any other @c Evas_Object can be inserted by using
10825     * \<item\> tags this way:
10826     *
10827     * @code
10828     * <item size=16x16 vsize=full href=emoticon/haha></item>
10829     * @endcode
10830     *
10831     * Just like with anchors, the @c href identifies each item, but these need,
10832     * in addition, to indicate their size, which is done using any one of
10833     * @c size, @c absize or @c relsize attributes. These attributes take their
10834     * value in the WxH format, where W is the width and H the height of the
10835     * item.
10836     *
10837     * @li absize: Absolute pixel size for the item. Whatever value is set will
10838     * be the item's size regardless of any scale value the object may have
10839     * been set to. The final line height will be adjusted to fit larger items.
10840     * @li size: Similar to @c absize, but it's adjusted to the scale value set
10841     * for the object.
10842     * @li relsize: Size is adjusted for the item to fit within the current
10843     * line height.
10844     *
10845     * Besides their size, items are specificed a @c vsize value that affects
10846     * how their final size and position are calculated. The possible values
10847     * are:
10848     * @li ascent: Item will be placed within the line's baseline and its
10849     * ascent. That is, the height between the line where all characters are
10850     * positioned and the highest point in the line. For @c size and @c absize
10851     * items, the descent value will be added to the total line height to make
10852     * them fit. @c relsize items will be adjusted to fit within this space.
10853     * @li full: Items will be placed between the descent and ascent, or the
10854     * lowest point in the line and its highest.
10855     *
10856     * The next image shows different configurations of items and how they
10857     * are the previously mentioned options affect their sizes. In all cases,
10858     * the green line indicates the ascent, blue for the baseline and red for
10859     * the descent.
10860     *
10861     * @image html entry_item.png
10862     * @image latex entry_item.eps width=\textwidth
10863     *
10864     * And another one to show how size differs from absize. In the first one,
10865     * the scale value is set to 1.0, while the second one is using one of 2.0.
10866     *
10867     * @image html entry_item_scale.png
10868     * @image latex entry_item_scale.eps width=\textwidth
10869     *
10870     * After the size for an item is calculated, the entry will request an
10871     * object to place in its space. For this, the functions set with
10872     * elm_entry_item_provider_append() and related functions will be called
10873     * in order until one of them returns a @c non-NULL value. If no providers
10874     * are available, or all of them return @c NULL, then the entry falls back
10875     * to one of the internal defaults, provided the name matches with one of
10876     * them.
10877     *
10878     * All of the following are currently supported:
10879     *
10880     * - emoticon/angry
10881     * - emoticon/angry-shout
10882     * - emoticon/crazy-laugh
10883     * - emoticon/evil-laugh
10884     * - emoticon/evil
10885     * - emoticon/goggle-smile
10886     * - emoticon/grumpy
10887     * - emoticon/grumpy-smile
10888     * - emoticon/guilty
10889     * - emoticon/guilty-smile
10890     * - emoticon/haha
10891     * - emoticon/half-smile
10892     * - emoticon/happy-panting
10893     * - emoticon/happy
10894     * - emoticon/indifferent
10895     * - emoticon/kiss
10896     * - emoticon/knowing-grin
10897     * - emoticon/laugh
10898     * - emoticon/little-bit-sorry
10899     * - emoticon/love-lots
10900     * - emoticon/love
10901     * - emoticon/minimal-smile
10902     * - emoticon/not-happy
10903     * - emoticon/not-impressed
10904     * - emoticon/omg
10905     * - emoticon/opensmile
10906     * - emoticon/smile
10907     * - emoticon/sorry
10908     * - emoticon/squint-laugh
10909     * - emoticon/surprised
10910     * - emoticon/suspicious
10911     * - emoticon/tongue-dangling
10912     * - emoticon/tongue-poke
10913     * - emoticon/uh
10914     * - emoticon/unhappy
10915     * - emoticon/very-sorry
10916     * - emoticon/what
10917     * - emoticon/wink
10918     * - emoticon/worried
10919     * - emoticon/wtf
10920     *
10921     * Alternatively, an item may reference an image by its path, using
10922     * the URI form @c file:///path/to/an/image.png and the entry will then
10923     * use that image for the item.
10924     *
10925     * @section entry-files Loading and saving files
10926     *
10927     * Entries have convinience functions to load text from a file and save
10928     * changes back to it after a short delay. The automatic saving is enabled
10929     * by default, but can be disabled with elm_entry_autosave_set() and files
10930     * can be loaded directly as plain text or have any markup in them
10931     * recognized. See elm_entry_file_set() for more details.
10932     *
10933     * @section entry-signals Emitted signals
10934     *
10935     * This widget emits the following signals:
10936     *
10937     * @li "changed": The text within the entry was changed.
10938     * @li "changed,user": The text within the entry was changed because of user interaction.
10939     * @li "activated": The enter key was pressed on a single line entry.
10940     * @li "press": A mouse button has been pressed on the entry.
10941     * @li "longpressed": A mouse button has been pressed and held for a couple
10942     * seconds.
10943     * @li "clicked": The entry has been clicked (mouse press and release).
10944     * @li "clicked,double": The entry has been double clicked.
10945     * @li "clicked,triple": The entry has been triple clicked.
10946     * @li "focused": The entry has received focus.
10947     * @li "unfocused": The entry has lost focus.
10948     * @li "selection,paste": A paste of the clipboard contents was requested.
10949     * @li "selection,copy": A copy of the selected text into the clipboard was
10950     * requested.
10951     * @li "selection,cut": A cut of the selected text into the clipboard was
10952     * requested.
10953     * @li "selection,start": A selection has begun and no previous selection
10954     * existed.
10955     * @li "selection,changed": The current selection has changed.
10956     * @li "selection,cleared": The current selection has been cleared.
10957     * @li "cursor,changed": The cursor has changed position.
10958     * @li "anchor,clicked": An anchor has been clicked. The event_info
10959     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10960     * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
10961     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10962     * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
10963     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10964     * @li "anchor,up": Mouse button has been unpressed on an anchor. The event_info
10965     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10966     * @li "anchor,down": Mouse button has been pressed on an anchor. The event_info
10967     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10968     * @li "preedit,changed": The preedit string has changed.
10969     * @li "language,changed": Program language changed.
10970     *
10971     * @section entry-examples
10972     *
10973     * An overview of the Entry API can be seen in @ref entry_example_01
10974     *
10975     * @{
10976     */
10977    /**
10978     * @typedef Elm_Entry_Anchor_Info
10979     *
10980     * The info sent in the callback for the "anchor,clicked" signals emitted
10981     * by entries.
10982     */
10983    typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
10984    /**
10985     * @struct _Elm_Entry_Anchor_Info
10986     *
10987     * The info sent in the callback for the "anchor,clicked" signals emitted
10988     * by entries.
10989     */
10990    struct _Elm_Entry_Anchor_Info
10991      {
10992         const char *name; /**< The name of the anchor, as stated in its href */
10993         int         button; /**< The mouse button used to click on it */
10994         Evas_Coord  x, /**< Anchor geometry, relative to canvas */
10995                     y, /**< Anchor geometry, relative to canvas */
10996                     w, /**< Anchor geometry, relative to canvas */
10997                     h; /**< Anchor geometry, relative to canvas */
10998      };
10999    /**
11000     * @typedef Elm_Entry_Filter_Cb
11001     * This callback type is used by entry filters to modify text.
11002     * @param data The data specified as the last param when adding the filter
11003     * @param entry The entry object
11004     * @param text A pointer to the location of the text being filtered. This data can be modified,
11005     * but any additional allocations must be managed by the user.
11006     * @see elm_entry_text_filter_append
11007     * @see elm_entry_text_filter_prepend
11008     */
11009    typedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text);
11010
11011    /**
11012     * This adds an entry to @p parent object.
11013     *
11014     * By default, entries are:
11015     * @li not scrolled
11016     * @li multi-line
11017     * @li word wrapped
11018     * @li autosave is enabled
11019     *
11020     * @param parent The parent object
11021     * @return The new object or NULL if it cannot be created
11022     */
11023    EAPI Evas_Object *elm_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11024    /**
11025     * Sets the entry to single line mode.
11026     *
11027     * In single line mode, entries don't ever wrap when the text reaches the
11028     * edge, and instead they keep growing horizontally. Pressing the @c Enter
11029     * key will generate an @c "activate" event instead of adding a new line.
11030     *
11031     * When @p single_line is @c EINA_FALSE, line wrapping takes effect again
11032     * and pressing enter will break the text into a different line
11033     * without generating any events.
11034     *
11035     * @param obj The entry object
11036     * @param single_line If true, the text in the entry
11037     * will be on a single line.
11038     */
11039    EAPI void         elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
11040    /**
11041     * Gets whether the entry is set to be single line.
11042     *
11043     * @param obj The entry object
11044     * @return single_line If true, the text in the entry is set to display
11045     * on a single line.
11046     *
11047     * @see elm_entry_single_line_set()
11048     */
11049    EAPI Eina_Bool    elm_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11050    /**
11051     * Sets the entry to password mode.
11052     *
11053     * In password mode, entries are implicitly single line and the display of
11054     * any text in them is replaced with asterisks (*).
11055     *
11056     * @param obj The entry object
11057     * @param password If true, password mode is enabled.
11058     */
11059    EAPI void         elm_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
11060    /**
11061     * Gets whether the entry is set to password mode.
11062     *
11063     * @param obj The entry object
11064     * @return If true, the entry is set to display all characters
11065     * as asterisks (*).
11066     *
11067     * @see elm_entry_password_set()
11068     */
11069    EAPI Eina_Bool    elm_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11070    /**
11071     * This sets the text displayed within the entry to @p entry.
11072     *
11073     * @param obj The entry object
11074     * @param entry The text to be displayed
11075     *
11076     * @deprecated Use elm_object_text_set() instead.
11077     * @note Using this function bypasses text filters
11078     */
11079    EAPI void         elm_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11080    /**
11081     * This returns the text currently shown in object @p entry.
11082     * See also elm_entry_entry_set().
11083     *
11084     * @param obj The entry object
11085     * @return The currently displayed text or NULL on failure
11086     *
11087     * @deprecated Use elm_object_text_get() instead.
11088     */
11089    EAPI const char  *elm_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11090    /**
11091     * Appends @p entry to the text of the entry.
11092     *
11093     * Adds the text in @p entry to the end of any text already present in the
11094     * widget.
11095     *
11096     * The appended text is subject to any filters set for the widget.
11097     *
11098     * @param obj The entry object
11099     * @param entry The text to be displayed
11100     *
11101     * @see elm_entry_text_filter_append()
11102     */
11103    EAPI void         elm_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11104    /**
11105     * Gets whether the entry is empty.
11106     *
11107     * Empty means no text at all. If there are any markup tags, like an item
11108     * tag for which no provider finds anything, and no text is displayed, this
11109     * function still returns EINA_FALSE.
11110     *
11111     * @param obj The entry object
11112     * @return EINA_TRUE if the entry is empty, EINA_FALSE otherwise.
11113     */
11114    EAPI Eina_Bool    elm_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11115    /**
11116     * Gets any selected text within the entry.
11117     *
11118     * If there's any selected text in the entry, this function returns it as
11119     * a string in markup format. NULL is returned if no selection exists or
11120     * if an error occurred.
11121     *
11122     * The returned value points to an internal string and should not be freed
11123     * or modified in any way. If the @p entry object is deleted or its
11124     * contents are changed, the returned pointer should be considered invalid.
11125     *
11126     * @param obj The entry object
11127     * @return The selected text within the entry or NULL on failure
11128     */
11129    EAPI const char  *elm_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11130    /**
11131     * Inserts the given text into the entry at the current cursor position.
11132     *
11133     * This inserts text at the cursor position as if it was typed
11134     * by the user (note that this also allows markup which a user
11135     * can't just "type" as it would be converted to escaped text, so this
11136     * call can be used to insert things like emoticon items or bold push/pop
11137     * tags, other font and color change tags etc.)
11138     *
11139     * If any selection exists, it will be replaced by the inserted text.
11140     *
11141     * The inserted text is subject to any filters set for the widget.
11142     *
11143     * @param obj The entry object
11144     * @param entry The text to insert
11145     *
11146     * @see elm_entry_text_filter_append()
11147     */
11148    EAPI void         elm_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11149    /**
11150     * Set the line wrap type to use on multi-line entries.
11151     *
11152     * Sets the wrap type used by the entry to any of the specified in
11153     * #Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
11154     * line (without inserting a line break or paragraph separator) when it
11155     * reaches the far edge of the widget.
11156     *
11157     * Note that this only makes sense for multi-line entries. A widget set
11158     * to be single line will never wrap.
11159     *
11160     * @param obj The entry object
11161     * @param wrap The wrap mode to use. See #Elm_Wrap_Type for details on them
11162     */
11163    EAPI void         elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
11164    EINA_DEPRECATED EAPI void         elm_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
11165    /**
11166     * Gets the wrap mode the entry was set to use.
11167     *
11168     * @param obj The entry object
11169     * @return Wrap type
11170     *
11171     * @see also elm_entry_line_wrap_set()
11172     */
11173    EAPI Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11174    /**
11175     * Sets if the entry is to be editable or not.
11176     *
11177     * By default, entries are editable and when focused, any text input by the
11178     * user will be inserted at the current cursor position. But calling this
11179     * function with @p editable as EINA_FALSE will prevent the user from
11180     * inputting text into the entry.
11181     *
11182     * The only way to change the text of a non-editable entry is to use
11183     * elm_object_text_set(), elm_entry_entry_insert() and other related
11184     * functions.
11185     *
11186     * @param obj The entry object
11187     * @param editable If EINA_TRUE, user input will be inserted in the entry,
11188     * if not, the entry is read-only and no user input is allowed.
11189     */
11190    EAPI void         elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
11191    /**
11192     * Gets whether the entry is editable or not.
11193     *
11194     * @param obj The entry object
11195     * @return If true, the entry is editable by the user.
11196     * If false, it is not editable by the user
11197     *
11198     * @see elm_entry_editable_set()
11199     */
11200    EAPI Eina_Bool    elm_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11201    /**
11202     * This drops any existing text selection within the entry.
11203     *
11204     * @param obj The entry object
11205     */
11206    EAPI void         elm_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
11207    /**
11208     * This selects all text within the entry.
11209     *
11210     * @param obj The entry object
11211     */
11212    EAPI void         elm_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
11213    /**
11214     * This moves the cursor one place to the right within the entry.
11215     *
11216     * @param obj The entry object
11217     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11218     */
11219    EAPI Eina_Bool    elm_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
11220    /**
11221     * This moves the cursor one place to the left within the entry.
11222     *
11223     * @param obj The entry object
11224     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11225     */
11226    EAPI Eina_Bool    elm_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
11227    /**
11228     * This moves the cursor one line up within the entry.
11229     *
11230     * @param obj The entry object
11231     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11232     */
11233    EAPI Eina_Bool    elm_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
11234    /**
11235     * This moves the cursor one line down within the entry.
11236     *
11237     * @param obj The entry object
11238     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11239     */
11240    EAPI Eina_Bool    elm_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
11241    /**
11242     * This moves the cursor to the beginning of the entry.
11243     *
11244     * @param obj The entry object
11245     */
11246    EAPI void         elm_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11247    /**
11248     * This moves the cursor to the end of the entry.
11249     *
11250     * @param obj The entry object
11251     */
11252    EAPI void         elm_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11253    /**
11254     * This moves the cursor to the beginning of the current line.
11255     *
11256     * @param obj The entry object
11257     */
11258    EAPI void         elm_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11259    /**
11260     * This moves the cursor to the end of the current line.
11261     *
11262     * @param obj The entry object
11263     */
11264    EAPI void         elm_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11265    /**
11266     * This begins a selection within the entry as though
11267     * the user were holding down the mouse button to make a selection.
11268     *
11269     * @param obj The entry object
11270     */
11271    EAPI void         elm_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
11272    /**
11273     * This ends a selection within the entry as though
11274     * the user had just released the mouse button while making a selection.
11275     *
11276     * @param obj The entry object
11277     */
11278    EAPI void         elm_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
11279    /**
11280     * Gets whether a format node exists at the current cursor position.
11281     *
11282     * A format node is anything that defines how the text is rendered. It can
11283     * be a visible format node, such as a line break or a paragraph separator,
11284     * or an invisible one, such as bold begin or end tag.
11285     * This function returns whether any format node exists at the current
11286     * cursor position.
11287     *
11288     * @param obj The entry object
11289     * @return EINA_TRUE if the current cursor position contains a format node,
11290     * EINA_FALSE otherwise.
11291     *
11292     * @see elm_entry_cursor_is_visible_format_get()
11293     */
11294    EAPI Eina_Bool    elm_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11295    /**
11296     * Gets if the current cursor position holds a visible format node.
11297     *
11298     * @param obj The entry object
11299     * @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
11300     * if it's an invisible one or no format exists.
11301     *
11302     * @see elm_entry_cursor_is_format_get()
11303     */
11304    EAPI Eina_Bool    elm_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11305    /**
11306     * Gets the character pointed by the cursor at its current position.
11307     *
11308     * This function returns a string with the utf8 character stored at the
11309     * current cursor position.
11310     * Only the text is returned, any format that may exist will not be part
11311     * of the return value.
11312     *
11313     * @param obj The entry object
11314     * @return The text pointed by the cursors.
11315     */
11316    EAPI const char  *elm_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11317    /**
11318     * This function returns the geometry of the cursor.
11319     *
11320     * It's useful if you want to draw something on the cursor (or where it is),
11321     * or for example in the case of scrolled entry where you want to show the
11322     * cursor.
11323     *
11324     * @param obj The entry object
11325     * @param x returned geometry
11326     * @param y returned geometry
11327     * @param w returned geometry
11328     * @param h returned geometry
11329     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11330     */
11331    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);
11332    /**
11333     * Sets the cursor position in the entry to the given value
11334     *
11335     * The value in @p pos is the index of the character position within the
11336     * contents of the string as returned by elm_entry_cursor_pos_get().
11337     *
11338     * @param obj The entry object
11339     * @param pos The position of the cursor
11340     */
11341    EAPI void         elm_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
11342    /**
11343     * Retrieves the current position of the cursor in the entry
11344     *
11345     * @param obj The entry object
11346     * @return The cursor position
11347     */
11348    EAPI int          elm_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11349    /**
11350     * This executes a "cut" action on the selected text in the entry.
11351     *
11352     * @param obj The entry object
11353     */
11354    EAPI void         elm_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
11355    /**
11356     * This executes a "copy" action on the selected text in the entry.
11357     *
11358     * @param obj The entry object
11359     */
11360    EAPI void         elm_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
11361    /**
11362     * This executes a "paste" action in the entry.
11363     *
11364     * @param obj The entry object
11365     */
11366    EAPI void         elm_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
11367    /**
11368     * This clears and frees the items in a entry's contextual (longpress)
11369     * menu.
11370     *
11371     * @param obj The entry object
11372     *
11373     * @see elm_entry_context_menu_item_add()
11374     */
11375    EAPI void         elm_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
11376    /**
11377     * This adds an item to the entry's contextual menu.
11378     *
11379     * A longpress on an entry will make the contextual menu show up, if this
11380     * hasn't been disabled with elm_entry_context_menu_disabled_set().
11381     * By default, this menu provides a few options like enabling selection mode,
11382     * which is useful on embedded devices that need to be explicit about it,
11383     * and when a selection exists it also shows the copy and cut actions.
11384     *
11385     * With this function, developers can add other options to this menu to
11386     * perform any action they deem necessary.
11387     *
11388     * @param obj The entry object
11389     * @param label The item's text label
11390     * @param icon_file The item's icon file
11391     * @param icon_type The item's icon type
11392     * @param func The callback to execute when the item is clicked
11393     * @param data The data to associate with the item for related functions
11394     */
11395    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);
11396    /**
11397     * This disables the entry's contextual (longpress) menu.
11398     *
11399     * @param obj The entry object
11400     * @param disabled If true, the menu is disabled
11401     */
11402    EAPI void         elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
11403    /**
11404     * This returns whether the entry's contextual (longpress) menu is
11405     * disabled.
11406     *
11407     * @param obj The entry object
11408     * @return If true, the menu is disabled
11409     */
11410    EAPI Eina_Bool    elm_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11411    /**
11412     * This appends a custom item provider to the list for that entry
11413     *
11414     * This appends the given callback. The list is walked from beginning to end
11415     * with each function called given the item href string in the text. If the
11416     * function returns an object handle other than NULL (it should create an
11417     * object to do this), then this object is used to replace that item. If
11418     * not the next provider is called until one provides an item object, or the
11419     * default provider in entry does.
11420     *
11421     * @param obj The entry object
11422     * @param func The function called to provide the item object
11423     * @param data The data passed to @p func
11424     *
11425     * @see @ref entry-items
11426     */
11427    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);
11428    /**
11429     * This prepends a custom item provider to the list for that entry
11430     *
11431     * This prepends the given callback. See elm_entry_item_provider_append() for
11432     * more information
11433     *
11434     * @param obj The entry object
11435     * @param func The function called to provide the item object
11436     * @param data The data passed to @p func
11437     */
11438    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);
11439    /**
11440     * This removes a custom item provider to the list for that entry
11441     *
11442     * This removes the given callback. See elm_entry_item_provider_append() for
11443     * more information
11444     *
11445     * @param obj The entry object
11446     * @param func The function called to provide the item object
11447     * @param data The data passed to @p func
11448     */
11449    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);
11450    /**
11451     * Append a filter function for text inserted in the entry
11452     *
11453     * Append the given callback to the list. This functions will be called
11454     * whenever any text is inserted into the entry, with the text to be inserted
11455     * as a parameter. The callback function is free to alter the text in any way
11456     * it wants, but it must remember to free the given pointer and update it.
11457     * If the new text is to be discarded, the function can free it and set its
11458     * text parameter to NULL. This will also prevent any following filters from
11459     * being called.
11460     *
11461     * @param obj The entry object
11462     * @param func The function to use as text filter
11463     * @param data User data to pass to @p func
11464     */
11465    EAPI void         elm_entry_text_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11466    /**
11467     * Prepend a filter function for text insdrted in the entry
11468     *
11469     * Prepend the given callback to the list. See elm_entry_text_filter_append()
11470     * for more information
11471     *
11472     * @param obj The entry object
11473     * @param func The function to use as text filter
11474     * @param data User data to pass to @p func
11475     */
11476    EAPI void         elm_entry_text_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11477    /**
11478     * Remove a filter from the list
11479     *
11480     * Removes the given callback from the filter list. See
11481     * elm_entry_text_filter_append() for more information.
11482     *
11483     * @param obj The entry object
11484     * @param func The filter function to remove
11485     * @param data The user data passed when adding the function
11486     */
11487    EAPI void         elm_entry_text_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11488    /**
11489     * This converts a markup (HTML-like) string into UTF-8.
11490     *
11491     * The returned string is a malloc'ed buffer and it should be freed when
11492     * not needed anymore.
11493     *
11494     * @param s The string (in markup) to be converted
11495     * @return The converted string (in UTF-8). It should be freed.
11496     */
11497    EAPI char        *elm_entry_markup_to_utf8(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11498    /**
11499     * This converts a UTF-8 string into markup (HTML-like).
11500     *
11501     * The returned string is a malloc'ed buffer and it should be freed when
11502     * not needed anymore.
11503     *
11504     * @param s The string (in UTF-8) to be converted
11505     * @return The converted string (in markup). It should be freed.
11506     */
11507    EAPI char        *elm_entry_utf8_to_markup(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11508    /**
11509     * This sets the file (and implicitly loads it) for the text to display and
11510     * then edit. All changes are written back to the file after a short delay if
11511     * the entry object is set to autosave (which is the default).
11512     *
11513     * If the entry had any other file set previously, any changes made to it
11514     * will be saved if the autosave feature is enabled, otherwise, the file
11515     * will be silently discarded and any non-saved changes will be lost.
11516     *
11517     * @param obj The entry object
11518     * @param file The path to the file to load and save
11519     * @param format The file format
11520     */
11521    EAPI void         elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
11522    /**
11523     * Gets the file being edited by the entry.
11524     *
11525     * This function can be used to retrieve any file set on the entry for
11526     * edition, along with the format used to load and save it.
11527     *
11528     * @param obj The entry object
11529     * @param file The path to the file to load and save
11530     * @param format The file format
11531     */
11532    EAPI void         elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
11533    /**
11534     * This function writes any changes made to the file set with
11535     * elm_entry_file_set()
11536     *
11537     * @param obj The entry object
11538     */
11539    EAPI void         elm_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
11540    /**
11541     * This sets the entry object to 'autosave' the loaded text file or not.
11542     *
11543     * @param obj The entry object
11544     * @param autosave Autosave the loaded file or not
11545     *
11546     * @see elm_entry_file_set()
11547     */
11548    EAPI void         elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
11549    /**
11550     * This gets the entry object's 'autosave' status.
11551     *
11552     * @param obj The entry object
11553     * @return Autosave the loaded file or not
11554     *
11555     * @see elm_entry_file_set()
11556     */
11557    EAPI Eina_Bool    elm_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11558    /**
11559     * Control pasting of text and images for the widget.
11560     *
11561     * Normally the entry allows both text and images to be pasted.  By setting
11562     * textonly to be true, this prevents images from being pasted.
11563     *
11564     * Note this only changes the behaviour of text.
11565     *
11566     * @param obj The entry object
11567     * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is
11568     * text+image+other.
11569     */
11570    EAPI void         elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
11571    /**
11572     * Getting elm_entry text paste/drop mode.
11573     *
11574     * In textonly mode, only text may be pasted or dropped into the widget.
11575     *
11576     * @param obj The entry object
11577     * @return If the widget only accepts text from pastes.
11578     */
11579    EAPI Eina_Bool    elm_entry_cnp_textonly_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11580    /**
11581     * Enable or disable scrolling in entry
11582     *
11583     * Normally the entry is not scrollable unless you enable it with this call.
11584     *
11585     * @param obj The entry object
11586     * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
11587     */
11588    EAPI void         elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
11589    /**
11590     * Get the scrollable state of the entry
11591     *
11592     * Normally the entry is not scrollable. This gets the scrollable state
11593     * of the entry. See elm_entry_scrollable_set() for more information.
11594     *
11595     * @param obj The entry object
11596     * @return The scrollable state
11597     */
11598    EAPI Eina_Bool    elm_entry_scrollable_get(const Evas_Object *obj);
11599    /**
11600     * This sets a widget to be displayed to the left of a scrolled entry.
11601     *
11602     * @param obj The scrolled entry object
11603     * @param icon The widget to display on the left side of the scrolled
11604     * entry.
11605     *
11606     * @note A previously set widget will be destroyed.
11607     * @note If the object being set does not have minimum size hints set,
11608     * it won't get properly displayed.
11609     *
11610     * @see elm_entry_end_set()
11611     */
11612    EAPI void         elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
11613    /**
11614     * Gets the leftmost widget of the scrolled entry. This object is
11615     * owned by the scrolled entry and should not be modified.
11616     *
11617     * @param obj The scrolled entry object
11618     * @return the left widget inside the scroller
11619     */
11620    EAPI Evas_Object *elm_entry_icon_get(const Evas_Object *obj);
11621    /**
11622     * Unset the leftmost widget of the scrolled entry, unparenting and
11623     * returning it.
11624     *
11625     * @param obj The scrolled entry object
11626     * @return the previously set icon sub-object of this entry, on
11627     * success.
11628     *
11629     * @see elm_entry_icon_set()
11630     */
11631    EAPI Evas_Object *elm_entry_icon_unset(Evas_Object *obj);
11632    /**
11633     * Sets the visibility of the left-side widget of the scrolled entry,
11634     * set by elm_entry_icon_set().
11635     *
11636     * @param obj The scrolled entry object
11637     * @param setting EINA_TRUE if the object should be displayed,
11638     * EINA_FALSE if not.
11639     */
11640    EAPI void         elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
11641    /**
11642     * This sets a widget to be displayed to the end of a scrolled entry.
11643     *
11644     * @param obj The scrolled entry object
11645     * @param end The widget to display on the right side of the scrolled
11646     * entry.
11647     *
11648     * @note A previously set widget will be destroyed.
11649     * @note If the object being set does not have minimum size hints set,
11650     * it won't get properly displayed.
11651     *
11652     * @see elm_entry_icon_set
11653     */
11654    EAPI void         elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
11655    /**
11656     * Gets the endmost widget of the scrolled entry. This object is owned
11657     * by the scrolled entry and should not be modified.
11658     *
11659     * @param obj The scrolled entry object
11660     * @return the right widget inside the scroller
11661     */
11662    EAPI Evas_Object *elm_entry_end_get(const Evas_Object *obj);
11663    /**
11664     * Unset the endmost widget of the scrolled entry, unparenting and
11665     * returning it.
11666     *
11667     * @param obj The scrolled entry object
11668     * @return the previously set icon sub-object of this entry, on
11669     * success.
11670     *
11671     * @see elm_entry_icon_set()
11672     */
11673    EAPI Evas_Object *elm_entry_end_unset(Evas_Object *obj);
11674    /**
11675     * Sets the visibility of the end widget of the scrolled entry, set by
11676     * elm_entry_end_set().
11677     *
11678     * @param obj The scrolled entry object
11679     * @param setting EINA_TRUE if the object should be displayed,
11680     * EINA_FALSE if not.
11681     */
11682    EAPI void         elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
11683    /**
11684     * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling
11685     * them).
11686     *
11687     * Setting an entry to single-line mode with elm_entry_single_line_set()
11688     * will automatically disable the display of scrollbars when the entry
11689     * moves inside its scroller.
11690     *
11691     * @param obj The scrolled entry object
11692     * @param h The horizontal scrollbar policy to apply
11693     * @param v The vertical scrollbar policy to apply
11694     */
11695    EAPI void         elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
11696    /**
11697     * This enables/disables bouncing within the entry.
11698     *
11699     * This function sets whether the entry will bounce when scrolling reaches
11700     * the end of the contained entry.
11701     *
11702     * @param obj The scrolled entry object
11703     * @param h The horizontal bounce state
11704     * @param v The vertical bounce state
11705     */
11706    EAPI void         elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
11707    /**
11708     * Get the bounce mode
11709     *
11710     * @param obj The Entry object
11711     * @param h_bounce Allow bounce horizontally
11712     * @param v_bounce Allow bounce vertically
11713     */
11714    EAPI void         elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
11715
11716    /* pre-made filters for entries */
11717    /**
11718     * @typedef Elm_Entry_Filter_Limit_Size
11719     *
11720     * Data for the elm_entry_filter_limit_size() entry filter.
11721     */
11722    typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
11723    /**
11724     * @struct _Elm_Entry_Filter_Limit_Size
11725     *
11726     * Data for the elm_entry_filter_limit_size() entry filter.
11727     */
11728    struct _Elm_Entry_Filter_Limit_Size
11729      {
11730         int max_char_count; /**< The maximum number of characters allowed. */
11731         int max_byte_count; /**< The maximum number of bytes allowed*/
11732      };
11733    /**
11734     * Filter inserted text based on user defined character and byte limits
11735     *
11736     * Add this filter to an entry to limit the characters that it will accept
11737     * based the the contents of the provided #Elm_Entry_Filter_Limit_Size.
11738     * The funtion works on the UTF-8 representation of the string, converting
11739     * it from the set markup, thus not accounting for any format in it.
11740     *
11741     * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
11742     * it as data when setting the filter. In it, it's possible to set limits
11743     * by character count or bytes (any of them is disabled if 0), and both can
11744     * be set at the same time. In that case, it first checks for characters,
11745     * then bytes.
11746     *
11747     * The function will cut the inserted text in order to allow only the first
11748     * number of characters that are still allowed. The cut is made in
11749     * characters, even when limiting by bytes, in order to always contain
11750     * valid ones and avoid half unicode characters making it in.
11751     *
11752     * This filter, like any others, does not apply when setting the entry text
11753     * directly with elm_object_text_set() (or the deprecated
11754     * elm_entry_entry_set()).
11755     */
11756    EAPI void         elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 2, 3);
11757    /**
11758     * @typedef Elm_Entry_Filter_Accept_Set
11759     *
11760     * Data for the elm_entry_filter_accept_set() entry filter.
11761     */
11762    typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
11763    /**
11764     * @struct _Elm_Entry_Filter_Accept_Set
11765     *
11766     * Data for the elm_entry_filter_accept_set() entry filter.
11767     */
11768    struct _Elm_Entry_Filter_Accept_Set
11769      {
11770         const char *accepted; /**< Set of characters accepted in the entry. */
11771         const char *rejected; /**< Set of characters rejected from the entry. */
11772      };
11773    /**
11774     * Filter inserted text based on accepted or rejected sets of characters
11775     *
11776     * Add this filter to an entry to restrict the set of accepted characters
11777     * based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
11778     * This structure contains both accepted and rejected sets, but they are
11779     * mutually exclusive.
11780     *
11781     * The @c accepted set takes preference, so if it is set, the filter will
11782     * only work based on the accepted characters, ignoring anything in the
11783     * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.
11784     *
11785     * In both cases, the function filters by matching utf8 characters to the
11786     * raw markup text, so it can be used to remove formatting tags.
11787     *
11788     * This filter, like any others, does not apply when setting the entry text
11789     * directly with elm_object_text_set() (or the deprecated
11790     * elm_entry_entry_set()).
11791     */
11792    EAPI void         elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 3);
11793    /**
11794     * Set the input panel layout of the entry
11795     *
11796     * @param obj The entry object
11797     * @param layout layout type
11798     */
11799    EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout) EINA_ARG_NONNULL(1);
11800    /**
11801     * Get the input panel layout of the entry
11802     *
11803     * @param obj The entry object
11804     * @return layout type
11805     *
11806     * @see elm_entry_input_panel_layout_set
11807     */
11808    EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
11809    /**
11810     * Set the autocapitalization type on the immodule.
11811     *
11812     * @param obj The entry object
11813     * @param autocapital_type The type of autocapitalization
11814     */
11815    EAPI void         elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type) EINA_ARG_NONNULL(1);
11816    /**
11817     * Retrieve the autocapitalization type on the immodule.
11818     *
11819     * @param obj The entry object
11820     * @return autocapitalization type
11821     */
11822    EAPI Elm_Autocapital_Type elm_entry_autocapital_type_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
11823    /**
11824     * Sets the attribute to show the input panel automatically.
11825     *
11826     * @param obj The entry object
11827     * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
11828     */
11829    EAPI void elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
11830    /**
11831     * Retrieve the attribute to show the input panel automatically.
11832     *
11833     * @param obj The entry object
11834     * @return EINA_TRUE if input panel will be appeared when the entry is clicked or has a focus, EINA_FALSE otherwise
11835     */
11836    EAPI Eina_Bool elm_entry_input_panel_enabled_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
11837
11838    EAPI void         elm_entry_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a);
11839    EAPI void         elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap);
11840    EAPI void         elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod);
11841    EAPI void         elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on);
11842    EAPI Ecore_IMF_Context *elm_entry_imf_context_get(Evas_Object *obj);
11843    EAPI void         elm_entry_matchlist_set(Evas_Object *obj, Eina_List *match_list, Eina_Bool case_sensitive);
11844    EAPI void         elm_entry_magnifier_type_set(Evas_Object *obj, int type) EINA_ARG_NONNULL(1);
11845
11846    EINA_DEPRECATED EAPI void         elm_entry_wrap_width_set(Evas_Object *obj, Evas_Coord w);
11847    EINA_DEPRECATED EAPI Evas_Coord   elm_entry_wrap_width_get(const Evas_Object *obj);
11848    EINA_DEPRECATED EAPI void         elm_entry_fontsize_set(Evas_Object *obj, int fontsize);
11849    EINA_DEPRECATED EAPI void         elm_entry_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a);
11850    EINA_DEPRECATED EAPI void         elm_entry_text_align_set(Evas_Object *obj, const char *alignmode);
11851
11852    /**
11853     * @}
11854     */
11855
11856    /* composite widgets - these basically put together basic widgets above
11857     * in convenient packages that do more than basic stuff */
11858
11859    /* anchorview */
11860    /**
11861     * @defgroup Anchorview Anchorview
11862     *
11863     * @image html img/widget/anchorview/preview-00.png
11864     * @image latex img/widget/anchorview/preview-00.eps
11865     *
11866     * Anchorview is for displaying text that contains markup with anchors
11867     * like <c>\<a href=1234\>something\</\></c> in it.
11868     *
11869     * Besides being styled differently, the anchorview widget provides the
11870     * necessary functionality so that clicking on these anchors brings up a
11871     * popup with user defined content such as "call", "add to contacts" or
11872     * "open web page". This popup is provided using the @ref Hover widget.
11873     *
11874     * This widget is very similar to @ref Anchorblock, so refer to that
11875     * widget for an example. The only difference Anchorview has is that the
11876     * widget is already provided with scrolling functionality, so if the
11877     * text set to it is too large to fit in the given space, it will scroll,
11878     * whereas the @ref Anchorblock widget will keep growing to ensure all the
11879     * text can be displayed.
11880     *
11881     * This widget emits the following signals:
11882     * @li "anchor,clicked": will be called when an anchor is clicked. The
11883     * @p event_info parameter on the callback will be a pointer of type
11884     * ::Elm_Entry_Anchorview_Info.
11885     *
11886     * See @ref Anchorblock for an example on how to use both of them.
11887     *
11888     * @see Anchorblock
11889     * @see Entry
11890     * @see Hover
11891     *
11892     * @{
11893     */
11894    /**
11895     * @typedef Elm_Entry_Anchorview_Info
11896     *
11897     * The info sent in the callback for "anchor,clicked" signals emitted by
11898     * the Anchorview widget.
11899     */
11900    typedef struct _Elm_Entry_Anchorview_Info Elm_Entry_Anchorview_Info;
11901    /**
11902     * @struct _Elm_Entry_Anchorview_Info
11903     *
11904     * The info sent in the callback for "anchor,clicked" signals emitted by
11905     * the Anchorview widget.
11906     */
11907    struct _Elm_Entry_Anchorview_Info
11908      {
11909         const char     *name; /**< Name of the anchor, as indicated in its href
11910                                    attribute */
11911         int             button; /**< The mouse button used to click on it */
11912         Evas_Object    *hover; /**< The hover object to use for the popup */
11913         struct {
11914              Evas_Coord    x, y, w, h;
11915         } anchor, /**< Geometry selection of text used as anchor */
11916           hover_parent; /**< Geometry of the object used as parent by the
11917                              hover */
11918         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
11919                                              for content on the left side of
11920                                              the hover. Before calling the
11921                                              callback, the widget will make the
11922                                              necessary calculations to check
11923                                              which sides are fit to be set with
11924                                              content, based on the position the
11925                                              hover is activated and its distance
11926                                              to the edges of its parent object
11927                                              */
11928         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
11929                                               the right side of the hover.
11930                                               See @ref hover_left */
11931         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
11932                                             of the hover. See @ref hover_left */
11933         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
11934                                                below the hover. See @ref
11935                                                hover_left */
11936      };
11937    /**
11938     * Add a new Anchorview object
11939     *
11940     * @param parent The parent object
11941     * @return The new object or NULL if it cannot be created
11942     */
11943    EAPI Evas_Object *elm_anchorview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11944    /**
11945     * Set the text to show in the anchorview
11946     *
11947     * Sets the text of the anchorview to @p text. This text can include markup
11948     * format tags, including <c>\<a href=anchorname\></c> to begin a segment of
11949     * text that will be specially styled and react to click events, ended with
11950     * either of \</a\> or \</\>. When clicked, the anchor will emit an
11951     * "anchor,clicked" signal that you can attach a callback to with
11952     * evas_object_smart_callback_add(). The name of the anchor given in the
11953     * event info struct will be the one set in the href attribute, in this
11954     * case, anchorname.
11955     *
11956     * Other markup can be used to style the text in different ways, but it's
11957     * up to the style defined in the theme which tags do what.
11958     * @deprecated use elm_object_text_set() instead.
11959     */
11960    EINA_DEPRECATED EAPI void         elm_anchorview_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
11961    /**
11962     * Get the markup text set for the anchorview
11963     *
11964     * Retrieves the text set on the anchorview, with markup tags included.
11965     *
11966     * @param obj The anchorview object
11967     * @return The markup text set or @c NULL if nothing was set or an error
11968     * occurred
11969     * @deprecated use elm_object_text_set() instead.
11970     */
11971    EINA_DEPRECATED EAPI const char  *elm_anchorview_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11972    /**
11973     * Set the parent of the hover popup
11974     *
11975     * Sets the parent object to use by the hover created by the anchorview
11976     * when an anchor is clicked. See @ref Hover for more details on this.
11977     * If no parent is set, the same anchorview object will be used.
11978     *
11979     * @param obj The anchorview object
11980     * @param parent The object to use as parent for the hover
11981     */
11982    EAPI void         elm_anchorview_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
11983    /**
11984     * Get the parent of the hover popup
11985     *
11986     * Get the object used as parent for the hover created by the anchorview
11987     * widget. See @ref Hover for more details on this.
11988     *
11989     * @param obj The anchorview object
11990     * @return The object used as parent for the hover, NULL if none is set.
11991     */
11992    EAPI Evas_Object *elm_anchorview_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11993    /**
11994     * Set the style that the hover should use
11995     *
11996     * When creating the popup hover, anchorview will request that it's
11997     * themed according to @p style.
11998     *
11999     * @param obj The anchorview object
12000     * @param style The style to use for the underlying hover
12001     *
12002     * @see elm_object_style_set()
12003     */
12004    EAPI void         elm_anchorview_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12005    /**
12006     * Get the style that the hover should use
12007     *
12008     * Get the style the hover created by anchorview will use.
12009     *
12010     * @param obj The anchorview object
12011     * @return The style to use by the hover. NULL means the default is used.
12012     *
12013     * @see elm_object_style_set()
12014     */
12015    EAPI const char  *elm_anchorview_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12016    /**
12017     * Ends the hover popup in the anchorview
12018     *
12019     * When an anchor is clicked, the anchorview widget will create a hover
12020     * object to use as a popup with user provided content. This function
12021     * terminates this popup, returning the anchorview to its normal state.
12022     *
12023     * @param obj The anchorview object
12024     */
12025    EAPI void         elm_anchorview_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12026    /**
12027     * Set bouncing behaviour when the scrolled content reaches an edge
12028     *
12029     * Tell the internal scroller object whether it should bounce or not
12030     * when it reaches the respective edges for each axis.
12031     *
12032     * @param obj The anchorview object
12033     * @param h_bounce Whether to bounce or not in the horizontal axis
12034     * @param v_bounce Whether to bounce or not in the vertical axis
12035     *
12036     * @see elm_scroller_bounce_set()
12037     */
12038    EAPI void         elm_anchorview_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
12039    /**
12040     * Get the set bouncing behaviour of the internal scroller
12041     *
12042     * Get whether the internal scroller should bounce when the edge of each
12043     * axis is reached scrolling.
12044     *
12045     * @param obj The anchorview object
12046     * @param h_bounce Pointer where to store the bounce state of the horizontal
12047     *                 axis
12048     * @param v_bounce Pointer where to store the bounce state of the vertical
12049     *                 axis
12050     *
12051     * @see elm_scroller_bounce_get()
12052     */
12053    EAPI void         elm_anchorview_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
12054    /**
12055     * Appends a custom item provider to the given anchorview
12056     *
12057     * Appends the given function to the list of items providers. This list is
12058     * called, one function at a time, with the given @p data pointer, the
12059     * anchorview object and, in the @p item parameter, the item name as
12060     * referenced in its href string. Following functions in the list will be
12061     * called in order until one of them returns something different to NULL,
12062     * which should be an Evas_Object which will be used in place of the item
12063     * element.
12064     *
12065     * Items in the markup text take the form \<item relsize=16x16 vsize=full
12066     * href=item/name\>\</item\>
12067     *
12068     * @param obj The anchorview object
12069     * @param func The function to add to the list of providers
12070     * @param data User data that will be passed to the callback function
12071     *
12072     * @see elm_entry_item_provider_append()
12073     */
12074    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);
12075    /**
12076     * Prepend a custom item provider to the given anchorview
12077     *
12078     * Like elm_anchorview_item_provider_append(), but it adds the function
12079     * @p func to the beginning of the list, instead of the end.
12080     *
12081     * @param obj The anchorview object
12082     * @param func The function to add to the list of providers
12083     * @param data User data that will be passed to the callback function
12084     */
12085    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);
12086    /**
12087     * Remove a custom item provider from the list of the given anchorview
12088     *
12089     * Removes the function and data pairing that matches @p func and @p data.
12090     * That is, unless the same function and same user data are given, the
12091     * function will not be removed from the list. This allows us to add the
12092     * same callback several times, with different @p data pointers and be
12093     * able to remove them later without conflicts.
12094     *
12095     * @param obj The anchorview object
12096     * @param func The function to remove from the list
12097     * @param data The data matching the function to remove from the list
12098     */
12099    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);
12100    /**
12101     * @}
12102     */
12103
12104    /* anchorblock */
12105    /**
12106     * @defgroup Anchorblock Anchorblock
12107     *
12108     * @image html img/widget/anchorblock/preview-00.png
12109     * @image latex img/widget/anchorblock/preview-00.eps
12110     *
12111     * Anchorblock is for displaying text that contains markup with anchors
12112     * like <c>\<a href=1234\>something\</\></c> in it.
12113     *
12114     * Besides being styled differently, the anchorblock widget provides the
12115     * necessary functionality so that clicking on these anchors brings up a
12116     * popup with user defined content such as "call", "add to contacts" or
12117     * "open web page". This popup is provided using the @ref Hover widget.
12118     *
12119     * This widget emits the following signals:
12120     * @li "anchor,clicked": will be called when an anchor is clicked. The
12121     * @p event_info parameter on the callback will be a pointer of type
12122     * ::Elm_Entry_Anchorblock_Info.
12123     *
12124     * @see Anchorview
12125     * @see Entry
12126     * @see Hover
12127     *
12128     * Since examples are usually better than plain words, we might as well
12129     * try @ref tutorial_anchorblock_example "one".
12130     */
12131    /**
12132     * @addtogroup Anchorblock
12133     * @{
12134     */
12135    /**
12136     * @typedef Elm_Entry_Anchorblock_Info
12137     *
12138     * The info sent in the callback for "anchor,clicked" signals emitted by
12139     * the Anchorblock widget.
12140     */
12141    typedef struct _Elm_Entry_Anchorblock_Info Elm_Entry_Anchorblock_Info;
12142    /**
12143     * @struct _Elm_Entry_Anchorblock_Info
12144     *
12145     * The info sent in the callback for "anchor,clicked" signals emitted by
12146     * the Anchorblock widget.
12147     */
12148    struct _Elm_Entry_Anchorblock_Info
12149      {
12150         const char     *name; /**< Name of the anchor, as indicated in its href
12151                                    attribute */
12152         int             button; /**< The mouse button used to click on it */
12153         Evas_Object    *hover; /**< The hover object to use for the popup */
12154         struct {
12155              Evas_Coord    x, y, w, h;
12156         } anchor, /**< Geometry selection of text used as anchor */
12157           hover_parent; /**< Geometry of the object used as parent by the
12158                              hover */
12159         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
12160                                              for content on the left side of
12161                                              the hover. Before calling the
12162                                              callback, the widget will make the
12163                                              necessary calculations to check
12164                                              which sides are fit to be set with
12165                                              content, based on the position the
12166                                              hover is activated and its distance
12167                                              to the edges of its parent object
12168                                              */
12169         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
12170                                               the right side of the hover.
12171                                               See @ref hover_left */
12172         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
12173                                             of the hover. See @ref hover_left */
12174         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
12175                                                below the hover. See @ref
12176                                                hover_left */
12177      };
12178    /**
12179     * Add a new Anchorblock object
12180     *
12181     * @param parent The parent object
12182     * @return The new object or NULL if it cannot be created
12183     */
12184    EAPI Evas_Object *elm_anchorblock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12185    /**
12186     * Set the text to show in the anchorblock
12187     *
12188     * Sets the text of the anchorblock to @p text. This text can include markup
12189     * format tags, including <c>\<a href=anchorname\></a></c> to begin a segment
12190     * of text that will be specially styled and react to click events, ended
12191     * with either of \</a\> or \</\>. When clicked, the anchor will emit an
12192     * "anchor,clicked" signal that you can attach a callback to with
12193     * evas_object_smart_callback_add(). The name of the anchor given in the
12194     * event info struct will be the one set in the href attribute, in this
12195     * case, anchorname.
12196     *
12197     * Other markup can be used to style the text in different ways, but it's
12198     * up to the style defined in the theme which tags do what.
12199     * @deprecated use elm_object_text_set() instead.
12200     */
12201    EINA_DEPRECATED EAPI void         elm_anchorblock_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
12202    /**
12203     * Get the markup text set for the anchorblock
12204     *
12205     * Retrieves the text set on the anchorblock, with markup tags included.
12206     *
12207     * @param obj The anchorblock object
12208     * @return The markup text set or @c NULL if nothing was set or an error
12209     * occurred
12210     * @deprecated use elm_object_text_set() instead.
12211     */
12212    EINA_DEPRECATED EAPI const char  *elm_anchorblock_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12213    /**
12214     * Set the parent of the hover popup
12215     *
12216     * Sets the parent object to use by the hover created by the anchorblock
12217     * when an anchor is clicked. See @ref Hover for more details on this.
12218     *
12219     * @param obj The anchorblock object
12220     * @param parent The object to use as parent for the hover
12221     */
12222    EAPI void         elm_anchorblock_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12223    /**
12224     * Get the parent of the hover popup
12225     *
12226     * Get the object used as parent for the hover created by the anchorblock
12227     * widget. See @ref Hover for more details on this.
12228     * If no parent is set, the same anchorblock object will be used.
12229     *
12230     * @param obj The anchorblock object
12231     * @return The object used as parent for the hover, NULL if none is set.
12232     */
12233    EAPI Evas_Object *elm_anchorblock_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12234    /**
12235     * Set the style that the hover should use
12236     *
12237     * When creating the popup hover, anchorblock will request that it's
12238     * themed according to @p style.
12239     *
12240     * @param obj The anchorblock object
12241     * @param style The style to use for the underlying hover
12242     *
12243     * @see elm_object_style_set()
12244     */
12245    EAPI void         elm_anchorblock_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12246    /**
12247     * Get the style that the hover should use
12248     *
12249     * Get the style, the hover created by anchorblock will use.
12250     *
12251     * @param obj The anchorblock object
12252     * @return The style to use by the hover. NULL means the default is used.
12253     *
12254     * @see elm_object_style_set()
12255     */
12256    EAPI const char  *elm_anchorblock_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12257    /**
12258     * Ends the hover popup in the anchorblock
12259     *
12260     * When an anchor is clicked, the anchorblock widget will create a hover
12261     * object to use as a popup with user provided content. This function
12262     * terminates this popup, returning the anchorblock to its normal state.
12263     *
12264     * @param obj The anchorblock object
12265     */
12266    EAPI void         elm_anchorblock_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12267    /**
12268     * Appends a custom item provider to the given anchorblock
12269     *
12270     * Appends the given function to the list of items providers. This list is
12271     * called, one function at a time, with the given @p data pointer, the
12272     * anchorblock object and, in the @p item parameter, the item name as
12273     * referenced in its href string. Following functions in the list will be
12274     * called in order until one of them returns something different to NULL,
12275     * which should be an Evas_Object which will be used in place of the item
12276     * element.
12277     *
12278     * Items in the markup text take the form \<item relsize=16x16 vsize=full
12279     * href=item/name\>\</item\>
12280     *
12281     * @param obj The anchorblock object
12282     * @param func The function to add to the list of providers
12283     * @param data User data that will be passed to the callback function
12284     *
12285     * @see elm_entry_item_provider_append()
12286     */
12287    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);
12288    /**
12289     * Prepend a custom item provider to the given anchorblock
12290     *
12291     * Like elm_anchorblock_item_provider_append(), but it adds the function
12292     * @p func to the beginning of the list, instead of the end.
12293     *
12294     * @param obj The anchorblock object
12295     * @param func The function to add to the list of providers
12296     * @param data User data that will be passed to the callback function
12297     */
12298    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);
12299    /**
12300     * Remove a custom item provider from the list of the given anchorblock
12301     *
12302     * Removes the function and data pairing that matches @p func and @p data.
12303     * That is, unless the same function and same user data are given, the
12304     * function will not be removed from the list. This allows us to add the
12305     * same callback several times, with different @p data pointers and be
12306     * able to remove them later without conflicts.
12307     *
12308     * @param obj The anchorblock object
12309     * @param func The function to remove from the list
12310     * @param data The data matching the function to remove from the list
12311     */
12312    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);
12313    /**
12314     * @}
12315     */
12316
12317    /**
12318     * @defgroup Bubble Bubble
12319     *
12320     * @image html img/widget/bubble/preview-00.png
12321     * @image latex img/widget/bubble/preview-00.eps
12322     * @image html img/widget/bubble/preview-01.png
12323     * @image latex img/widget/bubble/preview-01.eps
12324     * @image html img/widget/bubble/preview-02.png
12325     * @image latex img/widget/bubble/preview-02.eps
12326     *
12327     * @brief The Bubble is a widget to show text similar to how speech is
12328     * represented in comics.
12329     *
12330     * The bubble widget contains 5 important visual elements:
12331     * @li The frame is a rectangle with rounded edjes and an "arrow".
12332     * @li The @p icon is an image to which the frame's arrow points to.
12333     * @li The @p label is a text which appears to the right of the icon if the
12334     * corner is "top_left" or "bottom_left" and is right aligned to the frame
12335     * otherwise.
12336     * @li The @p info is a text which appears to the right of the label. Info's
12337     * font is of a ligther color than label.
12338     * @li The @p content is an evas object that is shown inside the frame.
12339     *
12340     * The position of the arrow, icon, label and info depends on which corner is
12341     * selected. The four available corners are:
12342     * @li "top_left" - Default
12343     * @li "top_right"
12344     * @li "bottom_left"
12345     * @li "bottom_right"
12346     *
12347     * Signals that you can add callbacks for are:
12348     * @li "clicked" - This is called when a user has clicked the bubble.
12349     *
12350     * For an example of using a buble see @ref bubble_01_example_page "this".
12351     *
12352     * @{
12353     */
12354
12355 #define ELM_BUBBLE_CONTENT_ICON "elm.swallow.icon"
12356
12357    /**
12358     * Add a new bubble to the parent
12359     *
12360     * @param parent The parent object
12361     * @return The new object or NULL if it cannot be created
12362     *
12363     * This function adds a text bubble to the given parent evas object.
12364     */
12365    EAPI Evas_Object *elm_bubble_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12366    /**
12367     * Set the label of the bubble
12368     *
12369     * @param obj The bubble object
12370     * @param label The string to set in the label
12371     *
12372     * This function sets the title of the bubble. Where this appears depends on
12373     * the selected corner.
12374     * @deprecated use elm_object_text_set() instead.
12375     */
12376    EINA_DEPRECATED EAPI void         elm_bubble_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12377    /**
12378     * Get the label of the bubble
12379     *
12380     * @param obj The bubble object
12381     * @return The string of set in the label
12382     *
12383     * This function gets the title of the bubble.
12384     * @deprecated use elm_object_text_get() instead.
12385     */
12386    EINA_DEPRECATED EAPI const char  *elm_bubble_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12387    /**
12388     * Set the info of the bubble
12389     *
12390     * @param obj The bubble object
12391     * @param info The given info about the bubble
12392     *
12393     * This function sets the info of the bubble. Where this appears depends on
12394     * the selected corner.
12395     * @deprecated use elm_object_text_part_set() instead. (with "info" as the parameter).
12396     */
12397    EINA_DEPRECATED EAPI void         elm_bubble_info_set(Evas_Object *obj, const char *info) EINA_ARG_NONNULL(1);
12398    /**
12399     * Get the info of the bubble
12400     *
12401     * @param obj The bubble object
12402     *
12403     * @return The "info" string of the bubble
12404     *
12405     * This function gets the info text.
12406     * @deprecated use elm_object_text_part_get() instead. (with "info" as the parameter).
12407     */
12408    EINA_DEPRECATED EAPI const char  *elm_bubble_info_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12409    /**
12410     * Set the content to be shown in the bubble
12411     *
12412     * Once the content object is set, a previously set one will be deleted.
12413     * If you want to keep the old content object, use the
12414     * elm_bubble_content_unset() function.
12415     *
12416     * @param obj The bubble object
12417     * @param content The given content of the bubble
12418     *
12419     * This function sets the content shown on the middle of the bubble.
12420     */
12421    EAPI void         elm_bubble_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
12422    /**
12423     * Get the content shown in the bubble
12424     *
12425     * Return the content object which is set for this widget.
12426     *
12427     * @param obj The bubble object
12428     * @return The content that is being used
12429     */
12430    EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12431    /**
12432     * Unset the content shown in the bubble
12433     *
12434     * Unparent and return the content object which was set for this widget.
12435     *
12436     * @param obj The bubble object
12437     * @return The content that was being used
12438     */
12439    EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12440    /**
12441     * Set the icon of the bubble
12442     *
12443     * Once the icon object is set, a previously set one will be deleted.
12444     * If you want to keep the old content object, use the
12445     * elm_icon_content_unset() function.
12446     *
12447     * @param obj The bubble object
12448     * @param icon The given icon for the bubble
12449     *
12450     * @deprecated use elm_object_content_part_set() instead
12451     *
12452     */
12453    EAPI void         elm_bubble_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12454    /**
12455     * Get the icon of the bubble
12456     *
12457     * @param obj The bubble object
12458     * @return The icon for the bubble
12459     *
12460     * This function gets the icon shown on the top left of bubble.
12461     *
12462     * @deprecated use elm_object_content_part_get() instead
12463     *
12464     */
12465    EAPI Evas_Object *elm_bubble_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12466    /**
12467     * Unset the icon of the bubble
12468     *
12469     * Unparent and return the icon object which was set for this widget.
12470     *
12471     * @param obj The bubble object
12472     * @return The icon that was being used
12473     *
12474     * @deprecated use elm_object_content_part_unset() instead
12475     *
12476     */
12477    EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12478    /**
12479     * Set the corner of the bubble
12480     *
12481     * @param obj The bubble object.
12482     * @param corner The given corner for the bubble.
12483     *
12484     * This function sets the corner of the bubble. The corner will be used to
12485     * determine where the arrow in the frame points to and where label, icon and
12486     * info are shown.
12487     *
12488     * Possible values for corner are:
12489     * @li "top_left" - Default
12490     * @li "top_right"
12491     * @li "bottom_left"
12492     * @li "bottom_right"
12493     */
12494    EAPI void         elm_bubble_corner_set(Evas_Object *obj, const char *corner) EINA_ARG_NONNULL(1, 2);
12495    /**
12496     * Get the corner of the bubble
12497     *
12498     * @param obj The bubble object.
12499     * @return The given corner for the bubble.
12500     *
12501     * This function gets the selected corner of the bubble.
12502     */
12503    EAPI const char  *elm_bubble_corner_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12504
12505    EINA_DEPRECATED EAPI void         elm_bubble_sweep_layout_set(Evas_Object *obj, Evas_Object *sweep) EINA_ARG_NONNULL(1);
12506    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_sweep_layout_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12507
12508    /**
12509     * @}
12510     */
12511
12512    /**
12513     * @defgroup Photo Photo
12514     *
12515     * For displaying the photo of a person (contact). Simple, yet
12516     * with a very specific purpose.
12517     *
12518     * Signals that you can add callbacks for are:
12519     *
12520     * "clicked" - This is called when a user has clicked the photo
12521     * "drag,start" - Someone started dragging the image out of the object
12522     * "drag,end" - Dragged item was dropped (somewhere)
12523     *
12524     * @{
12525     */
12526
12527    /**
12528     * Add a new photo to the parent
12529     *
12530     * @param parent The parent object
12531     * @return The new object or NULL if it cannot be created
12532     *
12533     * @ingroup Photo
12534     */
12535    EAPI Evas_Object *elm_photo_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12536
12537    /**
12538     * Set the file that will be used as photo
12539     *
12540     * @param obj The photo object
12541     * @param file The path to file that will be used as photo
12542     *
12543     * @return (1 = success, 0 = error)
12544     *
12545     * @ingroup Photo
12546     */
12547    EAPI Eina_Bool    elm_photo_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
12548
12549     /**
12550     * Set the file that will be used as thumbnail in the photo.
12551     *
12552     * @param obj The photo object.
12553     * @param file The path to file that will be used as thumb.
12554     * @param group The key used in case of an EET file.
12555     *
12556     * @ingroup Photo
12557     */
12558    EAPI void         elm_photo_thumb_set(const Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
12559
12560    /**
12561     * Set the size that will be used on the photo
12562     *
12563     * @param obj The photo object
12564     * @param size The size that the photo will be
12565     *
12566     * @ingroup Photo
12567     */
12568    EAPI void         elm_photo_size_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
12569
12570    /**
12571     * Set if the photo should be completely visible or not.
12572     *
12573     * @param obj The photo object
12574     * @param fill if true the photo will be completely visible
12575     *
12576     * @ingroup Photo
12577     */
12578    EAPI void         elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill) EINA_ARG_NONNULL(1);
12579
12580    /**
12581     * Set editability of the photo.
12582     *
12583     * An editable photo can be dragged to or from, and can be cut or
12584     * pasted too.  Note that pasting an image or dropping an item on
12585     * the image will delete the existing content.
12586     *
12587     * @param obj The photo object.
12588     * @param set To set of clear editablity.
12589     */
12590    EAPI void         elm_photo_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
12591
12592    /**
12593     * @}
12594     */
12595
12596    /* gesture layer */
12597    /**
12598     * @defgroup Elm_Gesture_Layer Gesture Layer
12599     * Gesture Layer Usage:
12600     *
12601     * Use Gesture Layer to detect gestures.
12602     * The advantage is that you don't have to implement
12603     * gesture detection, just set callbacks of gesture state.
12604     * By using gesture layer we make standard interface.
12605     *
12606     * In order to use Gesture Layer you start with @ref elm_gesture_layer_add
12607     * with a parent object parameter.
12608     * Next 'activate' gesture layer with a @ref elm_gesture_layer_attach
12609     * call. Usually with same object as target (2nd parameter).
12610     *
12611     * Now you need to tell gesture layer what gestures you follow.
12612     * This is done with @ref elm_gesture_layer_cb_set call.
12613     * By setting the callback you actually saying to gesture layer:
12614     * I would like to know when the gesture @ref Elm_Gesture_Types
12615     * switches to state @ref Elm_Gesture_State.
12616     *
12617     * Next, you need to implement the actual action that follows the input
12618     * in your callback.
12619     *
12620     * Note that if you like to stop being reported about a gesture, just set
12621     * all callbacks referring this gesture to NULL.
12622     * (again with @ref elm_gesture_layer_cb_set)
12623     *
12624     * The information reported by gesture layer to your callback is depending
12625     * on @ref Elm_Gesture_Types:
12626     * @ref Elm_Gesture_Taps_Info is the info reported for tap gestures:
12627     * @ref ELM_GESTURE_N_TAPS, @ref ELM_GESTURE_N_LONG_TAPS,
12628     * @ref ELM_GESTURE_N_DOUBLE_TAPS, @ref ELM_GESTURE_N_TRIPLE_TAPS.
12629     *
12630     * @ref Elm_Gesture_Momentum_Info is info reported for momentum gestures:
12631     * @ref ELM_GESTURE_MOMENTUM.
12632     *
12633     * @ref Elm_Gesture_Line_Info is the info reported for line gestures:
12634     * (this also contains @ref Elm_Gesture_Momentum_Info internal structure)
12635     * @ref ELM_GESTURE_N_LINES, @ref ELM_GESTURE_N_FLICKS.
12636     * Note that we consider a flick as a line-gesture that should be completed
12637     * in flick-time-limit as defined in @ref Config.
12638     *
12639     * @ref Elm_Gesture_Zoom_Info is the info reported for @ref ELM_GESTURE_ZOOM gesture.
12640     *
12641     * @ref Elm_Gesture_Rotate_Info is the info reported for @ref ELM_GESTURE_ROTATE gesture.
12642     *
12643     *
12644     * Gesture Layer Tweaks:
12645     *
12646     * Note that line, flick, gestures can start without the need to remove fingers from surface.
12647     * When user fingers rests on same-spot gesture is ended and starts again when fingers moved.
12648     *
12649     * Setting glayer_continues_enable to false in @ref Config will change this behavior
12650     * so gesture starts when user touches (a *DOWN event) touch-surface
12651     * and ends when no fingers touches surface (a *UP event).
12652     */
12653
12654    /**
12655     * @enum _Elm_Gesture_Types
12656     * Enum of supported gesture types.
12657     * @ingroup Elm_Gesture_Layer
12658     */
12659    enum _Elm_Gesture_Types
12660      {
12661         ELM_GESTURE_FIRST = 0,
12662
12663         ELM_GESTURE_N_TAPS, /**< N fingers single taps */
12664         ELM_GESTURE_N_LONG_TAPS, /**< N fingers single long-taps */
12665         ELM_GESTURE_N_DOUBLE_TAPS, /**< N fingers double-single taps */
12666         ELM_GESTURE_N_TRIPLE_TAPS, /**< N fingers triple-single taps */
12667
12668         ELM_GESTURE_MOMENTUM, /**< Reports momentum in the dircetion of move */
12669
12670         ELM_GESTURE_N_LINES, /**< N fingers line gesture */
12671         ELM_GESTURE_N_FLICKS, /**< N fingers flick gesture */
12672
12673         ELM_GESTURE_ZOOM, /**< Zoom */
12674         ELM_GESTURE_ROTATE, /**< Rotate */
12675
12676         ELM_GESTURE_LAST
12677      };
12678
12679    /**
12680     * @typedef Elm_Gesture_Types
12681     * gesture types enum
12682     * @ingroup Elm_Gesture_Layer
12683     */
12684    typedef enum _Elm_Gesture_Types Elm_Gesture_Types;
12685
12686    /**
12687     * @enum _Elm_Gesture_State
12688     * Enum of gesture states.
12689     * @ingroup Elm_Gesture_Layer
12690     */
12691    enum _Elm_Gesture_State
12692      {
12693         ELM_GESTURE_STATE_UNDEFINED = -1, /**< Gesture not STARTed */
12694         ELM_GESTURE_STATE_START,          /**< Gesture STARTed     */
12695         ELM_GESTURE_STATE_MOVE,           /**< Gesture is ongoing  */
12696         ELM_GESTURE_STATE_END,            /**< Gesture completed   */
12697         ELM_GESTURE_STATE_ABORT    /**< Onging gesture was ABORTed */
12698      };
12699
12700    /**
12701     * @typedef Elm_Gesture_State
12702     * gesture states enum
12703     * @ingroup Elm_Gesture_Layer
12704     */
12705    typedef enum _Elm_Gesture_State Elm_Gesture_State;
12706
12707    /**
12708     * @struct _Elm_Gesture_Taps_Info
12709     * Struct holds taps info for user
12710     * @ingroup Elm_Gesture_Layer
12711     */
12712    struct _Elm_Gesture_Taps_Info
12713      {
12714         Evas_Coord x, y;         /**< Holds center point between fingers */
12715         unsigned int n;          /**< Number of fingers tapped           */
12716         unsigned int timestamp;  /**< event timestamp       */
12717      };
12718
12719    /**
12720     * @typedef Elm_Gesture_Taps_Info
12721     * holds taps info for user
12722     * @ingroup Elm_Gesture_Layer
12723     */
12724    typedef struct _Elm_Gesture_Taps_Info Elm_Gesture_Taps_Info;
12725
12726    /**
12727     * @struct _Elm_Gesture_Momentum_Info
12728     * Struct holds momentum info for user
12729     * x1 and y1 are not necessarily in sync
12730     * x1 holds x value of x direction starting point
12731     * and same holds for y1.
12732     * This is noticeable when doing V-shape movement
12733     * @ingroup Elm_Gesture_Layer
12734     */
12735    struct _Elm_Gesture_Momentum_Info
12736      {  /* Report line ends, timestamps, and momentum computed        */
12737         Evas_Coord x1; /**< Final-swipe direction starting point on X */
12738         Evas_Coord y1; /**< Final-swipe direction starting point on Y */
12739         Evas_Coord x2; /**< Final-swipe direction ending point on X   */
12740         Evas_Coord y2; /**< Final-swipe direction ending point on Y   */
12741
12742         unsigned int tx; /**< Timestamp of start of final x-swipe */
12743         unsigned int ty; /**< Timestamp of start of final y-swipe */
12744
12745         Evas_Coord mx; /**< Momentum on X */
12746         Evas_Coord my; /**< Momentum on Y */
12747
12748         unsigned int n;  /**< Number of fingers */
12749      };
12750
12751    /**
12752     * @typedef Elm_Gesture_Momentum_Info
12753     * holds momentum info for user
12754     * @ingroup Elm_Gesture_Layer
12755     */
12756     typedef struct _Elm_Gesture_Momentum_Info Elm_Gesture_Momentum_Info;
12757
12758    /**
12759     * @struct _Elm_Gesture_Line_Info
12760     * Struct holds line info for user
12761     * @ingroup Elm_Gesture_Layer
12762     */
12763    struct _Elm_Gesture_Line_Info
12764      {  /* Report line ends, timestamps, and momentum computed      */
12765         Elm_Gesture_Momentum_Info momentum; /**< Line momentum info */
12766         /* FIXME should be radians, bot degrees */
12767         double angle;              /**< Angle (direction) of lines  */
12768      };
12769
12770    /**
12771     * @typedef Elm_Gesture_Line_Info
12772     * Holds line info for user
12773     * @ingroup Elm_Gesture_Layer
12774     */
12775     typedef struct  _Elm_Gesture_Line_Info Elm_Gesture_Line_Info;
12776
12777    /**
12778     * @struct _Elm_Gesture_Zoom_Info
12779     * Struct holds zoom info for user
12780     * @ingroup Elm_Gesture_Layer
12781     */
12782    struct _Elm_Gesture_Zoom_Info
12783      {
12784         Evas_Coord x, y;       /**< Holds zoom center point reported to user  */
12785         Evas_Coord radius; /**< Holds radius between fingers reported to user */
12786         double zoom;            /**< Zoom value: 1.0 means no zoom             */
12787         double momentum;        /**< Zoom momentum: zoom growth per second (NOT YET SUPPORTED) */
12788      };
12789
12790    /**
12791     * @typedef Elm_Gesture_Zoom_Info
12792     * Holds zoom info for user
12793     * @ingroup Elm_Gesture_Layer
12794     */
12795    typedef struct _Elm_Gesture_Zoom_Info Elm_Gesture_Zoom_Info;
12796
12797    /**
12798     * @struct _Elm_Gesture_Rotate_Info
12799     * Struct holds rotation info for user
12800     * @ingroup Elm_Gesture_Layer
12801     */
12802    struct _Elm_Gesture_Rotate_Info
12803      {
12804         Evas_Coord x, y;   /**< Holds zoom center point reported to user      */
12805         Evas_Coord radius; /**< Holds radius between fingers reported to user */
12806         double base_angle; /**< Holds start-angle */
12807         double angle;      /**< Rotation value: 0.0 means no rotation         */
12808         double momentum;   /**< Rotation momentum: rotation done per second (NOT YET SUPPORTED) */
12809      };
12810
12811    /**
12812     * @typedef Elm_Gesture_Rotate_Info
12813     * Holds rotation info for user
12814     * @ingroup Elm_Gesture_Layer
12815     */
12816    typedef struct _Elm_Gesture_Rotate_Info Elm_Gesture_Rotate_Info;
12817
12818    /**
12819     * @typedef Elm_Gesture_Event_Cb
12820     * User callback used to stream gesture info from gesture layer
12821     * @param data user data
12822     * @param event_info gesture report info
12823     * Returns a flag field to be applied on the causing event.
12824     * You should probably return EVAS_EVENT_FLAG_ON_HOLD if your widget acted
12825     * upon the event, in an irreversible way.
12826     *
12827     * @ingroup Elm_Gesture_Layer
12828     */
12829    typedef Evas_Event_Flags (*Elm_Gesture_Event_Cb) (void *data, void *event_info);
12830
12831    /**
12832     * Use function to set callbacks to be notified about
12833     * change of state of gesture.
12834     * When a user registers a callback with this function
12835     * this means this gesture has to be tested.
12836     *
12837     * When ALL callbacks for a gesture are set to NULL
12838     * it means user isn't interested in gesture-state
12839     * and it will not be tested.
12840     *
12841     * @param obj Pointer to gesture-layer.
12842     * @param idx The gesture you would like to track its state.
12843     * @param cb callback function pointer.
12844     * @param cb_type what event this callback tracks: START, MOVE, END, ABORT.
12845     * @param data user info to be sent to callback (usually, Smart Data)
12846     *
12847     * @ingroup Elm_Gesture_Layer
12848     */
12849    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);
12850
12851    /**
12852     * Call this function to get repeat-events settings.
12853     *
12854     * @param obj Pointer to gesture-layer.
12855     *
12856     * @return repeat events settings.
12857     * @see elm_gesture_layer_hold_events_set()
12858     * @ingroup Elm_Gesture_Layer
12859     */
12860    EAPI Eina_Bool elm_gesture_layer_hold_events_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12861
12862    /**
12863     * This function called in order to make gesture-layer repeat events.
12864     * Set this of you like to get the raw events only if gestures were not detected.
12865     * Clear this if you like gesture layer to fwd events as testing gestures.
12866     *
12867     * @param obj Pointer to gesture-layer.
12868     * @param r Repeat: TRUE/FALSE
12869     *
12870     * @ingroup Elm_Gesture_Layer
12871     */
12872    EAPI void elm_gesture_layer_hold_events_set(Evas_Object *obj, Eina_Bool r) EINA_ARG_NONNULL(1);
12873
12874    /**
12875     * This function sets step-value for zoom action.
12876     * Set step to any positive value.
12877     * Cancel step setting by setting to 0.0
12878     *
12879     * @param obj Pointer to gesture-layer.
12880     * @param s new zoom step value.
12881     *
12882     * @ingroup Elm_Gesture_Layer
12883     */
12884    EAPI void elm_gesture_layer_zoom_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
12885
12886    /**
12887     * This function sets step-value for rotate action.
12888     * Set step to any positive value.
12889     * Cancel step setting by setting to 0.0
12890     *
12891     * @param obj Pointer to gesture-layer.
12892     * @param s new roatate step value.
12893     *
12894     * @ingroup Elm_Gesture_Layer
12895     */
12896    EAPI void elm_gesture_layer_rotate_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
12897
12898    /**
12899     * This function called to attach gesture-layer to an Evas_Object.
12900     * @param obj Pointer to gesture-layer.
12901     * @param t Pointer to underlying object (AKA Target)
12902     *
12903     * @return TRUE, FALSE on success, failure.
12904     *
12905     * @ingroup Elm_Gesture_Layer
12906     */
12907    EAPI Eina_Bool elm_gesture_layer_attach(Evas_Object *obj, Evas_Object *t) EINA_ARG_NONNULL(1, 2);
12908
12909    /**
12910     * Call this function to construct a new gesture-layer object.
12911     * This does not activate the gesture layer. You have to
12912     * call elm_gesture_layer_attach in order to 'activate' gesture-layer.
12913     *
12914     * @param parent the parent object.
12915     *
12916     * @return Pointer to new gesture-layer object.
12917     *
12918     * @ingroup Elm_Gesture_Layer
12919     */
12920    EAPI Evas_Object *elm_gesture_layer_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12921
12922    /**
12923     * @defgroup Thumb Thumb
12924     *
12925     * @image html img/widget/thumb/preview-00.png
12926     * @image latex img/widget/thumb/preview-00.eps
12927     *
12928     * A thumb object is used for displaying the thumbnail of an image or video.
12929     * You must have compiled Elementary with Ethumb_Client support and the DBus
12930     * service must be present and auto-activated in order to have thumbnails to
12931     * be generated.
12932     *
12933     * Once the thumbnail object becomes visible, it will check if there is a
12934     * previously generated thumbnail image for the file set on it. If not, it
12935     * will start generating this thumbnail.
12936     *
12937     * Different config settings will cause different thumbnails to be generated
12938     * even on the same file.
12939     *
12940     * Generated thumbnails are stored under @c $HOME/.thumbnails/. Check the
12941     * Ethumb documentation to change this path, and to see other configuration
12942     * options.
12943     *
12944     * Signals that you can add callbacks for are:
12945     *
12946     * - "clicked" - This is called when a user has clicked the thumb without dragging
12947     *             around.
12948     * - "clicked,double" - This is called when a user has double-clicked the thumb.
12949     * - "press" - This is called when a user has pressed down the thumb.
12950     * - "generate,start" - The thumbnail generation started.
12951     * - "generate,stop" - The generation process stopped.
12952     * - "generate,error" - The generation failed.
12953     * - "load,error" - The thumbnail image loading failed.
12954     *
12955     * available styles:
12956     * - default
12957     * - noframe
12958     *
12959     * An example of use of thumbnail:
12960     *
12961     * - @ref thumb_example_01
12962     */
12963
12964    /**
12965     * @addtogroup Thumb
12966     * @{
12967     */
12968
12969    /**
12970     * @enum _Elm_Thumb_Animation_Setting
12971     * @typedef Elm_Thumb_Animation_Setting
12972     *
12973     * Used to set if a video thumbnail is animating or not.
12974     *
12975     * @ingroup Thumb
12976     */
12977    typedef enum _Elm_Thumb_Animation_Setting
12978      {
12979         ELM_THUMB_ANIMATION_START = 0, /**< Play animation once */
12980         ELM_THUMB_ANIMATION_LOOP,      /**< Keep playing animation until stop is requested */
12981         ELM_THUMB_ANIMATION_STOP,      /**< Stop playing the animation */
12982         ELM_THUMB_ANIMATION_LAST
12983      } Elm_Thumb_Animation_Setting;
12984
12985    /**
12986     * Add a new thumb object to the parent.
12987     *
12988     * @param parent The parent object.
12989     * @return The new object or NULL if it cannot be created.
12990     *
12991     * @see elm_thumb_file_set()
12992     * @see elm_thumb_ethumb_client_get()
12993     *
12994     * @ingroup Thumb
12995     */
12996    EAPI Evas_Object                 *elm_thumb_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12997    /**
12998     * Reload thumbnail if it was generated before.
12999     *
13000     * @param obj The thumb object to reload
13001     *
13002     * This is useful if the ethumb client configuration changed, like its
13003     * size, aspect or any other property one set in the handle returned
13004     * by elm_thumb_ethumb_client_get().
13005     *
13006     * If the options didn't change, the thumbnail won't be generated again, but
13007     * the old one will still be used.
13008     *
13009     * @see elm_thumb_file_set()
13010     *
13011     * @ingroup Thumb
13012     */
13013    EAPI void                         elm_thumb_reload(Evas_Object *obj) EINA_ARG_NONNULL(1);
13014    /**
13015     * Set the file that will be used as thumbnail.
13016     *
13017     * @param obj The thumb object.
13018     * @param file The path to file that will be used as thumb.
13019     * @param key The key used in case of an EET file.
13020     *
13021     * The file can be an image or a video (in that case, acceptable extensions are:
13022     * avi, mp4, ogv, mov, mpg and wmv). To start the video animation, use the
13023     * function elm_thumb_animate().
13024     *
13025     * @see elm_thumb_file_get()
13026     * @see elm_thumb_reload()
13027     * @see elm_thumb_animate()
13028     *
13029     * @ingroup Thumb
13030     */
13031    EAPI void                         elm_thumb_file_set(Evas_Object *obj, const char *file, const char *key) EINA_ARG_NONNULL(1);
13032    /**
13033     * Get the image or video path and key used to generate the thumbnail.
13034     *
13035     * @param obj The thumb object.
13036     * @param file Pointer to filename.
13037     * @param key Pointer to key.
13038     *
13039     * @see elm_thumb_file_set()
13040     * @see elm_thumb_path_get()
13041     *
13042     * @ingroup Thumb
13043     */
13044    EAPI void                         elm_thumb_file_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
13045    /**
13046     * Get the path and key to the image or video generated by ethumb.
13047     *
13048     * One just need to make sure that the thumbnail was generated before getting
13049     * its path; otherwise, the path will be NULL. One way to do that is by asking
13050     * for the path when/after the "generate,stop" smart callback is called.
13051     *
13052     * @param obj The thumb object.
13053     * @param file Pointer to thumb path.
13054     * @param key Pointer to thumb key.
13055     *
13056     * @see elm_thumb_file_get()
13057     *
13058     * @ingroup Thumb
13059     */
13060    EAPI void                         elm_thumb_path_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
13061    /**
13062     * Set the animation state for the thumb object. If its content is an animated
13063     * video, you may start/stop the animation or tell it to play continuously and
13064     * looping.
13065     *
13066     * @param obj The thumb object.
13067     * @param setting The animation setting.
13068     *
13069     * @see elm_thumb_file_set()
13070     *
13071     * @ingroup Thumb
13072     */
13073    EAPI void                         elm_thumb_animate_set(Evas_Object *obj, Elm_Thumb_Animation_Setting s) EINA_ARG_NONNULL(1);
13074    /**
13075     * Get the animation state for the thumb object.
13076     *
13077     * @param obj The thumb object.
13078     * @return getting The animation setting or @c ELM_THUMB_ANIMATION_LAST,
13079     * on errors.
13080     *
13081     * @see elm_thumb_animate_set()
13082     *
13083     * @ingroup Thumb
13084     */
13085    EAPI Elm_Thumb_Animation_Setting  elm_thumb_animate_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13086    /**
13087     * Get the ethumb_client handle so custom configuration can be made.
13088     *
13089     * @return Ethumb_Client instance or NULL.
13090     *
13091     * This must be called before the objects are created to be sure no object is
13092     * visible and no generation started.
13093     *
13094     * Example of usage:
13095     *
13096     * @code
13097     * #include <Elementary.h>
13098     * #ifndef ELM_LIB_QUICKLAUNCH
13099     * EAPI_MAIN int
13100     * elm_main(int argc, char **argv)
13101     * {
13102     *    Ethumb_Client *client;
13103     *
13104     *    elm_need_ethumb();
13105     *
13106     *    // ... your code
13107     *
13108     *    client = elm_thumb_ethumb_client_get();
13109     *    if (!client)
13110     *      {
13111     *         ERR("could not get ethumb_client");
13112     *         return 1;
13113     *      }
13114     *    ethumb_client_size_set(client, 100, 100);
13115     *    ethumb_client_crop_align_set(client, 0.5, 0.5);
13116     *    // ... your code
13117     *
13118     *    // Create elm_thumb objects here
13119     *
13120     *    elm_run();
13121     *    elm_shutdown();
13122     *    return 0;
13123     * }
13124     * #endif
13125     * ELM_MAIN()
13126     * @endcode
13127     *
13128     * @note There's only one client handle for Ethumb, so once a configuration
13129     * change is done to it, any other request for thumbnails (for any thumbnail
13130     * object) will use that configuration. Thus, this configuration is global.
13131     *
13132     * @ingroup Thumb
13133     */
13134    EAPI void                        *elm_thumb_ethumb_client_get(void);
13135    /**
13136     * Get the ethumb_client connection state.
13137     *
13138     * @return EINA_TRUE if the client is connected to the server or EINA_FALSE
13139     * otherwise.
13140     */
13141    EAPI Eina_Bool                    elm_thumb_ethumb_client_connected(void);
13142    /**
13143     * Make the thumbnail 'editable'.
13144     *
13145     * @param obj Thumb object.
13146     * @param set Turn on or off editability. Default is @c EINA_FALSE.
13147     *
13148     * This means the thumbnail is a valid drag target for drag and drop, and can be
13149     * cut or pasted too.
13150     *
13151     * @see elm_thumb_editable_get()
13152     *
13153     * @ingroup Thumb
13154     */
13155    EAPI Eina_Bool                    elm_thumb_editable_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
13156    EAPI Eina_Bool                    elm_thumb_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13157    /**
13158     * Make the thumbnail 'editable'.
13159     *
13160     * @param obj Thumb object.
13161     * @return Editability.
13162     *
13163     * This means the thumbnail is a valid drag target for drag and drop, and can be
13164     * cut or pasted too.
13165     *
13166     * @see elm_thumb_editable_set()
13167     *
13168     * @ingroup Thumb
13169     */
13170    EAPI Eina_Bool                    elm_thumb_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13171
13172    /**
13173     * @}
13174     */
13175
13176    /**
13177     * @defgroup Web Web
13178     *
13179     * @image html img/widget/web/preview-00.png
13180     * @image latex img/widget/web/preview-00.eps
13181     *
13182     * A web object is used for displaying web pages (HTML/CSS/JS)
13183     * using WebKit-EFL. You must have compiled Elementary with
13184     * ewebkit support.
13185     *
13186     * Signals that you can add callbacks for are:
13187     * @li "download,request": A file download has been requested. Event info is
13188     * a pointer to a Elm_Web_Download
13189     * @li "editorclient,contents,changed": Editor client's contents changed
13190     * @li "editorclient,selection,changed": Editor client's selection changed
13191     * @li "frame,created": A new frame was created. Event info is an
13192     * Evas_Object which can be handled with WebKit's ewk_frame API
13193     * @li "icon,received": An icon was received by the main frame
13194     * @li "inputmethod,changed": Input method changed. Event info is an
13195     * Eina_Bool indicating whether it's enabled or not
13196     * @li "js,windowobject,clear": JS window object has been cleared
13197     * @li "link,hover,in": Mouse cursor is hovering over a link. Event info
13198     * is a char *link[2], where the first string contains the URL the link
13199     * points to, and the second one the title of the link
13200     * @li "link,hover,out": Mouse cursor left the link
13201     * @li "load,document,finished": Loading of a document finished. Event info
13202     * is the frame that finished loading
13203     * @li "load,error": Load failed. Event info is a pointer to
13204     * Elm_Web_Frame_Load_Error
13205     * @li "load,finished": Load finished. Event info is NULL on success, on
13206     * error it's a pointer to Elm_Web_Frame_Load_Error
13207     * @li "load,newwindow,show": A new window was created and is ready to be
13208     * shown
13209     * @li "load,progress": Overall load progress. Event info is a pointer to
13210     * a double containing a value between 0.0 and 1.0
13211     * @li "load,provisional": Started provisional load
13212     * @li "load,started": Loading of a document started
13213     * @li "menubar,visible,get": Queries if the menubar is visible. Event info
13214     * is a pointer to Eina_Bool where the callback should set EINA_TRUE if
13215     * the menubar is visible, or EINA_FALSE in case it's not
13216     * @li "menubar,visible,set": Informs menubar visibility. Event info is
13217     * an Eina_Bool indicating the visibility
13218     * @li "popup,created": A dropdown widget was activated, requesting its
13219     * popup menu to be created. Event info is a pointer to Elm_Web_Menu
13220     * @li "popup,willdelete": The web object is ready to destroy the popup
13221     * object created. Event info is a pointer to Elm_Web_Menu
13222     * @li "ready": Page is fully loaded
13223     * @li "scrollbars,visible,get": Queries visibility of scrollbars. Event
13224     * info is a pointer to Eina_Bool where the visibility state should be set
13225     * @li "scrollbars,visible,set": Informs scrollbars visibility. Event info
13226     * is an Eina_Bool with the visibility state set
13227     * @li "statusbar,text,set": Text of the statusbar changed. Even info is
13228     * a string with the new text
13229     * @li "statusbar,visible,get": Queries visibility of the status bar.
13230     * Event info is a pointer to Eina_Bool where the visibility state should be
13231     * set.
13232     * @li "statusbar,visible,set": Informs statusbar visibility. Event info is
13233     * an Eina_Bool with the visibility value
13234     * @li "title,changed": Title of the main frame changed. Event info is a
13235     * string with the new title
13236     * @li "toolbars,visible,get": Queries visibility of toolbars. Event info
13237     * is a pointer to Eina_Bool where the visibility state should be set
13238     * @li "toolbars,visible,set": Informs the visibility of toolbars. Event
13239     * info is an Eina_Bool with the visibility state
13240     * @li "tooltip,text,set": Show and set text of a tooltip. Event info is
13241     * a string with the text to show
13242     * @li "uri,changed": URI of the main frame changed. Event info is a string
13243     * with the new URI
13244     * @li "view,resized": The web object internal's view changed sized
13245     * @li "windows,close,request": A JavaScript request to close the current
13246     * window was requested
13247     * @li "zoom,animated,end": Animated zoom finished
13248     *
13249     * available styles:
13250     * - default
13251     *
13252     * An example of use of web:
13253     *
13254     * - @ref web_example_01 TBD
13255     */
13256
13257    /**
13258     * @addtogroup Web
13259     * @{
13260     */
13261
13262    /**
13263     * Structure used to report load errors.
13264     *
13265     * Load errors are reported as signal by elm_web. All the strings are
13266     * temporary references and should @b not be used after the signal
13267     * callback returns. If it's required, make copies with strdup() or
13268     * eina_stringshare_add() (they are not even guaranteed to be
13269     * stringshared, so must use eina_stringshare_add() and not
13270     * eina_stringshare_ref()).
13271     */
13272    typedef struct _Elm_Web_Frame_Load_Error Elm_Web_Frame_Load_Error;
13273    /**
13274     * Structure used to report load errors.
13275     *
13276     * Load errors are reported as signal by elm_web. All the strings are
13277     * temporary references and should @b not be used after the signal
13278     * callback returns. If it's required, make copies with strdup() or
13279     * eina_stringshare_add() (they are not even guaranteed to be
13280     * stringshared, so must use eina_stringshare_add() and not
13281     * eina_stringshare_ref()).
13282     */
13283    struct _Elm_Web_Frame_Load_Error
13284      {
13285         int code; /**< Numeric error code */
13286         Eina_Bool is_cancellation; /**< Error produced by cancelling a request */
13287         const char *domain; /**< Error domain name */
13288         const char *description; /**< Error description (already localized) */
13289         const char *failing_url; /**< The URL that failed to load */
13290         Evas_Object *frame; /**< Frame object that produced the error */
13291      };
13292
13293    /**
13294     * The possibles types that the items in a menu can be
13295     */
13296    typedef enum _Elm_Web_Menu_Item_Type
13297      {
13298         ELM_WEB_MENU_SEPARATOR,
13299         ELM_WEB_MENU_GROUP,
13300         ELM_WEB_MENU_OPTION
13301      } Elm_Web_Menu_Item_Type;
13302
13303    /**
13304     * Structure describing the items in a menu
13305     */
13306    typedef struct _Elm_Web_Menu_Item Elm_Web_Menu_Item;
13307    /**
13308     * Structure describing the items in a menu
13309     */
13310    struct _Elm_Web_Menu_Item
13311      {
13312         const char *text; /**< The text for the item */
13313         Elm_Web_Menu_Item_Type type; /**< The type of the item */
13314      };
13315
13316    /**
13317     * Structure describing the menu of a popup
13318     *
13319     * This structure will be passed as the @c event_info for the "popup,create"
13320     * signal, which is emitted when a dropdown menu is opened. Users wanting
13321     * to handle these popups by themselves should listen to this signal and
13322     * set the @c handled property of the struct to @c EINA_TRUE. Leaving this
13323     * property as @c EINA_FALSE means that the user will not handle the popup
13324     * and the default implementation will be used.
13325     *
13326     * When the popup is ready to be dismissed, a "popup,willdelete" signal
13327     * will be emitted to notify the user that it can destroy any objects and
13328     * free all data related to it.
13329     *
13330     * @see elm_web_popup_selected_set()
13331     * @see elm_web_popup_destroy()
13332     */
13333    typedef struct _Elm_Web_Menu Elm_Web_Menu;
13334    /**
13335     * Structure describing the menu of a popup
13336     *
13337     * This structure will be passed as the @c event_info for the "popup,create"
13338     * signal, which is emitted when a dropdown menu is opened. Users wanting
13339     * to handle these popups by themselves should listen to this signal and
13340     * set the @c handled property of the struct to @c EINA_TRUE. Leaving this
13341     * property as @c EINA_FALSE means that the user will not handle the popup
13342     * and the default implementation will be used.
13343     *
13344     * When the popup is ready to be dismissed, a "popup,willdelete" signal
13345     * will be emitted to notify the user that it can destroy any objects and
13346     * free all data related to it.
13347     *
13348     * @see elm_web_popup_selected_set()
13349     * @see elm_web_popup_destroy()
13350     */
13351    struct _Elm_Web_Menu
13352      {
13353         Eina_List *items; /**< List of #Elm_Web_Menu_Item */
13354         int x; /**< The X position of the popup, relative to the elm_web object */
13355         int y; /**< The Y position of the popup, relative to the elm_web object */
13356         int width; /**< Width of the popup menu */
13357         int height; /**< Height of the popup menu */
13358
13359         Eina_Bool handled : 1; /**< Set to @c EINA_TRUE by the user to indicate that the popup has been handled and the default implementation should be ignored. Leave as @c EINA_FALSE otherwise. */
13360      };
13361
13362    typedef struct _Elm_Web_Download Elm_Web_Download;
13363    struct _Elm_Web_Download
13364      {
13365         const char *url;
13366      };
13367
13368    /**
13369     * Types of zoom available.
13370     */
13371    typedef enum _Elm_Web_Zoom_Mode
13372      {
13373         ELM_WEB_ZOOM_MODE_MANUAL = 0, /**< Zoom controled normally by elm_web_zoom_set */
13374         ELM_WEB_ZOOM_MODE_AUTO_FIT, /**< Zoom until content fits in web object */
13375         ELM_WEB_ZOOM_MODE_AUTO_FILL, /**< Zoom until content fills web object */
13376         ELM_WEB_ZOOM_MODE_LAST
13377      } Elm_Web_Zoom_Mode;
13378    /**
13379     * Opaque handler containing the features (such as statusbar, menubar, etc)
13380     * that are to be set on a newly requested window.
13381     */
13382    typedef struct _Elm_Web_Window_Features Elm_Web_Window_Features;
13383    /**
13384     * Callback type for the create_window hook.
13385     *
13386     * The function parameters are:
13387     * @li @p data User data pointer set when setting the hook function
13388     * @li @p obj The elm_web object requesting the new window
13389     * @li @p js Set to @c EINA_TRUE if the request was originated from
13390     * JavaScript. @c EINA_FALSE otherwise.
13391     * @li @p window_features A pointer of #Elm_Web_Window_Features indicating
13392     * the features requested for the new window.
13393     *
13394     * The returned value of the function should be the @c elm_web widget where
13395     * the request will be loaded. That is, if a new window or tab is created,
13396     * the elm_web widget in it should be returned, and @b NOT the window
13397     * object.
13398     * Returning @c NULL should cancel the request.
13399     *
13400     * @see elm_web_window_create_hook_set()
13401     */
13402    typedef Evas_Object *(*Elm_Web_Window_Open)(void *data, Evas_Object *obj, Eina_Bool js, const Elm_Web_Window_Features *window_features);
13403    /**
13404     * Callback type for the JS alert hook.
13405     *
13406     * The function parameters are:
13407     * @li @p data User data pointer set when setting the hook function
13408     * @li @p obj The elm_web object requesting the new window
13409     * @li @p message The message to show in the alert dialog
13410     *
13411     * The function should return the object representing the alert dialog.
13412     * Elm_Web will run a second main loop to handle the dialog and normal
13413     * flow of the application will be restored when the object is deleted, so
13414     * the user should handle the popup properly in order to delete the object
13415     * when the action is finished.
13416     * If the function returns @c NULL the popup will be ignored.
13417     *
13418     * @see elm_web_dialog_alert_hook_set()
13419     */
13420    typedef Evas_Object *(*Elm_Web_Dialog_Alert)(void *data, Evas_Object *obj, const char *message);
13421    /**
13422     * Callback type for the JS confirm hook.
13423     *
13424     * The function parameters are:
13425     * @li @p data User data pointer set when setting the hook function
13426     * @li @p obj The elm_web object requesting the new window
13427     * @li @p message The message to show in the confirm dialog
13428     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13429     * the user selected @c Ok, @c EINA_FALSE otherwise.
13430     *
13431     * The function should return the object representing the confirm dialog.
13432     * Elm_Web will run a second main loop to handle the dialog and normal
13433     * flow of the application will be restored when the object is deleted, so
13434     * the user should handle the popup properly in order to delete the object
13435     * when the action is finished.
13436     * If the function returns @c NULL the popup will be ignored.
13437     *
13438     * @see elm_web_dialog_confirm_hook_set()
13439     */
13440    typedef Evas_Object *(*Elm_Web_Dialog_Confirm)(void *data, Evas_Object *obj, const char *message, Eina_Bool *ret);
13441    /**
13442     * Callback type for the JS prompt hook.
13443     *
13444     * The function parameters are:
13445     * @li @p data User data pointer set when setting the hook function
13446     * @li @p obj The elm_web object requesting the new window
13447     * @li @p message The message to show in the prompt dialog
13448     * @li @p def_value The default value to present the user in the entry
13449     * @li @p value Pointer where to store the value given by the user. Must
13450     * be a malloc'ed string or @c NULL if the user cancelled the popup.
13451     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13452     * the user selected @c Ok, @c EINA_FALSE otherwise.
13453     *
13454     * The function should return the object representing the prompt dialog.
13455     * Elm_Web will run a second main loop to handle the dialog and normal
13456     * flow of the application will be restored when the object is deleted, so
13457     * the user should handle the popup properly in order to delete the object
13458     * when the action is finished.
13459     * If the function returns @c NULL the popup will be ignored.
13460     *
13461     * @see elm_web_dialog_prompt_hook_set()
13462     */
13463    typedef Evas_Object *(*Elm_Web_Dialog_Prompt)(void *data, Evas_Object *obj, const char *message, const char *def_value, char **value, Eina_Bool *ret);
13464    /**
13465     * Callback type for the JS file selector hook.
13466     *
13467     * The function parameters are:
13468     * @li @p data User data pointer set when setting the hook function
13469     * @li @p obj The elm_web object requesting the new window
13470     * @li @p allows_multiple @c EINA_TRUE if multiple files can be selected.
13471     * @li @p accept_types Mime types accepted
13472     * @li @p selected Pointer where to store the list of malloc'ed strings
13473     * containing the path to each file selected. Must be @c NULL if the file
13474     * dialog is cancelled
13475     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13476     * the user selected @c Ok, @c EINA_FALSE otherwise.
13477     *
13478     * The function should return the object representing the file selector
13479     * dialog.
13480     * Elm_Web will run a second main loop to handle the dialog and normal
13481     * flow of the application will be restored when the object is deleted, so
13482     * the user should handle the popup properly in order to delete the object
13483     * when the action is finished.
13484     * If the function returns @c NULL the popup will be ignored.
13485     *
13486     * @see elm_web_dialog_file selector_hook_set()
13487     */
13488    typedef Evas_Object *(*Elm_Web_Dialog_File_Selector)(void *data, Evas_Object *obj, Eina_Bool allows_multiple, Eina_List *accept_types, Eina_List **selected, Eina_Bool *ret);
13489    /**
13490     * Callback type for the JS console message hook.
13491     *
13492     * When a console message is added from JavaScript, any set function to the
13493     * console message hook will be called for the user to handle. There is no
13494     * default implementation of this hook.
13495     *
13496     * The function parameters are:
13497     * @li @p data User data pointer set when setting the hook function
13498     * @li @p obj The elm_web object that originated the message
13499     * @li @p message The message sent
13500     * @li @p line_number The line number
13501     * @li @p source_id Source id
13502     *
13503     * @see elm_web_console_message_hook_set()
13504     */
13505    typedef void (*Elm_Web_Console_Message)(void *data, Evas_Object *obj, const char *message, unsigned int line_number, const char *source_id);
13506    /**
13507     * Add a new web object to the parent.
13508     *
13509     * @param parent The parent object.
13510     * @return The new object or NULL if it cannot be created.
13511     *
13512     * @see elm_web_uri_set()
13513     * @see elm_web_webkit_view_get()
13514     */
13515    EAPI Evas_Object                 *elm_web_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13516
13517    /**
13518     * Get internal ewk_view object from web object.
13519     *
13520     * Elementary may not provide some low level features of EWebKit,
13521     * instead of cluttering the API with proxy methods we opted to
13522     * return the internal reference. Be careful using it as it may
13523     * interfere with elm_web behavior.
13524     *
13525     * @param obj The web object.
13526     * @return The internal ewk_view object or NULL if it does not
13527     *         exist. (Failure to create or Elementary compiled without
13528     *         ewebkit)
13529     *
13530     * @see elm_web_add()
13531     */
13532    EAPI Evas_Object                 *elm_web_webkit_view_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13533
13534    /**
13535     * Sets the function to call when a new window is requested
13536     *
13537     * This hook will be called when a request to create a new window is
13538     * issued from the web page loaded.
13539     * There is no default implementation for this feature, so leaving this
13540     * unset or passing @c NULL in @p func will prevent new windows from
13541     * opening.
13542     *
13543     * @param obj The web object where to set the hook function
13544     * @param func The hook function to be called when a window is requested
13545     * @param data User data
13546     */
13547    EAPI void                         elm_web_window_create_hook_set(Evas_Object *obj, Elm_Web_Window_Open func, void *data);
13548    /**
13549     * Sets the function to call when an alert dialog
13550     *
13551     * This hook will be called when a JavaScript alert dialog is requested.
13552     * If no function is set or @c NULL is passed in @p func, the default
13553     * implementation will take place.
13554     *
13555     * @param obj The web object where to set the hook function
13556     * @param func The callback function to be used
13557     * @param data User data
13558     *
13559     * @see elm_web_inwin_mode_set()
13560     */
13561    EAPI void                         elm_web_dialog_alert_hook_set(Evas_Object *obj, Elm_Web_Dialog_Alert func, void *data);
13562    /**
13563     * Sets the function to call when an confirm dialog
13564     *
13565     * This hook will be called when a JavaScript confirm dialog is requested.
13566     * If no function is set or @c NULL is passed in @p func, the default
13567     * implementation will take place.
13568     *
13569     * @param obj The web object where to set the hook function
13570     * @param func The callback function to be used
13571     * @param data User data
13572     *
13573     * @see elm_web_inwin_mode_set()
13574     */
13575    EAPI void                         elm_web_dialog_confirm_hook_set(Evas_Object *obj, Elm_Web_Dialog_Confirm func, void *data);
13576    /**
13577     * Sets the function to call when an prompt dialog
13578     *
13579     * This hook will be called when a JavaScript prompt dialog is requested.
13580     * If no function is set or @c NULL is passed in @p func, the default
13581     * implementation will take place.
13582     *
13583     * @param obj The web object where to set the hook function
13584     * @param func The callback function to be used
13585     * @param data User data
13586     *
13587     * @see elm_web_inwin_mode_set()
13588     */
13589    EAPI void                         elm_web_dialog_prompt_hook_set(Evas_Object *obj, Elm_Web_Dialog_Prompt func, void *data);
13590    /**
13591     * Sets the function to call when an file selector dialog
13592     *
13593     * This hook will be called when a JavaScript file selector dialog is
13594     * requested.
13595     * If no function is set or @c NULL is passed in @p func, the default
13596     * implementation will take place.
13597     *
13598     * @param obj The web object where to set the hook function
13599     * @param func The callback function to be used
13600     * @param data User data
13601     *
13602     * @see elm_web_inwin_mode_set()
13603     */
13604    EAPI void                         elm_web_dialog_file_selector_hook_set(Evas_Object *obj, Elm_Web_Dialog_File_Selector func, void *data);
13605    /**
13606     * Sets the function to call when a console message is emitted from JS
13607     *
13608     * This hook will be called when a console message is emitted from
13609     * JavaScript. There is no default implementation for this feature.
13610     *
13611     * @param obj The web object where to set the hook function
13612     * @param func The callback function to be used
13613     * @param data User data
13614     */
13615    EAPI void                         elm_web_console_message_hook_set(Evas_Object *obj, Elm_Web_Console_Message func, void *data);
13616    /**
13617     * Gets the status of the tab propagation
13618     *
13619     * @param obj The web object to query
13620     * @return EINA_TRUE if tab propagation is enabled, EINA_FALSE otherwise
13621     *
13622     * @see elm_web_tab_propagate_set()
13623     */
13624    EAPI Eina_Bool                    elm_web_tab_propagate_get(const Evas_Object *obj);
13625    /**
13626     * Sets whether to use tab propagation
13627     *
13628     * If tab propagation is enabled, whenever the user presses the Tab key,
13629     * Elementary will handle it and switch focus to the next widget.
13630     * The default value is disabled, where WebKit will handle the Tab key to
13631     * cycle focus though its internal objects, jumping to the next widget
13632     * only when that cycle ends.
13633     *
13634     * @param obj The web object
13635     * @param propagate Whether to propagate Tab keys to Elementary or not
13636     */
13637    EAPI void                         elm_web_tab_propagate_set(Evas_Object *obj, Eina_Bool propagate);
13638    /**
13639     * Sets the URI for the web object
13640     *
13641     * It must be a full URI, with resource included, in the form
13642     * http://www.enlightenment.org or file:///tmp/something.html
13643     *
13644     * @param obj The web object
13645     * @param uri The URI to set
13646     * @return EINA_TRUE if the URI could be, EINA_FALSE if an error occurred
13647     */
13648    EAPI Eina_Bool                    elm_web_uri_set(Evas_Object *obj, const char *uri);
13649    /**
13650     * Gets the current URI for the object
13651     *
13652     * The returned string must not be freed and is guaranteed to be
13653     * stringshared.
13654     *
13655     * @param obj The web object
13656     * @return A stringshared internal string with the current URI, or NULL on
13657     * failure
13658     */
13659    EAPI const char                  *elm_web_uri_get(const Evas_Object *obj);
13660    /**
13661     * Gets the current title
13662     *
13663     * The returned string must not be freed and is guaranteed to be
13664     * stringshared.
13665     *
13666     * @param obj The web object
13667     * @return A stringshared internal string with the current title, or NULL on
13668     * failure
13669     */
13670    EAPI const char                  *elm_web_title_get(const Evas_Object *obj);
13671    /**
13672     * Sets the background color to be used by the web object
13673     *
13674     * This is the color that will be used by default when the loaded page
13675     * does not set it's own. Color values are pre-multiplied.
13676     *
13677     * @param obj The web object
13678     * @param r Red component
13679     * @param g Green component
13680     * @param b Blue component
13681     * @param a Alpha component
13682     */
13683    EAPI void                         elm_web_bg_color_set(Evas_Object *obj, int r, int g, int b, int a);
13684    /**
13685     * Gets the background color to be used by the web object
13686     *
13687     * This is the color that will be used by default when the loaded page
13688     * does not set it's own. Color values are pre-multiplied.
13689     *
13690     * @param obj The web object
13691     * @param r Red component
13692     * @param g Green component
13693     * @param b Blue component
13694     * @param a Alpha component
13695     */
13696    EAPI void                         elm_web_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b, int *a);
13697    /**
13698     * Gets a copy of the currently selected text
13699     *
13700     * The string returned must be freed by the user when it's done with it.
13701     *
13702     * @param obj The web object
13703     * @return A newly allocated string, or NULL if nothing is selected or an
13704     * error occurred
13705     */
13706    EAPI char                        *elm_view_selection_get(const Evas_Object *obj);
13707    /**
13708     * Tells the web object which index in the currently open popup was selected
13709     *
13710     * When the user handles the popup creation from the "popup,created" signal,
13711     * it needs to tell the web object which item was selected by calling this
13712     * function with the index corresponding to the item.
13713     *
13714     * @param obj The web object
13715     * @param index The index selected
13716     *
13717     * @see elm_web_popup_destroy()
13718     */
13719    EAPI void                         elm_web_popup_selected_set(Evas_Object *obj, int index);
13720    /**
13721     * Dismisses an open dropdown popup
13722     *
13723     * When the popup from a dropdown widget is to be dismissed, either after
13724     * selecting an option or to cancel it, this function must be called, which
13725     * will later emit an "popup,willdelete" signal to notify the user that
13726     * any memory and objects related to this popup can be freed.
13727     *
13728     * @param obj The web object
13729     * @return EINA_TRUE if the menu was successfully destroyed, or EINA_FALSE
13730     * if there was no menu to destroy
13731     */
13732    EAPI Eina_Bool                    elm_web_popup_destroy(Evas_Object *obj);
13733    /**
13734     * Searches the given string in a document.
13735     *
13736     * @param obj The web object where to search the text
13737     * @param string String to search
13738     * @param case_sensitive If search should be case sensitive or not
13739     * @param forward If search is from cursor and on or backwards
13740     * @param wrap If search should wrap at the end
13741     *
13742     * @return @c EINA_TRUE if the given string was found, @c EINA_FALSE if not
13743     * or failure
13744     */
13745    EAPI Eina_Bool                    elm_web_text_search(const Evas_Object *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap);
13746    /**
13747     * Marks matches of the given string in a document.
13748     *
13749     * @param obj The web object where to search text
13750     * @param string String to match
13751     * @param case_sensitive If match should be case sensitive or not
13752     * @param highlight If matches should be highlighted
13753     * @param limit Maximum amount of matches, or zero to unlimited
13754     *
13755     * @return number of matched @a string
13756     */
13757    EAPI unsigned int                 elm_web_text_matches_mark(Evas_Object *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit);
13758    /**
13759     * Clears all marked matches in the document
13760     *
13761     * @param obj The web object
13762     *
13763     * @return EINA_TRUE on success, EINA_FALSE otherwise
13764     */
13765    EAPI Eina_Bool                    elm_web_text_matches_unmark_all(Evas_Object *obj);
13766    /**
13767     * Sets whether to highlight the matched marks
13768     *
13769     * If enabled, marks set with elm_web_text_matches_mark() will be
13770     * highlighted.
13771     *
13772     * @param obj The web object
13773     * @param highlight Whether to highlight the marks or not
13774     *
13775     * @return EINA_TRUE on success, EINA_FALSE otherwise
13776     */
13777    EAPI Eina_Bool                    elm_web_text_matches_highlight_set(Evas_Object *obj, Eina_Bool highlight);
13778    /**
13779     * Gets whether highlighting marks is enabled
13780     *
13781     * @param The web object
13782     *
13783     * @return EINA_TRUE is marks are set to be highlighted, EINA_FALSE
13784     * otherwise
13785     */
13786    EAPI Eina_Bool                    elm_web_text_matches_highlight_get(const Evas_Object *obj);
13787    /**
13788     * Gets the overall loading progress of the page
13789     *
13790     * Returns the estimated loading progress of the page, with a value between
13791     * 0.0 and 1.0. This is an estimated progress accounting for all the frames
13792     * included in the page.
13793     *
13794     * @param The web object
13795     *
13796     * @return A value between 0.0 and 1.0 indicating the progress, or -1.0 on
13797     * failure
13798     */
13799    EAPI double                       elm_web_load_progress_get(const Evas_Object *obj);
13800    /**
13801     * Stops loading the current page
13802     *
13803     * Cancels the loading of the current page in the web object. This will
13804     * cause a "load,error" signal to be emitted, with the is_cancellation
13805     * flag set to EINA_TRUE.
13806     *
13807     * @param obj The web object
13808     *
13809     * @return EINA_TRUE if the cancel was successful, EINA_FALSE otherwise
13810     */
13811    EAPI Eina_Bool                    elm_web_stop(Evas_Object *obj);
13812    /**
13813     * Requests a reload of the current document in the object
13814     *
13815     * @param obj The web object
13816     *
13817     * @return EINA_TRUE on success, EINA_FALSE otherwise
13818     */
13819    EAPI Eina_Bool                    elm_web_reload(Evas_Object *obj);
13820    /**
13821     * Requests a reload of the current document, avoiding any existing caches
13822     *
13823     * @param obj The web object
13824     *
13825     * @return EINA_TRUE on success, EINA_FALSE otherwise
13826     */
13827    EAPI Eina_Bool                    elm_web_reload_full(Evas_Object *obj);
13828    /**
13829     * Goes back one step in the browsing history
13830     *
13831     * This is equivalent to calling elm_web_object_navigate(obj, -1);
13832     *
13833     * @param obj The web object
13834     *
13835     * @return EINA_TRUE on success, EINA_FALSE otherwise
13836     *
13837     * @see elm_web_history_enable_set()
13838     * @see elm_web_back_possible()
13839     * @see elm_web_forward()
13840     * @see elm_web_navigate()
13841     */
13842    EAPI Eina_Bool                    elm_web_back(Evas_Object *obj);
13843    /**
13844     * Goes forward one step in the browsing history
13845     *
13846     * This is equivalent to calling elm_web_object_navigate(obj, 1);
13847     *
13848     * @param obj The web object
13849     *
13850     * @return EINA_TRUE on success, EINA_FALSE otherwise
13851     *
13852     * @see elm_web_history_enable_set()
13853     * @see elm_web_forward_possible()
13854     * @see elm_web_back()
13855     * @see elm_web_navigate()
13856     */
13857    EAPI Eina_Bool                    elm_web_forward(Evas_Object *obj);
13858    /**
13859     * Jumps the given number of steps in the browsing history
13860     *
13861     * The @p steps value can be a negative integer to back in history, or a
13862     * positive to move forward.
13863     *
13864     * @param obj The web object
13865     * @param steps The number of steps to jump
13866     *
13867     * @return EINA_TRUE on success, EINA_FALSE on error or if not enough
13868     * history exists to jump the given number of steps
13869     *
13870     * @see elm_web_history_enable_set()
13871     * @see elm_web_navigate_possible()
13872     * @see elm_web_back()
13873     * @see elm_web_forward()
13874     */
13875    EAPI Eina_Bool                    elm_web_navigate(Evas_Object *obj, int steps);
13876    /**
13877     * Queries whether it's possible to go back in history
13878     *
13879     * @param obj The web object
13880     *
13881     * @return EINA_TRUE if it's possible to back in history, EINA_FALSE
13882     * otherwise
13883     */
13884    EAPI Eina_Bool                    elm_web_back_possible(Evas_Object *obj);
13885    /**
13886     * Queries whether it's possible to go forward in history
13887     *
13888     * @param obj The web object
13889     *
13890     * @return EINA_TRUE if it's possible to forward in history, EINA_FALSE
13891     * otherwise
13892     */
13893    EAPI Eina_Bool                    elm_web_forward_possible(Evas_Object *obj);
13894    /**
13895     * Queries whether it's possible to jump the given number of steps
13896     *
13897     * The @p steps value can be a negative integer to back in history, or a
13898     * positive to move forward.
13899     *
13900     * @param obj The web object
13901     * @param steps The number of steps to check for
13902     *
13903     * @return EINA_TRUE if enough history exists to perform the given jump,
13904     * EINA_FALSE otherwise
13905     */
13906    EAPI Eina_Bool                    elm_web_navigate_possible(Evas_Object *obj, int steps);
13907    /**
13908     * Gets whether browsing history is enabled for the given object
13909     *
13910     * @param obj The web object
13911     *
13912     * @return EINA_TRUE if history is enabled, EINA_FALSE otherwise
13913     */
13914    EAPI Eina_Bool                    elm_web_history_enable_get(const Evas_Object *obj);
13915    /**
13916     * Enables or disables the browsing history
13917     *
13918     * @param obj The web object
13919     * @param enable Whether to enable or disable the browsing history
13920     */
13921    EAPI void                         elm_web_history_enable_set(Evas_Object *obj, Eina_Bool enable);
13922    /**
13923     * Sets the zoom level of the web object
13924     *
13925     * Zoom level matches the Webkit API, so 1.0 means normal zoom, with higher
13926     * values meaning zoom in and lower meaning zoom out. This function will
13927     * only affect the zoom level if the mode set with elm_web_zoom_mode_set()
13928     * is ::ELM_WEB_ZOOM_MODE_MANUAL.
13929     *
13930     * @param obj The web object
13931     * @param zoom The zoom level to set
13932     */
13933    EAPI void                         elm_web_zoom_set(Evas_Object *obj, double zoom);
13934    /**
13935     * Gets the current zoom level set on the web object
13936     *
13937     * Note that this is the zoom level set on the web object and not that
13938     * of the underlying Webkit one. In the ::ELM_WEB_ZOOM_MODE_MANUAL mode,
13939     * the two zoom levels should match, but for the other two modes the
13940     * Webkit zoom is calculated internally to match the chosen mode without
13941     * changing the zoom level set for the web object.
13942     *
13943     * @param obj The web object
13944     *
13945     * @return The zoom level set on the object
13946     */
13947    EAPI double                       elm_web_zoom_get(const Evas_Object *obj);
13948    /**
13949     * Sets the zoom mode to use
13950     *
13951     * The modes can be any of those defined in ::Elm_Web_Zoom_Mode, except
13952     * ::ELM_WEB_ZOOM_MODE_LAST. The default is ::ELM_WEB_ZOOM_MODE_MANUAL.
13953     *
13954     * ::ELM_WEB_ZOOM_MODE_MANUAL means the zoom level will be controlled
13955     * with the elm_web_zoom_set() function.
13956     * ::ELM_WEB_ZOOM_MODE_AUTO_FIT will calculate the needed zoom level to
13957     * make sure the entirety of the web object's contents are shown.
13958     * ::ELM_WEB_ZOOM_MODE_AUTO_FILL will calculate the needed zoom level to
13959     * fit the contents in the web object's size, without leaving any space
13960     * unused.
13961     *
13962     * @param obj The web object
13963     * @param mode The mode to set
13964     */
13965    EAPI void                         elm_web_zoom_mode_set(Evas_Object *obj, Elm_Web_Zoom_Mode mode);
13966    /**
13967     * Gets the currently set zoom mode
13968     *
13969     * @param obj The web object
13970     *
13971     * @return The current zoom mode set for the object, or
13972     * ::ELM_WEB_ZOOM_MODE_LAST on error
13973     */
13974    EAPI Elm_Web_Zoom_Mode            elm_web_zoom_mode_get(const Evas_Object *obj);
13975    /**
13976     * Shows the given region in the web object
13977     *
13978     * @param obj The web object
13979     * @param x The x coordinate of the region to show
13980     * @param y The y coordinate of the region to show
13981     * @param w The width of the region to show
13982     * @param h The height of the region to show
13983     */
13984    EAPI void                         elm_web_region_show(Evas_Object *obj, int x, int y, int w, int h);
13985    /**
13986     * Brings in the region to the visible area
13987     *
13988     * Like elm_web_region_show(), but it animates the scrolling of the object
13989     * to show the area
13990     *
13991     * @param obj The web object
13992     * @param x The x coordinate of the region to show
13993     * @param y The y coordinate of the region to show
13994     * @param w The width of the region to show
13995     * @param h The height of the region to show
13996     */
13997    EAPI void                         elm_web_region_bring_in(Evas_Object *obj, int x, int y, int w, int h);
13998    /**
13999     * Sets the default dialogs to use an Inwin instead of a normal window
14000     *
14001     * If set, then the default implementation for the JavaScript dialogs and
14002     * file selector will be opened in an Inwin. Otherwise they will use a
14003     * normal separated window.
14004     *
14005     * @param obj The web object
14006     * @param value EINA_TRUE to use Inwin, EINA_FALSE to use a normal window
14007     */
14008    EAPI void                         elm_web_inwin_mode_set(Evas_Object *obj, Eina_Bool value);
14009    /**
14010     * Gets whether Inwin mode is set for the current object
14011     *
14012     * @param obj The web object
14013     *
14014     * @return EINA_TRUE if Inwin mode is set, EINA_FALSE otherwise
14015     */
14016    EAPI Eina_Bool                    elm_web_inwin_mode_get(const Evas_Object *obj);
14017
14018    EAPI void                         elm_web_window_features_ref(Elm_Web_Window_Features *wf);
14019    EAPI void                         elm_web_window_features_unref(Elm_Web_Window_Features *wf);
14020    EAPI void                         elm_web_window_features_bool_property_get(const Elm_Web_Window_Features *wf, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visble, Eina_Bool *fullscreen);
14021    EAPI void                         elm_web_window_features_int_property_get(const Elm_Web_Window_Features *wf, int *x, int *y, int *w, int *h);
14022
14023    /**
14024     * @}
14025     */
14026
14027    /**
14028     * @defgroup Hoversel Hoversel
14029     *
14030     * @image html img/widget/hoversel/preview-00.png
14031     * @image latex img/widget/hoversel/preview-00.eps
14032     *
14033     * A hoversel is a button that pops up a list of items (automatically
14034     * choosing the direction to display) that have a label and, optionally, an
14035     * icon to select from. It is a convenience widget to avoid the need to do
14036     * all the piecing together yourself. It is intended for a small number of
14037     * items in the hoversel menu (no more than 8), though is capable of many
14038     * more.
14039     *
14040     * Signals that you can add callbacks for are:
14041     * "clicked" - the user clicked the hoversel button and popped up the sel
14042     * "selected" - an item in the hoversel list is selected. event_info is the item
14043     * "dismissed" - the hover is dismissed
14044     *
14045     * See @ref tutorial_hoversel for an example.
14046     * @{
14047     */
14048    typedef struct _Elm_Hoversel_Item Elm_Hoversel_Item; /**< Item of Elm_Hoversel. Sub-type of Elm_Widget_Item */
14049    /**
14050     * @brief Add a new Hoversel object
14051     *
14052     * @param parent The parent object
14053     * @return The new object or NULL if it cannot be created
14054     */
14055    EAPI Evas_Object       *elm_hoversel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14056    /**
14057     * @brief This sets the hoversel to expand horizontally.
14058     *
14059     * @param obj The hoversel object
14060     * @param horizontal If true, the hover will expand horizontally to the
14061     * right.
14062     *
14063     * @note The initial button will display horizontally regardless of this
14064     * setting.
14065     */
14066    EAPI void               elm_hoversel_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
14067    /**
14068     * @brief This returns whether the hoversel is set to expand horizontally.
14069     *
14070     * @param obj The hoversel object
14071     * @return If true, the hover will expand horizontally to the right.
14072     *
14073     * @see elm_hoversel_horizontal_set()
14074     */
14075    EAPI Eina_Bool          elm_hoversel_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14076    /**
14077     * @brief Set the Hover parent
14078     *
14079     * @param obj The hoversel object
14080     * @param parent The parent to use
14081     *
14082     * Sets the hover parent object, the area that will be darkened when the
14083     * hoversel is clicked. Should probably be the window that the hoversel is
14084     * in. See @ref Hover objects for more information.
14085     */
14086    EAPI void               elm_hoversel_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
14087    /**
14088     * @brief Get the Hover parent
14089     *
14090     * @param obj The hoversel object
14091     * @return The used parent
14092     *
14093     * Gets the hover parent object.
14094     *
14095     * @see elm_hoversel_hover_parent_set()
14096     */
14097    EAPI Evas_Object       *elm_hoversel_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14098    /**
14099     * @brief Set the hoversel button label
14100     *
14101     * @param obj The hoversel object
14102     * @param label The label text.
14103     *
14104     * This sets the label of the button that is always visible (before it is
14105     * clicked and expanded).
14106     *
14107     * @deprecated elm_object_text_set()
14108     */
14109    EINA_DEPRECATED EAPI void               elm_hoversel_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
14110    /**
14111     * @brief Get the hoversel button label
14112     *
14113     * @param obj The hoversel object
14114     * @return The label text.
14115     *
14116     * @deprecated elm_object_text_get()
14117     */
14118    EINA_DEPRECATED EAPI const char        *elm_hoversel_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14119    /**
14120     * @brief Set the icon of the hoversel button
14121     *
14122     * @param obj The hoversel object
14123     * @param icon The icon object
14124     *
14125     * Sets the icon of the button that is always visible (before it is clicked
14126     * and expanded).  Once the icon object is set, a previously set one will be
14127     * deleted, if you want to keep that old content object, use the
14128     * elm_hoversel_icon_unset() function.
14129     *
14130     * @see elm_object_content_set() for the button widget
14131     */
14132    EAPI void               elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
14133    /**
14134     * @brief Get the icon of the hoversel button
14135     *
14136     * @param obj The hoversel object
14137     * @return The icon object
14138     *
14139     * Get the icon of the button that is always visible (before it is clicked
14140     * and expanded). Also see elm_object_content_get() for the button widget.
14141     *
14142     * @see elm_hoversel_icon_set()
14143     */
14144    EAPI Evas_Object       *elm_hoversel_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14145    /**
14146     * @brief Get and unparent the icon of the hoversel button
14147     *
14148     * @param obj The hoversel object
14149     * @return The icon object that was being used
14150     *
14151     * Unparent and return the icon of the button that is always visible
14152     * (before it is clicked and expanded).
14153     *
14154     * @see elm_hoversel_icon_set()
14155     * @see elm_object_content_unset() for the button widget
14156     */
14157    EAPI Evas_Object       *elm_hoversel_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14158    /**
14159     * @brief This triggers the hoversel popup from code, the same as if the user
14160     * had clicked the button.
14161     *
14162     * @param obj The hoversel object
14163     */
14164    EAPI void               elm_hoversel_hover_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
14165    /**
14166     * @brief This dismisses the hoversel popup as if the user had clicked
14167     * outside the hover.
14168     *
14169     * @param obj The hoversel object
14170     */
14171    EAPI void               elm_hoversel_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
14172    /**
14173     * @brief Returns whether the hoversel is expanded.
14174     *
14175     * @param obj The hoversel object
14176     * @return  This will return EINA_TRUE if the hoversel is expanded or
14177     * EINA_FALSE if it is not expanded.
14178     */
14179    EAPI Eina_Bool          elm_hoversel_expanded_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14180    /**
14181     * @brief This will remove all the children items from the hoversel.
14182     *
14183     * @param obj The hoversel object
14184     *
14185     * @warning Should @b not be called while the hoversel is active; use
14186     * elm_hoversel_expanded_get() to check first.
14187     *
14188     * @see elm_hoversel_item_del_cb_set()
14189     * @see elm_hoversel_item_del()
14190     */
14191    EAPI void               elm_hoversel_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
14192    /**
14193     * @brief Get the list of items within the given hoversel.
14194     *
14195     * @param obj The hoversel object
14196     * @return Returns a list of Elm_Hoversel_Item*
14197     *
14198     * @see elm_hoversel_item_add()
14199     */
14200    EAPI const Eina_List   *elm_hoversel_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14201    /**
14202     * @brief Add an item to the hoversel button
14203     *
14204     * @param obj The hoversel object
14205     * @param label The text label to use for the item (NULL if not desired)
14206     * @param icon_file An image file path on disk to use for the icon or standard
14207     * icon name (NULL if not desired)
14208     * @param icon_type The icon type if relevant
14209     * @param func Convenience function to call when this item is selected
14210     * @param data Data to pass to item-related functions
14211     * @return A handle to the item added.
14212     *
14213     * This adds an item to the hoversel to show when it is clicked. Note: if you
14214     * need to use an icon from an edje file then use
14215     * elm_hoversel_item_icon_set() right after the this function, and set
14216     * icon_file to NULL here.
14217     *
14218     * For more information on what @p icon_file and @p icon_type are see the
14219     * @ref Icon "icon documentation".
14220     */
14221    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);
14222    /**
14223     * @brief Delete an item from the hoversel
14224     *
14225     * @param item The item to delete
14226     *
14227     * This deletes the item from the hoversel (should not be called while the
14228     * hoversel is active; use elm_hoversel_expanded_get() to check first).
14229     *
14230     * @see elm_hoversel_item_add()
14231     * @see elm_hoversel_item_del_cb_set()
14232     */
14233    EAPI void               elm_hoversel_item_del(Elm_Hoversel_Item *item) EINA_ARG_NONNULL(1);
14234    /**
14235     * @brief Set the function to be called when an item from the hoversel is
14236     * freed.
14237     *
14238     * @param item The item to set the callback on
14239     * @param func The function called
14240     *
14241     * That function will receive these parameters:
14242     * @li void *item_data
14243     * @li Evas_Object *the_item_object
14244     * @li Elm_Hoversel_Item *the_object_struct
14245     *
14246     * @see elm_hoversel_item_add()
14247     */
14248    EAPI void               elm_hoversel_item_del_cb_set(Elm_Hoversel_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
14249    /**
14250     * @brief This returns the data pointer supplied with elm_hoversel_item_add()
14251     * that will be passed to associated function callbacks.
14252     *
14253     * @param item The item to get the data from
14254     * @return The data pointer set with elm_hoversel_item_add()
14255     *
14256     * @see elm_hoversel_item_add()
14257     */
14258    EAPI void              *elm_hoversel_item_data_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
14259    /**
14260     * @brief This returns the label text of the given hoversel item.
14261     *
14262     * @param item The item to get the label
14263     * @return The label text of the hoversel item
14264     *
14265     * @see elm_hoversel_item_add()
14266     */
14267    EAPI const char        *elm_hoversel_item_label_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
14268    /**
14269     * @brief This sets the icon for the given hoversel item.
14270     *
14271     * @param item The item to set the icon
14272     * @param icon_file An image file path on disk to use for the icon or standard
14273     * icon name
14274     * @param icon_group The edje group to use if @p icon_file is an edje file. Set this
14275     * to NULL if the icon is not an edje file
14276     * @param icon_type The icon type
14277     *
14278     * The icon can be loaded from the standard set, from an image file, or from
14279     * an edje file.
14280     *
14281     * @see elm_hoversel_item_add()
14282     */
14283    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);
14284    /**
14285     * @brief Get the icon object of the hoversel item
14286     *
14287     * @param item The item to get the icon from
14288     * @param icon_file The image file path on disk used for the icon or standard
14289     * icon name
14290     * @param icon_group The edje group used if @p icon_file is an edje file. NULL
14291     * if the icon is not an edje file
14292     * @param icon_type The icon type
14293     *
14294     * @see elm_hoversel_item_icon_set()
14295     * @see elm_hoversel_item_add()
14296     */
14297    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);
14298    /**
14299     * @}
14300     */
14301
14302    /**
14303     * @defgroup Toolbar Toolbar
14304     * @ingroup Elementary
14305     *
14306     * @image html img/widget/toolbar/preview-00.png
14307     * @image latex img/widget/toolbar/preview-00.eps width=\textwidth
14308     *
14309     * @image html img/toolbar.png
14310     * @image latex img/toolbar.eps width=\textwidth
14311     *
14312     * A toolbar is a widget that displays a list of items inside
14313     * a box. It can be scrollable, show a menu with items that don't fit
14314     * to toolbar size or even crop them.
14315     *
14316     * Only one item can be selected at a time.
14317     *
14318     * Items can have multiple states, or show menus when selected by the user.
14319     *
14320     * Smart callbacks one can listen to:
14321     * - "clicked" - when the user clicks on a toolbar item and becomes selected.
14322     * - "language,changed" - when the program language changes
14323     *
14324     * Available styles for it:
14325     * - @c "default"
14326     * - @c "transparent" - no background or shadow, just show the content
14327     *
14328     * List of examples:
14329     * @li @ref toolbar_example_01
14330     * @li @ref toolbar_example_02
14331     * @li @ref toolbar_example_03
14332     */
14333
14334    /**
14335     * @addtogroup Toolbar
14336     * @{
14337     */
14338
14339    /**
14340     * @enum _Elm_Toolbar_Shrink_Mode
14341     * @typedef Elm_Toolbar_Shrink_Mode
14342     *
14343     * Set toolbar's items display behavior, it can be scrollabel,
14344     * show a menu with exceeding items, or simply hide them.
14345     *
14346     * @note Default value is #ELM_TOOLBAR_SHRINK_MENU. It reads value
14347     * from elm config.
14348     *
14349     * Values <b> don't </b> work as bitmask, only one can be choosen.
14350     *
14351     * @see elm_toolbar_mode_shrink_set()
14352     * @see elm_toolbar_mode_shrink_get()
14353     *
14354     * @ingroup Toolbar
14355     */
14356    typedef enum _Elm_Toolbar_Shrink_Mode
14357      {
14358         ELM_TOOLBAR_SHRINK_NONE,   /**< Set toolbar minimun size to fit all the items. */
14359         ELM_TOOLBAR_SHRINK_HIDE,   /**< Hide exceeding items. */
14360         ELM_TOOLBAR_SHRINK_SCROLL, /**< Allow accessing exceeding items through a scroller. */
14361         ELM_TOOLBAR_SHRINK_MENU,   /**< Inserts a button to pop up a menu with exceeding items. */
14362      } Elm_Toolbar_Shrink_Mode;
14363
14364    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(). */
14365
14366    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(). */
14367
14368    /**
14369     * Add a new toolbar widget to the given parent Elementary
14370     * (container) object.
14371     *
14372     * @param parent The parent object.
14373     * @return a new toolbar widget handle or @c NULL, on errors.
14374     *
14375     * This function inserts a new toolbar widget on the canvas.
14376     *
14377     * @ingroup Toolbar
14378     */
14379    EAPI Evas_Object            *elm_toolbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14380
14381    /**
14382     * Set the icon size, in pixels, to be used by toolbar items.
14383     *
14384     * @param obj The toolbar object
14385     * @param icon_size The icon size in pixels
14386     *
14387     * @note Default value is @c 32. It reads value from elm config.
14388     *
14389     * @see elm_toolbar_icon_size_get()
14390     *
14391     * @ingroup Toolbar
14392     */
14393    EAPI void                    elm_toolbar_icon_size_set(Evas_Object *obj, int icon_size) EINA_ARG_NONNULL(1);
14394
14395    /**
14396     * Get the icon size, in pixels, to be used by toolbar items.
14397     *
14398     * @param obj The toolbar object.
14399     * @return The icon size in pixels.
14400     *
14401     * @see elm_toolbar_icon_size_set() for details.
14402     *
14403     * @ingroup Toolbar
14404     */
14405    EAPI int                     elm_toolbar_icon_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14406
14407    /**
14408     * Sets icon lookup order, for toolbar items' icons.
14409     *
14410     * @param obj The toolbar object.
14411     * @param order The icon lookup order.
14412     *
14413     * Icons added before calling this function will not be affected.
14414     * The default lookup order is #ELM_ICON_LOOKUP_THEME_FDO.
14415     *
14416     * @see elm_toolbar_icon_order_lookup_get()
14417     *
14418     * @ingroup Toolbar
14419     */
14420    EAPI void                    elm_toolbar_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
14421
14422    /**
14423     * Gets the icon lookup order.
14424     *
14425     * @param obj The toolbar object.
14426     * @return The icon lookup order.
14427     *
14428     * @see elm_toolbar_icon_order_lookup_set() for details.
14429     *
14430     * @ingroup Toolbar
14431     */
14432    EAPI Elm_Icon_Lookup_Order   elm_toolbar_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14433
14434    /**
14435     * Set whether the toolbar items' should be selected by the user or not.
14436     *
14437     * @param obj The toolbar object.
14438     * @param wrap @c EINA_TRUE to disable selection or @c EINA_FALSE to
14439     * enable it.
14440     *
14441     * This will turn off the ability to select items entirely and they will
14442     * neither appear selected nor emit selected signals. The clicked
14443     * callback function will still be called.
14444     *
14445     * Selection is enabled by default.
14446     *
14447     * @see elm_toolbar_no_select_mode_get().
14448     *
14449     * @ingroup Toolbar
14450     */
14451    EAPI void                    elm_toolbar_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
14452
14453    /**
14454     * Set whether the toolbar items' should be selected by the user or not.
14455     *
14456     * @param obj The toolbar object.
14457     * @return @c EINA_TRUE means items can be selected. @c EINA_FALSE indicates
14458     * they can't. If @p obj is @c NULL, @c EINA_FALSE is returned.
14459     *
14460     * @see elm_toolbar_no_select_mode_set() for details.
14461     *
14462     * @ingroup Toolbar
14463     */
14464    EAPI Eina_Bool               elm_toolbar_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14465
14466    /**
14467     * Append item to the toolbar.
14468     *
14469     * @param obj The toolbar object.
14470     * @param icon A string with icon name or the absolute path of an image file.
14471     * @param label The label of the item.
14472     * @param func The function to call when the item is clicked.
14473     * @param data The data to associate with the item for related callbacks.
14474     * @return The created item or @c NULL upon failure.
14475     *
14476     * A new item will be created and appended to the toolbar, i.e., will
14477     * be set as @b last item.
14478     *
14479     * Items created with this method can be deleted with
14480     * elm_toolbar_item_del().
14481     *
14482     * Associated @p data can be properly freed when item is deleted if a
14483     * callback function is set with elm_toolbar_item_del_cb_set().
14484     *
14485     * If a function is passed as argument, it will be called everytime this item
14486     * is selected, i.e., the user clicks over an unselected item.
14487     * If such function isn't needed, just passing
14488     * @c NULL as @p func is enough. The same should be done for @p data.
14489     *
14490     * Toolbar will load icon image from fdo or current theme.
14491     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14492     * If an absolute path is provided it will load it direct from a file.
14493     *
14494     * @see elm_toolbar_item_icon_set()
14495     * @see elm_toolbar_item_del()
14496     * @see elm_toolbar_item_del_cb_set()
14497     *
14498     * @ingroup Toolbar
14499     */
14500    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);
14501
14502    /**
14503     * Prepend item to the toolbar.
14504     *
14505     * @param obj The toolbar object.
14506     * @param icon A string with icon name or the absolute path of an image file.
14507     * @param label The label of the item.
14508     * @param func The function to call when the item is clicked.
14509     * @param data The data to associate with the item for related callbacks.
14510     * @return The created item or @c NULL upon failure.
14511     *
14512     * A new item will be created and prepended to the toolbar, i.e., will
14513     * be set as @b first item.
14514     *
14515     * Items created with this method can be deleted with
14516     * elm_toolbar_item_del().
14517     *
14518     * Associated @p data can be properly freed when item is deleted if a
14519     * callback function is set with elm_toolbar_item_del_cb_set().
14520     *
14521     * If a function is passed as argument, it will be called everytime this item
14522     * is selected, i.e., the user clicks over an unselected item.
14523     * If such function isn't needed, just passing
14524     * @c NULL as @p func is enough. The same should be done for @p data.
14525     *
14526     * Toolbar will load icon image from fdo or current theme.
14527     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14528     * If an absolute path is provided it will load it direct from a file.
14529     *
14530     * @see elm_toolbar_item_icon_set()
14531     * @see elm_toolbar_item_del()
14532     * @see elm_toolbar_item_del_cb_set()
14533     *
14534     * @ingroup Toolbar
14535     */
14536    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);
14537
14538    /**
14539     * Insert a new item into the toolbar object before item @p before.
14540     *
14541     * @param obj The toolbar object.
14542     * @param before The toolbar item to insert before.
14543     * @param icon A string with icon name or the absolute path of an image file.
14544     * @param label The label of the item.
14545     * @param func The function to call when the item is clicked.
14546     * @param data The data to associate with the item for related callbacks.
14547     * @return The created item or @c NULL upon failure.
14548     *
14549     * A new item will be created and added to the toolbar. Its position in
14550     * this toolbar will be just before item @p before.
14551     *
14552     * Items created with this method can be deleted with
14553     * elm_toolbar_item_del().
14554     *
14555     * Associated @p data can be properly freed when item is deleted if a
14556     * callback function is set with elm_toolbar_item_del_cb_set().
14557     *
14558     * If a function is passed as argument, it will be called everytime this item
14559     * is selected, i.e., the user clicks over an unselected item.
14560     * If such function isn't needed, just passing
14561     * @c NULL as @p func is enough. The same should be done for @p data.
14562     *
14563     * Toolbar will load icon image from fdo or current theme.
14564     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14565     * If an absolute path is provided it will load it direct from a file.
14566     *
14567     * @see elm_toolbar_item_icon_set()
14568     * @see elm_toolbar_item_del()
14569     * @see elm_toolbar_item_del_cb_set()
14570     *
14571     * @ingroup Toolbar
14572     */
14573    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);
14574
14575    /**
14576     * Insert a new item into the toolbar object after item @p after.
14577     *
14578     * @param obj The toolbar object.
14579     * @param after The toolbar item to insert after.
14580     * @param icon A string with icon name or the absolute path of an image file.
14581     * @param label The label of the item.
14582     * @param func The function to call when the item is clicked.
14583     * @param data The data to associate with the item for related callbacks.
14584     * @return The created item or @c NULL upon failure.
14585     *
14586     * A new item will be created and added to the toolbar. Its position in
14587     * this toolbar will be just after item @p after.
14588     *
14589     * Items created with this method can be deleted with
14590     * elm_toolbar_item_del().
14591     *
14592     * Associated @p data can be properly freed when item is deleted if a
14593     * callback function is set with elm_toolbar_item_del_cb_set().
14594     *
14595     * If a function is passed as argument, it will be called everytime this item
14596     * is selected, i.e., the user clicks over an unselected item.
14597     * If such function isn't needed, just passing
14598     * @c NULL as @p func is enough. The same should be done for @p data.
14599     *
14600     * Toolbar will load icon image from fdo or current theme.
14601     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14602     * If an absolute path is provided it will load it direct from a file.
14603     *
14604     * @see elm_toolbar_item_icon_set()
14605     * @see elm_toolbar_item_del()
14606     * @see elm_toolbar_item_del_cb_set()
14607     *
14608     * @ingroup Toolbar
14609     */
14610    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);
14611
14612    /**
14613     * Get the first item in the given toolbar widget's list of
14614     * items.
14615     *
14616     * @param obj The toolbar object
14617     * @return The first item or @c NULL, if it has no items (and on
14618     * errors)
14619     *
14620     * @see elm_toolbar_item_append()
14621     * @see elm_toolbar_last_item_get()
14622     *
14623     * @ingroup Toolbar
14624     */
14625    EAPI Elm_Toolbar_Item       *elm_toolbar_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14626
14627    /**
14628     * Get the last item in the given toolbar widget's list of
14629     * items.
14630     *
14631     * @param obj The toolbar object
14632     * @return The last item or @c NULL, if it has no items (and on
14633     * errors)
14634     *
14635     * @see elm_toolbar_item_prepend()
14636     * @see elm_toolbar_first_item_get()
14637     *
14638     * @ingroup Toolbar
14639     */
14640    EAPI Elm_Toolbar_Item       *elm_toolbar_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14641
14642    /**
14643     * Get the item after @p item in toolbar.
14644     *
14645     * @param item The toolbar item.
14646     * @return The item after @p item, or @c NULL if none or on failure.
14647     *
14648     * @note If it is the last item, @c NULL will be returned.
14649     *
14650     * @see elm_toolbar_item_append()
14651     *
14652     * @ingroup Toolbar
14653     */
14654    EAPI Elm_Toolbar_Item       *elm_toolbar_item_next_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14655
14656    /**
14657     * Get the item before @p item in toolbar.
14658     *
14659     * @param item The toolbar item.
14660     * @return The item before @p item, or @c NULL if none or on failure.
14661     *
14662     * @note If it is the first item, @c NULL will be returned.
14663     *
14664     * @see elm_toolbar_item_prepend()
14665     *
14666     * @ingroup Toolbar
14667     */
14668    EAPI Elm_Toolbar_Item       *elm_toolbar_item_prev_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14669
14670    /**
14671     * Get the toolbar object from an item.
14672     *
14673     * @param item The item.
14674     * @return The toolbar object.
14675     *
14676     * This returns the toolbar object itself that an item belongs to.
14677     *
14678     * @ingroup Toolbar
14679     */
14680    EAPI Evas_Object            *elm_toolbar_item_toolbar_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14681
14682    /**
14683     * Set the priority of a toolbar item.
14684     *
14685     * @param item The toolbar item.
14686     * @param priority The item priority. The default is zero.
14687     *
14688     * This is used only when the toolbar shrink mode is set to
14689     * #ELM_TOOLBAR_SHRINK_MENU or #ELM_TOOLBAR_SHRINK_HIDE.
14690     * When space is less than required, items with low priority
14691     * will be removed from the toolbar and added to a dynamically-created menu,
14692     * while items with higher priority will remain on the toolbar,
14693     * with the same order they were added.
14694     *
14695     * @see elm_toolbar_item_priority_get()
14696     *
14697     * @ingroup Toolbar
14698     */
14699    EAPI void                    elm_toolbar_item_priority_set(Elm_Toolbar_Item *item, int priority) EINA_ARG_NONNULL(1);
14700
14701    /**
14702     * Get the priority of a toolbar item.
14703     *
14704     * @param item The toolbar item.
14705     * @return The @p item priority, or @c 0 on failure.
14706     *
14707     * @see elm_toolbar_item_priority_set() for details.
14708     *
14709     * @ingroup Toolbar
14710     */
14711    EAPI int                     elm_toolbar_item_priority_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14712
14713    /**
14714     * Get the label of item.
14715     *
14716     * @param item The item of toolbar.
14717     * @return The label of item.
14718     *
14719     * The return value is a pointer to the label associated to @p item when
14720     * it was created, with function elm_toolbar_item_append() or similar,
14721     * or later,
14722     * with function elm_toolbar_item_label_set. If no label
14723     * was passed as argument, it will return @c NULL.
14724     *
14725     * @see elm_toolbar_item_label_set() for more details.
14726     * @see elm_toolbar_item_append()
14727     *
14728     * @ingroup Toolbar
14729     */
14730    EAPI const char             *elm_toolbar_item_label_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14731
14732    /**
14733     * Set the label of item.
14734     *
14735     * @param item The item of toolbar.
14736     * @param text The label of item.
14737     *
14738     * The label to be displayed by the item.
14739     * Label will be placed at icons bottom (if set).
14740     *
14741     * If a label was passed as argument on item creation, with function
14742     * elm_toolbar_item_append() or similar, it will be already
14743     * displayed by the item.
14744     *
14745     * @see elm_toolbar_item_label_get()
14746     * @see elm_toolbar_item_append()
14747     *
14748     * @ingroup Toolbar
14749     */
14750    EAPI void                    elm_toolbar_item_label_set(Elm_Toolbar_Item *item, const char *label) EINA_ARG_NONNULL(1);
14751
14752    /**
14753     * Return the data associated with a given toolbar widget item.
14754     *
14755     * @param item The toolbar widget item handle.
14756     * @return The data associated with @p item.
14757     *
14758     * @see elm_toolbar_item_data_set()
14759     *
14760     * @ingroup Toolbar
14761     */
14762    EAPI void                   *elm_toolbar_item_data_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14763
14764    /**
14765     * Set the data associated with a given toolbar widget item.
14766     *
14767     * @param item The toolbar widget item handle.
14768     * @param data The new data pointer to set to @p item.
14769     *
14770     * This sets new item data on @p item.
14771     *
14772     * @warning The old data pointer won't be touched by this function, so
14773     * the user had better to free that old data himself/herself.
14774     *
14775     * @ingroup Toolbar
14776     */
14777    EAPI void                    elm_toolbar_item_data_set(Elm_Toolbar_Item *item, const void *data) EINA_ARG_NONNULL(1);
14778
14779    /**
14780     * Returns a pointer to a toolbar item by its label.
14781     *
14782     * @param obj The toolbar object.
14783     * @param label The label of the item to find.
14784     *
14785     * @return The pointer to the toolbar item matching @p label or @c NULL
14786     * on failure.
14787     *
14788     * @ingroup Toolbar
14789     */
14790    EAPI Elm_Toolbar_Item       *elm_toolbar_item_find_by_label(const Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
14791
14792    /*
14793     * Get whether the @p item is selected or not.
14794     *
14795     * @param item The toolbar item.
14796     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
14797     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
14798     *
14799     * @see elm_toolbar_selected_item_set() for details.
14800     * @see elm_toolbar_item_selected_get()
14801     *
14802     * @ingroup Toolbar
14803     */
14804    EAPI Eina_Bool               elm_toolbar_item_selected_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14805
14806    /**
14807     * Set the selected state of an item.
14808     *
14809     * @param item The toolbar item
14810     * @param selected The selected state
14811     *
14812     * This sets the selected state of the given item @p it.
14813     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
14814     *
14815     * If a new item is selected the previosly selected will be unselected.
14816     * Previoulsy selected item can be get with function
14817     * elm_toolbar_selected_item_get().
14818     *
14819     * Selected items will be highlighted.
14820     *
14821     * @see elm_toolbar_item_selected_get()
14822     * @see elm_toolbar_selected_item_get()
14823     *
14824     * @ingroup Toolbar
14825     */
14826    EAPI void                    elm_toolbar_item_selected_set(Elm_Toolbar_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
14827
14828    /**
14829     * Get the selected item.
14830     *
14831     * @param obj The toolbar object.
14832     * @return The selected toolbar item.
14833     *
14834     * The selected item can be unselected with function
14835     * elm_toolbar_item_selected_set().
14836     *
14837     * The selected item always will be highlighted on toolbar.
14838     *
14839     * @see elm_toolbar_selected_items_get()
14840     *
14841     * @ingroup Toolbar
14842     */
14843    EAPI Elm_Toolbar_Item       *elm_toolbar_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14844
14845    /**
14846     * Set the icon associated with @p item.
14847     *
14848     * @param obj The parent of this item.
14849     * @param item The toolbar item.
14850     * @param icon A string with icon name or the absolute path of an image file.
14851     *
14852     * Toolbar will load icon image from fdo or current theme.
14853     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14854     * If an absolute path is provided it will load it direct from a file.
14855     *
14856     * @see elm_toolbar_icon_order_lookup_set()
14857     * @see elm_toolbar_icon_order_lookup_get()
14858     *
14859     * @ingroup Toolbar
14860     */
14861    EAPI void                    elm_toolbar_item_icon_set(Elm_Toolbar_Item *item, const char *icon) EINA_ARG_NONNULL(1);
14862
14863    /**
14864     * Get the string used to set the icon of @p item.
14865     *
14866     * @param item The toolbar item.
14867     * @return The string associated with the icon object.
14868     *
14869     * @see elm_toolbar_item_icon_set() for details.
14870     *
14871     * @ingroup Toolbar
14872     */
14873    EAPI const char             *elm_toolbar_item_icon_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14874
14875    /**
14876     * Get the object of @p item.
14877     *
14878     * @param item The toolbar item.
14879     * @return The object
14880     *
14881     * @ingroup Toolbar
14882     */
14883    EAPI Evas_Object            *elm_toolbar_item_object_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14884
14885    /**
14886     * Get the icon object of @p item.
14887     *
14888     * @param item The toolbar item.
14889     * @return The icon object
14890     *
14891     * @see elm_toolbar_item_icon_set() or elm_toolbar_item_icon_memfile_set() for details.
14892     *
14893     * @ingroup Toolbar
14894     */
14895    EAPI Evas_Object            *elm_toolbar_item_icon_object_get(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14896
14897    /**
14898     * Set the icon associated with @p item to an image in a binary buffer.
14899     *
14900     * @param item The toolbar item.
14901     * @param img The binary data that will be used as an image
14902     * @param size The size of binary data @p img
14903     * @param format Optional format of @p img to pass to the image loader
14904     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
14905     *
14906     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
14907     *
14908     * @note The icon image set by this function can be changed by
14909     * elm_toolbar_item_icon_set().
14910     * 
14911     * @ingroup Toolbar
14912     */
14913    EAPI Eina_Bool elm_toolbar_item_icon_memfile_set(Elm_Toolbar_Item *item, const void *img, size_t size, const char *format, const char *key) EINA_ARG_NONNULL(1);
14914
14915    /**
14916     * Delete them item from the toolbar.
14917     *
14918     * @param item The item of toolbar to be deleted.
14919     *
14920     * @see elm_toolbar_item_append()
14921     * @see elm_toolbar_item_del_cb_set()
14922     *
14923     * @ingroup Toolbar
14924     */
14925    EAPI void                    elm_toolbar_item_del(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14926
14927    /**
14928     * Set the function called when a toolbar item is freed.
14929     *
14930     * @param item The item to set the callback on.
14931     * @param func The function called.
14932     *
14933     * If there is a @p func, then it will be called prior item's memory release.
14934     * That will be called with the following arguments:
14935     * @li item's data;
14936     * @li item's Evas object;
14937     * @li item itself;
14938     *
14939     * This way, a data associated to a toolbar item could be properly freed.
14940     *
14941     * @ingroup Toolbar
14942     */
14943    EAPI void                    elm_toolbar_item_del_cb_set(Elm_Toolbar_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
14944
14945    /**
14946     * Get a value whether toolbar item is disabled or not.
14947     *
14948     * @param item The item.
14949     * @return The disabled state.
14950     *
14951     * @see elm_toolbar_item_disabled_set() for more details.
14952     *
14953     * @ingroup Toolbar
14954     */
14955    EAPI Eina_Bool               elm_toolbar_item_disabled_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
14956
14957    /**
14958     * Sets the disabled/enabled state of a toolbar item.
14959     *
14960     * @param item The item.
14961     * @param disabled The disabled state.
14962     *
14963     * A disabled item cannot be selected or unselected. It will also
14964     * change its appearance (generally greyed out). This sets the
14965     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
14966     * enabled).
14967     *
14968     * @ingroup Toolbar
14969     */
14970    EAPI void                    elm_toolbar_item_disabled_set(Elm_Toolbar_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
14971
14972    /**
14973     * Set or unset item as a separator.
14974     *
14975     * @param item The toolbar item.
14976     * @param setting @c EINA_TRUE to set item @p item as separator or
14977     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
14978     *
14979     * Items aren't set as separator by default.
14980     *
14981     * If set as separator it will display separator theme, so won't display
14982     * icons or label.
14983     *
14984     * @see elm_toolbar_item_separator_get()
14985     *
14986     * @ingroup Toolbar
14987     */
14988    EAPI void                    elm_toolbar_item_separator_set(Elm_Toolbar_Item *item, Eina_Bool separator) EINA_ARG_NONNULL(1);
14989
14990    /**
14991     * Get a value whether item is a separator or not.
14992     *
14993     * @param item The toolbar item.
14994     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
14995     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
14996     *
14997     * @see elm_toolbar_item_separator_set() for details.
14998     *
14999     * @ingroup Toolbar
15000     */
15001    EAPI Eina_Bool               elm_toolbar_item_separator_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15002
15003    /**
15004     * Set the shrink state of toolbar @p obj.
15005     *
15006     * @param obj The toolbar object.
15007     * @param shrink_mode Toolbar's items display behavior.
15008     *
15009     * The toolbar won't scroll if #ELM_TOOLBAR_SHRINK_NONE,
15010     * but will enforce a minimun size so all the items will fit, won't scroll
15011     * and won't show the items that don't fit if #ELM_TOOLBAR_SHRINK_HIDE,
15012     * will scroll if #ELM_TOOLBAR_SHRINK_SCROLL, and will create a button to
15013     * pop up excess elements with #ELM_TOOLBAR_SHRINK_MENU.
15014     *
15015     * @ingroup Toolbar
15016     */
15017    EAPI void                    elm_toolbar_mode_shrink_set(Evas_Object *obj, Elm_Toolbar_Shrink_Mode shrink_mode) EINA_ARG_NONNULL(1);
15018
15019    /**
15020     * Get the shrink mode of toolbar @p obj.
15021     *
15022     * @param obj The toolbar object.
15023     * @return Toolbar's items display behavior.
15024     *
15025     * @see elm_toolbar_mode_shrink_set() for details.
15026     *
15027     * @ingroup Toolbar
15028     */
15029    EAPI Elm_Toolbar_Shrink_Mode elm_toolbar_mode_shrink_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15030
15031    /**
15032     * Enable/disable homogenous mode.
15033     *
15034     * @param obj The toolbar object
15035     * @param homogeneous Assume the items within the toolbar are of the
15036     * same size (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE.
15037     *
15038     * This will enable the homogeneous mode where items are of the same size.
15039     * @see elm_toolbar_homogeneous_get()
15040     *
15041     * @ingroup Toolbar
15042     */
15043    EAPI void                    elm_toolbar_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
15044
15045    /**
15046     * Get whether the homogenous mode is enabled.
15047     *
15048     * @param obj The toolbar object.
15049     * @return Assume the items within the toolbar are of the same height
15050     * and width (EINA_TRUE = on, EINA_FALSE = off).
15051     *
15052     * @see elm_toolbar_homogeneous_set()
15053     *
15054     * @ingroup Toolbar
15055     */
15056    EAPI Eina_Bool               elm_toolbar_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15057
15058    /**
15059     * Enable/disable homogenous mode.
15060     *
15061     * @param obj The toolbar object
15062     * @param homogeneous Assume the items within the toolbar are of the
15063     * same size (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE.
15064     *
15065     * This will enable the homogeneous mode where items are of the same size.
15066     * @see elm_toolbar_homogeneous_get()
15067     *
15068     * @deprecated use elm_toolbar_homogeneous_set() instead.
15069     *
15070     * @ingroup Toolbar
15071     */
15072    EINA_DEPRECATED EAPI void    elm_toolbar_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
15073
15074    /**
15075     * Get whether the homogenous mode is enabled.
15076     *
15077     * @param obj The toolbar object.
15078     * @return Assume the items within the toolbar are of the same height
15079     * and width (EINA_TRUE = on, EINA_FALSE = off).
15080     *
15081     * @see elm_toolbar_homogeneous_set()
15082     * @deprecated use elm_toolbar_homogeneous_get() instead.
15083     *
15084     * @ingroup Toolbar
15085     */
15086    EINA_DEPRECATED EAPI Eina_Bool elm_toolbar_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15087
15088    /**
15089     * Set the parent object of the toolbar items' menus.
15090     *
15091     * @param obj The toolbar object.
15092     * @param parent The parent of the menu objects.
15093     *
15094     * Each item can be set as item menu, with elm_toolbar_item_menu_set().
15095     *
15096     * For more details about setting the parent for toolbar menus, see
15097     * elm_menu_parent_set().
15098     *
15099     * @see elm_menu_parent_set() for details.
15100     * @see elm_toolbar_item_menu_set() for details.
15101     *
15102     * @ingroup Toolbar
15103     */
15104    EAPI void                    elm_toolbar_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
15105
15106    /**
15107     * Get the parent object of the toolbar items' menus.
15108     *
15109     * @param obj The toolbar object.
15110     * @return The parent of the menu objects.
15111     *
15112     * @see elm_toolbar_menu_parent_set() for details.
15113     *
15114     * @ingroup Toolbar
15115     */
15116    EAPI Evas_Object            *elm_toolbar_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15117
15118    /**
15119     * Set the alignment of the items.
15120     *
15121     * @param obj The toolbar object.
15122     * @param align The new alignment, a float between <tt> 0.0 </tt>
15123     * and <tt> 1.0 </tt>.
15124     *
15125     * Alignment of toolbar items, from <tt> 0.0 </tt> to indicates to align
15126     * left, to <tt> 1.0 </tt>, to align to right. <tt> 0.5 </tt> centralize
15127     * items.
15128     *
15129     * Centered items by default.
15130     *
15131     * @see elm_toolbar_align_get()
15132     *
15133     * @ingroup Toolbar
15134     */
15135    EAPI void                    elm_toolbar_align_set(Evas_Object *obj, double align) EINA_ARG_NONNULL(1);
15136
15137    /**
15138     * Get the alignment of the items.
15139     *
15140     * @param obj The toolbar object.
15141     * @return toolbar items alignment, a float between <tt> 0.0 </tt> and
15142     * <tt> 1.0 </tt>.
15143     *
15144     * @see elm_toolbar_align_set() for details.
15145     *
15146     * @ingroup Toolbar
15147     */
15148    EAPI double                  elm_toolbar_align_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15149
15150    /**
15151     * Set whether the toolbar item opens a menu.
15152     *
15153     * @param item The toolbar item.
15154     * @param menu If @c EINA_TRUE, @p item will opens a menu when selected.
15155     *
15156     * A toolbar item can be set to be a menu, using this function.
15157     *
15158     * Once it is set to be a menu, it can be manipulated through the
15159     * menu-like function elm_toolbar_menu_parent_set() and the other
15160     * elm_menu functions, using the Evas_Object @c menu returned by
15161     * elm_toolbar_item_menu_get().
15162     *
15163     * So, items to be displayed in this item's menu should be added with
15164     * elm_menu_item_add().
15165     *
15166     * The following code exemplifies the most basic usage:
15167     * @code
15168     * tb = elm_toolbar_add(win)
15169     * item = elm_toolbar_item_append(tb, "refresh", "Menu", NULL, NULL);
15170     * elm_toolbar_item_menu_set(item, EINA_TRUE);
15171     * elm_toolbar_menu_parent_set(tb, win);
15172     * menu = elm_toolbar_item_menu_get(item);
15173     * elm_menu_item_add(menu, NULL, "edit-cut", "Cut", NULL, NULL);
15174     * menu_item = elm_menu_item_add(menu, NULL, "edit-copy", "Copy", NULL,
15175     * NULL);
15176     * @endcode
15177     *
15178     * @see elm_toolbar_item_menu_get()
15179     *
15180     * @ingroup Toolbar
15181     */
15182    EAPI void                    elm_toolbar_item_menu_set(Elm_Toolbar_Item *item, Eina_Bool menu) EINA_ARG_NONNULL(1);
15183
15184    /**
15185     * Get toolbar item's menu.
15186     *
15187     * @param item The toolbar item.
15188     * @return Item's menu object or @c NULL on failure.
15189     *
15190     * If @p item wasn't set as menu item with elm_toolbar_item_menu_set(),
15191     * this function will set it.
15192     *
15193     * @see elm_toolbar_item_menu_set() for details.
15194     *
15195     * @ingroup Toolbar
15196     */
15197    EAPI Evas_Object            *elm_toolbar_item_menu_get(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15198
15199    /**
15200     * Add a new state to @p item.
15201     *
15202     * @param item The item.
15203     * @param icon A string with icon name or the absolute path of an image file.
15204     * @param label The label of the new state.
15205     * @param func The function to call when the item is clicked when this
15206     * state is selected.
15207     * @param data The data to associate with the state.
15208     * @return The toolbar item state, or @c NULL upon failure.
15209     *
15210     * Toolbar will load icon image from fdo or current theme.
15211     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
15212     * If an absolute path is provided it will load it direct from a file.
15213     *
15214     * States created with this function can be removed with
15215     * elm_toolbar_item_state_del().
15216     *
15217     * @see elm_toolbar_item_state_del()
15218     * @see elm_toolbar_item_state_sel()
15219     * @see elm_toolbar_item_state_get()
15220     *
15221     * @ingroup Toolbar
15222     */
15223    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);
15224
15225    /**
15226     * Delete a previoulsy added state to @p item.
15227     *
15228     * @param item The toolbar item.
15229     * @param state The state to be deleted.
15230     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
15231     *
15232     * @see elm_toolbar_item_state_add()
15233     */
15234    EAPI Eina_Bool               elm_toolbar_item_state_del(Elm_Toolbar_Item *item, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
15235
15236    /**
15237     * Set @p state as the current state of @p it.
15238     *
15239     * @param it The item.
15240     * @param state The state to use.
15241     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
15242     *
15243     * If @p state is @c NULL, it won't select any state and the default item's
15244     * icon and label will be used. It's the same behaviour than
15245     * elm_toolbar_item_state_unser().
15246     *
15247     * @see elm_toolbar_item_state_unset()
15248     *
15249     * @ingroup Toolbar
15250     */
15251    EAPI Eina_Bool               elm_toolbar_item_state_set(Elm_Toolbar_Item *it, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
15252
15253    /**
15254     * Unset the state of @p it.
15255     *
15256     * @param it The item.
15257     *
15258     * The default icon and label from this item will be displayed.
15259     *
15260     * @see elm_toolbar_item_state_set() for more details.
15261     *
15262     * @ingroup Toolbar
15263     */
15264    EAPI void                    elm_toolbar_item_state_unset(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
15265
15266    /**
15267     * Get the current state of @p it.
15268     *
15269     * @param item The item.
15270     * @return The selected state or @c NULL if none is selected or on failure.
15271     *
15272     * @see elm_toolbar_item_state_set() for details.
15273     * @see elm_toolbar_item_state_unset()
15274     * @see elm_toolbar_item_state_add()
15275     *
15276     * @ingroup Toolbar
15277     */
15278    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_get(const Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
15279
15280    /**
15281     * Get the state after selected state in toolbar's @p item.
15282     *
15283     * @param it The toolbar item to change state.
15284     * @return The state after current state, or @c NULL on failure.
15285     *
15286     * If last state is selected, this function will return first state.
15287     *
15288     * @see elm_toolbar_item_state_set()
15289     * @see elm_toolbar_item_state_add()
15290     *
15291     * @ingroup Toolbar
15292     */
15293    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_next(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
15294
15295    /**
15296     * Get the state before selected state in toolbar's @p item.
15297     *
15298     * @param it The toolbar item to change state.
15299     * @return The state before current state, or @c NULL on failure.
15300     *
15301     * If first state is selected, this function will return last state.
15302     *
15303     * @see elm_toolbar_item_state_set()
15304     * @see elm_toolbar_item_state_add()
15305     *
15306     * @ingroup Toolbar
15307     */
15308    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_prev(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
15309
15310    /**
15311     * Set the text to be shown in a given toolbar item's tooltips.
15312     *
15313     * @param item Target item.
15314     * @param text The text to set in the content.
15315     *
15316     * Setup the text as tooltip to object. The item can have only one tooltip,
15317     * so any previous tooltip data - set with this function or
15318     * elm_toolbar_item_tooltip_content_cb_set() - is removed.
15319     *
15320     * @see elm_object_tooltip_text_set() for more details.
15321     *
15322     * @ingroup Toolbar
15323     */
15324    EAPI void             elm_toolbar_item_tooltip_text_set(Elm_Toolbar_Item *item, const char *text) EINA_ARG_NONNULL(1);
15325
15326    /**
15327     * Set the content to be shown in the tooltip item.
15328     *
15329     * Setup the tooltip to item. The item can have only one tooltip,
15330     * so any previous tooltip data is removed. @p func(with @p data) will
15331     * be called every time that need show the tooltip and it should
15332     * return a valid Evas_Object. This object is then managed fully by
15333     * tooltip system and is deleted when the tooltip is gone.
15334     *
15335     * @param item the toolbar item being attached a tooltip.
15336     * @param func the function used to create the tooltip contents.
15337     * @param data what to provide to @a func as callback data/context.
15338     * @param del_cb called when data is not needed anymore, either when
15339     *        another callback replaces @a func, the tooltip is unset with
15340     *        elm_toolbar_item_tooltip_unset() or the owner @a item
15341     *        dies. This callback receives as the first parameter the
15342     *        given @a data, and @c event_info is the item.
15343     *
15344     * @see elm_object_tooltip_content_cb_set() for more details.
15345     *
15346     * @ingroup Toolbar
15347     */
15348    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);
15349
15350    /**
15351     * Unset tooltip from item.
15352     *
15353     * @param item toolbar item to remove previously set tooltip.
15354     *
15355     * Remove tooltip from item. The callback provided as del_cb to
15356     * elm_toolbar_item_tooltip_content_cb_set() will be called to notify
15357     * it is not used anymore.
15358     *
15359     * @see elm_object_tooltip_unset() for more details.
15360     * @see elm_toolbar_item_tooltip_content_cb_set()
15361     *
15362     * @ingroup Toolbar
15363     */
15364    EAPI void             elm_toolbar_item_tooltip_unset(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15365
15366    /**
15367     * Sets a different style for this item tooltip.
15368     *
15369     * @note before you set a style you should define a tooltip with
15370     *       elm_toolbar_item_tooltip_content_cb_set() or
15371     *       elm_toolbar_item_tooltip_text_set()
15372     *
15373     * @param item toolbar item with tooltip already set.
15374     * @param style the theme style to use (default, transparent, ...)
15375     *
15376     * @see elm_object_tooltip_style_set() for more details.
15377     *
15378     * @ingroup Toolbar
15379     */
15380    EAPI void             elm_toolbar_item_tooltip_style_set(Elm_Toolbar_Item *item, const char *style) EINA_ARG_NONNULL(1);
15381
15382    /**
15383     * Get the style for this item tooltip.
15384     *
15385     * @param item toolbar item with tooltip already set.
15386     * @return style the theme style in use, defaults to "default". If the
15387     *         object does not have a tooltip set, then NULL is returned.
15388     *
15389     * @see elm_object_tooltip_style_get() for more details.
15390     * @see elm_toolbar_item_tooltip_style_set()
15391     *
15392     * @ingroup Toolbar
15393     */
15394    EAPI const char      *elm_toolbar_item_tooltip_style_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15395
15396    /**
15397     * Set the type of mouse pointer/cursor decoration to be shown,
15398     * when the mouse pointer is over the given toolbar widget item
15399     *
15400     * @param item toolbar item to customize cursor on
15401     * @param cursor the cursor type's name
15402     *
15403     * This function works analogously as elm_object_cursor_set(), but
15404     * here the cursor's changing area is restricted to the item's
15405     * area, and not the whole widget's. Note that that item cursors
15406     * have precedence over widget cursors, so that a mouse over an
15407     * item with custom cursor set will always show @b that cursor.
15408     *
15409     * If this function is called twice for an object, a previously set
15410     * cursor will be unset on the second call.
15411     *
15412     * @see elm_object_cursor_set()
15413     * @see elm_toolbar_item_cursor_get()
15414     * @see elm_toolbar_item_cursor_unset()
15415     *
15416     * @ingroup Toolbar
15417     */
15418    EAPI void             elm_toolbar_item_cursor_set(Elm_Toolbar_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
15419
15420    /*
15421     * Get the type of mouse pointer/cursor decoration set to be shown,
15422     * when the mouse pointer is over the given toolbar widget item
15423     *
15424     * @param item toolbar item with custom cursor set
15425     * @return the cursor type's name or @c NULL, if no custom cursors
15426     * were set to @p item (and on errors)
15427     *
15428     * @see elm_object_cursor_get()
15429     * @see elm_toolbar_item_cursor_set()
15430     * @see elm_toolbar_item_cursor_unset()
15431     *
15432     * @ingroup Toolbar
15433     */
15434    EAPI const char      *elm_toolbar_item_cursor_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15435
15436    /**
15437     * Unset any custom mouse pointer/cursor decoration set to be
15438     * shown, when the mouse pointer is over the given toolbar widget
15439     * item, thus making it show the @b default cursor again.
15440     *
15441     * @param item a toolbar item
15442     *
15443     * Use this call to undo any custom settings on this item's cursor
15444     * decoration, bringing it back to defaults (no custom style set).
15445     *
15446     * @see elm_object_cursor_unset()
15447     * @see elm_toolbar_item_cursor_set()
15448     *
15449     * @ingroup Toolbar
15450     */
15451    EAPI void             elm_toolbar_item_cursor_unset(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15452
15453    /**
15454     * Set a different @b style for a given custom cursor set for a
15455     * toolbar item.
15456     *
15457     * @param item toolbar item with custom cursor set
15458     * @param style the <b>theme style</b> to use (e.g. @c "default",
15459     * @c "transparent", etc)
15460     *
15461     * This function only makes sense when one is using custom mouse
15462     * cursor decorations <b>defined in a theme file</b>, which can have,
15463     * given a cursor name/type, <b>alternate styles</b> on it. It
15464     * works analogously as elm_object_cursor_style_set(), but here
15465     * applyed only to toolbar item objects.
15466     *
15467     * @warning Before you set a cursor style you should have definen a
15468     *       custom cursor previously on the item, with
15469     *       elm_toolbar_item_cursor_set()
15470     *
15471     * @see elm_toolbar_item_cursor_engine_only_set()
15472     * @see elm_toolbar_item_cursor_style_get()
15473     *
15474     * @ingroup Toolbar
15475     */
15476    EAPI void             elm_toolbar_item_cursor_style_set(Elm_Toolbar_Item *item, const char *style) EINA_ARG_NONNULL(1);
15477
15478    /**
15479     * Get the current @b style set for a given toolbar item's custom
15480     * cursor
15481     *
15482     * @param item toolbar item with custom cursor set.
15483     * @return style the cursor style in use. If the object does not
15484     *         have a cursor set, then @c NULL is returned.
15485     *
15486     * @see elm_toolbar_item_cursor_style_set() for more details
15487     *
15488     * @ingroup Toolbar
15489     */
15490    EAPI const char      *elm_toolbar_item_cursor_style_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15491
15492    /**
15493     * Set if the (custom)cursor for a given toolbar item should be
15494     * searched in its theme, also, or should only rely on the
15495     * rendering engine.
15496     *
15497     * @param item item with custom (custom) cursor already set on
15498     * @param engine_only Use @c EINA_TRUE to have cursors looked for
15499     * only on those provided by the rendering engine, @c EINA_FALSE to
15500     * have them searched on the widget's theme, as well.
15501     *
15502     * @note This call is of use only if you've set a custom cursor
15503     * for toolbar items, with elm_toolbar_item_cursor_set().
15504     *
15505     * @note By default, cursors will only be looked for between those
15506     * provided by the rendering engine.
15507     *
15508     * @ingroup Toolbar
15509     */
15510    EAPI void             elm_toolbar_item_cursor_engine_only_set(Elm_Toolbar_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
15511
15512    /**
15513     * Get if the (custom) cursor for a given toolbar item is being
15514     * searched in its theme, also, or is only relying on the rendering
15515     * engine.
15516     *
15517     * @param item a toolbar item
15518     * @return @c EINA_TRUE, if cursors are being looked for only on
15519     * those provided by the rendering engine, @c EINA_FALSE if they
15520     * are being searched on the widget's theme, as well.
15521     *
15522     * @see elm_toolbar_item_cursor_engine_only_set(), for more details
15523     *
15524     * @ingroup Toolbar
15525     */
15526    EAPI Eina_Bool        elm_toolbar_item_cursor_engine_only_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
15527
15528    /**
15529     * Change a toolbar's orientation
15530     * @param obj The toolbar object
15531     * @param vertical If @c EINA_TRUE, the toolbar is vertical
15532     * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
15533     * @ingroup Toolbar
15534     * @deprecated use elm_toolbar_horizontal_set() instead.
15535     */
15536    EINA_DEPRECATED EAPI void             elm_toolbar_orientation_set(Evas_Object *obj, Eina_Bool vertical) EINA_ARG_NONNULL(1);
15537
15538    /**
15539     * Change a toolbar's orientation
15540     * @param obj The toolbar object
15541     * @param horizontal If @c EINA_TRUE, the toolbar is horizontal
15542     * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
15543     * @ingroup Toolbar
15544     */
15545    EAPI void             elm_toolbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
15546
15547    /**
15548     * Get a toolbar's orientation
15549     * @param obj The toolbar object
15550     * @return If @c EINA_TRUE, the toolbar is vertical
15551     * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
15552     * @ingroup Toolbar
15553     * @deprecated use elm_toolbar_horizontal_get() instead.
15554     */
15555    EINA_DEPRECATED EAPI Eina_Bool        elm_toolbar_orientation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15556
15557    /**
15558     * Get a toolbar's orientation
15559     * @param obj The toolbar object
15560     * @return If @c EINA_TRUE, the toolbar is horizontal
15561     * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
15562     * @ingroup Toolbar
15563     */
15564    EAPI Eina_Bool elm_toolbar_horizontal_get(const Evas_Object *obj);
15565    /**
15566     * @}
15567     */
15568
15569    /**
15570     * @defgroup Tooltips Tooltips
15571     *
15572     * The Tooltip is an (internal, for now) smart object used to show a
15573     * content in a frame on mouse hover of objects(or widgets), with
15574     * tips/information about them.
15575     *
15576     * @{
15577     */
15578
15579    EAPI double       elm_tooltip_delay_get(void);
15580    EAPI Eina_Bool    elm_tooltip_delay_set(double delay);
15581    EAPI void         elm_object_tooltip_show(Evas_Object *obj) EINA_ARG_NONNULL(1);
15582    EAPI void         elm_object_tooltip_hide(Evas_Object *obj) EINA_ARG_NONNULL(1);
15583    EAPI void         elm_object_tooltip_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1, 2);
15584    EAPI void         elm_object_tooltip_domain_translatable_text_set(Evas_Object *obj, const char *domain, const char *text) EINA_ARG_NONNULL(1, 3);
15585 #define elm_object_tooltip_translatable_text_set(obj, text) elm_object_tooltip_domain_translatable_text_set((obj), NULL, (text))
15586    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);
15587    EAPI void         elm_object_tooltip_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
15588    EAPI void         elm_object_tooltip_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
15589    EAPI const char  *elm_object_tooltip_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15590
15591    /**
15592     * @defgroup Cursors Cursors
15593     *
15594     * The Elementary cursor is an internal smart object used to
15595     * customize the mouse cursor displayed over objects (or
15596     * widgets). In the most common scenario, the cursor decoration
15597     * comes from the graphical @b engine Elementary is running
15598     * on. Those engines may provide different decorations for cursors,
15599     * and Elementary provides functions to choose them (think of X11
15600     * cursors, as an example).
15601     *
15602     * There's also the possibility of, besides using engine provided
15603     * cursors, also use ones coming from Edje theming files. Both
15604     * globally and per widget, Elementary makes it possible for one to
15605     * make the cursors lookup to be held on engines only or on
15606     * Elementary's theme file, too. To set cursor's hot spot,
15607     * two data items should be added to cursor's theme: "hot_x" and
15608     * "hot_y", that are the offset from upper-left corner of the cursor
15609     * (coordinates 0,0).
15610     *
15611     * @{
15612     */
15613
15614    /**
15615     * Set the cursor to be shown when mouse is over the object
15616     *
15617     * Set the cursor that will be displayed when mouse is over the
15618     * object. The object can have only one cursor set to it, so if
15619     * this function is called twice for an object, the previous set
15620     * will be unset.
15621     * If using X cursors, a definition of all the valid cursor names
15622     * is listed on Elementary_Cursors.h. If an invalid name is set
15623     * the default cursor will be used.
15624     *
15625     * @param obj the object being set a cursor.
15626     * @param cursor the cursor name to be used.
15627     *
15628     * @ingroup Cursors
15629     */
15630    EAPI void         elm_object_cursor_set(Evas_Object *obj, const char *cursor) EINA_ARG_NONNULL(1);
15631
15632    /**
15633     * Get the cursor to be shown when mouse is over the object
15634     *
15635     * @param obj an object with cursor already set.
15636     * @return the cursor name.
15637     *
15638     * @ingroup Cursors
15639     */
15640    EAPI const char  *elm_object_cursor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15641
15642    /**
15643     * Unset cursor for object
15644     *
15645     * Unset cursor for object, and set the cursor to default if the mouse
15646     * was over this object.
15647     *
15648     * @param obj Target object
15649     * @see elm_object_cursor_set()
15650     *
15651     * @ingroup Cursors
15652     */
15653    EAPI void         elm_object_cursor_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
15654
15655    /**
15656     * Sets a different style for this object cursor.
15657     *
15658     * @note before you set a style you should define a cursor with
15659     *       elm_object_cursor_set()
15660     *
15661     * @param obj an object with cursor already set.
15662     * @param style the theme style to use (default, transparent, ...)
15663     *
15664     * @ingroup Cursors
15665     */
15666    EAPI void         elm_object_cursor_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
15667
15668    /**
15669     * Get the style for this object cursor.
15670     *
15671     * @param obj an object with cursor already set.
15672     * @return style the theme style in use, defaults to "default". If the
15673     *         object does not have a cursor set, then NULL is returned.
15674     *
15675     * @ingroup Cursors
15676     */
15677    EAPI const char  *elm_object_cursor_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15678
15679    /**
15680     * Set if the cursor set should be searched on the theme or should use
15681     * the provided by the engine, only.
15682     *
15683     * @note before you set if should look on theme you should define a cursor
15684     * with elm_object_cursor_set(). By default it will only look for cursors
15685     * provided by the engine.
15686     *
15687     * @param obj an object with cursor already set.
15688     * @param engine_only boolean to define it cursors should be looked only
15689     * between the provided by the engine or searched on widget's theme as well.
15690     *
15691     * @ingroup Cursors
15692     */
15693    EAPI void         elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
15694
15695    /**
15696     * Get the cursor engine only usage for this object cursor.
15697     *
15698     * @param obj an object with cursor already set.
15699     * @return engine_only boolean to define it cursors should be
15700     * looked only between the provided by the engine or searched on
15701     * widget's theme as well. If the object does not have a cursor
15702     * set, then EINA_FALSE is returned.
15703     *
15704     * @ingroup Cursors
15705     */
15706    EAPI Eina_Bool    elm_object_cursor_engine_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15707
15708    /**
15709     * Get the configured cursor engine only usage
15710     *
15711     * This gets the globally configured exclusive usage of engine cursors.
15712     *
15713     * @return 1 if only engine cursors should be used
15714     * @ingroup Cursors
15715     */
15716    EAPI int          elm_cursor_engine_only_get(void);
15717
15718    /**
15719     * Set the configured cursor engine only usage
15720     *
15721     * This sets the globally configured exclusive usage of engine cursors.
15722     * It won't affect cursors set before changing this value.
15723     *
15724     * @param engine_only If 1 only engine cursors will be enabled, if 0 will
15725     * look for them on theme before.
15726     * @return EINA_TRUE if value is valid and setted (0 or 1)
15727     * @ingroup Cursors
15728     */
15729    EAPI Eina_Bool    elm_cursor_engine_only_set(int engine_only);
15730
15731    /**
15732     * @}
15733     */
15734
15735    /**
15736     * @defgroup Menu Menu
15737     *
15738     * @image html img/widget/menu/preview-00.png
15739     * @image latex img/widget/menu/preview-00.eps
15740     *
15741     * A menu is a list of items displayed above its parent. When the menu is
15742     * showing its parent is darkened. Each item can have a sub-menu. The menu
15743     * object can be used to display a menu on a right click event, in a toolbar,
15744     * anywhere.
15745     *
15746     * Signals that you can add callbacks for are:
15747     * @li "clicked" - the user clicked the empty space in the menu to dismiss.
15748     *             event_info is NULL.
15749     *
15750     * @see @ref tutorial_menu
15751     * @{
15752     */
15753    typedef struct _Elm_Menu_Item Elm_Menu_Item; /**< Item of Elm_Menu. Sub-type of Elm_Widget_Item */
15754    /**
15755     * @brief Add a new menu to the parent
15756     *
15757     * @param parent The parent object.
15758     * @return The new object or NULL if it cannot be created.
15759     */
15760    EAPI Evas_Object       *elm_menu_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
15761    /**
15762     * @brief Set the parent for the given menu widget
15763     *
15764     * @param obj The menu object.
15765     * @param parent The new parent.
15766     */
15767    EAPI void               elm_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
15768    /**
15769     * @brief Get the parent for the given menu widget
15770     *
15771     * @param obj The menu object.
15772     * @return The parent.
15773     *
15774     * @see elm_menu_parent_set()
15775     */
15776    EAPI Evas_Object       *elm_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15777    /**
15778     * @brief Move the menu to a new position
15779     *
15780     * @param obj The menu object.
15781     * @param x The new position.
15782     * @param y The new position.
15783     *
15784     * Sets the top-left position of the menu to (@p x,@p y).
15785     *
15786     * @note @p x and @p y coordinates are relative to parent.
15787     */
15788    EAPI void               elm_menu_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
15789    /**
15790     * @brief Close a opened menu
15791     *
15792     * @param obj the menu object
15793     * @return void
15794     *
15795     * Hides the menu and all it's sub-menus.
15796     */
15797    EAPI void               elm_menu_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
15798    /**
15799     * @brief Returns a list of @p item's items.
15800     *
15801     * @param obj The menu object
15802     * @return An Eina_List* of @p item's items
15803     */
15804    EAPI const Eina_List   *elm_menu_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15805    /**
15806     * @brief Get the Evas_Object of an Elm_Menu_Item
15807     *
15808     * @param item The menu item object.
15809     * @return The edje object containing the swallowed content
15810     *
15811     * @warning Don't manipulate this object!
15812     */
15813    EAPI Evas_Object       *elm_menu_item_object_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
15814    /**
15815     * @brief Add an item at the end of the given menu widget
15816     *
15817     * @param obj The menu object.
15818     * @param parent The parent menu item (optional)
15819     * @param icon A icon display on the item. The icon will be destryed by the menu.
15820     * @param label The label of the item.
15821     * @param func Function called when the user select the item.
15822     * @param data Data sent by the callback.
15823     * @return Returns the new item.
15824     */
15825    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);
15826    /**
15827     * @brief Set the label of a menu item
15828     *
15829     * @param item The menu item object.
15830     * @param label The label to set for @p item
15831     *
15832     * @warning Don't use this funcion on items created with
15833     * elm_menu_item_add_object() or elm_menu_item_separator_add().
15834     */
15835    EAPI void               elm_menu_item_label_set(Elm_Menu_Item *item, const char *label) EINA_ARG_NONNULL(1);
15836    /**
15837     * @brief Get the label of a menu item
15838     *
15839     * @param item The menu item object.
15840     * @return The label of @p item
15841     */
15842    EAPI const char        *elm_menu_item_label_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15843    EAPI void               elm_menu_item_icon_set(Elm_Menu_Item *item, const char *icon) EINA_ARG_NONNULL(1, 2);
15844    EAPI const char        *elm_menu_item_icon_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15845    EAPI const Evas_Object *elm_menu_item_object_icon_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15846
15847    /**
15848     * @brief Set the selected state of @p item.
15849     *
15850     * @param item The menu item object.
15851     * @param selected The selected/unselected state of the item
15852     */
15853    EAPI void               elm_menu_item_selected_set(Elm_Menu_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
15854    /**
15855     * @brief Get the selected state of @p item.
15856     *
15857     * @param item The menu item object.
15858     * @return The selected/unselected state of the item
15859     *
15860     * @see elm_menu_item_selected_set()
15861     */
15862    EAPI Eina_Bool          elm_menu_item_selected_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15863    /**
15864     * @brief Set the disabled state of @p item.
15865     *
15866     * @param item The menu item object.
15867     * @param disabled The enabled/disabled state of the item
15868     */
15869    EAPI void               elm_menu_item_disabled_set(Elm_Menu_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
15870    /**
15871     * @brief Get the disabled state of @p item.
15872     *
15873     * @param item The menu item object.
15874     * @return The enabled/disabled state of the item
15875     *
15876     * @see elm_menu_item_disabled_set()
15877     */
15878    EAPI Eina_Bool          elm_menu_item_disabled_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15879    /**
15880     * @brief Add a separator item to menu @p obj under @p parent.
15881     *
15882     * @param obj The menu object
15883     * @param parent The item to add the separator under
15884     * @return The created item or NULL on failure
15885     *
15886     * This is item is a @ref Separator.
15887     */
15888    EAPI Elm_Menu_Item     *elm_menu_item_separator_add(Evas_Object *obj, Elm_Menu_Item *parent) EINA_ARG_NONNULL(1);
15889    /**
15890     * @brief Returns whether @p item is a separator.
15891     *
15892     * @param item The item to check
15893     * @return If true, @p item is a separator
15894     *
15895     * @see elm_menu_item_separator_add()
15896     */
15897    EAPI Eina_Bool          elm_menu_item_is_separator(Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15898    /**
15899     * @brief Deletes an item from the menu.
15900     *
15901     * @param item The item to delete.
15902     *
15903     * @see elm_menu_item_add()
15904     */
15905    EAPI void               elm_menu_item_del(Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15906    /**
15907     * @brief Set the function called when a menu item is deleted.
15908     *
15909     * @param item The item to set the callback on
15910     * @param func The function called
15911     *
15912     * @see elm_menu_item_add()
15913     * @see elm_menu_item_del()
15914     */
15915    EAPI void               elm_menu_item_del_cb_set(Elm_Menu_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
15916    /**
15917     * @brief Returns the data associated with menu item @p item.
15918     *
15919     * @param item The item
15920     * @return The data associated with @p item or NULL if none was set.
15921     *
15922     * This is the data set with elm_menu_add() or elm_menu_item_data_set().
15923     */
15924    EAPI void              *elm_menu_item_data_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
15925    /**
15926     * @brief Sets the data to be associated with menu item @p item.
15927     *
15928     * @param item The item
15929     * @param data The data to be associated with @p item
15930     */
15931    EAPI void               elm_menu_item_data_set(Elm_Menu_Item *item, const void *data) EINA_ARG_NONNULL(1);
15932    /**
15933     * @brief Returns a list of @p item's subitems.
15934     *
15935     * @param item The item
15936     * @return An Eina_List* of @p item's subitems
15937     *
15938     * @see elm_menu_add()
15939     */
15940    EAPI const Eina_List   *elm_menu_item_subitems_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
15941    EAPI Elm_Menu_Item *elm_menu_selected_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
15942    EAPI Elm_Menu_Item *elm_menu_last_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
15943    EAPI Elm_Menu_Item *elm_menu_first_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
15944    EAPI Elm_Menu_Item *elm_menu_item_next_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
15945    EAPI Elm_Menu_Item *elm_menu_item_prev_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
15946
15947    /**
15948     * @}
15949     */
15950
15951    /**
15952     * @defgroup List List
15953     * @ingroup Elementary
15954     *
15955     * @image html img/widget/list/preview-00.png
15956     * @image latex img/widget/list/preview-00.eps width=\textwidth
15957     *
15958     * @image html img/list.png
15959     * @image latex img/list.eps width=\textwidth
15960     *
15961     * A list widget is a container whose children are displayed vertically or
15962     * horizontally, in order, and can be selected.
15963     * The list can accept only one or multiple items selection. Also has many
15964     * modes of items displaying.
15965     *
15966     * A list is a very simple type of list widget.  For more robust
15967     * lists, @ref Genlist should probably be used.
15968     *
15969     * Smart callbacks one can listen to:
15970     * - @c "activated" - The user has double-clicked or pressed
15971     *   (enter|return|spacebar) on an item. The @c event_info parameter
15972     *   is the item that was activated.
15973     * - @c "clicked,double" - The user has double-clicked an item.
15974     *   The @c event_info parameter is the item that was double-clicked.
15975     * - "selected" - when the user selected an item
15976     * - "unselected" - when the user unselected an item
15977     * - "longpressed" - an item in the list is long-pressed
15978     * - "edge,top" - the list is scrolled until the top edge
15979     * - "edge,bottom" - the list is scrolled until the bottom edge
15980     * - "edge,left" - the list is scrolled until the left edge
15981     * - "edge,right" - the list is scrolled until the right edge
15982     * - "language,changed" - the program's language changed
15983     *
15984     * Available styles for it:
15985     * - @c "default"
15986     *
15987     * List of examples:
15988     * @li @ref list_example_01
15989     * @li @ref list_example_02
15990     * @li @ref list_example_03
15991     */
15992
15993    /**
15994     * @addtogroup List
15995     * @{
15996     */
15997
15998    /**
15999     * @enum _Elm_List_Mode
16000     * @typedef Elm_List_Mode
16001     *
16002     * Set list's resize behavior, transverse axis scroll and
16003     * items cropping. See each mode's description for more details.
16004     *
16005     * @note Default value is #ELM_LIST_SCROLL.
16006     *
16007     * Values <b> don't </b> work as bitmask, only one can be choosen.
16008     *
16009     * @see elm_list_mode_set()
16010     * @see elm_list_mode_get()
16011     *
16012     * @ingroup List
16013     */
16014    typedef enum _Elm_List_Mode
16015      {
16016         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. */
16017         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). */
16018         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. */
16019         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. */
16020         ELM_LIST_LAST /**< Indicates error if returned by elm_list_mode_get() */
16021      } Elm_List_Mode;
16022
16023    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().  */
16024
16025    /**
16026     * Add a new list widget to the given parent Elementary
16027     * (container) object.
16028     *
16029     * @param parent The parent object.
16030     * @return a new list widget handle or @c NULL, on errors.
16031     *
16032     * This function inserts a new list widget on the canvas.
16033     *
16034     * @ingroup List
16035     */
16036    EAPI Evas_Object     *elm_list_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16037
16038    /**
16039     * Starts the list.
16040     *
16041     * @param obj The list object
16042     *
16043     * @note Call before running show() on the list object.
16044     * @warning If not called, it won't display the list properly.
16045     *
16046     * @code
16047     * li = elm_list_add(win);
16048     * elm_list_item_append(li, "First", NULL, NULL, NULL, NULL);
16049     * elm_list_item_append(li, "Second", NULL, NULL, NULL, NULL);
16050     * elm_list_go(li);
16051     * evas_object_show(li);
16052     * @endcode
16053     *
16054     * @ingroup List
16055     */
16056    EAPI void             elm_list_go(Evas_Object *obj) EINA_ARG_NONNULL(1);
16057
16058    /**
16059     * Enable or disable multiple items selection on the list object.
16060     *
16061     * @param obj The list object
16062     * @param multi @c EINA_TRUE to enable multi selection or @c EINA_FALSE to
16063     * disable it.
16064     *
16065     * Disabled by default. If disabled, the user can select a single item of
16066     * the list each time. Selected items are highlighted on list.
16067     * If enabled, many items can be selected.
16068     *
16069     * If a selected item is selected again, it will be unselected.
16070     *
16071     * @see elm_list_multi_select_get()
16072     *
16073     * @ingroup List
16074     */
16075    EAPI void             elm_list_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
16076
16077    /**
16078     * Get a value whether multiple items selection is enabled or not.
16079     *
16080     * @see elm_list_multi_select_set() for details.
16081     *
16082     * @param obj The list object.
16083     * @return @c EINA_TRUE means multiple items selection is enabled.
16084     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16085     * @c EINA_FALSE is returned.
16086     *
16087     * @ingroup List
16088     */
16089    EAPI Eina_Bool        elm_list_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16090
16091    /**
16092     * Set which mode to use for the list object.
16093     *
16094     * @param obj The list object
16095     * @param mode One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
16096     * #ELM_LIST_LIMIT or #ELM_LIST_EXPAND.
16097     *
16098     * Set list's resize behavior, transverse axis scroll and
16099     * items cropping. See each mode's description for more details.
16100     *
16101     * @note Default value is #ELM_LIST_SCROLL.
16102     *
16103     * Only one can be set, if a previous one was set, it will be changed
16104     * by the new mode set. Bitmask won't work as well.
16105     *
16106     * @see elm_list_mode_get()
16107     *
16108     * @ingroup List
16109     */
16110    EAPI void             elm_list_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
16111
16112    /**
16113     * Get the mode the list is at.
16114     *
16115     * @param obj The list object
16116     * @return One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
16117     * #ELM_LIST_LIMIT, #ELM_LIST_EXPAND or #ELM_LIST_LAST on errors.
16118     *
16119     * @note see elm_list_mode_set() for more information.
16120     *
16121     * @ingroup List
16122     */
16123    EAPI Elm_List_Mode    elm_list_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16124
16125    /**
16126     * Enable or disable horizontal mode on the list object.
16127     *
16128     * @param obj The list object.
16129     * @param horizontal @c EINA_TRUE to enable horizontal or @c EINA_FALSE to
16130     * disable it, i.e., to enable vertical mode.
16131     *
16132     * @note Vertical mode is set by default.
16133     *
16134     * On horizontal mode items are displayed on list from left to right,
16135     * instead of from top to bottom. Also, the list will scroll horizontally.
16136     * Each item will presents left icon on top and right icon, or end, at
16137     * the bottom.
16138     *
16139     * @see elm_list_horizontal_get()
16140     *
16141     * @ingroup List
16142     */
16143    EAPI void             elm_list_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
16144
16145    /**
16146     * Get a value whether horizontal mode is enabled or not.
16147     *
16148     * @param obj The list object.
16149     * @return @c EINA_TRUE means horizontal mode selection is enabled.
16150     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16151     * @c EINA_FALSE is returned.
16152     *
16153     * @see elm_list_horizontal_set() for details.
16154     *
16155     * @ingroup List
16156     */
16157    EAPI Eina_Bool        elm_list_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16158
16159    /**
16160     * Enable or disable always select mode on the list object.
16161     *
16162     * @param obj The list object
16163     * @param always_select @c EINA_TRUE to enable always select mode or
16164     * @c EINA_FALSE to disable it.
16165     *
16166     * @note Always select mode is disabled by default.
16167     *
16168     * Default behavior of list items is to only call its callback function
16169     * the first time it's pressed, i.e., when it is selected. If a selected
16170     * item is pressed again, and multi-select is disabled, it won't call
16171     * this function (if multi-select is enabled it will unselect the item).
16172     *
16173     * If always select is enabled, it will call the callback function
16174     * everytime a item is pressed, so it will call when the item is selected,
16175     * and again when a selected item is pressed.
16176     *
16177     * @see elm_list_always_select_mode_get()
16178     * @see elm_list_multi_select_set()
16179     *
16180     * @ingroup List
16181     */
16182    EAPI void             elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
16183
16184    /**
16185     * Get a value whether always select mode is enabled or not, meaning that
16186     * an item will always call its callback function, even if already selected.
16187     *
16188     * @param obj The list object
16189     * @return @c EINA_TRUE means horizontal mode selection is enabled.
16190     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16191     * @c EINA_FALSE is returned.
16192     *
16193     * @see elm_list_always_select_mode_set() for details.
16194     *
16195     * @ingroup List
16196     */
16197    EAPI Eina_Bool        elm_list_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16198
16199    /**
16200     * Set bouncing behaviour when the scrolled content reaches an edge.
16201     *
16202     * Tell the internal scroller object whether it should bounce or not
16203     * when it reaches the respective edges for each axis.
16204     *
16205     * @param obj The list object
16206     * @param h_bounce Whether to bounce or not in the horizontal axis.
16207     * @param v_bounce Whether to bounce or not in the vertical axis.
16208     *
16209     * @see elm_scroller_bounce_set()
16210     *
16211     * @ingroup List
16212     */
16213    EAPI void             elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
16214
16215    /**
16216     * Get the bouncing behaviour of the internal scroller.
16217     *
16218     * Get whether the internal scroller should bounce when the edge of each
16219     * axis is reached scrolling.
16220     *
16221     * @param obj The list object.
16222     * @param h_bounce Pointer where to store the bounce state of the horizontal
16223     * axis.
16224     * @param v_bounce Pointer where to store the bounce state of the vertical
16225     * axis.
16226     *
16227     * @see elm_scroller_bounce_get()
16228     * @see elm_list_bounce_set()
16229     *
16230     * @ingroup List
16231     */
16232    EAPI void             elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
16233
16234    /**
16235     * Set the scrollbar policy.
16236     *
16237     * @param obj The list object
16238     * @param policy_h Horizontal scrollbar policy.
16239     * @param policy_v Vertical scrollbar policy.
16240     *
16241     * This sets the scrollbar visibility policy for the given scroller.
16242     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
16243     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
16244     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
16245     * This applies respectively for the horizontal and vertical scrollbars.
16246     *
16247     * The both are disabled by default, i.e., are set to
16248     * #ELM_SCROLLER_POLICY_OFF.
16249     *
16250     * @ingroup List
16251     */
16252    EAPI void             elm_list_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
16253
16254    /**
16255     * Get the scrollbar policy.
16256     *
16257     * @see elm_list_scroller_policy_get() for details.
16258     *
16259     * @param obj The list object.
16260     * @param policy_h Pointer where to store horizontal scrollbar policy.
16261     * @param policy_v Pointer where to store vertical scrollbar policy.
16262     *
16263     * @ingroup List
16264     */
16265    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);
16266
16267    /**
16268     * Append a new item to the list object.
16269     *
16270     * @param obj The list object.
16271     * @param label The label of the list item.
16272     * @param icon The icon object to use for the left side of the item. An
16273     * icon can be any Evas object, but usually it is an icon created
16274     * with elm_icon_add().
16275     * @param end The icon object to use for the right side of the item. An
16276     * icon can be any Evas object.
16277     * @param func The function to call when the item is clicked.
16278     * @param data The data to associate with the item for related callbacks.
16279     *
16280     * @return The created item or @c NULL upon failure.
16281     *
16282     * A new item will be created and appended to the list, i.e., will
16283     * be set as @b last item.
16284     *
16285     * Items created with this method can be deleted with
16286     * elm_list_item_del().
16287     *
16288     * Associated @p data can be properly freed when item is deleted if a
16289     * callback function is set with elm_list_item_del_cb_set().
16290     *
16291     * If a function is passed as argument, it will be called everytime this item
16292     * is selected, i.e., the user clicks over an unselected item.
16293     * If always select is enabled it will call this function every time
16294     * user clicks over an item (already selected or not).
16295     * If such function isn't needed, just passing
16296     * @c NULL as @p func is enough. The same should be done for @p data.
16297     *
16298     * Simple example (with no function callback or data associated):
16299     * @code
16300     * li = elm_list_add(win);
16301     * ic = elm_icon_add(win);
16302     * elm_icon_file_set(ic, "path/to/image", NULL);
16303     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
16304     * elm_list_item_append(li, "label", ic, NULL, NULL, NULL);
16305     * elm_list_go(li);
16306     * evas_object_show(li);
16307     * @endcode
16308     *
16309     * @see elm_list_always_select_mode_set()
16310     * @see elm_list_item_del()
16311     * @see elm_list_item_del_cb_set()
16312     * @see elm_list_clear()
16313     * @see elm_icon_add()
16314     *
16315     * @ingroup List
16316     */
16317    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);
16318
16319    /**
16320     * Prepend a new item to the list object.
16321     *
16322     * @param obj The list object.
16323     * @param label The label of the list item.
16324     * @param icon The icon object to use for the left side of the item. An
16325     * icon can be any Evas object, but usually it is an icon created
16326     * with elm_icon_add().
16327     * @param end The icon object to use for the right side of the item. An
16328     * icon can be any Evas object.
16329     * @param func The function to call when the item is clicked.
16330     * @param data The data to associate with the item for related callbacks.
16331     *
16332     * @return The created item or @c NULL upon failure.
16333     *
16334     * A new item will be created and prepended to the list, i.e., will
16335     * be set as @b first item.
16336     *
16337     * Items created with this method can be deleted with
16338     * elm_list_item_del().
16339     *
16340     * Associated @p data can be properly freed when item is deleted if a
16341     * callback function is set with elm_list_item_del_cb_set().
16342     *
16343     * If a function is passed as argument, it will be called everytime this item
16344     * is selected, i.e., the user clicks over an unselected item.
16345     * If always select is enabled it will call this function every time
16346     * user clicks over an item (already selected or not).
16347     * If such function isn't needed, just passing
16348     * @c NULL as @p func is enough. The same should be done for @p data.
16349     *
16350     * @see elm_list_item_append() for a simple code example.
16351     * @see elm_list_always_select_mode_set()
16352     * @see elm_list_item_del()
16353     * @see elm_list_item_del_cb_set()
16354     * @see elm_list_clear()
16355     * @see elm_icon_add()
16356     *
16357     * @ingroup List
16358     */
16359    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);
16360
16361    /**
16362     * Insert a new item into the list object before item @p before.
16363     *
16364     * @param obj The list object.
16365     * @param before The list item to insert before.
16366     * @param label The label of the list item.
16367     * @param icon The icon object to use for the left side of the item. An
16368     * icon can be any Evas object, but usually it is an icon created
16369     * with elm_icon_add().
16370     * @param end The icon object to use for the right side of the item. An
16371     * icon can be any Evas object.
16372     * @param func The function to call when the item is clicked.
16373     * @param data The data to associate with the item for related callbacks.
16374     *
16375     * @return The created item or @c NULL upon failure.
16376     *
16377     * A new item will be created and added to the list. Its position in
16378     * this list will be just before item @p before.
16379     *
16380     * Items created with this method can be deleted with
16381     * elm_list_item_del().
16382     *
16383     * Associated @p data can be properly freed when item is deleted if a
16384     * callback function is set with elm_list_item_del_cb_set().
16385     *
16386     * If a function is passed as argument, it will be called everytime this item
16387     * is selected, i.e., the user clicks over an unselected item.
16388     * If always select is enabled it will call this function every time
16389     * user clicks over an item (already selected or not).
16390     * If such function isn't needed, just passing
16391     * @c NULL as @p func is enough. The same should be done for @p data.
16392     *
16393     * @see elm_list_item_append() for a simple code example.
16394     * @see elm_list_always_select_mode_set()
16395     * @see elm_list_item_del()
16396     * @see elm_list_item_del_cb_set()
16397     * @see elm_list_clear()
16398     * @see elm_icon_add()
16399     *
16400     * @ingroup List
16401     */
16402    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);
16403
16404    /**
16405     * Insert a new item into the list object after item @p after.
16406     *
16407     * @param obj The list object.
16408     * @param after The list item to insert after.
16409     * @param label The label of the list item.
16410     * @param icon The icon object to use for the left side of the item. An
16411     * icon can be any Evas object, but usually it is an icon created
16412     * with elm_icon_add().
16413     * @param end The icon object to use for the right side of the item. An
16414     * icon can be any Evas object.
16415     * @param func The function to call when the item is clicked.
16416     * @param data The data to associate with the item for related callbacks.
16417     *
16418     * @return The created item or @c NULL upon failure.
16419     *
16420     * A new item will be created and added to the list. Its position in
16421     * this list will be just after item @p after.
16422     *
16423     * Items created with this method can be deleted with
16424     * elm_list_item_del().
16425     *
16426     * Associated @p data can be properly freed when item is deleted if a
16427     * callback function is set with elm_list_item_del_cb_set().
16428     *
16429     * If a function is passed as argument, it will be called everytime this item
16430     * is selected, i.e., the user clicks over an unselected item.
16431     * If always select is enabled it will call this function every time
16432     * user clicks over an item (already selected or not).
16433     * If such function isn't needed, just passing
16434     * @c NULL as @p func is enough. The same should be done for @p data.
16435     *
16436     * @see elm_list_item_append() for a simple code example.
16437     * @see elm_list_always_select_mode_set()
16438     * @see elm_list_item_del()
16439     * @see elm_list_item_del_cb_set()
16440     * @see elm_list_clear()
16441     * @see elm_icon_add()
16442     *
16443     * @ingroup List
16444     */
16445    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);
16446
16447    /**
16448     * Insert a new item into the sorted list object.
16449     *
16450     * @param obj The list object.
16451     * @param label The label of the list item.
16452     * @param icon The icon object to use for the left side of the item. An
16453     * icon can be any Evas object, but usually it is an icon created
16454     * with elm_icon_add().
16455     * @param end The icon object to use for the right side of the item. An
16456     * icon can be any Evas object.
16457     * @param func The function to call when the item is clicked.
16458     * @param data The data to associate with the item for related callbacks.
16459     * @param cmp_func The comparing function to be used to sort list
16460     * items <b>by #Elm_List_Item item handles</b>. This function will
16461     * receive two items and compare them, returning a non-negative integer
16462     * if the second item should be place after the first, or negative value
16463     * if should be placed before.
16464     *
16465     * @return The created item or @c NULL upon failure.
16466     *
16467     * @note This function inserts values into a list object assuming it was
16468     * sorted and the result will be sorted.
16469     *
16470     * A new item will be created and added to the list. Its position in
16471     * this list will be found comparing the new item with previously inserted
16472     * items using function @p cmp_func.
16473     *
16474     * Items created with this method can be deleted with
16475     * elm_list_item_del().
16476     *
16477     * Associated @p data can be properly freed when item is deleted if a
16478     * callback function is set with elm_list_item_del_cb_set().
16479     *
16480     * If a function is passed as argument, it will be called everytime this item
16481     * is selected, i.e., the user clicks over an unselected item.
16482     * If always select is enabled it will call this function every time
16483     * user clicks over an item (already selected or not).
16484     * If such function isn't needed, just passing
16485     * @c NULL as @p func is enough. The same should be done for @p data.
16486     *
16487     * @see elm_list_item_append() for a simple code example.
16488     * @see elm_list_always_select_mode_set()
16489     * @see elm_list_item_del()
16490     * @see elm_list_item_del_cb_set()
16491     * @see elm_list_clear()
16492     * @see elm_icon_add()
16493     *
16494     * @ingroup List
16495     */
16496    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);
16497
16498    /**
16499     * Remove all list's items.
16500     *
16501     * @param obj The list object
16502     *
16503     * @see elm_list_item_del()
16504     * @see elm_list_item_append()
16505     *
16506     * @ingroup List
16507     */
16508    EAPI void             elm_list_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
16509
16510    /**
16511     * Get a list of all the list items.
16512     *
16513     * @param obj The list object
16514     * @return An @c Eina_List of list items, #Elm_List_Item,
16515     * or @c NULL on failure.
16516     *
16517     * @see elm_list_item_append()
16518     * @see elm_list_item_del()
16519     * @see elm_list_clear()
16520     *
16521     * @ingroup List
16522     */
16523    EAPI const Eina_List *elm_list_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16524
16525    /**
16526     * Get the selected item.
16527     *
16528     * @param obj The list object.
16529     * @return The selected list item.
16530     *
16531     * The selected item can be unselected with function
16532     * elm_list_item_selected_set().
16533     *
16534     * The selected item always will be highlighted on list.
16535     *
16536     * @see elm_list_selected_items_get()
16537     *
16538     * @ingroup List
16539     */
16540    EAPI Elm_List_Item   *elm_list_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16541
16542    /**
16543     * Return a list of the currently selected list items.
16544     *
16545     * @param obj The list object.
16546     * @return An @c Eina_List of list items, #Elm_List_Item,
16547     * or @c NULL on failure.
16548     *
16549     * Multiple items can be selected if multi select is enabled. It can be
16550     * done with elm_list_multi_select_set().
16551     *
16552     * @see elm_list_selected_item_get()
16553     * @see elm_list_multi_select_set()
16554     *
16555     * @ingroup List
16556     */
16557    EAPI const Eina_List *elm_list_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16558
16559    /**
16560     * Set the selected state of an item.
16561     *
16562     * @param item The list item
16563     * @param selected The selected state
16564     *
16565     * This sets the selected state of the given item @p it.
16566     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
16567     *
16568     * If a new item is selected the previosly selected will be unselected,
16569     * unless multiple selection is enabled with elm_list_multi_select_set().
16570     * Previoulsy selected item can be get with function
16571     * elm_list_selected_item_get().
16572     *
16573     * Selected items will be highlighted.
16574     *
16575     * @see elm_list_item_selected_get()
16576     * @see elm_list_selected_item_get()
16577     * @see elm_list_multi_select_set()
16578     *
16579     * @ingroup List
16580     */
16581    EAPI void             elm_list_item_selected_set(Elm_List_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
16582
16583    /*
16584     * Get whether the @p item is selected or not.
16585     *
16586     * @param item The list item.
16587     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
16588     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
16589     *
16590     * @see elm_list_selected_item_set() for details.
16591     * @see elm_list_item_selected_get()
16592     *
16593     * @ingroup List
16594     */
16595    EAPI Eina_Bool        elm_list_item_selected_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16596
16597    /**
16598     * Set or unset item as a separator.
16599     *
16600     * @param it The list item.
16601     * @param setting @c EINA_TRUE to set item @p it as separator or
16602     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
16603     *
16604     * Items aren't set as separator by default.
16605     *
16606     * If set as separator it will display separator theme, so won't display
16607     * icons or label.
16608     *
16609     * @see elm_list_item_separator_get()
16610     *
16611     * @ingroup List
16612     */
16613    EAPI void             elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting) EINA_ARG_NONNULL(1);
16614
16615    /**
16616     * Get a value whether item is a separator or not.
16617     *
16618     * @see elm_list_item_separator_set() for details.
16619     *
16620     * @param it The list item.
16621     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
16622     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
16623     *
16624     * @ingroup List
16625     */
16626    EAPI Eina_Bool        elm_list_item_separator_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
16627
16628    /**
16629     * Show @p item in the list view.
16630     *
16631     * @param item The list item to be shown.
16632     *
16633     * It won't animate list until item is visible. If such behavior is wanted,
16634     * use elm_list_bring_in() intead.
16635     *
16636     * @ingroup List
16637     */
16638    EAPI void             elm_list_item_show(Elm_List_Item *item) EINA_ARG_NONNULL(1);
16639
16640    /**
16641     * Bring in the given item to list view.
16642     *
16643     * @param item The item.
16644     *
16645     * This causes list to jump to the given item @p item and show it
16646     * (by scrolling), if it is not fully visible.
16647     *
16648     * This may use animation to do so and take a period of time.
16649     *
16650     * If animation isn't wanted, elm_list_item_show() can be used.
16651     *
16652     * @ingroup List
16653     */
16654    EAPI void             elm_list_item_bring_in(Elm_List_Item *item) EINA_ARG_NONNULL(1);
16655
16656    /**
16657     * Delete them item from the list.
16658     *
16659     * @param item The item of list to be deleted.
16660     *
16661     * If deleting all list items is required, elm_list_clear()
16662     * should be used instead of getting items list and deleting each one.
16663     *
16664     * @see elm_list_clear()
16665     * @see elm_list_item_append()
16666     * @see elm_list_item_del_cb_set()
16667     *
16668     * @ingroup List
16669     */
16670    EAPI void             elm_list_item_del(Elm_List_Item *item) EINA_ARG_NONNULL(1);
16671
16672    /**
16673     * Set the function called when a list item is freed.
16674     *
16675     * @param item The item to set the callback on
16676     * @param func The function called
16677     *
16678     * If there is a @p func, then it will be called prior item's memory release.
16679     * That will be called with the following arguments:
16680     * @li item's data;
16681     * @li item's Evas object;
16682     * @li item itself;
16683     *
16684     * This way, a data associated to a list item could be properly freed.
16685     *
16686     * @ingroup List
16687     */
16688    EAPI void             elm_list_item_del_cb_set(Elm_List_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
16689
16690    /**
16691     * Get the data associated to the item.
16692     *
16693     * @param item The list item
16694     * @return The data associated to @p item
16695     *
16696     * The return value is a pointer to data associated to @p item when it was
16697     * created, with function elm_list_item_append() or similar. If no data
16698     * was passed as argument, it will return @c NULL.
16699     *
16700     * @see elm_list_item_append()
16701     *
16702     * @ingroup List
16703     */
16704    EAPI void            *elm_list_item_data_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16705
16706    /**
16707     * Get the left side icon associated to the item.
16708     *
16709     * @param item The list item
16710     * @return The left side icon associated to @p item
16711     *
16712     * The return value is a pointer to the icon associated to @p item when
16713     * it was
16714     * created, with function elm_list_item_append() or similar, or later
16715     * with function elm_list_item_icon_set(). If no icon
16716     * was passed as argument, it will return @c NULL.
16717     *
16718     * @see elm_list_item_append()
16719     * @see elm_list_item_icon_set()
16720     *
16721     * @ingroup List
16722     */
16723    EAPI Evas_Object     *elm_list_item_icon_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16724
16725    /**
16726     * Set the left side icon associated to the item.
16727     *
16728     * @param item The list item
16729     * @param icon The left side icon object to associate with @p item
16730     *
16731     * The icon object to use at left side of the item. An
16732     * icon can be any Evas object, but usually it is an icon created
16733     * with elm_icon_add().
16734     *
16735     * Once the icon object is set, a previously set one will be deleted.
16736     * @warning Setting the same icon for two items will cause the icon to
16737     * dissapear from the first item.
16738     *
16739     * If an icon was passed as argument on item creation, with function
16740     * elm_list_item_append() or similar, it will be already
16741     * associated to the item.
16742     *
16743     * @see elm_list_item_append()
16744     * @see elm_list_item_icon_get()
16745     *
16746     * @ingroup List
16747     */
16748    EAPI void             elm_list_item_icon_set(Elm_List_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
16749
16750    /**
16751     * Get the right side icon associated to the item.
16752     *
16753     * @param item The list item
16754     * @return The right side icon associated to @p item
16755     *
16756     * The return value is a pointer to the icon associated to @p item when
16757     * it was
16758     * created, with function elm_list_item_append() or similar, or later
16759     * with function elm_list_item_icon_set(). If no icon
16760     * was passed as argument, it will return @c NULL.
16761     *
16762     * @see elm_list_item_append()
16763     * @see elm_list_item_icon_set()
16764     *
16765     * @ingroup List
16766     */
16767    EAPI Evas_Object     *elm_list_item_end_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16768
16769    /**
16770     * Set the right side icon associated to the item.
16771     *
16772     * @param item The list item
16773     * @param end The right side icon object to associate with @p item
16774     *
16775     * The icon object to use at right side of the item. An
16776     * icon can be any Evas object, but usually it is an icon created
16777     * with elm_icon_add().
16778     *
16779     * Once the icon object is set, a previously set one will be deleted.
16780     * @warning Setting the same icon for two items will cause the icon to
16781     * dissapear from the first item.
16782     *
16783     * If an icon was passed as argument on item creation, with function
16784     * elm_list_item_append() or similar, it will be already
16785     * associated to the item.
16786     *
16787     * @see elm_list_item_append()
16788     * @see elm_list_item_end_get()
16789     *
16790     * @ingroup List
16791     */
16792    EAPI void             elm_list_item_end_set(Elm_List_Item *item, Evas_Object *end) EINA_ARG_NONNULL(1);
16793    EAPI Evas_Object     *elm_list_item_base_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16794
16795    /**
16796     * Gets the base object of the item.
16797     *
16798     * @param item The list item
16799     * @return The base object associated with @p item
16800     *
16801     * Base object is the @c Evas_Object that represents that item.
16802     *
16803     * @ingroup List
16804     */
16805    EAPI Evas_Object     *elm_list_item_object_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16806
16807    /**
16808     * Get the label of item.
16809     *
16810     * @param item The item of list.
16811     * @return The label of item.
16812     *
16813     * The return value is a pointer to the label associated to @p item when
16814     * it was created, with function elm_list_item_append(), or later
16815     * with function elm_list_item_label_set. If no label
16816     * was passed as argument, it will return @c NULL.
16817     *
16818     * @see elm_list_item_label_set() for more details.
16819     * @see elm_list_item_append()
16820     *
16821     * @ingroup List
16822     */
16823    EAPI const char      *elm_list_item_label_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16824
16825    /**
16826     * Set the label of item.
16827     *
16828     * @param item The item of list.
16829     * @param text The label of item.
16830     *
16831     * The label to be displayed by the item.
16832     * Label will be placed between left and right side icons (if set).
16833     *
16834     * If a label was passed as argument on item creation, with function
16835     * elm_list_item_append() or similar, it will be already
16836     * displayed by the item.
16837     *
16838     * @see elm_list_item_label_get()
16839     * @see elm_list_item_append()
16840     *
16841     * @ingroup List
16842     */
16843    EAPI void             elm_list_item_label_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
16844
16845
16846    /**
16847     * Get the item before @p it in list.
16848     *
16849     * @param it The list item.
16850     * @return The item before @p it, or @c NULL if none or on failure.
16851     *
16852     * @note If it is the first item, @c NULL will be returned.
16853     *
16854     * @see elm_list_item_append()
16855     * @see elm_list_items_get()
16856     *
16857     * @ingroup List
16858     */
16859    EAPI Elm_List_Item   *elm_list_item_prev(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
16860
16861    /**
16862     * Get the item after @p it in list.
16863     *
16864     * @param it The list item.
16865     * @return The item after @p it, or @c NULL if none or on failure.
16866     *
16867     * @note If it is the last item, @c NULL will be returned.
16868     *
16869     * @see elm_list_item_append()
16870     * @see elm_list_items_get()
16871     *
16872     * @ingroup List
16873     */
16874    EAPI Elm_List_Item   *elm_list_item_next(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
16875
16876    /**
16877     * Sets the disabled/enabled state of a list item.
16878     *
16879     * @param it The item.
16880     * @param disabled The disabled state.
16881     *
16882     * A disabled item cannot be selected or unselected. It will also
16883     * change its appearance (generally greyed out). This sets the
16884     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
16885     * enabled).
16886     *
16887     * @ingroup List
16888     */
16889    EAPI void             elm_list_item_disabled_set(Elm_List_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
16890
16891    /**
16892     * Get a value whether list item is disabled or not.
16893     *
16894     * @param it The item.
16895     * @return The disabled state.
16896     *
16897     * @see elm_list_item_disabled_set() for more details.
16898     *
16899     * @ingroup List
16900     */
16901    EAPI Eina_Bool        elm_list_item_disabled_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
16902
16903    /**
16904     * Set the text to be shown in a given list item's tooltips.
16905     *
16906     * @param item Target item.
16907     * @param text The text to set in the content.
16908     *
16909     * Setup the text as tooltip to object. The item can have only one tooltip,
16910     * so any previous tooltip data - set with this function or
16911     * elm_list_item_tooltip_content_cb_set() - is removed.
16912     *
16913     * @see elm_object_tooltip_text_set() for more details.
16914     *
16915     * @ingroup List
16916     */
16917    EAPI void             elm_list_item_tooltip_text_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
16918
16919
16920    /**
16921     * @brief Disable size restrictions on an object's tooltip
16922     * @param item The tooltip's anchor object
16923     * @param disable If EINA_TRUE, size restrictions are disabled
16924     * @return EINA_FALSE on failure, EINA_TRUE on success
16925     *
16926     * This function allows a tooltip to expand beyond its parant window's canvas.
16927     * It will instead be limited only by the size of the display.
16928     */
16929    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disable(Elm_List_Item *item, Eina_Bool disable) EINA_ARG_NONNULL(1);
16930    /**
16931     * @brief Retrieve size restriction state of an object's tooltip
16932     * @param obj The tooltip's anchor object
16933     * @return If EINA_TRUE, size restrictions are disabled
16934     *
16935     * This function returns whether a tooltip is allowed to expand beyond
16936     * its parant window's canvas.
16937     * It will instead be limited only by the size of the display.
16938     */
16939    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disabled_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16940
16941    /**
16942     * Set the content to be shown in the tooltip item.
16943     *
16944     * Setup the tooltip to item. The item can have only one tooltip,
16945     * so any previous tooltip data is removed. @p func(with @p data) will
16946     * be called every time that need show the tooltip and it should
16947     * return a valid Evas_Object. This object is then managed fully by
16948     * tooltip system and is deleted when the tooltip is gone.
16949     *
16950     * @param item the list item being attached a tooltip.
16951     * @param func the function used to create the tooltip contents.
16952     * @param data what to provide to @a func as callback data/context.
16953     * @param del_cb called when data is not needed anymore, either when
16954     *        another callback replaces @a func, the tooltip is unset with
16955     *        elm_list_item_tooltip_unset() or the owner @a item
16956     *        dies. This callback receives as the first parameter the
16957     *        given @a data, and @c event_info is the item.
16958     *
16959     * @see elm_object_tooltip_content_cb_set() for more details.
16960     *
16961     * @ingroup List
16962     */
16963    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);
16964
16965    /**
16966     * Unset tooltip from item.
16967     *
16968     * @param item list item to remove previously set tooltip.
16969     *
16970     * Remove tooltip from item. The callback provided as del_cb to
16971     * elm_list_item_tooltip_content_cb_set() will be called to notify
16972     * it is not used anymore.
16973     *
16974     * @see elm_object_tooltip_unset() for more details.
16975     * @see elm_list_item_tooltip_content_cb_set()
16976     *
16977     * @ingroup List
16978     */
16979    EAPI void             elm_list_item_tooltip_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
16980
16981    /**
16982     * Sets a different style for this item tooltip.
16983     *
16984     * @note before you set a style you should define a tooltip with
16985     *       elm_list_item_tooltip_content_cb_set() or
16986     *       elm_list_item_tooltip_text_set()
16987     *
16988     * @param item list item with tooltip already set.
16989     * @param style the theme style to use (default, transparent, ...)
16990     *
16991     * @see elm_object_tooltip_style_set() for more details.
16992     *
16993     * @ingroup List
16994     */
16995    EAPI void             elm_list_item_tooltip_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
16996
16997    /**
16998     * Get the style for this item tooltip.
16999     *
17000     * @param item list item with tooltip already set.
17001     * @return style the theme style in use, defaults to "default". If the
17002     *         object does not have a tooltip set, then NULL is returned.
17003     *
17004     * @see elm_object_tooltip_style_get() for more details.
17005     * @see elm_list_item_tooltip_style_set()
17006     *
17007     * @ingroup List
17008     */
17009    EAPI const char      *elm_list_item_tooltip_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17010
17011    /**
17012     * Set the type of mouse pointer/cursor decoration to be shown,
17013     * when the mouse pointer is over the given list widget item
17014     *
17015     * @param item list item to customize cursor on
17016     * @param cursor the cursor type's name
17017     *
17018     * This function works analogously as elm_object_cursor_set(), but
17019     * here the cursor's changing area is restricted to the item's
17020     * area, and not the whole widget's. Note that that item cursors
17021     * have precedence over widget cursors, so that a mouse over an
17022     * item with custom cursor set will always show @b that cursor.
17023     *
17024     * If this function is called twice for an object, a previously set
17025     * cursor will be unset on the second call.
17026     *
17027     * @see elm_object_cursor_set()
17028     * @see elm_list_item_cursor_get()
17029     * @see elm_list_item_cursor_unset()
17030     *
17031     * @ingroup List
17032     */
17033    EAPI void             elm_list_item_cursor_set(Elm_List_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
17034
17035    /*
17036     * Get the type of mouse pointer/cursor decoration set to be shown,
17037     * when the mouse pointer is over the given list widget item
17038     *
17039     * @param item list item with custom cursor set
17040     * @return the cursor type's name or @c NULL, if no custom cursors
17041     * were set to @p item (and on errors)
17042     *
17043     * @see elm_object_cursor_get()
17044     * @see elm_list_item_cursor_set()
17045     * @see elm_list_item_cursor_unset()
17046     *
17047     * @ingroup List
17048     */
17049    EAPI const char      *elm_list_item_cursor_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17050
17051    /**
17052     * Unset any custom mouse pointer/cursor decoration set to be
17053     * shown, when the mouse pointer is over the given list widget
17054     * item, thus making it show the @b default cursor again.
17055     *
17056     * @param item a list item
17057     *
17058     * Use this call to undo any custom settings on this item's cursor
17059     * decoration, bringing it back to defaults (no custom style set).
17060     *
17061     * @see elm_object_cursor_unset()
17062     * @see elm_list_item_cursor_set()
17063     *
17064     * @ingroup List
17065     */
17066    EAPI void             elm_list_item_cursor_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17067
17068    /**
17069     * Set a different @b style for a given custom cursor set for a
17070     * list item.
17071     *
17072     * @param item list item with custom cursor set
17073     * @param style the <b>theme style</b> to use (e.g. @c "default",
17074     * @c "transparent", etc)
17075     *
17076     * This function only makes sense when one is using custom mouse
17077     * cursor decorations <b>defined in a theme file</b>, which can have,
17078     * given a cursor name/type, <b>alternate styles</b> on it. It
17079     * works analogously as elm_object_cursor_style_set(), but here
17080     * applyed only to list item objects.
17081     *
17082     * @warning Before you set a cursor style you should have definen a
17083     *       custom cursor previously on the item, with
17084     *       elm_list_item_cursor_set()
17085     *
17086     * @see elm_list_item_cursor_engine_only_set()
17087     * @see elm_list_item_cursor_style_get()
17088     *
17089     * @ingroup List
17090     */
17091    EAPI void             elm_list_item_cursor_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
17092
17093    /**
17094     * Get the current @b style set for a given list item's custom
17095     * cursor
17096     *
17097     * @param item list item with custom cursor set.
17098     * @return style the cursor style in use. If the object does not
17099     *         have a cursor set, then @c NULL is returned.
17100     *
17101     * @see elm_list_item_cursor_style_set() for more details
17102     *
17103     * @ingroup List
17104     */
17105    EAPI const char      *elm_list_item_cursor_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17106
17107    /**
17108     * Set if the (custom)cursor for a given list item should be
17109     * searched in its theme, also, or should only rely on the
17110     * rendering engine.
17111     *
17112     * @param item item with custom (custom) cursor already set on
17113     * @param engine_only Use @c EINA_TRUE to have cursors looked for
17114     * only on those provided by the rendering engine, @c EINA_FALSE to
17115     * have them searched on the widget's theme, as well.
17116     *
17117     * @note This call is of use only if you've set a custom cursor
17118     * for list items, with elm_list_item_cursor_set().
17119     *
17120     * @note By default, cursors will only be looked for between those
17121     * provided by the rendering engine.
17122     *
17123     * @ingroup List
17124     */
17125    EAPI void             elm_list_item_cursor_engine_only_set(Elm_List_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
17126
17127    /**
17128     * Get if the (custom) cursor for a given list item is being
17129     * searched in its theme, also, or is only relying on the rendering
17130     * engine.
17131     *
17132     * @param item a list item
17133     * @return @c EINA_TRUE, if cursors are being looked for only on
17134     * those provided by the rendering engine, @c EINA_FALSE if they
17135     * are being searched on the widget's theme, as well.
17136     *
17137     * @see elm_list_item_cursor_engine_only_set(), for more details
17138     *
17139     * @ingroup List
17140     */
17141    EAPI Eina_Bool        elm_list_item_cursor_engine_only_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17142
17143    /**
17144     * @}
17145     */
17146
17147    /**
17148     * @defgroup Slider Slider
17149     * @ingroup Elementary
17150     *
17151     * @image html img/widget/slider/preview-00.png
17152     * @image latex img/widget/slider/preview-00.eps width=\textwidth
17153     *
17154     * The slider adds a dragable ā€œsliderā€ widget for selecting the value of
17155     * something within a range.
17156     *
17157     * A slider can be horizontal or vertical. It can contain an Icon and has a
17158     * primary label as well as a units label (that is formatted with floating
17159     * point values and thus accepts a printf-style format string, like
17160     * ā€œ%1.2f unitsā€. There is also an indicator string that may be somewhere
17161     * else (like on the slider itself) that also accepts a format string like
17162     * units. Label, Icon Unit and Indicator strings/objects are optional.
17163     *
17164     * A slider may be inverted which means values invert, with high vales being
17165     * on the left or top and low values on the right or bottom (as opposed to
17166     * normally being low on the left or top and high on the bottom and right).
17167     *
17168     * The slider should have its minimum and maximum values set by the
17169     * application with  elm_slider_min_max_set() and value should also be set by
17170     * the application before use with  elm_slider_value_set(). The span of the
17171     * slider is its length (horizontally or vertically). This will be scaled by
17172     * the object or applications scaling factor. At any point code can query the
17173     * slider for its value with elm_slider_value_get().
17174     *
17175     * Smart callbacks one can listen to:
17176     * - "changed" - Whenever the slider value is changed by the user.
17177     * - "slider,drag,start" - dragging the slider indicator around has started.
17178     * - "slider,drag,stop" - dragging the slider indicator around has stopped.
17179     * - "delay,changed" - A short time after the value is changed by the user.
17180     * This will be called only when the user stops dragging for
17181     * a very short period or when they release their
17182     * finger/mouse, so it avoids possibly expensive reactions to
17183     * the value change.
17184     *
17185     * Available styles for it:
17186     * - @c "default"
17187     *
17188     * Default contents parts of the slider widget that you can use for are:
17189     * @li "elm.swallow.icon" - A icon of the slider
17190     * @li "elm.swallow.end" - A end part content of the slider
17191     * 
17192     * Here is an example on its usage:
17193     * @li @ref slider_example
17194     */
17195
17196 #define ELM_SLIDER_CONTENT_ICON "elm.swallow.icon"
17197 #define ELM_SLIDER_CONTENT_END "elm.swallow.end"
17198
17199    /**
17200     * @addtogroup Slider
17201     * @{
17202     */
17203
17204    /**
17205     * Add a new slider widget to the given parent Elementary
17206     * (container) object.
17207     *
17208     * @param parent The parent object.
17209     * @return a new slider widget handle or @c NULL, on errors.
17210     *
17211     * This function inserts a new slider widget on the canvas.
17212     *
17213     * @ingroup Slider
17214     */
17215    EAPI Evas_Object       *elm_slider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
17216
17217    /**
17218     * Set the label of a given slider widget
17219     *
17220     * @param obj The progress bar object
17221     * @param label The text label string, in UTF-8
17222     *
17223     * @ingroup Slider
17224     * @deprecated use elm_object_text_set() instead.
17225     */
17226    EINA_DEPRECATED EAPI void               elm_slider_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
17227
17228    /**
17229     * Get the label of a given slider widget
17230     *
17231     * @param obj The progressbar object
17232     * @return The text label string, in UTF-8
17233     *
17234     * @ingroup Slider
17235     * @deprecated use elm_object_text_get() instead.
17236     */
17237    EAPI const char        *elm_slider_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17238
17239    /**
17240     * Set the icon object of the slider object.
17241     *
17242     * @param obj The slider object.
17243     * @param icon The icon object.
17244     *
17245     * On horizontal mode, icon is placed at left, and on vertical mode,
17246     * placed at top.
17247     *
17248     * @note Once the icon object is set, a previously set one will be deleted.
17249     * If you want to keep that old content object, use the
17250     * elm_slider_icon_unset() function.
17251     *
17252     * @warning If the object being set does not have minimum size hints set,
17253     * it won't get properly displayed.
17254     *
17255     * @ingroup Slider
17256     * @deprecated use elm_object_content_set() instead.
17257     */
17258    EAPI void               elm_slider_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
17259
17260    /**
17261     * Unset an icon set on a given slider widget.
17262     *
17263     * @param obj The slider object.
17264     * @return The icon object that was being used, if any was set, or
17265     * @c NULL, otherwise (and on errors).
17266     *
17267     * On horizontal mode, icon is placed at left, and on vertical mode,
17268     * placed at top.
17269     *
17270     * This call will unparent and return the icon object which was set
17271     * for this widget, previously, on success.
17272     *
17273     * @see elm_slider_icon_set() for more details
17274     * @see elm_slider_icon_get()
17275     * @deprecated use elm_object_content_unset() instead.
17276     *
17277     * @ingroup Slider
17278     */
17279    EAPI Evas_Object       *elm_slider_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
17280
17281    /**
17282     * Retrieve the icon object set for a given slider widget.
17283     *
17284     * @param obj The slider object.
17285     * @return The icon object's handle, if @p obj had one set, or @c NULL,
17286     * otherwise (and on errors).
17287     *
17288     * On horizontal mode, icon is placed at left, and on vertical mode,
17289     * placed at top.
17290     *
17291     * @see elm_slider_icon_set() for more details
17292     * @see elm_slider_icon_unset()
17293     *
17294     * @ingroup Slider
17295     */
17296    EAPI Evas_Object       *elm_slider_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17297
17298    /**
17299     * Set the end object of the slider object.
17300     *
17301     * @param obj The slider object.
17302     * @param end The end object.
17303     *
17304     * On horizontal mode, end is placed at left, and on vertical mode,
17305     * placed at bottom.
17306     *
17307     * @note Once the icon object is set, a previously set one will be deleted.
17308     * If you want to keep that old content object, use the
17309     * elm_slider_end_unset() function.
17310     *
17311     * @warning If the object being set does not have minimum size hints set,
17312     * it won't get properly displayed.
17313     *
17314     * @ingroup Slider
17315     */
17316    EAPI void               elm_slider_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1);
17317
17318    /**
17319     * Unset an end object set on a given slider widget.
17320     *
17321     * @param obj The slider object.
17322     * @return The end object that was being used, if any was set, or
17323     * @c NULL, otherwise (and on errors).
17324     *
17325     * On horizontal mode, end is placed at left, and on vertical mode,
17326     * placed at bottom.
17327     *
17328     * This call will unparent and return the icon object which was set
17329     * for this widget, previously, on success.
17330     *
17331     * @see elm_slider_end_set() for more details.
17332     * @see elm_slider_end_get()
17333     *
17334     * @ingroup Slider
17335     */
17336    EAPI Evas_Object       *elm_slider_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
17337
17338    /**
17339     * Retrieve the end object set for a given slider widget.
17340     *
17341     * @param obj The slider object.
17342     * @return The end object's handle, if @p obj had one set, or @c NULL,
17343     * otherwise (and on errors).
17344     *
17345     * On horizontal mode, icon is placed at right, and on vertical mode,
17346     * placed at bottom.
17347     *
17348     * @see elm_slider_end_set() for more details.
17349     * @see elm_slider_end_unset()
17350     *
17351     * @ingroup Slider
17352     */
17353    EAPI Evas_Object       *elm_slider_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17354
17355    /**
17356     * Set the (exact) length of the bar region of a given slider widget.
17357     *
17358     * @param obj The slider object.
17359     * @param size The length of the slider's bar region.
17360     *
17361     * This sets the minimum width (when in horizontal mode) or height
17362     * (when in vertical mode) of the actual bar area of the slider
17363     * @p obj. This in turn affects the object's minimum size. Use
17364     * this when you're not setting other size hints expanding on the
17365     * given direction (like weight and alignment hints) and you would
17366     * like it to have a specific size.
17367     *
17368     * @note Icon, end, label, indicator and unit text around @p obj
17369     * will require their
17370     * own space, which will make @p obj to require more the @p size,
17371     * actually.
17372     *
17373     * @see elm_slider_span_size_get()
17374     *
17375     * @ingroup Slider
17376     */
17377    EAPI void               elm_slider_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
17378
17379    /**
17380     * Get the length set for the bar region of a given slider widget
17381     *
17382     * @param obj The slider object.
17383     * @return The length of the slider's bar region.
17384     *
17385     * If that size was not set previously, with
17386     * elm_slider_span_size_set(), this call will return @c 0.
17387     *
17388     * @ingroup Slider
17389     */
17390    EAPI Evas_Coord         elm_slider_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17391
17392    /**
17393     * Set the format string for the unit label.
17394     *
17395     * @param obj The slider object.
17396     * @param format The format string for the unit display.
17397     *
17398     * Unit label is displayed all the time, if set, after slider's bar.
17399     * In horizontal mode, at right and in vertical mode, at bottom.
17400     *
17401     * If @c NULL, unit label won't be visible. If not it sets the format
17402     * string for the label text. To the label text is provided a floating point
17403     * value, so the label text can display up to 1 floating point value.
17404     * Note that this is optional.
17405     *
17406     * Use a format string such as "%1.2f meters" for example, and it will
17407     * display values like: "3.14 meters" for a value equal to 3.14159.
17408     *
17409     * Default is unit label disabled.
17410     *
17411     * @see elm_slider_indicator_format_get()
17412     *
17413     * @ingroup Slider
17414     */
17415    EAPI void               elm_slider_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
17416
17417    /**
17418     * Get the unit label format of the slider.
17419     *
17420     * @param obj The slider object.
17421     * @return The unit label format string in UTF-8.
17422     *
17423     * Unit label is displayed all the time, if set, after slider's bar.
17424     * In horizontal mode, at right and in vertical mode, at bottom.
17425     *
17426     * @see elm_slider_unit_format_set() for more
17427     * information on how this works.
17428     *
17429     * @ingroup Slider
17430     */
17431    EAPI const char        *elm_slider_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17432
17433    /**
17434     * Set the format string for the indicator label.
17435     *
17436     * @param obj The slider object.
17437     * @param indicator The format string for the indicator display.
17438     *
17439     * The slider may display its value somewhere else then unit label,
17440     * for example, above the slider knob that is dragged around. This function
17441     * sets the format string used for this.
17442     *
17443     * If @c NULL, indicator label won't be visible. If not it sets the format
17444     * string for the label text. To the label text is provided a floating point
17445     * value, so the label text can display up to 1 floating point value.
17446     * Note that this is optional.
17447     *
17448     * Use a format string such as "%1.2f meters" for example, and it will
17449     * display values like: "3.14 meters" for a value equal to 3.14159.
17450     *
17451     * Default is indicator label disabled.
17452     *
17453     * @see elm_slider_indicator_format_get()
17454     *
17455     * @ingroup Slider
17456     */
17457    EAPI void               elm_slider_indicator_format_set(Evas_Object *obj, const char *indicator) EINA_ARG_NONNULL(1);
17458
17459    /**
17460     * Get the indicator label format of the slider.
17461     *
17462     * @param obj The slider object.
17463     * @return The indicator label format string in UTF-8.
17464     *
17465     * The slider may display its value somewhere else then unit label,
17466     * for example, above the slider knob that is dragged around. This function
17467     * gets the format string used for this.
17468     *
17469     * @see elm_slider_indicator_format_set() for more
17470     * information on how this works.
17471     *
17472     * @ingroup Slider
17473     */
17474    EAPI const char        *elm_slider_indicator_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17475
17476    /**
17477     * Set the format function pointer for the indicator label
17478     *
17479     * @param obj The slider object.
17480     * @param func The indicator format function.
17481     * @param free_func The freeing function for the format string.
17482     *
17483     * Set the callback function to format the indicator string.
17484     *
17485     * @see elm_slider_indicator_format_set() for more info on how this works.
17486     *
17487     * @ingroup Slider
17488     */
17489   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);
17490
17491   /**
17492    * Set the format function pointer for the units label
17493    *
17494    * @param obj The slider object.
17495    * @param func The units format function.
17496    * @param free_func The freeing function for the format string.
17497    *
17498    * Set the callback function to format the indicator string.
17499    *
17500    * @see elm_slider_units_format_set() for more info on how this works.
17501    *
17502    * @ingroup Slider
17503    */
17504   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);
17505
17506   /**
17507    * Set the orientation of a given slider widget.
17508    *
17509    * @param obj The slider object.
17510    * @param horizontal Use @c EINA_TRUE to make @p obj to be
17511    * @b horizontal, @c EINA_FALSE to make it @b vertical.
17512    *
17513    * Use this function to change how your slider is to be
17514    * disposed: vertically or horizontally.
17515    *
17516    * By default it's displayed horizontally.
17517    *
17518    * @see elm_slider_horizontal_get()
17519    *
17520    * @ingroup Slider
17521    */
17522    EAPI void               elm_slider_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
17523
17524    /**
17525     * Retrieve the orientation of a given slider widget
17526     *
17527     * @param obj The slider object.
17528     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
17529     * @c EINA_FALSE if it's @b vertical (and on errors).
17530     *
17531     * @see elm_slider_horizontal_set() for more details.
17532     *
17533     * @ingroup Slider
17534     */
17535    EAPI Eina_Bool          elm_slider_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17536
17537    /**
17538     * Set the minimum and maximum values for the slider.
17539     *
17540     * @param obj The slider object.
17541     * @param min The minimum value.
17542     * @param max The maximum value.
17543     *
17544     * Define the allowed range of values to be selected by the user.
17545     *
17546     * If actual value is less than @p min, it will be updated to @p min. If it
17547     * is bigger then @p max, will be updated to @p max. Actual value can be
17548     * get with elm_slider_value_get().
17549     *
17550     * By default, min is equal to 0.0, and max is equal to 1.0.
17551     *
17552     * @warning Maximum must be greater than minimum, otherwise behavior
17553     * is undefined.
17554     *
17555     * @see elm_slider_min_max_get()
17556     *
17557     * @ingroup Slider
17558     */
17559    EAPI void               elm_slider_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
17560
17561    /**
17562     * Get the minimum and maximum values of the slider.
17563     *
17564     * @param obj The slider object.
17565     * @param min Pointer where to store the minimum value.
17566     * @param max Pointer where to store the maximum value.
17567     *
17568     * @note If only one value is needed, the other pointer can be passed
17569     * as @c NULL.
17570     *
17571     * @see elm_slider_min_max_set() for details.
17572     *
17573     * @ingroup Slider
17574     */
17575    EAPI void               elm_slider_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
17576
17577    /**
17578     * Set the value the slider displays.
17579     *
17580     * @param obj The slider object.
17581     * @param val The value to be displayed.
17582     *
17583     * Value will be presented on the unit label following format specified with
17584     * elm_slider_unit_format_set() and on indicator with
17585     * elm_slider_indicator_format_set().
17586     *
17587     * @warning The value must to be between min and max values. This values
17588     * are set by elm_slider_min_max_set().
17589     *
17590     * @see elm_slider_value_get()
17591     * @see elm_slider_unit_format_set()
17592     * @see elm_slider_indicator_format_set()
17593     * @see elm_slider_min_max_set()
17594     *
17595     * @ingroup Slider
17596     */
17597    EAPI void               elm_slider_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
17598
17599    /**
17600     * Get the value displayed by the spinner.
17601     *
17602     * @param obj The spinner object.
17603     * @return The value displayed.
17604     *
17605     * @see elm_spinner_value_set() for details.
17606     *
17607     * @ingroup Slider
17608     */
17609    EAPI double             elm_slider_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17610
17611    /**
17612     * Invert a given slider widget's displaying values order
17613     *
17614     * @param obj The slider object.
17615     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
17616     * @c EINA_FALSE to bring it back to default, non-inverted values.
17617     *
17618     * A slider may be @b inverted, in which state it gets its
17619     * values inverted, with high vales being on the left or top and
17620     * low values on the right or bottom, as opposed to normally have
17621     * the low values on the former and high values on the latter,
17622     * respectively, for horizontal and vertical modes.
17623     *
17624     * @see elm_slider_inverted_get()
17625     *
17626     * @ingroup Slider
17627     */
17628    EAPI void               elm_slider_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
17629
17630    /**
17631     * Get whether a given slider widget's displaying values are
17632     * inverted or not.
17633     *
17634     * @param obj The slider object.
17635     * @return @c EINA_TRUE, if @p obj has inverted values,
17636     * @c EINA_FALSE otherwise (and on errors).
17637     *
17638     * @see elm_slider_inverted_set() for more details.
17639     *
17640     * @ingroup Slider
17641     */
17642    EAPI Eina_Bool          elm_slider_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17643
17644    /**
17645     * Set whether to enlarge slider indicator (augmented knob) or not.
17646     *
17647     * @param obj The slider object.
17648     * @param show @c EINA_TRUE will make it enlarge, @c EINA_FALSE will
17649     * let the knob always at default size.
17650     *
17651     * By default, indicator will be bigger while dragged by the user.
17652     *
17653     * @warning It won't display values set with
17654     * elm_slider_indicator_format_set() if you disable indicator.
17655     *
17656     * @ingroup Slider
17657     */
17658    EAPI void               elm_slider_indicator_show_set(Evas_Object *obj, Eina_Bool show) EINA_ARG_NONNULL(1);
17659
17660    /**
17661     * Get whether a given slider widget's enlarging indicator or not.
17662     *
17663     * @param obj The slider object.
17664     * @return @c EINA_TRUE, if @p obj is enlarging indicator, or
17665     * @c EINA_FALSE otherwise (and on errors).
17666     *
17667     * @see elm_slider_indicator_show_set() for details.
17668     *
17669     * @ingroup Slider
17670     */
17671    EAPI Eina_Bool          elm_slider_indicator_show_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17672
17673    /**
17674     * @}
17675     */
17676
17677    /**
17678     * @addtogroup Actionslider Actionslider
17679     *
17680     * @image html img/widget/actionslider/preview-00.png
17681     * @image latex img/widget/actionslider/preview-00.eps
17682     *
17683     * An actionslider is a switcher for 2 or 3 labels with customizable magnet
17684     * properties. The user drags and releases the indicator, to choose a label.
17685     *
17686     * Labels occupy the following positions.
17687     * a. Left
17688     * b. Right
17689     * c. Center
17690     *
17691     * Positions can be enabled or disabled.
17692     *
17693     * Magnets can be set on the above positions.
17694     *
17695     * When the indicator is released, it will move to its nearest "enabled and magnetized" position.
17696     *
17697     * @note By default all positions are set as enabled.
17698     *
17699     * Signals that you can add callbacks for are:
17700     *
17701     * "selected" - when user selects an enabled position (the label is passed
17702     *              as event info)".
17703     * @n
17704     * "pos_changed" - when the indicator reaches any of the positions("left",
17705     *                 "right" or "center").
17706     *
17707     * See an example of actionslider usage @ref actionslider_example_page "here"
17708     * @{
17709     */
17710
17711    typedef enum _Elm_Actionslider_Indicator_Pos
17712      {
17713         ELM_ACTIONSLIDER_INDICATOR_NONE,
17714         ELM_ACTIONSLIDER_INDICATOR_LEFT,
17715         ELM_ACTIONSLIDER_INDICATOR_RIGHT,
17716         ELM_ACTIONSLIDER_INDICATOR_CENTER
17717      } Elm_Actionslider_Indicator_Pos;
17718
17719    typedef enum _Elm_Actionslider_Magnet_Pos
17720      {
17721         ELM_ACTIONSLIDER_MAGNET_NONE = 0,
17722         ELM_ACTIONSLIDER_MAGNET_LEFT = 1 << 0,
17723         ELM_ACTIONSLIDER_MAGNET_CENTER = 1 << 1,
17724         ELM_ACTIONSLIDER_MAGNET_RIGHT= 1 << 2,
17725         ELM_ACTIONSLIDER_MAGNET_ALL = (1 << 3) -1,
17726         ELM_ACTIONSLIDER_MAGNET_BOTH = (1 << 3)
17727      } Elm_Actionslider_Magnet_Pos;
17728
17729    typedef enum _Elm_Actionslider_Label_Pos
17730      {
17731         ELM_ACTIONSLIDER_LABEL_LEFT,
17732         ELM_ACTIONSLIDER_LABEL_RIGHT,
17733         ELM_ACTIONSLIDER_LABEL_CENTER,
17734         ELM_ACTIONSLIDER_LABEL_BUTTON
17735      } Elm_Actionslider_Label_Pos;
17736
17737    /* smart callbacks called:
17738     * "indicator,position" - when a button reaches to the special position like "left", "right" and "center".
17739     */
17740
17741    /**
17742     * Add a new actionslider to the parent.
17743     *
17744     * @param parent The parent object
17745     * @return The new actionslider object or NULL if it cannot be created
17746     */
17747    EAPI Evas_Object          *elm_actionslider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
17748
17749    /**
17750    * Set actionslider label.
17751    *
17752    * @param[in] obj The actionslider object
17753    * @param[in] pos The position of the label.
17754    * (ELM_ACTIONSLIDER_LABEL_LEFT, ELM_ACTIONSLIDER_LABEL_RIGHT)
17755    * @param label The label which is going to be set.
17756    */
17757    EAPI void               elm_actionslider_label_set(Evas_Object *obj, Elm_Actionslider_Label_Pos pos, const char *label) EINA_ARG_NONNULL(1);
17758    /**
17759     * Get actionslider labels.
17760     *
17761     * @param obj The actionslider object
17762     * @param left_label A char** to place the left_label of @p obj into.
17763     * @param center_label A char** to place the center_label of @p obj into.
17764     * @param right_label A char** to place the right_label of @p obj into.
17765     */
17766    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);
17767    /**
17768     * Get actionslider selected label.
17769     *
17770     * @param obj The actionslider object
17771     * @return The selected label
17772     */
17773    EAPI const char           *elm_actionslider_selected_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17774    /**
17775     * Set actionslider indicator position.
17776     *
17777     * @param obj The actionslider object.
17778     * @param pos The position of the indicator.
17779     */
17780    EAPI void                elm_actionslider_indicator_pos_set(Evas_Object *obj, Elm_Actionslider_Indicator_Pos pos) EINA_ARG_NONNULL(1);
17781    /**
17782     * Get actionslider indicator position.
17783     *
17784     * @param obj The actionslider object.
17785     * @return The position of the indicator.
17786     */
17787    EAPI Elm_Actionslider_Indicator_Pos  elm_actionslider_indicator_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17788    /**
17789     * Set actionslider magnet position. To make multiple positions magnets @c or
17790     * them together(e.g.: ELM_ACTIONSLIDER_MAGNET_LEFT | ELM_ACTIONSLIDER_MAGNET_RIGHT)
17791     *
17792     * @param obj The actionslider object.
17793     * @param pos Bit mask indicating the magnet positions.
17794     */
17795    EAPI void                elm_actionslider_magnet_pos_set(Evas_Object *obj, Elm_Actionslider_Magnet_Pos pos) EINA_ARG_NONNULL(1);
17796    /**
17797     * Get actionslider magnet position.
17798     *
17799     * @param obj The actionslider object.
17800     * @return The positions with magnet property.
17801     */
17802    EAPI Elm_Actionslider_Magnet_Pos  elm_actionslider_magnet_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17803    /**
17804     * Set actionslider enabled position. To set multiple positions as enabled @c or
17805     * them together(e.g.: ELM_ACTIONSLIDER_MAGNET_LEFT | ELM_ACTIONSLIDER_MAGNET_RIGHT).
17806     *
17807     * @note All the positions are enabled by default.
17808     *
17809     * @param obj The actionslider object.
17810     * @param pos Bit mask indicating the enabled positions.
17811     */
17812    EAPI void                  elm_actionslider_enabled_pos_set(Evas_Object *obj, Elm_Actionslider_Magnet_Pos pos) EINA_ARG_NONNULL(1);
17813    /**
17814     * Get actionslider enabled position.
17815     *
17816     * @param obj The actionslider object.
17817     * @return The enabled positions.
17818     */
17819    EAPI Elm_Actionslider_Magnet_Pos  elm_actionslider_enabled_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17820    /**
17821     * Set the label used on the indicator.
17822     *
17823     * @param obj The actionslider object
17824     * @param label The label to be set on the indicator.
17825     * @deprecated use elm_object_text_set() instead.
17826     */
17827    EINA_DEPRECATED EAPI void                  elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
17828    /**
17829     * Get the label used on the indicator object.
17830     *
17831     * @param obj The actionslider object
17832     * @return The indicator label
17833     * @deprecated use elm_object_text_get() instead.
17834     */
17835    EINA_DEPRECATED EAPI const char           *elm_actionslider_indicator_label_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
17836
17837    /**
17838    * Hold actionslider object movement.
17839    *
17840    * @param[in] obj The actionslider object
17841    * @param[in] flag Actionslider hold/release
17842    * (EINA_TURE = hold/EIN_FALSE = release)
17843    *
17844    * @ingroup Actionslider
17845    */
17846    EAPI void                             elm_actionslider_hold(Evas_Object *obj, Eina_Bool flag) EINA_ARG_NONNULL(1);
17847
17848
17849    /**
17850     *
17851     */
17852
17853    /**
17854     * @defgroup Genlist Genlist
17855     *
17856     * @image html img/widget/genlist/preview-00.png
17857     * @image latex img/widget/genlist/preview-00.eps
17858     * @image html img/genlist.png
17859     * @image latex img/genlist.eps
17860     *
17861     * This widget aims to have more expansive list than the simple list in
17862     * Elementary that could have more flexible items and allow many more entries
17863     * while still being fast and low on memory usage. At the same time it was
17864     * also made to be able to do tree structures. But the price to pay is more
17865     * complexity when it comes to usage. If all you want is a simple list with
17866     * icons and a single label, use the normal @ref List object.
17867     *
17868     * Genlist has a fairly large API, mostly because it's relatively complex,
17869     * trying to be both expansive, powerful and efficient. First we will begin
17870     * an overview on the theory behind genlist.
17871     *
17872     * @section Genlist_Item_Class Genlist item classes - creating items
17873     *
17874     * In order to have the ability to add and delete items on the fly, genlist
17875     * implements a class (callback) system where the application provides a
17876     * structure with information about that type of item (genlist may contain
17877     * multiple different items with different classes, states and styles).
17878     * Genlist will call the functions in this struct (methods) when an item is
17879     * "realized" (i.e., created dynamically, while the user is scrolling the
17880     * grid). All objects will simply be deleted when no longer needed with
17881     * evas_object_del(). The #Elm_Genlist_Item_Class structure contains the
17882     * following members:
17883     * - @c item_style - This is a constant string and simply defines the name
17884     *   of the item style. It @b must be specified and the default should be @c
17885     *   "default".
17886     *
17887     * - @c func - A struct with pointers to functions that will be called when
17888     *   an item is going to be actually created. All of them receive a @c data
17889     *   parameter that will point to the same data passed to
17890     *   elm_genlist_item_append() and related item creation functions, and a @c
17891     *   obj parameter that points to the genlist object itself.
17892     *
17893     * The function pointers inside @c func are @c label_get, @c icon_get, @c
17894     * state_get and @c del. The 3 first functions also receive a @c part
17895     * parameter described below. A brief description of these functions follows:
17896     *
17897     * - @c label_get - The @c part parameter is the name string of one of the
17898     *   existing text parts in the Edje group implementing the item's theme.
17899     *   This function @b must return a strdup'()ed string, as the caller will
17900     *   free() it when done. See #Elm_Genlist_Item_Label_Get_Cb.
17901     * - @c content_get - The @c part parameter is the name string of one of the
17902     *   existing (content) swallow parts in the Edje group implementing the item's
17903     *   theme. It must return @c NULL, when no content is desired, or a valid
17904     *   object handle, otherwise.  The object will be deleted by the genlist on
17905     *   its deletion or when the item is "unrealized".  See
17906     *   #Elm_Genlist_Item_Icon_Get_Cb.
17907     * - @c func.state_get - The @c part parameter is the name string of one of
17908     *   the state parts in the Edje group implementing the item's theme. Return
17909     *   @c EINA_FALSE for false/off or @c EINA_TRUE for true/on. Genlists will
17910     *   emit a signal to its theming Edje object with @c "elm,state,XXX,active"
17911     *   and @c "elm" as "emission" and "source" arguments, respectively, when
17912     *   the state is true (the default is false), where @c XXX is the name of
17913     *   the (state) part.  See #Elm_Genlist_Item_State_Get_Cb.
17914     * - @c func.del - This is intended for use when genlist items are deleted,
17915     *   so any data attached to the item (e.g. its data parameter on creation)
17916     *   can be deleted. See #Elm_Genlist_Item_Del_Cb.
17917     *
17918     * available item styles:
17919     * - default
17920     * - default_style - The text part is a textblock
17921     *
17922     * @image html img/widget/genlist/preview-04.png
17923     * @image latex img/widget/genlist/preview-04.eps
17924     *
17925     * - double_label
17926     *
17927     * @image html img/widget/genlist/preview-01.png
17928     * @image latex img/widget/genlist/preview-01.eps
17929     *
17930     * - icon_top_text_bottom
17931     *
17932     * @image html img/widget/genlist/preview-02.png
17933     * @image latex img/widget/genlist/preview-02.eps
17934     *
17935     * - group_index
17936     *
17937     * @image html img/widget/genlist/preview-03.png
17938     * @image latex img/widget/genlist/preview-03.eps
17939     *
17940     * @section Genlist_Items Structure of items
17941     *
17942     * An item in a genlist can have 0 or more text labels (they can be regular
17943     * text or textblock Evas objects - that's up to the style to determine), 0
17944     * or more contents (which are simply objects swallowed into the genlist item's
17945     * theming Edje object) and 0 or more <b>boolean states</b>, which have the
17946     * behavior left to the user to define. The Edje part names for each of
17947     * these properties will be looked up, in the theme file for the genlist,
17948     * under the Edje (string) data items named @c "labels", @c "contents" and @c
17949     * "states", respectively. For each of those properties, if more than one
17950     * part is provided, they must have names listed separated by spaces in the
17951     * data fields. For the default genlist item theme, we have @b one label
17952     * part (@c "elm.text"), @b two content parts (@c "elm.swalllow.icon" and @c
17953     * "elm.swallow.end") and @b no state parts.
17954     *
17955     * A genlist item may be at one of several styles. Elementary provides one
17956     * by default - "default", but this can be extended by system or application
17957     * custom themes/overlays/extensions (see @ref Theme "themes" for more
17958     * details).
17959     *
17960     * @section Genlist_Manipulation Editing and Navigating
17961     *
17962     * Items can be added by several calls. All of them return a @ref
17963     * Elm_Genlist_Item handle that is an internal member inside the genlist.
17964     * They all take a data parameter that is meant to be used for a handle to
17965     * the applications internal data (eg the struct with the original item
17966     * data). The parent parameter is the parent genlist item this belongs to if
17967     * it is a tree or an indexed group, and NULL if there is no parent. The
17968     * flags can be a bitmask of #ELM_GENLIST_ITEM_NONE,
17969     * #ELM_GENLIST_ITEM_SUBITEMS and #ELM_GENLIST_ITEM_GROUP. If
17970     * #ELM_GENLIST_ITEM_SUBITEMS is set then this item is displayed as an item
17971     * that is able to expand and have child items.  If ELM_GENLIST_ITEM_GROUP
17972     * is set then this item is group index item that is displayed at the top
17973     * until the next group comes. The func parameter is a convenience callback
17974     * that is called when the item is selected and the data parameter will be
17975     * the func_data parameter, obj be the genlist object and event_info will be
17976     * the genlist item.
17977     *
17978     * elm_genlist_item_append() adds an item to the end of the list, or if
17979     * there is a parent, to the end of all the child items of the parent.
17980     * elm_genlist_item_prepend() is the same but adds to the beginning of
17981     * the list or children list. elm_genlist_item_insert_before() inserts at
17982     * item before another item and elm_genlist_item_insert_after() inserts after
17983     * the indicated item.
17984     *
17985     * The application can clear the list with elm_genlist_clear() which deletes
17986     * all the items in the list and elm_genlist_item_del() will delete a specific
17987     * item. elm_genlist_item_subitems_clear() will clear all items that are
17988     * children of the indicated parent item.
17989     *
17990     * To help inspect list items you can jump to the item at the top of the list
17991     * with elm_genlist_first_item_get() which will return the item pointer, and
17992     * similarly elm_genlist_last_item_get() gets the item at the end of the list.
17993     * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
17994     * and previous items respectively relative to the indicated item. Using
17995     * these calls you can walk the entire item list/tree. Note that as a tree
17996     * the items are flattened in the list, so elm_genlist_item_parent_get() will
17997     * let you know which item is the parent (and thus know how to skip them if
17998     * wanted).
17999     *
18000     * @section Genlist_Muti_Selection Multi-selection
18001     *
18002     * If the application wants multiple items to be able to be selected,
18003     * elm_genlist_multi_select_set() can enable this. If the list is
18004     * single-selection only (the default), then elm_genlist_selected_item_get()
18005     * will return the selected item, if any, or NULL I none is selected. If the
18006     * list is multi-select then elm_genlist_selected_items_get() will return a
18007     * list (that is only valid as long as no items are modified (added, deleted,
18008     * selected or unselected)).
18009     *
18010     * @section Genlist_Usage_Hints Usage hints
18011     *
18012     * There are also convenience functions. elm_genlist_item_genlist_get() will
18013     * return the genlist object the item belongs to. elm_genlist_item_show()
18014     * will make the scroller scroll to show that specific item so its visible.
18015     * elm_genlist_item_data_get() returns the data pointer set by the item
18016     * creation functions.
18017     *
18018     * If an item changes (state of boolean changes, label or contents change),
18019     * then use elm_genlist_item_update() to have genlist update the item with
18020     * the new state. Genlist will re-realize the item thus call the functions
18021     * in the _Elm_Genlist_Item_Class for that item.
18022     *
18023     * To programmatically (un)select an item use elm_genlist_item_selected_set().
18024     * To get its selected state use elm_genlist_item_selected_get(). Similarly
18025     * to expand/contract an item and get its expanded state, use
18026     * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
18027     * again to make an item disabled (unable to be selected and appear
18028     * differently) use elm_genlist_item_disabled_set() to set this and
18029     * elm_genlist_item_disabled_get() to get the disabled state.
18030     *
18031     * In general to indicate how the genlist should expand items horizontally to
18032     * fill the list area, use elm_genlist_horizontal_set(). Valid modes are
18033     * ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is ELM_LIST_SCROLL. This
18034     * mode means that if items are too wide to fit, the scroller will scroll
18035     * horizontally. Otherwise items are expanded to fill the width of the
18036     * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
18037     * to the viewport width and limited to that size. This can be combined with
18038     * a different style that uses edjes' ellipsis feature (cutting text off like
18039     * this: "tex...").
18040     *
18041     * Items will only call their selection func and callback when first becoming
18042     * selected. Any further clicks will do nothing, unless you enable always
18043     * select with elm_genlist_always_select_mode_set(). This means even if
18044     * selected, every click will make the selected callbacks be called.
18045     * elm_genlist_no_select_mode_set() will turn off the ability to select
18046     * items entirely and they will neither appear selected nor call selected
18047     * callback functions.
18048     *
18049     * Remember that you can create new styles and add your own theme augmentation
18050     * per application with elm_theme_extension_add(). If you absolutely must
18051     * have a specific style that overrides any theme the user or system sets up
18052     * you can use elm_theme_overlay_add() to add such a file.
18053     *
18054     * @section Genlist_Implementation Implementation
18055     *
18056     * Evas tracks every object you create. Every time it processes an event
18057     * (mouse move, down, up etc.) it needs to walk through objects and find out
18058     * what event that affects. Even worse every time it renders display updates,
18059     * in order to just calculate what to re-draw, it needs to walk through many
18060     * many many objects. Thus, the more objects you keep active, the more
18061     * overhead Evas has in just doing its work. It is advisable to keep your
18062     * active objects to the minimum working set you need. Also remember that
18063     * object creation and deletion carries an overhead, so there is a
18064     * middle-ground, which is not easily determined. But don't keep massive lists
18065     * of objects you can't see or use. Genlist does this with list objects. It
18066     * creates and destroys them dynamically as you scroll around. It groups them
18067     * into blocks so it can determine the visibility etc. of a whole block at
18068     * once as opposed to having to walk the whole list. This 2-level list allows
18069     * for very large numbers of items to be in the list (tests have used up to
18070     * 2,000,000 items). Also genlist employs a queue for adding items. As items
18071     * may be different sizes, every item added needs to be calculated as to its
18072     * size and thus this presents a lot of overhead on populating the list, this
18073     * genlist employs a queue. Any item added is queued and spooled off over
18074     * time, actually appearing some time later, so if your list has many members
18075     * you may find it takes a while for them to all appear, with your process
18076     * consuming a lot of CPU while it is busy spooling.
18077     *
18078     * Genlist also implements a tree structure, but it does so with callbacks to
18079     * the application, with the application filling in tree structures when
18080     * requested (allowing for efficient building of a very deep tree that could
18081     * even be used for file-management). See the above smart signal callbacks for
18082     * details.
18083     *
18084     * @section Genlist_Smart_Events Genlist smart events
18085     *
18086     * Signals that you can add callbacks for are:
18087     * - @c "activated" - The user has double-clicked or pressed
18088     *   (enter|return|spacebar) on an item. The @c event_info parameter is the
18089     *   item that was activated.
18090     * - @c "clicked,double" - The user has double-clicked an item.  The @c
18091     *   event_info parameter is the item that was double-clicked.
18092     * - @c "selected" - This is called when a user has made an item selected.
18093     *   The event_info parameter is the genlist item that was selected.
18094     * - @c "unselected" - This is called when a user has made an item
18095     *   unselected. The event_info parameter is the genlist item that was
18096     *   unselected.
18097     * - @c "expanded" - This is called when elm_genlist_item_expanded_set() is
18098     *   called and the item is now meant to be expanded. The event_info
18099     *   parameter is the genlist item that was indicated to expand.  It is the
18100     *   job of this callback to then fill in the child items.
18101     * - @c "contracted" - This is called when elm_genlist_item_expanded_set() is
18102     *   called and the item is now meant to be contracted. The event_info
18103     *   parameter is the genlist item that was indicated to contract. It is the
18104     *   job of this callback to then delete the child items.
18105     * - @c "expand,request" - This is called when a user has indicated they want
18106     *   to expand a tree branch item. The callback should decide if the item can
18107     *   expand (has any children) and then call elm_genlist_item_expanded_set()
18108     *   appropriately to set the state. The event_info parameter is the genlist
18109     *   item that was indicated to expand.
18110     * - @c "contract,request" - This is called when a user has indicated they
18111     *   want to contract a tree branch item. The callback should decide if the
18112     *   item can contract (has any children) and then call
18113     *   elm_genlist_item_expanded_set() appropriately to set the state. The
18114     *   event_info parameter is the genlist item that was indicated to contract.
18115     * - @c "realized" - This is called when the item in the list is created as a
18116     *   real evas object. event_info parameter is the genlist item that was
18117     *   created. The object may be deleted at any time, so it is up to the
18118     *   caller to not use the object pointer from elm_genlist_item_object_get()
18119     *   in a way where it may point to freed objects.
18120     * - @c "unrealized" - This is called just before an item is unrealized.
18121     *   After this call content objects provided will be deleted and the item
18122     *   object itself delete or be put into a floating cache.
18123     * - @c "drag,start,up" - This is called when the item in the list has been
18124     *   dragged (not scrolled) up.
18125     * - @c "drag,start,down" - This is called when the item in the list has been
18126     *   dragged (not scrolled) down.
18127     * - @c "drag,start,left" - This is called when the item in the list has been
18128     *   dragged (not scrolled) left.
18129     * - @c "drag,start,right" - This is called when the item in the list has
18130     *   been dragged (not scrolled) right.
18131     * - @c "drag,stop" - This is called when the item in the list has stopped
18132     *   being dragged.
18133     * - @c "drag" - This is called when the item in the list is being dragged.
18134     * - @c "longpressed" - This is called when the item is pressed for a certain
18135     *   amount of time. By default it's 1 second.
18136     * - @c "scroll,anim,start" - This is called when scrolling animation has
18137     *   started.
18138     * - @c "scroll,anim,stop" - This is called when scrolling animation has
18139     *   stopped.
18140     * - @c "scroll,drag,start" - This is called when dragging the content has
18141     *   started.
18142     * - @c "scroll,drag,stop" - This is called when dragging the content has
18143     *   stopped.
18144     * - @c "edge,top" - This is called when the genlist is scrolled until
18145     *   the top edge.
18146     * - @c "edge,bottom" - This is called when the genlist is scrolled
18147     *   until the bottom edge.
18148     * - @c "edge,left" - This is called when the genlist is scrolled
18149     *   until the left edge.
18150     * - @c "edge,right" - This is called when the genlist is scrolled
18151     *   until the right edge.
18152     * - @c "multi,swipe,left" - This is called when the genlist is multi-touch
18153     *   swiped left.
18154     * - @c "multi,swipe,right" - This is called when the genlist is multi-touch
18155     *   swiped right.
18156     * - @c "multi,swipe,up" - This is called when the genlist is multi-touch
18157     *   swiped up.
18158     * - @c "multi,swipe,down" - This is called when the genlist is multi-touch
18159     *   swiped down.
18160     * - @c "multi,pinch,out" - This is called when the genlist is multi-touch
18161     *   pinched out.  "- @c multi,pinch,in" - This is called when the genlist is
18162     *   multi-touch pinched in.
18163     * - @c "swipe" - This is called when the genlist is swiped.
18164     * - @c "moved" - This is called when a genlist item is moved.
18165     * - @c "language,changed" - This is called when the program's language is
18166     *   changed.
18167     *
18168     * @section Genlist_Examples Examples
18169     *
18170     * Here is a list of examples that use the genlist, trying to show some of
18171     * its capabilities:
18172     * - @ref genlist_example_01
18173     * - @ref genlist_example_02
18174     * - @ref genlist_example_03
18175     * - @ref genlist_example_04
18176     * - @ref genlist_example_05
18177     */
18178
18179    /**
18180     * @addtogroup Genlist
18181     * @{
18182     */
18183
18184    /**
18185     * @enum _Elm_Genlist_Item_Flags
18186     * @typedef Elm_Genlist_Item_Flags
18187     *
18188     * Defines if the item is of any special type (has subitems or it's the
18189     * index of a group), or is just a simple item.
18190     *
18191     * @ingroup Genlist
18192     */
18193    typedef enum _Elm_Genlist_Item_Flags
18194      {
18195         ELM_GENLIST_ITEM_NONE = 0, /**< simple item */
18196         ELM_GENLIST_ITEM_SUBITEMS = (1 << 0), /**< may expand and have child items */
18197         ELM_GENLIST_ITEM_GROUP = (1 << 1) /**< index of a group of items */
18198      } Elm_Genlist_Item_Flags;
18199    typedef enum _Elm_Genlist_Item_Field_Flags
18200      {
18201         ELM_GENLIST_ITEM_FIELD_ALL = 0,
18202         ELM_GENLIST_ITEM_FIELD_LABEL = (1 << 0),
18203         ELM_GENLIST_ITEM_FIELD_ICON = (1 << 1),
18204         ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
18205      } Elm_Genlist_Item_Field_Flags;
18206    typedef struct _Elm_Genlist_Item_Class Elm_Genlist_Item_Class;  /**< Genlist item class definition structs */
18207    typedef struct _Elm_Genlist_Item       Elm_Genlist_Item; /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
18208    typedef struct _Elm_Genlist_Item_Class_Func Elm_Genlist_Item_Class_Func;
18209    typedef char        *(*GenlistItemLabelGetFunc) (void *data, Evas_Object *obj, const char *part);
18210    typedef Evas_Object *(*GenlistItemIconGetFunc)  (void *data, Evas_Object *obj, const char *part);
18211    typedef Eina_Bool    (*GenlistItemStateGetFunc) (void *data, Evas_Object *obj, const char *part);
18212    typedef void         (*GenlistItemDelFunc)      (void *data, Evas_Object *obj);
18213    typedef void         (*GenlistItemMovedFunc)    ( Evas_Object *genlist, Elm_Genlist_Item *item, Elm_Genlist_Item *rel_item, Eina_Bool move_after);
18214
18215    /**
18216     * @struct _Elm_Genlist_Item_Class
18217     *
18218     * Genlist item class definition structs.
18219     *
18220     * This struct contains the style and fetching functions that will define the
18221     * contents of each item.
18222     *
18223     * @see @ref Genlist_Item_Class
18224     */
18225    struct _Elm_Genlist_Item_Class
18226      {
18227         const char                *item_style;
18228         struct {
18229           GenlistItemLabelGetFunc  label_get;
18230           GenlistItemIconGetFunc   icon_get;
18231           GenlistItemStateGetFunc  state_get;
18232           GenlistItemDelFunc       del;
18233           GenlistItemMovedFunc     moved;
18234         } func;
18235         const char *edit_item_style;
18236         const char                *mode_item_style;
18237      };
18238    #define Elm_Genlist_Item_Class_Func Elm_Gen_Item_Class_Func
18239    /**
18240     * Add a new genlist widget to the given parent Elementary
18241     * (container) object
18242     *
18243     * @param parent The parent object
18244     * @return a new genlist widget handle or @c NULL, on errors
18245     *
18246     * This function inserts a new genlist widget on the canvas.
18247     *
18248     * @see elm_genlist_item_append()
18249     * @see elm_genlist_item_del()
18250     * @see elm_genlist_clear()
18251     *
18252     * @ingroup Genlist
18253     */
18254    EAPI Evas_Object      *elm_genlist_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18255    /**
18256     * Remove all items from a given genlist widget.
18257     *
18258     * @param obj The genlist object
18259     *
18260     * This removes (and deletes) all items in @p obj, leaving it empty.
18261     *
18262     * @see elm_genlist_item_del(), to remove just one item.
18263     *
18264     * @ingroup Genlist
18265     */
18266    EAPI void elm_genlist_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
18267    /**
18268     * Enable or disable multi-selection in the genlist
18269     *
18270     * @param obj The genlist object
18271     * @param multi Multi-select enable/disable. Default is disabled.
18272     *
18273     * This enables (@c EINA_TRUE) or disables (@c EINA_FALSE) multi-selection in
18274     * the list. This allows more than 1 item to be selected. To retrieve the list
18275     * of selected items, use elm_genlist_selected_items_get().
18276     *
18277     * @see elm_genlist_selected_items_get()
18278     * @see elm_genlist_multi_select_get()
18279     *
18280     * @ingroup Genlist
18281     */
18282    EAPI void              elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
18283    /**
18284     * Gets if multi-selection in genlist is enabled or disabled.
18285     *
18286     * @param obj The genlist object
18287     * @return Multi-select enabled/disabled
18288     * (@c EINA_TRUE = enabled/@c EINA_FALSE = disabled). Default is @c EINA_FALSE.
18289     *
18290     * @see elm_genlist_multi_select_set()
18291     *
18292     * @ingroup Genlist
18293     */
18294    EAPI Eina_Bool         elm_genlist_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18295    /**
18296     * This sets the horizontal stretching mode.
18297     *
18298     * @param obj The genlist object
18299     * @param mode The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT).
18300     *
18301     * This sets the mode used for sizing items horizontally. Valid modes
18302     * are #ELM_LIST_LIMIT and #ELM_LIST_SCROLL. The default is
18303     * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
18304     * the scroller will scroll horizontally. Otherwise items are expanded
18305     * to fill the width of the viewport of the scroller. If it is
18306     * ELM_LIST_LIMIT, items will be expanded to the viewport width and
18307     * limited to that size.
18308     *
18309     * @see elm_genlist_horizontal_get()
18310     *
18311     * @ingroup Genlist
18312     */
18313    EAPI void              elm_genlist_horizontal_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
18314    /**
18315     * Gets the horizontal stretching mode.
18316     *
18317     * @param obj The genlist object
18318     * @return The mode to use
18319     * (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)
18320     *
18321     * @see elm_genlist_horizontal_set()
18322     *
18323     * @ingroup Genlist
18324     */
18325    EAPI Elm_List_Mode     elm_genlist_horizontal_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18326    /**
18327     * Set the always select mode.
18328     *
18329     * @param obj The genlist object
18330     * @param always_select The always select mode (@c EINA_TRUE = on, @c
18331     * EINA_FALSE = off). Default is @c EINA_FALSE.
18332     *
18333     * Items will only call their selection func and callback when first
18334     * becoming selected. Any further clicks will do nothing, unless you
18335     * enable always select with elm_genlist_always_select_mode_set().
18336     * This means that, even if selected, every click will make the selected
18337     * callbacks be called.
18338     *
18339     * @see elm_genlist_always_select_mode_get()
18340     *
18341     * @ingroup Genlist
18342     */
18343    EAPI void              elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
18344    /**
18345     * Get the always select mode.
18346     *
18347     * @param obj The genlist object
18348     * @return The always select mode
18349     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18350     *
18351     * @see elm_genlist_always_select_mode_set()
18352     *
18353     * @ingroup Genlist
18354     */
18355    EAPI Eina_Bool         elm_genlist_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18356    /**
18357     * Enable/disable the no select mode.
18358     *
18359     * @param obj The genlist object
18360     * @param no_select The no select mode
18361     * (EINA_TRUE = on, EINA_FALSE = off)
18362     *
18363     * This will turn off the ability to select items entirely and they
18364     * will neither appear selected nor call selected callback functions.
18365     *
18366     * @see elm_genlist_no_select_mode_get()
18367     *
18368     * @ingroup Genlist
18369     */
18370    EAPI void              elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
18371    /**
18372     * Gets whether the no select mode is enabled.
18373     *
18374     * @param obj The genlist object
18375     * @return The no select mode
18376     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18377     *
18378     * @see elm_genlist_no_select_mode_set()
18379     *
18380     * @ingroup Genlist
18381     */
18382    EAPI Eina_Bool         elm_genlist_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18383    /**
18384     * Enable/disable compress mode.
18385     *
18386     * @param obj The genlist object
18387     * @param compress The compress mode
18388     * (@c EINA_TRUE = on, @c EINA_FALSE = off). Default is @c EINA_FALSE.
18389     *
18390     * This will enable the compress mode where items are "compressed"
18391     * horizontally to fit the genlist scrollable viewport width. This is
18392     * special for genlist.  Do not rely on
18393     * elm_genlist_horizontal_set() being set to @c ELM_LIST_COMPRESS to
18394     * work as genlist needs to handle it specially.
18395     *
18396     * @see elm_genlist_compress_mode_get()
18397     *
18398     * @ingroup Genlist
18399     */
18400    EAPI void              elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress) EINA_ARG_NONNULL(1);
18401    /**
18402     * Get whether the compress mode is enabled.
18403     *
18404     * @param obj The genlist object
18405     * @return The compress mode
18406     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18407     *
18408     * @see elm_genlist_compress_mode_set()
18409     *
18410     * @ingroup Genlist
18411     */
18412    EAPI Eina_Bool         elm_genlist_compress_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18413    /**
18414     * Enable/disable height-for-width mode.
18415     *
18416     * @param obj The genlist object
18417     * @param setting The height-for-width mode (@c EINA_TRUE = on,
18418     * @c EINA_FALSE = off). Default is @c EINA_FALSE.
18419     *
18420     * With height-for-width mode the item width will be fixed (restricted
18421     * to a minimum of) to the list width when calculating its size in
18422     * order to allow the height to be calculated based on it. This allows,
18423     * for instance, text block to wrap lines if the Edje part is
18424     * configured with "text.min: 0 1".
18425     *
18426     * @note This mode will make list resize slower as it will have to
18427     *       recalculate every item height again whenever the list width
18428     *       changes!
18429     *
18430     * @note When height-for-width mode is enabled, it also enables
18431     *       compress mode (see elm_genlist_compress_mode_set()) and
18432     *       disables homogeneous (see elm_genlist_homogeneous_set()).
18433     *
18434     * @ingroup Genlist
18435     */
18436    EAPI void              elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width) EINA_ARG_NONNULL(1);
18437    /**
18438     * Get whether the height-for-width mode is enabled.
18439     *
18440     * @param obj The genlist object
18441     * @return The height-for-width mode (@c EINA_TRUE = on, @c EINA_FALSE =
18442     * off)
18443     *
18444     * @ingroup Genlist
18445     */
18446    EAPI Eina_Bool         elm_genlist_height_for_width_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18447    /**
18448     * Enable/disable horizontal and vertical bouncing effect.
18449     *
18450     * @param obj The genlist object
18451     * @param h_bounce Allow bounce horizontally (@c EINA_TRUE = on, @c
18452     * EINA_FALSE = off). Default is @c EINA_FALSE.
18453     * @param v_bounce Allow bounce vertically (@c EINA_TRUE = on, @c
18454     * EINA_FALSE = off). Default is @c EINA_TRUE.
18455     *
18456     * This will enable or disable the scroller bouncing effect for the
18457     * genlist. See elm_scroller_bounce_set() for details.
18458     *
18459     * @see elm_scroller_bounce_set()
18460     * @see elm_genlist_bounce_get()
18461     *
18462     * @ingroup Genlist
18463     */
18464    EAPI void              elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
18465    /**
18466     * Get whether the horizontal and vertical bouncing effect is enabled.
18467     *
18468     * @param obj The genlist object
18469     * @param h_bounce Pointer to a bool to receive if the bounce horizontally
18470     * option is set.
18471     * @param v_bounce Pointer to a bool to receive if the bounce vertically
18472     * option is set.
18473     *
18474     * @see elm_genlist_bounce_set()
18475     *
18476     * @ingroup Genlist
18477     */
18478    EAPI void              elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
18479    /**
18480     * Enable/disable homogenous mode.
18481     *
18482     * @param obj The genlist object
18483     * @param homogeneous Assume the items within the genlist are of the
18484     * same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c
18485     * EINA_FALSE.
18486     *
18487     * This will enable the homogeneous mode where items are of the same
18488     * height and width so that genlist may do the lazy-loading at its
18489     * maximum (which increases the performance for scrolling the list). This
18490     * implies 'compressed' mode.
18491     *
18492     * @see elm_genlist_compress_mode_set()
18493     * @see elm_genlist_homogeneous_get()
18494     *
18495     * @ingroup Genlist
18496     */
18497    EAPI void              elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
18498    /**
18499     * Get whether the homogenous mode is enabled.
18500     *
18501     * @param obj The genlist object
18502     * @return Assume the items within the genlist are of the same height
18503     * and width (EINA_TRUE = on, EINA_FALSE = off)
18504     *
18505     * @see elm_genlist_homogeneous_set()
18506     *
18507     * @ingroup Genlist
18508     */
18509    EAPI Eina_Bool         elm_genlist_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18510    /**
18511     * Set the maximum number of items within an item block
18512     *
18513     * @param obj The genlist object
18514     * @param n   Maximum number of items within an item block. Default is 32.
18515     *
18516     * This will configure the block count to tune to the target with
18517     * particular performance matrix.
18518     *
18519     * A block of objects will be used to reduce the number of operations due to
18520     * many objects in the screen. It can determine the visibility, or if the
18521     * object has changed, it theme needs to be updated, etc. doing this kind of
18522     * calculation to the entire block, instead of per object.
18523     *
18524     * The default value for the block count is enough for most lists, so unless
18525     * you know you will have a lot of objects visible in the screen at the same
18526     * time, don't try to change this.
18527     *
18528     * @see elm_genlist_block_count_get()
18529     * @see @ref Genlist_Implementation
18530     *
18531     * @ingroup Genlist
18532     */
18533    EAPI void              elm_genlist_block_count_set(Evas_Object *obj, int n) EINA_ARG_NONNULL(1);
18534    /**
18535     * Get the maximum number of items within an item block
18536     *
18537     * @param obj The genlist object
18538     * @return Maximum number of items within an item block
18539     *
18540     * @see elm_genlist_block_count_set()
18541     *
18542     * @ingroup Genlist
18543     */
18544    EAPI int               elm_genlist_block_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18545    /**
18546     * Set the timeout in seconds for the longpress event.
18547     *
18548     * @param obj The genlist object
18549     * @param timeout timeout in seconds. Default is 1.
18550     *
18551     * This option will change how long it takes to send an event "longpressed"
18552     * after the mouse down signal is sent to the list. If this event occurs, no
18553     * "clicked" event will be sent.
18554     *
18555     * @see elm_genlist_longpress_timeout_set()
18556     *
18557     * @ingroup Genlist
18558     */
18559    EAPI void              elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
18560    /**
18561     * Get the timeout in seconds for the longpress event.
18562     *
18563     * @param obj The genlist object
18564     * @return timeout in seconds
18565     *
18566     * @see elm_genlist_longpress_timeout_get()
18567     *
18568     * @ingroup Genlist
18569     */
18570    EAPI double            elm_genlist_longpress_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18571    /**
18572     * Append a new item in a given genlist widget.
18573     *
18574     * @param obj The genlist object
18575     * @param itc The item class for the item
18576     * @param data The item data
18577     * @param parent The parent item, or NULL if none
18578     * @param flags Item flags
18579     * @param func Convenience function called when the item is selected
18580     * @param func_data Data passed to @p func above.
18581     * @return A handle to the item added or @c NULL if not possible
18582     *
18583     * This adds the given item to the end of the list or the end of
18584     * the children list if the @p parent is given.
18585     *
18586     * @see elm_genlist_item_prepend()
18587     * @see elm_genlist_item_insert_before()
18588     * @see elm_genlist_item_insert_after()
18589     * @see elm_genlist_item_del()
18590     *
18591     * @ingroup Genlist
18592     */
18593    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);
18594    /**
18595     * Prepend a new item in a given genlist widget.
18596     *
18597     * @param obj The genlist object
18598     * @param itc The item class for the item
18599     * @param data The item data
18600     * @param parent The parent item, or NULL if none
18601     * @param flags Item flags
18602     * @param func Convenience function called when the item is selected
18603     * @param func_data Data passed to @p func above.
18604     * @return A handle to the item added or NULL if not possible
18605     *
18606     * This adds an item to the beginning of the list or beginning of the
18607     * children of the parent if given.
18608     *
18609     * @see elm_genlist_item_append()
18610     * @see elm_genlist_item_insert_before()
18611     * @see elm_genlist_item_insert_after()
18612     * @see elm_genlist_item_del()
18613     *
18614     * @ingroup Genlist
18615     */
18616    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);
18617    /**
18618     * Insert an item before another in a genlist widget
18619     *
18620     * @param obj The genlist object
18621     * @param itc The item class for the item
18622     * @param data The item data
18623     * @param before The item to place this new one before.
18624     * @param flags Item flags
18625     * @param func Convenience function called when the item is selected
18626     * @param func_data Data passed to @p func above.
18627     * @return A handle to the item added or @c NULL if not possible
18628     *
18629     * This inserts an item before another in the list. It will be in the
18630     * same tree level or group as the item it is inserted before.
18631     *
18632     * @see elm_genlist_item_append()
18633     * @see elm_genlist_item_prepend()
18634     * @see elm_genlist_item_insert_after()
18635     * @see elm_genlist_item_del()
18636     *
18637     * @ingroup Genlist
18638     */
18639    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);
18640    /**
18641     * Insert an item after another in a genlist widget
18642     *
18643     * @param obj The genlist object
18644     * @param itc The item class for the item
18645     * @param data The item data
18646     * @param after The item to place this new one after.
18647     * @param flags Item flags
18648     * @param func Convenience function called when the item is selected
18649     * @param func_data Data passed to @p func above.
18650     * @return A handle to the item added or @c NULL if not possible
18651     *
18652     * This inserts an item after another in the list. It will be in the
18653     * same tree level or group as the item it is inserted after.
18654     *
18655     * @see elm_genlist_item_append()
18656     * @see elm_genlist_item_prepend()
18657     * @see elm_genlist_item_insert_before()
18658     * @see elm_genlist_item_del()
18659     *
18660     * @ingroup Genlist
18661     */
18662    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);
18663    /**
18664     * Insert a new item into the sorted genlist object
18665     *
18666     * @param obj The genlist object
18667     * @param itc The item class for the item
18668     * @param data The item data
18669     * @param parent The parent item, or NULL if none
18670     * @param flags Item flags
18671     * @param comp The function called for the sort
18672     * @param func Convenience function called when item selected
18673     * @param func_data Data passed to @p func above.
18674     * @return A handle to the item added or NULL if not possible
18675     *
18676     * @ingroup Genlist
18677     */
18678    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);
18679    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);
18680    /* operations to retrieve existing items */
18681    /**
18682     * Get the selectd item in the genlist.
18683     *
18684     * @param obj The genlist object
18685     * @return The selected item, or NULL if none is selected.
18686     *
18687     * This gets the selected item in the list (if multi-selection is enabled, only
18688     * the item that was first selected in the list is returned - which is not very
18689     * useful, so see elm_genlist_selected_items_get() for when multi-selection is
18690     * used).
18691     *
18692     * If no item is selected, NULL is returned.
18693     *
18694     * @see elm_genlist_selected_items_get()
18695     *
18696     * @ingroup Genlist
18697     */
18698    EAPI Elm_Genlist_Item *elm_genlist_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18699    /**
18700     * Get a list of selected items in the genlist.
18701     *
18702     * @param obj The genlist object
18703     * @return The list of selected items, or NULL if none are selected.
18704     *
18705     * It returns a list of the selected items. This list pointer is only valid so
18706     * long as the selection doesn't change (no items are selected or unselected, or
18707     * unselected implicitly by deletion). The list contains Elm_Genlist_Item
18708     * pointers. The order of the items in this list is the order which they were
18709     * selected, i.e. the first item in this list is the first item that was
18710     * selected, and so on.
18711     *
18712     * @note If not in multi-select mode, consider using function
18713     * elm_genlist_selected_item_get() instead.
18714     *
18715     * @see elm_genlist_multi_select_set()
18716     * @see elm_genlist_selected_item_get()
18717     *
18718     * @ingroup Genlist
18719     */
18720    EAPI const Eina_List  *elm_genlist_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18721    /**
18722     * Get the mode item style of items in the genlist
18723     * @param obj The genlist object
18724     * @return The mode item style string, or NULL if none is specified
18725     * 
18726     * This is a constant string and simply defines the name of the
18727     * style that will be used for mode animations. It can be
18728     * @c NULL if you don't plan to use Genlist mode. See
18729     * elm_genlist_item_mode_set() for more info.
18730     * 
18731     * @ingroup Genlist
18732     */
18733    EAPI const char       *elm_genlist_mode_item_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18734    /**
18735     * Set the mode item style of items in the genlist
18736     * @param obj The genlist object
18737     * @param style The mode item style string, or NULL if none is desired
18738     * 
18739     * This is a constant string and simply defines the name of the
18740     * style that will be used for mode animations. It can be
18741     * @c NULL if you don't plan to use Genlist mode. See
18742     * elm_genlist_item_mode_set() for more info.
18743     * 
18744     * @ingroup Genlist
18745     */
18746    EAPI void              elm_genlist_mode_item_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
18747    /**
18748     * Get a list of realized items in genlist
18749     *
18750     * @param obj The genlist object
18751     * @return The list of realized items, nor NULL if none are realized.
18752     *
18753     * This returns a list of the realized items in the genlist. The list
18754     * contains Elm_Genlist_Item pointers. The list must be freed by the
18755     * caller when done with eina_list_free(). The item pointers in the
18756     * list are only valid so long as those items are not deleted or the
18757     * genlist is not deleted.
18758     *
18759     * @see elm_genlist_realized_items_update()
18760     *
18761     * @ingroup Genlist
18762     */
18763    EAPI Eina_List        *elm_genlist_realized_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18764    /**
18765     * Get the item that is at the x, y canvas coords.
18766     *
18767     * @param obj The gelinst object.
18768     * @param x The input x coordinate
18769     * @param y The input y coordinate
18770     * @param posret The position relative to the item returned here
18771     * @return The item at the coordinates or NULL if none
18772     *
18773     * This returns the item at the given coordinates (which are canvas
18774     * relative, not object-relative). If an item is at that coordinate,
18775     * that item handle is returned, and if @p posret is not NULL, the
18776     * integer pointed to is set to a value of -1, 0 or 1, depending if
18777     * the coordinate is on the upper portion of that item (-1), on the
18778     * middle section (0) or on the lower part (1). If NULL is returned as
18779     * an item (no item found there), then posret may indicate -1 or 1
18780     * based if the coordinate is above or below all items respectively in
18781     * the genlist.
18782     *
18783     * @ingroup Genlist
18784     */
18785    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);
18786    /**
18787     * Get the first item in the genlist
18788     *
18789     * This returns the first item in the list.
18790     *
18791     * @param obj The genlist object
18792     * @return The first item, or NULL if none
18793     *
18794     * @ingroup Genlist
18795     */
18796    EAPI Elm_Genlist_Item *elm_genlist_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18797    /**
18798     * Get the last item in the genlist
18799     *
18800     * This returns the last item in the list.
18801     *
18802     * @return The last item, or NULL if none
18803     *
18804     * @ingroup Genlist
18805     */
18806    EAPI Elm_Genlist_Item *elm_genlist_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18807    /**
18808     * Set the scrollbar policy
18809     *
18810     * @param obj The genlist object
18811     * @param policy_h Horizontal scrollbar policy.
18812     * @param policy_v Vertical scrollbar policy.
18813     *
18814     * This sets the scrollbar visibility policy for the given genlist
18815     * scroller. #ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
18816     * made visible if it is needed, and otherwise kept hidden.
18817     * #ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
18818     * #ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
18819     * respectively for the horizontal and vertical scrollbars. Default is
18820     * #ELM_SMART_SCROLLER_POLICY_AUTO
18821     *
18822     * @see elm_genlist_scroller_policy_get()
18823     *
18824     * @ingroup Genlist
18825     */
18826    EAPI void              elm_genlist_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
18827    /**
18828     * Get the scrollbar policy
18829     *
18830     * @param obj The genlist object
18831     * @param policy_h Pointer to store the horizontal scrollbar policy.
18832     * @param policy_v Pointer to store the vertical scrollbar policy.
18833     *
18834     * @see elm_genlist_scroller_policy_set()
18835     *
18836     * @ingroup Genlist
18837     */
18838    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);
18839    /**
18840     * Get the @b next item in a genlist widget's internal list of items,
18841     * given a handle to one of those items.
18842     *
18843     * @param item The genlist item to fetch next from
18844     * @return The item after @p item, or @c NULL if there's none (and
18845     * on errors)
18846     *
18847     * This returns the item placed after the @p item, on the container
18848     * genlist.
18849     *
18850     * @see elm_genlist_item_prev_get()
18851     *
18852     * @ingroup Genlist
18853     */
18854    EAPI Elm_Genlist_Item  *elm_genlist_item_next_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18855    /**
18856     * Get the @b previous item in a genlist widget's internal list of items,
18857     * given a handle to one of those items.
18858     *
18859     * @param item The genlist item to fetch previous from
18860     * @return The item before @p item, or @c NULL if there's none (and
18861     * on errors)
18862     *
18863     * This returns the item placed before the @p item, on the container
18864     * genlist.
18865     *
18866     * @see elm_genlist_item_next_get()
18867     *
18868     * @ingroup Genlist
18869     */
18870    EAPI Elm_Genlist_Item  *elm_genlist_item_prev_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18871    /**
18872     * Get the genlist object's handle which contains a given genlist
18873     * item
18874     *
18875     * @param item The item to fetch the container from
18876     * @return The genlist (parent) object
18877     *
18878     * This returns the genlist object itself that an item belongs to.
18879     *
18880     * @ingroup Genlist
18881     */
18882    EAPI Evas_Object       *elm_genlist_item_genlist_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18883    /**
18884     * Get the parent item of the given item
18885     *
18886     * @param it The item
18887     * @return The parent of the item or @c NULL if it has no parent.
18888     *
18889     * This returns the item that was specified as parent of the item @p it on
18890     * elm_genlist_item_append() and insertion related functions.
18891     *
18892     * @ingroup Genlist
18893     */
18894    EAPI Elm_Genlist_Item  *elm_genlist_item_parent_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
18895    /**
18896     * Remove all sub-items (children) of the given item
18897     *
18898     * @param it The item
18899     *
18900     * This removes all items that are children (and their descendants) of the
18901     * given item @p it.
18902     *
18903     * @see elm_genlist_clear()
18904     * @see elm_genlist_item_del()
18905     *
18906     * @ingroup Genlist
18907     */
18908    EAPI void               elm_genlist_item_subitems_clear(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18909    /**
18910     * Set whether a given genlist item is selected or not
18911     *
18912     * @param it The item
18913     * @param selected Use @c EINA_TRUE, to make it selected, @c
18914     * EINA_FALSE to make it unselected
18915     *
18916     * This sets the selected state of an item. If multi selection is
18917     * not enabled on the containing genlist and @p selected is @c
18918     * EINA_TRUE, any other previously selected items will get
18919     * unselected in favor of this new one.
18920     *
18921     * @see elm_genlist_item_selected_get()
18922     *
18923     * @ingroup Genlist
18924     */
18925    EAPI void elm_genlist_item_selected_set(Elm_Genlist_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
18926    /**
18927     * Get whether a given genlist item is selected or not
18928     *
18929     * @param it The item
18930     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
18931     *
18932     * @see elm_genlist_item_selected_set() for more details
18933     *
18934     * @ingroup Genlist
18935     */
18936    EAPI Eina_Bool elm_genlist_item_selected_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18937    /**
18938     * Sets the expanded state of an item.
18939     *
18940     * @param it The item
18941     * @param expanded The expanded state (@c EINA_TRUE expanded, @c EINA_FALSE not expanded).
18942     *
18943     * This function flags the item of type #ELM_GENLIST_ITEM_SUBITEMS as
18944     * expanded or not.
18945     *
18946     * The theme will respond to this change visually, and a signal "expanded" or
18947     * "contracted" will be sent from the genlist with a pointer to the item that
18948     * has been expanded/contracted.
18949     *
18950     * Calling this function won't show or hide any child of this item (if it is
18951     * a parent). You must manually delete and create them on the callbacks fo
18952     * the "expanded" or "contracted" signals.
18953     *
18954     * @see elm_genlist_item_expanded_get()
18955     *
18956     * @ingroup Genlist
18957     */
18958    EAPI void               elm_genlist_item_expanded_set(Elm_Genlist_Item *item, Eina_Bool expanded) EINA_ARG_NONNULL(1);
18959    /**
18960     * Get the expanded state of an item
18961     *
18962     * @param it The item
18963     * @return The expanded state
18964     *
18965     * This gets the expanded state of an item.
18966     *
18967     * @see elm_genlist_item_expanded_set()
18968     *
18969     * @ingroup Genlist
18970     */
18971    EAPI Eina_Bool          elm_genlist_item_expanded_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
18972    /**
18973     * Get the depth of expanded item
18974     *
18975     * @param it The genlist item object
18976     * @return The depth of expanded item
18977     *
18978     * @ingroup Genlist
18979     */
18980    EAPI int                elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
18981    /**
18982     * Set whether a given genlist item is disabled or not.
18983     *
18984     * @param it The item
18985     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
18986     * to enable it back.
18987     *
18988     * A disabled item cannot be selected or unselected. It will also
18989     * change its appearance, to signal the user it's disabled.
18990     *
18991     * @see elm_genlist_item_disabled_get()
18992     *
18993     * @ingroup Genlist
18994     */
18995    EAPI void               elm_genlist_item_disabled_set(Elm_Genlist_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
18996    /**
18997     * Get whether a given genlist item is disabled or not.
18998     *
18999     * @param it The item
19000     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
19001     * (and on errors).
19002     *
19003     * @see elm_genlist_item_disabled_set() for more details
19004     *
19005     * @ingroup Genlist
19006     */
19007    EAPI Eina_Bool          elm_genlist_item_disabled_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19008    /**
19009     * Sets the display only state of an item.
19010     *
19011     * @param it The item
19012     * @param display_only @c EINA_TRUE if the item is display only, @c
19013     * EINA_FALSE otherwise.
19014     *
19015     * A display only item cannot be selected or unselected. It is for
19016     * display only and not selecting or otherwise clicking, dragging
19017     * etc. by the user, thus finger size rules will not be applied to
19018     * this item.
19019     *
19020     * It's good to set group index items to display only state.
19021     *
19022     * @see elm_genlist_item_display_only_get()
19023     *
19024     * @ingroup Genlist
19025     */
19026    EAPI void               elm_genlist_item_display_only_set(Elm_Genlist_Item *it, Eina_Bool display_only) EINA_ARG_NONNULL(1);
19027    /**
19028     * Get the display only state of an item
19029     *
19030     * @param it The item
19031     * @return @c EINA_TRUE if the item is display only, @c
19032     * EINA_FALSE otherwise.
19033     *
19034     * @see elm_genlist_item_display_only_set()
19035     *
19036     * @ingroup Genlist
19037     */
19038    EAPI Eina_Bool          elm_genlist_item_display_only_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19039    /**
19040     * Show the portion of a genlist's internal list containing a given
19041     * item, immediately.
19042     *
19043     * @param it The item to display
19044     *
19045     * This causes genlist to jump to the given item @p it and show it (by
19046     * immediately scrolling to that position), if it is not fully visible.
19047     *
19048     * @see elm_genlist_item_bring_in()
19049     * @see elm_genlist_item_top_show()
19050     * @see elm_genlist_item_middle_show()
19051     *
19052     * @ingroup Genlist
19053     */
19054    EAPI void               elm_genlist_item_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19055    /**
19056     * Animatedly bring in, to the visible are of a genlist, a given
19057     * item on it.
19058     *
19059     * @param it The item to display
19060     *
19061     * This causes genlist to jump to the given item @p it and show it (by
19062     * animatedly scrolling), if it is not fully visible. This may use animation
19063     * to do so and take a period of time
19064     *
19065     * @see elm_genlist_item_show()
19066     * @see elm_genlist_item_top_bring_in()
19067     * @see elm_genlist_item_middle_bring_in()
19068     *
19069     * @ingroup Genlist
19070     */
19071    EAPI void               elm_genlist_item_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19072    /**
19073     * Show the portion of a genlist's internal list containing a given
19074     * item, immediately.
19075     *
19076     * @param it The item to display
19077     *
19078     * This causes genlist to jump to the given item @p it and show it (by
19079     * immediately scrolling to that position), if it is not fully visible.
19080     *
19081     * The item will be positioned at the top of the genlist viewport.
19082     *
19083     * @see elm_genlist_item_show()
19084     * @see elm_genlist_item_top_bring_in()
19085     *
19086     * @ingroup Genlist
19087     */
19088    EAPI void               elm_genlist_item_top_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19089    /**
19090     * Animatedly bring in, to the visible are of a genlist, a given
19091     * item on it.
19092     *
19093     * @param it The item
19094     *
19095     * This causes genlist to jump to the given item @p it and show it (by
19096     * animatedly scrolling), if it is not fully visible. This may use animation
19097     * to do so and take a period of time
19098     *
19099     * The item will be positioned at the top of the genlist viewport.
19100     *
19101     * @see elm_genlist_item_bring_in()
19102     * @see elm_genlist_item_top_show()
19103     *
19104     * @ingroup Genlist
19105     */
19106    EAPI void               elm_genlist_item_top_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19107    /**
19108     * Show the portion of a genlist's internal list containing a given
19109     * item, immediately.
19110     *
19111     * @param it The item to display
19112     *
19113     * This causes genlist to jump to the given item @p it and show it (by
19114     * immediately scrolling to that position), if it is not fully visible.
19115     *
19116     * The item will be positioned at the middle of the genlist viewport.
19117     *
19118     * @see elm_genlist_item_show()
19119     * @see elm_genlist_item_middle_bring_in()
19120     *
19121     * @ingroup Genlist
19122     */
19123    EAPI void               elm_genlist_item_middle_show(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19124    /**
19125     * Animatedly bring in, to the visible are of a genlist, a given
19126     * item on it.
19127     *
19128     * @param it The item
19129     *
19130     * This causes genlist to jump to the given item @p it and show it (by
19131     * animatedly scrolling), if it is not fully visible. This may use animation
19132     * to do so and take a period of time
19133     *
19134     * The item will be positioned at the middle of the genlist viewport.
19135     *
19136     * @see elm_genlist_item_bring_in()
19137     * @see elm_genlist_item_middle_show()
19138     *
19139     * @ingroup Genlist
19140     */
19141    EAPI void               elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19142    /**
19143     * Remove a genlist item from the its parent, deleting it.
19144     *
19145     * @param item The item to be removed.
19146     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
19147     *
19148     * @see elm_genlist_clear(), to remove all items in a genlist at
19149     * once.
19150     *
19151     * @ingroup Genlist
19152     */
19153    EAPI void               elm_genlist_item_del(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19154    /**
19155     * Return the data associated to a given genlist item
19156     *
19157     * @param item The genlist item.
19158     * @return the data associated to this item.
19159     *
19160     * This returns the @c data value passed on the
19161     * elm_genlist_item_append() and related item addition calls.
19162     *
19163     * @see elm_genlist_item_append()
19164     * @see elm_genlist_item_data_set()
19165     *
19166     * @ingroup Genlist
19167     */
19168    EAPI void              *elm_genlist_item_data_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19169    /**
19170     * Set the data associated to a given genlist item
19171     *
19172     * @param item The genlist item
19173     * @param data The new data pointer to set on it
19174     *
19175     * This @b overrides the @c data value passed on the
19176     * elm_genlist_item_append() and related item addition calls. This
19177     * function @b won't call elm_genlist_item_update() automatically,
19178     * so you'd issue it afterwards if you want to hove the item
19179     * updated to reflect the that new data.
19180     *
19181     * @see elm_genlist_item_data_get()
19182     *
19183     * @ingroup Genlist
19184     */
19185    EAPI void               elm_genlist_item_data_set(Elm_Genlist_Item *it, const void *data) EINA_ARG_NONNULL(1);
19186    /**
19187     * Tells genlist to "orphan" icons fetchs by the item class
19188     *
19189     * @param it The item
19190     *
19191     * This instructs genlist to release references to icons in the item,
19192     * meaning that they will no longer be managed by genlist and are
19193     * floating "orphans" that can be re-used elsewhere if the user wants
19194     * to.
19195     *
19196     * @ingroup Genlist
19197     */
19198    EAPI void               elm_genlist_item_contents_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19199    EAPI void               elm_genlist_item_icons_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19200    /**
19201     * Get the real Evas object created to implement the view of a
19202     * given genlist item
19203     *
19204     * @param item The genlist item.
19205     * @return the Evas object implementing this item's view.
19206     *
19207     * This returns the actual Evas object used to implement the
19208     * specified genlist item's view. This may be @c NULL, as it may
19209     * not have been created or may have been deleted, at any time, by
19210     * the genlist. <b>Do not modify this object</b> (move, resize,
19211     * show, hide, etc.), as the genlist is controlling it. This
19212     * function is for querying, emitting custom signals or hooking
19213     * lower level callbacks for events on that object. Do not delete
19214     * this object under any circumstances.
19215     *
19216     * @see elm_genlist_item_data_get()
19217     *
19218     * @ingroup Genlist
19219     */
19220    EAPI const Evas_Object *elm_genlist_item_object_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19221    /**
19222     * Update the contents of an item
19223     *
19224     * @param it The item
19225     *
19226     * This updates an item by calling all the item class functions again
19227     * to get the icons, labels and states. Use this when the original
19228     * item data has changed and the changes are desired to be reflected.
19229     *
19230     * Use elm_genlist_realized_items_update() to update all already realized
19231     * items.
19232     *
19233     * @see elm_genlist_realized_items_update()
19234     *
19235     * @ingroup Genlist
19236     */
19237    EAPI void               elm_genlist_item_update(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19238    EAPI void               elm_genlist_item_fields_update(Elm_Genlist_Item *it, const char *parts, Elm_Genlist_Item_Field_Flags itf) EINA_ARG_NONNULL(1);
19239    /**
19240     * Update the item class of an item
19241     *
19242     * @param it The item
19243     * @param itc The item class for the item
19244     *
19245     * This sets another class fo the item, changing the way that it is
19246     * displayed. After changing the item class, elm_genlist_item_update() is
19247     * called on the item @p it.
19248     *
19249     * @ingroup Genlist
19250     */
19251    EAPI void               elm_genlist_item_item_class_update(Elm_Genlist_Item *it, const Elm_Genlist_Item_Class *itc) EINA_ARG_NONNULL(1, 2);
19252    EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19253    /**
19254     * Set the text to be shown in a given genlist item's tooltips.
19255     *
19256     * @param item The genlist item
19257     * @param text The text to set in the content
19258     *
19259     * This call will setup the text to be used as tooltip to that item
19260     * (analogous to elm_object_tooltip_text_set(), but being item
19261     * tooltips with higher precedence than object tooltips). It can
19262     * have only one tooltip at a time, so any previous tooltip data
19263     * will get removed.
19264     *
19265     * In order to set an icon or something else as a tooltip, look at
19266     * elm_genlist_item_tooltip_content_cb_set().
19267     *
19268     * @ingroup Genlist
19269     */
19270    EAPI void               elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item, const char *text) EINA_ARG_NONNULL(1);
19271    /**
19272     * Set the content to be shown in a given genlist item's tooltips
19273     *
19274     * @param item The genlist item.
19275     * @param func The function returning the tooltip contents.
19276     * @param data What to provide to @a func as callback data/context.
19277     * @param del_cb Called when data is not needed anymore, either when
19278     *        another callback replaces @p func, the tooltip is unset with
19279     *        elm_genlist_item_tooltip_unset() or the owner @p item
19280     *        dies. This callback receives as its first parameter the
19281     *        given @p data, being @c event_info the item handle.
19282     *
19283     * This call will setup the tooltip's contents to @p item
19284     * (analogous to elm_object_tooltip_content_cb_set(), but being
19285     * item tooltips with higher precedence than object tooltips). It
19286     * can have only one tooltip at a time, so any previous tooltip
19287     * content will get removed. @p func (with @p data) will be called
19288     * every time Elementary needs to show the tooltip and it should
19289     * return a valid Evas object, which will be fully managed by the
19290     * tooltip system, getting deleted when the tooltip is gone.
19291     *
19292     * In order to set just a text as a tooltip, look at
19293     * elm_genlist_item_tooltip_text_set().
19294     *
19295     * @ingroup Genlist
19296     */
19297    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);
19298    /**
19299     * Unset a tooltip from a given genlist item
19300     *
19301     * @param item genlist item to remove a previously set tooltip from.
19302     *
19303     * This call removes any tooltip set on @p item. The callback
19304     * provided as @c del_cb to
19305     * elm_genlist_item_tooltip_content_cb_set() will be called to
19306     * notify it is not used anymore (and have resources cleaned, if
19307     * need be).
19308     *
19309     * @see elm_genlist_item_tooltip_content_cb_set()
19310     *
19311     * @ingroup Genlist
19312     */
19313    EAPI void               elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19314    /**
19315     * Set a different @b style for a given genlist item's tooltip.
19316     *
19317     * @param item genlist item with tooltip set
19318     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
19319     * "default", @c "transparent", etc)
19320     *
19321     * Tooltips can have <b>alternate styles</b> to be displayed on,
19322     * which are defined by the theme set on Elementary. This function
19323     * works analogously as elm_object_tooltip_style_set(), but here
19324     * applied only to genlist item objects. The default style for
19325     * tooltips is @c "default".
19326     *
19327     * @note before you set a style you should define a tooltip with
19328     *       elm_genlist_item_tooltip_content_cb_set() or
19329     *       elm_genlist_item_tooltip_text_set()
19330     *
19331     * @see elm_genlist_item_tooltip_style_get()
19332     *
19333     * @ingroup Genlist
19334     */
19335    EAPI void               elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
19336    /**
19337     * Get the style set a given genlist item's tooltip.
19338     *
19339     * @param item genlist item with tooltip already set on.
19340     * @return style the theme style in use, which defaults to
19341     *         "default". If the object does not have a tooltip set,
19342     *         then @c NULL is returned.
19343     *
19344     * @see elm_genlist_item_tooltip_style_set() for more details
19345     *
19346     * @ingroup Genlist
19347     */
19348    EAPI const char        *elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19349    /**
19350     * Set the type of mouse pointer/cursor decoration to be shown,
19351     * when the mouse pointer is over the given genlist widget item
19352     *
19353     * @param item genlist item to customize cursor on
19354     * @param cursor the cursor type's name
19355     *
19356     * This function works analogously as elm_object_cursor_set(), but
19357     * here the cursor's changing area is restricted to the item's
19358     * area, and not the whole widget's. Note that that item cursors
19359     * have precedence over widget cursors, so that a mouse over @p
19360     * item will always show cursor @p type.
19361     *
19362     * If this function is called twice for an object, a previously set
19363     * cursor will be unset on the second call.
19364     *
19365     * @see elm_object_cursor_set()
19366     * @see elm_genlist_item_cursor_get()
19367     * @see elm_genlist_item_cursor_unset()
19368     *
19369     * @ingroup Genlist
19370     */
19371    EAPI void               elm_genlist_item_cursor_set(Elm_Genlist_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
19372    /**
19373     * Get the type of mouse pointer/cursor decoration set to be shown,
19374     * when the mouse pointer is over the given genlist widget item
19375     *
19376     * @param item genlist item with custom cursor set
19377     * @return the cursor type's name or @c NULL, if no custom cursors
19378     * were set to @p item (and on errors)
19379     *
19380     * @see elm_object_cursor_get()
19381     * @see elm_genlist_item_cursor_set() for more details
19382     * @see elm_genlist_item_cursor_unset()
19383     *
19384     * @ingroup Genlist
19385     */
19386    EAPI const char        *elm_genlist_item_cursor_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19387    /**
19388     * Unset any custom mouse pointer/cursor decoration set to be
19389     * shown, when the mouse pointer is over the given genlist widget
19390     * item, thus making it show the @b default cursor again.
19391     *
19392     * @param item a genlist item
19393     *
19394     * Use this call to undo any custom settings on this item's cursor
19395     * decoration, bringing it back to defaults (no custom style set).
19396     *
19397     * @see elm_object_cursor_unset()
19398     * @see elm_genlist_item_cursor_set() for more details
19399     *
19400     * @ingroup Genlist
19401     */
19402    EAPI void               elm_genlist_item_cursor_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19403    /**
19404     * Set a different @b style for a given custom cursor set for a
19405     * genlist item.
19406     *
19407     * @param item genlist item with custom cursor set
19408     * @param style the <b>theme style</b> to use (e.g. @c "default",
19409     * @c "transparent", etc)
19410     *
19411     * This function only makes sense when one is using custom mouse
19412     * cursor decorations <b>defined in a theme file</b> , which can
19413     * have, given a cursor name/type, <b>alternate styles</b> on
19414     * it. It works analogously as elm_object_cursor_style_set(), but
19415     * here applied only to genlist item objects.
19416     *
19417     * @warning Before you set a cursor style you should have defined a
19418     *       custom cursor previously on the item, with
19419     *       elm_genlist_item_cursor_set()
19420     *
19421     * @see elm_genlist_item_cursor_engine_only_set()
19422     * @see elm_genlist_item_cursor_style_get()
19423     *
19424     * @ingroup Genlist
19425     */
19426    EAPI void               elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
19427    /**
19428     * Get the current @b style set for a given genlist item's custom
19429     * cursor
19430     *
19431     * @param item genlist item with custom cursor set.
19432     * @return style the cursor style in use. If the object does not
19433     *         have a cursor set, then @c NULL is returned.
19434     *
19435     * @see elm_genlist_item_cursor_style_set() for more details
19436     *
19437     * @ingroup Genlist
19438     */
19439    EAPI const char        *elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19440    /**
19441     * Set if the (custom) cursor for a given genlist item should be
19442     * searched in its theme, also, or should only rely on the
19443     * rendering engine.
19444     *
19445     * @param item item with custom (custom) cursor already set on
19446     * @param engine_only Use @c EINA_TRUE to have cursors looked for
19447     * only on those provided by the rendering engine, @c EINA_FALSE to
19448     * have them searched on the widget's theme, as well.
19449     *
19450     * @note This call is of use only if you've set a custom cursor
19451     * for genlist items, with elm_genlist_item_cursor_set().
19452     *
19453     * @note By default, cursors will only be looked for between those
19454     * provided by the rendering engine.
19455     *
19456     * @ingroup Genlist
19457     */
19458    EAPI void               elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
19459    /**
19460     * Get if the (custom) cursor for a given genlist item is being
19461     * searched in its theme, also, or is only relying on the rendering
19462     * engine.
19463     *
19464     * @param item a genlist item
19465     * @return @c EINA_TRUE, if cursors are being looked for only on
19466     * those provided by the rendering engine, @c EINA_FALSE if they
19467     * are being searched on the widget's theme, as well.
19468     *
19469     * @see elm_genlist_item_cursor_engine_only_set(), for more details
19470     *
19471     * @ingroup Genlist
19472     */
19473    EAPI Eina_Bool          elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19474    /**
19475     * Update the contents of all realized items.
19476     *
19477     * @param obj The genlist object.
19478     *
19479     * This updates all realized items by calling all the item class functions again
19480     * to get the icons, labels and states. Use this when the original
19481     * item data has changed and the changes are desired to be reflected.
19482     *
19483     * To update just one item, use elm_genlist_item_update().
19484     *
19485     * @see elm_genlist_realized_items_get()
19486     * @see elm_genlist_item_update()
19487     *
19488     * @ingroup Genlist
19489     */
19490    EAPI void               elm_genlist_realized_items_update(Evas_Object *obj) EINA_ARG_NONNULL(1);
19491    /**
19492     * Activate a genlist mode on an item
19493     *
19494     * @param item The genlist item
19495     * @param mode Mode name
19496     * @param mode_set Boolean to define set or unset mode.
19497     *
19498     * A genlist mode is a different way of selecting an item. Once a mode is
19499     * activated on an item, any other selected item is immediately unselected.
19500     * This feature provides an easy way of implementing a new kind of animation
19501     * for selecting an item, without having to entirely rewrite the item style
19502     * theme. However, the elm_genlist_selected_* API can't be used to get what
19503     * item is activate for a mode.
19504     *
19505     * The current item style will still be used, but applying a genlist mode to
19506     * an item will select it using a different kind of animation.
19507     *
19508     * The current active item for a mode can be found by
19509     * elm_genlist_mode_item_get().
19510     *
19511     * The characteristics of genlist mode are:
19512     * - Only one mode can be active at any time, and for only one item.
19513     * - Genlist handles deactivating other items when one item is activated.
19514     * - A mode is defined in the genlist theme (edc), and more modes can easily
19515     *   be added.
19516     * - A mode style and the genlist item style are different things. They
19517     *   can be combined to provide a default style to the item, with some kind
19518     *   of animation for that item when the mode is activated.
19519     *
19520     * When a mode is activated on an item, a new view for that item is created.
19521     * The theme of this mode defines the animation that will be used to transit
19522     * the item from the old view to the new view. This second (new) view will be
19523     * active for that item while the mode is active on the item, and will be
19524     * destroyed after the mode is totally deactivated from that item.
19525     *
19526     * @see elm_genlist_mode_get()
19527     * @see elm_genlist_mode_item_get()
19528     *
19529     * @ingroup Genlist
19530     */
19531    EAPI void               elm_genlist_item_mode_set(Elm_Genlist_Item *it, const char *mode_type, Eina_Bool mode_set) EINA_ARG_NONNULL(1, 2);
19532    /**
19533     * Get the last (or current) genlist mode used.
19534     *
19535     * @param obj The genlist object
19536     *
19537     * This function just returns the name of the last used genlist mode. It will
19538     * be the current mode if it's still active.
19539     *
19540     * @see elm_genlist_item_mode_set()
19541     * @see elm_genlist_mode_item_get()
19542     *
19543     * @ingroup Genlist
19544     */
19545    EAPI const char        *elm_genlist_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19546    /**
19547     * Get active genlist mode item
19548     *
19549     * @param obj The genlist object
19550     * @return The active item for that current mode. Or @c NULL if no item is
19551     * activated with any mode.
19552     *
19553     * This function returns the item that was activated with a mode, by the
19554     * function elm_genlist_item_mode_set().
19555     *
19556     * @see elm_genlist_item_mode_set()
19557     * @see elm_genlist_mode_get()
19558     *
19559     * @ingroup Genlist
19560     */
19561    EAPI const Elm_Genlist_Item *elm_genlist_mode_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19562
19563    /**
19564     * Set reorder mode
19565     *
19566     * @param obj The genlist object
19567     * @param reorder_mode The reorder mode
19568     * (EINA_TRUE = on, EINA_FALSE = off)
19569     *
19570     * @ingroup Genlist
19571     */
19572    EAPI void               elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
19573
19574    /**
19575     * Get the reorder mode
19576     *
19577     * @param obj The genlist object
19578     * @return The reorder mode
19579     * (EINA_TRUE = on, EINA_FALSE = off)
19580     *
19581     * @ingroup Genlist
19582     */
19583    EAPI Eina_Bool          elm_genlist_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19584
19585    EAPI void               elm_genlist_edit_mode_set(Evas_Object *obj, Eina_Bool edit_mode) EINA_ARG_NONNULL(1);
19586    EAPI Eina_Bool          elm_genlist_edit_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19587    EAPI void               elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, Eina_Bool renamed) EINA_ARG_NONNULL(1);
19588    EAPI Eina_Bool          elm_genlist_item_rename_mode_get(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19589    EAPI void               elm_genlist_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after ) EINA_ARG_NONNULL(1, 2);
19590    EAPI void               elm_genlist_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before) EINA_ARG_NONNULL(1, 2);
19591    EAPI void               elm_genlist_effect_set(const Evas_Object *obj, Eina_Bool emode) EINA_ARG_NONNULL(1);
19592    EAPI void               elm_genlist_pinch_zoom_set(Evas_Object *obj, Eina_Bool emode) EINA_ARG_NONNULL(1);
19593    EAPI void               elm_genlist_pinch_zoom_mode_set(Evas_Object *obj, Eina_Bool emode) EINA_ARG_NONNULL(1);
19594    EAPI Eina_Bool          elm_genlist_pinch_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19595
19596    /**
19597     * @}
19598     */
19599
19600    /**
19601     * @defgroup Check Check
19602     *
19603     * @image html img/widget/check/preview-00.png
19604     * @image latex img/widget/check/preview-00.eps
19605     * @image html img/widget/check/preview-01.png
19606     * @image latex img/widget/check/preview-01.eps
19607     * @image html img/widget/check/preview-02.png
19608     * @image latex img/widget/check/preview-02.eps
19609     *
19610     * @brief The check widget allows for toggling a value between true and
19611     * false.
19612     *
19613     * Check objects are a lot like radio objects in layout and functionality
19614     * except they do not work as a group, but independently and only toggle the
19615     * value of a boolean from false to true (0 or 1). elm_check_state_set() sets
19616     * the boolean state (1 for true, 0 for false), and elm_check_state_get()
19617     * returns the current state. For convenience, like the radio objects, you
19618     * can set a pointer to a boolean directly with elm_check_state_pointer_set()
19619     * for it to modify.
19620     *
19621     * Signals that you can add callbacks for are:
19622     * "changed" - This is called whenever the user changes the state of one of
19623     *             the check object(event_info is NULL).
19624     *
19625     * Default contents parts of the check widget that you can use for are:
19626     * @li "elm.swallow.content" - A icon of the check
19627     *
19628     * Default text parts of the check widget that you can use for are:
19629     * @li "elm.text" - Label of the check
19630     *
19631     * @ref tutorial_check should give you a firm grasp of how to use this widget
19632     * .
19633     * @{
19634     */
19635    /**
19636     * @brief Add a new Check object
19637     *
19638     * @param parent The parent object
19639     * @return The new object or NULL if it cannot be created
19640     */
19641    EAPI Evas_Object *elm_check_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
19642    /**
19643     * @brief Set the text label of the check object
19644     *
19645     * @param obj The check object
19646     * @param label The text label string in UTF-8
19647     *
19648     * @deprecated use elm_object_text_set() instead.
19649     */
19650    EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
19651    /**
19652     * @brief Get the text label of the check object
19653     *
19654     * @param obj The check object
19655     * @return The text label string in UTF-8
19656     *
19657     * @deprecated use elm_object_text_get() instead.
19658     */
19659    EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19660    /**
19661     * @brief Set the icon object of the check object
19662     *
19663     * @param obj The check object
19664     * @param icon The icon object
19665     *
19666     * Once the icon object is set, a previously set one will be deleted.
19667     * If you want to keep that old content object, use the
19668     * elm_object_content_unset() function.
19669     */
19670    EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
19671    /**
19672     * @brief Get the icon object of the check object
19673     *
19674     * @param obj The check object
19675     * @return The icon object
19676     */
19677    EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19678    /**
19679     * @brief Unset the icon used for the check object
19680     *
19681     * @param obj The check object
19682     * @return The icon object that was being used
19683     *
19684     * Unparent and return the icon object which was set for this widget.
19685     */
19686    EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
19687    /**
19688     * @brief Set the on/off state of the check object
19689     *
19690     * @param obj The check object
19691     * @param state The state to use (1 == on, 0 == off)
19692     *
19693     * This sets the state of the check. If set
19694     * with elm_check_state_pointer_set() the state of that variable is also
19695     * changed. Calling this @b doesn't cause the "changed" signal to be emited.
19696     */
19697    EAPI void         elm_check_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
19698    /**
19699     * @brief Get the state of the check object
19700     *
19701     * @param obj The check object
19702     * @return The boolean state
19703     */
19704    EAPI Eina_Bool    elm_check_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19705    /**
19706     * @brief Set a convenience pointer to a boolean to change
19707     *
19708     * @param obj The check object
19709     * @param statep Pointer to the boolean to modify
19710     *
19711     * This sets a pointer to a boolean, that, in addition to the check objects
19712     * state will also be modified directly. To stop setting the object pointed
19713     * to simply use NULL as the @p statep parameter. If @p statep is not NULL,
19714     * then when this is called, the check objects state will also be modified to
19715     * reflect the value of the boolean @p statep points to, just like calling
19716     * elm_check_state_set().
19717     */
19718    EAPI void         elm_check_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
19719    /**
19720     * @}
19721     */
19722
19723    /**
19724     * @defgroup Radio Radio
19725     *
19726     * @image html img/widget/radio/preview-00.png
19727     * @image latex img/widget/radio/preview-00.eps
19728     *
19729     * @brief Radio is a widget that allows for 1 or more options to be displayed
19730     * and have the user choose only 1 of them.
19731     *
19732     * A radio object contains an indicator, an optional Label and an optional
19733     * icon object. While it's possible to have a group of only one radio they,
19734     * are normally used in groups of 2 or more. To add a radio to a group use
19735     * elm_radio_group_add(). The radio object(s) will select from one of a set
19736     * of integer values, so any value they are configuring needs to be mapped to
19737     * a set of integers. To configure what value that radio object represents,
19738     * use  elm_radio_state_value_set() to set the integer it represents. To set
19739     * the value the whole group(which one is currently selected) is to indicate
19740     * use elm_radio_value_set() on any group member, and to get the groups value
19741     * use elm_radio_value_get(). For convenience the radio objects are also able
19742     * to directly set an integer(int) to the value that is selected. To specify
19743     * the pointer to this integer to modify, use elm_radio_value_pointer_set().
19744     * The radio objects will modify this directly. That implies the pointer must
19745     * point to valid memory for as long as the radio objects exist.
19746     *
19747     * Signals that you can add callbacks for are:
19748     * @li changed - This is called whenever the user changes the state of one of
19749     * the radio objects within the group of radio objects that work together.
19750     *
19751     * Default contents parts of the radio widget that you can use for are:
19752     * @li "elm.swallow.content" - A icon of the radio
19753     *
19754     * @ref tutorial_radio show most of this API in action.
19755     * @{
19756     */
19757    /**
19758     * @brief Add a new radio to the parent
19759     *
19760     * @param parent The parent object
19761     * @return The new object or NULL if it cannot be created
19762     */
19763    EAPI Evas_Object *elm_radio_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
19764    /**
19765     * @brief Set the text label of the radio object
19766     *
19767     * @param obj The radio object
19768     * @param label The text label string in UTF-8
19769     *
19770     * @deprecated use elm_object_text_set() instead.
19771     */
19772    EINA_DEPRECATED EAPI void         elm_radio_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
19773    /**
19774     * @brief Get the text label of the radio object
19775     *
19776     * @param obj The radio object
19777     * @return The text label string in UTF-8
19778     *
19779     * @deprecated use elm_object_text_set() instead.
19780     */
19781    EINA_DEPRECATED EAPI const char  *elm_radio_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19782    /**
19783     * @brief Set the icon object of the radio object
19784     *
19785     * @param obj The radio object
19786     * @param icon The icon object
19787     *
19788     * Once the icon object is set, a previously set one will be deleted. If you
19789     * want to keep that old content object, use the elm_radio_icon_unset()
19790     * function.
19791     &
19792     * @deprecated use elm_object_content_set() instead.
19793     */
19794    EAPI void         elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
19795    /**
19796     * @brief Get the icon object of the radio object
19797     *
19798     * @param obj The radio object
19799     * @return The icon object
19800     *
19801     * @see elm_radio_icon_set()
19802     */
19803    EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19804    /**
19805     * @brief Unset the icon used for the radio object
19806     *
19807     * @param obj The radio object
19808     * @return The icon object that was being used
19809     *
19810     * Unparent and return the icon object which was set for this widget.
19811     *
19812     * @see elm_radio_icon_set()
19813     * @deprecated use elm_object_content_unset() instead.
19814     */
19815    EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
19816    /**
19817     * @brief Add this radio to a group of other radio objects
19818     *
19819     * @param obj The radio object
19820     * @param group Any object whose group the @p obj is to join.
19821     *
19822     * Radio objects work in groups. Each member should have a different integer
19823     * value assigned. In order to have them work as a group, they need to know
19824     * about each other. This adds the given radio object to the group of which
19825     * the group object indicated is a member.
19826     */
19827    EAPI void         elm_radio_group_add(Evas_Object *obj, Evas_Object *group) EINA_ARG_NONNULL(1);
19828    /**
19829     * @brief Set the integer value that this radio object represents
19830     *
19831     * @param obj The radio object
19832     * @param value The value to use if this radio object is selected
19833     *
19834     * This sets the value of the radio.
19835     */
19836    EAPI void         elm_radio_state_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
19837    /**
19838     * @brief Get the integer value that this radio object represents
19839     *
19840     * @param obj The radio object
19841     * @return The value used if this radio object is selected
19842     *
19843     * This gets the value of the radio.
19844     *
19845     * @see elm_radio_value_set()
19846     */
19847    EAPI int          elm_radio_state_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19848    /**
19849     * @brief Set the value of the radio.
19850     *
19851     * @param obj The radio object
19852     * @param value The value to use for the group
19853     *
19854     * This sets the value of the radio group and will also set the value if
19855     * pointed to, to the value supplied, but will not call any callbacks.
19856     */
19857    EAPI void         elm_radio_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
19858    /**
19859     * @brief Get the state of the radio object
19860     *
19861     * @param obj The radio object
19862     * @return The integer state
19863     */
19864    EAPI int          elm_radio_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19865    /**
19866     * @brief Set a convenience pointer to a integer to change
19867     *
19868     * @param obj The radio object
19869     * @param valuep Pointer to the integer to modify
19870     *
19871     * This sets a pointer to a integer, that, in addition to the radio objects
19872     * state will also be modified directly. To stop setting the object pointed
19873     * to simply use NULL as the @p valuep argument. If valuep is not NULL, then
19874     * when this is called, the radio objects state will also be modified to
19875     * reflect the value of the integer valuep points to, just like calling
19876     * elm_radio_value_set().
19877     */
19878    EAPI void         elm_radio_value_pointer_set(Evas_Object *obj, int *valuep) EINA_ARG_NONNULL(1);
19879    /**
19880     * @}
19881     */
19882
19883    /**
19884     * @defgroup Pager Pager
19885     *
19886     * @image html img/widget/pager/preview-00.png
19887     * @image latex img/widget/pager/preview-00.eps
19888     *
19889     * @brief Widget that allows flipping between 1 or more ā€œpagesā€ of objects.
19890     *
19891     * The flipping between ā€œpagesā€ of objects is animated. All content in pager
19892     * is kept in a stack, the last content to be added will be on the top of the
19893     * stack(be visible).
19894     *
19895     * Objects can be pushed or popped from the stack or deleted as normal.
19896     * Pushes and pops will animate (and a pop will delete the object once the
19897     * animation is finished). Any object already in the pager can be promoted to
19898     * the top(from its current stacking position) through the use of
19899     * elm_pager_content_promote(). Objects are pushed to the top with
19900     * elm_pager_content_push() and when the top item is no longer wanted, simply
19901     * pop it with elm_pager_content_pop() and it will also be deleted. If an
19902     * object is no longer needed and is not the top item, just delete it as
19903     * normal. You can query which objects are the top and bottom with
19904     * elm_pager_content_bottom_get() and elm_pager_content_top_get().
19905     *
19906     * Signals that you can add callbacks for are:
19907     * "hide,finished" - when the previous page is hided
19908     *
19909     * This widget has the following styles available:
19910     * @li default
19911     * @li fade
19912     * @li fade_translucide
19913     * @li fade_invisible
19914     * @note This styles affect only the flipping animations, the appearance when
19915     * not animating is unaffected by styles.
19916     *
19917     * @ref tutorial_pager gives a good overview of the usage of the API.
19918     * @{
19919     */
19920    /**
19921     * Add a new pager to the parent
19922     *
19923     * @param parent The parent object
19924     * @return The new object or NULL if it cannot be created
19925     *
19926     * @ingroup Pager
19927     */
19928    EAPI Evas_Object *elm_pager_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
19929    /**
19930     * @brief Push an object to the top of the pager stack (and show it).
19931     *
19932     * @param obj The pager object
19933     * @param content The object to push
19934     *
19935     * The object pushed becomes a child of the pager, it will be controlled and
19936     * deleted when the pager is deleted.
19937     *
19938     * @note If the content is already in the stack use
19939     * elm_pager_content_promote().
19940     * @warning Using this function on @p content already in the stack results in
19941     * undefined behavior.
19942     */
19943    EAPI void         elm_pager_content_push(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
19944    /**
19945     * @brief Pop the object that is on top of the stack
19946     *
19947     * @param obj The pager object
19948     *
19949     * This pops the object that is on the top(visible) of the pager, makes it
19950     * disappear, then deletes the object. The object that was underneath it on
19951     * the stack will become visible.
19952     */
19953    EAPI void         elm_pager_content_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
19954    /**
19955     * @brief Moves an object already in the pager stack to the top of the stack.
19956     *
19957     * @param obj The pager object
19958     * @param content The object to promote
19959     *
19960     * This will take the @p content and move it to the top of the stack as
19961     * if it had been pushed there.
19962     *
19963     * @note If the content isn't already in the stack use
19964     * elm_pager_content_push().
19965     * @warning Using this function on @p content not already in the stack
19966     * results in undefined behavior.
19967     */
19968    EAPI void         elm_pager_content_promote(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
19969    /**
19970     * @brief Return the object at the bottom of the pager stack
19971     *
19972     * @param obj The pager object
19973     * @return The bottom object or NULL if none
19974     */
19975    EAPI Evas_Object *elm_pager_content_bottom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19976    /**
19977     * @brief  Return the object at the top of the pager stack
19978     *
19979     * @param obj The pager object
19980     * @return The top object or NULL if none
19981     */
19982    EAPI Evas_Object *elm_pager_content_top_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19983
19984    EAPI void         elm_pager_to_content_pop(Evas_Object *obj, Evas_Object *content); EINA_ARG_NONNULL(1);
19985    EINA_DEPRECATED    EAPI void         elm_pager_animation_disabled_set(Evas_Object *obj, Eina_Bool disable); EINA_ARG_NONNULL(1);
19986
19987    /**
19988     * @}
19989     */
19990
19991    /**
19992     * @defgroup Slideshow Slideshow
19993     *
19994     * @image html img/widget/slideshow/preview-00.png
19995     * @image latex img/widget/slideshow/preview-00.eps
19996     *
19997     * This widget, as the name indicates, is a pre-made image
19998     * slideshow panel, with API functions acting on (child) image
19999     * items presentation. Between those actions, are:
20000     * - advance to next/previous image
20001     * - select the style of image transition animation
20002     * - set the exhibition time for each image
20003     * - start/stop the slideshow
20004     *
20005     * The transition animations are defined in the widget's theme,
20006     * consequently new animations can be added without having to
20007     * update the widget's code.
20008     *
20009     * @section Slideshow_Items Slideshow items
20010     *
20011     * For slideshow items, just like for @ref Genlist "genlist" ones,
20012     * the user defines a @b classes, specifying functions that will be
20013     * called on the item's creation and deletion times.
20014     *
20015     * The #Elm_Slideshow_Item_Class structure contains the following
20016     * members:
20017     *
20018     * - @c func.get - When an item is displayed, this function is
20019     *   called, and it's where one should create the item object, de
20020     *   facto. For example, the object can be a pure Evas image object
20021     *   or an Elementary @ref Photocam "photocam" widget. See
20022     *   #SlideshowItemGetFunc.
20023     * - @c func.del - When an item is no more displayed, this function
20024     *   is called, where the user must delete any data associated to
20025     *   the item. See #SlideshowItemDelFunc.
20026     *
20027     * @section Slideshow_Caching Slideshow caching
20028     *
20029     * The slideshow provides facilities to have items adjacent to the
20030     * one being displayed <b>already "realized"</b> (i.e. loaded) for
20031     * you, so that the system does not have to decode image data
20032     * anymore at the time it has to actually switch images on its
20033     * viewport. The user is able to set the numbers of items to be
20034     * cached @b before and @b after the current item, in the widget's
20035     * item list.
20036     *
20037     * Smart events one can add callbacks for are:
20038     *
20039     * - @c "changed" - when the slideshow switches its view to a new
20040     *   item
20041     *
20042     * List of examples for the slideshow widget:
20043     * @li @ref slideshow_example
20044     */
20045
20046    /**
20047     * @addtogroup Slideshow
20048     * @{
20049     */
20050
20051    typedef struct _Elm_Slideshow_Item_Class Elm_Slideshow_Item_Class; /**< Slideshow item class definition struct */
20052    typedef struct _Elm_Slideshow_Item_Class_Func Elm_Slideshow_Item_Class_Func; /**< Class functions for slideshow item classes. */
20053    typedef struct _Elm_Slideshow_Item       Elm_Slideshow_Item; /**< Slideshow item handle */
20054    typedef Evas_Object *(*SlideshowItemGetFunc) (void *data, Evas_Object *obj); /**< Image fetching class function for slideshow item classes. */
20055    typedef void         (*SlideshowItemDelFunc) (void *data, Evas_Object *obj); /**< Deletion class function for slideshow item classes. */
20056
20057    /**
20058     * @struct _Elm_Slideshow_Item_Class
20059     *
20060     * Slideshow item class definition. See @ref Slideshow_Items for
20061     * field details.
20062     */
20063    struct _Elm_Slideshow_Item_Class
20064      {
20065         struct _Elm_Slideshow_Item_Class_Func
20066           {
20067              SlideshowItemGetFunc get;
20068              SlideshowItemDelFunc del;
20069           } func;
20070      }; /**< #Elm_Slideshow_Item_Class member definitions */
20071
20072    /**
20073     * Add a new slideshow widget to the given parent Elementary
20074     * (container) object
20075     *
20076     * @param parent The parent object
20077     * @return A new slideshow widget handle or @c NULL, on errors
20078     *
20079     * This function inserts a new slideshow widget on the canvas.
20080     *
20081     * @ingroup Slideshow
20082     */
20083    EAPI Evas_Object        *elm_slideshow_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20084
20085    /**
20086     * Add (append) a new item in a given slideshow widget.
20087     *
20088     * @param obj The slideshow object
20089     * @param itc The item class for the item
20090     * @param data The item's data
20091     * @return A handle to the item added or @c NULL, on errors
20092     *
20093     * Add a new item to @p obj's internal list of items, appending it.
20094     * The item's class must contain the function really fetching the
20095     * image object to show for this item, which could be an Evas image
20096     * object or an Elementary photo, for example. The @p data
20097     * parameter is going to be passed to both class functions of the
20098     * item.
20099     *
20100     * @see #Elm_Slideshow_Item_Class
20101     * @see elm_slideshow_item_sorted_insert()
20102     *
20103     * @ingroup Slideshow
20104     */
20105    EAPI Elm_Slideshow_Item *elm_slideshow_item_add(Evas_Object *obj, const Elm_Slideshow_Item_Class *itc, const void *data) EINA_ARG_NONNULL(1);
20106
20107    /**
20108     * Insert a new item into the given slideshow widget, using the @p func
20109     * function to sort items (by item handles).
20110     *
20111     * @param obj The slideshow object
20112     * @param itc The item class for the item
20113     * @param data The item's data
20114     * @param func The comparing function to be used to sort slideshow
20115     * items <b>by #Elm_Slideshow_Item item handles</b>
20116     * @return Returns The slideshow item handle, on success, or
20117     * @c NULL, on errors
20118     *
20119     * Add a new item to @p obj's internal list of items, in a position
20120     * determined by the @p func comparing function. The item's class
20121     * must contain the function really fetching the image object to
20122     * show for this item, which could be an Evas image object or an
20123     * Elementary photo, for example. The @p data parameter is going to
20124     * be passed to both class functions of the item.
20125     *
20126     * @see #Elm_Slideshow_Item_Class
20127     * @see elm_slideshow_item_add()
20128     *
20129     * @ingroup Slideshow
20130     */
20131    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);
20132
20133    /**
20134     * Display a given slideshow widget's item, programmatically.
20135     *
20136     * @param obj The slideshow object
20137     * @param item The item to display on @p obj's viewport
20138     *
20139     * The change between the current item and @p item will use the
20140     * transition @p obj is set to use (@see
20141     * elm_slideshow_transition_set()).
20142     *
20143     * @ingroup Slideshow
20144     */
20145    EAPI void                elm_slideshow_show(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20146
20147    /**
20148     * Slide to the @b next item, in a given slideshow widget
20149     *
20150     * @param obj The slideshow object
20151     *
20152     * The sliding animation @p obj is set to use will be the
20153     * transition effect used, after this call is issued.
20154     *
20155     * @note If the end of the slideshow's internal list of items is
20156     * reached, it'll wrap around to the list's beginning, again.
20157     *
20158     * @ingroup Slideshow
20159     */
20160    EAPI void                elm_slideshow_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
20161
20162    /**
20163     * Slide to the @b previous item, in a given slideshow widget
20164     *
20165     * @param obj The slideshow object
20166     *
20167     * The sliding animation @p obj is set to use will be the
20168     * transition effect used, after this call is issued.
20169     *
20170     * @note If the beginning of the slideshow's internal list of items
20171     * is reached, it'll wrap around to the list's end, again.
20172     *
20173     * @ingroup Slideshow
20174     */
20175    EAPI void                elm_slideshow_previous(Evas_Object *obj) EINA_ARG_NONNULL(1);
20176
20177    /**
20178     * Returns the list of sliding transition/effect names available, for a
20179     * given slideshow widget.
20180     *
20181     * @param obj The slideshow object
20182     * @return The list of transitions (list of @b stringshared strings
20183     * as data)
20184     *
20185     * The transitions, which come from @p obj's theme, must be an EDC
20186     * data item named @c "transitions" on the theme file, with (prefix)
20187     * names of EDC programs actually implementing them.
20188     *
20189     * The available transitions for slideshows on the default theme are:
20190     * - @c "fade" - the current item fades out, while the new one
20191     *   fades in to the slideshow's viewport.
20192     * - @c "black_fade" - the current item fades to black, and just
20193     *   then, the new item will fade in.
20194     * - @c "horizontal" - the current item slides horizontally, until
20195     *   it gets out of the slideshow's viewport, while the new item
20196     *   comes from the left to take its place.
20197     * - @c "vertical" - the current item slides vertically, until it
20198     *   gets out of the slideshow's viewport, while the new item comes
20199     *   from the bottom to take its place.
20200     * - @c "square" - the new item starts to appear from the middle of
20201     *   the current one, but with a tiny size, growing until its
20202     *   target (full) size and covering the old one.
20203     *
20204     * @warning The stringshared strings get no new references
20205     * exclusive to the user grabbing the list, here, so if you'd like
20206     * to use them out of this call's context, you'd better @c
20207     * eina_stringshare_ref() them.
20208     *
20209     * @see elm_slideshow_transition_set()
20210     *
20211     * @ingroup Slideshow
20212     */
20213    EAPI const Eina_List    *elm_slideshow_transitions_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20214
20215    /**
20216     * Set the current slide transition/effect in use for a given
20217     * slideshow widget
20218     *
20219     * @param obj The slideshow object
20220     * @param transition The new transition's name string
20221     *
20222     * If @p transition is implemented in @p obj's theme (i.e., is
20223     * contained in the list returned by
20224     * elm_slideshow_transitions_get()), this new sliding effect will
20225     * be used on the widget.
20226     *
20227     * @see elm_slideshow_transitions_get() for more details
20228     *
20229     * @ingroup Slideshow
20230     */
20231    EAPI void                elm_slideshow_transition_set(Evas_Object *obj, const char *transition) EINA_ARG_NONNULL(1);
20232
20233    /**
20234     * Get the current slide transition/effect in use for a given
20235     * slideshow widget
20236     *
20237     * @param obj The slideshow object
20238     * @return The current transition's name
20239     *
20240     * @see elm_slideshow_transition_set() for more details
20241     *
20242     * @ingroup Slideshow
20243     */
20244    EAPI const char         *elm_slideshow_transition_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20245
20246    /**
20247     * Set the interval between each image transition on a given
20248     * slideshow widget, <b>and start the slideshow, itself</b>
20249     *
20250     * @param obj The slideshow object
20251     * @param timeout The new displaying timeout for images
20252     *
20253     * After this call, the slideshow widget will start cycling its
20254     * view, sequentially and automatically, with the images of the
20255     * items it has. The time between each new image displayed is going
20256     * to be @p timeout, in @b seconds. If a different timeout was set
20257     * previously and an slideshow was in progress, it will continue
20258     * with the new time between transitions, after this call.
20259     *
20260     * @note A value less than or equal to 0 on @p timeout will disable
20261     * the widget's internal timer, thus halting any slideshow which
20262     * could be happening on @p obj.
20263     *
20264     * @see elm_slideshow_timeout_get()
20265     *
20266     * @ingroup Slideshow
20267     */
20268    EAPI void                elm_slideshow_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
20269
20270    /**
20271     * Get the interval set for image transitions on a given slideshow
20272     * widget.
20273     *
20274     * @param obj The slideshow object
20275     * @return Returns the timeout set on it
20276     *
20277     * @see elm_slideshow_timeout_set() for more details
20278     *
20279     * @ingroup Slideshow
20280     */
20281    EAPI double              elm_slideshow_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20282
20283    /**
20284     * Set if, after a slideshow is started, for a given slideshow
20285     * widget, its items should be displayed cyclically or not.
20286     *
20287     * @param obj The slideshow object
20288     * @param loop Use @c EINA_TRUE to make it cycle through items or
20289     * @c EINA_FALSE for it to stop at the end of @p obj's internal
20290     * list of items
20291     *
20292     * @note elm_slideshow_next() and elm_slideshow_previous() will @b
20293     * ignore what is set by this functions, i.e., they'll @b always
20294     * cycle through items. This affects only the "automatic"
20295     * slideshow, as set by elm_slideshow_timeout_set().
20296     *
20297     * @see elm_slideshow_loop_get()
20298     *
20299     * @ingroup Slideshow
20300     */
20301    EAPI void                elm_slideshow_loop_set(Evas_Object *obj, Eina_Bool loop) EINA_ARG_NONNULL(1);
20302
20303    /**
20304     * Get if, after a slideshow is started, for a given slideshow
20305     * widget, its items are to be displayed cyclically or not.
20306     *
20307     * @param obj The slideshow object
20308     * @return @c EINA_TRUE, if the items in @p obj will be cycled
20309     * through or @c EINA_FALSE, otherwise
20310     *
20311     * @see elm_slideshow_loop_set() for more details
20312     *
20313     * @ingroup Slideshow
20314     */
20315    EAPI Eina_Bool           elm_slideshow_loop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20316
20317    /**
20318     * Remove all items from a given slideshow widget
20319     *
20320     * @param obj The slideshow object
20321     *
20322     * This removes (and deletes) all items in @p obj, leaving it
20323     * empty.
20324     *
20325     * @see elm_slideshow_item_del(), to remove just one item.
20326     *
20327     * @ingroup Slideshow
20328     */
20329    EAPI void                elm_slideshow_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
20330
20331    /**
20332     * Get the internal list of items in a given slideshow widget.
20333     *
20334     * @param obj The slideshow object
20335     * @return The list of items (#Elm_Slideshow_Item as data) or
20336     * @c NULL on errors.
20337     *
20338     * This list is @b not to be modified in any way and must not be
20339     * freed. Use the list members with functions like
20340     * elm_slideshow_item_del(), elm_slideshow_item_data_get().
20341     *
20342     * @warning This list is only valid until @p obj object's internal
20343     * items list is changed. It should be fetched again with another
20344     * call to this function when changes happen.
20345     *
20346     * @ingroup Slideshow
20347     */
20348    EAPI const Eina_List    *elm_slideshow_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20349
20350    /**
20351     * Delete a given item from a slideshow widget.
20352     *
20353     * @param item The slideshow item
20354     *
20355     * @ingroup Slideshow
20356     */
20357    EAPI void                elm_slideshow_item_del(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20358
20359    /**
20360     * Return the data associated with a given slideshow item
20361     *
20362     * @param item The slideshow item
20363     * @return Returns the data associated to this item
20364     *
20365     * @ingroup Slideshow
20366     */
20367    EAPI void               *elm_slideshow_item_data_get(const Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20368
20369    /**
20370     * Returns the currently displayed item, in a given slideshow widget
20371     *
20372     * @param obj The slideshow object
20373     * @return A handle to the item being displayed in @p obj or
20374     * @c NULL, if none is (and on errors)
20375     *
20376     * @ingroup Slideshow
20377     */
20378    EAPI Elm_Slideshow_Item *elm_slideshow_item_current_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20379
20380    /**
20381     * Get the real Evas object created to implement the view of a
20382     * given slideshow item
20383     *
20384     * @param item The slideshow item.
20385     * @return the Evas object implementing this item's view.
20386     *
20387     * This returns the actual Evas object used to implement the
20388     * specified slideshow item's view. This may be @c NULL, as it may
20389     * not have been created or may have been deleted, at any time, by
20390     * the slideshow. <b>Do not modify this object</b> (move, resize,
20391     * show, hide, etc.), as the slideshow is controlling it. This
20392     * function is for querying, emitting custom signals or hooking
20393     * lower level callbacks for events on that object. Do not delete
20394     * this object under any circumstances.
20395     *
20396     * @see elm_slideshow_item_data_get()
20397     *
20398     * @ingroup Slideshow
20399     */
20400    EAPI Evas_Object*        elm_slideshow_item_object_get(const Elm_Slideshow_Item* item) EINA_ARG_NONNULL(1);
20401
20402    /**
20403     * Get the the item, in a given slideshow widget, placed at
20404     * position @p nth, in its internal items list
20405     *
20406     * @param obj The slideshow object
20407     * @param nth The number of the item to grab a handle to (0 being
20408     * the first)
20409     * @return The item stored in @p obj at position @p nth or @c NULL,
20410     * if there's no item with that index (and on errors)
20411     *
20412     * @ingroup Slideshow
20413     */
20414    EAPI Elm_Slideshow_Item *elm_slideshow_item_nth_get(const Evas_Object *obj, unsigned int nth) EINA_ARG_NONNULL(1);
20415
20416    /**
20417     * Set the current slide layout in use for a given slideshow widget
20418     *
20419     * @param obj The slideshow object
20420     * @param layout The new layout's name string
20421     *
20422     * If @p layout is implemented in @p obj's theme (i.e., is contained
20423     * in the list returned by elm_slideshow_layouts_get()), this new
20424     * images layout will be used on the widget.
20425     *
20426     * @see elm_slideshow_layouts_get() for more details
20427     *
20428     * @ingroup Slideshow
20429     */
20430    EAPI void                elm_slideshow_layout_set(Evas_Object *obj, const char *layout) EINA_ARG_NONNULL(1);
20431
20432    /**
20433     * Get the current slide layout in use for a given slideshow widget
20434     *
20435     * @param obj The slideshow object
20436     * @return The current layout's name
20437     *
20438     * @see elm_slideshow_layout_set() for more details
20439     *
20440     * @ingroup Slideshow
20441     */
20442    EAPI const char         *elm_slideshow_layout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20443
20444    /**
20445     * Returns the list of @b layout names available, for a given
20446     * slideshow widget.
20447     *
20448     * @param obj The slideshow object
20449     * @return The list of layouts (list of @b stringshared strings
20450     * as data)
20451     *
20452     * Slideshow layouts will change how the widget is to dispose each
20453     * image item in its viewport, with regard to cropping, scaling,
20454     * etc.
20455     *
20456     * The layouts, which come from @p obj's theme, must be an EDC
20457     * data item name @c "layouts" on the theme file, with (prefix)
20458     * names of EDC programs actually implementing them.
20459     *
20460     * The available layouts for slideshows on the default theme are:
20461     * - @c "fullscreen" - item images with original aspect, scaled to
20462     *   touch top and down slideshow borders or, if the image's heigh
20463     *   is not enough, left and right slideshow borders.
20464     * - @c "not_fullscreen" - the same behavior as the @c "fullscreen"
20465     *   one, but always leaving 10% of the slideshow's dimensions of
20466     *   distance between the item image's borders and the slideshow
20467     *   borders, for each axis.
20468     *
20469     * @warning The stringshared strings get no new references
20470     * exclusive to the user grabbing the list, here, so if you'd like
20471     * to use them out of this call's context, you'd better @c
20472     * eina_stringshare_ref() them.
20473     *
20474     * @see elm_slideshow_layout_set()
20475     *
20476     * @ingroup Slideshow
20477     */
20478    EAPI const Eina_List    *elm_slideshow_layouts_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20479
20480    /**
20481     * Set the number of items to cache, on a given slideshow widget,
20482     * <b>before the current item</b>
20483     *
20484     * @param obj The slideshow object
20485     * @param count Number of items to cache before the current one
20486     *
20487     * The default value for this property is @c 2. See
20488     * @ref Slideshow_Caching "slideshow caching" for more details.
20489     *
20490     * @see elm_slideshow_cache_before_get()
20491     *
20492     * @ingroup Slideshow
20493     */
20494    EAPI void                elm_slideshow_cache_before_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
20495
20496    /**
20497     * Retrieve the number of items to cache, on a given slideshow widget,
20498     * <b>before the current item</b>
20499     *
20500     * @param obj The slideshow object
20501     * @return The number of items set to be cached before the current one
20502     *
20503     * @see elm_slideshow_cache_before_set() for more details
20504     *
20505     * @ingroup Slideshow
20506     */
20507    EAPI int                 elm_slideshow_cache_before_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20508
20509    /**
20510     * Set the number of items to cache, on a given slideshow widget,
20511     * <b>after the current item</b>
20512     *
20513     * @param obj The slideshow object
20514     * @param count Number of items to cache after the current one
20515     *
20516     * The default value for this property is @c 2. See
20517     * @ref Slideshow_Caching "slideshow caching" for more details.
20518     *
20519     * @see elm_slideshow_cache_after_get()
20520     *
20521     * @ingroup Slideshow
20522     */
20523    EAPI void                elm_slideshow_cache_after_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
20524
20525    /**
20526     * Retrieve the number of items to cache, on a given slideshow widget,
20527     * <b>after the current item</b>
20528     *
20529     * @param obj The slideshow object
20530     * @return The number of items set to be cached after the current one
20531     *
20532     * @see elm_slideshow_cache_after_set() for more details
20533     *
20534     * @ingroup Slideshow
20535     */
20536    EAPI int                 elm_slideshow_cache_after_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20537
20538    /**
20539     * Get the number of items stored in a given slideshow widget
20540     *
20541     * @param obj The slideshow object
20542     * @return The number of items on @p obj, at the moment of this call
20543     *
20544     * @ingroup Slideshow
20545     */
20546    EAPI unsigned int        elm_slideshow_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20547
20548    /**
20549     * @}
20550     */
20551
20552    /**
20553     * @defgroup Fileselector File Selector
20554     *
20555     * @image html img/widget/fileselector/preview-00.png
20556     * @image latex img/widget/fileselector/preview-00.eps
20557     *
20558     * A file selector is a widget that allows a user to navigate
20559     * through a file system, reporting file selections back via its
20560     * API.
20561     *
20562     * It contains shortcut buttons for home directory (@c ~) and to
20563     * jump one directory upwards (..), as well as cancel/ok buttons to
20564     * confirm/cancel a given selection. After either one of those two
20565     * former actions, the file selector will issue its @c "done" smart
20566     * callback.
20567     *
20568     * There's a text entry on it, too, showing the name of the current
20569     * selection. There's the possibility of making it editable, so it
20570     * is useful on file saving dialogs on applications, where one
20571     * gives a file name to save contents to, in a given directory in
20572     * the system. This custom file name will be reported on the @c
20573     * "done" smart callback (explained in sequence).
20574     *
20575     * Finally, it has a view to display file system items into in two
20576     * possible forms:
20577     * - list
20578     * - grid
20579     *
20580     * If Elementary is built with support of the Ethumb thumbnailing
20581     * library, the second form of view will display preview thumbnails
20582     * of files which it supports.
20583     *
20584     * Smart callbacks one can register to:
20585     *
20586     * - @c "selected" - the user has clicked on a file (when not in
20587     *      folders-only mode) or directory (when in folders-only mode)
20588     * - @c "directory,open" - the list has been populated with new
20589     *      content (@c event_info is a pointer to the directory's
20590     *      path, a @b stringshared string)
20591     * - @c "done" - the user has clicked on the "ok" or "cancel"
20592     *      buttons (@c event_info is a pointer to the selection's
20593     *      path, a @b stringshared string)
20594     *
20595     * Here is an example on its usage:
20596     * @li @ref fileselector_example
20597     */
20598
20599    /**
20600     * @addtogroup Fileselector
20601     * @{
20602     */
20603
20604    /**
20605     * Defines how a file selector widget is to layout its contents
20606     * (file system entries).
20607     */
20608    typedef enum _Elm_Fileselector_Mode
20609      {
20610         ELM_FILESELECTOR_LIST = 0, /**< layout as a list */
20611         ELM_FILESELECTOR_GRID, /**< layout as a grid */
20612         ELM_FILESELECTOR_LAST /**< sentinel (helper) value, not used */
20613      } Elm_Fileselector_Mode;
20614
20615    /**
20616     * Add a new file selector widget to the given parent Elementary
20617     * (container) object
20618     *
20619     * @param parent The parent object
20620     * @return a new file selector widget handle or @c NULL, on errors
20621     *
20622     * This function inserts a new file selector widget on the canvas.
20623     *
20624     * @ingroup Fileselector
20625     */
20626    EAPI Evas_Object          *elm_fileselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20627
20628    /**
20629     * Enable/disable the file name entry box where the user can type
20630     * in a name for a file, in a given file selector widget
20631     *
20632     * @param obj The file selector object
20633     * @param is_save @c EINA_TRUE to make the file selector a "saving
20634     * dialog", @c EINA_FALSE otherwise
20635     *
20636     * Having the entry editable is useful on file saving dialogs on
20637     * applications, where one gives a file name to save contents to,
20638     * in a given directory in the system. This custom file name will
20639     * be reported on the @c "done" smart callback.
20640     *
20641     * @see elm_fileselector_is_save_get()
20642     *
20643     * @ingroup Fileselector
20644     */
20645    EAPI void                  elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save) EINA_ARG_NONNULL(1);
20646
20647    /**
20648     * Get whether the given file selector is in "saving dialog" mode
20649     *
20650     * @param obj The file selector object
20651     * @return @c EINA_TRUE, if the file selector is in "saving dialog"
20652     * mode, @c EINA_FALSE otherwise (and on errors)
20653     *
20654     * @see elm_fileselector_is_save_set() for more details
20655     *
20656     * @ingroup Fileselector
20657     */
20658    EAPI Eina_Bool             elm_fileselector_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20659
20660    /**
20661     * Enable/disable folder-only view for a given file selector widget
20662     *
20663     * @param obj The file selector object
20664     * @param only @c EINA_TRUE to make @p obj only display
20665     * directories, @c EINA_FALSE to make files to be displayed in it
20666     * too
20667     *
20668     * If enabled, the widget's view will only display folder items,
20669     * naturally.
20670     *
20671     * @see elm_fileselector_folder_only_get()
20672     *
20673     * @ingroup Fileselector
20674     */
20675    EAPI void                  elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only) EINA_ARG_NONNULL(1);
20676
20677    /**
20678     * Get whether folder-only view is set for a given file selector
20679     * widget
20680     *
20681     * @param obj The file selector object
20682     * @return only @c EINA_TRUE if @p obj is only displaying
20683     * directories, @c EINA_FALSE if files are being displayed in it
20684     * too (and on errors)
20685     *
20686     * @see elm_fileselector_folder_only_get()
20687     *
20688     * @ingroup Fileselector
20689     */
20690    EAPI Eina_Bool             elm_fileselector_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20691
20692    /**
20693     * Enable/disable the "ok" and "cancel" buttons on a given file
20694     * selector widget
20695     *
20696     * @param obj The file selector object
20697     * @param only @c EINA_TRUE to show them, @c EINA_FALSE to hide.
20698     *
20699     * @note A file selector without those buttons will never emit the
20700     * @c "done" smart event, and is only usable if one is just hooking
20701     * to the other two events.
20702     *
20703     * @see elm_fileselector_buttons_ok_cancel_get()
20704     *
20705     * @ingroup Fileselector
20706     */
20707    EAPI void                  elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons) EINA_ARG_NONNULL(1);
20708
20709    /**
20710     * Get whether the "ok" and "cancel" buttons on a given file
20711     * selector widget are being shown.
20712     *
20713     * @param obj The file selector object
20714     * @return @c EINA_TRUE if they are being shown, @c EINA_FALSE
20715     * otherwise (and on errors)
20716     *
20717     * @see elm_fileselector_buttons_ok_cancel_set() for more details
20718     *
20719     * @ingroup Fileselector
20720     */
20721    EAPI Eina_Bool             elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20722
20723    /**
20724     * Enable/disable a tree view in the given file selector widget,
20725     * <b>if it's in @c #ELM_FILESELECTOR_LIST mode</b>
20726     *
20727     * @param obj The file selector object
20728     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
20729     * disable
20730     *
20731     * In a tree view, arrows are created on the sides of directories,
20732     * allowing them to expand in place.
20733     *
20734     * @note If it's in other mode, the changes made by this function
20735     * will only be visible when one switches back to "list" mode.
20736     *
20737     * @see elm_fileselector_expandable_get()
20738     *
20739     * @ingroup Fileselector
20740     */
20741    EAPI void                  elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand) EINA_ARG_NONNULL(1);
20742
20743    /**
20744     * Get whether tree view is enabled for the given file selector
20745     * widget
20746     *
20747     * @param obj The file selector object
20748     * @return @c EINA_TRUE if @p obj is in tree view, @c EINA_FALSE
20749     * otherwise (and or errors)
20750     *
20751     * @see elm_fileselector_expandable_set() for more details
20752     *
20753     * @ingroup Fileselector
20754     */
20755    EAPI Eina_Bool             elm_fileselector_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20756
20757    /**
20758     * Set, programmatically, the @b directory that a given file
20759     * selector widget will display contents from
20760     *
20761     * @param obj The file selector object
20762     * @param path The path to display in @p obj
20763     *
20764     * This will change the @b directory that @p obj is displaying. It
20765     * will also clear the text entry area on the @p obj object, which
20766     * displays select files' names.
20767     *
20768     * @see elm_fileselector_path_get()
20769     *
20770     * @ingroup Fileselector
20771     */
20772    EAPI void                  elm_fileselector_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
20773
20774    /**
20775     * Get the parent directory's path that a given file selector
20776     * widget is displaying
20777     *
20778     * @param obj The file selector object
20779     * @return The (full) path of the directory the file selector is
20780     * displaying, a @b stringshared string
20781     *
20782     * @see elm_fileselector_path_set()
20783     *
20784     * @ingroup Fileselector
20785     */
20786    EAPI const char           *elm_fileselector_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20787
20788    /**
20789     * Set, programmatically, the currently selected file/directory in
20790     * the given file selector widget
20791     *
20792     * @param obj The file selector object
20793     * @param path The (full) path to a file or directory
20794     * @return @c EINA_TRUE on success, @c EINA_FALSE on failure. The
20795     * latter case occurs if the directory or file pointed to do not
20796     * exist.
20797     *
20798     * @see elm_fileselector_selected_get()
20799     *
20800     * @ingroup Fileselector
20801     */
20802    EAPI Eina_Bool             elm_fileselector_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
20803
20804    /**
20805     * Get the currently selected item's (full) path, in the given file
20806     * selector widget
20807     *
20808     * @param obj The file selector object
20809     * @return The absolute path of the selected item, a @b
20810     * stringshared string
20811     *
20812     * @note Custom editions on @p obj object's text entry, if made,
20813     * will appear on the return string of this function, naturally.
20814     *
20815     * @see elm_fileselector_selected_set() for more details
20816     *
20817     * @ingroup Fileselector
20818     */
20819    EAPI const char           *elm_fileselector_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20820
20821    /**
20822     * Set the mode in which a given file selector widget will display
20823     * (layout) file system entries in its view
20824     *
20825     * @param obj The file selector object
20826     * @param mode The mode of the fileselector, being it one of
20827     * #ELM_FILESELECTOR_LIST (default) or #ELM_FILESELECTOR_GRID. The
20828     * first one, naturally, will display the files in a list. The
20829     * latter will make the widget to display its entries in a grid
20830     * form.
20831     *
20832     * @note By using elm_fileselector_expandable_set(), the user may
20833     * trigger a tree view for that list.
20834     *
20835     * @note If Elementary is built with support of the Ethumb
20836     * thumbnailing library, the second form of view will display
20837     * preview thumbnails of files which it supports. You must have
20838     * elm_need_ethumb() called in your Elementary for thumbnailing to
20839     * work, though.
20840     *
20841     * @see elm_fileselector_expandable_set().
20842     * @see elm_fileselector_mode_get().
20843     *
20844     * @ingroup Fileselector
20845     */
20846    EAPI void                  elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode) EINA_ARG_NONNULL(1);
20847
20848    /**
20849     * Get the mode in which a given file selector widget is displaying
20850     * (layouting) file system entries in its view
20851     *
20852     * @param obj The fileselector object
20853     * @return The mode in which the fileselector is at
20854     *
20855     * @see elm_fileselector_mode_set() for more details
20856     *
20857     * @ingroup Fileselector
20858     */
20859    EAPI Elm_Fileselector_Mode elm_fileselector_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20860
20861    /**
20862     * @}
20863     */
20864
20865    /**
20866     * @defgroup Progressbar Progress bar
20867     *
20868     * The progress bar is a widget for visually representing the
20869     * progress status of a given job/task.
20870     *
20871     * A progress bar may be horizontal or vertical. It may display an
20872     * icon besides it, as well as primary and @b units labels. The
20873     * former is meant to label the widget as a whole, while the
20874     * latter, which is formatted with floating point values (and thus
20875     * accepts a <c>printf</c>-style format string, like <c>"%1.2f
20876     * units"</c>), is meant to label the widget's <b>progress
20877     * value</b>. Label, icon and unit strings/objects are @b optional
20878     * for progress bars.
20879     *
20880     * A progress bar may be @b inverted, in which state it gets its
20881     * values inverted, with high values being on the left or top and
20882     * low values on the right or bottom, as opposed to normally have
20883     * the low values on the former and high values on the latter,
20884     * respectively, for horizontal and vertical modes.
20885     *
20886     * The @b span of the progress, as set by
20887     * elm_progressbar_span_size_set(), is its length (horizontally or
20888     * vertically), unless one puts size hints on the widget to expand
20889     * on desired directions, by any container. That length will be
20890     * scaled by the object or applications scaling factor. At any
20891     * point code can query the progress bar for its value with
20892     * elm_progressbar_value_get().
20893     *
20894     * Available widget styles for progress bars:
20895     * - @c "default"
20896     * - @c "wheel" (simple style, no text, no progression, only
20897     *      "pulse" effect is available)
20898     *
20899     * Default contents parts of the progressbar widget that you can use for are:
20900     * @li "elm.swallow.content" - A icon of the progressbar
20901     * 
20902     * Here is an example on its usage:
20903     * @li @ref progressbar_example
20904     */
20905
20906    /**
20907     * Add a new progress bar widget to the given parent Elementary
20908     * (container) object
20909     *
20910     * @param parent The parent object
20911     * @return a new progress bar widget handle or @c NULL, on errors
20912     *
20913     * This function inserts a new progress bar widget on the canvas.
20914     *
20915     * @ingroup Progressbar
20916     */
20917    EAPI Evas_Object *elm_progressbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20918
20919    /**
20920     * Set whether a given progress bar widget is at "pulsing mode" or
20921     * not.
20922     *
20923     * @param obj The progress bar object
20924     * @param pulse @c EINA_TRUE to put @p obj in pulsing mode,
20925     * @c EINA_FALSE to put it back to its default one
20926     *
20927     * By default, progress bars will display values from the low to
20928     * high value boundaries. There are, though, contexts in which the
20929     * state of progression of a given task is @b unknown.  For those,
20930     * one can set a progress bar widget to a "pulsing state", to give
20931     * the user an idea that some computation is being held, but
20932     * without exact progress values. In the default theme it will
20933     * animate its bar with the contents filling in constantly and back
20934     * to non-filled, in a loop. To start and stop this pulsing
20935     * animation, one has to explicitly call elm_progressbar_pulse().
20936     *
20937     * @see elm_progressbar_pulse_get()
20938     * @see elm_progressbar_pulse()
20939     *
20940     * @ingroup Progressbar
20941     */
20942    EAPI void         elm_progressbar_pulse_set(Evas_Object *obj, Eina_Bool pulse) EINA_ARG_NONNULL(1);
20943
20944    /**
20945     * Get whether a given progress bar widget is at "pulsing mode" or
20946     * not.
20947     *
20948     * @param obj The progress bar object
20949     * @return @c EINA_TRUE, if @p obj is in pulsing mode, @c EINA_FALSE
20950     * if it's in the default one (and on errors)
20951     *
20952     * @ingroup Progressbar
20953     */
20954    EAPI Eina_Bool    elm_progressbar_pulse_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20955
20956    /**
20957     * Start/stop a given progress bar "pulsing" animation, if its
20958     * under that mode
20959     *
20960     * @param obj The progress bar object
20961     * @param state @c EINA_TRUE, to @b start the pulsing animation,
20962     * @c EINA_FALSE to @b stop it
20963     *
20964     * @note This call won't do anything if @p obj is not under "pulsing mode".
20965     *
20966     * @see elm_progressbar_pulse_set() for more details.
20967     *
20968     * @ingroup Progressbar
20969     */
20970    EAPI void         elm_progressbar_pulse(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
20971
20972    /**
20973     * Set the progress value (in percentage) on a given progress bar
20974     * widget
20975     *
20976     * @param obj The progress bar object
20977     * @param val The progress value (@b must be between @c 0.0 and @c
20978     * 1.0)
20979     *
20980     * Use this call to set progress bar levels.
20981     *
20982     * @note If you passes a value out of the specified range for @p
20983     * val, it will be interpreted as the @b closest of the @b boundary
20984     * values in the range.
20985     *
20986     * @ingroup Progressbar
20987     */
20988    EAPI void         elm_progressbar_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
20989
20990    /**
20991     * Get the progress value (in percentage) on a given progress bar
20992     * widget
20993     *
20994     * @param obj The progress bar object
20995     * @return The value of the progressbar
20996     *
20997     * @see elm_progressbar_value_set() for more details
20998     *
20999     * @ingroup Progressbar
21000     */
21001    EAPI double       elm_progressbar_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21002
21003    /**
21004     * Set the label of a given progress bar widget
21005     *
21006     * @param obj The progress bar object
21007     * @param label The text label string, in UTF-8
21008     *
21009     * @ingroup Progressbar
21010     * @deprecated use elm_object_text_set() instead.
21011     */
21012    EINA_DEPRECATED EAPI void         elm_progressbar_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
21013
21014    /**
21015     * Get the label of a given progress bar widget
21016     *
21017     * @param obj The progressbar object
21018     * @return The text label string, in UTF-8
21019     *
21020     * @ingroup Progressbar
21021     * @deprecated use elm_object_text_set() instead.
21022     */
21023    EINA_DEPRECATED EAPI const char  *elm_progressbar_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21024
21025    /**
21026     * Set the icon object of a given progress bar widget
21027     *
21028     * @param obj The progress bar object
21029     * @param icon The icon object
21030     *
21031     * Use this call to decorate @p obj with an icon next to it.
21032     *
21033     * @note Once the icon object is set, a previously set one will be
21034     * deleted. If you want to keep that old content object, use the
21035     * elm_progressbar_icon_unset() function.
21036     *
21037     * @see elm_progressbar_icon_get()
21038     * @deprecated use elm_object_content_set() instead.
21039     *
21040     * @ingroup Progressbar
21041     */
21042    EAPI void         elm_progressbar_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
21043
21044    /**
21045     * Retrieve the icon object set for a given progress bar widget
21046     *
21047     * @param obj The progress bar object
21048     * @return The icon object's handle, if @p obj had one set, or @c NULL,
21049     * otherwise (and on errors)
21050     *
21051     * @see elm_progressbar_icon_set() for more details
21052     * @deprecated use elm_object_content_set() instead.
21053     *
21054     * @ingroup Progressbar
21055     */
21056    EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21057
21058    /**
21059     * Unset an icon set on a given progress bar widget
21060     *
21061     * @param obj The progress bar object
21062     * @return The icon object that was being used, if any was set, or
21063     * @c NULL, otherwise (and on errors)
21064     *
21065     * This call will unparent and return the icon object which was set
21066     * for this widget, previously, on success.
21067     *
21068     * @see elm_progressbar_icon_set() for more details
21069     * @deprecated use elm_object_content_unset() instead.
21070     *
21071     * @ingroup Progressbar
21072     */
21073    EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
21074
21075    /**
21076     * Set the (exact) length of the bar region of a given progress bar
21077     * widget
21078     *
21079     * @param obj The progress bar object
21080     * @param size The length of the progress bar's bar region
21081     *
21082     * This sets the minimum width (when in horizontal mode) or height
21083     * (when in vertical mode) of the actual bar area of the progress
21084     * bar @p obj. This in turn affects the object's minimum size. Use
21085     * this when you're not setting other size hints expanding on the
21086     * given direction (like weight and alignment hints) and you would
21087     * like it to have a specific size.
21088     *
21089     * @note Icon, label and unit text around @p obj will require their
21090     * own space, which will make @p obj to require more the @p size,
21091     * actually.
21092     *
21093     * @see elm_progressbar_span_size_get()
21094     *
21095     * @ingroup Progressbar
21096     */
21097    EAPI void         elm_progressbar_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
21098
21099    /**
21100     * Get the length set for the bar region of a given progress bar
21101     * widget
21102     *
21103     * @param obj The progress bar object
21104     * @return The length of the progress bar's bar region
21105     *
21106     * If that size was not set previously, with
21107     * elm_progressbar_span_size_set(), this call will return @c 0.
21108     *
21109     * @ingroup Progressbar
21110     */
21111    EAPI Evas_Coord   elm_progressbar_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21112
21113    /**
21114     * Set the format string for a given progress bar widget's units
21115     * label
21116     *
21117     * @param obj The progress bar object
21118     * @param format The format string for @p obj's units label
21119     *
21120     * If @c NULL is passed on @p format, it will make @p obj's units
21121     * area to be hidden completely. If not, it'll set the <b>format
21122     * string</b> for the units label's @b text. The units label is
21123     * provided a floating point value, so the units text is up display
21124     * at most one floating point falue. Note that the units label is
21125     * optional. Use a format string such as "%1.2f meters" for
21126     * example.
21127     *
21128     * @note The default format string for a progress bar is an integer
21129     * percentage, as in @c "%.0f %%".
21130     *
21131     * @see elm_progressbar_unit_format_get()
21132     *
21133     * @ingroup Progressbar
21134     */
21135    EAPI void         elm_progressbar_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
21136
21137    /**
21138     * Retrieve the format string set for a given progress bar widget's
21139     * units label
21140     *
21141     * @param obj The progress bar object
21142     * @return The format set string for @p obj's units label or
21143     * @c NULL, if none was set (and on errors)
21144     *
21145     * @see elm_progressbar_unit_format_set() for more details
21146     *
21147     * @ingroup Progressbar
21148     */
21149    EAPI const char  *elm_progressbar_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21150
21151    /**
21152     * Set the orientation of a given progress bar widget
21153     *
21154     * @param obj The progress bar object
21155     * @param horizontal Use @c EINA_TRUE to make @p obj to be
21156     * @b horizontal, @c EINA_FALSE to make it @b vertical
21157     *
21158     * Use this function to change how your progress bar is to be
21159     * disposed: vertically or horizontally.
21160     *
21161     * @see elm_progressbar_horizontal_get()
21162     *
21163     * @ingroup Progressbar
21164     */
21165    EAPI void         elm_progressbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
21166
21167    /**
21168     * Retrieve the orientation of a given progress bar widget
21169     *
21170     * @param obj The progress bar object
21171     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
21172     * @c EINA_FALSE if it's @b vertical (and on errors)
21173     *
21174     * @see elm_progressbar_horizontal_set() for more details
21175     *
21176     * @ingroup Progressbar
21177     */
21178    EAPI Eina_Bool    elm_progressbar_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21179
21180    /**
21181     * Invert a given progress bar widget's displaying values order
21182     *
21183     * @param obj The progress bar object
21184     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
21185     * @c EINA_FALSE to bring it back to default, non-inverted values.
21186     *
21187     * A progress bar may be @b inverted, in which state it gets its
21188     * values inverted, with high values being on the left or top and
21189     * low values on the right or bottom, as opposed to normally have
21190     * the low values on the former and high values on the latter,
21191     * respectively, for horizontal and vertical modes.
21192     *
21193     * @see elm_progressbar_inverted_get()
21194     *
21195     * @ingroup Progressbar
21196     */
21197    EAPI void         elm_progressbar_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
21198
21199    /**
21200     * Get whether a given progress bar widget's displaying values are
21201     * inverted or not
21202     *
21203     * @param obj The progress bar object
21204     * @return @c EINA_TRUE, if @p obj has inverted values,
21205     * @c EINA_FALSE otherwise (and on errors)
21206     *
21207     * @see elm_progressbar_inverted_set() for more details
21208     *
21209     * @ingroup Progressbar
21210     */
21211    EAPI Eina_Bool    elm_progressbar_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21212
21213    /**
21214     * @defgroup Separator Separator
21215     *
21216     * @brief Separator is a very thin object used to separate other objects.
21217     *
21218     * A separator can be vertical or horizontal.
21219     *
21220     * @ref tutorial_separator is a good example of how to use a separator.
21221     * @{
21222     */
21223    /**
21224     * @brief Add a separator object to @p parent
21225     *
21226     * @param parent The parent object
21227     *
21228     * @return The separator object, or NULL upon failure
21229     */
21230    EAPI Evas_Object *elm_separator_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21231    /**
21232     * @brief Set the horizontal mode of a separator object
21233     *
21234     * @param obj The separator object
21235     * @param horizontal If true, the separator is horizontal
21236     */
21237    EAPI void         elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
21238    /**
21239     * @brief Get the horizontal mode of a separator object
21240     *
21241     * @param obj The separator object
21242     * @return If true, the separator is horizontal
21243     *
21244     * @see elm_separator_horizontal_set()
21245     */
21246    EAPI Eina_Bool    elm_separator_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21247    /**
21248     * @}
21249     */
21250
21251    /**
21252     * @defgroup Spinner Spinner
21253     * @ingroup Elementary
21254     *
21255     * @image html img/widget/spinner/preview-00.png
21256     * @image latex img/widget/spinner/preview-00.eps
21257     *
21258     * A spinner is a widget which allows the user to increase or decrease
21259     * numeric values using arrow buttons, or edit values directly, clicking
21260     * over it and typing the new value.
21261     *
21262     * By default the spinner will not wrap and has a label
21263     * of "%.0f" (just showing the integer value of the double).
21264     *
21265     * A spinner has a label that is formatted with floating
21266     * point values and thus accepts a printf-style format string, like
21267     * ā€œ%1.2f unitsā€.
21268     *
21269     * It also allows specific values to be replaced by pre-defined labels.
21270     *
21271     * Smart callbacks one can register to:
21272     *
21273     * - "changed" - Whenever the spinner value is changed.
21274     * - "delay,changed" - A short time after the value is changed by the user.
21275     *    This will be called only when the user stops dragging for a very short
21276     *    period or when they release their finger/mouse, so it avoids possibly
21277     *    expensive reactions to the value change.
21278     *
21279     * Available styles for it:
21280     * - @c "default";
21281     * - @c "vertical": up/down buttons at the right side and text left aligned.
21282     *
21283     * Here is an example on its usage:
21284     * @ref spinner_example
21285     */
21286
21287    /**
21288     * @addtogroup Spinner
21289     * @{
21290     */
21291
21292    /**
21293     * Add a new spinner widget to the given parent Elementary
21294     * (container) object.
21295     *
21296     * @param parent The parent object.
21297     * @return a new spinner widget handle or @c NULL, on errors.
21298     *
21299     * This function inserts a new spinner widget on the canvas.
21300     *
21301     * @ingroup Spinner
21302     *
21303     */
21304    EAPI Evas_Object *elm_spinner_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21305
21306    /**
21307     * Set the format string of the displayed label.
21308     *
21309     * @param obj The spinner object.
21310     * @param fmt The format string for the label display.
21311     *
21312     * If @c NULL, this sets the format to "%.0f". If not it sets the format
21313     * string for the label text. The label text is provided a floating point
21314     * value, so the label text can display up to 1 floating point value.
21315     * Note that this is optional.
21316     *
21317     * Use a format string such as "%1.2f meters" for example, and it will
21318     * display values like: "3.14 meters" for a value equal to 3.14159.
21319     *
21320     * Default is "%0.f".
21321     *
21322     * @see elm_spinner_label_format_get()
21323     *
21324     * @ingroup Spinner
21325     */
21326    EAPI void         elm_spinner_label_format_set(Evas_Object *obj, const char *fmt) EINA_ARG_NONNULL(1);
21327
21328    /**
21329     * Get the label format of the spinner.
21330     *
21331     * @param obj The spinner object.
21332     * @return The text label format string in UTF-8.
21333     *
21334     * @see elm_spinner_label_format_set() for details.
21335     *
21336     * @ingroup Spinner
21337     */
21338    EAPI const char  *elm_spinner_label_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21339
21340    /**
21341     * Set the minimum and maximum values for the spinner.
21342     *
21343     * @param obj The spinner object.
21344     * @param min The minimum value.
21345     * @param max The maximum value.
21346     *
21347     * Define the allowed range of values to be selected by the user.
21348     *
21349     * If actual value is less than @p min, it will be updated to @p min. If it
21350     * is bigger then @p max, will be updated to @p max. Actual value can be
21351     * get with elm_spinner_value_get().
21352     *
21353     * By default, min is equal to 0, and max is equal to 100.
21354     *
21355     * @warning Maximum must be greater than minimum.
21356     *
21357     * @see elm_spinner_min_max_get()
21358     *
21359     * @ingroup Spinner
21360     */
21361    EAPI void         elm_spinner_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
21362
21363    /**
21364     * Get the minimum and maximum values of the spinner.
21365     *
21366     * @param obj The spinner object.
21367     * @param min Pointer where to store the minimum value.
21368     * @param max Pointer where to store the maximum value.
21369     *
21370     * @note If only one value is needed, the other pointer can be passed
21371     * as @c NULL.
21372     *
21373     * @see elm_spinner_min_max_set() for details.
21374     *
21375     * @ingroup Spinner
21376     */
21377    EAPI void         elm_spinner_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
21378
21379    /**
21380     * Set the step used to increment or decrement the spinner value.
21381     *
21382     * @param obj The spinner object.
21383     * @param step The step value.
21384     *
21385     * This value will be incremented or decremented to the displayed value.
21386     * It will be incremented while the user keep right or top arrow pressed,
21387     * and will be decremented while the user keep left or bottom arrow pressed.
21388     *
21389     * The interval to increment / decrement can be set with
21390     * elm_spinner_interval_set().
21391     *
21392     * By default step value is equal to 1.
21393     *
21394     * @see elm_spinner_step_get()
21395     *
21396     * @ingroup Spinner
21397     */
21398    EAPI void         elm_spinner_step_set(Evas_Object *obj, double step) EINA_ARG_NONNULL(1);
21399
21400    /**
21401     * Get the step used to increment or decrement the spinner value.
21402     *
21403     * @param obj The spinner object.
21404     * @return The step value.
21405     *
21406     * @see elm_spinner_step_get() for more details.
21407     *
21408     * @ingroup Spinner
21409     */
21410    EAPI double       elm_spinner_step_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21411
21412    /**
21413     * Set the value the spinner displays.
21414     *
21415     * @param obj The spinner object.
21416     * @param val The value to be displayed.
21417     *
21418     * Value will be presented on the label following format specified with
21419     * elm_spinner_format_set().
21420     *
21421     * @warning The value must to be between min and max values. This values
21422     * are set by elm_spinner_min_max_set().
21423     *
21424     * @see elm_spinner_value_get().
21425     * @see elm_spinner_format_set().
21426     * @see elm_spinner_min_max_set().
21427     *
21428     * @ingroup Spinner
21429     */
21430    EAPI void         elm_spinner_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
21431
21432    /**
21433     * Get the value displayed by the spinner.
21434     *
21435     * @param obj The spinner object.
21436     * @return The value displayed.
21437     *
21438     * @see elm_spinner_value_set() for details.
21439     *
21440     * @ingroup Spinner
21441     */
21442    EAPI double       elm_spinner_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21443
21444    /**
21445     * Set whether the spinner should wrap when it reaches its
21446     * minimum or maximum value.
21447     *
21448     * @param obj The spinner object.
21449     * @param wrap @c EINA_TRUE to enable wrap or @c EINA_FALSE to
21450     * disable it.
21451     *
21452     * Disabled by default. If disabled, when the user tries to increment the
21453     * value,
21454     * but displayed value plus step value is bigger than maximum value,
21455     * the spinner
21456     * won't allow it. The same happens when the user tries to decrement it,
21457     * but the value less step is less than minimum value.
21458     *
21459     * When wrap is enabled, in such situations it will allow these changes,
21460     * but will get the value that would be less than minimum and subtracts
21461     * from maximum. Or add the value that would be more than maximum to
21462     * the minimum.
21463     *
21464     * E.g.:
21465     * @li min value = 10
21466     * @li max value = 50
21467     * @li step value = 20
21468     * @li displayed value = 20
21469     *
21470     * When the user decrement value (using left or bottom arrow), it will
21471     * displays @c 40, because max - (min - (displayed - step)) is
21472     * @c 50 - (@c 10 - (@c 20 - @c 20)) = @c 40.
21473     *
21474     * @see elm_spinner_wrap_get().
21475     *
21476     * @ingroup Spinner
21477     */
21478    EAPI void         elm_spinner_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
21479
21480    /**
21481     * Get whether the spinner should wrap when it reaches its
21482     * minimum or maximum value.
21483     *
21484     * @param obj The spinner object
21485     * @return @c EINA_TRUE means wrap is enabled. @c EINA_FALSE indicates
21486     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
21487     *
21488     * @see elm_spinner_wrap_set() for details.
21489     *
21490     * @ingroup Spinner
21491     */
21492    EAPI Eina_Bool    elm_spinner_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21493
21494    /**
21495     * Set whether the spinner can be directly edited by the user or not.
21496     *
21497     * @param obj The spinner object.
21498     * @param editable @c EINA_TRUE to allow users to edit it or @c EINA_FALSE to
21499     * don't allow users to edit it directly.
21500     *
21501     * Spinner objects can have edition @b disabled, in which state they will
21502     * be changed only by arrows.
21503     * Useful for contexts
21504     * where you don't want your users to interact with it writting the value.
21505     * Specially
21506     * when using special values, the user can see real value instead
21507     * of special label on edition.
21508     *
21509     * It's enabled by default.
21510     *
21511     * @see elm_spinner_editable_get()
21512     *
21513     * @ingroup Spinner
21514     */
21515    EAPI void         elm_spinner_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
21516
21517    /**
21518     * Get whether the spinner can be directly edited by the user or not.
21519     *
21520     * @param obj The spinner object.
21521     * @return @c EINA_TRUE means edition is enabled. @c EINA_FALSE indicates
21522     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
21523     *
21524     * @see elm_spinner_editable_set() for details.
21525     *
21526     * @ingroup Spinner
21527     */
21528    EAPI Eina_Bool    elm_spinner_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21529
21530    /**
21531     * Set a special string to display in the place of the numerical value.
21532     *
21533     * @param obj The spinner object.
21534     * @param value The value to be replaced.
21535     * @param label The label to be used.
21536     *
21537     * It's useful for cases when a user should select an item that is
21538     * better indicated by a label than a value. For example, weekdays or months.
21539     *
21540     * E.g.:
21541     * @code
21542     * sp = elm_spinner_add(win);
21543     * elm_spinner_min_max_set(sp, 1, 3);
21544     * elm_spinner_special_value_add(sp, 1, "January");
21545     * elm_spinner_special_value_add(sp, 2, "February");
21546     * elm_spinner_special_value_add(sp, 3, "March");
21547     * evas_object_show(sp);
21548     * @endcode
21549     *
21550     * @ingroup Spinner
21551     */
21552    EAPI void         elm_spinner_special_value_add(Evas_Object *obj, double value, const char *label) EINA_ARG_NONNULL(1);
21553
21554    /**
21555     * Set the interval on time updates for an user mouse button hold
21556     * on spinner widgets' arrows.
21557     *
21558     * @param obj The spinner object.
21559     * @param interval The (first) interval value in seconds.
21560     *
21561     * This interval value is @b decreased while the user holds the
21562     * mouse pointer either incrementing or decrementing spinner's value.
21563     *
21564     * This helps the user to get to a given value distant from the
21565     * current one easier/faster, as it will start to change quicker and
21566     * quicker on mouse button holds.
21567     *
21568     * The calculation for the next change interval value, starting from
21569     * the one set with this call, is the previous interval divided by
21570     * @c 1.05, so it decreases a little bit.
21571     *
21572     * The default starting interval value for automatic changes is
21573     * @c 0.85 seconds.
21574     *
21575     * @see elm_spinner_interval_get()
21576     *
21577     * @ingroup Spinner
21578     */
21579    EAPI void         elm_spinner_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
21580
21581    /**
21582     * Get the interval on time updates for an user mouse button hold
21583     * on spinner widgets' arrows.
21584     *
21585     * @param obj The spinner object.
21586     * @return The (first) interval value, in seconds, set on it.
21587     *
21588     * @see elm_spinner_interval_set() for more details.
21589     *
21590     * @ingroup Spinner
21591     */
21592    EAPI double       elm_spinner_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21593
21594    /**
21595     * @}
21596     */
21597
21598    /**
21599     * @defgroup Index Index
21600     *
21601     * @image html img/widget/index/preview-00.png
21602     * @image latex img/widget/index/preview-00.eps
21603     *
21604     * An index widget gives you an index for fast access to whichever
21605     * group of other UI items one might have. It's a list of text
21606     * items (usually letters, for alphabetically ordered access).
21607     *
21608     * Index widgets are by default hidden and just appear when the
21609     * user clicks over it's reserved area in the canvas. In its
21610     * default theme, it's an area one @ref Fingers "finger" wide on
21611     * the right side of the index widget's container.
21612     *
21613     * When items on the index are selected, smart callbacks get
21614     * called, so that its user can make other container objects to
21615     * show a given area or child object depending on the index item
21616     * selected. You'd probably be using an index together with @ref
21617     * List "lists", @ref Genlist "generic lists" or @ref Gengrid
21618     * "general grids".
21619     *
21620     * Smart events one  can add callbacks for are:
21621     * - @c "changed" - When the selected index item changes. @c
21622     *      event_info is the selected item's data pointer.
21623     * - @c "delay,changed" - When the selected index item changes, but
21624     *      after a small idling period. @c event_info is the selected
21625     *      item's data pointer.
21626     * - @c "selected" - When the user releases a mouse button and
21627     *      selects an item. @c event_info is the selected item's data
21628     *      pointer.
21629     * - @c "level,up" - when the user moves a finger from the first
21630     *      level to the second level
21631     * - @c "level,down" - when the user moves a finger from the second
21632     *      level to the first level
21633     *
21634     * The @c "delay,changed" event is so that it'll wait a small time
21635     * before actually reporting those events and, moreover, just the
21636     * last event happening on those time frames will actually be
21637     * reported.
21638     *
21639     * Here are some examples on its usage:
21640     * @li @ref index_example_01
21641     * @li @ref index_example_02
21642     */
21643
21644    /**
21645     * @addtogroup Index
21646     * @{
21647     */
21648
21649    typedef struct _Elm_Index_Item Elm_Index_Item; /**< Opaque handle for items of Elementary index widgets */
21650
21651    /**
21652     * Add a new index widget to the given parent Elementary
21653     * (container) object
21654     *
21655     * @param parent The parent object
21656     * @return a new index widget handle or @c NULL, on errors
21657     *
21658     * This function inserts a new index widget on the canvas.
21659     *
21660     * @ingroup Index
21661     */
21662    EAPI Evas_Object    *elm_index_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21663
21664    /**
21665     * Set whether a given index widget is or not visible,
21666     * programatically.
21667     *
21668     * @param obj The index object
21669     * @param active @c EINA_TRUE to show it, @c EINA_FALSE to hide it
21670     *
21671     * Not to be confused with visible as in @c evas_object_show() --
21672     * visible with regard to the widget's auto hiding feature.
21673     *
21674     * @see elm_index_active_get()
21675     *
21676     * @ingroup Index
21677     */
21678    EAPI void            elm_index_active_set(Evas_Object *obj, Eina_Bool active) EINA_ARG_NONNULL(1);
21679
21680    /**
21681     * Get whether a given index widget is currently visible or not.
21682     *
21683     * @param obj The index object
21684     * @return @c EINA_TRUE, if it's shown, @c EINA_FALSE otherwise
21685     *
21686     * @see elm_index_active_set() for more details
21687     *
21688     * @ingroup Index
21689     */
21690    EAPI Eina_Bool       elm_index_active_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21691
21692    /**
21693     * Set the items level for a given index widget.
21694     *
21695     * @param obj The index object.
21696     * @param level @c 0 or @c 1, the currently implemented levels.
21697     *
21698     * @see elm_index_item_level_get()
21699     *
21700     * @ingroup Index
21701     */
21702    EAPI void            elm_index_item_level_set(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
21703
21704    /**
21705     * Get the items level set for a given index widget.
21706     *
21707     * @param obj The index object.
21708     * @return @c 0 or @c 1, which are the levels @p obj might be at.
21709     *
21710     * @see elm_index_item_level_set() for more information
21711     *
21712     * @ingroup Index
21713     */
21714    EAPI int             elm_index_item_level_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21715
21716    /**
21717     * Returns the last selected item's data, for a given index widget.
21718     *
21719     * @param obj The index object.
21720     * @return The item @b data associated to the last selected item on
21721     * @p obj (or @c NULL, on errors).
21722     *
21723     * @warning The returned value is @b not an #Elm_Index_Item item
21724     * handle, but the data associated to it (see the @c item parameter
21725     * in elm_index_item_append(), as an example).
21726     *
21727     * @ingroup Index
21728     */
21729    EAPI void           *elm_index_item_selected_get(const Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
21730
21731    /**
21732     * Append a new item on a given index widget.
21733     *
21734     * @param obj The index object.
21735     * @param letter Letter under which the item should be indexed
21736     * @param item The item data to set for the index's item
21737     *
21738     * Despite the most common usage of the @p letter argument is for
21739     * single char strings, one could use arbitrary strings as index
21740     * entries.
21741     *
21742     * @c item will be the pointer returned back on @c "changed", @c
21743     * "delay,changed" and @c "selected" smart events.
21744     *
21745     * @ingroup Index
21746     */
21747    EAPI void            elm_index_item_append(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
21748
21749    /**
21750     * Prepend a new item on a given index widget.
21751     *
21752     * @param obj The index object.
21753     * @param letter Letter under which the item should be indexed
21754     * @param item The item data to set for the index's item
21755     *
21756     * Despite the most common usage of the @p letter argument is for
21757     * single char strings, one could use arbitrary strings as index
21758     * entries.
21759     *
21760     * @c item will be the pointer returned back on @c "changed", @c
21761     * "delay,changed" and @c "selected" smart events.
21762     *
21763     * @ingroup Index
21764     */
21765    EAPI void            elm_index_item_prepend(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
21766
21767    /**
21768     * Append a new item, on a given index widget, <b>after the item
21769     * having @p relative as data</b>.
21770     *
21771     * @param obj The index object.
21772     * @param letter Letter under which the item should be indexed
21773     * @param item The item data to set for the index's item
21774     * @param relative The item data of the index item to be the
21775     * predecessor of this new one
21776     *
21777     * Despite the most common usage of the @p letter argument is for
21778     * single char strings, one could use arbitrary strings as index
21779     * entries.
21780     *
21781     * @c item will be the pointer returned back on @c "changed", @c
21782     * "delay,changed" and @c "selected" smart events.
21783     *
21784     * @note If @p relative is @c NULL or if it's not found to be data
21785     * set on any previous item on @p obj, this function will behave as
21786     * elm_index_item_append().
21787     *
21788     * @ingroup Index
21789     */
21790    EAPI void            elm_index_item_append_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
21791
21792    /**
21793     * Prepend a new item, on a given index widget, <b>after the item
21794     * having @p relative as data</b>.
21795     *
21796     * @param obj The index object.
21797     * @param letter Letter under which the item should be indexed
21798     * @param item The item data to set for the index's item
21799     * @param relative The item data of the index item to be the
21800     * successor of this new one
21801     *
21802     * Despite the most common usage of the @p letter argument is for
21803     * single char strings, one could use arbitrary strings as index
21804     * entries.
21805     *
21806     * @c item will be the pointer returned back on @c "changed", @c
21807     * "delay,changed" and @c "selected" smart events.
21808     *
21809     * @note If @p relative is @c NULL or if it's not found to be data
21810     * set on any previous item on @p obj, this function will behave as
21811     * elm_index_item_prepend().
21812     *
21813     * @ingroup Index
21814     */
21815    EAPI void            elm_index_item_prepend_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
21816
21817    /**
21818     * Insert a new item into the given index widget, using @p cmp_func
21819     * function to sort items (by item handles).
21820     *
21821     * @param obj The index object.
21822     * @param letter Letter under which the item should be indexed
21823     * @param item The item data to set for the index's item
21824     * @param cmp_func The comparing function to be used to sort index
21825     * items <b>by #Elm_Index_Item item handles</b>
21826     * @param cmp_data_func A @b fallback function to be called for the
21827     * sorting of index items <b>by item data</b>). It will be used
21828     * when @p cmp_func returns @c 0 (equality), which means an index
21829     * item with provided item data already exists. To decide which
21830     * data item should be pointed to by the index item in question, @p
21831     * cmp_data_func will be used. If @p cmp_data_func returns a
21832     * non-negative value, the previous index item data will be
21833     * replaced by the given @p item pointer. If the previous data need
21834     * to be freed, it should be done by the @p cmp_data_func function,
21835     * because all references to it will be lost. If this function is
21836     * not provided (@c NULL is given), index items will be @b
21837     * duplicated, if @p cmp_func returns @c 0.
21838     *
21839     * Despite the most common usage of the @p letter argument is for
21840     * single char strings, one could use arbitrary strings as index
21841     * entries.
21842     *
21843     * @c item will be the pointer returned back on @c "changed", @c
21844     * "delay,changed" and @c "selected" smart events.
21845     *
21846     * @ingroup Index
21847     */
21848    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);
21849
21850    /**
21851     * Remove an item from a given index widget, <b>to be referenced by
21852     * it's data value</b>.
21853     *
21854     * @param obj The index object
21855     * @param item The item's data pointer for the item to be removed
21856     * from @p obj
21857     *
21858     * If a deletion callback is set, via elm_index_item_del_cb_set(),
21859     * that callback function will be called by this one.
21860     *
21861     * @warning The item to be removed from @p obj will be found via
21862     * its item data pointer, and not by an #Elm_Index_Item handle.
21863     *
21864     * @ingroup Index
21865     */
21866    EAPI void            elm_index_item_del(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
21867
21868    /**
21869     * Find a given index widget's item, <b>using item data</b>.
21870     *
21871     * @param obj The index object
21872     * @param item The item data pointed to by the desired index item
21873     * @return The index item handle, if found, or @c NULL otherwise
21874     *
21875     * @ingroup Index
21876     */
21877    EAPI Elm_Index_Item *elm_index_item_find(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
21878
21879    /**
21880     * Removes @b all items from a given index widget.
21881     *
21882     * @param obj The index object.
21883     *
21884     * If deletion callbacks are set, via elm_index_item_del_cb_set(),
21885     * that callback function will be called for each item in @p obj.
21886     *
21887     * @ingroup Index
21888     */
21889    EAPI void            elm_index_item_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
21890
21891    /**
21892     * Go to a given items level on a index widget
21893     *
21894     * @param obj The index object
21895     * @param level The index level (one of @c 0 or @c 1)
21896     *
21897     * @ingroup Index
21898     */
21899    EAPI void            elm_index_item_go(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
21900
21901    /**
21902     * Return the data associated with a given index widget item
21903     *
21904     * @param it The index widget item handle
21905     * @return The data associated with @p it
21906     *
21907     * @see elm_index_item_data_set()
21908     *
21909     * @ingroup Index
21910     */
21911    EAPI void           *elm_index_item_data_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
21912
21913    /**
21914     * Set the data associated with a given index widget item
21915     *
21916     * @param it The index widget item handle
21917     * @param data The new data pointer to set to @p it
21918     *
21919     * This sets new item data on @p it.
21920     *
21921     * @warning The old data pointer won't be touched by this function, so
21922     * the user had better to free that old data himself/herself.
21923     *
21924     * @ingroup Index
21925     */
21926    EAPI void            elm_index_item_data_set(Elm_Index_Item *it, const void *data) EINA_ARG_NONNULL(1);
21927
21928    /**
21929     * Set the function to be called when a given index widget item is freed.
21930     *
21931     * @param it The item to set the callback on
21932     * @param func The function to call on the item's deletion
21933     *
21934     * When called, @p func will have both @c data and @c event_info
21935     * arguments with the @p it item's data value and, naturally, the
21936     * @c obj argument with a handle to the parent index widget.
21937     *
21938     * @ingroup Index
21939     */
21940    EAPI void            elm_index_item_del_cb_set(Elm_Index_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
21941
21942    /**
21943     * Get the letter (string) set on a given index widget item.
21944     *
21945     * @param it The index item handle
21946     * @return The letter string set on @p it
21947     *
21948     * @ingroup Index
21949     */
21950    EAPI const char     *elm_index_item_letter_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
21951
21952    /**
21953     */
21954    EAPI void            elm_index_button_image_invisible_set(Evas_Object *obj, Eina_Bool invisible) EINA_ARG_NONNULL(1);
21955
21956    /**
21957     * @}
21958     */
21959
21960    /**
21961     * @defgroup Photocam Photocam
21962     *
21963     * @image html img/widget/photocam/preview-00.png
21964     * @image latex img/widget/photocam/preview-00.eps
21965     *
21966     * This is a widget specifically for displaying high-resolution digital
21967     * camera photos giving speedy feedback (fast load), low memory footprint
21968     * and zooming and panning as well as fitting logic. It is entirely focused
21969     * on jpeg images, and takes advantage of properties of the jpeg format (via
21970     * evas loader features in the jpeg loader).
21971     *
21972     * Signals that you can add callbacks for are:
21973     * @li "clicked" - This is called when a user has clicked the photo without
21974     *                 dragging around.
21975     * @li "press" - This is called when a user has pressed down on the photo.
21976     * @li "longpressed" - This is called when a user has pressed down on the
21977     *                     photo for a long time without dragging around.
21978     * @li "clicked,double" - This is called when a user has double-clicked the
21979     *                        photo.
21980     * @li "load" - Photo load begins.
21981     * @li "loaded" - This is called when the image file load is complete for the
21982     *                first view (low resolution blurry version).
21983     * @li "load,detail" - Photo detailed data load begins.
21984     * @li "loaded,detail" - This is called when the image file load is complete
21985     *                      for the detailed image data (full resolution needed).
21986     * @li "zoom,start" - Zoom animation started.
21987     * @li "zoom,stop" - Zoom animation stopped.
21988     * @li "zoom,change" - Zoom changed when using an auto zoom mode.
21989     * @li "scroll" - the content has been scrolled (moved)
21990     * @li "scroll,anim,start" - scrolling animation has started
21991     * @li "scroll,anim,stop" - scrolling animation has stopped
21992     * @li "scroll,drag,start" - dragging the contents around has started
21993     * @li "scroll,drag,stop" - dragging the contents around has stopped
21994     *
21995     * @ref tutorial_photocam shows the API in action.
21996     * @{
21997     */
21998    /**
21999     * @brief Types of zoom available.
22000     */
22001    typedef enum _Elm_Photocam_Zoom_Mode
22002      {
22003         ELM_PHOTOCAM_ZOOM_MODE_MANUAL = 0, /**< Zoom controled normally by elm_photocam_zoom_set */
22004         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT, /**< Zoom until photo fits in photocam */
22005         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL, /**< Zoom until photo fills photocam */
22006         ELM_PHOTOCAM_ZOOM_MODE_LAST
22007      } Elm_Photocam_Zoom_Mode;
22008    /**
22009     * @brief Add a new Photocam object
22010     *
22011     * @param parent The parent object
22012     * @return The new object or NULL if it cannot be created
22013     */
22014    EAPI Evas_Object           *elm_photocam_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22015    /**
22016     * @brief Set the photo file to be shown
22017     *
22018     * @param obj The photocam object
22019     * @param file The photo file
22020     * @return The return error (see EVAS_LOAD_ERROR_NONE, EVAS_LOAD_ERROR_GENERIC etc.)
22021     *
22022     * This sets (and shows) the specified file (with a relative or absolute
22023     * path) and will return a load error (same error that
22024     * evas_object_image_load_error_get() will return). The image will change and
22025     * adjust its size at this point and begin a background load process for this
22026     * photo that at some time in the future will be displayed at the full
22027     * quality needed.
22028     */
22029    EAPI Evas_Load_Error        elm_photocam_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
22030    /**
22031     * @brief Returns the path of the current image file
22032     *
22033     * @param obj The photocam object
22034     * @return Returns the path
22035     *
22036     * @see elm_photocam_file_set()
22037     */
22038    EAPI const char            *elm_photocam_file_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22039    /**
22040     * @brief Set the zoom level of the photo
22041     *
22042     * @param obj The photocam object
22043     * @param zoom The zoom level to set
22044     *
22045     * This sets the zoom level. 1 will be 1:1 pixel for pixel. 2 will be 2:1
22046     * (that is 2x2 photo pixels will display as 1 on-screen pixel). 4:1 will be
22047     * 4x4 photo pixels as 1 screen pixel, and so on. The @p zoom parameter must
22048     * be greater than 0. It is usggested to stick to powers of 2. (1, 2, 4, 8,
22049     * 16, 32, etc.).
22050     */
22051    EAPI void                   elm_photocam_zoom_set(Evas_Object *obj, double zoom) EINA_ARG_NONNULL(1);
22052    /**
22053     * @brief Get the zoom level of the photo
22054     *
22055     * @param obj The photocam object
22056     * @return The current zoom level
22057     *
22058     * This returns the current zoom level of the photocam object. Note that if
22059     * you set the fill mode to other than ELM_PHOTOCAM_ZOOM_MODE_MANUAL
22060     * (which is the default), the zoom level may be changed at any time by the
22061     * photocam object itself to account for photo size and photocam viewpoer
22062     * size.
22063     *
22064     * @see elm_photocam_zoom_set()
22065     * @see elm_photocam_zoom_mode_set()
22066     */
22067    EAPI double                 elm_photocam_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22068    /**
22069     * @brief Set the zoom mode
22070     *
22071     * @param obj The photocam object
22072     * @param mode The desired mode
22073     *
22074     * This sets the zoom mode to manual or one of several automatic levels.
22075     * Manual (ELM_PHOTOCAM_ZOOM_MODE_MANUAL) means that zoom is set manually by
22076     * elm_photocam_zoom_set() and will stay at that level until changed by code
22077     * or until zoom mode is changed. This is the default mode. The Automatic
22078     * modes will allow the photocam object to automatically adjust zoom mode
22079     * based on properties. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT) will adjust zoom so
22080     * the photo fits EXACTLY inside the scroll frame with no pixels outside this
22081     * area. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL will be similar but ensure no
22082     * pixels within the frame are left unfilled.
22083     */
22084    EAPI void                   elm_photocam_zoom_mode_set(Evas_Object *obj, Elm_Photocam_Zoom_Mode mode) EINA_ARG_NONNULL(1);
22085    /**
22086     * @brief Get the zoom mode
22087     *
22088     * @param obj The photocam object
22089     * @return The current zoom mode
22090     *
22091     * This gets the current zoom mode of the photocam object.
22092     *
22093     * @see elm_photocam_zoom_mode_set()
22094     */
22095    EAPI Elm_Photocam_Zoom_Mode elm_photocam_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22096    /**
22097     * @brief Get the current image pixel width and height
22098     *
22099     * @param obj The photocam object
22100     * @param w A pointer to the width return
22101     * @param h A pointer to the height return
22102     *
22103     * This gets the current photo pixel width and height (for the original).
22104     * The size will be returned in the integers @p w and @p h that are pointed
22105     * to.
22106     */
22107    EAPI void                   elm_photocam_image_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
22108    /**
22109     * @brief Get the area of the image that is currently shown
22110     *
22111     * @param obj
22112     * @param x A pointer to the X-coordinate of region
22113     * @param y A pointer to the Y-coordinate of region
22114     * @param w A pointer to the width
22115     * @param h A pointer to the height
22116     *
22117     * @see elm_photocam_image_region_show()
22118     * @see elm_photocam_image_region_bring_in()
22119     */
22120    EAPI void                   elm_photocam_region_get(const Evas_Object *obj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
22121    /**
22122     * @brief Set the viewed portion of the image
22123     *
22124     * @param obj The photocam object
22125     * @param x X-coordinate of region in image original pixels
22126     * @param y Y-coordinate of region in image original pixels
22127     * @param w Width of region in image original pixels
22128     * @param h Height of region in image original pixels
22129     *
22130     * This shows the region of the image without using animation.
22131     */
22132    EAPI void                   elm_photocam_image_region_show(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
22133    /**
22134     * @brief Bring in the viewed portion of the image
22135     *
22136     * @param obj The photocam object
22137     * @param x X-coordinate of region in image original pixels
22138     * @param y Y-coordinate of region in image original pixels
22139     * @param w Width of region in image original pixels
22140     * @param h Height of region in image original pixels
22141     *
22142     * This shows the region of the image using animation.
22143     */
22144    EAPI void                   elm_photocam_image_region_bring_in(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
22145    /**
22146     * @brief Set the paused state for photocam
22147     *
22148     * @param obj The photocam object
22149     * @param paused The pause state to set
22150     *
22151     * This sets the paused state to on(EINA_TRUE) or off (EINA_FALSE) for
22152     * photocam. The default is off. This will stop zooming using animation on
22153     * zoom levels changes and change instantly. This will stop any existing
22154     * animations that are running.
22155     */
22156    EAPI void                   elm_photocam_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
22157    /**
22158     * @brief Get the paused state for photocam
22159     *
22160     * @param obj The photocam object
22161     * @return The current paused state
22162     *
22163     * This gets the current paused state for the photocam object.
22164     *
22165     * @see elm_photocam_paused_set()
22166     */
22167    EAPI Eina_Bool              elm_photocam_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22168    /**
22169     * @brief Get the internal low-res image used for photocam
22170     *
22171     * @param obj The photocam object
22172     * @return The internal image object handle, or NULL if none exists
22173     *
22174     * This gets the internal image object inside photocam. Do not modify it. It
22175     * is for inspection only, and hooking callbacks to. Nothing else. It may be
22176     * deleted at any time as well.
22177     */
22178    EAPI Evas_Object           *elm_photocam_internal_image_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22179    /**
22180     * @brief Set the photocam scrolling bouncing.
22181     *
22182     * @param obj The photocam object
22183     * @param h_bounce bouncing for horizontal
22184     * @param v_bounce bouncing for vertical
22185     */
22186    EAPI void                   elm_photocam_bounce_set(Evas_Object *obj,  Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
22187    /**
22188     * @brief Get the photocam scrolling bouncing.
22189     *
22190     * @param obj The photocam object
22191     * @param h_bounce bouncing for horizontal
22192     * @param v_bounce bouncing for vertical
22193     *
22194     * @see elm_photocam_bounce_set()
22195     */
22196    EAPI void                   elm_photocam_bounce_get(const Evas_Object *obj,  Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
22197    /**
22198     * @}
22199     */
22200
22201    /**
22202     * @defgroup Map Map
22203     * @ingroup Elementary
22204     *
22205     * @image html img/widget/map/preview-00.png
22206     * @image latex img/widget/map/preview-00.eps
22207     *
22208     * This is a widget specifically for displaying a map. It uses basically
22209     * OpenStreetMap provider http://www.openstreetmap.org/,
22210     * but custom providers can be added.
22211     *
22212     * It supports some basic but yet nice features:
22213     * @li zoom and scroll
22214     * @li markers with content to be displayed when user clicks over it
22215     * @li group of markers
22216     * @li routes
22217     *
22218     * Smart callbacks one can listen to:
22219     *
22220     * - "clicked" - This is called when a user has clicked the map without
22221     *   dragging around.
22222     * - "press" - This is called when a user has pressed down on the map.
22223     * - "longpressed" - This is called when a user has pressed down on the map
22224     *   for a long time without dragging around.
22225     * - "clicked,double" - This is called when a user has double-clicked
22226     *   the map.
22227     * - "load,detail" - Map detailed data load begins.
22228     * - "loaded,detail" - This is called when all currently visible parts of
22229     *   the map are loaded.
22230     * - "zoom,start" - Zoom animation started.
22231     * - "zoom,stop" - Zoom animation stopped.
22232     * - "zoom,change" - Zoom changed when using an auto zoom mode.
22233     * - "scroll" - the content has been scrolled (moved).
22234     * - "scroll,anim,start" - scrolling animation has started.
22235     * - "scroll,anim,stop" - scrolling animation has stopped.
22236     * - "scroll,drag,start" - dragging the contents around has started.
22237     * - "scroll,drag,stop" - dragging the contents around has stopped.
22238     * - "downloaded" - This is called when all currently required map images
22239     *   are downloaded.
22240     * - "route,load" - This is called when route request begins.
22241     * - "route,loaded" - This is called when route request ends.
22242     * - "name,load" - This is called when name request begins.
22243     * - "name,loaded- This is called when name request ends.
22244     *
22245     * Available style for map widget:
22246     * - @c "default"
22247     *
22248     * Available style for markers:
22249     * - @c "radio"
22250     * - @c "radio2"
22251     * - @c "empty"
22252     *
22253     * Available style for marker bubble:
22254     * - @c "default"
22255     *
22256     * List of examples:
22257     * @li @ref map_example_01
22258     * @li @ref map_example_02
22259     * @li @ref map_example_03
22260     */
22261
22262    /**
22263     * @addtogroup Map
22264     * @{
22265     */
22266
22267    /**
22268     * @enum _Elm_Map_Zoom_Mode
22269     * @typedef Elm_Map_Zoom_Mode
22270     *
22271     * Set map's zoom behavior. It can be set to manual or automatic.
22272     *
22273     * Default value is #ELM_MAP_ZOOM_MODE_MANUAL.
22274     *
22275     * Values <b> don't </b> work as bitmask, only one can be choosen.
22276     *
22277     * @note Valid sizes are 2^zoom, consequently the map may be smaller
22278     * than the scroller view.
22279     *
22280     * @see elm_map_zoom_mode_set()
22281     * @see elm_map_zoom_mode_get()
22282     *
22283     * @ingroup Map
22284     */
22285    typedef enum _Elm_Map_Zoom_Mode
22286      {
22287         ELM_MAP_ZOOM_MODE_MANUAL, /**< Zoom controled manually by elm_map_zoom_set(). It's set by default. */
22288         ELM_MAP_ZOOM_MODE_AUTO_FIT, /**< Zoom until map fits inside the scroll frame with no pixels outside this area. */
22289         ELM_MAP_ZOOM_MODE_AUTO_FILL, /**< Zoom until map fills scroll, ensuring no pixels are left unfilled. */
22290         ELM_MAP_ZOOM_MODE_LAST
22291      } Elm_Map_Zoom_Mode;
22292
22293    /**
22294     * @enum _Elm_Map_Route_Sources
22295     * @typedef Elm_Map_Route_Sources
22296     *
22297     * Set route service to be used. By default used source is
22298     * #ELM_MAP_ROUTE_SOURCE_YOURS.
22299     *
22300     * @see elm_map_route_source_set()
22301     * @see elm_map_route_source_get()
22302     *
22303     * @ingroup Map
22304     */
22305    typedef enum _Elm_Map_Route_Sources
22306      {
22307         ELM_MAP_ROUTE_SOURCE_YOURS, /**< Routing service http://www.yournavigation.org/ . Set by default.*/
22308         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. */
22309         ELM_MAP_ROUTE_SOURCE_ORS, /**< Open Route Service: http://www.openrouteservice.org/ . It's not working with Map yet. */
22310         ELM_MAP_ROUTE_SOURCE_LAST
22311      } Elm_Map_Route_Sources;
22312
22313    typedef enum _Elm_Map_Name_Sources
22314      {
22315         ELM_MAP_NAME_SOURCE_NOMINATIM,
22316         ELM_MAP_NAME_SOURCE_LAST
22317      } Elm_Map_Name_Sources;
22318
22319    /**
22320     * @enum _Elm_Map_Route_Type
22321     * @typedef Elm_Map_Route_Type
22322     *
22323     * Set type of transport used on route.
22324     *
22325     * @see elm_map_route_add()
22326     *
22327     * @ingroup Map
22328     */
22329    typedef enum _Elm_Map_Route_Type
22330      {
22331         ELM_MAP_ROUTE_TYPE_MOTOCAR, /**< Route should consider an automobile will be used. */
22332         ELM_MAP_ROUTE_TYPE_BICYCLE, /**< Route should consider a bicycle will be used by the user. */
22333         ELM_MAP_ROUTE_TYPE_FOOT, /**< Route should consider user will be walking. */
22334         ELM_MAP_ROUTE_TYPE_LAST
22335      } Elm_Map_Route_Type;
22336
22337    /**
22338     * @enum _Elm_Map_Route_Method
22339     * @typedef Elm_Map_Route_Method
22340     *
22341     * Set the routing method, what should be priorized, time or distance.
22342     *
22343     * @see elm_map_route_add()
22344     *
22345     * @ingroup Map
22346     */
22347    typedef enum _Elm_Map_Route_Method
22348      {
22349         ELM_MAP_ROUTE_METHOD_FASTEST, /**< Route should priorize time. */
22350         ELM_MAP_ROUTE_METHOD_SHORTEST, /**< Route should priorize distance. */
22351         ELM_MAP_ROUTE_METHOD_LAST
22352      } Elm_Map_Route_Method;
22353
22354    typedef enum _Elm_Map_Name_Method
22355      {
22356         ELM_MAP_NAME_METHOD_SEARCH,
22357         ELM_MAP_NAME_METHOD_REVERSE,
22358         ELM_MAP_NAME_METHOD_LAST
22359      } Elm_Map_Name_Method;
22360
22361    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(). */
22362    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(). */
22363    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(). */
22364    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(). */
22365    typedef struct _Elm_Map_Name            Elm_Map_Name; /**< A handle for specific coordinates. */
22366    typedef struct _Elm_Map_Track           Elm_Map_Track;
22367
22368    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. */
22369    typedef void         (*ElmMapMarkerDelFunc)      (Evas_Object *obj, Elm_Map_Marker *marker, void *data, Evas_Object *o); /**< Function to delete bubble content for marker classes. */
22370    typedef Evas_Object *(*ElmMapMarkerIconGetFunc)  (Evas_Object *obj, Elm_Map_Marker *marker, void *data); /**< Icon fetching class function for marker classes. */
22371    typedef Evas_Object *(*ElmMapGroupIconGetFunc)   (Evas_Object *obj, void *data); /**< Icon fetching class function for markers group classes. */
22372
22373    typedef char        *(*ElmMapModuleSourceFunc) (void);
22374    typedef int          (*ElmMapModuleZoomMinFunc) (void);
22375    typedef int          (*ElmMapModuleZoomMaxFunc) (void);
22376    typedef char        *(*ElmMapModuleUrlFunc) (Evas_Object *obj, int x, int y, int zoom);
22377    typedef int          (*ElmMapModuleRouteSourceFunc) (void);
22378    typedef char        *(*ElmMapModuleRouteUrlFunc) (Evas_Object *obj, char *type_name, int method, double flon, double flat, double tlon, double tlat);
22379    typedef char        *(*ElmMapModuleNameUrlFunc) (Evas_Object *obj, int method, char *name, double lon, double lat);
22380    typedef Eina_Bool    (*ElmMapModuleGeoIntoCoordFunc) (const Evas_Object *obj, int zoom, double lon, double lat, int size, int *x, int *y);
22381    typedef Eina_Bool    (*ElmMapModuleCoordIntoGeoFunc) (const Evas_Object *obj, int zoom, int x, int y, int size, double *lon, double *lat);
22382
22383    /**
22384     * Add a new map widget to the given parent Elementary (container) object.
22385     *
22386     * @param parent The parent object.
22387     * @return a new map widget handle or @c NULL, on errors.
22388     *
22389     * This function inserts a new map widget on the canvas.
22390     *
22391     * @ingroup Map
22392     */
22393    EAPI Evas_Object          *elm_map_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22394
22395    /**
22396     * Set the zoom level of the map.
22397     *
22398     * @param obj The map object.
22399     * @param zoom The zoom level to set.
22400     *
22401     * This sets the zoom level.
22402     *
22403     * It will respect limits defined by elm_map_source_zoom_min_set() and
22404     * elm_map_source_zoom_max_set().
22405     *
22406     * By default these values are 0 (world map) and 18 (maximum zoom).
22407     *
22408     * This function should be used when zoom mode is set to
22409     * #ELM_MAP_ZOOM_MODE_MANUAL. This is the default mode, and can be set
22410     * with elm_map_zoom_mode_set().
22411     *
22412     * @see elm_map_zoom_mode_set().
22413     * @see elm_map_zoom_get().
22414     *
22415     * @ingroup Map
22416     */
22417    EAPI void                  elm_map_zoom_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
22418
22419    /**
22420     * Get the zoom level of the map.
22421     *
22422     * @param obj The map object.
22423     * @return The current zoom level.
22424     *
22425     * This returns the current zoom level of the map object.
22426     *
22427     * Note that if you set the fill mode to other than #ELM_MAP_ZOOM_MODE_MANUAL
22428     * (which is the default), the zoom level may be changed at any time by the
22429     * map object itself to account for map size and map viewport size.
22430     *
22431     * @see elm_map_zoom_set() for details.
22432     *
22433     * @ingroup Map
22434     */
22435    EAPI int                   elm_map_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22436
22437    /**
22438     * Set the zoom mode used by the map object.
22439     *
22440     * @param obj The map object.
22441     * @param mode The zoom mode of the map, being it one of
22442     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
22443     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
22444     *
22445     * This sets the zoom mode to manual or one of the automatic levels.
22446     * Manual (#ELM_MAP_ZOOM_MODE_MANUAL) means that zoom is set manually by
22447     * elm_map_zoom_set() and will stay at that level until changed by code
22448     * or until zoom mode is changed. This is the default mode.
22449     *
22450     * The Automatic modes will allow the map object to automatically
22451     * adjust zoom mode based on properties. #ELM_MAP_ZOOM_MODE_AUTO_FIT will
22452     * adjust zoom so the map fits inside the scroll frame with no pixels
22453     * outside this area. #ELM_MAP_ZOOM_MODE_AUTO_FILL will be similar but
22454     * ensure no pixels within the frame are left unfilled. Do not forget that
22455     * the valid sizes are 2^zoom, consequently the map may be smaller than
22456     * the scroller view.
22457     *
22458     * @see elm_map_zoom_set()
22459     *
22460     * @ingroup Map
22461     */
22462    EAPI void                  elm_map_zoom_mode_set(Evas_Object *obj, Elm_Map_Zoom_Mode mode) EINA_ARG_NONNULL(1);
22463
22464    /**
22465     * Get the zoom mode used by the map object.
22466     *
22467     * @param obj The map object.
22468     * @return The zoom mode of the map, being it one of
22469     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
22470     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
22471     *
22472     * This function returns the current zoom mode used by the map object.
22473     *
22474     * @see elm_map_zoom_mode_set() for more details.
22475     *
22476     * @ingroup Map
22477     */
22478    EAPI Elm_Map_Zoom_Mode     elm_map_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22479
22480    /**
22481     * Get the current coordinates of the map.
22482     *
22483     * @param obj The map object.
22484     * @param lon Pointer where to store longitude.
22485     * @param lat Pointer where to store latitude.
22486     *
22487     * This gets the current center coordinates of the map object. It can be
22488     * set by elm_map_geo_region_bring_in() and elm_map_geo_region_show().
22489     *
22490     * @see elm_map_geo_region_bring_in()
22491     * @see elm_map_geo_region_show()
22492     *
22493     * @ingroup Map
22494     */
22495    EAPI void                  elm_map_geo_region_get(const Evas_Object *obj, double *lon, double *lat) EINA_ARG_NONNULL(1);
22496
22497    /**
22498     * Animatedly bring in given coordinates to the center of the map.
22499     *
22500     * @param obj The map object.
22501     * @param lon Longitude to center at.
22502     * @param lat Latitude to center at.
22503     *
22504     * This causes map to jump to the given @p lat and @p lon coordinates
22505     * and show it (by scrolling) in the center of the viewport, if it is not
22506     * already centered. This will use animation to do so and take a period
22507     * of time to complete.
22508     *
22509     * @see elm_map_geo_region_show() for a function to avoid animation.
22510     * @see elm_map_geo_region_get()
22511     *
22512     * @ingroup Map
22513     */
22514    EAPI void                  elm_map_geo_region_bring_in(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
22515
22516    /**
22517     * Show the given coordinates at the center of the map, @b immediately.
22518     *
22519     * @param obj The map object.
22520     * @param lon Longitude to center at.
22521     * @param lat Latitude to center at.
22522     *
22523     * This causes map to @b redraw its viewport's contents to the
22524     * region contining the given @p lat and @p lon, that will be moved to the
22525     * center of the map.
22526     *
22527     * @see elm_map_geo_region_bring_in() for a function to move with animation.
22528     * @see elm_map_geo_region_get()
22529     *
22530     * @ingroup Map
22531     */
22532    EAPI void                  elm_map_geo_region_show(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
22533
22534    /**
22535     * Pause or unpause the map.
22536     *
22537     * @param obj The map object.
22538     * @param paused Use @c EINA_TRUE to pause the map @p obj or @c EINA_FALSE
22539     * to unpause it.
22540     *
22541     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
22542     * for map.
22543     *
22544     * The default is off.
22545     *
22546     * This will stop zooming using animation, changing zoom levels will
22547     * change instantly. This will stop any existing animations that are running.
22548     *
22549     * @see elm_map_paused_get()
22550     *
22551     * @ingroup Map
22552     */
22553    EAPI void                  elm_map_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
22554
22555    /**
22556     * Get a value whether map is paused or not.
22557     *
22558     * @param obj The map object.
22559     * @return @c EINA_TRUE means map is pause. @c EINA_FALSE indicates
22560     * it is not. If @p obj is @c NULL, @c EINA_FALSE is returned.
22561     *
22562     * This gets the current paused state for the map object.
22563     *
22564     * @see elm_map_paused_set() for details.
22565     *
22566     * @ingroup Map
22567     */
22568    EAPI Eina_Bool             elm_map_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22569
22570    /**
22571     * Set to show markers during zoom level changes or not.
22572     *
22573     * @param obj The map object.
22574     * @param paused Use @c EINA_TRUE to @b not show markers or @c EINA_FALSE
22575     * to show them.
22576     *
22577     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
22578     * for map.
22579     *
22580     * The default is off.
22581     *
22582     * This will stop zooming using animation, changing zoom levels will
22583     * change instantly. This will stop any existing animations that are running.
22584     *
22585     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
22586     * for the markers.
22587     *
22588     * The default  is off.
22589     *
22590     * Enabling it will force the map to stop displaying the markers during
22591     * zoom level changes. Set to on if you have a large number of markers.
22592     *
22593     * @see elm_map_paused_markers_get()
22594     *
22595     * @ingroup Map
22596     */
22597    EAPI void                  elm_map_paused_markers_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
22598
22599    /**
22600     * Get a value whether markers will be displayed on zoom level changes or not
22601     *
22602     * @param obj The map object.
22603     * @return @c EINA_TRUE means map @b won't display markers or @c EINA_FALSE
22604     * indicates it will. If @p obj is @c NULL, @c EINA_FALSE is returned.
22605     *
22606     * This gets the current markers paused state for the map object.
22607     *
22608     * @see elm_map_paused_markers_set() for details.
22609     *
22610     * @ingroup Map
22611     */
22612    EAPI Eina_Bool             elm_map_paused_markers_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22613
22614    /**
22615     * Get the information of downloading status.
22616     *
22617     * @param obj The map object.
22618     * @param try_num Pointer where to store number of tiles being downloaded.
22619     * @param finish_num Pointer where to store number of tiles successfully
22620     * downloaded.
22621     *
22622     * This gets the current downloading status for the map object, the number
22623     * of tiles being downloaded and the number of tiles already downloaded.
22624     *
22625     * @ingroup Map
22626     */
22627    EAPI void                  elm_map_utils_downloading_status_get(const Evas_Object *obj, int *try_num, int *finish_num) EINA_ARG_NONNULL(1, 2, 3);
22628
22629    /**
22630     * Convert a pixel coordinate (x,y) into a geographic coordinate
22631     * (longitude, latitude).
22632     *
22633     * @param obj The map object.
22634     * @param x the coordinate.
22635     * @param y the coordinate.
22636     * @param size the size in pixels of the map.
22637     * The map is a square and generally his size is : pow(2.0, zoom)*256.
22638     * @param lon Pointer where to store the longitude that correspond to x.
22639     * @param lat Pointer where to store the latitude that correspond to y.
22640     *
22641     * @note Origin pixel point is the top left corner of the viewport.
22642     * Map zoom and size are taken on account.
22643     *
22644     * @see elm_map_utils_convert_geo_into_coord() if you need the inverse.
22645     *
22646     * @ingroup Map
22647     */
22648    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);
22649
22650    /**
22651     * Convert a geographic coordinate (longitude, latitude) into a pixel
22652     * coordinate (x, y).
22653     *
22654     * @param obj The map object.
22655     * @param lon the longitude.
22656     * @param lat the latitude.
22657     * @param size the size in pixels of the map. The map is a square
22658     * and generally his size is : pow(2.0, zoom)*256.
22659     * @param x Pointer where to store the horizontal pixel coordinate that
22660     * correspond to the longitude.
22661     * @param y Pointer where to store the vertical pixel coordinate that
22662     * correspond to the latitude.
22663     *
22664     * @note Origin pixel point is the top left corner of the viewport.
22665     * Map zoom and size are taken on account.
22666     *
22667     * @see elm_map_utils_convert_coord_into_geo() if you need the inverse.
22668     *
22669     * @ingroup Map
22670     */
22671    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);
22672
22673    /**
22674     * Convert a geographic coordinate (longitude, latitude) into a name
22675     * (address).
22676     *
22677     * @param obj The map object.
22678     * @param lon the longitude.
22679     * @param lat the latitude.
22680     * @return name A #Elm_Map_Name handle for this coordinate.
22681     *
22682     * To get the string for this address, elm_map_name_address_get()
22683     * should be used.
22684     *
22685     * @see elm_map_utils_convert_name_into_coord() if you need the inverse.
22686     *
22687     * @ingroup Map
22688     */
22689    EAPI Elm_Map_Name         *elm_map_utils_convert_coord_into_name(const Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
22690
22691    /**
22692     * Convert a name (address) into a geographic coordinate
22693     * (longitude, latitude).
22694     *
22695     * @param obj The map object.
22696     * @param name The address.
22697     * @return name A #Elm_Map_Name handle for this address.
22698     *
22699     * To get the longitude and latitude, elm_map_name_region_get()
22700     * should be used.
22701     *
22702     * @see elm_map_utils_convert_coord_into_name() if you need the inverse.
22703     *
22704     * @ingroup Map
22705     */
22706    EAPI Elm_Map_Name         *elm_map_utils_convert_name_into_coord(const Evas_Object *obj, char *address) EINA_ARG_NONNULL(1, 2);
22707
22708    /**
22709     * Convert a pixel coordinate into a rotated pixel coordinate.
22710     *
22711     * @param obj The map object.
22712     * @param x horizontal coordinate of the point to rotate.
22713     * @param y vertical coordinate of the point to rotate.
22714     * @param cx rotation's center horizontal position.
22715     * @param cy rotation's center vertical position.
22716     * @param degree amount of degrees from 0.0 to 360.0 to rotate arount Z axis.
22717     * @param xx Pointer where to store rotated x.
22718     * @param yy Pointer where to store rotated y.
22719     *
22720     * @ingroup Map
22721     */
22722    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);
22723
22724    /**
22725     * Add a new marker to the map object.
22726     *
22727     * @param obj The map object.
22728     * @param lon The longitude of the marker.
22729     * @param lat The latitude of the marker.
22730     * @param clas The class, to use when marker @b isn't grouped to others.
22731     * @param clas_group The class group, to use when marker is grouped to others
22732     * @param data The data passed to the callbacks.
22733     *
22734     * @return The created marker or @c NULL upon failure.
22735     *
22736     * A marker will be created and shown in a specific point of the map, defined
22737     * by @p lon and @p lat.
22738     *
22739     * It will be displayed using style defined by @p class when this marker
22740     * is displayed alone (not grouped). A new class can be created with
22741     * elm_map_marker_class_new().
22742     *
22743     * If the marker is grouped to other markers, it will be displayed with
22744     * style defined by @p class_group. Markers with the same group are grouped
22745     * if they are close. A new group class can be created with
22746     * elm_map_marker_group_class_new().
22747     *
22748     * Markers created with this method can be deleted with
22749     * elm_map_marker_remove().
22750     *
22751     * A marker can have associated content to be displayed by a bubble,
22752     * when a user click over it, as well as an icon. These objects will
22753     * be fetch using class' callback functions.
22754     *
22755     * @see elm_map_marker_class_new()
22756     * @see elm_map_marker_group_class_new()
22757     * @see elm_map_marker_remove()
22758     *
22759     * @ingroup Map
22760     */
22761    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);
22762
22763    /**
22764     * Set the maximum numbers of markers' content to be displayed in a group.
22765     *
22766     * @param obj The map object.
22767     * @param max The maximum numbers of items displayed in a bubble.
22768     *
22769     * A bubble will be displayed when the user clicks over the group,
22770     * and will place the content of markers that belong to this group
22771     * inside it.
22772     *
22773     * A group can have a long list of markers, consequently the creation
22774     * of the content of the bubble can be very slow.
22775     *
22776     * In order to avoid this, a maximum number of items is displayed
22777     * in a bubble.
22778     *
22779     * By default this number is 30.
22780     *
22781     * Marker with the same group class are grouped if they are close.
22782     *
22783     * @see elm_map_marker_add()
22784     *
22785     * @ingroup Map
22786     */
22787    EAPI void                  elm_map_max_marker_per_group_set(Evas_Object *obj, int max) EINA_ARG_NONNULL(1);
22788
22789    /**
22790     * Remove a marker from the map.
22791     *
22792     * @param marker The marker to remove.
22793     *
22794     * @see elm_map_marker_add()
22795     *
22796     * @ingroup Map
22797     */
22798    EAPI void                  elm_map_marker_remove(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
22799
22800    /**
22801     * Get the current coordinates of the marker.
22802     *
22803     * @param marker marker.
22804     * @param lat Pointer where to store the marker's latitude.
22805     * @param lon Pointer where to store the marker's longitude.
22806     *
22807     * These values are set when adding markers, with function
22808     * elm_map_marker_add().
22809     *
22810     * @see elm_map_marker_add()
22811     *
22812     * @ingroup Map
22813     */
22814    EAPI void                  elm_map_marker_region_get(const Elm_Map_Marker *marker, double *lon, double *lat) EINA_ARG_NONNULL(1);
22815
22816    /**
22817     * Animatedly bring in given marker to the center of the map.
22818     *
22819     * @param marker The marker to center at.
22820     *
22821     * This causes map to jump to the given @p marker's coordinates
22822     * and show it (by scrolling) in the center of the viewport, if it is not
22823     * already centered. This will use animation to do so and take a period
22824     * of time to complete.
22825     *
22826     * @see elm_map_marker_show() for a function to avoid animation.
22827     * @see elm_map_marker_region_get()
22828     *
22829     * @ingroup Map
22830     */
22831    EAPI void                  elm_map_marker_bring_in(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
22832
22833    /**
22834     * Show the given marker at the center of the map, @b immediately.
22835     *
22836     * @param marker The marker to center at.
22837     *
22838     * This causes map to @b redraw its viewport's contents to the
22839     * region contining the given @p marker's coordinates, that will be
22840     * moved to the center of the map.
22841     *
22842     * @see elm_map_marker_bring_in() for a function to move with animation.
22843     * @see elm_map_markers_list_show() if more than one marker need to be
22844     * displayed.
22845     * @see elm_map_marker_region_get()
22846     *
22847     * @ingroup Map
22848     */
22849    EAPI void                  elm_map_marker_show(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
22850
22851    /**
22852     * Move and zoom the map to display a list of markers.
22853     *
22854     * @param markers A list of #Elm_Map_Marker handles.
22855     *
22856     * The map will be centered on the center point of the markers in the list.
22857     * Then the map will be zoomed in order to fit the markers using the maximum
22858     * zoom which allows display of all the markers.
22859     *
22860     * @warning All the markers should belong to the same map object.
22861     *
22862     * @see elm_map_marker_show() to show a single marker.
22863     * @see elm_map_marker_bring_in()
22864     *
22865     * @ingroup Map
22866     */
22867    EAPI void                  elm_map_markers_list_show(Eina_List *markers) EINA_ARG_NONNULL(1);
22868
22869    /**
22870     * Get the Evas object returned by the ElmMapMarkerGetFunc callback
22871     *
22872     * @param marker The marker wich content should be returned.
22873     * @return Return the evas object if it exists, else @c NULL.
22874     *
22875     * To set callback function #ElmMapMarkerGetFunc for the marker class,
22876     * elm_map_marker_class_get_cb_set() should be used.
22877     *
22878     * This content is what will be inside the bubble that will be displayed
22879     * when an user clicks over the marker.
22880     *
22881     * This returns the actual Evas object used to be placed inside
22882     * the bubble. This may be @c NULL, as it may
22883     * not have been created or may have been deleted, at any time, by
22884     * the map. <b>Do not modify this object</b> (move, resize,
22885     * show, hide, etc.), as the map is controlling it. This
22886     * function is for querying, emitting custom signals or hooking
22887     * lower level callbacks for events on that object. Do not delete
22888     * this object under any circumstances.
22889     *
22890     * @ingroup Map
22891     */
22892    EAPI Evas_Object          *elm_map_marker_object_get(const Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
22893
22894    /**
22895     * Update the marker
22896     *
22897     * @param marker The marker to be updated.
22898     *
22899     * If a content is set to this marker, it will call function to delete it,
22900     * #ElmMapMarkerDelFunc, and then will fetch the content again with
22901     * #ElmMapMarkerGetFunc.
22902     *
22903     * These functions are set for the marker class with
22904     * elm_map_marker_class_get_cb_set() and elm_map_marker_class_del_cb_set().
22905     *
22906     * @ingroup Map
22907     */
22908    EAPI void                  elm_map_marker_update(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
22909
22910    /**
22911     * Close all the bubbles opened by the user.
22912     *
22913     * @param obj The map object.
22914     *
22915     * A bubble is displayed with a content fetched with #ElmMapMarkerGetFunc
22916     * when the user clicks on a marker.
22917     *
22918     * This functions is set for the marker class with
22919     * elm_map_marker_class_get_cb_set().
22920     *
22921     * @ingroup Map
22922     */
22923    EAPI void                  elm_map_bubbles_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
22924
22925    /**
22926     * Create a new group class.
22927     *
22928     * @param obj The map object.
22929     * @return Returns the new group class.
22930     *
22931     * Each marker must be associated to a group class. Markers in the same
22932     * group are grouped if they are close.
22933     *
22934     * The group class defines the style of the marker when a marker is grouped
22935     * to others markers. When it is alone, another class will be used.
22936     *
22937     * A group class will need to be provided when creating a marker with
22938     * elm_map_marker_add().
22939     *
22940     * Some properties and functions can be set by class, as:
22941     * - style, with elm_map_group_class_style_set()
22942     * - data - to be associated to the group class. It can be set using
22943     *   elm_map_group_class_data_set().
22944     * - min zoom to display markers, set with
22945     *   elm_map_group_class_zoom_displayed_set().
22946     * - max zoom to group markers, set using
22947     *   elm_map_group_class_zoom_grouped_set().
22948     * - visibility - set if markers will be visible or not, set with
22949     *   elm_map_group_class_hide_set().
22950     * - #ElmMapGroupIconGetFunc - used to fetch icon for markers group classes.
22951     *   It can be set using elm_map_group_class_icon_cb_set().
22952     *
22953     * @see elm_map_marker_add()
22954     * @see elm_map_group_class_style_set()
22955     * @see elm_map_group_class_data_set()
22956     * @see elm_map_group_class_zoom_displayed_set()
22957     * @see elm_map_group_class_zoom_grouped_set()
22958     * @see elm_map_group_class_hide_set()
22959     * @see elm_map_group_class_icon_cb_set()
22960     *
22961     * @ingroup Map
22962     */
22963    EAPI Elm_Map_Group_Class  *elm_map_group_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
22964
22965    /**
22966     * Set the marker's style of a group class.
22967     *
22968     * @param clas The group class.
22969     * @param style The style to be used by markers.
22970     *
22971     * Each marker must be associated to a group class, and will use the style
22972     * defined by such class when grouped to other markers.
22973     *
22974     * The following styles are provided by default theme:
22975     * @li @c radio - blue circle
22976     * @li @c radio2 - green circle
22977     * @li @c empty
22978     *
22979     * @see elm_map_group_class_new() for more details.
22980     * @see elm_map_marker_add()
22981     *
22982     * @ingroup Map
22983     */
22984    EAPI void                  elm_map_group_class_style_set(Elm_Map_Group_Class *clas, const char *style) EINA_ARG_NONNULL(1);
22985
22986    /**
22987     * Set the icon callback function of a group class.
22988     *
22989     * @param clas The group class.
22990     * @param icon_get The callback function that will return the icon.
22991     *
22992     * Each marker must be associated to a group class, and it can display a
22993     * custom icon. The function @p icon_get must return this icon.
22994     *
22995     * @see elm_map_group_class_new() for more details.
22996     * @see elm_map_marker_add()
22997     *
22998     * @ingroup Map
22999     */
23000    EAPI void                  elm_map_group_class_icon_cb_set(Elm_Map_Group_Class *clas, ElmMapGroupIconGetFunc icon_get) EINA_ARG_NONNULL(1);
23001
23002    /**
23003     * Set the data associated to the group class.
23004     *
23005     * @param clas The group class.
23006     * @param data The new user data.
23007     *
23008     * This data will be passed for callback functions, like icon get callback,
23009     * that can be set with elm_map_group_class_icon_cb_set().
23010     *
23011     * If a data was previously set, the object will lose the pointer for it,
23012     * so if needs to be freed, you must do it yourself.
23013     *
23014     * @see elm_map_group_class_new() for more details.
23015     * @see elm_map_group_class_icon_cb_set()
23016     * @see elm_map_marker_add()
23017     *
23018     * @ingroup Map
23019     */
23020    EAPI void                  elm_map_group_class_data_set(Elm_Map_Group_Class *clas, void *data) EINA_ARG_NONNULL(1);
23021
23022    /**
23023     * Set the minimum zoom from where the markers are displayed.
23024     *
23025     * @param clas The group class.
23026     * @param zoom The minimum zoom.
23027     *
23028     * Markers only will be displayed when the map is displayed at @p zoom
23029     * or bigger.
23030     *
23031     * @see elm_map_group_class_new() for more details.
23032     * @see elm_map_marker_add()
23033     *
23034     * @ingroup Map
23035     */
23036    EAPI void                  elm_map_group_class_zoom_displayed_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
23037
23038    /**
23039     * Set the zoom from where the markers are no more grouped.
23040     *
23041     * @param clas The group class.
23042     * @param zoom The maximum zoom.
23043     *
23044     * Markers only will be grouped when the map is displayed at
23045     * less than @p zoom.
23046     *
23047     * @see elm_map_group_class_new() for more details.
23048     * @see elm_map_marker_add()
23049     *
23050     * @ingroup Map
23051     */
23052    EAPI void                  elm_map_group_class_zoom_grouped_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
23053
23054    /**
23055     * Set if the markers associated to the group class @clas are hidden or not.
23056     *
23057     * @param clas The group class.
23058     * @param hide Use @c EINA_TRUE to hide markers or @c EINA_FALSE
23059     * to show them.
23060     *
23061     * If @p hide is @c EINA_TRUE the markers will be hidden, but default
23062     * is to show them.
23063     *
23064     * @ingroup Map
23065     */
23066    EAPI void                  elm_map_group_class_hide_set(Evas_Object *obj, Elm_Map_Group_Class *clas, Eina_Bool hide) EINA_ARG_NONNULL(1, 2);
23067
23068    /**
23069     * Create a new marker class.
23070     *
23071     * @param obj The map object.
23072     * @return Returns the new group class.
23073     *
23074     * Each marker must be associated to a class.
23075     *
23076     * The marker class defines the style of the marker when a marker is
23077     * displayed alone, i.e., not grouped to to others markers. When grouped
23078     * it will use group class style.
23079     *
23080     * A marker class will need to be provided when creating a marker with
23081     * elm_map_marker_add().
23082     *
23083     * Some properties and functions can be set by class, as:
23084     * - style, with elm_map_marker_class_style_set()
23085     * - #ElmMapMarkerIconGetFunc - used to fetch icon for markers classes.
23086     *   It can be set using elm_map_marker_class_icon_cb_set().
23087     * - #ElmMapMarkerGetFunc - used to fetch bubble content for marker classes.
23088     *   Set using elm_map_marker_class_get_cb_set().
23089     * - #ElmMapMarkerDelFunc - used to delete bubble content for marker classes.
23090     *   Set using elm_map_marker_class_del_cb_set().
23091     *
23092     * @see elm_map_marker_add()
23093     * @see elm_map_marker_class_style_set()
23094     * @see elm_map_marker_class_icon_cb_set()
23095     * @see elm_map_marker_class_get_cb_set()
23096     * @see elm_map_marker_class_del_cb_set()
23097     *
23098     * @ingroup Map
23099     */
23100    EAPI Elm_Map_Marker_Class *elm_map_marker_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
23101
23102    /**
23103     * Set the marker's style of a marker class.
23104     *
23105     * @param clas The marker class.
23106     * @param style The style to be used by markers.
23107     *
23108     * Each marker must be associated to a marker class, and will use the style
23109     * defined by such class when alone, i.e., @b not grouped to other markers.
23110     *
23111     * The following styles are provided by default theme:
23112     * @li @c radio
23113     * @li @c radio2
23114     * @li @c empty
23115     *
23116     * @see elm_map_marker_class_new() for more details.
23117     * @see elm_map_marker_add()
23118     *
23119     * @ingroup Map
23120     */
23121    EAPI void                  elm_map_marker_class_style_set(Elm_Map_Marker_Class *clas, const char *style) EINA_ARG_NONNULL(1);
23122
23123    /**
23124     * Set the icon callback function of a marker class.
23125     *
23126     * @param clas The marker class.
23127     * @param icon_get The callback function that will return the icon.
23128     *
23129     * Each marker must be associated to a marker class, and it can display a
23130     * custom icon. The function @p icon_get must return this icon.
23131     *
23132     * @see elm_map_marker_class_new() for more details.
23133     * @see elm_map_marker_add()
23134     *
23135     * @ingroup Map
23136     */
23137    EAPI void                  elm_map_marker_class_icon_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerIconGetFunc icon_get) EINA_ARG_NONNULL(1);
23138
23139    /**
23140     * Set the bubble content callback function of a marker class.
23141     *
23142     * @param clas The marker class.
23143     * @param get The callback function that will return the content.
23144     *
23145     * Each marker must be associated to a marker class, and it can display a
23146     * a content on a bubble that opens when the user click over the marker.
23147     * The function @p get must return this content object.
23148     *
23149     * If this content will need to be deleted, elm_map_marker_class_del_cb_set()
23150     * can be used.
23151     *
23152     * @see elm_map_marker_class_new() for more details.
23153     * @see elm_map_marker_class_del_cb_set()
23154     * @see elm_map_marker_add()
23155     *
23156     * @ingroup Map
23157     */
23158    EAPI void                  elm_map_marker_class_get_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerGetFunc get) EINA_ARG_NONNULL(1);
23159
23160    /**
23161     * Set the callback function used to delete bubble content of a marker class.
23162     *
23163     * @param clas The marker class.
23164     * @param del The callback function that will delete the content.
23165     *
23166     * Each marker must be associated to a marker class, and it can display a
23167     * a content on a bubble that opens when the user click over the marker.
23168     * The function to return such content can be set with
23169     * elm_map_marker_class_get_cb_set().
23170     *
23171     * If this content must be freed, a callback function need to be
23172     * set for that task with this function.
23173     *
23174     * If this callback is defined it will have to delete (or not) the
23175     * object inside, but if the callback is not defined the object will be
23176     * destroyed with evas_object_del().
23177     *
23178     * @see elm_map_marker_class_new() for more details.
23179     * @see elm_map_marker_class_get_cb_set()
23180     * @see elm_map_marker_add()
23181     *
23182     * @ingroup Map
23183     */
23184    EAPI void                  elm_map_marker_class_del_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerDelFunc del) EINA_ARG_NONNULL(1);
23185
23186    /**
23187     * Get the list of available sources.
23188     *
23189     * @param obj The map object.
23190     * @return The source names list.
23191     *
23192     * It will provide a list with all available sources, that can be set as
23193     * current source with elm_map_source_name_set(), or get with
23194     * elm_map_source_name_get().
23195     *
23196     * Available sources:
23197     * @li "Mapnik"
23198     * @li "Osmarender"
23199     * @li "CycleMap"
23200     * @li "Maplint"
23201     *
23202     * @see elm_map_source_name_set() for more details.
23203     * @see elm_map_source_name_get()
23204     *
23205     * @ingroup Map
23206     */
23207    EAPI const char          **elm_map_source_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23208
23209    /**
23210     * Set the source of the map.
23211     *
23212     * @param obj The map object.
23213     * @param source The source to be used.
23214     *
23215     * Map widget retrieves images that composes the map from a web service.
23216     * This web service can be set with this method.
23217     *
23218     * A different service can return a different maps with different
23219     * information and it can use different zoom values.
23220     *
23221     * The @p source_name need to match one of the names provided by
23222     * elm_map_source_names_get().
23223     *
23224     * The current source can be get using elm_map_source_name_get().
23225     *
23226     * @see elm_map_source_names_get()
23227     * @see elm_map_source_name_get()
23228     *
23229     *
23230     * @ingroup Map
23231     */
23232    EAPI void                  elm_map_source_name_set(Evas_Object *obj, const char *source_name) EINA_ARG_NONNULL(1);
23233
23234    /**
23235     * Get the name of currently used source.
23236     *
23237     * @param obj The map object.
23238     * @return Returns the name of the source in use.
23239     *
23240     * @see elm_map_source_name_set() for more details.
23241     *
23242     * @ingroup Map
23243     */
23244    EAPI const char           *elm_map_source_name_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23245
23246    /**
23247     * Set the source of the route service to be used by the map.
23248     *
23249     * @param obj The map object.
23250     * @param source The route service to be used, being it one of
23251     * #ELM_MAP_ROUTE_SOURCE_YOURS (default), #ELM_MAP_ROUTE_SOURCE_MONAV,
23252     * and #ELM_MAP_ROUTE_SOURCE_ORS.
23253     *
23254     * Each one has its own algorithm, so the route retrieved may
23255     * differ depending on the source route. Now, only the default is working.
23256     *
23257     * #ELM_MAP_ROUTE_SOURCE_YOURS is the routing service provided at
23258     * http://www.yournavigation.org/.
23259     *
23260     * #ELM_MAP_ROUTE_SOURCE_MONAV, offers exact routing without heuristic
23261     * assumptions. Its routing core is based on Contraction Hierarchies.
23262     *
23263     * #ELM_MAP_ROUTE_SOURCE_ORS, is provided at http://www.openrouteservice.org/
23264     *
23265     * @see elm_map_route_source_get().
23266     *
23267     * @ingroup Map
23268     */
23269    EAPI void                  elm_map_route_source_set(Evas_Object *obj, Elm_Map_Route_Sources source) EINA_ARG_NONNULL(1);
23270
23271    /**
23272     * Get the current route source.
23273     *
23274     * @param obj The map object.
23275     * @return The source of the route service used by the map.
23276     *
23277     * @see elm_map_route_source_set() for details.
23278     *
23279     * @ingroup Map
23280     */
23281    EAPI Elm_Map_Route_Sources elm_map_route_source_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23282
23283    /**
23284     * Set the minimum zoom of the source.
23285     *
23286     * @param obj The map object.
23287     * @param zoom New minimum zoom value to be used.
23288     *
23289     * By default, it's 0.
23290     *
23291     * @ingroup Map
23292     */
23293    EAPI void                  elm_map_source_zoom_min_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
23294
23295    /**
23296     * Get the minimum zoom of the source.
23297     *
23298     * @param obj The map object.
23299     * @return Returns the minimum zoom of the source.
23300     *
23301     * @see elm_map_source_zoom_min_set() for details.
23302     *
23303     * @ingroup Map
23304     */
23305    EAPI int                   elm_map_source_zoom_min_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23306
23307    /**
23308     * Set the maximum zoom of the source.
23309     *
23310     * @param obj The map object.
23311     * @param zoom New maximum zoom value to be used.
23312     *
23313     * By default, it's 18.
23314     *
23315     * @ingroup Map
23316     */
23317    EAPI void                  elm_map_source_zoom_max_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
23318
23319    /**
23320     * Get the maximum zoom of the source.
23321     *
23322     * @param obj The map object.
23323     * @return Returns the maximum zoom of the source.
23324     *
23325     * @see elm_map_source_zoom_min_set() for details.
23326     *
23327     * @ingroup Map
23328     */
23329    EAPI int                   elm_map_source_zoom_max_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23330
23331    /**
23332     * Set the user agent used by the map object to access routing services.
23333     *
23334     * @param obj The map object.
23335     * @param user_agent The user agent to be used by the map.
23336     *
23337     * User agent is a client application implementing a network protocol used
23338     * in communications within a clientā€“server distributed computing system
23339     *
23340     * The @p user_agent identification string will transmitted in a header
23341     * field @c User-Agent.
23342     *
23343     * @see elm_map_user_agent_get()
23344     *
23345     * @ingroup Map
23346     */
23347    EAPI void                  elm_map_user_agent_set(Evas_Object *obj, const char *user_agent) EINA_ARG_NONNULL(1, 2);
23348
23349    /**
23350     * Get the user agent used by the map object.
23351     *
23352     * @param obj The map object.
23353     * @return The user agent identification string used by the map.
23354     *
23355     * @see elm_map_user_agent_set() for details.
23356     *
23357     * @ingroup Map
23358     */
23359    EAPI const char           *elm_map_user_agent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23360
23361    /**
23362     * Add a new route to the map object.
23363     *
23364     * @param obj The map object.
23365     * @param type The type of transport to be considered when tracing a route.
23366     * @param method The routing method, what should be priorized.
23367     * @param flon The start longitude.
23368     * @param flat The start latitude.
23369     * @param tlon The destination longitude.
23370     * @param tlat The destination latitude.
23371     *
23372     * @return The created route or @c NULL upon failure.
23373     *
23374     * A route will be traced by point on coordinates (@p flat, @p flon)
23375     * to point on coordinates (@p tlat, @p tlon), using the route service
23376     * set with elm_map_route_source_set().
23377     *
23378     * It will take @p type on consideration to define the route,
23379     * depending if the user will be walking or driving, the route may vary.
23380     * One of #ELM_MAP_ROUTE_TYPE_MOTOCAR, #ELM_MAP_ROUTE_TYPE_BICYCLE, or
23381     * #ELM_MAP_ROUTE_TYPE_FOOT need to be used.
23382     *
23383     * Another parameter is what the route should priorize, the minor distance
23384     * or the less time to be spend on the route. So @p method should be one
23385     * of #ELM_MAP_ROUTE_METHOD_SHORTEST or #ELM_MAP_ROUTE_METHOD_FASTEST.
23386     *
23387     * Routes created with this method can be deleted with
23388     * elm_map_route_remove(), colored with elm_map_route_color_set(),
23389     * and distance can be get with elm_map_route_distance_get().
23390     *
23391     * @see elm_map_route_remove()
23392     * @see elm_map_route_color_set()
23393     * @see elm_map_route_distance_get()
23394     * @see elm_map_route_source_set()
23395     *
23396     * @ingroup Map
23397     */
23398    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);
23399
23400    /**
23401     * Remove a route from the map.
23402     *
23403     * @param route The route to remove.
23404     *
23405     * @see elm_map_route_add()
23406     *
23407     * @ingroup Map
23408     */
23409    EAPI void                  elm_map_route_remove(Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23410
23411    /**
23412     * Set the route color.
23413     *
23414     * @param route The route object.
23415     * @param r Red channel value, from 0 to 255.
23416     * @param g Green channel value, from 0 to 255.
23417     * @param b Blue channel value, from 0 to 255.
23418     * @param a Alpha channel value, from 0 to 255.
23419     *
23420     * It uses an additive color model, so each color channel represents
23421     * how much of each primary colors must to be used. 0 represents
23422     * ausence of this color, so if all of the three are set to 0,
23423     * the color will be black.
23424     *
23425     * These component values should be integers in the range 0 to 255,
23426     * (single 8-bit byte).
23427     *
23428     * This sets the color used for the route. By default, it is set to
23429     * solid red (r = 255, g = 0, b = 0, a = 255).
23430     *
23431     * For alpha channel, 0 represents completely transparent, and 255, opaque.
23432     *
23433     * @see elm_map_route_color_get()
23434     *
23435     * @ingroup Map
23436     */
23437    EAPI void                  elm_map_route_color_set(Elm_Map_Route *route, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
23438
23439    /**
23440     * Get the route color.
23441     *
23442     * @param route The route object.
23443     * @param r Pointer where to store the red channel value.
23444     * @param g Pointer where to store the green channel value.
23445     * @param b Pointer where to store the blue channel value.
23446     * @param a Pointer where to store the alpha channel value.
23447     *
23448     * @see elm_map_route_color_set() for details.
23449     *
23450     * @ingroup Map
23451     */
23452    EAPI void                  elm_map_route_color_get(const Elm_Map_Route *route, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
23453
23454    /**
23455     * Get the route distance in kilometers.
23456     *
23457     * @param route The route object.
23458     * @return The distance of route (unit : km).
23459     *
23460     * @ingroup Map
23461     */
23462    EAPI double                elm_map_route_distance_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23463
23464    /**
23465     * Get the information of route nodes.
23466     *
23467     * @param route The route object.
23468     * @return Returns a string with the nodes of route.
23469     *
23470     * @ingroup Map
23471     */
23472    EAPI const char           *elm_map_route_node_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23473
23474    /**
23475     * Get the information of route waypoint.
23476     *
23477     * @param route the route object.
23478     * @return Returns a string with information about waypoint of route.
23479     *
23480     * @ingroup Map
23481     */
23482    EAPI const char           *elm_map_route_waypoint_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23483
23484    /**
23485     * Get the address of the name.
23486     *
23487     * @param name The name handle.
23488     * @return Returns the address string of @p name.
23489     *
23490     * This gets the coordinates of the @p name, created with one of the
23491     * conversion functions.
23492     *
23493     * @see elm_map_utils_convert_name_into_coord()
23494     * @see elm_map_utils_convert_coord_into_name()
23495     *
23496     * @ingroup Map
23497     */
23498    EAPI const char           *elm_map_name_address_get(const Elm_Map_Name *name) EINA_ARG_NONNULL(1);
23499
23500    /**
23501     * Get the current coordinates of the name.
23502     *
23503     * @param name The name handle.
23504     * @param lat Pointer where to store the latitude.
23505     * @param lon Pointer where to store The longitude.
23506     *
23507     * This gets the coordinates of the @p name, created with one of the
23508     * conversion functions.
23509     *
23510     * @see elm_map_utils_convert_name_into_coord()
23511     * @see elm_map_utils_convert_coord_into_name()
23512     *
23513     * @ingroup Map
23514     */
23515    EAPI void                  elm_map_name_region_get(const Elm_Map_Name *name, double *lon, double *lat) EINA_ARG_NONNULL(1);
23516
23517    /**
23518     * Remove a name from the map.
23519     *
23520     * @param name The name to remove.
23521     *
23522     * Basically the struct handled by @p name will be freed, so convertions
23523     * between address and coordinates will be lost.
23524     *
23525     * @see elm_map_utils_convert_name_into_coord()
23526     * @see elm_map_utils_convert_coord_into_name()
23527     *
23528     * @ingroup Map
23529     */
23530    EAPI void                  elm_map_name_remove(Elm_Map_Name *name) EINA_ARG_NONNULL(1);
23531
23532    /**
23533     * Rotate the map.
23534     *
23535     * @param obj The map object.
23536     * @param degree Angle from 0.0 to 360.0 to rotate arount Z axis.
23537     * @param cx Rotation's center horizontal position.
23538     * @param cy Rotation's center vertical position.
23539     *
23540     * @see elm_map_rotate_get()
23541     *
23542     * @ingroup Map
23543     */
23544    EAPI void                  elm_map_rotate_set(Evas_Object *obj, double degree, Evas_Coord cx, Evas_Coord cy) EINA_ARG_NONNULL(1);
23545
23546    /**
23547     * Get the rotate degree of the map
23548     *
23549     * @param obj The map object
23550     * @param degree Pointer where to store degrees from 0.0 to 360.0
23551     * to rotate arount Z axis.
23552     * @param cx Pointer where to store rotation's center horizontal position.
23553     * @param cy Pointer where to store rotation's center vertical position.
23554     *
23555     * @see elm_map_rotate_set() to set map rotation.
23556     *
23557     * @ingroup Map
23558     */
23559    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);
23560
23561    /**
23562     * Enable or disable mouse wheel to be used to zoom in / out the map.
23563     *
23564     * @param obj The map object.
23565     * @param disabled Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE
23566     * to enable it.
23567     *
23568     * Mouse wheel can be used for the user to zoom in or zoom out the map.
23569     *
23570     * It's disabled by default.
23571     *
23572     * @see elm_map_wheel_disabled_get()
23573     *
23574     * @ingroup Map
23575     */
23576    EAPI void                  elm_map_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
23577
23578    /**
23579     * Get a value whether mouse wheel is enabled or not.
23580     *
23581     * @param obj The map object.
23582     * @return @c EINA_TRUE means map is disabled. @c EINA_FALSE indicates
23583     * it is enabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
23584     *
23585     * Mouse wheel can be used for the user to zoom in or zoom out the map.
23586     *
23587     * @see elm_map_wheel_disabled_set() for details.
23588     *
23589     * @ingroup Map
23590     */
23591    EAPI Eina_Bool             elm_map_wheel_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23592
23593 #ifdef ELM_EMAP
23594    /**
23595     * Add a track on the map
23596     *
23597     * @param obj The map object.
23598     * @param emap The emap route object.
23599     * @return The route object. This is an elm object of type Route.
23600     *
23601     * @see elm_route_add() for details.
23602     *
23603     * @ingroup Map
23604     */
23605    EAPI Evas_Object          *elm_map_track_add(Evas_Object *obj, EMap_Route *emap) EINA_ARG_NONNULL(1);
23606 #endif
23607
23608    /**
23609     * Remove a track from the map
23610     *
23611     * @param obj The map object.
23612     * @param route The track to remove.
23613     *
23614     * @ingroup Map
23615     */
23616    EAPI void                  elm_map_track_remove(Evas_Object *obj, Evas_Object *route) EINA_ARG_NONNULL(1);
23617
23618    /**
23619     * @}
23620     */
23621
23622    /* Route */
23623    EAPI Evas_Object *elm_route_add(Evas_Object *parent);
23624 #ifdef ELM_EMAP
23625    EAPI void elm_route_emap_set(Evas_Object *obj, EMap_Route *emap);
23626 #endif
23627    EAPI double elm_route_lon_min_get(Evas_Object *obj);
23628    EAPI double elm_route_lat_min_get(Evas_Object *obj);
23629    EAPI double elm_route_lon_max_get(Evas_Object *obj);
23630    EAPI double elm_route_lat_max_get(Evas_Object *obj);
23631
23632
23633    /**
23634     * @defgroup Panel Panel
23635     *
23636     * @image html img/widget/panel/preview-00.png
23637     * @image latex img/widget/panel/preview-00.eps
23638     *
23639     * @brief A panel is a type of animated container that contains subobjects.
23640     * It can be expanded or contracted by clicking the button on it's edge.
23641     *
23642     * Orientations are as follows:
23643     * @li ELM_PANEL_ORIENT_TOP
23644     * @li ELM_PANEL_ORIENT_LEFT
23645     * @li ELM_PANEL_ORIENT_RIGHT
23646     *
23647     * To set/get/unset the content of the panel, you can use
23648     * elm_object_content_set/get/unset APIs.
23649     * Once the content object is set, a previously set one will be deleted.
23650     * If you want to keep that old content object, use the
23651     * elm_object_content_unset() function
23652     *
23653     * @ref tutorial_panel shows one way to use this widget.
23654     * @{
23655     */
23656    typedef enum _Elm_Panel_Orient
23657      {
23658         ELM_PANEL_ORIENT_TOP, /**< Panel (dis)appears from the top */
23659         ELM_PANEL_ORIENT_BOTTOM, /**< Not implemented */
23660         ELM_PANEL_ORIENT_LEFT, /**< Panel (dis)appears from the left */
23661         ELM_PANEL_ORIENT_RIGHT, /**< Panel (dis)appears from the right */
23662      } Elm_Panel_Orient;
23663    /**
23664     * @brief Adds a panel object
23665     *
23666     * @param parent The parent object
23667     *
23668     * @return The panel object, or NULL on failure
23669     */
23670    EAPI Evas_Object          *elm_panel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
23671    /**
23672     * @brief Sets the orientation of the panel
23673     *
23674     * @param parent The parent object
23675     * @param orient The panel orientation. Can be one of the following:
23676     * @li ELM_PANEL_ORIENT_TOP
23677     * @li ELM_PANEL_ORIENT_LEFT
23678     * @li ELM_PANEL_ORIENT_RIGHT
23679     *
23680     * Sets from where the panel will (dis)appear.
23681     */
23682    EAPI void                  elm_panel_orient_set(Evas_Object *obj, Elm_Panel_Orient orient) EINA_ARG_NONNULL(1);
23683    /**
23684     * @brief Get the orientation of the panel.
23685     *
23686     * @param obj The panel object
23687     * @return The Elm_Panel_Orient, or ELM_PANEL_ORIENT_LEFT on failure.
23688     */
23689    EAPI Elm_Panel_Orient      elm_panel_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23690    /**
23691     * @brief Set the content of the panel.
23692     *
23693     * @param obj The panel object
23694     * @param content The panel content
23695     *
23696     * Once the content object is set, a previously set one will be deleted.
23697     * If you want to keep that old content object, use the
23698     * elm_panel_content_unset() function.
23699     */
23700    EAPI void                  elm_panel_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
23701    /**
23702     * @brief Get the content of the panel.
23703     *
23704     * @param obj The panel object
23705     * @return The content that is being used
23706     *
23707     * Return the content object which is set for this widget.
23708     *
23709     * @see elm_panel_content_set()
23710     */
23711    EAPI Evas_Object          *elm_panel_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23712    /**
23713     * @brief Unset the content of the panel.
23714     *
23715     * @param obj The panel object
23716     * @return The content that was being used
23717     *
23718     * Unparent and return the content object which was set for this widget.
23719     *
23720     * @see elm_panel_content_set()
23721     */
23722    EAPI Evas_Object          *elm_panel_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
23723    /**
23724     * @brief Set the state of the panel.
23725     *
23726     * @param obj The panel object
23727     * @param hidden If true, the panel will run the animation to contract
23728     */
23729    EAPI void                  elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden) EINA_ARG_NONNULL(1);
23730    /**
23731     * @brief Get the state of the panel.
23732     *
23733     * @param obj The panel object
23734     * @param hidden If true, the panel is in the "hide" state
23735     */
23736    EAPI Eina_Bool             elm_panel_hidden_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23737    /**
23738     * @brief Toggle the hidden state of the panel from code
23739     *
23740     * @param obj The panel object
23741     */
23742    EAPI void                  elm_panel_toggle(Evas_Object *obj) EINA_ARG_NONNULL(1);
23743    /**
23744     * @}
23745     */
23746
23747    /**
23748     * @defgroup Panes Panes
23749     * @ingroup Elementary
23750     *
23751     * @image html img/widget/panes/preview-00.png
23752     * @image latex img/widget/panes/preview-00.eps width=\textwidth
23753     *
23754     * @image html img/panes.png
23755     * @image latex img/panes.eps width=\textwidth
23756     *
23757     * The panes adds a dragable bar between two contents. When dragged
23758     * this bar will resize contents size.
23759     *
23760     * Panes can be displayed vertically or horizontally, and contents
23761     * size proportion can be customized (homogeneous by default).
23762     *
23763     * Smart callbacks one can listen to:
23764     * - "press" - The panes has been pressed (button wasn't released yet).
23765     * - "unpressed" - The panes was released after being pressed.
23766     * - "clicked" - The panes has been clicked>
23767     * - "clicked,double" - The panes has been double clicked
23768     *
23769     * Available styles for it:
23770     * - @c "default"
23771     *
23772     * Default contents parts of the panes widget that you can use for are:
23773     * @li "elm.swallow.left" - A leftside content of the panes
23774     * @li "elm.swallow.right" - A rightside content of the panes
23775     *
23776     * If panes is displayed vertically, left content will be displayed at
23777     * top.
23778     * 
23779     * Here is an example on its usage:
23780     * @li @ref panes_example
23781     */
23782
23783 #define ELM_PANES_CONTENT_LEFT "elm.swallow.left"
23784 #define ELM_PANES_CONTENT_RIGHT "elm.swallow.right"
23785
23786    /**
23787     * @addtogroup Panes
23788     * @{
23789     */
23790
23791    /**
23792     * Add a new panes widget to the given parent Elementary
23793     * (container) object.
23794     *
23795     * @param parent The parent object.
23796     * @return a new panes widget handle or @c NULL, on errors.
23797     *
23798     * This function inserts a new panes widget on the canvas.
23799     *
23800     * @ingroup Panes
23801     */
23802    EAPI Evas_Object          *elm_panes_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
23803
23804    /**
23805     * Set the left content of the panes widget.
23806     *
23807     * @param obj The panes object.
23808     * @param content The new left content object.
23809     *
23810     * Once the content object is set, a previously set one will be deleted.
23811     * If you want to keep that old content object, use the
23812     * elm_panes_content_left_unset() function.
23813     *
23814     * If panes is displayed vertically, left content will be displayed at
23815     * top.
23816     *
23817     * @see elm_panes_content_left_get()
23818     * @see elm_panes_content_right_set() to set content on the other side.
23819     *
23820     * @ingroup Panes
23821     */
23822    EAPI void                  elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
23823
23824    /**
23825     * Set the right content of the panes widget.
23826     *
23827     * @param obj The panes object.
23828     * @param content The new right content object.
23829     *
23830     * Once the content object is set, a previously set one will be deleted.
23831     * If you want to keep that old content object, use the
23832     * elm_panes_content_right_unset() function.
23833     *
23834     * If panes is displayed vertically, left content will be displayed at
23835     * bottom.
23836     *
23837     * @see elm_panes_content_right_get()
23838     * @see elm_panes_content_left_set() to set content on the other side.
23839     *
23840     * @ingroup Panes
23841     */
23842    EAPI void                  elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
23843
23844    /**
23845     * Get the left content of the panes.
23846     *
23847     * @param obj The panes object.
23848     * @return The left content object that is being used.
23849     *
23850     * Return the left content object which is set for this widget.
23851     *
23852     * @see elm_panes_content_left_set() for details.
23853     *
23854     * @ingroup Panes
23855     */
23856    EAPI Evas_Object          *elm_panes_content_left_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23857
23858    /**
23859     * Get the right content of the panes.
23860     *
23861     * @param obj The panes object
23862     * @return The right content object that is being used
23863     *
23864     * Return the right content object which is set for this widget.
23865     *
23866     * @see elm_panes_content_right_set() for details.
23867     *
23868     * @ingroup Panes
23869     */
23870    EAPI Evas_Object          *elm_panes_content_right_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23871
23872    /**
23873     * Unset the left content used for the panes.
23874     *
23875     * @param obj The panes object.
23876     * @return The left content object that was being used.
23877     *
23878     * Unparent and return the left content object which was set for this widget.
23879     *
23880     * @see elm_panes_content_left_set() for details.
23881     * @see elm_panes_content_left_get().
23882     *
23883     * @ingroup Panes
23884     */
23885    EAPI Evas_Object          *elm_panes_content_left_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
23886
23887    /**
23888     * Unset the right content used for the panes.
23889     *
23890     * @param obj The panes object.
23891     * @return The right content object that was being used.
23892     *
23893     * Unparent and return the right content object which was set for this
23894     * widget.
23895     *
23896     * @see elm_panes_content_right_set() for details.
23897     * @see elm_panes_content_right_get().
23898     *
23899     * @ingroup Panes
23900     */
23901    EAPI Evas_Object          *elm_panes_content_right_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
23902
23903    /**
23904     * Get the size proportion of panes widget's left side.
23905     *
23906     * @param obj The panes object.
23907     * @return float value between 0.0 and 1.0 representing size proportion
23908     * of left side.
23909     *
23910     * @see elm_panes_content_left_size_set() for more details.
23911     *
23912     * @ingroup Panes
23913     */
23914    EAPI double                elm_panes_content_left_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23915
23916    /**
23917     * Set the size proportion of panes widget's left side.
23918     *
23919     * @param obj The panes object.
23920     * @param size Value between 0.0 and 1.0 representing size proportion
23921     * of left side.
23922     *
23923     * By default it's homogeneous, i.e., both sides have the same size.
23924     *
23925     * If something different is required, it can be set with this function.
23926     * For example, if the left content should be displayed over
23927     * 75% of the panes size, @p size should be passed as @c 0.75.
23928     * This way, right content will be resized to 25% of panes size.
23929     *
23930     * If displayed vertically, left content is displayed at top, and
23931     * right content at bottom.
23932     *
23933     * @note This proportion will change when user drags the panes bar.
23934     *
23935     * @see elm_panes_content_left_size_get()
23936     *
23937     * @ingroup Panes
23938     */
23939    EAPI void                  elm_panes_content_left_size_set(Evas_Object *obj, double size) EINA_ARG_NONNULL(1);
23940
23941   /**
23942    * Set the orientation of a given panes widget.
23943    *
23944    * @param obj The panes object.
23945    * @param horizontal Use @c EINA_TRUE to make @p obj to be
23946    * @b horizontal, @c EINA_FALSE to make it @b vertical.
23947    *
23948    * Use this function to change how your panes is to be
23949    * disposed: vertically or horizontally.
23950    *
23951    * By default it's displayed horizontally.
23952    *
23953    * @see elm_panes_horizontal_get()
23954    *
23955    * @ingroup Panes
23956    */
23957    EAPI void                  elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
23958
23959    /**
23960     * Retrieve the orientation of a given panes widget.
23961     *
23962     * @param obj The panes object.
23963     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
23964     * @c EINA_FALSE if it's @b vertical (and on errors).
23965     *
23966     * @see elm_panes_horizontal_set() for more details.
23967     *
23968     * @ingroup Panes
23969     */
23970    EAPI Eina_Bool             elm_panes_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23971    EAPI void                  elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed) EINA_ARG_NONNULL(1);
23972    EAPI Eina_Bool             elm_panes_fixed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23973
23974    /**
23975     * @}
23976     */
23977
23978    /**
23979     * @defgroup Flip Flip
23980     *
23981     * @image html img/widget/flip/preview-00.png
23982     * @image latex img/widget/flip/preview-00.eps
23983     *
23984     * This widget holds 2 content objects(Evas_Object): one on the front and one
23985     * on the back. It allows you to flip from front to back and vice-versa using
23986     * various animations.
23987     *
23988     * If either the front or back contents are not set the flip will treat that
23989     * as transparent. So if you wore to set the front content but not the back,
23990     * and then call elm_flip_go() you would see whatever is below the flip.
23991     *
23992     * For a list of supported animations see elm_flip_go().
23993     *
23994     * Signals that you can add callbacks for are:
23995     * "animate,begin" - when a flip animation was started
23996     * "animate,done" - when a flip animation is finished
23997     *
23998     * @ref tutorial_flip show how to use most of the API.
23999     *
24000     * @{
24001     */
24002    typedef enum _Elm_Flip_Mode
24003      {
24004         ELM_FLIP_ROTATE_Y_CENTER_AXIS,
24005         ELM_FLIP_ROTATE_X_CENTER_AXIS,
24006         ELM_FLIP_ROTATE_XZ_CENTER_AXIS,
24007         ELM_FLIP_ROTATE_YZ_CENTER_AXIS,
24008         ELM_FLIP_CUBE_LEFT,
24009         ELM_FLIP_CUBE_RIGHT,
24010         ELM_FLIP_CUBE_UP,
24011         ELM_FLIP_CUBE_DOWN,
24012         ELM_FLIP_PAGE_LEFT,
24013         ELM_FLIP_PAGE_RIGHT,
24014         ELM_FLIP_PAGE_UP,
24015         ELM_FLIP_PAGE_DOWN
24016      } Elm_Flip_Mode;
24017    typedef enum _Elm_Flip_Interaction
24018      {
24019         ELM_FLIP_INTERACTION_NONE,
24020         ELM_FLIP_INTERACTION_ROTATE,
24021         ELM_FLIP_INTERACTION_CUBE,
24022         ELM_FLIP_INTERACTION_PAGE
24023      } Elm_Flip_Interaction;
24024    typedef enum _Elm_Flip_Direction
24025      {
24026         ELM_FLIP_DIRECTION_UP, /**< Allows interaction with the top of the widget */
24027         ELM_FLIP_DIRECTION_DOWN, /**< Allows interaction with the bottom of the widget */
24028         ELM_FLIP_DIRECTION_LEFT, /**< Allows interaction with the left portion of the widget */
24029         ELM_FLIP_DIRECTION_RIGHT /**< Allows interaction with the right portion of the widget */
24030      } Elm_Flip_Direction;
24031    /**
24032     * @brief Add a new flip to the parent
24033     *
24034     * @param parent The parent object
24035     * @return The new object or NULL if it cannot be created
24036     */
24037    EAPI Evas_Object *elm_flip_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24038    /**
24039     * @brief Set the front content of the flip widget.
24040     *
24041     * @param obj The flip object
24042     * @param content The new front content object
24043     *
24044     * Once the content object is set, a previously set one will be deleted.
24045     * If you want to keep that old content object, use the
24046     * elm_flip_content_front_unset() function.
24047     */
24048    EAPI void         elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24049    /**
24050     * @brief Set the back content of the flip widget.
24051     *
24052     * @param obj The flip object
24053     * @param content The new back content object
24054     *
24055     * Once the content object is set, a previously set one will be deleted.
24056     * If you want to keep that old content object, use the
24057     * elm_flip_content_back_unset() function.
24058     */
24059    EAPI void         elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24060    /**
24061     * @brief Get the front content used for the flip
24062     *
24063     * @param obj The flip object
24064     * @return The front content object that is being used
24065     *
24066     * Return the front content object which is set for this widget.
24067     */
24068    EAPI Evas_Object *elm_flip_content_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24069    /**
24070     * @brief Get the back content used for the flip
24071     *
24072     * @param obj The flip object
24073     * @return The back content object that is being used
24074     *
24075     * Return the back content object which is set for this widget.
24076     */
24077    EAPI Evas_Object *elm_flip_content_back_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24078    /**
24079     * @brief Unset the front content used for the flip
24080     *
24081     * @param obj The flip object
24082     * @return The front content object that was being used
24083     *
24084     * Unparent and return the front content object which was set for this widget.
24085     */
24086    EAPI Evas_Object *elm_flip_content_front_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24087    /**
24088     * @brief Unset the back content used for the flip
24089     *
24090     * @param obj The flip object
24091     * @return The back content object that was being used
24092     *
24093     * Unparent and return the back content object which was set for this widget.
24094     */
24095    EAPI Evas_Object *elm_flip_content_back_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24096    /**
24097     * @brief Get flip front visibility state
24098     *
24099     * @param obj The flip objct
24100     * @return EINA_TRUE if front front is showing, EINA_FALSE if the back is
24101     * showing.
24102     */
24103    EAPI Eina_Bool    elm_flip_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24104    /**
24105     * @brief Set flip perspective
24106     *
24107     * @param obj The flip object
24108     * @param foc The coordinate to set the focus on
24109     * @param x The X coordinate
24110     * @param y The Y coordinate
24111     *
24112     * @warning This function currently does nothing.
24113     */
24114    EAPI void         elm_flip_perspective_set(Evas_Object *obj, Evas_Coord foc, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
24115    /**
24116     * @brief Runs the flip animation
24117     *
24118     * @param obj The flip object
24119     * @param mode The mode type
24120     *
24121     * Flips the front and back contents using the @p mode animation. This
24122     * efectively hides the currently visible content and shows the hidden one.
24123     *
24124     * There a number of possible animations to use for the flipping:
24125     * @li ELM_FLIP_ROTATE_X_CENTER_AXIS - Rotate the currently visible content
24126     * around a horizontal axis in the middle of its height, the other content
24127     * is shown as the other side of the flip.
24128     * @li ELM_FLIP_ROTATE_Y_CENTER_AXIS - Rotate the currently visible content
24129     * around a vertical axis in the middle of its width, the other content is
24130     * shown as the other side of the flip.
24131     * @li ELM_FLIP_ROTATE_XZ_CENTER_AXIS - Rotate the currently visible content
24132     * around a diagonal axis in the middle of its width, the other content is
24133     * shown as the other side of the flip.
24134     * @li ELM_FLIP_ROTATE_YZ_CENTER_AXIS - Rotate the currently visible content
24135     * around a diagonal axis in the middle of its height, the other content is
24136     * shown as the other side of the flip.
24137     * @li ELM_FLIP_CUBE_LEFT - Rotate the currently visible content to the left
24138     * as if the flip was a cube, the other content is show as the right face of
24139     * the cube.
24140     * @li ELM_FLIP_CUBE_RIGHT - Rotate the currently visible content to the
24141     * right as if the flip was a cube, the other content is show as the left
24142     * face of the cube.
24143     * @li ELM_FLIP_CUBE_UP - Rotate the currently visible content up as if the
24144     * flip was a cube, the other content is show as the bottom face of the cube.
24145     * @li ELM_FLIP_CUBE_DOWN - Rotate the currently visible content down as if
24146     * the flip was a cube, the other content is show as the upper face of the
24147     * cube.
24148     * @li ELM_FLIP_PAGE_LEFT - Move the currently visible content to the left as
24149     * if the flip was a book, the other content is shown as the page below that.
24150     * @li ELM_FLIP_PAGE_RIGHT - Move the currently visible content to the right
24151     * as if the flip was a book, the other content is shown as the page below
24152     * that.
24153     * @li ELM_FLIP_PAGE_UP - Move the currently visible content up as if the
24154     * flip was a book, the other content is shown as the page below that.
24155     * @li ELM_FLIP_PAGE_DOWN - Move the currently visible content down as if the
24156     * flip was a book, the other content is shown as the page below that.
24157     *
24158     * @image html elm_flip.png
24159     * @image latex elm_flip.eps width=\textwidth
24160     */
24161    EAPI void         elm_flip_go(Evas_Object *obj, Elm_Flip_Mode mode) EINA_ARG_NONNULL(1);
24162    /**
24163     * @brief Set the interactive flip mode
24164     *
24165     * @param obj The flip object
24166     * @param mode The interactive flip mode to use
24167     *
24168     * This sets if the flip should be interactive (allow user to click and
24169     * drag a side of the flip to reveal the back page and cause it to flip).
24170     * By default a flip is not interactive. You may also need to set which
24171     * sides of the flip are "active" for flipping and how much space they use
24172     * (a minimum of a finger size) with elm_flip_interacton_direction_enabled_set()
24173     * and elm_flip_interacton_direction_hitsize_set()
24174     *
24175     * The four avilable mode of interaction are:
24176     * @li ELM_FLIP_INTERACTION_NONE - No interaction is allowed
24177     * @li ELM_FLIP_INTERACTION_ROTATE - Interaction will cause rotate animation
24178     * @li ELM_FLIP_INTERACTION_CUBE - Interaction will cause cube animation
24179     * @li ELM_FLIP_INTERACTION_PAGE - Interaction will cause page animation
24180     *
24181     * @note ELM_FLIP_INTERACTION_ROTATE won't cause
24182     * ELM_FLIP_ROTATE_XZ_CENTER_AXIS or ELM_FLIP_ROTATE_YZ_CENTER_AXIS to
24183     * happen, those can only be acheived with elm_flip_go();
24184     */
24185    EAPI void         elm_flip_interaction_set(Evas_Object *obj, Elm_Flip_Interaction mode);
24186    /**
24187     * @brief Get the interactive flip mode
24188     *
24189     * @param obj The flip object
24190     * @return The interactive flip mode
24191     *
24192     * Returns the interactive flip mode set by elm_flip_interaction_set()
24193     */
24194    EAPI Elm_Flip_Interaction elm_flip_interaction_get(const Evas_Object *obj);
24195    /**
24196     * @brief Set which directions of the flip respond to interactive flip
24197     *
24198     * @param obj The flip object
24199     * @param dir The direction to change
24200     * @param enabled If that direction is enabled or not
24201     *
24202     * By default all directions are disabled, so you may want to enable the
24203     * desired directions for flipping if you need interactive flipping. You must
24204     * call this function once for each direction that should be enabled.
24205     *
24206     * @see elm_flip_interaction_set()
24207     */
24208    EAPI void         elm_flip_interacton_direction_enabled_set(Evas_Object *obj, Elm_Flip_Direction dir, Eina_Bool enabled);
24209    /**
24210     * @brief Get the enabled state of that flip direction
24211     *
24212     * @param obj The flip object
24213     * @param dir The direction to check
24214     * @return If that direction is enabled or not
24215     *
24216     * Gets the enabled state set by elm_flip_interacton_direction_enabled_set()
24217     *
24218     * @see elm_flip_interaction_set()
24219     */
24220    EAPI Eina_Bool    elm_flip_interacton_direction_enabled_get(Evas_Object *obj, Elm_Flip_Direction dir);
24221    /**
24222     * @brief Set the amount of the flip that is sensitive to interactive flip
24223     *
24224     * @param obj The flip object
24225     * @param dir The direction to modify
24226     * @param hitsize The amount of that dimension (0.0 to 1.0) to use
24227     *
24228     * Set the amount of the flip that is sensitive to interactive flip, with 0
24229     * representing no area in the flip and 1 representing the entire flip. There
24230     * is however a consideration to be made in that the area will never be
24231     * smaller than the finger size set(as set in your Elementary configuration).
24232     *
24233     * @see elm_flip_interaction_set()
24234     */
24235    EAPI void         elm_flip_interacton_direction_hitsize_set(Evas_Object *obj, Elm_Flip_Direction dir, double hitsize);
24236    /**
24237     * @brief Get the amount of the flip that is sensitive to interactive flip
24238     *
24239     * @param obj The flip object
24240     * @param dir The direction to check
24241     * @return The size set for that direction
24242     *
24243     * Returns the amount os sensitive area set by
24244     * elm_flip_interacton_direction_hitsize_set().
24245     */
24246    EAPI double       elm_flip_interacton_direction_hitsize_get(Evas_Object *obj, Elm_Flip_Direction dir);
24247    /**
24248     * @}
24249     */
24250
24251    /* scrolledentry */
24252    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24253    EINA_DEPRECATED EAPI void         elm_scrolled_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
24254    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24255    EINA_DEPRECATED EAPI void         elm_scrolled_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
24256    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24257    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24258    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24259    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24260    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24261    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24262    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24263    EINA_DEPRECATED EAPI void         elm_scrolled_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
24264    EINA_DEPRECATED EAPI void         elm_scrolled_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
24265    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24266    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
24267    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
24268    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
24269    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
24270    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
24271    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
24272    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24273    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24274    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24275    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24276    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
24277    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
24278    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24279    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24280    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24281    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
24282    EINA_DEPRECATED EAPI int          elm_scrolled_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24283    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
24284    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
24285    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
24286    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
24287    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);
24288    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
24289    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24290    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);
24291    EINA_DEPRECATED EAPI void         elm_scrolled_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
24292    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);
24293    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1, 2);
24294    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24295    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24296    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
24297    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1, 2);
24298    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24299    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24300    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
24301    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);
24302    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);
24303    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);
24304    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);
24305    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);
24306    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);
24307    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
24308    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
24309    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
24310    EINA_DEPRECATED EAPI void         elm_scrolled_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
24311    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24312    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
24313    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cnp_textonly_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
24314    EINA_DEPRECATED EAPI void         elm_scrolled_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
24315    EINA_DEPRECATED EAPI void         elm_scrolled_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled);
24316    EINA_DEPRECATED EAPI void         elm_scrolled_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout);
24317    EINA_DEPRECATED EAPI Ecore_IMF_Context *elm_scrolled_entry_imf_context_get(Evas_Object *obj);
24318    EINA_DEPRECATED EAPI void         elm_scrolled_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap);
24319    EINA_DEPRECATED EAPI void         elm_scrolled_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod);
24320
24321    /**
24322     * @defgroup Conformant Conformant
24323     * @ingroup Elementary
24324     *
24325     * @image html img/widget/conformant/preview-00.png
24326     * @image latex img/widget/conformant/preview-00.eps width=\textwidth
24327     *
24328     * @image html img/conformant.png
24329     * @image latex img/conformant.eps width=\textwidth
24330     *
24331     * The aim is to provide a widget that can be used in elementary apps to
24332     * account for space taken up by the indicator, virtual keypad & softkey
24333     * windows when running the illume2 module of E17.
24334     *
24335     * So conformant content will be sized and positioned considering the
24336     * space required for such stuff, and when they popup, as a keyboard
24337     * shows when an entry is selected, conformant content won't change.
24338     *
24339     * Available styles for it:
24340     * - @c "default"
24341     *
24342     * Default contents parts of the conformant widget that you can use for are:
24343     *
24344     * @li "elm.swallow.content" - A content of the conformant
24345     *
24346     * See how to use this widget in this example:
24347     * @ref conformant_example
24348     */
24349
24350    /**
24351     * @addtogroup Conformant
24352     * @{
24353     */
24354
24355    /**
24356     * Add a new conformant widget to the given parent Elementary
24357     * (container) object.
24358     *
24359     * @param parent The parent object.
24360     * @return A new conformant widget handle or @c NULL, on errors.
24361     *
24362     * This function inserts a new conformant widget on the canvas.
24363     *
24364     * @ingroup Conformant
24365     */
24366    EAPI Evas_Object *elm_conformant_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24367
24368    /**
24369     * Set the content of the conformant widget.
24370     *
24371     * @param obj The conformant object.
24372     * @param content The content to be displayed by the conformant.
24373     *
24374     * Content will be sized and positioned considering the space required
24375     * to display a virtual keyboard. So it won't fill all the conformant
24376     * size. This way is possible to be sure that content won't resize
24377     * or be re-positioned after the keyboard is displayed.
24378     *
24379     * Once the content object is set, a previously set one will be deleted.
24380     * If you want to keep that old content object, use the
24381     * elm_object_content_unset() function.
24382     *
24383     * @see elm_object_content_unset()
24384     * @see elm_object_content_get()
24385     *
24386     * @ingroup Conformant
24387     */
24388    EAPI void         elm_conformant_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24389
24390    /**
24391     * Get the content of the conformant widget.
24392     *
24393     * @param obj The conformant object.
24394     * @return The content that is being used.
24395     *
24396     * Return the content object which is set for this widget.
24397     * It won't be unparent from conformant. For that, use
24398     * elm_object_content_unset().
24399     *
24400     * @see elm_object_content_set().
24401     * @see elm_object_content_unset()
24402     *
24403     * @ingroup Conformant
24404     */
24405    EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24406
24407    /**
24408     * Unset the content of the conformant widget.
24409     *
24410     * @param obj The conformant object.
24411     * @return The content that was being used.
24412     *
24413     * Unparent and return the content object which was set for this widget.
24414     *
24415     * @see elm_object_content_set().
24416     *
24417     * @ingroup Conformant
24418     */
24419    EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24420
24421    /**
24422     * Returns the Evas_Object that represents the content area.
24423     *
24424     * @param obj The conformant object.
24425     * @return The content area of the widget.
24426     *
24427     * @ingroup Conformant
24428     */
24429    EAPI Evas_Object *elm_conformant_content_area_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24430
24431    /**
24432     * @}
24433     */
24434
24435    /**
24436     * @defgroup Mapbuf Mapbuf
24437     * @ingroup Elementary
24438     *
24439     * @image html img/widget/mapbuf/preview-00.png
24440     * @image latex img/widget/mapbuf/preview-00.eps width=\textwidth
24441     *
24442     * This holds one content object and uses an Evas Map of transformation
24443     * points to be later used with this content. So the content will be
24444     * moved, resized, etc as a single image. So it will improve performance
24445     * when you have a complex interafce, with a lot of elements, and will
24446     * need to resize or move it frequently (the content object and its
24447     * children).
24448     *
24449     * To set/get/unset the content of the mapbuf, you can use 
24450     * elm_object_content_set/get/unset APIs. 
24451     * Once the content object is set, a previously set one will be deleted.
24452     * If you want to keep that old content object, use the
24453     * elm_object_content_unset() function.
24454     *
24455     * To enable map, elm_mapbuf_enabled_set() should be used.
24456     * 
24457     * See how to use this widget in this example:
24458     * @ref mapbuf_example
24459     */
24460
24461    /**
24462     * @addtogroup Mapbuf
24463     * @{
24464     */
24465
24466    /**
24467     * Add a new mapbuf widget to the given parent Elementary
24468     * (container) object.
24469     *
24470     * @param parent The parent object.
24471     * @return A new mapbuf widget handle or @c NULL, on errors.
24472     *
24473     * This function inserts a new mapbuf widget on the canvas.
24474     *
24475     * @ingroup Mapbuf
24476     */
24477    EAPI Evas_Object *elm_mapbuf_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24478
24479    /**
24480     * Set the content of the mapbuf.
24481     *
24482     * @param obj The mapbuf object.
24483     * @param content The content that will be filled in this mapbuf object.
24484     *
24485     * Once the content object is set, a previously set one will be deleted.
24486     * If you want to keep that old content object, use the
24487     * elm_mapbuf_content_unset() function.
24488     *
24489     * To enable map, elm_mapbuf_enabled_set() should be used.
24490     *
24491     * @ingroup Mapbuf
24492     */
24493    EAPI void         elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24494
24495    /**
24496     * Get the content of the mapbuf.
24497     *
24498     * @param obj The mapbuf object.
24499     * @return The content that is being used.
24500     *
24501     * Return the content object which is set for this widget.
24502     *
24503     * @see elm_mapbuf_content_set() for details.
24504     *
24505     * @ingroup Mapbuf
24506     */
24507    EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24508
24509    /**
24510     * Unset the content of the mapbuf.
24511     *
24512     * @param obj The mapbuf object.
24513     * @return The content that was being used.
24514     *
24515     * Unparent and return the content object which was set for this widget.
24516     *
24517     * @see elm_mapbuf_content_set() for details.
24518     *
24519     * @ingroup Mapbuf
24520     */
24521    EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24522
24523    /**
24524     * Enable or disable the map.
24525     *
24526     * @param obj The mapbuf object.
24527     * @param enabled @c EINA_TRUE to enable map or @c EINA_FALSE to disable it.
24528     *
24529     * This enables the map that is set or disables it. On enable, the object
24530     * geometry will be saved, and the new geometry will change (position and
24531     * size) to reflect the map geometry set.
24532     *
24533     * Also, when enabled, alpha and smooth states will be used, so if the
24534     * content isn't solid, alpha should be enabled, for example, otherwise
24535     * a black retangle will fill the content.
24536     *
24537     * When disabled, the stored map will be freed and geometry prior to
24538     * enabling the map will be restored.
24539     *
24540     * It's disabled by default.
24541     *
24542     * @see elm_mapbuf_alpha_set()
24543     * @see elm_mapbuf_smooth_set()
24544     *
24545     * @ingroup Mapbuf
24546     */
24547    EAPI void         elm_mapbuf_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
24548
24549    /**
24550     * Get a value whether map is enabled or not.
24551     *
24552     * @param obj The mapbuf object.
24553     * @return @c EINA_TRUE means map is enabled. @c EINA_FALSE indicates
24554     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
24555     *
24556     * @see elm_mapbuf_enabled_set() for details.
24557     *
24558     * @ingroup Mapbuf
24559     */
24560    EAPI Eina_Bool    elm_mapbuf_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24561
24562    /**
24563     * Enable or disable smooth map rendering.
24564     *
24565     * @param obj The mapbuf object.
24566     * @param smooth @c EINA_TRUE to enable smooth map rendering or @c EINA_FALSE
24567     * to disable it.
24568     *
24569     * This sets smoothing for map rendering. If the object is a type that has
24570     * its own smoothing settings, then both the smooth settings for this object
24571     * and the map must be turned off.
24572     *
24573     * By default smooth maps are enabled.
24574     *
24575     * @ingroup Mapbuf
24576     */
24577    EAPI void         elm_mapbuf_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
24578
24579    /**
24580     * Get a value whether smooth map rendering is enabled or not.
24581     *
24582     * @param obj The mapbuf object.
24583     * @return @c EINA_TRUE means smooth map rendering is enabled. @c EINA_FALSE
24584     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
24585     *
24586     * @see elm_mapbuf_smooth_set() for details.
24587     *
24588     * @ingroup Mapbuf
24589     */
24590    EAPI Eina_Bool    elm_mapbuf_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24591
24592    /**
24593     * Set or unset alpha flag for map rendering.
24594     *
24595     * @param obj The mapbuf object.
24596     * @param alpha @c EINA_TRUE to enable alpha blending or @c EINA_FALSE
24597     * to disable it.
24598     *
24599     * This sets alpha flag for map rendering. If the object is a type that has
24600     * its own alpha settings, then this will take precedence. Only image objects
24601     * have this currently. It stops alpha blending of the map area, and is
24602     * useful if you know the object and/or all sub-objects is 100% solid.
24603     *
24604     * Alpha is enabled by default.
24605     *
24606     * @ingroup Mapbuf
24607     */
24608    EAPI void         elm_mapbuf_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
24609
24610    /**
24611     * Get a value whether alpha blending is enabled or not.
24612     *
24613     * @param obj The mapbuf object.
24614     * @return @c EINA_TRUE means alpha blending is enabled. @c EINA_FALSE
24615     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
24616     *
24617     * @see elm_mapbuf_alpha_set() for details.
24618     *
24619     * @ingroup Mapbuf
24620     */
24621    EAPI Eina_Bool    elm_mapbuf_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24622
24623    /**
24624     * @}
24625     */
24626
24627    /**
24628     * @defgroup Flipselector Flip Selector
24629     *
24630     * A flip selector is a widget to show a set of @b text items, one
24631     * at a time, with the same sheet switching style as the @ref Clock
24632     * "clock" widget, when one changes the current displaying sheet
24633     * (thus, the "flip" in the name).
24634     *
24635     * User clicks to flip sheets which are @b held for some time will
24636     * make the flip selector to flip continuosly and automatically for
24637     * the user. The interval between flips will keep growing in time,
24638     * so that it helps the user to reach an item which is distant from
24639     * the current selection.
24640     *
24641     * Smart callbacks one can register to:
24642     * - @c "selected" - when the widget's selected text item is changed
24643     * - @c "overflowed" - when the widget's current selection is changed
24644     *   from the first item in its list to the last
24645     * - @c "underflowed" - when the widget's current selection is changed
24646     *   from the last item in its list to the first
24647     *
24648     * Available styles for it:
24649     * - @c "default"
24650     *
24651     * Here is an example on its usage:
24652     * @li @ref flipselector_example
24653     */
24654
24655    /**
24656     * @addtogroup Flipselector
24657     * @{
24658     */
24659
24660    typedef struct _Elm_Flipselector_Item Elm_Flipselector_Item; /**< Item handle for a flip selector widget. */
24661
24662    /**
24663     * Add a new flip selector widget to the given parent Elementary
24664     * (container) widget
24665     *
24666     * @param parent The parent object
24667     * @return a new flip selector widget handle or @c NULL, on errors
24668     *
24669     * This function inserts a new flip selector widget on the canvas.
24670     *
24671     * @ingroup Flipselector
24672     */
24673    EAPI Evas_Object               *elm_flipselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24674
24675    /**
24676     * Programmatically select the next item of a flip selector widget
24677     *
24678     * @param obj The flipselector object
24679     *
24680     * @note The selection will be animated. Also, if it reaches the
24681     * end of its list of member items, it will continue with the first
24682     * one onwards.
24683     *
24684     * @ingroup Flipselector
24685     */
24686    EAPI void                       elm_flipselector_flip_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
24687
24688    /**
24689     * Programmatically select the previous item of a flip selector
24690     * widget
24691     *
24692     * @param obj The flipselector object
24693     *
24694     * @note The selection will be animated.  Also, if it reaches the
24695     * beginning of its list of member items, it will continue with the
24696     * last one backwards.
24697     *
24698     * @ingroup Flipselector
24699     */
24700    EAPI void                       elm_flipselector_flip_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
24701
24702    /**
24703     * Append a (text) item to a flip selector widget
24704     *
24705     * @param obj The flipselector object
24706     * @param label The (text) label of the new item
24707     * @param func Convenience callback function to take place when
24708     * item is selected
24709     * @param data Data passed to @p func, above
24710     * @return A handle to the item added or @c NULL, on errors
24711     *
24712     * The widget's list of labels to show will be appended with the
24713     * given value. If the user wishes so, a callback function pointer
24714     * can be passed, which will get called when this same item is
24715     * selected.
24716     *
24717     * @note The current selection @b won't be modified by appending an
24718     * element to the list.
24719     *
24720     * @note The maximum length of the text label is going to be
24721     * determined <b>by the widget's theme</b>. Strings larger than
24722     * that value are going to be @b truncated.
24723     *
24724     * @ingroup Flipselector
24725     */
24726    EAPI Elm_Flipselector_Item     *elm_flipselector_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
24727
24728    /**
24729     * Prepend a (text) item to a flip selector widget
24730     *
24731     * @param obj The flipselector object
24732     * @param label The (text) label of the new item
24733     * @param func Convenience callback function to take place when
24734     * item is selected
24735     * @param data Data passed to @p func, above
24736     * @return A handle to the item added or @c NULL, on errors
24737     *
24738     * The widget's list of labels to show will be prepended with the
24739     * given value. If the user wishes so, a callback function pointer
24740     * can be passed, which will get called when this same item is
24741     * selected.
24742     *
24743     * @note The current selection @b won't be modified by prepending
24744     * an element to the list.
24745     *
24746     * @note The maximum length of the text label is going to be
24747     * determined <b>by the widget's theme</b>. Strings larger than
24748     * that value are going to be @b truncated.
24749     *
24750     * @ingroup Flipselector
24751     */
24752    EAPI Elm_Flipselector_Item     *elm_flipselector_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
24753
24754    /**
24755     * Get the internal list of items in a given flip selector widget.
24756     *
24757     * @param obj The flipselector object
24758     * @return The list of items (#Elm_Flipselector_Item as data) or @c
24759     * NULL on errors.
24760     *
24761     * This list is @b not to be modified in any way and must not be
24762     * freed. Use the list members with functions like
24763     * elm_flipselector_item_label_set(),
24764     * elm_flipselector_item_label_get(), elm_flipselector_item_del(),
24765     * elm_flipselector_item_del(),
24766     * elm_flipselector_item_selected_get(),
24767     * elm_flipselector_item_selected_set().
24768     *
24769     * @warning This list is only valid until @p obj object's internal
24770     * items list is changed. It should be fetched again with another
24771     * call to this function when changes happen.
24772     *
24773     * @ingroup Flipselector
24774     */
24775    EAPI const Eina_List           *elm_flipselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24776
24777    /**
24778     * Get the first item in the given flip selector widget's list of
24779     * items.
24780     *
24781     * @param obj The flipselector object
24782     * @return The first item or @c NULL, if it has no items (and on
24783     * errors)
24784     *
24785     * @see elm_flipselector_item_append()
24786     * @see elm_flipselector_last_item_get()
24787     *
24788     * @ingroup Flipselector
24789     */
24790    EAPI Elm_Flipselector_Item     *elm_flipselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24791
24792    /**
24793     * Get the last item in the given flip selector widget's list of
24794     * items.
24795     *
24796     * @param obj The flipselector object
24797     * @return The last item or @c NULL, if it has no items (and on
24798     * errors)
24799     *
24800     * @see elm_flipselector_item_prepend()
24801     * @see elm_flipselector_first_item_get()
24802     *
24803     * @ingroup Flipselector
24804     */
24805    EAPI Elm_Flipselector_Item     *elm_flipselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24806
24807    /**
24808     * Get the currently selected item in a flip selector widget.
24809     *
24810     * @param obj The flipselector object
24811     * @return The selected item or @c NULL, if the widget has no items
24812     * (and on erros)
24813     *
24814     * @ingroup Flipselector
24815     */
24816    EAPI Elm_Flipselector_Item     *elm_flipselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24817
24818    /**
24819     * Set whether a given flip selector widget's item should be the
24820     * currently selected one.
24821     *
24822     * @param item The flip selector item
24823     * @param selected @c EINA_TRUE to select it, @c EINA_FALSE to unselect.
24824     *
24825     * This sets whether @p item is or not the selected (thus, under
24826     * display) one. If @p item is different than one under display,
24827     * the latter will be unselected. If the @p item is set to be
24828     * unselected, on the other hand, the @b first item in the widget's
24829     * internal members list will be the new selected one.
24830     *
24831     * @see elm_flipselector_item_selected_get()
24832     *
24833     * @ingroup Flipselector
24834     */
24835    EAPI void                       elm_flipselector_item_selected_set(Elm_Flipselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
24836
24837    /**
24838     * Get whether a given flip selector widget's item is the currently
24839     * selected one.
24840     *
24841     * @param item The flip selector item
24842     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
24843     * (or on errors).
24844     *
24845     * @see elm_flipselector_item_selected_set()
24846     *
24847     * @ingroup Flipselector
24848     */
24849    EAPI Eina_Bool                  elm_flipselector_item_selected_get(const Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
24850
24851    /**
24852     * Delete a given item from a flip selector widget.
24853     *
24854     * @param item The item to delete
24855     *
24856     * @ingroup Flipselector
24857     */
24858    EAPI void                       elm_flipselector_item_del(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
24859
24860    /**
24861     * Get the label of a given flip selector widget's item.
24862     *
24863     * @param item The item to get label from
24864     * @return The text label of @p item or @c NULL, on errors
24865     *
24866     * @see elm_flipselector_item_label_set()
24867     *
24868     * @ingroup Flipselector
24869     */
24870    EAPI const char                *elm_flipselector_item_label_get(const Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
24871
24872    /**
24873     * Set the label of a given flip selector widget's item.
24874     *
24875     * @param item The item to set label on
24876     * @param label The text label string, in UTF-8 encoding
24877     *
24878     * @see elm_flipselector_item_label_get()
24879     *
24880     * @ingroup Flipselector
24881     */
24882    EAPI void                       elm_flipselector_item_label_set(Elm_Flipselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
24883
24884    /**
24885     * Gets the item before @p item in a flip selector widget's
24886     * internal list of items.
24887     *
24888     * @param item The item to fetch previous from
24889     * @return The item before the @p item, in its parent's list. If
24890     *         there is no previous item for @p item or there's an
24891     *         error, @c NULL is returned.
24892     *
24893     * @see elm_flipselector_item_next_get()
24894     *
24895     * @ingroup Flipselector
24896     */
24897    EAPI Elm_Flipselector_Item     *elm_flipselector_item_prev_get(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
24898
24899    /**
24900     * Gets the item after @p item in a flip selector widget's
24901     * internal list of items.
24902     *
24903     * @param item The item to fetch next from
24904     * @return The item after the @p item, in its parent's list. If
24905     *         there is no next item for @p item or there's an
24906     *         error, @c NULL is returned.
24907     *
24908     * @see elm_flipselector_item_next_get()
24909     *
24910     * @ingroup Flipselector
24911     */
24912    EAPI Elm_Flipselector_Item     *elm_flipselector_item_next_get(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
24913
24914    /**
24915     * Set the interval on time updates for an user mouse button hold
24916     * on a flip selector widget.
24917     *
24918     * @param obj The flip selector object
24919     * @param interval The (first) interval value in seconds
24920     *
24921     * This interval value is @b decreased while the user holds the
24922     * mouse pointer either flipping up or flipping doww a given flip
24923     * selector.
24924     *
24925     * This helps the user to get to a given item distant from the
24926     * current one easier/faster, as it will start to flip quicker and
24927     * quicker on mouse button holds.
24928     *
24929     * The calculation for the next flip interval value, starting from
24930     * the one set with this call, is the previous interval divided by
24931     * 1.05, so it decreases a little bit.
24932     *
24933     * The default starting interval value for automatic flips is
24934     * @b 0.85 seconds.
24935     *
24936     * @see elm_flipselector_interval_get()
24937     *
24938     * @ingroup Flipselector
24939     */
24940    EAPI void                       elm_flipselector_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
24941
24942    /**
24943     * Get the interval on time updates for an user mouse button hold
24944     * on a flip selector widget.
24945     *
24946     * @param obj The flip selector object
24947     * @return The (first) interval value, in seconds, set on it
24948     *
24949     * @see elm_flipselector_interval_set() for more details
24950     *
24951     * @ingroup Flipselector
24952     */
24953    EAPI double                     elm_flipselector_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24954
24955    /**
24956     * @}
24957     */
24958
24959    /**
24960     * @addtogroup Animator Animator
24961     * @ingroup Elementary
24962     *
24963     * @brief Functions to ease creation of animations.
24964     *
24965     * elm_animator is designed to provide an easy way to create animations.
24966     * Creating an animation with elm_animator is as simple as setting a
24967     * duration, an operating callback and telling it to run the animation.
24968     * However that is not the full extent of elm_animator's ability, animations
24969     * can be paused and resumed, reversed and the animation need not be linear.
24970     *
24971     * To run an animation you must specify at least a duration and operation
24972     * callback, not setting any other properties will create a linear animation
24973     * that runs once and is not reversed.
24974     *
24975     * @ref elm_animator_example_page_01 "This" example should make all of that
24976     * very clear.
24977     *
24978     * @warning elm_animator is @b not a widget.
24979     * @{
24980     */
24981    /**
24982     * @brief Type of curve desired for animation.
24983     *
24984     * The speed in which an animation happens doesn't have to be linear, some
24985     * animations will look better if they're accelerating or decelerating, so
24986     * elm_animator provides four options in this regard:
24987     * @image html elm_animator_curve_style.png
24988     * @image latex elm_animator_curve_style.eps width=\textwidth
24989     * As can be seen in the image the speed of the animation will be:
24990     * @li ELM_ANIMATOR_CURVE_LINEAR constant
24991     * @li ELM_ANIMATOR_CURVE_IN_OUT start slow, speed up and then slow down
24992     * @li ELM_ANIMATOR_CURVE_IN start slow and then speed up
24993     * @li ELM_ANIMATOR_CURVE_OUT start fast and then slow down
24994     */
24995    typedef enum
24996      {
24997         ELM_ANIMATOR_CURVE_LINEAR,
24998         ELM_ANIMATOR_CURVE_IN_OUT,
24999         ELM_ANIMATOR_CURVE_IN,
25000         ELM_ANIMATOR_CURVE_OUT
25001      } Elm_Animator_Curve_Style;
25002    typedef struct _Elm_Animator Elm_Animator;
25003   /**
25004    * Called back per loop of an elementary animators cycle
25005    * @param data user-data given to elm_animator_operation_callback_set()
25006    * @param animator the animator being run
25007    * @param double the position in the animation
25008    */
25009    typedef void (*Elm_Animator_Operation_Cb) (void *data, Elm_Animator *animator, double frame);
25010   /**
25011    * Called back when an elementary animator finishes
25012    * @param data user-data given to elm_animator_completion_callback_set()
25013    */
25014    typedef void (*Elm_Animator_Completion_Cb) (void *data);
25015
25016    /**
25017     * @brief Create a new animator.
25018     *
25019     * @param[in] parent Parent object
25020     *
25021     * The @a parent argument can be set to NULL for no parent. If a parent is set
25022     * there is no need to call elm_animator_del(), when the parent is deleted it
25023     * will delete the animator.
25024     * @deprecated Use @ref Transit instead.
25025
25026     */
25027    EINA_DEPRECATED EAPI Elm_Animator*            elm_animator_add(Evas_Object *parent);
25028    /**
25029     * Deletes the animator freeing any resources it used. If the animator was
25030     * created with a NULL parent this must be called, otherwise it will be
25031     * automatically called when the parent is deleted.
25032     *
25033     * @param[in] animator Animator object
25034     * @deprecated Use @ref Transit instead.
25035     */
25036    EINA_DEPRECATED EAPI void                     elm_animator_del(Elm_Animator *animator) EINA_ARG_NONNULL(1);
25037    /**
25038     * Set the duration of the animation.
25039     *
25040     * @param[in] animator Animator object
25041     * @param[in] duration Duration in second
25042     * @deprecated Use @ref Transit instead.
25043     */
25044    EINA_DEPRECATED EAPI void                     elm_animator_duration_set(Elm_Animator *animator, double duration) EINA_ARG_NONNULL(1);
25045    /**
25046     * @brief Set the callback function for animator operation.
25047     *
25048     * @param[in] animator Animator object
25049     * @param[in] func @ref Elm_Animator_Operation_Cb "Callback" function pointer
25050     * @param[in] data Callback function user argument
25051     *
25052     * The @p func callback will be called with a frame value in range [0, 1] which
25053     * indicates how far along the animation should be. It is the job of @p func to
25054     * actually change the state of any object(or objects) that are being animated.
25055     * @deprecated Use @ref Transit instead.
25056     */
25057    EINA_DEPRECATED EAPI void                     elm_animator_operation_callback_set(Elm_Animator *animator, Elm_Animator_Operation_Cb func, void *data) EINA_ARG_NONNULL(1);
25058    /**
25059     * Set the callback function for the when the animation ends.
25060     *
25061     * @param[in]  animator Animator object
25062     * @param[in]  func   Callback function pointe
25063     * @param[in]  data Callback function user argument
25064     *
25065     * @warning @a func will not be executed if elm_animator_stop() is called.
25066     * @deprecated Use @ref Transit instead.
25067     */
25068    EINA_DEPRECATED EAPI void                     elm_animator_completion_callback_set(Elm_Animator *animator, Elm_Animator_Completion_Cb func, void *data) EINA_ARG_NONNULL(1);
25069    /**
25070     * @brief Stop animator.
25071     *
25072     * @param[in] animator Animator object
25073     *
25074     * If called before elm_animator_animate() it does nothing. If there is an
25075     * animation in progress the animation will be stopped(the operation callback
25076     * will not be executed again) and it can't be restarted using
25077     * elm_animator_resume().
25078     * @deprecated Use @ref Transit instead.
25079     */
25080    EINA_DEPRECATED EAPI void                     elm_animator_stop(Elm_Animator *animator) EINA_ARG_NONNULL(1);
25081    /**
25082     * Set the animator repeat count.
25083     *
25084     * @param[in]  animator Animator object
25085     * @param[in]  repeat_cnt Repeat count
25086     * @deprecated Use @ref Transit instead.
25087     */
25088    EINA_DEPRECATED EAPI void                     elm_animator_repeat_set(Elm_Animator *animator, unsigned int repeat_cnt) EINA_ARG_NONNULL(1);
25089    /**
25090     * @brief Start animation.
25091     *
25092     * @param[in] animator Animator object
25093     *
25094     * This function starts the animation if the nescessary properties(duration
25095     * and operation callback) have been set. Once started the animation will
25096     * run until complete or elm_animator_stop() is called.
25097     * @deprecated Use @ref Transit instead.
25098     */
25099    EINA_DEPRECATED EAPI void                     elm_animator_animate(Elm_Animator *animator) EINA_ARG_NONNULL(1);
25100    /**
25101     * Sets the animation @ref Elm_Animator_Curve_Style "acceleration style".
25102     *
25103     * @param[in] animator Animator object
25104     * @param[in] cs Curve style. Default is ELM_ANIMATOR_CURVE_LINEAR
25105     * @deprecated Use @ref Transit instead.
25106     */
25107    EINA_DEPRECATED EAPI void                     elm_animator_curve_style_set(Elm_Animator *animator, Elm_Animator_Curve_Style cs) EINA_ARG_NONNULL(1);
25108    /**
25109     * Gets the animation @ref Elm_Animator_Curve_Style "acceleration style".
25110     *
25111     * @param[in] animator Animator object
25112     * @param[in] cs Curve style. Default is ELM_ANIMATOR_CURVE_LINEAR
25113     * @deprecated Use @ref Transit instead.
25114     */
25115    EINA_DEPRECATED EAPI Elm_Animator_Curve_Style elm_animator_curve_style_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
25116    /**
25117     * @brief Sets wether the animation should be automatically reversed.
25118     *
25119     * @param[in] animator Animator object
25120     * @param[in] reverse Reverse or not
25121     *
25122     * This controls wether the animation will be run on reverse imediately after
25123     * running forward. When this is set together with repetition the animation
25124     * will run in reverse once for each time it ran forward.@n
25125     * Runnin an animation in reverse is accomplished by calling the operation
25126     * callback with a frame value starting at 1 and diminshing until 0.
25127     * @deprecated Use @ref Transit instead.
25128     */
25129    EINA_DEPRECATED EAPI void                     elm_animator_auto_reverse_set(Elm_Animator *animator, Eina_Bool reverse) EINA_ARG_NONNULL(1);
25130    /**
25131     * Gets wether the animation will automatically reversed
25132     *
25133     * @param[in] animator Animator object
25134     * @deprecated Use @ref Transit instead.
25135     */
25136    EINA_DEPRECATED EAPI Eina_Bool                elm_animator_auto_reverse_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
25137    /**
25138     * Gets the status for the animator operation. The status of the animator @b
25139     * doesn't take in to account elm_animator_pause() or elm_animator_resume(), it
25140     * only informs if the animation was started and has not ended(either normally
25141     * or through elm_animator_stop()).
25142     *
25143     * @param[in] animator Animator object
25144     * @deprecated Use @ref Transit instead.
25145     */
25146    EINA_DEPRECATED EAPI Eina_Bool                elm_animator_operating_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
25147    /**
25148     * Gets how many times the animation will be repeated
25149     *
25150     * @param[in] animator Animator object
25151     * @deprecated Use @ref Transit instead.
25152     */
25153    EINA_DEPRECATED EAPI unsigned int             elm_animator_repeat_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
25154    /**
25155     * Pause the animator.
25156     *
25157     * @param[in]  animator Animator object
25158     *
25159     * This causes the animation to be temporarily stopped(the operation callback
25160     * will not be called). If the animation is not yet running this is a no-op.
25161     * Once an animation has been paused with this function it can be resumed
25162     * using elm_animator_resume().
25163     * @deprecated Use @ref Transit instead.
25164     */
25165    EINA_DEPRECATED EAPI void                     elm_animator_pause(Elm_Animator *animator) EINA_ARG_NONNULL(1);
25166    /**
25167     * @brief Resumes the animator.
25168     *
25169     * @param[in]  animator Animator object
25170     *
25171     * Resumes an animation that was paused using elm_animator_pause(), after
25172     * calling this function calls to the operation callback will happen
25173     * normally. If an animation is stopped by means of elm_animator_stop it
25174     * @b can't be restarted with this function.@n
25175     *
25176     * @warning When an animation is resumed it doesn't start from where it was paused, it
25177     * will go to where it would have been if it had not been paused. If an
25178     * animation with a duration of 3 seconds is paused after 1 second for 1 second
25179     * it will resume as if it had ben animating for 2 seconds, the operating
25180     * callback will be called with a frame value of aproximately 2/3.
25181     * @deprecated Use @ref Transit instead.
25182     */
25183    EINA_DEPRECATED EAPI void                     elm_animator_resume(Elm_Animator *animator) EINA_ARG_NONNULL(1);
25184    /**
25185     * @}
25186     */
25187
25188    /**
25189     * @addtogroup Calendar
25190     * @{
25191     */
25192
25193    /**
25194     * @enum _Elm_Calendar_Mark_Repeat
25195     * @typedef Elm_Calendar_Mark_Repeat
25196     *
25197     * Event periodicity, used to define if a mark should be repeated
25198     * @b beyond event's day. It's set when a mark is added.
25199     *
25200     * So, for a mark added to 13th May with periodicity set to WEEKLY,
25201     * there will be marks every week after this date. Marks will be displayed
25202     * at 13th, 20th, 27th, 3rd June ...
25203     *
25204     * Values don't work as bitmask, only one can be choosen.
25205     *
25206     * @see elm_calendar_mark_add()
25207     *
25208     * @ingroup Calendar
25209     */
25210    typedef enum _Elm_Calendar_Mark_Repeat
25211      {
25212         ELM_CALENDAR_UNIQUE, /**< Default value. Marks will be displayed only on event day. */
25213         ELM_CALENDAR_DAILY, /**< Marks will be displayed everyday after event day (inclusive). */
25214         ELM_CALENDAR_WEEKLY, /**< Marks will be displayed every week after event day (inclusive) - i.e. each seven days. */
25215         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*/
25216         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. */
25217      } Elm_Calendar_Mark_Repeat;
25218
25219    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(). */
25220
25221    /**
25222     * Add a new calendar widget to the given parent Elementary
25223     * (container) object.
25224     *
25225     * @param parent The parent object.
25226     * @return a new calendar widget handle or @c NULL, on errors.
25227     *
25228     * This function inserts a new calendar widget on the canvas.
25229     *
25230     * @ref calendar_example_01
25231     *
25232     * @ingroup Calendar
25233     */
25234    EAPI Evas_Object       *elm_calendar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25235
25236    /**
25237     * Get weekdays names displayed by the calendar.
25238     *
25239     * @param obj The calendar object.
25240     * @return Array of seven strings to be used as weekday names.
25241     *
25242     * By default, weekdays abbreviations get from system are displayed:
25243     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
25244     * The first string is related to Sunday, the second to Monday...
25245     *
25246     * @see elm_calendar_weekdays_name_set()
25247     *
25248     * @ref calendar_example_05
25249     *
25250     * @ingroup Calendar
25251     */
25252    EAPI const char       **elm_calendar_weekdays_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25253
25254    /**
25255     * Set weekdays names to be displayed by the calendar.
25256     *
25257     * @param obj The calendar object.
25258     * @param weekdays Array of seven strings to be used as weekday names.
25259     * @warning It must have 7 elements, or it will access invalid memory.
25260     * @warning The strings must be NULL terminated ('@\0').
25261     *
25262     * By default, weekdays abbreviations get from system are displayed:
25263     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
25264     *
25265     * The first string should be related to Sunday, the second to Monday...
25266     *
25267     * The usage should be like this:
25268     * @code
25269     *   const char *weekdays[] =
25270     *   {
25271     *      "Sunday", "Monday", "Tuesday", "Wednesday",
25272     *      "Thursday", "Friday", "Saturday"
25273     *   };
25274     *   elm_calendar_weekdays_names_set(calendar, weekdays);
25275     * @endcode
25276     *
25277     * @see elm_calendar_weekdays_name_get()
25278     *
25279     * @ref calendar_example_02
25280     *
25281     * @ingroup Calendar
25282     */
25283    EAPI void               elm_calendar_weekdays_names_set(Evas_Object *obj, const char *weekdays[]) EINA_ARG_NONNULL(1, 2);
25284
25285    /**
25286     * Set the minimum and maximum values for the year
25287     *
25288     * @param obj The calendar object
25289     * @param min The minimum year, greater than 1901;
25290     * @param max The maximum year;
25291     *
25292     * Maximum must be greater than minimum, except if you don't wan't to set
25293     * maximum year.
25294     * Default values are 1902 and -1.
25295     *
25296     * If the maximum year is a negative value, it will be limited depending
25297     * on the platform architecture (year 2037 for 32 bits);
25298     *
25299     * @see elm_calendar_min_max_year_get()
25300     *
25301     * @ref calendar_example_03
25302     *
25303     * @ingroup Calendar
25304     */
25305    EAPI void               elm_calendar_min_max_year_set(Evas_Object *obj, int min, int max) EINA_ARG_NONNULL(1);
25306
25307    /**
25308     * Get the minimum and maximum values for the year
25309     *
25310     * @param obj The calendar object.
25311     * @param min The minimum year.
25312     * @param max The maximum year.
25313     *
25314     * Default values are 1902 and -1.
25315     *
25316     * @see elm_calendar_min_max_year_get() for more details.
25317     *
25318     * @ref calendar_example_05
25319     *
25320     * @ingroup Calendar
25321     */
25322    EAPI void               elm_calendar_min_max_year_get(const Evas_Object *obj, int *min, int *max) EINA_ARG_NONNULL(1);
25323
25324    /**
25325     * Enable or disable day selection
25326     *
25327     * @param obj The calendar object.
25328     * @param enabled @c EINA_TRUE to enable selection or @c EINA_FALSE to
25329     * disable it.
25330     *
25331     * Enabled by default. If disabled, the user still can select months,
25332     * but not days. Selected days are highlighted on calendar.
25333     * It should be used if you won't need such selection for the widget usage.
25334     *
25335     * When a day is selected, or month is changed, smart callbacks for
25336     * signal "changed" will be called.
25337     *
25338     * @see elm_calendar_day_selection_enable_get()
25339     *
25340     * @ref calendar_example_04
25341     *
25342     * @ingroup Calendar
25343     */
25344    EAPI void               elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
25345
25346    /**
25347     * Get a value whether day selection is enabled or not.
25348     *
25349     * @see elm_calendar_day_selection_enable_set() for details.
25350     *
25351     * @param obj The calendar object.
25352     * @return EINA_TRUE means day selection is enabled. EINA_FALSE indicates
25353     * it's disabled. If @p obj is NULL, EINA_FALSE is returned.
25354     *
25355     * @ref calendar_example_05
25356     *
25357     * @ingroup Calendar
25358     */
25359    EAPI Eina_Bool          elm_calendar_day_selection_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25360
25361
25362    /**
25363     * Set selected date to be highlighted on calendar.
25364     *
25365     * @param obj The calendar object.
25366     * @param selected_time A @b tm struct to represent the selected date.
25367     *
25368     * Set the selected date, changing the displayed month if needed.
25369     * Selected date changes when the user goes to next/previous month or
25370     * select a day pressing over it on calendar.
25371     *
25372     * @see elm_calendar_selected_time_get()
25373     *
25374     * @ref calendar_example_04
25375     *
25376     * @ingroup Calendar
25377     */
25378    EAPI void               elm_calendar_selected_time_set(Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1);
25379
25380    /**
25381     * Get selected date.
25382     *
25383     * @param obj The calendar object
25384     * @param selected_time A @b tm struct to point to selected date
25385     * @return EINA_FALSE means an error ocurred and returned time shouldn't
25386     * be considered.
25387     *
25388     * Get date selected by the user or set by function
25389     * elm_calendar_selected_time_set().
25390     * Selected date changes when the user goes to next/previous month or
25391     * select a day pressing over it on calendar.
25392     *
25393     * @see elm_calendar_selected_time_get()
25394     *
25395     * @ref calendar_example_05
25396     *
25397     * @ingroup Calendar
25398     */
25399    EAPI Eina_Bool          elm_calendar_selected_time_get(const Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1, 2);
25400
25401    /**
25402     * Set a function to format the string that will be used to display
25403     * month and year;
25404     *
25405     * @param obj The calendar object
25406     * @param format_function Function to set the month-year string given
25407     * the selected date
25408     *
25409     * By default it uses strftime with "%B %Y" format string.
25410     * It should allocate the memory that will be used by the string,
25411     * that will be freed by the widget after usage.
25412     * A pointer to the string and a pointer to the time struct will be provided.
25413     *
25414     * Example:
25415     * @code
25416     * static char *
25417     * _format_month_year(struct tm *selected_time)
25418     * {
25419     *    char buf[32];
25420     *    if (!strftime(buf, sizeof(buf), "%B %Y", selected_time)) return NULL;
25421     *    return strdup(buf);
25422     * }
25423     *
25424     * elm_calendar_format_function_set(calendar, _format_month_year);
25425     * @endcode
25426     *
25427     * @ref calendar_example_02
25428     *
25429     * @ingroup Calendar
25430     */
25431    EAPI void               elm_calendar_format_function_set(Evas_Object *obj, char * (*format_function) (struct tm *stime)) EINA_ARG_NONNULL(1);
25432
25433    /**
25434     * Add a new mark to the calendar
25435     *
25436     * @param obj The calendar object
25437     * @param mark_type A string used to define the type of mark. It will be
25438     * emitted to the theme, that should display a related modification on these
25439     * days representation.
25440     * @param mark_time A time struct to represent the date of inclusion of the
25441     * mark. For marks that repeats it will just be displayed after the inclusion
25442     * date in the calendar.
25443     * @param repeat Repeat the event following this periodicity. Can be a unique
25444     * mark (that don't repeat), daily, weekly, monthly or annually.
25445     * @return The created mark or @p NULL upon failure.
25446     *
25447     * Add a mark that will be drawn in the calendar respecting the insertion
25448     * time and periodicity. It will emit the type as signal to the widget theme.
25449     * Default theme supports "holiday" and "checked", but it can be extended.
25450     *
25451     * It won't immediately update the calendar, drawing the marks.
25452     * For this, call elm_calendar_marks_draw(). However, when user selects
25453     * next or previous month calendar forces marks drawn.
25454     *
25455     * Marks created with this method can be deleted with
25456     * elm_calendar_mark_del().
25457     *
25458     * Example
25459     * @code
25460     * struct tm selected_time;
25461     * time_t current_time;
25462     *
25463     * current_time = time(NULL) + 5 * 84600;
25464     * localtime_r(&current_time, &selected_time);
25465     * elm_calendar_mark_add(cal, "holiday", selected_time,
25466     *     ELM_CALENDAR_ANNUALLY);
25467     *
25468     * current_time = time(NULL) + 1 * 84600;
25469     * localtime_r(&current_time, &selected_time);
25470     * elm_calendar_mark_add(cal, "checked", selected_time, ELM_CALENDAR_UNIQUE);
25471     *
25472     * elm_calendar_marks_draw(cal);
25473     * @endcode
25474     *
25475     * @see elm_calendar_marks_draw()
25476     * @see elm_calendar_mark_del()
25477     *
25478     * @ref calendar_example_06
25479     *
25480     * @ingroup Calendar
25481     */
25482    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);
25483
25484    /**
25485     * Delete mark from the calendar.
25486     *
25487     * @param mark The mark to be deleted.
25488     *
25489     * If deleting all calendar marks is required, elm_calendar_marks_clear()
25490     * should be used instead of getting marks list and deleting each one.
25491     *
25492     * @see elm_calendar_mark_add()
25493     *
25494     * @ref calendar_example_06
25495     *
25496     * @ingroup Calendar
25497     */
25498    EAPI void               elm_calendar_mark_del(Elm_Calendar_Mark *mark) EINA_ARG_NONNULL(1);
25499
25500    /**
25501     * Remove all calendar's marks
25502     *
25503     * @param obj The calendar object.
25504     *
25505     * @see elm_calendar_mark_add()
25506     * @see elm_calendar_mark_del()
25507     *
25508     * @ingroup Calendar
25509     */
25510    EAPI void               elm_calendar_marks_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
25511
25512
25513    /**
25514     * Get a list of all the calendar marks.
25515     *
25516     * @param obj The calendar object.
25517     * @return An @c Eina_List of calendar marks objects, or @c NULL on failure.
25518     *
25519     * @see elm_calendar_mark_add()
25520     * @see elm_calendar_mark_del()
25521     * @see elm_calendar_marks_clear()
25522     *
25523     * @ingroup Calendar
25524     */
25525    EAPI const Eina_List   *elm_calendar_marks_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25526
25527    /**
25528     * Draw calendar marks.
25529     *
25530     * @param obj The calendar object.
25531     *
25532     * Should be used after adding, removing or clearing marks.
25533     * It will go through the entire marks list updating the calendar.
25534     * If lots of marks will be added, add all the marks and then call
25535     * this function.
25536     *
25537     * When the month is changed, i.e. user selects next or previous month,
25538     * marks will be drawed.
25539     *
25540     * @see elm_calendar_mark_add()
25541     * @see elm_calendar_mark_del()
25542     * @see elm_calendar_marks_clear()
25543     *
25544     * @ref calendar_example_06
25545     *
25546     * @ingroup Calendar
25547     */
25548    EAPI void               elm_calendar_marks_draw(Evas_Object *obj) EINA_ARG_NONNULL(1);
25549    EINA_DEPRECATED EAPI void               elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25550    EINA_DEPRECATED EAPI void               elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25551    EINA_DEPRECATED EAPI void               elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25552
25553    /**
25554     * Set a day text color to the same that represents Saturdays.
25555     *
25556     * @param obj The calendar object.
25557     * @param pos The text position. Position is the cell counter, from left
25558     * to right, up to down. It starts on 0 and ends on 41.
25559     *
25560     * @deprecated use elm_calendar_mark_add() instead like:
25561     *
25562     * @code
25563     * struct tm t = { 0, 0, 12, 6, 0, 0, 6, 6, -1 };
25564     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
25565     * @endcode
25566     *
25567     * @see elm_calendar_mark_add()
25568     *
25569     * @ingroup Calendar
25570     */
25571    EAPI void               elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25572
25573    /**
25574     * Set a day text color to the same that represents Sundays.
25575     *
25576     * @param obj The calendar object.
25577     * @param pos The text position. Position is the cell counter, from left
25578     * to right, up to down. It starts on 0 and ends on 41.
25579
25580     * @deprecated use elm_calendar_mark_add() instead like:
25581     *
25582     * @code
25583     * struct tm t = { 0, 0, 12, 7, 0, 0, 0, 0, -1 };
25584     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
25585     * @endcode
25586     *
25587     * @see elm_calendar_mark_add()
25588     *
25589     * @ingroup Calendar
25590     */
25591    EAPI void               elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25592
25593    /**
25594     * Set a day text color to the same that represents Weekdays.
25595     *
25596     * @param obj The calendar object
25597     * @param pos The text position. Position is the cell counter, from left
25598     * to right, up to down. It starts on 0 and ends on 41.
25599     *
25600     * @deprecated use elm_calendar_mark_add() instead like:
25601     *
25602     * @code
25603     * struct tm t = { 0, 0, 12, 1, 0, 0, 0, 0, -1 };
25604     *
25605     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // monday
25606     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25607     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // tuesday
25608     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25609     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // wednesday
25610     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25611     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // thursday
25612     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25613     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // friday
25614     * @endcode
25615     *
25616     * @see elm_calendar_mark_add()
25617     *
25618     * @ingroup Calendar
25619     */
25620    EAPI void               elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25621
25622    /**
25623     * Set the interval on time updates for an user mouse button hold
25624     * on calendar widgets' month selection.
25625     *
25626     * @param obj The calendar object
25627     * @param interval The (first) interval value in seconds
25628     *
25629     * This interval value is @b decreased while the user holds the
25630     * mouse pointer either selecting next or previous month.
25631     *
25632     * This helps the user to get to a given month distant from the
25633     * current one easier/faster, as it will start to change quicker and
25634     * quicker on mouse button holds.
25635     *
25636     * The calculation for the next change interval value, starting from
25637     * the one set with this call, is the previous interval divided by
25638     * 1.05, so it decreases a little bit.
25639     *
25640     * The default starting interval value for automatic changes is
25641     * @b 0.85 seconds.
25642     *
25643     * @see elm_calendar_interval_get()
25644     *
25645     * @ingroup Calendar
25646     */
25647    EAPI void               elm_calendar_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
25648
25649    /**
25650     * Get the interval on time updates for an user mouse button hold
25651     * on calendar widgets' month selection.
25652     *
25653     * @param obj The calendar object
25654     * @return The (first) interval value, in seconds, set on it
25655     *
25656     * @see elm_calendar_interval_set() for more details
25657     *
25658     * @ingroup Calendar
25659     */
25660    EAPI double             elm_calendar_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25661
25662    /**
25663     * @}
25664     */
25665
25666    /**
25667     * @defgroup Diskselector Diskselector
25668     * @ingroup Elementary
25669     *
25670     * @image html img/widget/diskselector/preview-00.png
25671     * @image latex img/widget/diskselector/preview-00.eps
25672     *
25673     * A diskselector is a kind of list widget. It scrolls horizontally,
25674     * and can contain label and icon objects. Three items are displayed
25675     * with the selected one in the middle.
25676     *
25677     * It can act like a circular list with round mode and labels can be
25678     * reduced for a defined length for side items.
25679     *
25680     * Smart callbacks one can listen to:
25681     * - "selected" - when item is selected, i.e. scroller stops.
25682     *
25683     * Available styles for it:
25684     * - @c "default"
25685     *
25686     * List of examples:
25687     * @li @ref diskselector_example_01
25688     * @li @ref diskselector_example_02
25689     */
25690
25691    /**
25692     * @addtogroup Diskselector
25693     * @{
25694     */
25695
25696    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(). */
25697
25698    /**
25699     * Add a new diskselector widget to the given parent Elementary
25700     * (container) object.
25701     *
25702     * @param parent The parent object.
25703     * @return a new diskselector widget handle or @c NULL, on errors.
25704     *
25705     * This function inserts a new diskselector widget on the canvas.
25706     *
25707     * @ingroup Diskselector
25708     */
25709    EAPI Evas_Object           *elm_diskselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25710
25711    /**
25712     * Enable or disable round mode.
25713     *
25714     * @param obj The diskselector object.
25715     * @param round @c EINA_TRUE to enable round mode or @c EINA_FALSE to
25716     * disable it.
25717     *
25718     * Disabled by default. If round mode is enabled the items list will
25719     * work like a circle list, so when the user reaches the last item,
25720     * the first one will popup.
25721     *
25722     * @see elm_diskselector_round_get()
25723     *
25724     * @ingroup Diskselector
25725     */
25726    EAPI void                   elm_diskselector_round_set(Evas_Object *obj, Eina_Bool round) EINA_ARG_NONNULL(1);
25727
25728    /**
25729     * Get a value whether round mode is enabled or not.
25730     *
25731     * @see elm_diskselector_round_set() for details.
25732     *
25733     * @param obj The diskselector object.
25734     * @return @c EINA_TRUE means round mode is enabled. @c EINA_FALSE indicates
25735     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25736     *
25737     * @ingroup Diskselector
25738     */
25739    EAPI Eina_Bool              elm_diskselector_round_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25740
25741    /**
25742     * Get the side labels max length.
25743     *
25744     * @deprecated use elm_diskselector_side_label_length_get() instead:
25745     *
25746     * @param obj The diskselector object.
25747     * @return The max length defined for side labels, or 0 if not a valid
25748     * diskselector.
25749     *
25750     * @ingroup Diskselector
25751     */
25752    EINA_DEPRECATED EAPI int    elm_diskselector_side_label_lenght_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25753
25754    /**
25755     * Set the side labels max length.
25756     *
25757     * @deprecated use elm_diskselector_side_label_length_set() instead:
25758     *
25759     * @param obj The diskselector object.
25760     * @param len The max length defined for side labels.
25761     *
25762     * @ingroup Diskselector
25763     */
25764    EINA_DEPRECATED EAPI void   elm_diskselector_side_label_lenght_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
25765
25766    /**
25767     * Get the side labels max length.
25768     *
25769     * @see elm_diskselector_side_label_length_set() for details.
25770     *
25771     * @param obj The diskselector object.
25772     * @return The max length defined for side labels, or 0 if not a valid
25773     * diskselector.
25774     *
25775     * @ingroup Diskselector
25776     */
25777    EAPI int                    elm_diskselector_side_label_length_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25778
25779    /**
25780     * Set the side labels max length.
25781     *
25782     * @param obj The diskselector object.
25783     * @param len The max length defined for side labels.
25784     *
25785     * Length is the number of characters of items' label that will be
25786     * visible when it's set on side positions. It will just crop
25787     * the string after defined size. E.g.:
25788     *
25789     * An item with label "January" would be displayed on side position as
25790     * "Jan" if max length is set to 3, or "Janu", if this property
25791     * is set to 4.
25792     *
25793     * When it's selected, the entire label will be displayed, except for
25794     * width restrictions. In this case label will be cropped and "..."
25795     * will be concatenated.
25796     *
25797     * Default side label max length is 3.
25798     *
25799     * This property will be applyed over all items, included before or
25800     * later this function call.
25801     *
25802     * @ingroup Diskselector
25803     */
25804    EAPI void                   elm_diskselector_side_label_length_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
25805
25806    /**
25807     * Set the number of items to be displayed.
25808     *
25809     * @param obj The diskselector object.
25810     * @param num The number of items the diskselector will display.
25811     *
25812     * Default value is 3, and also it's the minimun. If @p num is less
25813     * than 3, it will be set to 3.
25814     *
25815     * Also, it can be set on theme, using data item @c display_item_num
25816     * on group "elm/diskselector/item/X", where X is style set.
25817     * E.g.:
25818     *
25819     * group { name: "elm/diskselector/item/X";
25820     * data {
25821     *     item: "display_item_num" "5";
25822     *     }
25823     *
25824     * @ingroup Diskselector
25825     */
25826    EAPI void                   elm_diskselector_display_item_num_set(Evas_Object *obj, int num) EINA_ARG_NONNULL(1);
25827
25828    /**
25829     * Get the number of items in the diskselector object.
25830     *
25831     * @param obj The diskselector object.
25832     *
25833     * @ingroup Diskselector
25834     */
25835    EAPI int                   elm_diskselector_display_item_num_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25836
25837    /**
25838     * Set bouncing behaviour when the scrolled content reaches an edge.
25839     *
25840     * Tell the internal scroller object whether it should bounce or not
25841     * when it reaches the respective edges for each axis.
25842     *
25843     * @param obj The diskselector object.
25844     * @param h_bounce Whether to bounce or not in the horizontal axis.
25845     * @param v_bounce Whether to bounce or not in the vertical axis.
25846     *
25847     * @see elm_scroller_bounce_set()
25848     *
25849     * @ingroup Diskselector
25850     */
25851    EAPI void                   elm_diskselector_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
25852
25853    /**
25854     * Get the bouncing behaviour of the internal scroller.
25855     *
25856     * Get whether the internal scroller should bounce when the edge of each
25857     * axis is reached scrolling.
25858     *
25859     * @param obj The diskselector object.
25860     * @param h_bounce Pointer where to store the bounce state of the horizontal
25861     * axis.
25862     * @param v_bounce Pointer where to store the bounce state of the vertical
25863     * axis.
25864     *
25865     * @see elm_scroller_bounce_get()
25866     * @see elm_diskselector_bounce_set()
25867     *
25868     * @ingroup Diskselector
25869     */
25870    EAPI void                   elm_diskselector_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
25871
25872    /**
25873     * Get the scrollbar policy.
25874     *
25875     * @see elm_diskselector_scroller_policy_get() for details.
25876     *
25877     * @param obj The diskselector object.
25878     * @param policy_h Pointer where to store horizontal scrollbar policy.
25879     * @param policy_v Pointer where to store vertical scrollbar policy.
25880     *
25881     * @ingroup Diskselector
25882     */
25883    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);
25884
25885    /**
25886     * Set the scrollbar policy.
25887     *
25888     * @param obj The diskselector object.
25889     * @param policy_h Horizontal scrollbar policy.
25890     * @param policy_v Vertical scrollbar policy.
25891     *
25892     * This sets the scrollbar visibility policy for the given scroller.
25893     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
25894     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
25895     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
25896     * This applies respectively for the horizontal and vertical scrollbars.
25897     *
25898     * The both are disabled by default, i.e., are set to
25899     * #ELM_SCROLLER_POLICY_OFF.
25900     *
25901     * @ingroup Diskselector
25902     */
25903    EAPI void                   elm_diskselector_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
25904
25905    /**
25906     * Remove all diskselector's items.
25907     *
25908     * @param obj The diskselector object.
25909     *
25910     * @see elm_diskselector_item_del()
25911     * @see elm_diskselector_item_append()
25912     *
25913     * @ingroup Diskselector
25914     */
25915    EAPI void                   elm_diskselector_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
25916
25917    /**
25918     * Get a list of all the diskselector items.
25919     *
25920     * @param obj The diskselector object.
25921     * @return An @c Eina_List of diskselector items, #Elm_Diskselector_Item,
25922     * or @c NULL on failure.
25923     *
25924     * @see elm_diskselector_item_append()
25925     * @see elm_diskselector_item_del()
25926     * @see elm_diskselector_clear()
25927     *
25928     * @ingroup Diskselector
25929     */
25930    EAPI const Eina_List       *elm_diskselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25931
25932    /**
25933     * Appends a new item to the diskselector object.
25934     *
25935     * @param obj The diskselector object.
25936     * @param label The label of the diskselector item.
25937     * @param icon The icon object to use at left side of the item. An
25938     * icon can be any Evas object, but usually it is an icon created
25939     * with elm_icon_add().
25940     * @param func The function to call when the item is selected.
25941     * @param data The data to associate with the item for related callbacks.
25942     *
25943     * @return The created item or @c NULL upon failure.
25944     *
25945     * A new item will be created and appended to the diskselector, i.e., will
25946     * be set as last item. Also, if there is no selected item, it will
25947     * be selected. This will always happens for the first appended item.
25948     *
25949     * If no icon is set, label will be centered on item position, otherwise
25950     * the icon will be placed at left of the label, that will be shifted
25951     * to the right.
25952     *
25953     * Items created with this method can be deleted with
25954     * elm_diskselector_item_del().
25955     *
25956     * Associated @p data can be properly freed when item is deleted if a
25957     * callback function is set with elm_diskselector_item_del_cb_set().
25958     *
25959     * If a function is passed as argument, it will be called everytime this item
25960     * is selected, i.e., the user stops the diskselector with this
25961     * item on center position. If such function isn't needed, just passing
25962     * @c NULL as @p func is enough. The same should be done for @p data.
25963     *
25964     * Simple example (with no function callback or data associated):
25965     * @code
25966     * disk = elm_diskselector_add(win);
25967     * ic = elm_icon_add(win);
25968     * elm_icon_file_set(ic, "path/to/image", NULL);
25969     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
25970     * elm_diskselector_item_append(disk, "label", ic, NULL, NULL);
25971     * @endcode
25972     *
25973     * @see elm_diskselector_item_del()
25974     * @see elm_diskselector_item_del_cb_set()
25975     * @see elm_diskselector_clear()
25976     * @see elm_icon_add()
25977     *
25978     * @ingroup Diskselector
25979     */
25980    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);
25981
25982
25983    /**
25984     * Delete them item from the diskselector.
25985     *
25986     * @param it The item of diskselector to be deleted.
25987     *
25988     * If deleting all diskselector items is required, elm_diskselector_clear()
25989     * should be used instead of getting items list and deleting each one.
25990     *
25991     * @see elm_diskselector_clear()
25992     * @see elm_diskselector_item_append()
25993     * @see elm_diskselector_item_del_cb_set()
25994     *
25995     * @ingroup Diskselector
25996     */
25997    EAPI void                   elm_diskselector_item_del(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
25998
25999    /**
26000     * Set the function called when a diskselector item is freed.
26001     *
26002     * @param it The item to set the callback on
26003     * @param func The function called
26004     *
26005     * If there is a @p func, then it will be called prior item's memory release.
26006     * That will be called with the following arguments:
26007     * @li item's data;
26008     * @li item's Evas object;
26009     * @li item itself;
26010     *
26011     * This way, a data associated to a diskselector item could be properly
26012     * freed.
26013     *
26014     * @ingroup Diskselector
26015     */
26016    EAPI void                   elm_diskselector_item_del_cb_set(Elm_Diskselector_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
26017
26018    /**
26019     * Get the data associated to the item.
26020     *
26021     * @param it The diskselector item
26022     * @return The data associated to @p it
26023     *
26024     * The return value is a pointer to data associated to @p item when it was
26025     * created, with function elm_diskselector_item_append(). If no data
26026     * was passed as argument, it will return @c NULL.
26027     *
26028     * @see elm_diskselector_item_append()
26029     *
26030     * @ingroup Diskselector
26031     */
26032    EAPI void                  *elm_diskselector_item_data_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26033
26034    /**
26035     * Set the icon associated to the item.
26036     *
26037     * @param it The diskselector item
26038     * @param icon The icon object to associate with @p it
26039     *
26040     * The icon object to use at left side of the item. An
26041     * icon can be any Evas object, but usually it is an icon created
26042     * with elm_icon_add().
26043     *
26044     * Once the icon object is set, a previously set one will be deleted.
26045     * @warning Setting the same icon for two items will cause the icon to
26046     * dissapear from the first item.
26047     *
26048     * If an icon was passed as argument on item creation, with function
26049     * elm_diskselector_item_append(), it will be already
26050     * associated to the item.
26051     *
26052     * @see elm_diskselector_item_append()
26053     * @see elm_diskselector_item_icon_get()
26054     *
26055     * @ingroup Diskselector
26056     */
26057    EAPI void                   elm_diskselector_item_icon_set(Elm_Diskselector_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
26058
26059    /**
26060     * Get the icon associated to the item.
26061     *
26062     * @param it The diskselector item
26063     * @return The icon associated to @p it
26064     *
26065     * The return value is a pointer to the icon associated to @p item when it was
26066     * created, with function elm_diskselector_item_append(), or later
26067     * with function elm_diskselector_item_icon_set. If no icon
26068     * was passed as argument, it will return @c NULL.
26069     *
26070     * @see elm_diskselector_item_append()
26071     * @see elm_diskselector_item_icon_set()
26072     *
26073     * @ingroup Diskselector
26074     */
26075    EAPI Evas_Object           *elm_diskselector_item_icon_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26076
26077    /**
26078     * Set the label of item.
26079     *
26080     * @param it The item of diskselector.
26081     * @param label The label of item.
26082     *
26083     * The label to be displayed by the item.
26084     *
26085     * If no icon is set, label will be centered on item position, otherwise
26086     * the icon will be placed at left of the label, that will be shifted
26087     * to the right.
26088     *
26089     * An item with label "January" would be displayed on side position as
26090     * "Jan" if max length is set to 3 with function
26091     * elm_diskselector_side_label_lenght_set(), or "Janu", if this property
26092     * is set to 4.
26093     *
26094     * When this @p item is selected, the entire label will be displayed,
26095     * except for width restrictions.
26096     * In this case label will be cropped and "..." will be concatenated,
26097     * but only for display purposes. It will keep the entire string, so
26098     * if diskselector is resized the remaining characters will be displayed.
26099     *
26100     * If a label was passed as argument on item creation, with function
26101     * elm_diskselector_item_append(), it will be already
26102     * displayed by the item.
26103     *
26104     * @see elm_diskselector_side_label_lenght_set()
26105     * @see elm_diskselector_item_label_get()
26106     * @see elm_diskselector_item_append()
26107     *
26108     * @ingroup Diskselector
26109     */
26110    EAPI void                   elm_diskselector_item_label_set(Elm_Diskselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
26111
26112    /**
26113     * Get the label of item.
26114     *
26115     * @param it The item of diskselector.
26116     * @return The label of item.
26117     *
26118     * The return value is a pointer to the label associated to @p item when it was
26119     * created, with function elm_diskselector_item_append(), or later
26120     * with function elm_diskselector_item_label_set. If no label
26121     * was passed as argument, it will return @c NULL.
26122     *
26123     * @see elm_diskselector_item_label_set() for more details.
26124     * @see elm_diskselector_item_append()
26125     *
26126     * @ingroup Diskselector
26127     */
26128    EAPI const char            *elm_diskselector_item_label_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26129
26130    /**
26131     * Get the selected item.
26132     *
26133     * @param obj The diskselector object.
26134     * @return The selected diskselector item.
26135     *
26136     * The selected item can be unselected with function
26137     * elm_diskselector_item_selected_set(), and the first item of
26138     * diskselector will be selected.
26139     *
26140     * The selected item always will be centered on diskselector, with
26141     * full label displayed, i.e., max lenght set to side labels won't
26142     * apply on the selected item. More details on
26143     * elm_diskselector_side_label_length_set().
26144     *
26145     * @ingroup Diskselector
26146     */
26147    EAPI Elm_Diskselector_Item *elm_diskselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26148
26149    /**
26150     * Set the selected state of an item.
26151     *
26152     * @param it The diskselector item
26153     * @param selected The selected state
26154     *
26155     * This sets the selected state of the given item @p it.
26156     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
26157     *
26158     * If a new item is selected the previosly selected will be unselected.
26159     * Previoulsy selected item can be get with function
26160     * elm_diskselector_selected_item_get().
26161     *
26162     * If the item @p it is unselected, the first item of diskselector will
26163     * be selected.
26164     *
26165     * Selected items will be visible on center position of diskselector.
26166     * So if it was on another position before selected, or was invisible,
26167     * diskselector will animate items until the selected item reaches center
26168     * position.
26169     *
26170     * @see elm_diskselector_item_selected_get()
26171     * @see elm_diskselector_selected_item_get()
26172     *
26173     * @ingroup Diskselector
26174     */
26175    EAPI void                   elm_diskselector_item_selected_set(Elm_Diskselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
26176
26177    /*
26178     * Get whether the @p item is selected or not.
26179     *
26180     * @param it The diskselector item.
26181     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
26182     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
26183     *
26184     * @see elm_diskselector_selected_item_set() for details.
26185     * @see elm_diskselector_item_selected_get()
26186     *
26187     * @ingroup Diskselector
26188     */
26189    EAPI Eina_Bool              elm_diskselector_item_selected_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26190
26191    /**
26192     * Get the first item of the diskselector.
26193     *
26194     * @param obj The diskselector object.
26195     * @return The first item, or @c NULL if none.
26196     *
26197     * The list of items follows append order. So it will return the first
26198     * item appended to the widget that wasn't deleted.
26199     *
26200     * @see elm_diskselector_item_append()
26201     * @see elm_diskselector_items_get()
26202     *
26203     * @ingroup Diskselector
26204     */
26205    EAPI Elm_Diskselector_Item *elm_diskselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26206
26207    /**
26208     * Get the last item of the diskselector.
26209     *
26210     * @param obj The diskselector object.
26211     * @return The last item, or @c NULL if none.
26212     *
26213     * The list of items follows append order. So it will return last first
26214     * item appended to the widget that wasn't deleted.
26215     *
26216     * @see elm_diskselector_item_append()
26217     * @see elm_diskselector_items_get()
26218     *
26219     * @ingroup Diskselector
26220     */
26221    EAPI Elm_Diskselector_Item *elm_diskselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26222
26223    /**
26224     * Get the item before @p item in diskselector.
26225     *
26226     * @param it The diskselector item.
26227     * @return The item before @p item, or @c NULL if none or on failure.
26228     *
26229     * The list of items follows append order. So it will return item appended
26230     * just before @p item and that wasn't deleted.
26231     *
26232     * If it is the first item, @c NULL will be returned.
26233     * First item can be get by elm_diskselector_first_item_get().
26234     *
26235     * @see elm_diskselector_item_append()
26236     * @see elm_diskselector_items_get()
26237     *
26238     * @ingroup Diskselector
26239     */
26240    EAPI Elm_Diskselector_Item *elm_diskselector_item_prev_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26241
26242    /**
26243     * Get the item after @p item in diskselector.
26244     *
26245     * @param it The diskselector item.
26246     * @return The item after @p item, or @c NULL if none or on failure.
26247     *
26248     * The list of items follows append order. So it will return item appended
26249     * just after @p item and that wasn't deleted.
26250     *
26251     * If it is the last item, @c NULL will be returned.
26252     * Last item can be get by elm_diskselector_last_item_get().
26253     *
26254     * @see elm_diskselector_item_append()
26255     * @see elm_diskselector_items_get()
26256     *
26257     * @ingroup Diskselector
26258     */
26259    EAPI Elm_Diskselector_Item *elm_diskselector_item_next_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26260
26261    /**
26262     * Set the text to be shown in the diskselector item.
26263     *
26264     * @param item Target item
26265     * @param text The text to set in the content
26266     *
26267     * Setup the text as tooltip to object. The item can have only one tooltip,
26268     * so any previous tooltip data is removed.
26269     *
26270     * @see elm_object_tooltip_text_set() for more details.
26271     *
26272     * @ingroup Diskselector
26273     */
26274    EAPI void                   elm_diskselector_item_tooltip_text_set(Elm_Diskselector_Item *item, const char *text) EINA_ARG_NONNULL(1);
26275
26276    /**
26277     * Set the content to be shown in the tooltip item.
26278     *
26279     * Setup the tooltip to item. The item can have only one tooltip,
26280     * so any previous tooltip data is removed. @p func(with @p data) will
26281     * be called every time that need show the tooltip and it should
26282     * return a valid Evas_Object. This object is then managed fully by
26283     * tooltip system and is deleted when the tooltip is gone.
26284     *
26285     * @param item the diskselector item being attached a tooltip.
26286     * @param func the function used to create the tooltip contents.
26287     * @param data what to provide to @a func as callback data/context.
26288     * @param del_cb called when data is not needed anymore, either when
26289     *        another callback replaces @p func, the tooltip is unset with
26290     *        elm_diskselector_item_tooltip_unset() or the owner @a item
26291     *        dies. This callback receives as the first parameter the
26292     *        given @a data, and @c event_info is the item.
26293     *
26294     * @see elm_object_tooltip_content_cb_set() for more details.
26295     *
26296     * @ingroup Diskselector
26297     */
26298    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);
26299
26300    /**
26301     * Unset tooltip from item.
26302     *
26303     * @param item diskselector item to remove previously set tooltip.
26304     *
26305     * Remove tooltip from item. The callback provided as del_cb to
26306     * elm_diskselector_item_tooltip_content_cb_set() will be called to notify
26307     * it is not used anymore.
26308     *
26309     * @see elm_object_tooltip_unset() for more details.
26310     * @see elm_diskselector_item_tooltip_content_cb_set()
26311     *
26312     * @ingroup Diskselector
26313     */
26314    EAPI void                   elm_diskselector_item_tooltip_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26315
26316
26317    /**
26318     * Sets a different style for this item tooltip.
26319     *
26320     * @note before you set a style you should define a tooltip with
26321     *       elm_diskselector_item_tooltip_content_cb_set() or
26322     *       elm_diskselector_item_tooltip_text_set()
26323     *
26324     * @param item diskselector item with tooltip already set.
26325     * @param style the theme style to use (default, transparent, ...)
26326     *
26327     * @see elm_object_tooltip_style_set() for more details.
26328     *
26329     * @ingroup Diskselector
26330     */
26331    EAPI void                   elm_diskselector_item_tooltip_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
26332
26333    /**
26334     * Get the style for this item tooltip.
26335     *
26336     * @param item diskselector item with tooltip already set.
26337     * @return style the theme style in use, defaults to "default". If the
26338     *         object does not have a tooltip set, then NULL is returned.
26339     *
26340     * @see elm_object_tooltip_style_get() for more details.
26341     * @see elm_diskselector_item_tooltip_style_set()
26342     *
26343     * @ingroup Diskselector
26344     */
26345    EAPI const char            *elm_diskselector_item_tooltip_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26346
26347    /**
26348     * Set the cursor to be shown when mouse is over the diskselector item
26349     *
26350     * @param item Target item
26351     * @param cursor the cursor name to be used.
26352     *
26353     * @see elm_object_cursor_set() for more details.
26354     *
26355     * @ingroup Diskselector
26356     */
26357    EAPI void                   elm_diskselector_item_cursor_set(Elm_Diskselector_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
26358
26359    /**
26360     * Get the cursor to be shown when mouse is over the diskselector item
26361     *
26362     * @param item diskselector item with cursor already set.
26363     * @return the cursor name.
26364     *
26365     * @see elm_object_cursor_get() for more details.
26366     * @see elm_diskselector_cursor_set()
26367     *
26368     * @ingroup Diskselector
26369     */
26370    EAPI const char            *elm_diskselector_item_cursor_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26371
26372
26373    /**
26374     * Unset the cursor to be shown when mouse is over the diskselector item
26375     *
26376     * @param item Target item
26377     *
26378     * @see elm_object_cursor_unset() for more details.
26379     * @see elm_diskselector_cursor_set()
26380     *
26381     * @ingroup Diskselector
26382     */
26383    EAPI void                   elm_diskselector_item_cursor_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26384
26385    /**
26386     * Sets a different style for this item cursor.
26387     *
26388     * @note before you set a style you should define a cursor with
26389     *       elm_diskselector_item_cursor_set()
26390     *
26391     * @param item diskselector item with cursor already set.
26392     * @param style the theme style to use (default, transparent, ...)
26393     *
26394     * @see elm_object_cursor_style_set() for more details.
26395     *
26396     * @ingroup Diskselector
26397     */
26398    EAPI void                   elm_diskselector_item_cursor_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
26399
26400
26401    /**
26402     * Get the style for this item cursor.
26403     *
26404     * @param item diskselector item with cursor already set.
26405     * @return style the theme style in use, defaults to "default". If the
26406     *         object does not have a cursor set, then @c NULL is returned.
26407     *
26408     * @see elm_object_cursor_style_get() for more details.
26409     * @see elm_diskselector_item_cursor_style_set()
26410     *
26411     * @ingroup Diskselector
26412     */
26413    EAPI const char            *elm_diskselector_item_cursor_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26414
26415
26416    /**
26417     * Set if the cursor set should be searched on the theme or should use
26418     * the provided by the engine, only.
26419     *
26420     * @note before you set if should look on theme you should define a cursor
26421     * with elm_diskselector_item_cursor_set().
26422     * By default it will only look for cursors provided by the engine.
26423     *
26424     * @param item widget item with cursor already set.
26425     * @param engine_only boolean to define if cursors set with
26426     * elm_diskselector_item_cursor_set() should be searched only
26427     * between cursors provided by the engine or searched on widget's
26428     * theme as well.
26429     *
26430     * @see elm_object_cursor_engine_only_set() for more details.
26431     *
26432     * @ingroup Diskselector
26433     */
26434    EAPI void                   elm_diskselector_item_cursor_engine_only_set(Elm_Diskselector_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
26435
26436    /**
26437     * Get the cursor engine only usage for this item cursor.
26438     *
26439     * @param item widget item with cursor already set.
26440     * @return engine_only boolean to define it cursors should be looked only
26441     * between the provided by the engine or searched on widget's theme as well.
26442     * If the item does not have a cursor set, then @c EINA_FALSE is returned.
26443     *
26444     * @see elm_object_cursor_engine_only_get() for more details.
26445     * @see elm_diskselector_item_cursor_engine_only_set()
26446     *
26447     * @ingroup Diskselector
26448     */
26449    EAPI Eina_Bool              elm_diskselector_item_cursor_engine_only_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26450
26451    /**
26452     * @}
26453     */
26454
26455    /**
26456     * @defgroup Colorselector Colorselector
26457     *
26458     * @{
26459     *
26460     * @image html img/widget/colorselector/preview-00.png
26461     * @image latex img/widget/colorselector/preview-00.eps
26462     *
26463     * @brief Widget for user to select a color.
26464     *
26465     * Signals that you can add callbacks for are:
26466     * "changed" - When the color value changes(event_info is NULL).
26467     *
26468     * See @ref tutorial_colorselector.
26469     */
26470    /**
26471     * @brief Add a new colorselector to the parent
26472     *
26473     * @param parent The parent object
26474     * @return The new object or NULL if it cannot be created
26475     *
26476     * @ingroup Colorselector
26477     */
26478    EAPI Evas_Object *elm_colorselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26479    /**
26480     * Set a color for the colorselector
26481     *
26482     * @param obj   Colorselector object
26483     * @param r     r-value of color
26484     * @param g     g-value of color
26485     * @param b     b-value of color
26486     * @param a     a-value of color
26487     *
26488     * @ingroup Colorselector
26489     */
26490    EAPI void         elm_colorselector_color_set(Evas_Object *obj, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
26491    /**
26492     * Get a color from the colorselector
26493     *
26494     * @param obj   Colorselector object
26495     * @param r     integer pointer for r-value of color
26496     * @param g     integer pointer for g-value of color
26497     * @param b     integer pointer for b-value of color
26498     * @param a     integer pointer for a-value of color
26499     *
26500     * @ingroup Colorselector
26501     */
26502    EAPI void         elm_colorselector_color_get(const Evas_Object *obj, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
26503    /**
26504     * @}
26505     */
26506
26507    /**
26508     * @defgroup Ctxpopup Ctxpopup
26509     *
26510     * @image html img/widget/ctxpopup/preview-00.png
26511     * @image latex img/widget/ctxpopup/preview-00.eps
26512     *
26513     * @brief Context popup widet.
26514     *
26515     * A ctxpopup is a widget that, when shown, pops up a list of items.
26516     * It automatically chooses an area inside its parent object's view
26517     * (set via elm_ctxpopup_add() and elm_ctxpopup_hover_parent_set()) to
26518     * optimally fit into it. In the default theme, it will also point an
26519     * arrow to it's top left position at the time one shows it. Ctxpopup
26520     * items have a label and/or an icon. It is intended for a small
26521     * number of items (hence the use of list, not genlist).
26522     *
26523     * @note Ctxpopup is a especialization of @ref Hover.
26524     *
26525     * Signals that you can add callbacks for are:
26526     * "dismissed" - the ctxpopup was dismissed
26527     *
26528     * Default contents parts of the ctxpopup widget that you can use for are:
26529     * @li "elm.swallow.content" - A content of the ctxpopup
26530     *
26531     * @ref tutorial_ctxpopup shows the usage of a good deal of the API.
26532     * @{
26533     */
26534    typedef enum _Elm_Ctxpopup_Direction
26535      {
26536         ELM_CTXPOPUP_DIRECTION_DOWN, /**< ctxpopup show appear below clicked
26537                                           area */
26538         ELM_CTXPOPUP_DIRECTION_RIGHT, /**< ctxpopup show appear to the right of
26539                                            the clicked area */
26540         ELM_CTXPOPUP_DIRECTION_LEFT, /**< ctxpopup show appear to the left of
26541                                           the clicked area */
26542         ELM_CTXPOPUP_DIRECTION_UP, /**< ctxpopup show appear above the clicked
26543                                         area */
26544         ELM_CTXPOPUP_DIRECTION_UNKNOWN, /**< ctxpopup does not determine it's direction yet*/
26545      } Elm_Ctxpopup_Direction;
26546 #define Elm_Ctxpopup_Item Elm_Object_Item
26547
26548    /**
26549     * @brief Add a new Ctxpopup object to the parent.
26550     *
26551     * @param parent Parent object
26552     * @return New object or @c NULL, if it cannot be created
26553     */
26554    EAPI Evas_Object  *elm_ctxpopup_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26555    /**
26556     * @brief Set the Ctxpopup's parent
26557     *
26558     * @param obj The ctxpopup object
26559     * @param area The parent to use
26560     *
26561     * Set the parent object.
26562     *
26563     * @note elm_ctxpopup_add() will automatically call this function
26564     * with its @c parent argument.
26565     *
26566     * @see elm_ctxpopup_add()
26567     * @see elm_hover_parent_set()
26568     */
26569    EAPI void          elm_ctxpopup_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1, 2);
26570    /**
26571     * @brief Get the Ctxpopup's parent
26572     *
26573     * @param obj The ctxpopup object
26574     *
26575     * @see elm_ctxpopup_hover_parent_set() for more information
26576     */
26577    EAPI Evas_Object  *elm_ctxpopup_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26578    /**
26579     * @brief Clear all items in the given ctxpopup object.
26580     *
26581     * @param obj Ctxpopup object
26582     */
26583    EAPI void          elm_ctxpopup_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
26584    /**
26585     * @brief Change the ctxpopup's orientation to horizontal or vertical.
26586     *
26587     * @param obj Ctxpopup object
26588     * @param horizontal @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical
26589     */
26590    EAPI void          elm_ctxpopup_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
26591    /**
26592     * @brief Get the value of current ctxpopup object's orientation.
26593     *
26594     * @param obj Ctxpopup object
26595     * @return @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical mode (or errors)
26596     *
26597     * @see elm_ctxpopup_horizontal_set()
26598     */
26599    EAPI Eina_Bool     elm_ctxpopup_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26600    /**
26601     * @brief Add a new item to a ctxpopup object.
26602     *
26603     * @param obj Ctxpopup object
26604     * @param icon Icon to be set on new item
26605     * @param label The Label of the new item
26606     * @param func Convenience function called when item selected
26607     * @param data Data passed to @p func
26608     * @return A handle to the item added or @c NULL, on errors
26609     *
26610     * @warning Ctxpopup can't hold both an item list and a content at the same
26611     * time. When an item is added, any previous content will be removed.
26612     *
26613     * @see elm_ctxpopup_content_set()
26614     */
26615    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);
26616    /**
26617     * @brief Delete the given item in a ctxpopup object.
26618     *
26619     * @param it Ctxpopup item to be deleted
26620     *
26621     * @see elm_ctxpopup_item_append()
26622     */
26623    EAPI void          elm_ctxpopup_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26624    /**
26625     * @brief Set the ctxpopup item's state as disabled or enabled.
26626     *
26627     * @param it Ctxpopup item to be enabled/disabled
26628     * @param disabled @c EINA_TRUE to disable it, @c EINA_FALSE to enable it
26629     *
26630     * When disabled the item is greyed out to indicate it's state.
26631     */
26632    EAPI void          elm_ctxpopup_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
26633    /**
26634     * @brief Get the ctxpopup item's disabled/enabled state.
26635     *
26636     * @param it Ctxpopup item to be enabled/disabled
26637     * @return disabled @c EINA_TRUE, if disabled, @c EINA_FALSE otherwise
26638     *
26639     * @see elm_ctxpopup_item_disabled_set()
26640     */
26641    EAPI Eina_Bool     elm_ctxpopup_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26642    /**
26643     * @brief Get the icon object for the given ctxpopup item.
26644     *
26645     * @param it Ctxpopup item
26646     * @return icon object or @c NULL, if the item does not have icon or an error
26647     * occurred
26648     *
26649     * @see elm_ctxpopup_item_append()
26650     * @see elm_ctxpopup_item_icon_set()
26651     */
26652    EAPI Evas_Object  *elm_ctxpopup_item_icon_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26653    /**
26654     * @brief Sets the side icon associated with the ctxpopup item
26655     *
26656     * @param it Ctxpopup item
26657     * @param icon Icon object to be set
26658     *
26659     * Once the icon object is set, a previously set one will be deleted.
26660     * @warning Setting the same icon for two items will cause the icon to
26661     * dissapear from the first item.
26662     *
26663     * @see elm_ctxpopup_item_append()
26664     */
26665    EAPI void          elm_ctxpopup_item_icon_set(Elm_Object_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
26666    /**
26667     * @brief Get the label for the given ctxpopup item.
26668     *
26669     * @param it Ctxpopup item
26670     * @return label string or @c NULL, if the item does not have label or an
26671     * error occured
26672     *
26673     * @see elm_ctxpopup_item_append()
26674     * @see elm_ctxpopup_item_label_set()
26675     */
26676    EAPI const char   *elm_ctxpopup_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26677    /**
26678     * @brief (Re)set the label on the given ctxpopup item.
26679     *
26680     * @param it Ctxpopup item
26681     * @param label String to set as label
26682     */
26683    EAPI void          elm_ctxpopup_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
26684    /**
26685     * @brief Set an elm widget as the content of the ctxpopup.
26686     *
26687     * @param obj Ctxpopup object
26688     * @param content Content to be swallowed
26689     *
26690     * If the content object is already set, a previous one will bedeleted. If
26691     * you want to keep that old content object, use the
26692     * elm_ctxpopup_content_unset() function.
26693     *
26694     * @deprecated use elm_object_content_set()
26695     *
26696     * @warning Ctxpopup can't hold both a item list and a content at the same
26697     * time. When a content is set, any previous items will be removed.
26698     */
26699    EAPI void          elm_ctxpopup_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1, 2);
26700    /**
26701     * @brief Unset the ctxpopup content
26702     *
26703     * @param obj Ctxpopup object
26704     * @return The content that was being used
26705     *
26706     * Unparent and return the content object which was set for this widget.
26707     *
26708     * @deprecated use elm_object_content_unset()
26709     *
26710     * @see elm_ctxpopup_content_set()
26711     */
26712    EAPI Evas_Object  *elm_ctxpopup_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
26713    /**
26714     * @brief Set the direction priority of a ctxpopup.
26715     *
26716     * @param obj Ctxpopup object
26717     * @param first 1st priority of direction
26718     * @param second 2nd priority of direction
26719     * @param third 3th priority of direction
26720     * @param fourth 4th priority of direction
26721     *
26722     * This functions gives a chance to user to set the priority of ctxpopup
26723     * showing direction. This doesn't guarantee the ctxpopup will appear in the
26724     * requested direction.
26725     *
26726     * @see Elm_Ctxpopup_Direction
26727     */
26728    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);
26729    /**
26730     * @brief Get the direction priority of a ctxpopup.
26731     *
26732     * @param obj Ctxpopup object
26733     * @param first 1st priority of direction to be returned
26734     * @param second 2nd priority of direction to be returned
26735     * @param third 3th priority of direction to be returned
26736     * @param fourth 4th priority of direction to be returned
26737     *
26738     * @see elm_ctxpopup_direction_priority_set() for more information.
26739     */
26740    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);
26741
26742    /**
26743     * @brief Get the current direction of a ctxpopup.
26744     *
26745     * @param obj Ctxpopup object
26746     * @return current direction of a ctxpopup
26747     *
26748     * @warning Once the ctxpopup showed up, the direction would be determined
26749     */
26750    EAPI Elm_Ctxpopup_Direction elm_ctxpopup_direction_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26751
26752    /**
26753     * @}
26754     */
26755
26756    /* transit */
26757    /**
26758     *
26759     * @defgroup Transit Transit
26760     * @ingroup Elementary
26761     *
26762     * Transit is designed to apply various animated transition effects to @c
26763     * Evas_Object, such like translation, rotation, etc. For using these
26764     * effects, create an @ref Elm_Transit and add the desired transition effects.
26765     *
26766     * Once the effects are added into transit, they will be automatically
26767     * managed (their callback will be called until the duration is ended, and
26768     * they will be deleted on completion).
26769     *
26770     * Example:
26771     * @code
26772     * Elm_Transit *trans = elm_transit_add();
26773     * elm_transit_object_add(trans, obj);
26774     * elm_transit_effect_translation_add(trans, 0, 0, 280, 280
26775     * elm_transit_duration_set(transit, 1);
26776     * elm_transit_auto_reverse_set(transit, EINA_TRUE);
26777     * elm_transit_tween_mode_set(transit, ELM_TRANSIT_TWEEN_MODE_DECELERATE);
26778     * elm_transit_repeat_times_set(transit, 3);
26779     * @endcode
26780     *
26781     * Some transition effects are used to change the properties of objects. They
26782     * are:
26783     * @li @ref elm_transit_effect_translation_add
26784     * @li @ref elm_transit_effect_color_add
26785     * @li @ref elm_transit_effect_rotation_add
26786     * @li @ref elm_transit_effect_wipe_add
26787     * @li @ref elm_transit_effect_zoom_add
26788     * @li @ref elm_transit_effect_resizing_add
26789     *
26790     * Other transition effects are used to make one object disappear and another
26791     * object appear on its old place. These effects are:
26792     *
26793     * @li @ref elm_transit_effect_flip_add
26794     * @li @ref elm_transit_effect_resizable_flip_add
26795     * @li @ref elm_transit_effect_fade_add
26796     * @li @ref elm_transit_effect_blend_add
26797     *
26798     * It's also possible to make a transition chain with @ref
26799     * elm_transit_chain_transit_add.
26800     *
26801     * @warning We strongly recommend to use elm_transit just when edje can not do
26802     * the trick. Edje has more advantage than Elm_Transit, it has more flexibility and
26803     * animations can be manipulated inside the theme.
26804     *
26805     * List of examples:
26806     * @li @ref transit_example_01_explained
26807     * @li @ref transit_example_02_explained
26808     * @li @ref transit_example_03_c
26809     * @li @ref transit_example_04_c
26810     *
26811     * @{
26812     */
26813
26814    /**
26815     * @enum Elm_Transit_Tween_Mode
26816     *
26817     * The type of acceleration used in the transition.
26818     */
26819    typedef enum
26820      {
26821         ELM_TRANSIT_TWEEN_MODE_LINEAR, /**< Constant speed */
26822         ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL, /**< Starts slow, increase speed
26823                                              over time, then decrease again
26824                                              and stop slowly */
26825         ELM_TRANSIT_TWEEN_MODE_DECELERATE, /**< Starts fast and decrease
26826                                              speed over time */
26827         ELM_TRANSIT_TWEEN_MODE_ACCELERATE /**< Starts slow and increase speed
26828                                             over time */
26829      } Elm_Transit_Tween_Mode;
26830
26831    /**
26832     * @enum Elm_Transit_Effect_Flip_Axis
26833     *
26834     * The axis where flip effect should be applied.
26835     */
26836    typedef enum
26837      {
26838         ELM_TRANSIT_EFFECT_FLIP_AXIS_X, /**< Flip on X axis */
26839         ELM_TRANSIT_EFFECT_FLIP_AXIS_Y /**< Flip on Y axis */
26840      } Elm_Transit_Effect_Flip_Axis;
26841    /**
26842     * @enum Elm_Transit_Effect_Wipe_Dir
26843     *
26844     * The direction where the wipe effect should occur.
26845     */
26846    typedef enum
26847      {
26848         ELM_TRANSIT_EFFECT_WIPE_DIR_LEFT, /**< Wipe to the left */
26849         ELM_TRANSIT_EFFECT_WIPE_DIR_RIGHT, /**< Wipe to the right */
26850         ELM_TRANSIT_EFFECT_WIPE_DIR_UP, /**< Wipe up */
26851         ELM_TRANSIT_EFFECT_WIPE_DIR_DOWN /**< Wipe down */
26852      } Elm_Transit_Effect_Wipe_Dir;
26853    /** @enum Elm_Transit_Effect_Wipe_Type
26854     *
26855     * Whether the wipe effect should show or hide the object.
26856     */
26857    typedef enum
26858      {
26859         ELM_TRANSIT_EFFECT_WIPE_TYPE_HIDE, /**< Hide the object during the
26860                                              animation */
26861         ELM_TRANSIT_EFFECT_WIPE_TYPE_SHOW /**< Show the object during the
26862                                             animation */
26863      } Elm_Transit_Effect_Wipe_Type;
26864
26865    /**
26866     * @typedef Elm_Transit
26867     *
26868     * The Transit created with elm_transit_add(). This type has the information
26869     * about the objects which the transition will be applied, and the
26870     * transition effects that will be used. It also contains info about
26871     * duration, number of repetitions, auto-reverse, etc.
26872     */
26873    typedef struct _Elm_Transit Elm_Transit;
26874    typedef void Elm_Transit_Effect;
26875    /**
26876     * @typedef Elm_Transit_Effect_Transition_Cb
26877     *
26878     * Transition callback called for this effect on each transition iteration.
26879     */
26880    typedef void (*Elm_Transit_Effect_Transition_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit, double progress);
26881    /**
26882     * Elm_Transit_Effect_End_Cb
26883     *
26884     * Transition callback called for this effect when the transition is over.
26885     */
26886    typedef void (*Elm_Transit_Effect_End_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit);
26887
26888    /**
26889     * Elm_Transit_Del_Cb
26890     *
26891     * A callback called when the transit is deleted.
26892     */
26893    typedef void (*Elm_Transit_Del_Cb) (void *data, Elm_Transit *transit);
26894
26895    /**
26896     * Add new transit.
26897     *
26898     * @note Is not necessary to delete the transit object, it will be deleted at
26899     * the end of its operation.
26900     * @note The transit will start playing when the program enter in the main loop, is not
26901     * necessary to give a start to the transit.
26902     *
26903     * @return The transit object.
26904     *
26905     * @ingroup Transit
26906     */
26907    EAPI Elm_Transit                *elm_transit_add(void);
26908
26909    /**
26910     * Stops the animation and delete the @p transit object.
26911     *
26912     * Call this function if you wants to stop the animation before the duration
26913     * time. Make sure the @p transit object is still alive with
26914     * elm_transit_del_cb_set() function.
26915     * All added effects will be deleted, calling its repective data_free_cb
26916     * functions. The function setted by elm_transit_del_cb_set() will be called.
26917     *
26918     * @see elm_transit_del_cb_set()
26919     *
26920     * @param transit The transit object to be deleted.
26921     *
26922     * @ingroup Transit
26923     * @warning Just call this function if you are sure the transit is alive.
26924     */
26925    EAPI void                        elm_transit_del(Elm_Transit *transit) EINA_ARG_NONNULL(1);
26926
26927    /**
26928     * Add a new effect to the transit.
26929     *
26930     * @note The cb function and the data are the key to the effect. If you try to
26931     * add an already added effect, nothing is done.
26932     * @note After the first addition of an effect in @p transit, if its
26933     * effect list become empty again, the @p transit will be killed by
26934     * elm_transit_del(transit) function.
26935     *
26936     * Exemple:
26937     * @code
26938     * Elm_Transit *transit = elm_transit_add();
26939     * elm_transit_effect_add(transit,
26940     *                        elm_transit_effect_blend_op,
26941     *                        elm_transit_effect_blend_context_new(),
26942     *                        elm_transit_effect_blend_context_free);
26943     * @endcode
26944     *
26945     * @param transit The transit object.
26946     * @param transition_cb The operation function. It is called when the
26947     * animation begins, it is the function that actually performs the animation.
26948     * It is called with the @p data, @p transit and the time progression of the
26949     * animation (a double value between 0.0 and 1.0).
26950     * @param effect The context data of the effect.
26951     * @param end_cb The function to free the context data, it will be called
26952     * at the end of the effect, it must finalize the animation and free the
26953     * @p data.
26954     *
26955     * @ingroup Transit
26956     * @warning The transit free the context data at the and of the transition with
26957     * the data_free_cb function, do not use the context data in another transit.
26958     */
26959    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);
26960
26961    /**
26962     * Delete an added effect.
26963     *
26964     * This function will remove the effect from the @p transit, calling the
26965     * data_free_cb to free the @p data.
26966     *
26967     * @see elm_transit_effect_add()
26968     *
26969     * @note If the effect is not found, nothing is done.
26970     * @note If the effect list become empty, this function will call
26971     * elm_transit_del(transit), that is, it will kill the @p transit.
26972     *
26973     * @param transit The transit object.
26974     * @param transition_cb The operation function.
26975     * @param effect The context data of the effect.
26976     *
26977     * @ingroup Transit
26978     */
26979    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);
26980
26981    /**
26982     * Add new object to apply the effects.
26983     *
26984     * @note After the first addition of an object in @p transit, if its
26985     * object list become empty again, the @p transit will be killed by
26986     * elm_transit_del(transit) function.
26987     * @note If the @p obj belongs to another transit, the @p obj will be
26988     * removed from it and it will only belong to the @p transit. If the old
26989     * transit stays without objects, it will die.
26990     * @note When you add an object into the @p transit, its state from
26991     * evas_object_pass_events_get(obj) is saved, and it is applied when the
26992     * transit ends, if you change this state whith evas_object_pass_events_set()
26993     * after add the object, this state will change again when @p transit stops to
26994     * run.
26995     *
26996     * @param transit The transit object.
26997     * @param obj Object to be animated.
26998     *
26999     * @ingroup Transit
27000     * @warning It is not allowed to add a new object after transit begins to go.
27001     */
27002    EAPI void                        elm_transit_object_add(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
27003
27004    /**
27005     * Removes an added object from the transit.
27006     *
27007     * @note If the @p obj is not in the @p transit, nothing is done.
27008     * @note If the list become empty, this function will call
27009     * elm_transit_del(transit), that is, it will kill the @p transit.
27010     *
27011     * @param transit The transit object.
27012     * @param obj Object to be removed from @p transit.
27013     *
27014     * @ingroup Transit
27015     * @warning It is not allowed to remove objects after transit begins to go.
27016     */
27017    EAPI void                        elm_transit_object_remove(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
27018
27019    /**
27020     * Get the objects of the transit.
27021     *
27022     * @param transit The transit object.
27023     * @return a Eina_List with the objects from the transit.
27024     *
27025     * @ingroup Transit
27026     */
27027    EAPI const Eina_List            *elm_transit_objects_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27028
27029    /**
27030     * Enable/disable keeping up the objects states.
27031     * If it is not kept, the objects states will be reset when transition ends.
27032     *
27033     * @note @p transit can not be NULL.
27034     * @note One state includes geometry, color, map data.
27035     *
27036     * @param transit The transit object.
27037     * @param state_keep Keeping or Non Keeping.
27038     *
27039     * @ingroup Transit
27040     */
27041    EAPI void                        elm_transit_objects_final_state_keep_set(Elm_Transit *transit, Eina_Bool state_keep) EINA_ARG_NONNULL(1);
27042
27043    /**
27044     * Get a value whether the objects states will be reset or not.
27045     *
27046     * @note @p transit can not be NULL
27047     *
27048     * @see elm_transit_objects_final_state_keep_set()
27049     *
27050     * @param transit The transit object.
27051     * @return EINA_TRUE means the states of the objects will be reset.
27052     * If @p transit is NULL, EINA_FALSE is returned
27053     *
27054     * @ingroup Transit
27055     */
27056    EAPI Eina_Bool                   elm_transit_objects_final_state_keep_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27057
27058    /**
27059     * Set the event enabled when transit is operating.
27060     *
27061     * If @p enabled is EINA_TRUE, the objects of the transit will receives
27062     * events from mouse and keyboard during the animation.
27063     * @note When you add an object with elm_transit_object_add(), its state from
27064     * evas_object_pass_events_get(obj) is saved, and it is applied when the
27065     * transit ends, if you change this state with evas_object_pass_events_set()
27066     * after adding the object, this state will change again when @p transit stops
27067     * to run.
27068     *
27069     * @param transit The transit object.
27070     * @param enabled Events are received when enabled is @c EINA_TRUE, and
27071     * ignored otherwise.
27072     *
27073     * @ingroup Transit
27074     */
27075    EAPI void                        elm_transit_event_enabled_set(Elm_Transit *transit, Eina_Bool enabled) EINA_ARG_NONNULL(1);
27076
27077    /**
27078     * Get the value of event enabled status.
27079     *
27080     * @see elm_transit_event_enabled_set()
27081     *
27082     * @param transit The Transit object
27083     * @return EINA_TRUE, when event is enabled. If @p transit is NULL
27084     * EINA_FALSE is returned
27085     *
27086     * @ingroup Transit
27087     */
27088    EAPI Eina_Bool                   elm_transit_event_enabled_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27089
27090    /**
27091     * Set the user-callback function when the transit is deleted.
27092     *
27093     * @note Using this function twice will overwrite the first function setted.
27094     * @note the @p transit object will be deleted after call @p cb function.
27095     *
27096     * @param transit The transit object.
27097     * @param cb Callback function pointer. This function will be called before
27098     * the deletion of the transit.
27099     * @param data Callback funtion user data. It is the @p op parameter.
27100     *
27101     * @ingroup Transit
27102     */
27103    EAPI void                        elm_transit_del_cb_set(Elm_Transit *transit, Elm_Transit_Del_Cb cb, void *data) EINA_ARG_NONNULL(1);
27104
27105    /**
27106     * Set reverse effect automatically.
27107     *
27108     * If auto reverse is setted, after running the effects with the progress
27109     * parameter from 0 to 1, it will call the effecs again with the progress
27110     * from 1 to 0. The transit will last for a time iqual to (2 * duration * repeat),
27111     * where the duration was setted with the function elm_transit_add and
27112     * the repeat with the function elm_transit_repeat_times_set().
27113     *
27114     * @param transit The transit object.
27115     * @param reverse EINA_TRUE means the auto_reverse is on.
27116     *
27117     * @ingroup Transit
27118     */
27119    EAPI void                        elm_transit_auto_reverse_set(Elm_Transit *transit, Eina_Bool reverse) EINA_ARG_NONNULL(1);
27120
27121    /**
27122     * Get if the auto reverse is on.
27123     *
27124     * @see elm_transit_auto_reverse_set()
27125     *
27126     * @param transit The transit object.
27127     * @return EINA_TRUE means auto reverse is on. If @p transit is NULL
27128     * EINA_FALSE is returned
27129     *
27130     * @ingroup Transit
27131     */
27132    EAPI Eina_Bool                   elm_transit_auto_reverse_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27133
27134    /**
27135     * Set the transit repeat count. Effect will be repeated by repeat count.
27136     *
27137     * This function sets the number of repetition the transit will run after
27138     * the first one, that is, if @p repeat is 1, the transit will run 2 times.
27139     * If the @p repeat is a negative number, it will repeat infinite times.
27140     *
27141     * @note If this function is called during the transit execution, the transit
27142     * will run @p repeat times, ignoring the times it already performed.
27143     *
27144     * @param transit The transit object
27145     * @param repeat Repeat count
27146     *
27147     * @ingroup Transit
27148     */
27149    EAPI void                        elm_transit_repeat_times_set(Elm_Transit *transit, int repeat) EINA_ARG_NONNULL(1);
27150
27151    /**
27152     * Get the transit repeat count.
27153     *
27154     * @see elm_transit_repeat_times_set()
27155     *
27156     * @param transit The Transit object.
27157     * @return The repeat count. If @p transit is NULL
27158     * 0 is returned
27159     *
27160     * @ingroup Transit
27161     */
27162    EAPI int                         elm_transit_repeat_times_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27163
27164    /**
27165     * Set the transit animation acceleration type.
27166     *
27167     * This function sets the tween mode of the transit that can be:
27168     * ELM_TRANSIT_TWEEN_MODE_LINEAR - The default mode.
27169     * ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL - Starts in accelerate mode and ends decelerating.
27170     * ELM_TRANSIT_TWEEN_MODE_DECELERATE - The animation will be slowed over time.
27171     * ELM_TRANSIT_TWEEN_MODE_ACCELERATE - The animation will accelerate over time.
27172     *
27173     * @param transit The transit object.
27174     * @param tween_mode The tween type.
27175     *
27176     * @ingroup Transit
27177     */
27178    EAPI void                        elm_transit_tween_mode_set(Elm_Transit *transit, Elm_Transit_Tween_Mode tween_mode) EINA_ARG_NONNULL(1);
27179
27180    /**
27181     * Get the transit animation acceleration type.
27182     *
27183     * @note @p transit can not be NULL
27184     *
27185     * @param transit The transit object.
27186     * @return The tween type. If @p transit is NULL
27187     * ELM_TRANSIT_TWEEN_MODE_LINEAR is returned.
27188     *
27189     * @ingroup Transit
27190     */
27191    EAPI Elm_Transit_Tween_Mode      elm_transit_tween_mode_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27192
27193    /**
27194     * Set the transit animation time
27195     *
27196     * @note @p transit can not be NULL
27197     *
27198     * @param transit The transit object.
27199     * @param duration The animation time.
27200     *
27201     * @ingroup Transit
27202     */
27203    EAPI void                        elm_transit_duration_set(Elm_Transit *transit, double duration) EINA_ARG_NONNULL(1);
27204
27205    /**
27206     * Get the transit animation time
27207     *
27208     * @note @p transit can not be NULL
27209     *
27210     * @param transit The transit object.
27211     *
27212     * @return The transit animation time.
27213     *
27214     * @ingroup Transit
27215     */
27216    EAPI double                      elm_transit_duration_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27217
27218    /**
27219     * Starts the transition.
27220     * Once this API is called, the transit begins to measure the time.
27221     *
27222     * @note @p transit can not be NULL
27223     *
27224     * @param transit The transit object.
27225     *
27226     * @ingroup Transit
27227     */
27228    EAPI void                        elm_transit_go(Elm_Transit *transit) EINA_ARG_NONNULL(1);
27229
27230    /**
27231     * Pause/Resume the transition.
27232     *
27233     * If you call elm_transit_go again, the transit will be started from the
27234     * beginning, and will be unpaused.
27235     *
27236     * @note @p transit can not be NULL
27237     *
27238     * @param transit The transit object.
27239     * @param paused Whether the transition should be paused or not.
27240     *
27241     * @ingroup Transit
27242     */
27243    EAPI void                        elm_transit_paused_set(Elm_Transit *transit, Eina_Bool paused) EINA_ARG_NONNULL(1);
27244
27245    /**
27246     * Get the value of paused status.
27247     *
27248     * @see elm_transit_paused_set()
27249     *
27250     * @note @p transit can not be NULL
27251     *
27252     * @param transit The transit object.
27253     * @return EINA_TRUE means transition is paused. If @p transit is NULL
27254     * EINA_FALSE is returned
27255     *
27256     * @ingroup Transit
27257     */
27258    EAPI Eina_Bool                   elm_transit_paused_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27259
27260    /**
27261     * Get the time progression of the animation (a double value between 0.0 and 1.0).
27262     *
27263     * The value returned is a fraction (current time / total time). It
27264     * represents the progression position relative to the total.
27265     *
27266     * @note @p transit can not be NULL
27267     *
27268     * @param transit The transit object.
27269     *
27270     * @return The time progression value. If @p transit is NULL
27271     * 0 is returned
27272     *
27273     * @ingroup Transit
27274     */
27275    EAPI double                      elm_transit_progress_value_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27276
27277    /**
27278     * Makes the chain relationship between two transits.
27279     *
27280     * @note @p transit can not be NULL. Transit would have multiple chain transits.
27281     * @note @p chain_transit can not be NULL. Chain transits could be chained to the only one transit.
27282     *
27283     * @param transit The transit object.
27284     * @param chain_transit The chain transit object. This transit will be operated
27285     *        after transit is done.
27286     *
27287     * This function adds @p chain_transit transition to a chain after the @p
27288     * transit, and will be started as soon as @p transit ends. See @ref
27289     * transit_example_02_explained for a full example.
27290     *
27291     * @ingroup Transit
27292     */
27293    EAPI void                        elm_transit_chain_transit_add(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1, 2);
27294
27295    /**
27296     * Cut off the chain relationship between two transits.
27297     *
27298     * @note @p transit can not be NULL. Transit would have the chain relationship with @p chain transit.
27299     * @note @p chain_transit can not be NULL. Chain transits should be chained to the @p transit.
27300     *
27301     * @param transit The transit object.
27302     * @param chain_transit The chain transit object.
27303     *
27304     * This function remove the @p chain_transit transition from the @p transit.
27305     *
27306     * @ingroup Transit
27307     */
27308    EAPI void                        elm_transit_chain_transit_del(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1,2);
27309
27310    /**
27311     * Get the current chain transit list.
27312     *
27313     * @note @p transit can not be NULL.
27314     *
27315     * @param transit The transit object.
27316     * @return chain transit list.
27317     *
27318     * @ingroup Transit
27319     */
27320    EAPI Eina_List                  *elm_transit_chain_transits_get(const Elm_Transit *transit);
27321
27322    /**
27323     * Add the Resizing Effect to Elm_Transit.
27324     *
27325     * @note This API is one of the facades. It creates resizing effect context
27326     * and add it's required APIs to elm_transit_effect_add.
27327     *
27328     * @see elm_transit_effect_add()
27329     *
27330     * @param transit Transit object.
27331     * @param from_w Object width size when effect begins.
27332     * @param from_h Object height size when effect begins.
27333     * @param to_w Object width size when effect ends.
27334     * @param to_h Object height size when effect ends.
27335     * @return Resizing effect context data.
27336     *
27337     * @ingroup Transit
27338     */
27339    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);
27340
27341    /**
27342     * Add the Translation Effect to Elm_Transit.
27343     *
27344     * @note This API is one of the facades. It creates translation effect context
27345     * and add it's required APIs to elm_transit_effect_add.
27346     *
27347     * @see elm_transit_effect_add()
27348     *
27349     * @param transit Transit object.
27350     * @param from_dx X Position variation when effect begins.
27351     * @param from_dy Y Position variation when effect begins.
27352     * @param to_dx X Position variation when effect ends.
27353     * @param to_dy Y Position variation when effect ends.
27354     * @return Translation effect context data.
27355     *
27356     * @ingroup Transit
27357     * @warning It is highly recommended just create a transit with this effect when
27358     * the window that the objects of the transit belongs has already been created.
27359     * This is because this effect needs the geometry information about the objects,
27360     * and if the window was not created yet, it can get a wrong information.
27361     */
27362    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);
27363
27364    /**
27365     * Add the Zoom Effect to Elm_Transit.
27366     *
27367     * @note This API is one of the facades. It creates zoom effect context
27368     * and add it's required APIs to elm_transit_effect_add.
27369     *
27370     * @see elm_transit_effect_add()
27371     *
27372     * @param transit Transit object.
27373     * @param from_rate Scale rate when effect begins (1 is current rate).
27374     * @param to_rate Scale rate when effect ends.
27375     * @return Zoom effect context data.
27376     *
27377     * @ingroup Transit
27378     * @warning It is highly recommended just create a transit with this effect when
27379     * the window that the objects of the transit belongs has already been created.
27380     * This is because this effect needs the geometry information about the objects,
27381     * and if the window was not created yet, it can get a wrong information.
27382     */
27383    EAPI Elm_Transit_Effect *elm_transit_effect_zoom_add(Elm_Transit *transit, float from_rate, float to_rate);
27384
27385    /**
27386     * Add the Flip Effect to Elm_Transit.
27387     *
27388     * @note This API is one of the facades. It creates flip effect context
27389     * and add it's required APIs to elm_transit_effect_add.
27390     * @note This effect is applied to each pair of objects in the order they are listed
27391     * in the transit list of objects. The first object in the pair will be the
27392     * "front" object and the second will be the "back" object.
27393     *
27394     * @see elm_transit_effect_add()
27395     *
27396     * @param transit Transit object.
27397     * @param axis Flipping Axis(X or Y).
27398     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
27399     * @return Flip effect context data.
27400     *
27401     * @ingroup Transit
27402     * @warning It is highly recommended just create a transit with this effect when
27403     * the window that the objects of the transit belongs has already been created.
27404     * This is because this effect needs the geometry information about the objects,
27405     * and if the window was not created yet, it can get a wrong information.
27406     */
27407    EAPI Elm_Transit_Effect *elm_transit_effect_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
27408
27409    /**
27410     * Add the Resizable Flip Effect to Elm_Transit.
27411     *
27412     * @note This API is one of the facades. It creates resizable flip effect context
27413     * and add it's required APIs to elm_transit_effect_add.
27414     * @note This effect is applied to each pair of objects in the order they are listed
27415     * in the transit list of objects. The first object in the pair will be the
27416     * "front" object and the second will be the "back" object.
27417     *
27418     * @see elm_transit_effect_add()
27419     *
27420     * @param transit Transit object.
27421     * @param axis Flipping Axis(X or Y).
27422     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
27423     * @return Resizable flip effect context data.
27424     *
27425     * @ingroup Transit
27426     * @warning It is highly recommended just create a transit with this effect when
27427     * the window that the objects of the transit belongs has already been created.
27428     * This is because this effect needs the geometry information about the objects,
27429     * and if the window was not created yet, it can get a wrong information.
27430     */
27431    EAPI Elm_Transit_Effect *elm_transit_effect_resizable_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
27432
27433    /**
27434     * Add the Wipe Effect to Elm_Transit.
27435     *
27436     * @note This API is one of the facades. It creates wipe effect context
27437     * and add it's required APIs to elm_transit_effect_add.
27438     *
27439     * @see elm_transit_effect_add()
27440     *
27441     * @param transit Transit object.
27442     * @param type Wipe type. Hide or show.
27443     * @param dir Wipe Direction.
27444     * @return Wipe effect context data.
27445     *
27446     * @ingroup Transit
27447     * @warning It is highly recommended just create a transit with this effect when
27448     * the window that the objects of the transit belongs has already been created.
27449     * This is because this effect needs the geometry information about the objects,
27450     * and if the window was not created yet, it can get a wrong information.
27451     */
27452    EAPI Elm_Transit_Effect *elm_transit_effect_wipe_add(Elm_Transit *transit, Elm_Transit_Effect_Wipe_Type type, Elm_Transit_Effect_Wipe_Dir dir);
27453
27454    /**
27455     * Add the Color Effect to Elm_Transit.
27456     *
27457     * @note This API is one of the facades. It creates color effect context
27458     * and add it's required APIs to elm_transit_effect_add.
27459     *
27460     * @see elm_transit_effect_add()
27461     *
27462     * @param transit        Transit object.
27463     * @param  from_r        RGB R when effect begins.
27464     * @param  from_g        RGB G when effect begins.
27465     * @param  from_b        RGB B when effect begins.
27466     * @param  from_a        RGB A when effect begins.
27467     * @param  to_r          RGB R when effect ends.
27468     * @param  to_g          RGB G when effect ends.
27469     * @param  to_b          RGB B when effect ends.
27470     * @param  to_a          RGB A when effect ends.
27471     * @return               Color effect context data.
27472     *
27473     * @ingroup Transit
27474     */
27475    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);
27476
27477    /**
27478     * Add the Fade Effect to Elm_Transit.
27479     *
27480     * @note This API is one of the facades. It creates fade effect context
27481     * and add it's required APIs to elm_transit_effect_add.
27482     * @note This effect is applied to each pair of objects in the order they are listed
27483     * in the transit list of objects. The first object in the pair will be the
27484     * "before" object and the second will be the "after" object.
27485     *
27486     * @see elm_transit_effect_add()
27487     *
27488     * @param transit Transit object.
27489     * @return Fade effect context data.
27490     *
27491     * @ingroup Transit
27492     * @warning It is highly recommended just create a transit with this effect when
27493     * the window that the objects of the transit belongs has already been created.
27494     * This is because this effect needs the color information about the objects,
27495     * and if the window was not created yet, it can get a wrong information.
27496     */
27497    EAPI Elm_Transit_Effect *elm_transit_effect_fade_add(Elm_Transit *transit);
27498
27499    /**
27500     * Add the Blend Effect to Elm_Transit.
27501     *
27502     * @note This API is one of the facades. It creates blend effect context
27503     * and add it's required APIs to elm_transit_effect_add.
27504     * @note This effect is applied to each pair of objects in the order they are listed
27505     * in the transit list of objects. The first object in the pair will be the
27506     * "before" object and the second will be the "after" object.
27507     *
27508     * @see elm_transit_effect_add()
27509     *
27510     * @param transit Transit object.
27511     * @return Blend effect context data.
27512     *
27513     * @ingroup Transit
27514     * @warning It is highly recommended just create a transit with this effect when
27515     * the window that the objects of the transit belongs has already been created.
27516     * This is because this effect needs the color information about the objects,
27517     * and if the window was not created yet, it can get a wrong information.
27518     */
27519    EAPI Elm_Transit_Effect *elm_transit_effect_blend_add(Elm_Transit *transit);
27520
27521    /**
27522     * Add the Rotation Effect to Elm_Transit.
27523     *
27524     * @note This API is one of the facades. It creates rotation effect context
27525     * and add it's required APIs to elm_transit_effect_add.
27526     *
27527     * @see elm_transit_effect_add()
27528     *
27529     * @param transit Transit object.
27530     * @param from_degree Degree when effect begins.
27531     * @param to_degree Degree when effect is ends.
27532     * @return Rotation effect context data.
27533     *
27534     * @ingroup Transit
27535     * @warning It is highly recommended just create a transit with this effect when
27536     * the window that the objects of the transit belongs has already been created.
27537     * This is because this effect needs the geometry information about the objects,
27538     * and if the window was not created yet, it can get a wrong information.
27539     */
27540    EAPI Elm_Transit_Effect *elm_transit_effect_rotation_add(Elm_Transit *transit, float from_degree, float to_degree);
27541
27542    /**
27543     * Add the ImageAnimation Effect to Elm_Transit.
27544     *
27545     * @note This API is one of the facades. It creates image animation effect context
27546     * and add it's required APIs to elm_transit_effect_add.
27547     * The @p images parameter is a list images paths. This list and
27548     * its contents will be deleted at the end of the effect by
27549     * elm_transit_effect_image_animation_context_free() function.
27550     *
27551     * Example:
27552     * @code
27553     * char buf[PATH_MAX];
27554     * Eina_List *images = NULL;
27555     * Elm_Transit *transi = elm_transit_add();
27556     *
27557     * snprintf(buf, sizeof(buf), "%s/images/icon_11.png", PACKAGE_DATA_DIR);
27558     * images = eina_list_append(images, eina_stringshare_add(buf));
27559     *
27560     * snprintf(buf, sizeof(buf), "%s/images/logo_small.png", PACKAGE_DATA_DIR);
27561     * images = eina_list_append(images, eina_stringshare_add(buf));
27562     * elm_transit_effect_image_animation_add(transi, images);
27563     *
27564     * @endcode
27565     *
27566     * @see elm_transit_effect_add()
27567     *
27568     * @param transit Transit object.
27569     * @param images Eina_List of images file paths. This list and
27570     * its contents will be deleted at the end of the effect by
27571     * elm_transit_effect_image_animation_context_free() function.
27572     * @return Image Animation effect context data.
27573     *
27574     * @ingroup Transit
27575     */
27576    EAPI Elm_Transit_Effect *elm_transit_effect_image_animation_add(Elm_Transit *transit, Eina_List *images);
27577    /**
27578     * @}
27579     */
27580
27581    /* Store */
27582    typedef struct _Elm_Store                      Elm_Store;
27583    typedef struct _Elm_Store_DBsystem             Elm_Store_DBsystem;
27584    typedef struct _Elm_Store_Filesystem           Elm_Store_Filesystem;
27585    typedef struct _Elm_Store_Item                 Elm_Store_Item;
27586    typedef struct _Elm_Store_Item_DBsystem        Elm_Store_Item_DBsystem;
27587    typedef struct _Elm_Store_Item_Filesystem      Elm_Store_Item_Filesystem;
27588    typedef struct _Elm_Store_Item_Info            Elm_Store_Item_Info;
27589    typedef struct _Elm_Store_Item_Info_Filesystem Elm_Store_Item_Info_Filesystem;
27590    typedef struct _Elm_Store_Item_Mapping         Elm_Store_Item_Mapping;
27591    typedef struct _Elm_Store_Item_Mapping_Empty   Elm_Store_Item_Mapping_Empty;
27592    typedef struct _Elm_Store_Item_Mapping_Icon    Elm_Store_Item_Mapping_Icon;
27593    typedef struct _Elm_Store_Item_Mapping_Photo   Elm_Store_Item_Mapping_Photo;
27594    typedef struct _Elm_Store_Item_Mapping_Custom  Elm_Store_Item_Mapping_Custom;
27595
27596    typedef Eina_Bool (*Elm_Store_Item_List_Cb) (void *data, Elm_Store_Item_Info *info);
27597    typedef void      (*Elm_Store_Item_Fetch_Cb) (void *data, Elm_Store_Item *sti, Elm_Store_Item_Info *info);
27598    typedef void      (*Elm_Store_Item_Unfetch_Cb) (void *data, Elm_Store_Item *sti, Elm_Store_Item_Info *info);
27599    typedef void      (*Elm_Store_Item_Select_Cb) (void *data, Elm_Store_Item *sti);
27600    typedef int       (*Elm_Store_Item_Sort_Cb) (void *data, Elm_Store_Item_Info *info1, Elm_Store_Item_Info *info2);
27601    typedef void      (*Elm_Store_Item_Free_Cb) (void *data, Elm_Store_Item_Info *info);
27602    typedef void     *(*Elm_Store_Item_Mapping_Cb) (void *data, Elm_Store_Item *sti, const char *part);
27603
27604    typedef enum
27605      {
27606         ELM_STORE_ITEM_MAPPING_NONE = 0,
27607         ELM_STORE_ITEM_MAPPING_LABEL, // const char * -> label
27608         ELM_STORE_ITEM_MAPPING_STATE, // Eina_Bool -> state
27609         ELM_STORE_ITEM_MAPPING_ICON, // char * -> icon path
27610         ELM_STORE_ITEM_MAPPING_PHOTO, // char * -> photo path
27611         ELM_STORE_ITEM_MAPPING_CUSTOM, // item->custom(it->data, it, part) -> void * (-> any)
27612         // can add more here as needed by common apps
27613         ELM_STORE_ITEM_MAPPING_LAST
27614      } Elm_Store_Item_Mapping_Type;
27615
27616    struct _Elm_Store_Item_Mapping_Icon
27617      {
27618         // FIXME: allow edje file icons
27619         int                   w, h;
27620         Elm_Icon_Lookup_Order lookup_order;
27621         Eina_Bool             standard_name : 1;
27622         Eina_Bool             no_scale : 1;
27623         Eina_Bool             smooth : 1;
27624         Eina_Bool             scale_up : 1;
27625         Eina_Bool             scale_down : 1;
27626      };
27627
27628    struct _Elm_Store_Item_Mapping_Empty
27629      {
27630         Eina_Bool             dummy;
27631      };
27632
27633    struct _Elm_Store_Item_Mapping_Photo
27634      {
27635         int                   size;
27636      };
27637
27638    struct _Elm_Store_Item_Mapping_Custom
27639      {
27640         Elm_Store_Item_Mapping_Cb func;
27641      };
27642
27643    struct _Elm_Store_Item_Mapping
27644      {
27645         Elm_Store_Item_Mapping_Type     type;
27646         const char                     *part;
27647         int                             offset;
27648         union
27649           {
27650              Elm_Store_Item_Mapping_Empty  empty;
27651              Elm_Store_Item_Mapping_Icon   icon;
27652              Elm_Store_Item_Mapping_Photo  photo;
27653              Elm_Store_Item_Mapping_Custom custom;
27654              // add more types here
27655           } details;
27656      };
27657
27658    struct _Elm_Store_Item_Info
27659      {
27660         int                           index;
27661         int                           item_type;
27662         int                           group_index;
27663         Eina_Bool                     rec_item;
27664         int                           pre_group_index;
27665
27666         Elm_Genlist_Item_Class       *item_class;
27667         const Elm_Store_Item_Mapping *mapping;
27668         void                         *data;
27669         char                         *sort_id;
27670      };
27671
27672    struct _Elm_Store_Item_Info_Filesystem
27673      {
27674         Elm_Store_Item_Info  base;
27675         char                *path;
27676      };
27677
27678 #define ELM_STORE_ITEM_MAPPING_END { ELM_STORE_ITEM_MAPPING_NONE, NULL, 0, { .empty = { EINA_TRUE } } }
27679 #define ELM_STORE_ITEM_MAPPING_OFFSET(st, it) offsetof(st, it)
27680
27681    EAPI Elm_Store              *elm_store_dbsystem_new(void);
27682    EAPI void                    elm_store_item_count_set(Elm_Store *st, int count) EINA_ARG_NONNULL(1);
27683    EAPI void                    elm_store_item_select_func_set(Elm_Store *st, Elm_Store_Item_Select_Cb func, const void *data) EINA_ARG_NONNULL(1);
27684    EAPI void                    elm_store_item_sort_func_set(Elm_Store *st, Elm_Store_Item_Sort_Cb func, const void *data) EINA_ARG_NONNULL(1);
27685    EAPI void                    elm_store_item_free_func_set(Elm_Store *st, Elm_Store_Item_Free_Cb func, const void *data) EINA_ARG_NONNULL(1);
27686    EAPI int                     elm_store_item_data_index_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27687    EAPI void                   *elm_store_dbsystem_db_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27688    EAPI void                    elm_store_dbsystem_db_set(Elm_Store *store, void *pDB) EINA_ARG_NONNULL(1);
27689    EAPI int                     elm_store_item_index_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27690    EAPI Elm_Store_Item         *elm_store_item_add(Elm_Store *st, Elm_Store_Item_Info *info) EINA_ARG_NONNULL(1);
27691    EAPI void                    elm_store_item_update(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27692    EAPI void                    elm_store_visible_items_update(Elm_Store *st) EINA_ARG_NONNULL(1);
27693    EAPI void                    elm_store_item_del(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27694    EAPI void                    elm_store_free(Elm_Store *st);
27695    EAPI Elm_Store              *elm_store_filesystem_new(void);
27696    EAPI void                    elm_store_filesystem_directory_set(Elm_Store *st, const char *dir) EINA_ARG_NONNULL(1);
27697    EAPI const char             *elm_store_filesystem_directory_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27698    EAPI const char             *elm_store_item_filesystem_path_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27699
27700    EAPI void                    elm_store_target_genlist_set(Elm_Store *st, Evas_Object *obj) EINA_ARG_NONNULL(1);
27701
27702    EAPI void                    elm_store_cache_set(Elm_Store *st, int max) EINA_ARG_NONNULL(1);
27703    EAPI int                     elm_store_cache_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27704    EAPI void                    elm_store_list_func_set(Elm_Store *st, Elm_Store_Item_List_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27705    EAPI void                    elm_store_fetch_func_set(Elm_Store *st, Elm_Store_Item_Fetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27706    EAPI void                    elm_store_fetch_thread_set(Elm_Store *st, Eina_Bool use_thread) EINA_ARG_NONNULL(1);
27707    EAPI Eina_Bool               elm_store_fetch_thread_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27708
27709    EAPI void                    elm_store_unfetch_func_set(Elm_Store *st, Elm_Store_Item_Unfetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27710    EAPI void                    elm_store_sorted_set(Elm_Store *st, Eina_Bool sorted) EINA_ARG_NONNULL(1);
27711    EAPI Eina_Bool               elm_store_sorted_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27712    EAPI void                    elm_store_item_data_set(Elm_Store_Item *sti, void *data) EINA_ARG_NONNULL(1);
27713    EAPI void                   *elm_store_item_data_get(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27714    EAPI const Elm_Store        *elm_store_item_store_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27715    EAPI const Elm_Genlist_Item *elm_store_item_genlist_item_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27716
27717    /**
27718     * @defgroup SegmentControl SegmentControl
27719     * @ingroup Elementary
27720     *
27721     * @image html img/widget/segment_control/preview-00.png
27722     * @image latex img/widget/segment_control/preview-00.eps width=\textwidth
27723     *
27724     * @image html img/segment_control.png
27725     * @image latex img/segment_control.eps width=\textwidth
27726     *
27727     * Segment control widget is a horizontal control made of multiple segment
27728     * items, each segment item functioning similar to discrete two state button.
27729     * A segment control groups the items together and provides compact
27730     * single button with multiple equal size segments.
27731     *
27732     * Segment item size is determined by base widget
27733     * size and the number of items added.
27734     * Only one segment item can be at selected state. A segment item can display
27735     * combination of Text and any Evas_Object like Images or other widget.
27736     *
27737     * Smart callbacks one can listen to:
27738     * - "changed" - When the user clicks on a segment item which is not
27739     *   previously selected and get selected. The event_info parameter is the
27740     *   segment item pointer.
27741     *
27742     * Available styles for it:
27743     * - @c "default"
27744     *
27745     * Here is an example on its usage:
27746     * @li @ref segment_control_example
27747     */
27748
27749    /**
27750     * @addtogroup SegmentControl
27751     * @{
27752     */
27753
27754    typedef struct _Elm_Segment_Item Elm_Segment_Item; /**< Item handle for a segment control widget. */
27755
27756    /**
27757     * Add a new segment control widget to the given parent Elementary
27758     * (container) object.
27759     *
27760     * @param parent The parent object.
27761     * @return a new segment control widget handle or @c NULL, on errors.
27762     *
27763     * This function inserts a new segment control widget on the canvas.
27764     *
27765     * @ingroup SegmentControl
27766     */
27767    EAPI Evas_Object      *elm_segment_control_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
27768
27769    /**
27770     * Append a new item to the segment control object.
27771     *
27772     * @param obj The segment control object.
27773     * @param icon The icon object to use for the left side of the item. An
27774     * icon can be any Evas object, but usually it is an icon created
27775     * with elm_icon_add().
27776     * @param label The label of the item.
27777     *        Note that, NULL is different from empty string "".
27778     * @return The created item or @c NULL upon failure.
27779     *
27780     * A new item will be created and appended to the segment control, i.e., will
27781     * be set as @b last item.
27782     *
27783     * If it should be inserted at another position,
27784     * elm_segment_control_item_insert_at() should be used instead.
27785     *
27786     * Items created with this function can be deleted with function
27787     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
27788     *
27789     * @note @p label set to @c NULL is different from empty string "".
27790     * If an item
27791     * only has icon, it will be displayed bigger and centered. If it has
27792     * icon and label, even that an empty string, icon will be smaller and
27793     * positioned at left.
27794     *
27795     * Simple example:
27796     * @code
27797     * sc = elm_segment_control_add(win);
27798     * ic = elm_icon_add(win);
27799     * elm_icon_file_set(ic, "path/to/image", NULL);
27800     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
27801     * elm_segment_control_item_add(sc, ic, "label");
27802     * evas_object_show(sc);
27803     * @endcode
27804     *
27805     * @see elm_segment_control_item_insert_at()
27806     * @see elm_segment_control_item_del()
27807     *
27808     * @ingroup SegmentControl
27809     */
27810    EAPI Elm_Segment_Item *elm_segment_control_item_add(Evas_Object *obj, Evas_Object *icon, const char *label) EINA_ARG_NONNULL(1);
27811
27812    /**
27813     * Insert a new item to the segment control object at specified position.
27814     *
27815     * @param obj The segment control object.
27816     * @param icon The icon object to use for the left side of the item. An
27817     * icon can be any Evas object, but usually it is an icon created
27818     * with elm_icon_add().
27819     * @param label The label of the item.
27820     * @param index Item position. Value should be between 0 and items count.
27821     * @return The created item or @c NULL upon failure.
27822
27823     * Index values must be between @c 0, when item will be prepended to
27824     * segment control, and items count, that can be get with
27825     * elm_segment_control_item_count_get(), case when item will be appended
27826     * to segment control, just like elm_segment_control_item_add().
27827     *
27828     * Items created with this function can be deleted with function
27829     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
27830     *
27831     * @note @p label set to @c NULL is different from empty string "".
27832     * If an item
27833     * only has icon, it will be displayed bigger and centered. If it has
27834     * icon and label, even that an empty string, icon will be smaller and
27835     * positioned at left.
27836     *
27837     * @see elm_segment_control_item_add()
27838     * @see elm_segment_control_item_count_get()
27839     * @see elm_segment_control_item_del()
27840     *
27841     * @ingroup SegmentControl
27842     */
27843    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);
27844
27845    /**
27846     * Remove a segment control item from its parent, deleting it.
27847     *
27848     * @param it The item to be removed.
27849     *
27850     * Items can be added with elm_segment_control_item_add() or
27851     * elm_segment_control_item_insert_at().
27852     *
27853     * @ingroup SegmentControl
27854     */
27855    EAPI void              elm_segment_control_item_del(Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
27856
27857    /**
27858     * Remove a segment control item at given index from its parent,
27859     * deleting it.
27860     *
27861     * @param obj The segment control object.
27862     * @param index The position of the segment control item to be deleted.
27863     *
27864     * Items can be added with elm_segment_control_item_add() or
27865     * elm_segment_control_item_insert_at().
27866     *
27867     * @ingroup SegmentControl
27868     */
27869    EAPI void              elm_segment_control_item_del_at(Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
27870
27871    /**
27872     * Get the Segment items count from segment control.
27873     *
27874     * @param obj The segment control object.
27875     * @return Segment items count.
27876     *
27877     * It will just return the number of items added to segment control @p obj.
27878     *
27879     * @ingroup SegmentControl
27880     */
27881    EAPI int               elm_segment_control_item_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
27882
27883    /**
27884     * Get the item placed at specified index.
27885     *
27886     * @param obj The segment control object.
27887     * @param index The index of the segment item.
27888     * @return The segment control item or @c NULL on failure.
27889     *
27890     * Index is the position of an item in segment control widget. Its
27891     * range is from @c 0 to <tt> count - 1 </tt>.
27892     * Count is the number of items, that can be get with
27893     * elm_segment_control_item_count_get().
27894     *
27895     * @ingroup SegmentControl
27896     */
27897    EAPI Elm_Segment_Item *elm_segment_control_item_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
27898
27899    /**
27900     * Get the label of item.
27901     *
27902     * @param obj The segment control object.
27903     * @param index The index of the segment item.
27904     * @return The label of the item at @p index.
27905     *
27906     * The return value is a pointer to the label associated to the item when
27907     * it was created, with function elm_segment_control_item_add(), or later
27908     * with function elm_segment_control_item_label_set. If no label
27909     * was passed as argument, it will return @c NULL.
27910     *
27911     * @see elm_segment_control_item_label_set() for more details.
27912     * @see elm_segment_control_item_add()
27913     *
27914     * @ingroup SegmentControl
27915     */
27916    EAPI const char       *elm_segment_control_item_label_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
27917
27918    /**
27919     * Set the label of item.
27920     *
27921     * @param it The item of segment control.
27922     * @param text The label of item.
27923     *
27924     * The label to be displayed by the item.
27925     * Label will be at right of the icon (if set).
27926     *
27927     * If a label was passed as argument on item creation, with function
27928     * elm_control_segment_item_add(), it will be already
27929     * displayed by the item.
27930     *
27931     * @see elm_segment_control_item_label_get()
27932     * @see elm_segment_control_item_add()
27933     *
27934     * @ingroup SegmentControl
27935     */
27936    EAPI void              elm_segment_control_item_label_set(Elm_Segment_Item* it, const char* label) EINA_ARG_NONNULL(1);
27937
27938    /**
27939     * Get the icon associated to the item.
27940     *
27941     * @param obj The segment control object.
27942     * @param index The index of the segment item.
27943     * @return The left side icon associated to the item at @p index.
27944     *
27945     * The return value is a pointer to the icon associated to the item when
27946     * it was created, with function elm_segment_control_item_add(), or later
27947     * with function elm_segment_control_item_icon_set(). If no icon
27948     * was passed as argument, it will return @c NULL.
27949     *
27950     * @see elm_segment_control_item_add()
27951     * @see elm_segment_control_item_icon_set()
27952     *
27953     * @ingroup SegmentControl
27954     */
27955    EAPI Evas_Object      *elm_segment_control_item_icon_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
27956
27957    /**
27958     * Set the icon associated to the item.
27959     *
27960     * @param it The segment control item.
27961     * @param icon The icon object to associate with @p it.
27962     *
27963     * The icon object to use at left side of the item. An
27964     * icon can be any Evas object, but usually it is an icon created
27965     * with elm_icon_add().
27966     *
27967     * Once the icon object is set, a previously set one will be deleted.
27968     * @warning Setting the same icon for two items will cause the icon to
27969     * dissapear from the first item.
27970     *
27971     * If an icon was passed as argument on item creation, with function
27972     * elm_segment_control_item_add(), it will be already
27973     * associated to the item.
27974     *
27975     * @see elm_segment_control_item_add()
27976     * @see elm_segment_control_item_icon_get()
27977     *
27978     * @ingroup SegmentControl
27979     */
27980    EAPI void              elm_segment_control_item_icon_set(Elm_Segment_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
27981
27982    /**
27983     * Get the index of an item.
27984     *
27985     * @param it The segment control item.
27986     * @return The position of item in segment control widget.
27987     *
27988     * Index is the position of an item in segment control widget. Its
27989     * range is from @c 0 to <tt> count - 1 </tt>.
27990     * Count is the number of items, that can be get with
27991     * elm_segment_control_item_count_get().
27992     *
27993     * @ingroup SegmentControl
27994     */
27995    EAPI int               elm_segment_control_item_index_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
27996
27997    /**
27998     * Get the base object of the item.
27999     *
28000     * @param it The segment control item.
28001     * @return The base object associated with @p it.
28002     *
28003     * Base object is the @c Evas_Object that represents that item.
28004     *
28005     * @ingroup SegmentControl
28006     */
28007    EAPI Evas_Object      *elm_segment_control_item_object_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
28008
28009    /**
28010     * Get the selected item.
28011     *
28012     * @param obj The segment control object.
28013     * @return The selected item or @c NULL if none of segment items is
28014     * selected.
28015     *
28016     * The selected item can be unselected with function
28017     * elm_segment_control_item_selected_set().
28018     *
28019     * The selected item always will be highlighted on segment control.
28020     *
28021     * @ingroup SegmentControl
28022     */
28023    EAPI Elm_Segment_Item *elm_segment_control_item_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28024
28025    /**
28026     * Set the selected state of an item.
28027     *
28028     * @param it The segment control item
28029     * @param select The selected state
28030     *
28031     * This sets the selected state of the given item @p it.
28032     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
28033     *
28034     * If a new item is selected the previosly selected will be unselected.
28035     * Previoulsy selected item can be get with function
28036     * elm_segment_control_item_selected_get().
28037     *
28038     * The selected item always will be highlighted on segment control.
28039     *
28040     * @see elm_segment_control_item_selected_get()
28041     *
28042     * @ingroup SegmentControl
28043     */
28044    EAPI void              elm_segment_control_item_selected_set(Elm_Segment_Item *it, Eina_Bool select) EINA_ARG_NONNULL(1);
28045
28046    /**
28047     * @}
28048     */
28049
28050    /**
28051     * @defgroup Grid Grid
28052     *
28053     * The grid is a grid layout widget that lays out a series of children as a
28054     * fixed "grid" of widgets using a given percentage of the grid width and
28055     * height each using the child object.
28056     *
28057     * The Grid uses a "Virtual resolution" that is stretched to fill the grid
28058     * widgets size itself. The default is 100 x 100, so that means the
28059     * position and sizes of children will effectively be percentages (0 to 100)
28060     * of the width or height of the grid widget
28061     *
28062     * @{
28063     */
28064
28065    /**
28066     * Add a new grid to the parent
28067     *
28068     * @param parent The parent object
28069     * @return The new object or NULL if it cannot be created
28070     *
28071     * @ingroup Grid
28072     */
28073    EAPI Evas_Object *elm_grid_add(Evas_Object *parent);
28074
28075    /**
28076     * Set the virtual size of the grid
28077     *
28078     * @param obj The grid object
28079     * @param w The virtual width of the grid
28080     * @param h The virtual height of the grid
28081     *
28082     * @ingroup Grid
28083     */
28084    EAPI void         elm_grid_size_set(Evas_Object *obj, int w, int h);
28085
28086    /**
28087     * Get the virtual size of the grid
28088     *
28089     * @param obj The grid object
28090     * @param w Pointer to integer to store the virtual width of the grid
28091     * @param h Pointer to integer to store the virtual height of the grid
28092     *
28093     * @ingroup Grid
28094     */
28095    EAPI void         elm_grid_size_get(Evas_Object *obj, int *w, int *h);
28096
28097    /**
28098     * Pack child at given position and size
28099     *
28100     * @param obj The grid object
28101     * @param subobj The child to pack
28102     * @param x The virtual x coord at which to pack it
28103     * @param y The virtual y coord at which to pack it
28104     * @param w The virtual width at which to pack it
28105     * @param h The virtual height at which to pack it
28106     *
28107     * @ingroup Grid
28108     */
28109    EAPI void         elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h);
28110
28111    /**
28112     * Unpack a child from a grid object
28113     *
28114     * @param obj The grid object
28115     * @param subobj The child to unpack
28116     *
28117     * @ingroup Grid
28118     */
28119    EAPI void         elm_grid_unpack(Evas_Object *obj, Evas_Object *subobj);
28120
28121    /**
28122     * Faster way to remove all child objects from a grid object.
28123     *
28124     * @param obj The grid object
28125     * @param clear If true, it will delete just removed children
28126     *
28127     * @ingroup Grid
28128     */
28129    EAPI void         elm_grid_clear(Evas_Object *obj, Eina_Bool clear);
28130
28131    /**
28132     * Set packing of an existing child at to position and size
28133     *
28134     * @param subobj The child to set packing of
28135     * @param x The virtual x coord at which to pack it
28136     * @param y The virtual y coord at which to pack it
28137     * @param w The virtual width at which to pack it
28138     * @param h The virtual height at which to pack it
28139     *
28140     * @ingroup Grid
28141     */
28142    EAPI void         elm_grid_pack_set(Evas_Object *subobj, int x, int y, int w, int h);
28143
28144    /**
28145     * get packing of a child
28146     *
28147     * @param subobj The child to query
28148     * @param x Pointer to integer to store the virtual x coord
28149     * @param y Pointer to integer to store the virtual y coord
28150     * @param w Pointer to integer to store the virtual width
28151     * @param h Pointer to integer to store the virtual height
28152     *
28153     * @ingroup Grid
28154     */
28155    EAPI void         elm_grid_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h);
28156
28157    /**
28158     * @}
28159     */
28160
28161    EAPI Evas_Object *elm_factory_add(Evas_Object *parent);
28162    EINA_DEPRECATED EAPI void         elm_factory_content_set(Evas_Object *obj, Evas_Object *content);
28163    EINA_DEPRECATED EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj);
28164    EAPI void         elm_factory_maxmin_mode_set(Evas_Object *obj, Eina_Bool enabled);
28165    EAPI Eina_Bool    elm_factory_maxmin_mode_get(const Evas_Object *obj);
28166    EAPI void         elm_factory_maxmin_reset_set(Evas_Object *obj);
28167
28168
28169    /**
28170     * @defgroup Video Video
28171     *
28172     * @addtogroup Video
28173     * @{
28174     *
28175     * Elementary comes with two object that help design application that need
28176     * to display video. The main one, Elm_Video, display a video by using Emotion.
28177     * It does embedded the video inside an Edje object, so you can do some
28178     * animation depending on the video state change. It does also implement a
28179     * ressource management policy to remove this burden from the application writer.
28180     *
28181     * The second one, Elm_Player is a video player that need to be linked with and Elm_Video.
28182     * It take care of updating its content according to Emotion event and provide a
28183     * way to theme itself. It also does automatically raise the priority of the
28184     * linked Elm_Video so it will use the video decoder if available. It also does
28185     * activate the remember function on the linked Elm_Video object.
28186     *
28187     * Signals that you can add callback for are :
28188     *
28189     * "forward,clicked" - the user clicked the forward button.
28190     * "info,clicked" - the user clicked the info button.
28191     * "next,clicked" - the user clicked the next button.
28192     * "pause,clicked" - the user clicked the pause button.
28193     * "play,clicked" - the user clicked the play button.
28194     * "prev,clicked" - the user clicked the prev button.
28195     * "rewind,clicked" - the user clicked the rewind button.
28196     * "stop,clicked" - the user clicked the stop button.
28197     * 
28198     * To set the video of the player, you can use elm_object_content_set() API.
28199     * 
28200     */
28201
28202    /**
28203     * @brief Add a new Elm_Player object to the given parent Elementary (container) object.
28204     *
28205     * @param parent The parent object
28206     * @return a new player widget handle or @c NULL, on errors.
28207     *
28208     * This function inserts a new player widget on the canvas.
28209     *
28210     * @see elm_object_content_set()
28211     *
28212     * @ingroup Video
28213     */
28214    EAPI Evas_Object *elm_player_add(Evas_Object *parent);
28215
28216    /**
28217     * @brief Link a Elm_Payer with an Elm_Video object.
28218     *
28219     * @param player the Elm_Player object.
28220     * @param video The Elm_Video object.
28221     *
28222     * This mean that action on the player widget will affect the
28223     * video object and the state of the video will be reflected in
28224     * the player itself.
28225     *
28226     * @see elm_player_add()
28227     * @see elm_video_add()
28228     *
28229     * @ingroup Video
28230     */
28231    EAPI void elm_player_video_set(Evas_Object *player, Evas_Object *video);
28232
28233    /**
28234     * @brief Add a new Elm_Video object to the given parent Elementary (container) object.
28235     *
28236     * @param parent The parent object
28237     * @return a new video widget handle or @c NULL, on errors.
28238     *
28239     * This function inserts a new video widget on the canvas.
28240     *
28241     * @seeelm_video_file_set()
28242     * @see elm_video_uri_set()
28243     *
28244     * @ingroup Video
28245     */
28246    EAPI Evas_Object *elm_video_add(Evas_Object *parent);
28247
28248    /**
28249     * @brief Define the file that will be the video source.
28250     *
28251     * @param video The video object to define the file for.
28252     * @param filename The file to target.
28253     *
28254     * This function will explicitly define a filename as a source
28255     * for the video of the Elm_Video object.
28256     *
28257     * @see elm_video_uri_set()
28258     * @see elm_video_add()
28259     * @see elm_player_add()
28260     *
28261     * @ingroup Video
28262     */
28263    EAPI void elm_video_file_set(Evas_Object *video, const char *filename);
28264
28265    /**
28266     * @brief Define the uri that will be the video source.
28267     *
28268     * @param video The video object to define the file for.
28269     * @param uri The uri to target.
28270     *
28271     * This function will define an uri as a source for the video of the
28272     * Elm_Video object. URI could be remote source of video, like http:// or local source
28273     * like for example WebCam who are most of the time v4l2:// (but that depend and
28274     * you should use Emotion API to request and list the available Webcam on your system).
28275     *
28276     * @see elm_video_file_set()
28277     * @see elm_video_add()
28278     * @see elm_player_add()
28279     *
28280     * @ingroup Video
28281     */
28282    EAPI void elm_video_uri_set(Evas_Object *video, const char *uri);
28283
28284    /**
28285     * @brief Get the underlying Emotion object.
28286     *
28287     * @param video The video object to proceed the request on.
28288     * @return the underlying Emotion object.
28289     *
28290     * @ingroup Video
28291     */
28292    EAPI Evas_Object *elm_video_emotion_get(const Evas_Object *video);
28293
28294    /**
28295     * @brief Start to play the video
28296     *
28297     * @param video The video object to proceed the request on.
28298     *
28299     * Start to play the video and cancel all suspend state.
28300     *
28301     * @ingroup Video
28302     */
28303    EAPI void elm_video_play(Evas_Object *video);
28304
28305    /**
28306     * @brief Pause the video
28307     *
28308     * @param video The video object to proceed the request on.
28309     *
28310     * Pause the video and start a timer to trigger suspend mode.
28311     *
28312     * @ingroup Video
28313     */
28314    EAPI void elm_video_pause(Evas_Object *video);
28315
28316    /**
28317     * @brief Stop the video
28318     *
28319     * @param video The video object to proceed the request on.
28320     *
28321     * Stop the video and put the emotion in deep sleep mode.
28322     *
28323     * @ingroup Video
28324     */
28325    EAPI void elm_video_stop(Evas_Object *video);
28326
28327    /**
28328     * @brief Is the video actually playing.
28329     *
28330     * @param video The video object to proceed the request on.
28331     * @return EINA_TRUE if the video is actually playing.
28332     *
28333     * You should consider watching event on the object instead of polling
28334     * the object state.
28335     *
28336     * @ingroup Video
28337     */
28338    EAPI Eina_Bool elm_video_is_playing(const Evas_Object *video);
28339
28340    /**
28341     * @brief Is it possible to seek inside the video.
28342     *
28343     * @param video The video object to proceed the request on.
28344     * @return EINA_TRUE if is possible to seek inside the video.
28345     *
28346     * @ingroup Video
28347     */
28348    EAPI Eina_Bool elm_video_is_seekable(const Evas_Object *video);
28349
28350    /**
28351     * @brief Is the audio muted.
28352     *
28353     * @param video The video object to proceed the request on.
28354     * @return EINA_TRUE if the audio is muted.
28355     *
28356     * @ingroup Video
28357     */
28358    EAPI Eina_Bool elm_video_audio_mute_get(const Evas_Object *video);
28359
28360    /**
28361     * @brief Change the mute state of the Elm_Video object.
28362     *
28363     * @param video The video object to proceed the request on.
28364     * @param mute The new mute state.
28365     *
28366     * @ingroup Video
28367     */
28368    EAPI void elm_video_audio_mute_set(Evas_Object *video, Eina_Bool mute);
28369
28370    /**
28371     * @brief Get the audio level of the current video.
28372     *
28373     * @param video The video object to proceed the request on.
28374     * @return the current audio level.
28375     *
28376     * @ingroup Video
28377     */
28378    EAPI double elm_video_audio_level_get(const Evas_Object *video);
28379
28380    /**
28381     * @brief Set the audio level of anElm_Video object.
28382     *
28383     * @param video The video object to proceed the request on.
28384     * @param volume The new audio volume.
28385     *
28386     * @ingroup Video
28387     */
28388    EAPI void elm_video_audio_level_set(Evas_Object *video, double volume);
28389
28390    EAPI double elm_video_play_position_get(const Evas_Object *video);
28391    EAPI void elm_video_play_position_set(Evas_Object *video, double position);
28392    EAPI double elm_video_play_length_get(const Evas_Object *video);
28393    EAPI void elm_video_remember_position_set(Evas_Object *video, Eina_Bool remember);
28394    EAPI Eina_Bool elm_video_remember_position_get(const Evas_Object *video);
28395    EAPI const char *elm_video_title_get(const Evas_Object *video);
28396    /**
28397     * @}
28398     */
28399
28400    // FIXME: incomplete - carousel. don't use this until this comment is removed
28401    typedef struct _Elm_Carousel_Item Elm_Carousel_Item;
28402    EAPI Evas_Object       *elm_carousel_add(Evas_Object *parent);
28403    EAPI Elm_Carousel_Item *elm_carousel_item_add(Evas_Object *obj, Evas_Object *icon, const char *label, Evas_Smart_Cb func, const void *data);
28404    EAPI void               elm_carousel_item_del(Elm_Carousel_Item *item);
28405    EAPI void               elm_carousel_item_select(Elm_Carousel_Item *item);
28406    /* smart callbacks called:
28407     * "clicked" - when the user clicks on a carousel item and becomes selected
28408     */
28409
28410    /* datefield */
28411
28412    typedef enum _Elm_Datefield_ItemType
28413      {
28414         ELM_DATEFIELD_YEAR = 0,
28415         ELM_DATEFIELD_MONTH,
28416         ELM_DATEFIELD_DATE,
28417         ELM_DATEFIELD_HOUR,
28418         ELM_DATEFIELD_MINUTE,
28419         ELM_DATEFIELD_AMPM
28420      } Elm_Datefield_ItemType;
28421
28422    EAPI Evas_Object *elm_datefield_add(Evas_Object *parent);
28423    EAPI void         elm_datefield_format_set(Evas_Object *obj, const char *fmt);
28424    EAPI char        *elm_datefield_format_get(const Evas_Object *obj);
28425    EAPI void         elm_datefield_item_enabled_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, Eina_Bool enable);
28426    EAPI Eina_Bool    elm_datefield_item_enabled_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
28427    EAPI void         elm_datefield_item_value_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, int value);
28428    EAPI int          elm_datefield_item_value_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
28429    EAPI void         elm_datefield_item_min_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, int value, Eina_Bool abs_limit);
28430    EAPI int          elm_datefield_item_min_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
28431    EAPI Eina_Bool    elm_datefield_item_min_is_absolute(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
28432    EAPI void         elm_datefield_item_max_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, int value, Eina_Bool abs_limit);
28433    EAPI int          elm_datefield_item_max_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
28434    EAPI Eina_Bool    elm_datefield_item_max_is_absolute(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
28435  
28436    /* smart callbacks called:
28437    * "changed" - when datefield value is changed, this signal is sent.
28438    */
28439
28440 ////////////////////// DEPRECATED ///////////////////////////////////
28441
28442    typedef enum _Elm_Datefield_Layout
28443      {
28444         ELM_DATEFIELD_LAYOUT_TIME,
28445         ELM_DATEFIELD_LAYOUT_DATE,
28446         ELM_DATEFIELD_LAYOUT_DATEANDTIME
28447      } Elm_Datefield_Layout;
28448
28449    EINA_DEPRECATED EAPI void         elm_datefield_layout_set(Evas_Object *obj, Elm_Datefield_Layout layout);
28450    EINA_DEPRECATED EAPI Elm_Datefield_Layout elm_datefield_layout_get(const Evas_Object *obj);
28451    EINA_DEPRECATED EAPI void         elm_datefield_date_format_set(Evas_Object *obj, const char *fmt);
28452    EINA_DEPRECATED EAPI const char  *elm_datefield_date_format_get(const Evas_Object *obj);
28453    EINA_DEPRECATED EAPI void         elm_datefield_time_mode_set(Evas_Object *obj, Eina_Bool mode);
28454    EINA_DEPRECATED EAPI Eina_Bool    elm_datefield_time_mode_get(const Evas_Object *obj);
28455    EINA_DEPRECATED EAPI void         elm_datefield_date_set(Evas_Object *obj, int year, int month, int day, int hour, int min);
28456    EINA_DEPRECATED EAPI void         elm_datefield_date_get(const Evas_Object *obj, int *year, int *month, int *day, int *hour, int *min);
28457    EINA_DEPRECATED EAPI Eina_Bool    elm_datefield_date_max_set(Evas_Object *obj, int year, int month, int day);
28458    EINA_DEPRECATED EAPI void         elm_datefield_date_max_get(const Evas_Object *obj, int *year, int *month, int *day);
28459    EINA_DEPRECATED EAPI Eina_Bool    elm_datefield_date_min_set(Evas_Object *obj, int year, int month, int day);
28460    EINA_DEPRECATED EAPI void         elm_datefield_date_min_get(const Evas_Object *obj, int *year, int *month, int *day);
28461    EINA_DEPRECATED EAPI void         elm_datefield_input_panel_state_callback_add(Evas_Object *obj, void (*pEventCallbackFunc) (void *data, Evas_Object *obj, int value), void *data);
28462    EINA_DEPRECATED EAPI void         elm_datefield_input_panel_state_callback_del(Evas_Object *obj, void (*pEventCallbackFunc) (void *data, Evas_Object *obj, int value));
28463 /////////////////////////////////////////////////////////////////////
28464
28465    /* popup */
28466    typedef enum _Elm_Popup_Response
28467      {
28468         ELM_POPUP_RESPONSE_NONE = -1,
28469         ELM_POPUP_RESPONSE_TIMEOUT = -2,
28470         ELM_POPUP_RESPONSE_OK = -3,
28471         ELM_POPUP_RESPONSE_CANCEL = -4,
28472         ELM_POPUP_RESPONSE_CLOSE = -5
28473      } Elm_Popup_Response;
28474
28475    typedef enum _Elm_Popup_Mode
28476      {
28477         ELM_POPUP_TYPE_NONE = 0,
28478         ELM_POPUP_TYPE_ALERT = (1 << 0)
28479      } Elm_Popup_Mode;
28480
28481    typedef enum _Elm_Popup_Orient
28482      {
28483         ELM_POPUP_ORIENT_TOP,
28484         ELM_POPUP_ORIENT_CENTER,
28485         ELM_POPUP_ORIENT_BOTTOM,
28486         ELM_POPUP_ORIENT_LEFT,
28487         ELM_POPUP_ORIENT_RIGHT,
28488         ELM_POPUP_ORIENT_TOP_LEFT,
28489         ELM_POPUP_ORIENT_TOP_RIGHT,
28490         ELM_POPUP_ORIENT_BOTTOM_LEFT,
28491         ELM_POPUP_ORIENT_BOTTOM_RIGHT
28492      } Elm_Popup_Orient;
28493
28494    /* smart callbacks called:
28495     * "response" - when ever popup is closed, this signal is sent with appropriate response id.".
28496     */
28497
28498    EAPI Evas_Object *elm_popup_add(Evas_Object *parent);
28499    EAPI void         elm_popup_desc_set(Evas_Object *obj, const char *text);
28500    EAPI const char  *elm_popup_desc_get(Evas_Object *obj);
28501    EAPI void         elm_popup_title_label_set(Evas_Object *obj, const char *text);
28502    EAPI const char  *elm_popup_title_label_get(Evas_Object *obj);
28503    EAPI void         elm_popup_title_icon_set(Evas_Object *obj, Evas_Object *icon);
28504    EAPI Evas_Object *elm_popup_title_icon_get(Evas_Object *obj);
28505    EAPI void         elm_popup_content_set(Evas_Object *obj, Evas_Object *content);
28506    EAPI Evas_Object *elm_popup_content_get(Evas_Object *obj);
28507    EAPI void         elm_popup_buttons_add(Evas_Object *obj,int no_of_buttons, const char *first_button_text,  ...);
28508    EAPI Evas_Object *elm_popup_with_buttons_add(Evas_Object *parent, const char *title, const char *desc_text,int no_of_buttons, const char *first_button_text, ... );
28509    EAPI void         elm_popup_timeout_set(Evas_Object *obj, double timeout);
28510    EAPI void         elm_popup_mode_set(Evas_Object *obj, Elm_Popup_Mode mode);
28511    EAPI void         elm_popup_response(Evas_Object *obj, int  response_id);
28512    EAPI void         elm_popup_orient_set(Evas_Object *obj, Elm_Popup_Orient orient);
28513    EAPI int          elm_popup_run(Evas_Object *obj);
28514
28515    /* NavigationBar */
28516    #define NAVIBAR_TITLEOBJ_INSTANT_HIDE "elm,state,hide,noanimate,title", "elm"
28517    #define NAVIBAR_TITLEOBJ_INSTANT_SHOW "elm,state,show,noanimate,title", "elm"
28518
28519    typedef enum
28520      {
28521         ELM_NAVIGATIONBAR_FUNCTION_BUTTON1,
28522         ELM_NAVIGATIONBAR_FUNCTION_BUTTON2,
28523         ELM_NAVIGATIONBAR_FUNCTION_BUTTON3,
28524         ELM_NAVIGATIONBAR_BACK_BUTTON
28525      } Elm_Navi_Button_Type;
28526
28527    EINA_DEPRECATED EAPI Evas_Object *elm_navigationbar_add(Evas_Object *parent);
28528    EINA_DEPRECATED    EAPI void         elm_navigationbar_push(Evas_Object *obj, const char *title, Evas_Object *fn_btn1, Evas_Object *fn_btn2, Evas_Object *fn_btn3, Evas_Object *content);
28529    EINA_DEPRECATED    EAPI void         elm_navigationbar_pop(Evas_Object *obj);
28530    EINA_DEPRECATED    EAPI void         elm_navigationbar_to_content_pop(Evas_Object *obj, Evas_Object *content);
28531    EINA_DEPRECATED    EAPI void         elm_navigationbar_title_label_set(Evas_Object *obj, Evas_Object *content, const char *title);
28532    EINA_DEPRECATED    EAPI const char  *elm_navigationbar_title_label_get(Evas_Object *obj, Evas_Object *content);
28533    EINA_DEPRECATED    EAPI void         elm_navigationbar_title_object_add(Evas_Object *obj, Evas_Object *content, Evas_Object *title_obj);
28534    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_title_object_get(Evas_Object *obj, Evas_Object *content);
28535    EINA_DEPRECATED    EAPI Eina_List   *elm_navigationbar_title_object_list_get(Evas_Object *obj, Evas_Object *content);
28536    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_content_top_get(Evas_Object *obj);
28537    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_content_bottom_get(Evas_Object *obj);
28538    EINA_DEPRECATED    EAPI void         elm_navigationbar_hidden_set(Evas_Object *obj, Eina_Bool hidden);
28539    EINA_DEPRECATED    EAPI void         elm_navigationbar_title_button_set(Evas_Object *obj, Evas_Object *content, Evas_Object *button, Elm_Navi_Button_Type button_type);
28540    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_title_button_get(Evas_Object *obj, Evas_Object *content, Elm_Navi_Button_Type button_type);
28541    EINA_DEPRECATED    EAPI const char  *elm_navigationbar_subtitle_label_get(Evas_Object *obj, Evas_Object *content);
28542    EINA_DEPRECATED    EAPI void         elm_navigationbar_subtitle_label_set(Evas_Object *obj, Evas_Object *content, const char *subtitle);
28543    EINA_DEPRECATED    EAPI void         elm_navigationbar_title_object_list_unset(Evas_Object *obj, Evas_Object *content, Eina_List **list);
28544    EINA_DEPRECATED    EAPI void         elm_navigationbar_animation_disabled_set(Evas_Object *obj, Eina_Bool disable);
28545    EINA_DEPRECATED    EAPI void         elm_navigationbar_title_object_visible_set(Evas_Object *obj, Evas_Object *content, Eina_Bool visible);
28546    EINA_DEPRECATED    Eina_Bool         elm_navigationbar_title_object_visible_get(Evas_Object *obj, Evas_Object *content);
28547    EINA_DEPRECATED    EAPI void         elm_navigationbar_title_icon_set(Evas_Object *obj, Evas_Object *content, Evas_Object *icon);
28548    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_title_icon_get(Evas_Object *obj, Evas_Object *content);
28549
28550    /* NavigationBar */
28551    #define NAVIBAR_EX_TITLEOBJ_INSTANT_HIDE "elm,state,hide,noanimate,title", "elm"
28552    #define NAVIBAR_EX_TITLEOBJ_INSTANT_SHOW "elm,state,show,noanimate,title", "elm"
28553
28554    typedef enum
28555      {
28556         ELM_NAVIGATIONBAR_EX_BACK_BUTTON,
28557         ELM_NAVIGATIONBAR_EX_FUNCTION_BUTTON1,
28558         ELM_NAVIGATIONBAR_EX_FUNCTION_BUTTON2,
28559         ELM_NAVIGATIONBAR_EX_FUNCTION_BUTTON3,
28560         ELM_NAVIGATIONBAR_EX_MAX
28561      } Elm_Navi_ex_Button_Type;
28562    typedef struct _Elm_Navigationbar_ex_Item Elm_Navigationbar_ex_Item;
28563
28564    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_add(Evas_Object *parent);
28565    EINA_DEPRECATED    EAPI Elm_Navigationbar_ex_Item *elm_navigationbar_ex_item_push(Evas_Object *obj, Evas_Object *content, const char *item_style);
28566    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_pop(Evas_Object *obj);
28567    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_promote(Elm_Navigationbar_ex_Item* item);
28568    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_to_item_pop(Elm_Navigationbar_ex_Item* item);
28569    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_title_label_set(Elm_Navigationbar_ex_Item *item, const char *title);
28570    EINA_DEPRECATED    EAPI const char  *elm_navigationbar_ex_item_title_label_get(Elm_Navigationbar_ex_Item* item);
28571    EINA_DEPRECATED    EAPI Elm_Navigationbar_ex_Item *elm_navigationbar_ex_item_top_get(const Evas_Object *obj);
28572    EINA_DEPRECATED    EAPI Elm_Navigationbar_ex_Item *elm_navigationbar_ex_item_bottom_get(const Evas_Object *obj);
28573    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_title_button_set(Elm_Navigationbar_ex_Item* item, char *btn_label, Evas_Object *icon, int button_type, Evas_Smart_Cb func, const void *data);
28574    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_item_title_button_get(Elm_Navigationbar_ex_Item* item, int button_type);
28575    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_title_object_set(Elm_Navigationbar_ex_Item* item, Evas_Object *title_obj);
28576    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_item_title_object_unset(Elm_Navigationbar_ex_Item* item);
28577    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_title_hidden_set(Elm_Navigationbar_ex_Item* item, Eina_Bool hidden);
28578    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_item_title_object_get(Elm_Navigationbar_ex_Item* item);
28579    EINA_DEPRECATED    EAPI const char  *elm_navigationbar_ex_item_subtitle_label_get(Elm_Navigationbar_ex_Item* item);
28580    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_subtitle_label_set( Elm_Navigationbar_ex_Item* item, const char *subtitle);
28581    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_style_set(Elm_Navigationbar_ex_Item* item, const char* item_style);
28582    EINA_DEPRECATED    EAPI const char  *elm_navigationbar_ex_item_style_get(Elm_Navigationbar_ex_Item* item);
28583    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_item_content_unset(Elm_Navigationbar_ex_Item* item);
28584    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_item_content_get(Elm_Navigationbar_ex_Item* item);
28585    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_delete_on_pop_set(Evas_Object *obj, Eina_Bool del_on_pop);
28586    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_item_icon_get(Elm_Navigationbar_ex_Item* item);
28587    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_item_icon_set(Elm_Navigationbar_ex_Item* item, Evas_Object *icon);
28588    EINA_DEPRECATED    EAPI Evas_Object *elm_navigationbar_ex_item_title_button_unset(Elm_Navigationbar_ex_Item* item, int button_type);
28589    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_animation_disable_set(Evas_Object *obj, Eina_Bool disable);
28590    EINA_DEPRECATED    EAPI void         elm_navigationbar_ex_title_object_visible_set(Elm_Navigationbar_ex_Item* item, Eina_Bool visible);
28591    EINA_DEPRECATED    Eina_Bool         elm_navigationbar_ex_title_object_visible_get(Elm_Navigationbar_ex_Item* item);
28592
28593    /**
28594     * @defgroup Naviframe Naviframe
28595     * @ingroup Elementary
28596     *
28597     * @brief Naviframe is a kind of view manager for the applications.
28598     *
28599     * Naviframe provides functions to switch different pages with stack
28600     * mechanism. It means if one page(item) needs to be changed to the new one,
28601     * then naviframe would push the new page to it's internal stack. Of course,
28602     * it can be back to the previous page by popping the top page. Naviframe
28603     * provides some transition effect while the pages are switching (same as
28604     * pager).
28605     *
28606     * Since each item could keep the different styles, users could keep the
28607     * same look & feel for the pages or different styles for the items in it's
28608     * application.
28609     *
28610     * Signals that you can add callback for are:
28611     * @li "transition,finished" - When the transition is finished in changing
28612     *     the item
28613     * @li "title,clicked" - User clicked title area
28614     *
28615     * Default contents parts of the naviframe items that you can use for are:
28616     * @li "elm.swallow.content" - A main content of the page
28617     * @li "elm.swallow.icon" - A icon in the title area
28618     * @li "elm.swallow.prev_btn" - A button to go to the previous page
28619     * @li "elm.swallow.next_btn" - A button to go to the next page
28620     *
28621     * Default text parts of the naviframe items that you can use for are:
28622     * @li "elm.text.title" - Title label in the title area
28623     * @li "elm.text.subtitle" - Sub-title label in the title area
28624     *
28625     * @ref tutorial_naviframe gives a good overview of the usage of the API.
28626     */
28627
28628   //Available commonly
28629   #define ELM_NAVIFRAME_ITEM_CONTENT "elm.swallow.content"
28630   #define ELM_NAVIFRAME_ITEM_ICON "elm.swallow.icon"
28631   #define ELM_NAVIFRAME_ITEM_OPTIONHEADER "elm.swallow.optionheader"
28632   #define ELM_NAVIFRAME_ITEM_TITLE_LABEL "elm.text.title"
28633   #define ELM_NAVIFRAME_ITEM_PREV_BTN "elm.swallow.prev_btn"
28634   #define ELM_NAVIFRAME_ITEM_TITLE_LEFT_BTN "elm.swallow.left_btn"
28635   #define ELM_NAVIFRAME_ITEM_TITLE_RIGHT_BTN "elm.swallow.right_btn"
28636   #define ELM_NAVIFRAME_ITEM_TITLE_MORE_BTN "elm.swallow.more_btn"
28637   #define ELM_NAVIFRAME_ITEM_CONTROLBAR "elm.swallow.controlbar"
28638   #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_CLOSE "elm,state,optionheader,close", ""
28639   #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_OPEN "elm,state,optionheader,open", ""
28640   #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_INSTANT_CLOSE "elm,state,optionheader,instant_close", ""
28641   #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_INSTANT_OPEN "elm,state,optionheader,instant_open", ""
28642
28643    //Available only in a style - "2line"
28644   #define ELM_NAVIFRAME_ITEM_OPTIONHEADER2 "elm.swallow.optionheader2"
28645
28646   //Available only in a style - "segment"
28647   #define ELM_NAVIFRAME_ITEM_SEGMENT2 "elm.swallow.segment2"
28648   #define ELM_NAVIFRAME_ITEM_SEGMENT3 "elm.swallow.segment3"
28649
28650    /**
28651     * @addtogroup Naviframe
28652     * @{
28653     */
28654
28655    /**
28656     * @brief Add a new Naviframe object to the parent.
28657     *
28658     * @param parent Parent object
28659     * @return New object or @c NULL, if it cannot be created
28660     *
28661     * @ingroup Naviframe
28662     */
28663    EAPI Evas_Object        *elm_naviframe_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
28664    /**
28665     * @brief Push a new item to the top of the naviframe stack (and show it).
28666     *
28667     * @param obj The naviframe object
28668     * @param title_label The label in the title area. The name of the title
28669     *        label part is "elm.text.title"
28670     * @param prev_btn The button to go to the previous item. If it is NULL,
28671     *        then naviframe will create a back button automatically. The name of
28672     *        the prev_btn part is "elm.swallow.prev_btn"
28673     * @param next_btn The button to go to the next item. Or It could be just an
28674     *        extra function button. The name of the next_btn part is
28675     *        "elm.swallow.next_btn"
28676     * @param content The main content object. The name of content part is
28677     *        "elm.swallow.content"
28678     * @param item_style The current item style name. @c NULL would be default.
28679     * @return The created item or @c NULL upon failure.
28680     *
28681     * The item pushed becomes one page of the naviframe, this item will be
28682     * deleted when it is popped.
28683     *
28684     * @see also elm_naviframe_item_style_set()
28685     * @see also elm_naviframe_item_insert_before()
28686     * @see also elm_naviframe_item_insert_after()
28687     *
28688     * The following styles are available for this item:
28689     * @li @c "default"
28690     *
28691     * @ingroup Naviframe
28692     */
28693    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);
28694     /**
28695     * @brief Insert a new item into the naviframe before item @p before.
28696     *
28697     * @param before The naviframe item to insert before.
28698     * @param title_label The label in the title area. The name of the title
28699     *        label part is "elm.text.title"
28700     * @param prev_btn The button to go to the previous item. If it is NULL,
28701     *        then naviframe will create a back button automatically. The name of
28702     *        the prev_btn part is "elm.swallow.prev_btn"
28703     * @param next_btn The button to go to the next item. Or It could be just an
28704     *        extra function button. The name of the next_btn part is
28705     *        "elm.swallow.next_btn"
28706     * @param content The main content object. The name of content part is
28707     *        "elm.swallow.content"
28708     * @param item_style The current item style name. @c NULL would be default.
28709     * @return The created item or @c NULL upon failure.
28710     *
28711     * The item is inserted into the naviframe straight away without any
28712     * transition operations. This item will be deleted when it is popped.
28713     *
28714     * @see also elm_naviframe_item_style_set()
28715     * @see also elm_naviframe_item_push()
28716     * @see also elm_naviframe_item_insert_after()
28717     *
28718     * The following styles are available for this item:
28719     * @li @c "default"
28720     *
28721     * @ingroup Naviframe
28722     */
28723    EAPI Elm_Object_Item    *elm_naviframe_item_insert_before(Elm_Object_Item *before, const char *title_label, Evas_Object *prev_btn, Evas_Object *next_btn, Evas_Object *content, const char *item_style) EINA_ARG_NONNULL(1, 5);
28724    /**
28725     * @brief Insert a new item into the naviframe after item @p after.
28726     *
28727     * @param after The naviframe item to insert after.
28728     * @param title_label The label in the title area. The name of the title
28729     *        label part is "elm.text.title"
28730     * @param prev_btn The button to go to the previous item. If it is NULL,
28731     *        then naviframe will create a back button automatically. The name of
28732     *        the prev_btn part is "elm.swallow.prev_btn"
28733     * @param next_btn The button to go to the next item. Or It could be just an
28734     *        extra function button. The name of the next_btn part is
28735     *        "elm.swallow.next_btn"
28736     * @param content The main content object. The name of content part is
28737     *        "elm.swallow.content"
28738     * @param item_style The current item style name. @c NULL would be default.
28739     * @return The created item or @c NULL upon failure.
28740     *
28741     * The item is inserted into the naviframe straight away without any
28742     * transition operations. This item will be deleted when it is popped.
28743     *
28744     * @see also elm_naviframe_item_style_set()
28745     * @see also elm_naviframe_item_push()
28746     * @see also elm_naviframe_item_insert_before()
28747     *
28748     * The following styles are available for this item:
28749     * @li @c "default"
28750     *
28751     * @ingroup Naviframe
28752     */
28753    EAPI Elm_Object_Item    *elm_naviframe_item_insert_after(Elm_Object_Item *after, const char *title_label, Evas_Object *prev_btn, Evas_Object *next_btn, Evas_Object *content, const char *item_style) EINA_ARG_NONNULL(1, 5);
28754    /**
28755     * @brief Pop an item that is on top of the stack
28756     *
28757     * @param obj The naviframe object
28758     * @return @c NULL or the content object(if the
28759     *         elm_naviframe_content_preserve_on_pop_get is true).
28760     *
28761     * This pops an item that is on the top(visible) of the naviframe, makes it
28762     * disappear, then deletes the item. The item that was underneath it on the
28763     * stack will become visible.
28764     *
28765     * @see also elm_naviframe_content_preserve_on_pop_get()
28766     *
28767     * @ingroup Naviframe
28768     */
28769    EAPI Evas_Object        *elm_naviframe_item_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
28770    /**
28771     * @brief Pop the items between the top and the above one on the given item.
28772     *
28773     * @param it The naviframe item
28774     *
28775     * @ingroup Naviframe
28776     */
28777    EAPI void                elm_naviframe_item_pop_to(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28778    /**
28779    * Promote an item already in the naviframe stack to the top of the stack
28780    *
28781    * @param it The naviframe item
28782    *
28783    * This will take the indicated item and promote it to the top of the stack
28784    * as if it had been pushed there. The item must already be inside the
28785    * naviframe stack to work.
28786    *
28787    */
28788    EAPI void                elm_naviframe_item_promote(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28789    /**
28790     * @brief Delete the given item instantly.
28791     *
28792     * @param it The naviframe item
28793     *
28794     * This just deletes the given item from the naviframe item list instantly.
28795     * So this would not emit any signals for view transitions but just change
28796     * the current view if the given item is a top one.
28797     *
28798     * @ingroup Naviframe
28799     */
28800    EAPI void                elm_naviframe_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28801    /**
28802     * @brief preserve the content objects when items are popped.
28803     *
28804     * @param obj The naviframe object
28805     * @param preserve Enable the preserve mode if EINA_TRUE, disable otherwise
28806     *
28807     * @see also elm_naviframe_content_preserve_on_pop_get()
28808     *
28809     * @ingroup Naviframe
28810     */
28811    EAPI void                elm_naviframe_content_preserve_on_pop_set(Evas_Object *obj, Eina_Bool preserve) EINA_ARG_NONNULL(1);
28812    /**
28813     * @brief Get a value whether preserve mode is enabled or not.
28814     *
28815     * @param obj The naviframe object
28816     * @return If @c EINA_TRUE, preserve mode is enabled
28817     *
28818     * @see also elm_naviframe_content_preserve_on_pop_set()
28819     *
28820     * @ingroup Naviframe
28821     */
28822    EAPI Eina_Bool           elm_naviframe_content_preserve_on_pop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28823    /**
28824     * @brief Get a top item on the naviframe stack
28825     *
28826     * @param obj The naviframe object
28827     * @return The top item on the naviframe stack or @c NULL, if the stack is
28828     *         empty
28829     *
28830     * @ingroup Naviframe
28831     */
28832    EAPI Elm_Object_Item    *elm_naviframe_top_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28833    /**
28834     * @brief Get a bottom item on the naviframe stack
28835     *
28836     * @param obj The naviframe object
28837     * @return The bottom item on the naviframe stack or @c NULL, if the stack is
28838     *         empty
28839     *
28840     * @ingroup Naviframe
28841     */
28842    EAPI Elm_Object_Item    *elm_naviframe_bottom_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28843    /**
28844     * @brief Set an item style
28845     *
28846     * @param obj The naviframe item
28847     * @param item_style The current item style name. @c NULL would be default
28848     *
28849     * The following styles are available for this item:
28850     * @li @c "default"
28851     *
28852     * @see also elm_naviframe_item_style_get()
28853     *
28854     * @ingroup Naviframe
28855     */
28856    EAPI void                elm_naviframe_item_style_set(Elm_Object_Item *it, const char *item_style) EINA_ARG_NONNULL(1);
28857    /**
28858     * @brief Get an item style
28859     *
28860     * @param obj The naviframe item
28861     * @return The current item style name
28862     *
28863     * @see also elm_naviframe_item_style_set()
28864     *
28865     * @ingroup Naviframe
28866     */
28867    EAPI const char         *elm_naviframe_item_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28868    /**
28869     * @brief Show/Hide the title area
28870     *
28871     * @param it The naviframe item
28872     * @param visible If @c EINA_TRUE, title area will be visible, hidden
28873     *        otherwise
28874     *
28875     * When the title area is invisible, then the controls would be hidden so as     * to expand the content area to full-size.
28876     *
28877     * @see also elm_naviframe_item_title_visible_get()
28878     *
28879     * @ingroup Naviframe
28880     */
28881    EAPI void                elm_naviframe_item_title_visible_set(Elm_Object_Item *it, Eina_Bool visible) EINA_ARG_NONNULL(1);
28882    /**
28883     * @brief Get a value whether title area is visible or not.
28884     *
28885     * @param it The naviframe item
28886     * @return If @c EINA_TRUE, title area is visible
28887     *
28888     * @see also elm_naviframe_item_title_visible_set()
28889     *
28890     * @ingroup Naviframe
28891     */
28892    EAPI Eina_Bool           elm_naviframe_item_title_visible_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28893
28894    /**
28895     * @brief Set creating prev button automatically or not
28896     *
28897     * @param obj The naviframe object
28898     * @param auto_pushed If @c EINA_TRUE, the previous button(back button) will
28899     *        be created internally when you pass the @c NULL to the prev_btn
28900     *        parameter in elm_naviframe_item_push
28901     *
28902     * @see also elm_naviframe_item_push()
28903     */
28904    EAPI void                elm_naviframe_prev_btn_auto_pushed_set(Evas_Object *obj, Eina_Bool auto_pushed) EINA_ARG_NONNULL(1);
28905    /**
28906     * @brief Get a value whether prev button(back button) will be auto pushed or
28907     *        not.
28908     *
28909     * @param obj The naviframe object
28910     * @return If @c EINA_TRUE, prev button will be auto pushed.
28911     *
28912     * @see also elm_naviframe_item_push()
28913     *           elm_naviframe_prev_btn_auto_pushed_set()
28914     */
28915    EAPI Eina_Bool           elm_naviframe_prev_btn_auto_pushed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28916    /**
28917     * @brief Get a list of all the naviframe items.
28918     *
28919     * @param obj The naviframe object
28920     * @return An Eina_Inlist* of naviframe items, #Elm_Object_Item,
28921     * or @c NULL on failure.
28922     */
28923    EAPI Eina_Inlist        *elm_naviframe_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28924
28925    /**
28926     * @}
28927     */
28928
28929    /* Control Bar */
28930    #define CONTROLBAR_SYSTEM_ICON_ALBUMS "controlbar_albums"
28931    #define CONTROLBAR_SYSTEM_ICON_ARTISTS "controlbar_artists"
28932    #define CONTROLBAR_SYSTEM_ICON_SONGS "controlbar_songs"
28933    #define CONTROLBAR_SYSTEM_ICON_PLAYLIST "controlbar_playlist"
28934    #define CONTROLBAR_SYSTEM_ICON_MORE "controlbar_more"
28935    #define CONTROLBAR_SYSTEM_ICON_CONTACTS "controlbar_contacts"
28936    #define CONTROLBAR_SYSTEM_ICON_DIALER "controlbar_dialer"
28937    #define CONTROLBAR_SYSTEM_ICON_FAVORITES "controlbar_favorites"
28938    #define CONTROLBAR_SYSTEM_ICON_LOGS "controlbar_logs"
28939
28940    typedef enum _Elm_Controlbar_Mode_Type
28941      {
28942         ELM_CONTROLBAR_MODE_DEFAULT = 0,
28943         ELM_CONTROLBAR_MODE_TRANSLUCENCE,
28944         ELM_CONTROLBAR_MODE_TRANSPARENCY,
28945         ELM_CONTROLBAR_MODE_LARGE,
28946         ELM_CONTROLBAR_MODE_SMALL,
28947         ELM_CONTROLBAR_MODE_LEFT,
28948         ELM_CONTROLBAR_MODE_RIGHT
28949      } Elm_Controlbar_Mode_Type;
28950
28951    typedef struct _Elm_Controlbar_Item Elm_Controlbar_Item;
28952    EAPI Evas_Object *elm_controlbar_add(Evas_Object *parent);
28953    EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_append(Evas_Object *obj, const char *icon_path, const char *label, Evas_Object *view);
28954    EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_prepend(Evas_Object *obj, const char *icon_path, const char *label, Evas_Object *view);
28955    EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_insert_before(Evas_Object *obj, Elm_Controlbar_Item *before, const char *icon_path, const char *label, Evas_Object *view);
28956    EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_insert_after(Evas_Object *obj, Elm_Controlbar_Item *after, const char *icon_path, const char *label, Evas_Object *view);
28957    EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_append(Evas_Object *obj, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
28958    EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_prepend(Evas_Object *obj, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
28959    EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_insert_before(Evas_Object *obj, Elm_Controlbar_Item *before, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
28960    EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_insert_after(Evas_Object *obj, Elm_Controlbar_Item *after, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
28961    EAPI Elm_Controlbar_Item *elm_controlbar_object_item_append(Evas_Object *obj, Evas_Object *obj_item, const int sel);
28962    EAPI Elm_Controlbar_Item *elm_controlbar_object_item_prepend(Evas_Object *obj, Evas_Object *obj_item, const int sel);
28963    EAPI Elm_Controlbar_Item *elm_controlbar_object_item_insert_before(Evas_Object *obj, Elm_Controlbar_Item *before, Evas_Object *obj_item, const int sel);
28964    EAPI Elm_Controlbar_Item *elm_controlbar_object_item_insert_after(Evas_Object *obj, Elm_Controlbar_Item *after, Evas_Object *obj_item, const int sel);
28965    EAPI Evas_Object *elm_controlbar_object_item_object_get(const Elm_Controlbar_Item *it);
28966    EAPI void         elm_controlbar_item_del(Elm_Controlbar_Item *it);
28967    EAPI void         elm_controlbar_item_select(Elm_Controlbar_Item *it);
28968    EAPI void         elm_controlbar_item_visible_set(Elm_Controlbar_Item *it, Eina_Bool bar);
28969    EAPI Eina_Bool    elm_controlbar_item_visible_get(const Elm_Controlbar_Item * it);
28970    EAPI void         elm_controlbar_item_disabled_set(Elm_Controlbar_Item * it, Eina_Bool disabled);
28971    EAPI Eina_Bool    elm_controlbar_item_disabled_get(const Elm_Controlbar_Item * it);
28972    EAPI void         elm_controlbar_item_icon_set(Elm_Controlbar_Item *it, const char *icon_path);
28973    EAPI Evas_Object *elm_controlbar_item_icon_get(const Elm_Controlbar_Item *it);
28974    EAPI void         elm_controlbar_item_label_set(Elm_Controlbar_Item *it, const char *label);
28975    EAPI const char  *elm_controlbar_item_label_get(const Elm_Controlbar_Item *it);
28976    EAPI Elm_Controlbar_Item *elm_controlbar_selected_item_get(const Evas_Object *obj);
28977    EAPI Elm_Controlbar_Item *elm_controlbar_first_item_get(const Evas_Object *obj);
28978    EAPI Elm_Controlbar_Item *elm_controlbar_last_item_get(const Evas_Object *obj);
28979    EAPI const Eina_List   *elm_controlbar_items_get(const Evas_Object *obj);
28980    EAPI Elm_Controlbar_Item *elm_controlbar_item_prev(Elm_Controlbar_Item *it);
28981    EAPI Elm_Controlbar_Item *elm_controlbar_item_next(Elm_Controlbar_Item *it);
28982    EAPI void         elm_controlbar_item_view_set(Elm_Controlbar_Item *it, Evas_Object * view);
28983    EAPI Evas_Object *elm_controlbar_item_view_get(const Elm_Controlbar_Item *it);
28984    EAPI Evas_Object *elm_controlbar_item_view_unset(Elm_Controlbar_Item *it);
28985    EAPI Evas_Object *elm_controlbar_item_button_get(const Elm_Controlbar_Item *it);
28986    EAPI void         elm_controlbar_mode_set(Evas_Object *obj, int mode);
28987    EAPI void         elm_controlbar_alpha_set(Evas_Object *obj, int alpha);
28988    EAPI void         elm_controlbar_item_auto_align_set(Evas_Object *obj, Eina_Bool auto_align);
28989    EAPI void         elm_controlbar_vertical_set(Evas_Object *obj, Eina_Bool vertical);
28990
28991    /* SearchBar */
28992    EAPI Evas_Object *elm_searchbar_add(Evas_Object *parent);
28993    EAPI void         elm_searchbar_text_set(Evas_Object *obj, const char *entry);
28994    EAPI const char  *elm_searchbar_text_get(Evas_Object *obj);
28995    EAPI Evas_Object *elm_searchbar_entry_get(Evas_Object *obj);
28996    EAPI Evas_Object *elm_searchbar_editfield_get(Evas_Object *obj);
28997    EAPI void         elm_searchbar_cancel_button_animation_set(Evas_Object *obj, Eina_Bool cancel_btn_ani_flag);
28998    EAPI void         elm_searchbar_cancel_button_set(Evas_Object *obj, Eina_Bool visible);
28999    EAPI void         elm_searchbar_clear(Evas_Object *obj);
29000    EAPI void         elm_searchbar_boundary_rect_set(Evas_Object *obj, Eina_Bool boundary);
29001
29002    EAPI Evas_Object *elm_page_control_add(Evas_Object *parent);
29003    EAPI void         elm_page_control_page_count_set(Evas_Object *obj, unsigned int page_count);
29004    EAPI void         elm_page_control_page_id_set(Evas_Object *obj, unsigned int page_id);
29005    EAPI unsigned int elm_page_control_page_id_get(Evas_Object *obj);
29006
29007    /* NoContents */
29008    EAPI Evas_Object *elm_nocontents_add(Evas_Object *parent);
29009    EAPI void         elm_nocontents_label_set(Evas_Object *obj, const char *label);
29010    EAPI const char  *elm_nocontents_label_get(const Evas_Object *obj);
29011    EAPI void         elm_nocontents_custom_set(const Evas_Object *obj, Evas_Object *custom);
29012    EAPI Evas_Object *elm_nocontents_custom_get(const Evas_Object *obj);
29013
29014    /* TickerNoti */
29015    typedef enum
29016      {
29017         ELM_TICKERNOTI_ORIENT_TOP = 0,
29018         ELM_TICKERNOTI_ORIENT_BOTTOM,
29019         ELM_TICKERNOTI_ORIENT_LAST
29020      }  Elm_Tickernoti_Orient;
29021
29022    EAPI Evas_Object              *elm_tickernoti_add (Evas_Object *parent);
29023    EAPI void                      elm_tickernoti_orient_set (Evas_Object *obj, Elm_Tickernoti_Orient orient) EINA_ARG_NONNULL(1);
29024    EAPI Elm_Tickernoti_Orient     elm_tickernoti_orient_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29025    EAPI int                       elm_tickernoti_rotation_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29026    EAPI void                      elm_tickernoti_rotation_set (Evas_Object *obj, int angle) EINA_ARG_NONNULL(1);
29027    EAPI Evas_Object              *elm_tickernoti_win_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29028    /* #### Below APIs and data structures are going to be deprecated, announcment will be made soon ####*/
29029    typedef enum
29030     {
29031        ELM_TICKERNOTI_DEFAULT,
29032        ELM_TICKERNOTI_DETAILVIEW
29033     } Elm_Tickernoti_Mode;
29034    EAPI void                      elm_tickernoti_detailview_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
29035    EAPI const char               *elm_tickernoti_detailview_label_get (const Evas_Object *obj)EINA_ARG_NONNULL(1);
29036    EAPI void                      elm_tickernoti_detailview_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(2);
29037    EAPI Evas_Object              *elm_tickernoti_detailview_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29038    EAPI void                      elm_tickernoti_detailview_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
29039    EAPI Evas_Object              *elm_tickernoti_detailview_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29040    EAPI Evas_Object              *elm_tickernoti_detailview_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29041    EAPI void                      elm_tickernoti_mode_set (Evas_Object *obj, Elm_Tickernoti_Mode mode) EINA_ARG_NONNULL(1);
29042    EAPI Elm_Tickernoti_Mode       elm_tickernoti_mode_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29043    EAPI void                      elm_tickernoti_orientation_set (Evas_Object *obj, Elm_Tickernoti_Orient orient) EINA_ARG_NONNULL(1);
29044    EAPI Elm_Tickernoti_Orient     elm_tickernoti_orientation_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29045    EAPI void                      elm_tickernoti_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
29046    EAPI const char               *elm_tickernoti_label_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29047    EAPI void                      elm_tickernoti_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
29048    EAPI Evas_Object              *elm_tickernoti_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29049    EAPI void                      elm_tickernoti_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(1);
29050    EAPI Evas_Object              *elm_tickernoti_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
29051    /* ############################################################################### */
29052    /*
29053     * Parts which can be used with elm_object_text_part_set() and
29054     * elm_object_text_part_get():
29055     *
29056     * @li NULL/"default" - Operates on tickernoti content-text
29057     *
29058     * Parts which can be used with elm_object_content_part_set(),
29059     * elm_object_content_part_get() and elm_object_content_part_unset():
29060     *
29061     * @li "icon" - Operates on tickernoti's icon
29062     * @li "button" - Operates on tickernoti's button
29063     *
29064     * smart callbacks called:
29065     * @li "clicked" - emitted when tickernoti is clicked, except at the
29066     * swallow/button region, if any.
29067     * @li "hide" - emitted when the tickernoti is completely hidden. In case of
29068     * any hide animation, this signal is emitted after the animation.
29069     */
29070
29071    /* colorpalette */
29072    typedef struct _Colorpalette_Color Elm_Colorpalette_Color;
29073
29074    struct _Colorpalette_Color
29075      {
29076         unsigned int r, g, b;
29077      };
29078
29079    EAPI Evas_Object *elm_colorpalette_add(Evas_Object *parent);
29080    EAPI void         elm_colorpalette_color_set(Evas_Object *obj, int color_num, Elm_Colorpalette_Color *color);
29081    EAPI void         elm_colorpalette_row_column_set(Evas_Object *obj, int row, int col);
29082    /* smart callbacks called:
29083     * "clicked" - when image clicked
29084     */
29085
29086    /* editfield */
29087    EAPI Evas_Object *elm_editfield_add(Evas_Object *parent);
29088    EAPI void         elm_editfield_label_set(Evas_Object *obj, const char *label);
29089    EAPI const char  *elm_editfield_label_get(Evas_Object *obj);
29090    EAPI void         elm_editfield_guide_text_set(Evas_Object *obj, const char *text);
29091    EAPI const char  *elm_editfield_guide_text_get(Evas_Object *obj);
29092    EAPI Evas_Object *elm_editfield_entry_get(Evas_Object *obj);
29093 //   EAPI Evas_Object *elm_editfield_clear_button_show(Evas_Object *obj, Eina_Bool show);
29094    EAPI void         elm_editfield_right_icon_set(Evas_Object *obj, Evas_Object *icon);
29095    EAPI Evas_Object *elm_editfield_right_icon_get(Evas_Object *obj);
29096    EAPI void         elm_editfield_left_icon_set(Evas_Object *obj, Evas_Object *icon);
29097    EAPI Evas_Object *elm_editfield_left_icon_get(Evas_Object *obj);
29098    EAPI void         elm_editfield_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line);
29099    EAPI Eina_Bool    elm_editfield_entry_single_line_get(Evas_Object *obj);
29100    EAPI void         elm_editfield_eraser_set(Evas_Object *obj, Eina_Bool visible);
29101    EAPI Eina_Bool    elm_editfield_eraser_get(Evas_Object *obj);
29102    /* smart callbacks called:
29103     * "clicked" - when an editfield is clicked
29104     * "unfocused" - when an editfield is unfocused
29105     */
29106
29107
29108    /* Sliding Drawer */
29109    typedef enum _Elm_SlidingDrawer_Pos
29110      {
29111         ELM_SLIDINGDRAWER_BOTTOM,
29112         ELM_SLIDINGDRAWER_LEFT,
29113         ELM_SLIDINGDRAWER_RIGHT,
29114         ELM_SLIDINGDRAWER_TOP
29115      } Elm_SlidingDrawer_Pos;
29116
29117    typedef struct _Elm_SlidingDrawer_Drag_Value
29118      {
29119         double x, y;
29120      } Elm_SlidingDrawer_Drag_Value;
29121
29122    EINA_DEPRECATED EAPI Evas_Object *elm_slidingdrawer_add(Evas_Object *parent);
29123    EINA_DEPRECATED EAPI void         elm_slidingdrawer_content_set (Evas_Object *obj, Evas_Object *content);
29124    EINA_DEPRECATED EAPI Evas_Object *elm_slidingdrawer_content_unset(Evas_Object *obj);
29125    EINA_DEPRECATED EAPI void         elm_slidingdrawer_pos_set(Evas_Object *obj, Elm_SlidingDrawer_Pos pos);
29126    EINA_DEPRECATED EAPI void         elm_slidingdrawer_max_drag_value_set(Evas_Object *obj, double dw,  double dh);
29127    EINA_DEPRECATED EAPI void         elm_slidingdrawer_drag_value_set(Evas_Object *obj, double dx, double dy);
29128
29129    /* multibuttonentry */
29130    typedef struct _Multibuttonentry_Item Elm_Multibuttonentry_Item;
29131    typedef Eina_Bool (*Elm_Multibuttonentry_Item_Verify_Callback) (Evas_Object *obj, const char *item_label, void *item_data, void *data);
29132    EAPI Evas_Object               *elm_multibuttonentry_add(Evas_Object *parent);
29133    EAPI const char                *elm_multibuttonentry_label_get(Evas_Object *obj);
29134    EAPI void                       elm_multibuttonentry_label_set(Evas_Object *obj, const char *label);
29135    EAPI Evas_Object               *elm_multibuttonentry_entry_get(Evas_Object *obj);
29136    EAPI const char *               elm_multibuttonentry_guide_text_get(Evas_Object *obj);
29137    EAPI void                       elm_multibuttonentry_guide_text_set(Evas_Object *obj, const char *guidetext);
29138    EAPI int                        elm_multibuttonentry_contracted_state_get(Evas_Object *obj);
29139    EAPI void                       elm_multibuttonentry_contracted_state_set(Evas_Object *obj, int contracted);
29140    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_start(Evas_Object *obj, const char *label, void *data);
29141    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_end(Evas_Object *obj, const char *label, void *data);
29142    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_before(Evas_Object *obj, const char *label, Elm_Multibuttonentry_Item *before, void *data);
29143    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_after(Evas_Object *obj, const char *label, Elm_Multibuttonentry_Item *after, void *data);
29144    EAPI const Eina_List           *elm_multibuttonentry_items_get(Evas_Object *obj);
29145    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_first_get(Evas_Object *obj);
29146    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_last_get(Evas_Object *obj);
29147    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_selected_get(Evas_Object *obj);
29148    EAPI void                       elm_multibuttonentry_item_selected_set(Elm_Multibuttonentry_Item *item);
29149    EAPI void                       elm_multibuttonentry_item_unselect_all(Evas_Object *obj);
29150    EAPI void                       elm_multibuttonentry_item_del(Elm_Multibuttonentry_Item *item);
29151    EAPI void                       elm_multibuttonentry_items_del(Evas_Object *obj);
29152    EAPI const char                *elm_multibuttonentry_item_label_get(Elm_Multibuttonentry_Item *item);
29153    EAPI void                       elm_multibuttonentry_item_label_set(Elm_Multibuttonentry_Item *item, const char *str);
29154    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_prev(Elm_Multibuttonentry_Item *item);
29155    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_next(Elm_Multibuttonentry_Item *item);
29156    EAPI void                      *elm_multibuttonentry_item_data_get(Elm_Multibuttonentry_Item *item);
29157    EAPI void                       elm_multibuttonentry_item_data_set(Elm_Multibuttonentry_Item *item, void *data);
29158    EAPI void                       elm_multibuttonentry_item_verify_callback_set(Evas_Object *obj, Elm_Multibuttonentry_Item_Verify_Callback func, void *data);
29159    /* smart callback called:
29160     * "selected" - This signal is emitted when the selected item of multibuttonentry is changed.
29161     * "added" - This signal is emitted when a new multibuttonentry item is added.
29162     * "deleted" - This signal is emitted when a multibuttonentry item is deleted.
29163     * "expanded" - This signal is emitted when a multibuttonentry is expanded.
29164     * "contracted" - This signal is emitted when a multibuttonentry is contracted.
29165     * "contracted,state,changed" - This signal is emitted when the contracted state of multibuttonentry is changed.
29166     * "item,selected" - This signal is emitted when the selected item of multibuttonentry is changed.
29167     * "item,added" - This signal is emitted when a new multibuttonentry item is added.
29168     * "item,deleted" - This signal is emitted when a multibuttonentry item is deleted.
29169     * "item,clicked" - This signal is emitted when a multibuttonentry item is clicked.
29170     * "clicked" - This signal is emitted when a multibuttonentry is clicked.
29171     * "unfocused" - This signal is emitted when a multibuttonentry is unfocused.
29172     */
29173    /* available styles:
29174     * default
29175     */
29176
29177    /* stackedicon */
29178    typedef struct _Stackedicon_Item Elm_Stackedicon_Item;
29179    EAPI Evas_Object          *elm_stackedicon_add(Evas_Object *parent);
29180    EAPI Elm_Stackedicon_Item *elm_stackedicon_item_append(Evas_Object *obj, const char *path);
29181    EAPI Elm_Stackedicon_Item *elm_stackedicon_item_prepend(Evas_Object *obj, const char *path);
29182    EAPI void                  elm_stackedicon_item_del(Elm_Stackedicon_Item *it);
29183    EAPI Eina_List            *elm_stackedicon_item_list_get(Evas_Object *obj);
29184    /* smart callback called:
29185     * "expanded" - This signal is emitted when a stackedicon is expanded.
29186     * "clicked" - This signal is emitted when a stackedicon is clicked.
29187     */
29188    /* available styles:
29189     * default
29190     */
29191
29192    /* dialoguegroup */
29193    typedef struct _Dialogue_Item Dialogue_Item;
29194
29195    typedef enum _Elm_Dialoguegourp_Item_Style
29196      {
29197         ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT = 0,
29198         ELM_DIALOGUEGROUP_ITEM_STYLE_EDITFIELD = (1 << 0),
29199         ELM_DIALOGUEGROUP_ITEM_STYLE_EDITFIELD_WITH_TITLE = (1 << 1),
29200         ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT_TITLE = (1 << 2),
29201         ELM_DIALOGUEGROUP_ITEM_STYLE_HIDDEN = (1 << 3),
29202         ELM_DIALOGUEGROUP_ITEM_STYLE_DATAVIEW = (1 << 4),
29203         ELM_DIALOGUEGROUP_ITEM_STYLE_NO_BG = (1 << 5),
29204         ELM_DIALOGUEGROUP_ITEM_STYLE_SUB = (1 << 6),
29205         ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT = (1 << 7),
29206         ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT_MERGE = (1 << 8),
29207         ELM_DIALOGUEGROUP_ITEM_STYLE_LAST = (1 << 9)
29208      } Elm_Dialoguegroup_Item_Style;
29209
29210    EINA_DEPRECATED EAPI Evas_Object   *elm_dialoguegroup_add(Evas_Object *parent);
29211    EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_append(Evas_Object *obj, Evas_Object *subobj, Elm_Dialoguegroup_Item_Style style);
29212    EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_prepend(Evas_Object *obj, Evas_Object *subobj, Elm_Dialoguegroup_Item_Style style);
29213    EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_insert_after(Evas_Object *obj, Evas_Object *subobj, Dialogue_Item *after, Elm_Dialoguegroup_Item_Style style);
29214    EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_insert_before(Evas_Object *obj, Evas_Object *subobj, Dialogue_Item *before, Elm_Dialoguegroup_Item_Style style);
29215    EINA_DEPRECATED EAPI void           elm_dialoguegroup_remove(Dialogue_Item *item);
29216    EINA_DEPRECATED EAPI void           elm_dialoguegroup_remove_all(Evas_Object *obj);
29217    EINA_DEPRECATED EAPI void           elm_dialoguegroup_title_set(Evas_Object *obj, const char *title);
29218    EINA_DEPRECATED EAPI const char    *elm_dialoguegroup_title_get(Evas_Object *obj);
29219    EINA_DEPRECATED EAPI void           elm_dialoguegroup_press_effect_set(Dialogue_Item *item, Eina_Bool press);
29220    EINA_DEPRECATED EAPI Eina_Bool      elm_dialoguegroup_press_effect_get(Dialogue_Item *item);
29221    EINA_DEPRECATED EAPI Evas_Object   *elm_dialoguegroup_item_content_get(Dialogue_Item *item);
29222    EINA_DEPRECATED EAPI void           elm_dialoguegroup_item_style_set(Dialogue_Item *item, Elm_Dialoguegroup_Item_Style style);
29223    EINA_DEPRECATED EAPI Elm_Dialoguegroup_Item_Style    elm_dialoguegroup_item_style_get(Dialogue_Item *item);
29224    EINA_DEPRECATED EAPI void           elm_dialoguegroup_item_disabled_set(Dialogue_Item *item, Eina_Bool disabled);
29225    EINA_DEPRECATED EAPI Eina_Bool      elm_dialoguegroup_item_disabled_get(Dialogue_Item *item);
29226
29227    /* Dayselector */
29228    typedef enum
29229      {
29230         ELM_DAYSELECTOR_SUN,
29231         ELM_DAYSELECTOR_MON,
29232         ELM_DAYSELECTOR_TUE,
29233         ELM_DAYSELECTOR_WED,
29234         ELM_DAYSELECTOR_THU,
29235         ELM_DAYSELECTOR_FRI,
29236         ELM_DAYSELECTOR_SAT
29237      } Elm_DaySelector_Day;
29238
29239    EAPI Evas_Object *elm_dayselector_add(Evas_Object *parent);
29240    EAPI Eina_Bool    elm_dayselector_check_state_get(Evas_Object *obj, Elm_DaySelector_Day day);
29241    EAPI void         elm_dayselector_check_state_set(Evas_Object *obj, Elm_DaySelector_Day day, Eina_Bool checked);
29242
29243    /* Image Slider */
29244    typedef struct _Imageslider_Item Elm_Imageslider_Item;
29245    typedef void (*Elm_Imageslider_Cb)(void *data, Evas_Object *obj, void *event_info);
29246    EAPI Evas_Object           *elm_imageslider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
29247    EAPI Elm_Imageslider_Item  *elm_imageslider_item_append(Evas_Object *obj, const char *photo_file, Elm_Imageslider_Cb func, void *data) EINA_ARG_NONNULL(1);
29248    EAPI Elm_Imageslider_Item  *elm_imageslider_item_append_relative(Evas_Object *obj, const char *photo_file, Elm_Imageslider_Cb func, unsigned int index, void *data) EINA_ARG_NONNULL(1);
29249    EAPI Elm_Imageslider_Item  *elm_imageslider_item_prepend(Evas_Object *obj, const char *photo_file, Elm_Imageslider_Cb func, void *data) EINA_ARG_NONNULL(1);
29250    EAPI void                   elm_imageslider_item_del(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
29251    EAPI Elm_Imageslider_Item  *elm_imageslider_selected_item_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
29252    EAPI Eina_Bool              elm_imageslider_item_selected_get(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
29253    EAPI void                   elm_imageslider_item_selected_set(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
29254    EAPI const char            *elm_imageslider_item_photo_file_get(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
29255    EAPI Elm_Imageslider_Item  *elm_imageslider_item_prev(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
29256    EAPI Elm_Imageslider_Item  *elm_imageslider_item_next(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
29257    EAPI void                   elm_imageslider_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
29258    EAPI void                   elm_imageslider_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
29259    EAPI void                   elm_imageslider_item_photo_file_set(Elm_Imageslider_Item *it, const char *photo_file) EINA_ARG_NONNULL(1,2);
29260    EAPI void                   elm_imageslider_item_update(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
29261 #ifdef __cplusplus
29262 }
29263 #endif
29264
29265 #endif