elm genlist/gengrid: Removed 'label_get' backport now not later.
[framework/uifw/elementary.git] / src / lib / Elementary.h.in
1 /*
2  *
3  * vim:ts=8:sw=3:sts=3:expandtab:cino=>5n-3f0^-2{2(0W1st0
4  */
5
6 /**
7 @file Elementary.h.in
8 @brief Elementary Widget Library
9 */
10
11 /**
12 @mainpage Elementary
13 @image html  elementary.png
14 @version 0.8.0
15 @date 2008-2011
16
17 @section intro What is Elementary?
18
19 This is a VERY SIMPLE toolkit. It is not meant for writing extensive desktop
20 applications (yet). Small simple ones with simple needs.
21
22 It is meant to make the programmers work almost brainless but give them lots
23 of flexibility.
24
25 @li @ref Start - Go here to quickly get started with writing Apps
26
27 @section organization Organization
28
29 One can divide Elemementary into three main groups:
30 @li @ref infralist - These are modules that deal with Elementary as a whole.
31 @li @ref widgetslist - These are the widgets you'll compose your UI out of.
32 @li @ref containerslist - These are the containers which hold the widgets.
33
34 @section license License
35
36 LGPL v2 (see COPYING in the base of Elementary's source). This applies to
37 all files in the source tree.
38
39 @section ack Acknowledgements
40 There is a lot that goes into making a widget set, and they don't happen out of
41 nothing. It's like trying to make everyone everywhere happy, regardless of age,
42 gender, race or nationality - and that is really tough. So thanks to people and
43 organisations behind this, as listed in the @ref authors page.
44 */
45
46
47 /**
48  * @defgroup Start Getting Started
49  *
50  * To write an Elementary app, you can get started with the following:
51  *
52 @code
53 #include <Elementary.h>
54 EAPI_MAIN int
55 elm_main(int argc, char **argv)
56 {
57    // create window(s) here and do any application init
58    elm_run(); // run main loop
59    elm_shutdown(); // after mainloop finishes running, shutdown
60    return 0; // exit 0 for exit code
61 }
62 ELM_MAIN()
63 @endcode
64  *
65  * To use autotools (which helps in many ways in the long run, like being able
66  * to immediately create releases of your software directly from your tree
67  * and ensure everything needed to build it is there) you will need a
68  * configure.ac, Makefile.am and autogen.sh file.
69  *
70  * configure.ac:
71  *
72 @verbatim
73 AC_INIT(myapp, 0.0.0, myname@mydomain.com)
74 AC_PREREQ(2.52)
75 AC_CONFIG_SRCDIR(configure.ac)
76 AM_CONFIG_HEADER(config.h)
77 AC_PROG_CC
78 AM_INIT_AUTOMAKE(1.6 dist-bzip2)
79 PKG_CHECK_MODULES([ELEMENTARY], elementary)
80 AC_OUTPUT(Makefile)
81 @endverbatim
82  *
83  * Makefile.am:
84  *
85 @verbatim
86 AUTOMAKE_OPTIONS = 1.4 foreign
87 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in configure depcomp install-sh missing
88
89 INCLUDES = -I$(top_srcdir)
90
91 bin_PROGRAMS = myapp
92
93 myapp_SOURCES = main.c
94 myapp_LDADD = @ELEMENTARY_LIBS@
95 myapp_CFLAGS = @ELEMENTARY_CFLAGS@
96 @endverbatim
97  *
98  * autogen.sh:
99  *
100 @verbatim
101 #!/bin/sh
102 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
103 echo "Running autoheader..." ; autoheader || exit 1
104 echo "Running autoconf..." ; autoconf || exit 1
105 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
106 ./configure "$@"
107 @endverbatim
108  *
109  * To generate all the things needed to bootstrap just run:
110  *
111 @verbatim
112 ./autogen.sh
113 @endverbatim
114  *
115  * This will generate Makefile.in's, the confgure script and everything else.
116  * After this it works like all normal autotools projects:
117 @verbatim
118 ./configure
119 make
120 sudo make install
121 @endverbatim
122  *
123  * Note sudo was assumed to get root permissions, as this would install in
124  * /usr/local which is system-owned. Use any way you like to gain root, or
125  * specify a different prefix with configure:
126  *
127 @verbatim
128 ./confiugre --prefix=$HOME/mysoftware
129 @endverbatim
130  *
131  * Also remember that autotools buys you some useful commands like:
132 @verbatim
133 make uninstall
134 @endverbatim
135  *
136  * This uninstalls the software after it was installed with "make install".
137  * It is very useful to clear up what you built if you wish to clean the
138  * system.
139  *
140 @verbatim
141 make distcheck
142 @endverbatim
143  *
144  * This firstly checks if your build tree is "clean" and ready for
145  * distribution. It also builds a tarball (myapp-0.0.0.tar.gz) that is
146  * ready to upload and distribute to the world, that contains the generated
147  * Makefile.in's and configure script. The users do not need to run
148  * autogen.sh - just configure and on. They don't need autotools installed.
149  * This tarball also builds cleanly, has all the sources it needs to build
150  * included (that is sources for your application, not libraries it depends
151  * on like Elementary). It builds cleanly in a buildroot and does not
152  * contain any files that are temporarily generated like binaries and other
153  * build-generated files, so the tarball is clean, and no need to worry
154  * about cleaning up your tree before packaging.
155  *
156 @verbatim
157 make clean
158 @endverbatim
159  *
160  * This cleans up all build files (binaries, objects etc.) from the tree.
161  *
162 @verbatim
163 make distclean
164 @endverbatim
165  *
166  * This cleans out all files from the build and from configure's output too.
167  *
168 @verbatim
169 make maintainer-clean
170 @endverbatim
171  *
172  * This deletes all the files autogen.sh will produce so the tree is clean
173  * to be put into a revision-control system (like CVS, SVN or GIT for example).
174  *
175  * There is a more advanced way of making use of the quicklaunch infrastructure
176  * in Elementary (which will not be covered here due to its more advanced
177  * nature).
178  *
179  * Now let's actually create an interactive "Hello World" gui that you can
180  * click the ok button to exit. It's more code because this now does something
181  * much more significant, but it's still very simple:
182  *
183 @code
184 #include <Elementary.h>
185
186 static void
187 on_done(void *data, Evas_Object *obj, void *event_info)
188 {
189    // quit the mainloop (elm_run function will return)
190    elm_exit();
191 }
192
193 EAPI_MAIN int
194 elm_main(int argc, char **argv)
195 {
196    Evas_Object *win, *bg, *box, *lab, *btn;
197
198    // new window - do the usual and give it a name (hello) and title (Hello)
199    win = elm_win_util_standard_add("hello", "Hello");
200    // when the user clicks "close" on a window there is a request to delete
201    evas_object_smart_callback_add(win, "delete,request", on_done, NULL);
202
203    // add a box object - default is vertical. a box holds children in a row,
204    // either horizontally or vertically. nothing more.
205    box = elm_box_add(win);
206    // make the box hotizontal
207    elm_box_horizontal_set(box, EINA_TRUE);
208    // add object as a resize object for the window (controls window minimum
209    // size as well as gets resized if window is resized)
210    elm_win_resize_object_add(win, box);
211    evas_object_show(box);
212
213    // add a label widget, set the text and put it in the pad frame
214    lab = elm_label_add(win);
215    // set default text of the label
216    elm_object_text_set(lab, "Hello out there world!");
217    // pack the label at the end of the box
218    elm_box_pack_end(box, lab);
219    evas_object_show(lab);
220
221    // add an ok button
222    btn = elm_button_add(win);
223    // set default text of button to "OK"
224    elm_object_text_set(btn, "OK");
225    // pack the button at the end of the box
226    elm_box_pack_end(box, btn);
227    evas_object_show(btn);
228    // call on_done when button is clicked
229    evas_object_smart_callback_add(btn, "clicked", on_done, NULL);
230
231    // now we are done, show the window
232    evas_object_show(win);
233
234    // run the mainloop and process events and callbacks
235    elm_run();
236    return 0;
237 }
238 ELM_MAIN()
239 @endcode
240    *
241    */
242
243 /**
244 @page authors Authors
245 @author Carsten Haitzler <raster@@rasterman.com>
246 @author Gustavo Sverzut Barbieri <barbieri@@profusion.mobi>
247 @author Cedric Bail <cedric.bail@@free.fr>
248 @author Vincent Torri <vtorri@@univ-evry.fr>
249 @author Daniel Kolesa <quaker66@@gmail.com>
250 @author Jaime Thomas <avi.thomas@@gmail.com>
251 @author Swisscom - http://www.swisscom.ch/
252 @author Christopher Michael <devilhorns@@comcast.net>
253 @author Marco Trevisan (TreviƱo) <mail@@3v1n0.net>
254 @author Michael Bouchaud <michael.bouchaud@@gmail.com>
255 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
256 @author Brian Wang <brian.wang.0721@@gmail.com>
257 @author Mike Blumenkrantz (discomfitor/zmike) <michael.blumenkrantz@@gmail.com>
258 @author Samsung Electronics <tbd>
259 @author Samsung SAIT <tbd>
260 @author Brett Nash <nash@@nash.id.au>
261 @author Bruno Dilly <bdilly@@profusion.mobi>
262 @author Rafael Fonseca <rfonseca@@profusion.mobi>
263 @author Chuneon Park <hermet@@hermet.pe.kr>
264 @author Woohyun Jung <wh0705.jung@@samsung.com>
265 @author Jaehwan Kim <jae.hwan.kim@@samsung.com>
266 @author Wonguk Jeong <wonguk.jeong@@samsung.com>
267 @author Leandro A. F. Pereira <leandro@@profusion.mobi>
268 @author Helen Fornazier <helen.fornazier@@profusion.mobi>
269 @author Gustavo Lima Chaves <glima@@profusion.mobi>
270 @author Fabiano FidĆŖncio <fidencio@@profusion.mobi>
271 @author Tiago FalcĆ£o <tiago@@profusion.mobi>
272 @author Otavio Pontes <otavio@@profusion.mobi>
273 @author Viktor Kojouharov <vkojouharov@@gmail.com>
274 @author Daniel Juyung Seo (SeoZ) <juyung.seo@@samsung.com> <seojuyung2@@gmail.com>
275 @author Sangho Park <sangho.g.park@@samsung.com> <gouache95@@gmail.com>
276 @author Rajeev Ranjan (Rajeev) <rajeev.r@@samsung.com> <rajeev.jnnce@@gmail.com>
277 @author Seunggyun Kim <sgyun.kim@@samsung.com> <tmdrbs@@gmail.com>
278 @author Sohyun Kim <anna1014.kim@@samsung.com> <sohyun.anna@@gmail.com>
279 @author Jihoon Kim <jihoon48.kim@@samsung.com>
280 @author Jeonghyun Yun (arosis) <jh0506.yun@@samsung.com>
281 @author Tom Hacohen <tom@@stosb.com>
282 @author Aharon Hillel <a.hillel@@partner.samsung.com>
283 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
284 @author Shinwoo Kim <kimcinoo@@gmail.com>
285 @author Govindaraju SM <govi.sm@@samsung.com> <govism@@gmail.com>
286 @author Prince Kumar Dubey <prince.dubey@@samsung.com> <prince.dubey@@gmail.com>
287 @author Sung W. Park <sungwoo@@gmail.com>
288 @author Thierry el Borgi <thierry@@substantiel.fr>
289 @author Shilpa Singh <shilpa.singh@@samsung.com> <shilpasingh.o@@gmail.com>
290 @author Chanwook Jung <joey.jung@@samsung.com>
291 @author Hyoyoung Chang <hyoyoung.chang@@samsung.com>
292 @author Guillaume "Kuri" Friloux <guillaume.friloux@@asp64.com>
293 @author Kim Yunhan <spbear@@gmail.com>
294 @author Bluezery <ohpowel@@gmail.com>
295 @author Nicolas Aguirre <aguirre.nicolas@@gmail.com>
296 @author Sanjeev BA <iamsanjeev@@gmail.com>
297
298 Please contact <enlightenment-devel@lists.sourceforge.net> to get in
299 contact with the developers and maintainers.
300  */
301
302 #ifndef ELEMENTARY_H
303 #define ELEMENTARY_H
304
305 /**
306  * @file Elementary.h
307  * @brief Elementary's API
308  *
309  * Elementary API.
310  */
311
312 @ELM_UNIX_DEF@ ELM_UNIX
313 @ELM_WIN32_DEF@ ELM_WIN32
314 @ELM_WINCE_DEF@ ELM_WINCE
315 @ELM_EDBUS_DEF@ ELM_EDBUS
316 @ELM_EFREET_DEF@ ELM_EFREET
317 @ELM_ETHUMB_DEF@ ELM_ETHUMB
318 @ELM_WEB_DEF@ ELM_WEB
319 @ELM_EMAP_DEF@ ELM_EMAP
320 @ELM_DEBUG_DEF@ ELM_DEBUG
321 @ELM_ALLOCA_H_DEF@ ELM_ALLOCA_H
322 @ELM_LIBINTL_H_DEF@ ELM_LIBINTL_H
323 @ELM_DIRENT_H_DEF@ ELM_DIRENT_H
324
325 /* Standard headers for standard system calls etc. */
326 #include <stdio.h>
327 #include <stdlib.h>
328 #include <unistd.h>
329 #include <string.h>
330 #include <sys/types.h>
331 #include <sys/stat.h>
332 #include <sys/time.h>
333 #include <sys/param.h>
334 #include <math.h>
335 #include <fnmatch.h>
336 #include <limits.h>
337 #include <ctype.h>
338 #include <time.h>
339 #ifdef ELM_DIRENT_H
340 # include <dirent.h>
341 #endif
342 #include <pwd.h>
343 #include <errno.h>
344
345 #ifdef ELM_UNIX
346 # include <locale.h>
347 # ifdef ELM_LIBINTL_H
348 #  include <libintl.h>
349 # endif
350 # include <signal.h>
351 # include <grp.h>
352 # include <glob.h>
353 #endif
354
355 #ifdef ELM_ALLOCA_H
356 # include <alloca.h>
357 #endif
358
359 #if defined (ELM_WIN32) || defined (ELM_WINCE)
360 # include <malloc.h>
361 # ifndef alloca
362 #  define alloca _alloca
363 # endif
364 #endif
365
366
367 /* EFL headers */
368 #include <Eina.h>
369 #include <Eet.h>
370 #include <Evas.h>
371 // disabled - evas 1.1 won't have this.
372 //#include <Evas_GL.h>
373 #include <Ecore.h>
374 #include <Ecore_Evas.h>
375 #include <Ecore_File.h>
376 @ELEMENTARY_ECORE_IMF_INC@
377 @ELEMENTARY_ECORE_CON_INC@
378 #include <Edje.h>
379
380 #ifdef ELM_EDBUS
381 # include <E_DBus.h>
382 #endif
383
384 #ifdef ELM_EFREET
385 # include <Efreet.h>
386 # include <Efreet_Mime.h>
387 # include <Efreet_Trash.h>
388 #endif
389
390 #ifdef ELM_ETHUMB
391 # include <Ethumb_Client.h>
392 #endif
393
394 #ifdef ELM_EMAP
395 # include <EMap.h>
396 #endif
397
398 #ifdef EAPI
399 # undef EAPI
400 #endif
401
402 #ifdef _WIN32
403 # ifdef ELEMENTARY_BUILD
404 #  ifdef DLL_EXPORT
405 #   define EAPI __declspec(dllexport)
406 #  else
407 #   define EAPI
408 #  endif /* ! DLL_EXPORT */
409 # else
410 #  define EAPI __declspec(dllimport)
411 # endif /* ! EFL_EVAS_BUILD */
412 #else
413 # ifdef __GNUC__
414 #  if __GNUC__ >= 4
415 #   define EAPI __attribute__ ((visibility("default")))
416 #  else
417 #   define EAPI
418 #  endif
419 # else
420 #  define EAPI
421 # endif
422 #endif /* ! _WIN32 */
423
424 #ifdef _WIN32
425 # define EAPI_MAIN
426 #else
427 # define EAPI_MAIN EAPI
428 #endif
429
430 /* allow usage from c++ */
431 #ifdef __cplusplus
432 extern "C" {
433 #endif
434
435 #define ELM_VERSION_MAJOR @VMAJ@
436 #define ELM_VERSION_MINOR @VMIN@
437
438    typedef struct _Elm_Version
439      {
440         int major;
441         int minor;
442         int micro;
443         int revision;
444      } Elm_Version;
445
446    EAPI extern Elm_Version *elm_version;
447
448 /* handy macros */
449 #define ELM_RECTS_INTERSECT(x, y, w, h, xx, yy, ww, hh) (((x) < ((xx) + (ww))) && ((y) < ((yy) + (hh))) && (((x) + (w)) > (xx)) && (((y) + (h)) > (yy)))
450 #define ELM_PI 3.14159265358979323846
451
452    /**
453     * @defgroup General General
454     *
455     * @brief General Elementary API. Functions that don't relate to
456     * Elementary objects specifically.
457     *
458     * Here are documented functions which init/shutdown the library,
459     * that apply to generic Elementary objects, that deal with
460     * configuration, et cetera.
461     *
462     * @ref general_functions_example_page "This" example contemplates
463     * some of these functions.
464     */
465
466    /**
467     * @addtogroup General
468     * @{
469     */
470
471   /**
472    * Defines couple of standard Evas_Object layers to be used
473    * with evas_object_layer_set().
474    *
475    * @note whenever extending with new values, try to keep some padding
476    *       to siblings so there is room for further extensions.
477    */
478   typedef enum _Elm_Object_Layer
479     {
480        ELM_OBJECT_LAYER_BACKGROUND = EVAS_LAYER_MIN + 64, /**< where to place backgrounds */
481        ELM_OBJECT_LAYER_DEFAULT = 0, /**< Evas_Object default layer (and thus for Elementary) */
482        ELM_OBJECT_LAYER_FOCUS = EVAS_LAYER_MAX - 128, /**< where focus object visualization is */
483        ELM_OBJECT_LAYER_TOOLTIP = EVAS_LAYER_MAX - 64, /**< where to show tooltips */
484        ELM_OBJECT_LAYER_CURSOR = EVAS_LAYER_MAX - 32, /**< where to show cursors */
485        ELM_OBJECT_LAYER_LAST /**< last layer known by Elementary */
486     } Elm_Object_Layer;
487
488 /**************************************************************************/
489    EAPI extern int ELM_ECORE_EVENT_ETHUMB_CONNECT;
490
491    /**
492     * Emitted when the application has reconfigured elementary settings due
493     * to an external configuration tool asking it to.
494     */
495    EAPI extern int ELM_EVENT_CONFIG_ALL_CHANGED;
496
497    /**
498     * Emitted when any Elementary's policy value is changed.
499     */
500    EAPI extern int ELM_EVENT_POLICY_CHANGED;
501
502    /**
503     * @typedef Elm_Event_Policy_Changed
504     *
505     * Data on the event when an Elementary policy has changed
506     */
507     typedef struct _Elm_Event_Policy_Changed Elm_Event_Policy_Changed;
508
509    /**
510     * @struct _Elm_Event_Policy_Changed
511     *
512     * Data on the event when an Elementary policy has changed
513     */
514     struct _Elm_Event_Policy_Changed
515      {
516         unsigned int policy; /**< the policy identifier */
517         int          new_value; /**< value the policy had before the change */
518         int          old_value; /**< new value the policy got */
519     };
520
521    /**
522     * Policy identifiers.
523     */
524     typedef enum _Elm_Policy
525     {
526         ELM_POLICY_QUIT, /**< under which circumstances the application
527                           * should quit automatically. @see
528                           * Elm_Policy_Quit.
529                           */
530         ELM_POLICY_LAST
531     } Elm_Policy; /**< Elementary policy identifiers/groups enumeration.  @see elm_policy_set()
532  */
533
534    typedef enum _Elm_Policy_Quit
535      {
536         ELM_POLICY_QUIT_NONE = 0, /**< never quit the application
537                                    * automatically */
538         ELM_POLICY_QUIT_LAST_WINDOW_CLOSED /**< quit when the
539                                             * application's last
540                                             * window is closed */
541      } Elm_Policy_Quit; /**< Possible values for the #ELM_POLICY_QUIT policy */
542
543    typedef enum _Elm_Focus_Direction
544      {
545         ELM_FOCUS_PREVIOUS,
546         ELM_FOCUS_NEXT
547      } Elm_Focus_Direction;
548
549    typedef enum _Elm_Text_Format
550      {
551         ELM_TEXT_FORMAT_PLAIN_UTF8,
552         ELM_TEXT_FORMAT_MARKUP_UTF8
553      } Elm_Text_Format;
554
555    /**
556     * Line wrapping types.
557     */
558    typedef enum _Elm_Wrap_Type
559      {
560         ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
561         ELM_WRAP_CHAR, /**< Char wrap - wrap between characters */
562         ELM_WRAP_WORD, /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
563         ELM_WRAP_MIXED, /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
564         ELM_WRAP_LAST
565      } Elm_Wrap_Type;
566
567    typedef enum
568      {
569         ELM_INPUT_PANEL_LAYOUT_NORMAL,          /**< Default layout */
570         ELM_INPUT_PANEL_LAYOUT_NUMBER,          /**< Number layout */
571         ELM_INPUT_PANEL_LAYOUT_EMAIL,           /**< Email layout */
572         ELM_INPUT_PANEL_LAYOUT_URL,             /**< URL layout */
573         ELM_INPUT_PANEL_LAYOUT_PHONENUMBER,     /**< Phone Number layout */
574         ELM_INPUT_PANEL_LAYOUT_IP,              /**< IP layout */
575         ELM_INPUT_PANEL_LAYOUT_MONTH,           /**< Month layout */
576         ELM_INPUT_PANEL_LAYOUT_NUMBERONLY,      /**< Number Only layout */
577         ELM_INPUT_PANEL_LAYOUT_INVALID
578      } Elm_Input_Panel_Layout;
579
580    typedef enum
581      {
582         ELM_AUTOCAPITAL_TYPE_NONE,
583         ELM_AUTOCAPITAL_TYPE_WORD,
584         ELM_AUTOCAPITAL_TYPE_SENTENCE,
585         ELM_AUTOCAPITAL_TYPE_ALLCHARACTER,
586      } Elm_Autocapital_Type;
587
588    /**
589     * @typedef Elm_Object_Item
590     * An Elementary Object item handle.
591     * @ingroup General
592     */
593    typedef struct _Elm_Object_Item Elm_Object_Item;
594
595
596    /**
597     * Called back when a widget's tooltip is activated and needs content.
598     * @param data user-data given to elm_object_tooltip_content_cb_set()
599     * @param obj owner widget.
600     * @param tooltip The tooltip object (affix content to this!)
601     */
602    typedef Evas_Object *(*Elm_Tooltip_Content_Cb) (void *data, Evas_Object *obj, Evas_Object *tooltip);
603
604    /**
605     * Called back when a widget's item tooltip is activated and needs content.
606     * @param data user-data given to elm_object_tooltip_content_cb_set()
607     * @param obj owner widget.
608     * @param tooltip The tooltip object (affix content to this!)
609     * @param item context dependent item. As an example, if tooltip was
610     *        set on Elm_List_Item, then it is of this type.
611     */
612    typedef Evas_Object *(*Elm_Tooltip_Item_Content_Cb) (void *data, Evas_Object *obj, Evas_Object *tooltip, void *item);
613
614    typedef Eina_Bool (*Elm_Event_Cb) (void *data, Evas_Object *obj, Evas_Object *src, Evas_Callback_Type type, void *event_info); /**< Function prototype definition for callbacks on input events happening on Elementary widgets. @a data will receive the user data pointer passed to elm_object_event_callback_add(). @a src will be a pointer to the widget on which the input event took place. @a type will get the type of this event and @a event_info, the struct with details on this event. */
615
616 #ifndef ELM_LIB_QUICKLAUNCH
617 #define ELM_MAIN() int main(int argc, char **argv) {elm_init(argc, argv); return elm_main(argc, argv);} /**< macro to be used after the elm_main() function */
618 #else
619 #define ELM_MAIN() int main(int argc, char **argv) {return elm_quicklaunch_fallback(argc, argv);} /**< macro to be used after the elm_main() function */
620 #endif
621
622 /**************************************************************************/
623    /* General calls */
624
625    /**
626     * Initialize Elementary
627     *
628     * @param[in] argc System's argument count value
629     * @param[in] argv System's pointer to array of argument strings
630     * @return The init counter value.
631     *
632     * This function initializes Elementary and increments a counter of
633     * the number of calls to it. It returns the new counter's value.
634     *
635     * @warning This call is exported only for use by the @c ELM_MAIN()
636     * macro. There is no need to use this if you use this macro (which
637     * is highly advisable). An elm_main() should contain the entry
638     * point code for your application, having the same prototype as
639     * elm_init(), and @b not being static (putting the @c EAPI symbol
640     * in front of its type declaration is advisable). The @c
641     * ELM_MAIN() call should be placed just after it.
642     *
643     * Example:
644     * @dontinclude bg_example_01.c
645     * @skip static void
646     * @until ELM_MAIN
647     *
648     * See the full @ref bg_example_01_c "example".
649     *
650     * @see elm_shutdown().
651     * @ingroup General
652     */
653    EAPI int          elm_init(int argc, char **argv);
654
655    /**
656     * Shut down Elementary
657     *
658     * @return The init counter value.
659     *
660     * This should be called at the end of your application, just
661     * before it ceases to do any more processing. This will clean up
662     * any permanent resources your application may have allocated via
663     * Elementary that would otherwise persist.
664     *
665     * @see elm_init() for an example
666     *
667     * @ingroup General
668     */
669    EAPI int          elm_shutdown(void);
670
671    /**
672     * Run Elementary's main loop
673     *
674     * This call should be issued just after all initialization is
675     * completed. This function will not return until elm_exit() is
676     * called. It will keep looping, running the main
677     * (event/processing) loop for Elementary.
678     *
679     * @see elm_init() for an example
680     *
681     * @ingroup General
682     */
683    EAPI void         elm_run(void);
684
685    /**
686     * Exit Elementary's main loop
687     *
688     * If this call is issued, it will flag the main loop to cease
689     * processing and return back to its parent function (usually your
690     * elm_main() function).
691     *
692     * @see elm_init() for an example. There, just after a request to
693     * close the window comes, the main loop will be left.
694     *
695     * @note By using the appropriate #ELM_POLICY_QUIT on your Elementary
696     * applications, you'll be able to get this function called automatically for you.
697     *
698     * @ingroup General
699     */
700    EAPI void         elm_exit(void);
701
702    /**
703     * Provide information in order to make Elementary determine the @b
704     * run time location of the software in question, so other data files
705     * such as images, sound files, executable utilities, libraries,
706     * modules and locale files can be found.
707     *
708     * @param mainfunc This is your application's main function name,
709     *        whose binary's location is to be found. Providing @c NULL
710     *        will make Elementary not to use it
711     * @param dom This will be used as the application's "domain", in the
712     *        form of a prefix to any environment variables that may
713     *        override prefix detection and the directory name, inside the
714     *        standard share or data directories, where the software's
715     *        data files will be looked for.
716     * @param checkfile This is an (optional) magic file's path to check
717     *        for existence (and it must be located in the data directory,
718     *        under the share directory provided above). Its presence will
719     *        help determine the prefix found was correct. Pass @c NULL if
720     *        the check is not to be done.
721     *
722     * This function allows one to re-locate the application somewhere
723     * else after compilation, if the developer wishes for easier
724     * distribution of pre-compiled binaries.
725     *
726     * The prefix system is designed to locate where the given software is
727     * installed (under a common path prefix) at run time and then report
728     * specific locations of this prefix and common directories inside
729     * this prefix like the binary, library, data and locale directories,
730     * through the @c elm_app_*_get() family of functions.
731     *
732     * Call elm_app_info_set() early on before you change working
733     * directory or anything about @c argv[0], so it gets accurate
734     * information.
735     *
736     * It will then try and trace back which file @p mainfunc comes from,
737     * if provided, to determine the application's prefix directory.
738     *
739     * The @p dom parameter provides a string prefix to prepend before
740     * environment variables, allowing a fallback to @b specific
741     * environment variables to locate the software. You would most
742     * probably provide a lowercase string there, because it will also
743     * serve as directory domain, explained next. For environment
744     * variables purposes, this string is made uppercase. For example if
745     * @c "myapp" is provided as the prefix, then the program would expect
746     * @c "MYAPP_PREFIX" as a master environment variable to specify the
747     * exact install prefix for the software, or more specific environment
748     * variables like @c "MYAPP_BIN_DIR", @c "MYAPP_LIB_DIR", @c
749     * "MYAPP_DATA_DIR" and @c "MYAPP_LOCALE_DIR", which could be set by
750     * the user or scripts before launching. If not provided (@c NULL),
751     * environment variables will not be used to override compiled-in
752     * defaults or auto detections.
753     *
754     * The @p dom string also provides a subdirectory inside the system
755     * shared data directory for data files. For example, if the system
756     * directory is @c /usr/local/share, then this directory name is
757     * appended, creating @c /usr/local/share/myapp, if it @p was @c
758     * "myapp". It is expected that the application installs data files in
759     * this directory.
760     *
761     * The @p checkfile is a file name or path of something inside the
762     * share or data directory to be used to test that the prefix
763     * detection worked. For example, your app will install a wallpaper
764     * image as @c /usr/local/share/myapp/images/wallpaper.jpg and so to
765     * check that this worked, provide @c "images/wallpaper.jpg" as the @p
766     * checkfile string.
767     *
768     * @see elm_app_compile_bin_dir_set()
769     * @see elm_app_compile_lib_dir_set()
770     * @see elm_app_compile_data_dir_set()
771     * @see elm_app_compile_locale_set()
772     * @see elm_app_prefix_dir_get()
773     * @see elm_app_bin_dir_get()
774     * @see elm_app_lib_dir_get()
775     * @see elm_app_data_dir_get()
776     * @see elm_app_locale_dir_get()
777     */
778    EAPI void         elm_app_info_set(void *mainfunc, const char *dom, const char *checkfile);
779
780    /**
781     * Provide information on the @b fallback application's binaries
782     * directory, in scenarios where they get overriden by
783     * elm_app_info_set().
784     *
785     * @param dir The path to the default binaries directory (compile time
786     * one)
787     *
788     * @note Elementary will as well use this path to determine actual
789     * names of binaries' directory paths, maybe changing it to be @c
790     * something/local/bin instead of @c something/bin, only, for
791     * example.
792     *
793     * @warning You should call this function @b before
794     * elm_app_info_set().
795     */
796    EAPI void         elm_app_compile_bin_dir_set(const char *dir);
797
798    /**
799     * Provide information on the @b fallback application's libraries
800     * directory, on scenarios where they get overriden by
801     * elm_app_info_set().
802     *
803     * @param dir The path to the default libraries directory (compile
804     * time one)
805     *
806     * @note Elementary will as well use this path to determine actual
807     * names of libraries' directory paths, maybe changing it to be @c
808     * something/lib32 or @c something/lib64 instead of @c something/lib,
809     * only, for example.
810     *
811     * @warning You should call this function @b before
812     * elm_app_info_set().
813     */
814    EAPI void         elm_app_compile_lib_dir_set(const char *dir);
815
816    /**
817     * Provide information on the @b fallback application's data
818     * directory, on scenarios where they get overriden by
819     * elm_app_info_set().
820     *
821     * @param dir The path to the default data directory (compile time
822     * one)
823     *
824     * @note Elementary will as well use this path to determine actual
825     * names of data directory paths, maybe changing it to be @c
826     * something/local/share instead of @c something/share, only, for
827     * example.
828     *
829     * @warning You should call this function @b before
830     * elm_app_info_set().
831     */
832    EAPI void         elm_app_compile_data_dir_set(const char *dir);
833
834    /**
835     * Provide information on the @b fallback application's locale
836     * directory, on scenarios where they get overriden by
837     * elm_app_info_set().
838     *
839     * @param dir The path to the default locale directory (compile time
840     * one)
841     *
842     * @warning You should call this function @b before
843     * elm_app_info_set().
844     */
845    EAPI void         elm_app_compile_locale_set(const char *dir);
846
847    /**
848     * Retrieve the application's run time prefix directory, as set by
849     * elm_app_info_set() and the way (environment) the application was
850     * run from.
851     *
852     * @return The directory prefix the application is actually using.
853     */
854    EAPI const char  *elm_app_prefix_dir_get(void);
855
856    /**
857     * Retrieve the application's run time binaries prefix directory, as
858     * set by elm_app_info_set() and the way (environment) the application
859     * was run from.
860     *
861     * @return The binaries directory prefix the application is actually
862     * using.
863     */
864    EAPI const char  *elm_app_bin_dir_get(void);
865
866    /**
867     * Retrieve the application's run time libraries prefix directory, as
868     * set by elm_app_info_set() and the way (environment) the application
869     * was run from.
870     *
871     * @return The libraries directory prefix the application is actually
872     * using.
873     */
874    EAPI const char  *elm_app_lib_dir_get(void);
875
876    /**
877     * Retrieve the application's run time data prefix directory, as
878     * set by elm_app_info_set() and the way (environment) the application
879     * was run from.
880     *
881     * @return The data directory prefix the application is actually
882     * using.
883     */
884    EAPI const char  *elm_app_data_dir_get(void);
885
886    /**
887     * Retrieve the application's run time locale prefix directory, as
888     * set by elm_app_info_set() and the way (environment) the application
889     * was run from.
890     *
891     * @return The locale directory prefix the application is actually
892     * using.
893     */
894    EAPI const char  *elm_app_locale_dir_get(void);
895
896    /**
897     * Exposed symbol used only by macros and should not be used by apps
898     */
899    EAPI void         elm_quicklaunch_mode_set(Eina_Bool ql_on);
900    
901    /**
902     * Exposed symbol used only by macros and should not be used by apps
903     */
904    EAPI Eina_Bool    elm_quicklaunch_mode_get(void);
905    
906    /**
907     * Exposed symbol used only by macros and should not be used by apps
908     */
909    EAPI int          elm_quicklaunch_init(int argc, char **argv);
910    
911    /**
912     * Exposed symbol used only by macros and should not be used by apps
913     */
914    EAPI int          elm_quicklaunch_sub_init(int argc, char **argv);
915    
916    /**
917     * Exposed symbol used only by macros and should not be used by apps
918     */
919    EAPI int          elm_quicklaunch_sub_shutdown(void);
920    
921    /**
922     * Exposed symbol used only by macros and should not be used by apps
923     */
924    EAPI int          elm_quicklaunch_shutdown(void);
925    
926    /**
927     * Exposed symbol used only by macros and should not be used by apps
928     */
929    EAPI void         elm_quicklaunch_seed(void);
930    
931    /**
932     * Exposed symbol used only by macros and should not be used by apps
933     */
934    EAPI Eina_Bool    elm_quicklaunch_prepare(int argc, char **argv);
935    
936    /**
937     * Exposed symbol used only by macros and should not be used by apps
938     */
939    EAPI Eina_Bool    elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (postfork_func) (void *data), void *postfork_data);
940    
941    /**
942     * Exposed symbol used only by macros and should not be used by apps
943     */
944    EAPI void         elm_quicklaunch_cleanup(void);
945    
946    /**
947     * Exposed symbol used only by macros and should not be used by apps
948     */
949    EAPI int          elm_quicklaunch_fallback(int argc, char **argv);
950    
951    /**
952     * Exposed symbol used only by macros and should not be used by apps
953     */
954    EAPI char        *elm_quicklaunch_exe_path_get(const char *exe);
955
956    /**
957     * Request that your elementary application needs efreet
958     * 
959     * This initializes the Efreet library when called and if support exists
960     * it returns EINA_TRUE, otherwise returns EINA_FALSE. This must be called
961     * before any efreet calls.
962     * 
963     * @return EINA_TRUE if support exists and initialization succeeded.
964     * 
965     * @ingroup Efreet
966     */
967    EAPI Eina_Bool    elm_need_efreet(void);
968    
969    /**
970     * Request that your elementary application needs e_dbus
971     * 
972     * This initializes the E_dbus library when called and if support exists
973     * it returns EINA_TRUE, otherwise returns EINA_FALSE. This must be called
974     * before any e_dbus calls.
975     * 
976     * @return EINA_TRUE if support exists and initialization succeeded.
977     * 
978     * @ingroup E_dbus
979     */
980    EAPI Eina_Bool    elm_need_e_dbus(void);
981
982    /**
983     * Request that your elementary application needs ethumb
984     * 
985     * This initializes the Ethumb library when called and if support exists
986     * it returns EINA_TRUE, otherwise returns EINA_FALSE.
987     * This must be called before any other function that deals with
988     * elm_thumb objects or ethumb_client instances.
989     *
990     * @ingroup Thumb
991     */
992    EAPI Eina_Bool    elm_need_ethumb(void);
993
994    /**
995     * Request that your elementary application needs web support
996     * 
997     * This initializes the Ewebkit library when called and if support exists
998     * it returns EINA_TRUE, otherwise returns EINA_FALSE.
999     * This must be called before any other function that deals with
1000     * elm_web objects or ewk_view instances.
1001     *
1002     * @ingroup Web
1003     */
1004    EAPI Eina_Bool    elm_need_web(void);
1005
1006    /**
1007     * Set a new policy's value (for a given policy group/identifier).
1008     *
1009     * @param policy policy identifier, as in @ref Elm_Policy.
1010     * @param value policy value, which depends on the identifier
1011     *
1012     * @return @c EINA_TRUE on success or @c EINA_FALSE, on error.
1013     *
1014     * Elementary policies define applications' behavior,
1015     * somehow. These behaviors are divided in policy groups (see
1016     * #Elm_Policy enumeration). This call will emit the Ecore event
1017     * #ELM_EVENT_POLICY_CHANGED, which can be hooked at with
1018     * handlers. An #Elm_Event_Policy_Changed struct will be passed,
1019     * then.
1020     *
1021     * @note Currently, we have only one policy identifier/group
1022     * (#ELM_POLICY_QUIT), which has two possible values.
1023     *
1024     * @ingroup General
1025     */
1026    EAPI Eina_Bool    elm_policy_set(unsigned int policy, int value);
1027
1028    /**
1029     * Gets the policy value for given policy identifier.
1030     *
1031     * @param policy policy identifier, as in #Elm_Policy.
1032     * @return The currently set policy value, for that
1033     * identifier. Will be @c 0 if @p policy passed is invalid.
1034     *
1035     * @ingroup General
1036     */
1037    EAPI int          elm_policy_get(unsigned int policy);
1038
1039    /**
1040     * Change the language of the current application
1041     *
1042     * The @p lang passed must be the full name of the locale to use, for
1043     * example "en_US.utf8" or "es_ES@euro".
1044     *
1045     * Changing language with this function will make Elementary run through
1046     * all its widgets, translating strings set with
1047     * elm_object_domain_translatable_text_part_set(). This way, an entire
1048     * UI can have its language changed without having to restart the program.
1049     *
1050     * For more complex cases, like having formatted strings that need
1051     * translation, widgets will also emit a "language,changed" signal that
1052     * the user can listen to to manually translate the text.
1053     *
1054     * @param lang Language to set, must be the full name of the locale
1055     *
1056     * @ingroup General
1057     */
1058    EAPI void         elm_language_set(const char *lang);
1059
1060    /**
1061     * Set a label of an object
1062     *
1063     * @param obj The Elementary object
1064     * @param part The text part name to set (NULL for the default label)
1065     * @param label The new text of the label
1066     *
1067     * @note Elementary objects may have many labels (e.g. Action Slider)
1068     * @deprecated Use elm_object_part_text_set() instead.
1069     * @ingroup General
1070     */
1071    EINA_DEPRECATED EAPI void elm_object_text_part_set(Evas_Object *obj, const char *part, const char *label);
1072
1073    /**
1074     * Set a label of an object
1075     *
1076     * @param obj The Elementary object
1077     * @param part The text part name to set (NULL for the default label)
1078     * @param label The new text of the label
1079     *
1080     * @note Elementary objects may have many labels (e.g. Action Slider)
1081     *
1082     * @ingroup General
1083     */
1084    EAPI void elm_object_part_text_set(Evas_Object *obj, const char *part, const char *label);
1085
1086 #define elm_object_text_set(obj, label) elm_object_part_text_set((obj), NULL, (label))
1087
1088    /**
1089     * Get a label of an object
1090     *
1091     * @param obj The Elementary object
1092     * @param part The text part name to get (NULL for the default label)
1093     * @return text of the label or NULL for any error
1094     *
1095     * @note Elementary objects may have many labels (e.g. Action Slider)
1096     * @deprecated Use elm_object_part_text_get() instead.
1097     * @ingroup General
1098     */
1099    EINA_DEPRECATED EAPI const char  *elm_object_text_part_get(const Evas_Object *obj, const char *part);
1100
1101    /**
1102     * Get a label of an object
1103     *
1104     * @param obj The Elementary object
1105     * @param part The text part name to get (NULL for the default label)
1106     * @return text of the label or NULL for any error
1107     *
1108     * @note Elementary objects may have many labels (e.g. Action Slider)
1109     *
1110     * @ingroup General
1111     */
1112    EAPI const char  *elm_object_part_text_get(const Evas_Object *obj, const char *part);
1113
1114 #define elm_object_text_get(obj) elm_object_part_text_get((obj), NULL)
1115
1116    /**
1117     * Set the text for an objects' part, marking it as translatable.
1118     *
1119     * The string to set as @p text must be the original one. Do not pass the
1120     * return of @c gettext() here. Elementary will translate the string
1121     * internally and set it on the object using elm_object_part_text_set(),
1122     * also storing the original string so that it can be automatically
1123     * translated when the language is changed with elm_language_set().
1124     *
1125     * The @p domain will be stored along to find the translation in the
1126     * correct catalog. It can be NULL, in which case it will use whatever
1127     * domain was set by the application with @c textdomain(). This is useful
1128     * in case you are building a library on top of Elementary that will have
1129     * its own translatable strings, that should not be mixed with those of
1130     * programs using the library.
1131     *
1132     * @param obj The object containing the text part
1133     * @param part The name of the part to set
1134     * @param domain The translation domain to use
1135     * @param text The original, non-translated text to set
1136     *
1137     * @ingroup General
1138     */
1139    EAPI void         elm_object_domain_translatable_text_part_set(Evas_Object *obj, const char *part, const char *domain, const char *text);
1140
1141 #define elm_object_domain_translatable_text_set(obj, domain, text) elm_object_domain_translatable_text_part_set((obj), NULL, (domain), (text))
1142
1143 #define elm_object_translatable_text_set(obj, text) elm_object_domain_translatable_text_part_set((obj), NULL, NULL, (text))
1144
1145    /**
1146     * Gets the original string set as translatable for an object
1147     *
1148     * When setting translated strings, the function elm_object_part_text_get()
1149     * will return the translation returned by @c gettext(). To get the
1150     * original string use this function.
1151     *
1152     * @param obj The object
1153     * @param part The name of the part that was set
1154     *
1155     * @return The original, untranslated string
1156     *
1157     * @ingroup General
1158     */
1159    EAPI const char  *elm_object_translatable_text_part_get(const Evas_Object *obj, const char *part);
1160
1161 #define elm_object_translatable_text_get(obj) elm_object_translatable_text_part_get((obj), NULL)
1162
1163    /**
1164     * Set a content of an object
1165     *
1166     * @param obj The Elementary object
1167     * @param part The content part name to set (NULL for the default content)
1168     * @param content The new content of the object
1169     *
1170     * @note Elementary objects may have many contents
1171     * @deprecated Use elm_object_part_content_set instead.
1172     * @ingroup General
1173     */
1174    EINA_DEPRECATED EAPI void elm_object_content_part_set(Evas_Object *obj, const char *part, Evas_Object *content);
1175
1176    /**
1177     * Set a content of an object
1178     *
1179     * @param obj The Elementary object
1180     * @param part The content part name to set (NULL for the default content)
1181     * @param content The new content of the object
1182     *
1183     * @note Elementary objects may have many contents
1184     *
1185     * @ingroup General
1186     */
1187    EAPI void elm_object_part_content_set(Evas_Object *obj, const char *part, Evas_Object *content);
1188
1189 #define elm_object_content_set(obj, content) elm_object_part_content_set((obj), NULL, (content))
1190
1191    /**
1192     * Get a content of an object
1193     *
1194     * @param obj The Elementary object
1195     * @param item The content part name to get (NULL for the default content)
1196     * @return content of the object or NULL for any error
1197     *
1198     * @note Elementary objects may have many contents
1199     * @deprecated Use elm_object_part_content_get instead.
1200     * @ingroup General
1201     */
1202    EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_get(const Evas_Object *obj, const char *part);
1203
1204    /**
1205     * Get a content of an object
1206     *
1207     * @param obj The Elementary object
1208     * @param item The content part name to get (NULL for the default content)
1209     * @return content of the object or NULL for any error
1210     *
1211     * @note Elementary objects may have many contents
1212     *
1213     * @ingroup General
1214     */
1215    EAPI Evas_Object *elm_object_part_content_get(const Evas_Object *obj, const char *part);
1216
1217 #define elm_object_content_get(obj) elm_object_part_content_get((obj), NULL)
1218
1219    /**
1220     * Unset a content of an object
1221     *
1222     * @param obj The Elementary object
1223     * @param item The content part name to unset (NULL for the default content)
1224     *
1225     * @note Elementary objects may have many contents
1226     * @deprecated Use elm_object_part_content_unset instead.
1227     * @ingroup General
1228     */
1229    EINA_DEPRECATED EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj, const char *part);
1230
1231    /**
1232     * Unset a content of an object
1233     *
1234     * @param obj The Elementary object
1235     * @param item The content part name to unset (NULL for the default content)
1236     *
1237     * @note Elementary objects may have many contents
1238     *
1239     * @ingroup General
1240     */
1241    EAPI Evas_Object *elm_object_part_content_unset(Evas_Object *obj, const char *part);
1242
1243 #define elm_object_content_unset(obj) elm_object_part_content_unset((obj), NULL)
1244
1245    /**
1246     * Set the text to read out when in accessibility mode
1247     *
1248     * @param obj The object which is to be described
1249     * @param txt The text that describes the widget to people with poor or no vision
1250     *
1251     * @ingroup General
1252     */
1253    EAPI void elm_object_access_info_set(Evas_Object *obj, const char *txt);
1254
1255    /**
1256     * Get the widget object's handle which contains a given item
1257     *
1258     * @param item The Elementary object item
1259     * @return The widget object
1260     *
1261     * @note This returns the widget object itself that an item belongs to.
1262     *
1263     * @ingroup General
1264     */
1265    EAPI Evas_Object *elm_object_item_object_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
1266
1267    /**
1268     * Set a content of an object item
1269     *
1270     * @param it The Elementary object item
1271     * @param part The content part name to set (NULL for the default content)
1272     * @param content The new content of the object item
1273     *
1274     * @note Elementary object items may have many contents
1275     * @deprecated Use elm_object_item_part_content_set instead.
1276     * @ingroup General
1277     */
1278    EINA_DEPRECATED EAPI void elm_object_item_content_part_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
1279
1280    /**
1281     * Set a content of an object item
1282     *
1283     * @param it The Elementary object item
1284     * @param part The content part name to set (NULL for the default content)
1285     * @param content The new content of the object item
1286     *
1287     * @note Elementary object items may have many contents
1288     *
1289     * @ingroup General
1290     */
1291    EAPI void elm_object_item_part_content_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
1292
1293 #define elm_object_item_content_set(it, content) elm_object_item_part_content_set((it), NULL, (content))
1294
1295    /**
1296     * Get a content of an object item
1297     *
1298     * @param it The Elementary object item
1299     * @param part The content part name to unset (NULL for the default content)
1300     * @return content of the object item or NULL for any error
1301     *
1302     * @note Elementary object items may have many contents
1303     * @deprecated Use elm_object_item_part_content_get instead.
1304     * @ingroup General
1305     */
1306    EAPI Evas_Object *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *part);
1307
1308    /**
1309     * Get a content of an object item
1310     *
1311     * @param it The Elementary object item
1312     * @param part The content part name to unset (NULL for the default content)
1313     * @return content of the object item or NULL for any error
1314     *
1315     * @note Elementary object items may have many contents
1316     *
1317     * @ingroup General
1318     */
1319    EAPI Evas_Object *elm_object_item_part_content_get(const Elm_Object_Item *it, const char *part);
1320
1321 #define elm_object_item_content_get(it) elm_object_item_part_content_get((it), NULL)
1322
1323    /**
1324     * Unset a content of an object item
1325     *
1326     * @param it The Elementary object item
1327     * @param part The content part name to unset (NULL for the default content)
1328     *
1329     * @note Elementary object items may have many contents
1330     * @deprecated Use elm_object_item_part_content_unset instead.
1331     * @ingroup General
1332     */
1333    EINA_DEPRECATED EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_Item *it, const char *part);
1334
1335    /**
1336     * Unset a content of an object item
1337     *
1338     * @param it The Elementary object item
1339     * @param part The content part name to unset (NULL for the default content)
1340     *
1341     * @note Elementary object items may have many contents
1342     *
1343     * @ingroup General
1344     */
1345    EAPI Evas_Object *elm_object_item_part_content_unset(Elm_Object_Item *it, const char *part);
1346
1347 #define elm_object_item_content_unset(it) elm_object_item_part_content_unset((it), NULL)
1348
1349    /**
1350     * Set a label of an object item
1351     *
1352     * @param it The Elementary object item
1353     * @param part The text part name to set (NULL for the default label)
1354     * @param label The new text of the label
1355     *
1356     * @note Elementary object items may have many labels
1357     * @deprecated Use elm_object_item_part_text_set instead.
1358     * @ingroup General
1359     */
1360    EINA_DEPRECATED EAPI void elm_object_item_text_part_set(Elm_Object_Item *it, const char *part, const char *label);
1361
1362    /**
1363     * Set a label of an object item
1364     *
1365     * @param it The Elementary object item
1366     * @param part The text part name to set (NULL for the default label)
1367     * @param label The new text of the label
1368     *
1369     * @note Elementary object items may have many labels
1370     *
1371     * @ingroup General
1372     */
1373    EAPI void elm_object_item_part_text_set(Elm_Object_Item *it, const char *part, const char *label);
1374
1375 #define elm_object_item_text_set(it, label) elm_object_item_part_text_set((it), NULL, (label))
1376
1377    /**
1378     * Get a label of an object item
1379     *
1380     * @param it The Elementary object item
1381     * @param part The text part name to get (NULL for the default label)
1382     * @return text of the label or NULL for any error
1383     *
1384     * @note Elementary object items may have many labels
1385     * @deprecated Use elm_object_item_part_text_get instead.
1386     * @ingroup General
1387     */
1388    EINA_DEPRECATED EAPI const char *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
1389    /**
1390     * Get a label of an object item
1391     *
1392     * @param it The Elementary object item
1393     * @param part The text part name to get (NULL for the default label)
1394     * @return text of the label or NULL for any error
1395     *
1396     * @note Elementary object items may have many labels
1397     *
1398     * @ingroup General
1399     */
1400    EAPI const char *elm_object_item_part_text_get(const Elm_Object_Item *it, const char *part);
1401
1402 #define elm_object_item_text_get(it) elm_object_item_part_text_get((it), NULL)
1403
1404    /**
1405     * Set the text to read out when in accessibility mode
1406     *
1407     * @param it The object item which is to be described
1408     * @param txt The text that describes the widget to people with poor or no vision
1409     *
1410     * @ingroup General
1411     */
1412    EAPI void elm_object_item_access_info_set(Elm_Object_Item *it, const char *txt);
1413
1414    /**
1415     * Get the data associated with an object item
1416     * @param it The Elementary object item
1417     * @return The data associated with @p it
1418     *
1419     * @ingroup General
1420     */
1421    EAPI void *elm_object_item_data_get(const Elm_Object_Item *it);
1422
1423    /**
1424     * Set the data associated with an object item
1425     * @param it The Elementary object item
1426     * @param data The data to be associated with @p it
1427     *
1428     * @ingroup General
1429     */
1430    EAPI void elm_object_item_data_set(Elm_Object_Item *it, void *data);
1431
1432    /**
1433     * Send a signal to the edje object of the widget item.
1434     *
1435     * This function sends a signal to the edje object of the obj item. An
1436     * edje program can respond to a signal by specifying matching
1437     * 'signal' and 'source' fields.
1438     *
1439     * @param it The Elementary object item
1440     * @param emission The signal's name.
1441     * @param source The signal's source.
1442     * @ingroup General
1443     */
1444    EAPI void elm_object_item_signal_emit(Elm_Object_Item *it, const char *emission, const char *source) EINA_ARG_NONNULL(1);
1445
1446    /**
1447     * Set the disabled state of an widget item.
1448     *
1449     * @param obj The Elementary object item
1450     * @param disabled The state to put in in: @c EINA_TRUE for
1451     *        disabled, @c EINA_FALSE for enabled
1452     *
1453     * Elementary object item can be @b disabled, in which state they won't
1454     * receive input and, in general, will be themed differently from
1455     * their normal state, usually greyed out. Useful for contexts
1456     * where you don't want your users to interact with some of the
1457     * parts of you interface.
1458     *
1459     * This sets the state for the widget item, either disabling it or
1460     * enabling it back.
1461     *
1462     * @ingroup Styles
1463     */
1464    EAPI void elm_object_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
1465
1466    /**
1467     * Get the disabled state of an widget item.
1468     *
1469     * @param obj The Elementary object
1470     * @return @c EINA_TRUE, if the widget item is disabled, @c EINA_FALSE
1471     *            if it's enabled (or on errors)
1472     *
1473     * This gets the state of the widget, which might be enabled or disabled.
1474     *
1475     * @ingroup Styles
1476     */
1477    EAPI Eina_Bool    elm_object_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
1478
1479    /**
1480     * @}
1481     */
1482
1483    /**
1484     * @defgroup Caches Caches
1485     *
1486     * These are functions which let one fine-tune some cache values for
1487     * Elementary applications, thus allowing for performance adjustments.
1488     *
1489     * @{
1490     */
1491
1492    /**
1493     * @brief Flush all caches.
1494     *
1495     * Frees all data that was in cache and is not currently being used to reduce
1496     * memory usage. This frees Edje's, Evas' and Eet's cache. This is equivalent
1497     * to calling all of the following functions:
1498     * @li edje_file_cache_flush()
1499     * @li edje_collection_cache_flush()
1500     * @li eet_clearcache()
1501     * @li evas_image_cache_flush()
1502     * @li evas_font_cache_flush()
1503     * @li evas_render_dump()
1504     * @note Evas caches are flushed for every canvas associated with a window.
1505     *
1506     * @ingroup Caches
1507     */
1508    EAPI void         elm_all_flush(void);
1509
1510    /**
1511     * Get the configured cache flush interval time
1512     *
1513     * This gets the globally configured cache flush interval time, in
1514     * ticks
1515     *
1516     * @return The cache flush interval time
1517     * @ingroup Caches
1518     *
1519     * @see elm_all_flush()
1520     */
1521    EAPI int          elm_cache_flush_interval_get(void);
1522
1523    /**
1524     * Set the configured cache flush interval time
1525     *
1526     * This sets the globally configured cache flush interval time, in ticks
1527     *
1528     * @param size The cache flush interval time
1529     * @ingroup Caches
1530     *
1531     * @see elm_all_flush()
1532     */
1533    EAPI void         elm_cache_flush_interval_set(int size);
1534
1535    /**
1536     * Set the configured cache flush interval time for all applications on the
1537     * display
1538     *
1539     * This sets the globally configured cache flush interval time -- in ticks
1540     * -- for all applications on the display.
1541     *
1542     * @param size The cache flush interval time
1543     * @ingroup Caches
1544     */
1545    EAPI void         elm_cache_flush_interval_all_set(int size);
1546
1547    /**
1548     * Get the configured cache flush enabled state
1549     *
1550     * This gets the globally configured cache flush state - if it is enabled
1551     * or not. When cache flushing is enabled, elementary will regularly
1552     * (see elm_cache_flush_interval_get() ) flush caches and dump data out of
1553     * memory and allow usage to re-seed caches and data in memory where it
1554     * can do so. An idle application will thus minimise its memory usage as
1555     * data will be freed from memory and not be re-loaded as it is idle and
1556     * not rendering or doing anything graphically right now.
1557     *
1558     * @return The cache flush state
1559     * @ingroup Caches
1560     *
1561     * @see elm_all_flush()
1562     */
1563    EAPI Eina_Bool    elm_cache_flush_enabled_get(void);
1564
1565    /**
1566     * Set the configured cache flush enabled state
1567     *
1568     * This sets the globally configured cache flush enabled state.
1569     *
1570     * @param size The cache flush enabled state
1571     * @ingroup Caches
1572     *
1573     * @see elm_all_flush()
1574     */
1575    EAPI void         elm_cache_flush_enabled_set(Eina_Bool enabled);
1576
1577    /**
1578     * Set the configured cache flush enabled state for all applications on the
1579     * display
1580     *
1581     * This sets the globally configured cache flush enabled state for all
1582     * applications on the display.
1583     *
1584     * @param size The cache flush enabled state
1585     * @ingroup Caches
1586     */
1587    EAPI void         elm_cache_flush_enabled_all_set(Eina_Bool enabled);
1588
1589    /**
1590     * Get the configured font cache size
1591     *
1592     * This gets the globally configured font cache size, in bytes.
1593     *
1594     * @return The font cache size
1595     * @ingroup Caches
1596     */
1597    EAPI int          elm_font_cache_get(void);
1598
1599    /**
1600     * Set the configured font cache size
1601     *
1602     * This sets the globally configured font cache size, in bytes
1603     *
1604     * @param size The font cache size
1605     * @ingroup Caches
1606     */
1607    EAPI void         elm_font_cache_set(int size);
1608
1609    /**
1610     * Set the configured font cache size for all applications on the
1611     * display
1612     *
1613     * This sets the globally configured font cache size -- in bytes
1614     * -- for all applications on the display.
1615     *
1616     * @param size The font cache size
1617     * @ingroup Caches
1618     */
1619    EAPI void         elm_font_cache_all_set(int size);
1620
1621    /**
1622     * Get the configured image cache size
1623     *
1624     * This gets the globally configured image cache size, in bytes
1625     *
1626     * @return The image cache size
1627     * @ingroup Caches
1628     */
1629    EAPI int          elm_image_cache_get(void);
1630
1631    /**
1632     * Set the configured image cache size
1633     *
1634     * This sets the globally configured image cache size, in bytes
1635     *
1636     * @param size The image cache size
1637     * @ingroup Caches
1638     */
1639    EAPI void         elm_image_cache_set(int size);
1640
1641    /**
1642     * Set the configured image cache size for all applications on the
1643     * display
1644     *
1645     * This sets the globally configured image cache size -- in bytes
1646     * -- for all applications on the display.
1647     *
1648     * @param size The image cache size
1649     * @ingroup Caches
1650     */
1651    EAPI void         elm_image_cache_all_set(int size);
1652
1653    /**
1654     * Get the configured edje file cache size.
1655     *
1656     * This gets the globally configured edje file cache size, in number
1657     * of files.
1658     *
1659     * @return The edje file cache size
1660     * @ingroup Caches
1661     */
1662    EAPI int          elm_edje_file_cache_get(void);
1663
1664    /**
1665     * Set the configured edje file cache size
1666     *
1667     * This sets the globally configured edje file cache size, in number
1668     * of files.
1669     *
1670     * @param size The edje file cache size
1671     * @ingroup Caches
1672     */
1673    EAPI void         elm_edje_file_cache_set(int size);
1674
1675    /**
1676     * Set the configured edje file cache size for all applications on the
1677     * display
1678     *
1679     * This sets the globally configured edje file cache size -- in number
1680     * of files -- for all applications on the display.
1681     *
1682     * @param size The edje file cache size
1683     * @ingroup Caches
1684     */
1685    EAPI void         elm_edje_file_cache_all_set(int size);
1686
1687    /**
1688     * Get the configured edje collections (groups) cache size.
1689     *
1690     * This gets the globally configured edje collections cache size, in
1691     * number of collections.
1692     *
1693     * @return The edje collections cache size
1694     * @ingroup Caches
1695     */
1696    EAPI int          elm_edje_collection_cache_get(void);
1697
1698    /**
1699     * Set the configured edje collections (groups) cache size
1700     *
1701     * This sets the globally configured edje collections cache size, in
1702     * number of collections.
1703     *
1704     * @param size The edje collections cache size
1705     * @ingroup Caches
1706     */
1707    EAPI void         elm_edje_collection_cache_set(int size);
1708
1709    /**
1710     * Set the configured edje collections (groups) cache size for all
1711     * applications on the display
1712     *
1713     * This sets the globally configured edje collections cache size -- in
1714     * number of collections -- for all applications on the display.
1715     *
1716     * @param size The edje collections cache size
1717     * @ingroup Caches
1718     */
1719    EAPI void         elm_edje_collection_cache_all_set(int size);
1720
1721    /**
1722     * @}
1723     */
1724
1725    /**
1726     * @defgroup Scaling Widget Scaling
1727     *
1728     * Different widgets can be scaled independently. These functions
1729     * allow you to manipulate this scaling on a per-widget basis. The
1730     * object and all its children get their scaling factors multiplied
1731     * by the scale factor set. This is multiplicative, in that if a
1732     * child also has a scale size set it is in turn multiplied by its
1733     * parent's scale size. @c 1.0 means ā€œdon't scaleā€, @c 2.0 is
1734     * double size, @c 0.5 is half, etc.
1735     *
1736     * @ref general_functions_example_page "This" example contemplates
1737     * some of these functions.
1738     */
1739
1740    /**
1741     * Get the global scaling factor
1742     *
1743     * This gets the globally configured scaling factor that is applied to all
1744     * objects.
1745     *
1746     * @return The scaling factor
1747     * @ingroup Scaling
1748     */
1749    EAPI double       elm_scale_get(void);
1750
1751    /**
1752     * Set the global scaling factor
1753     *
1754     * This sets the globally configured scaling factor that is applied to all
1755     * objects.
1756     *
1757     * @param scale The scaling factor to set
1758     * @ingroup Scaling
1759     */
1760    EAPI void         elm_scale_set(double scale);
1761
1762    /**
1763     * Set the global scaling factor for all applications on the display
1764     *
1765     * This sets the globally configured scaling factor that is applied to all
1766     * objects for all applications.
1767     * @param scale The scaling factor to set
1768     * @ingroup Scaling
1769     */
1770    EAPI void         elm_scale_all_set(double scale);
1771
1772    /**
1773     * Set the scaling factor for a given Elementary object
1774     *
1775     * @param obj The Elementary to operate on
1776     * @param scale Scale factor (from @c 0.0 up, with @c 1.0 meaning
1777     * no scaling)
1778     *
1779     * @ingroup Scaling
1780     */
1781    EAPI void         elm_object_scale_set(Evas_Object *obj, double scale) EINA_ARG_NONNULL(1);
1782
1783    /**
1784     * Get the scaling factor for a given Elementary object
1785     *
1786     * @param obj The object
1787     * @return The scaling factor set by elm_object_scale_set()
1788     *
1789     * @ingroup Scaling
1790     */
1791    EAPI double       elm_object_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1792
1793    /**
1794     * @defgroup Password_last_show Password last input show
1795     *
1796     * Last show feature of password mode enables user to view
1797     * the last input entered for few seconds before masking it.
1798     * These functions allow to set this feature in password mode
1799     * of entry widget and also allow to manipulate the duration
1800     * for which the input has to be visible.
1801     *
1802     * @{
1803     */
1804
1805    /**
1806     * Get show last setting of password mode.
1807     *
1808     * This gets the show last input setting of password mode which might be
1809     * enabled or disabled.
1810     *
1811     * @return @c EINA_TRUE, if the last input show setting is enabled, @c EINA_FALSE
1812     *            if it's disabled.
1813     * @ingroup Password_last_show
1814     */
1815    EAPI Eina_Bool elm_password_show_last_get(void);
1816
1817    /**
1818     * Set show last setting in password mode.
1819     *
1820     * This enables or disables show last setting of password mode.
1821     *
1822     * @param password_show_last If EINA_TRUE enable's last input show in password mode.
1823     * @see elm_password_show_last_timeout_set()
1824     * @ingroup Password_last_show
1825     */
1826    EAPI void elm_password_show_last_set(Eina_Bool password_show_last);
1827
1828    /**
1829     * Get's the timeout value in last show password mode.
1830     *
1831     * This gets the time out value for which the last input entered in password
1832     * mode will be visible.
1833     *
1834     * @return The timeout value of last show password mode.
1835     * @ingroup Password_last_show
1836     */
1837    EAPI double elm_password_show_last_timeout_get(void);
1838
1839    /**
1840     * Set's the timeout value in last show password mode.
1841     *
1842     * This sets the time out value for which the last input entered in password
1843     * mode will be visible.
1844     *
1845     * @param password_show_last_timeout The timeout value.
1846     * @see elm_password_show_last_set()
1847     * @ingroup Password_last_show
1848     */
1849    EAPI void elm_password_show_last_timeout_set(double password_show_last_timeout);
1850
1851    /**
1852     * @}
1853     */
1854
1855    /**
1856     * @defgroup UI-Mirroring Selective Widget mirroring
1857     *
1858     * These functions allow you to set ui-mirroring on specific
1859     * widgets or the whole interface. Widgets can be in one of two
1860     * modes, automatic and manual.  Automatic means they'll be changed
1861     * according to the system mirroring mode and manual means only
1862     * explicit changes will matter. You are not supposed to change
1863     * mirroring state of a widget set to automatic, will mostly work,
1864     * but the behavior is not really defined.
1865     *
1866     * @{
1867     */
1868
1869    EAPI Eina_Bool    elm_mirrored_get(void);
1870    EAPI void         elm_mirrored_set(Eina_Bool mirrored);
1871
1872    /**
1873     * Get the system mirrored mode. This determines the default mirrored mode
1874     * of widgets.
1875     *
1876     * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
1877     */
1878    EAPI Eina_Bool    elm_object_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1879
1880    /**
1881     * Set the system mirrored mode. This determines the default mirrored mode
1882     * of widgets.
1883     *
1884     * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
1885     */
1886    EAPI void         elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
1887
1888    /**
1889     * Returns the widget's mirrored mode setting.
1890     *
1891     * @param obj The widget.
1892     * @return mirrored mode setting of the object.
1893     *
1894     **/
1895    EAPI Eina_Bool    elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1896
1897    /**
1898     * Sets the widget's mirrored mode setting.
1899     * When widget in automatic mode, it follows the system mirrored mode set by
1900     * elm_mirrored_set().
1901     * @param obj The widget.
1902     * @param automatic EINA_TRUE for auto mirrored mode. EINA_FALSE for manual.
1903     */
1904    EAPI void         elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
1905
1906    /**
1907     * @}
1908     */
1909
1910    /**
1911     * Set the style to use by a widget
1912     *
1913     * Sets the style name that will define the appearance of a widget. Styles
1914     * vary from widget to widget and may also be defined by other themes
1915     * by means of extensions and overlays.
1916     *
1917     * @param obj The Elementary widget to style
1918     * @param style The style name to use
1919     *
1920     * @see elm_theme_extension_add()
1921     * @see elm_theme_extension_del()
1922     * @see elm_theme_overlay_add()
1923     * @see elm_theme_overlay_del()
1924     *
1925     * @ingroup Styles
1926     */
1927    EAPI void         elm_object_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
1928    /**
1929     * Get the style used by the widget
1930     *
1931     * This gets the style being used for that widget. Note that the string
1932     * pointer is only valid as longas the object is valid and the style doesn't
1933     * change.
1934     *
1935     * @param obj The Elementary widget to query for its style
1936     * @return The style name used
1937     *
1938     * @see elm_object_style_set()
1939     *
1940     * @ingroup Styles
1941     */
1942    EAPI const char  *elm_object_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1943
1944    /**
1945     * @defgroup Styles Styles
1946     *
1947     * Widgets can have different styles of look. These generic API's
1948     * set styles of widgets, if they support them (and if the theme(s)
1949     * do).
1950     *
1951     * @ref general_functions_example_page "This" example contemplates
1952     * some of these functions.
1953     */
1954
1955    /**
1956     * Set the disabled state of an Elementary object.
1957     *
1958     * @param obj The Elementary object to operate on
1959     * @param disabled The state to put in in: @c EINA_TRUE for
1960     *        disabled, @c EINA_FALSE for enabled
1961     *
1962     * Elementary objects can be @b disabled, in which state they won't
1963     * receive input and, in general, will be themed differently from
1964     * their normal state, usually greyed out. Useful for contexts
1965     * where you don't want your users to interact with some of the
1966     * parts of you interface.
1967     *
1968     * This sets the state for the widget, either disabling it or
1969     * enabling it back.
1970     *
1971     * @ingroup Styles
1972     */
1973    EAPI void         elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
1974
1975    /**
1976     * Get the disabled state of an Elementary object.
1977     *
1978     * @param obj The Elementary object to operate on
1979     * @return @c EINA_TRUE, if the widget is disabled, @c EINA_FALSE
1980     *            if it's enabled (or on errors)
1981     *
1982     * This gets the state of the widget, which might be enabled or disabled.
1983     *
1984     * @ingroup Styles
1985     */
1986    EAPI Eina_Bool    elm_object_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1987
1988    /**
1989     * @defgroup WidgetNavigation Widget Tree Navigation.
1990     *
1991     * How to check if an Evas Object is an Elementary widget? How to
1992     * get the first elementary widget that is parent of the given
1993     * object?  These are all covered in widget tree navigation.
1994     *
1995     * @ref general_functions_example_page "This" example contemplates
1996     * some of these functions.
1997     */
1998
1999    /**
2000     * Check if the given Evas Object is an Elementary widget.
2001     *
2002     * @param obj the object to query.
2003     * @return @c EINA_TRUE if it is an elementary widget variant,
2004     *         @c EINA_FALSE otherwise
2005     * @ingroup WidgetNavigation
2006     */
2007    EAPI Eina_Bool    elm_object_widget_check(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2008
2009    /**
2010     * Get the first parent of the given object that is an Elementary
2011     * widget.
2012     *
2013     * @param obj the Elementary object to query parent from.
2014     * @return the parent object that is an Elementary widget, or @c
2015     *         NULL, if it was not found.
2016     *
2017     * Use this to query for an object's parent widget.
2018     *
2019     * @note Most of Elementary users wouldn't be mixing non-Elementary
2020     * smart objects in the objects tree of an application, as this is
2021     * an advanced usage of Elementary with Evas. So, except for the
2022     * application's window, which is the root of that tree, all other
2023     * objects would have valid Elementary widget parents.
2024     *
2025     * @ingroup WidgetNavigation
2026     */
2027    EAPI Evas_Object *elm_object_parent_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2028
2029    /**
2030     * Get the top level parent of an Elementary widget.
2031     *
2032     * @param obj The object to query.
2033     * @return The top level Elementary widget, or @c NULL if parent cannot be
2034     * found.
2035     * @ingroup WidgetNavigation
2036     */
2037    EAPI Evas_Object *elm_object_top_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2038
2039    /**
2040     * Get the string that represents this Elementary widget.
2041     *
2042     * @note Elementary is weird and exposes itself as a single
2043     *       Evas_Object_Smart_Class of type "elm_widget", so
2044     *       evas_object_type_get() always return that, making debug and
2045     *       language bindings hard. This function tries to mitigate this
2046     *       problem, but the solution is to change Elementary to use
2047     *       proper inheritance.
2048     *
2049     * @param obj the object to query.
2050     * @return Elementary widget name, or @c NULL if not a valid widget.
2051     * @ingroup WidgetNavigation
2052     */
2053    EAPI const char  *elm_object_widget_type_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2054
2055    /**
2056     * @defgroup Config Elementary Config
2057     *
2058     * Elementary configuration is formed by a set options bounded to a
2059     * given @ref Profile profile, like @ref Theme theme, @ref Fingers
2060     * "finger size", etc. These are functions with which one syncronizes
2061     * changes made to those values to the configuration storing files, de
2062     * facto. You most probably don't want to use the functions in this
2063     * group unlees you're writing an elementary configuration manager.
2064     *
2065     * @{
2066     */
2067
2068    /**
2069     * Save back Elementary's configuration, so that it will persist on
2070     * future sessions.
2071     *
2072     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
2073     * @ingroup Config
2074     *
2075     * This function will take effect -- thus, do I/O -- immediately. Use
2076     * it when you want to apply all configuration changes at once. The
2077     * current configuration set will get saved onto the current profile
2078     * configuration file.
2079     *
2080     */
2081    EAPI Eina_Bool    elm_config_save(void);
2082
2083    /**
2084     * Reload Elementary's configuration, bounded to current selected
2085     * profile.
2086     *
2087     * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
2088     * @ingroup Config
2089     *
2090     * Useful when you want to force reloading of configuration values for
2091     * a profile. If one removes user custom configuration directories,
2092     * for example, it will force a reload with system values instead.
2093     *
2094     */
2095    EAPI void         elm_config_reload(void);
2096
2097    /**
2098     * @}
2099     */
2100
2101    /**
2102     * @defgroup Profile Elementary Profile
2103     *
2104     * Profiles are pre-set options that affect the whole look-and-feel of
2105     * Elementary-based applications. There are, for example, profiles
2106     * aimed at desktop computer applications and others aimed at mobile,
2107     * touchscreen-based ones. You most probably don't want to use the
2108     * functions in this group unlees you're writing an elementary
2109     * configuration manager.
2110     *
2111     * @{
2112     */
2113
2114    /**
2115     * Get Elementary's profile in use.
2116     *
2117     * This gets the global profile that is applied to all Elementary
2118     * applications.
2119     *
2120     * @return The profile's name
2121     * @ingroup Profile
2122     */
2123    EAPI const char  *elm_profile_current_get(void);
2124
2125    /**
2126     * Get an Elementary's profile directory path in the filesystem. One
2127     * may want to fetch a system profile's dir or an user one (fetched
2128     * inside $HOME).
2129     *
2130     * @param profile The profile's name
2131     * @param is_user Whether to lookup for an user profile (@c EINA_TRUE)
2132     *                or a system one (@c EINA_FALSE)
2133     * @return The profile's directory path.
2134     * @ingroup Profile
2135     *
2136     * @note You must free it with elm_profile_dir_free().
2137     */
2138    EAPI const char  *elm_profile_dir_get(const char *profile, Eina_Bool is_user);
2139
2140    /**
2141     * Free an Elementary's profile directory path, as returned by
2142     * elm_profile_dir_get().
2143     *
2144     * @param p_dir The profile's path
2145     * @ingroup Profile
2146     *
2147     */
2148    EAPI void         elm_profile_dir_free(const char *p_dir);
2149
2150    /**
2151     * Get Elementary's list of available profiles.
2152     *
2153     * @return The profiles list. List node data are the profile name
2154     *         strings.
2155     * @ingroup Profile
2156     *
2157     * @note One must free this list, after usage, with the function
2158     *       elm_profile_list_free().
2159     */
2160    EAPI Eina_List   *elm_profile_list_get(void);
2161
2162    /**
2163     * Free Elementary's list of available profiles.
2164     *
2165     * @param l The profiles list, as returned by elm_profile_list_get().
2166     * @ingroup Profile
2167     *
2168     */
2169    EAPI void         elm_profile_list_free(Eina_List *l);
2170
2171    /**
2172     * Set Elementary's profile.
2173     *
2174     * This sets the global profile that is applied to Elementary
2175     * applications. Just the process the call comes from will be
2176     * affected.
2177     *
2178     * @param profile The profile's name
2179     * @ingroup Profile
2180     *
2181     */
2182    EAPI void         elm_profile_set(const char *profile);
2183
2184    /**
2185     * Set Elementary's profile.
2186     *
2187     * This sets the global profile that is applied to all Elementary
2188     * applications. All running Elementary windows will be affected.
2189     *
2190     * @param profile The profile's name
2191     * @ingroup Profile
2192     *
2193     */
2194    EAPI void         elm_profile_all_set(const char *profile);
2195
2196    /**
2197     * @}
2198     */
2199
2200    /**
2201     * @defgroup Engine Elementary Engine
2202     *
2203     * These are functions setting and querying which rendering engine
2204     * Elementary will use for drawing its windows' pixels.
2205     *
2206     * The following are the available engines:
2207     * @li "software_x11"
2208     * @li "fb"
2209     * @li "directfb"
2210     * @li "software_16_x11"
2211     * @li "software_8_x11"
2212     * @li "xrender_x11"
2213     * @li "opengl_x11"
2214     * @li "software_gdi"
2215     * @li "software_16_wince_gdi"
2216     * @li "sdl"
2217     * @li "software_16_sdl"
2218     * @li "opengl_sdl"
2219     * @li "buffer"
2220     * @li "ews"
2221     * @li "opengl_cocoa"
2222     * @li "psl1ght"
2223     *
2224     * @{
2225     */
2226
2227    /**
2228     * @brief Get Elementary's rendering engine in use.
2229     *
2230     * @return The rendering engine's name
2231     * @note there's no need to free the returned string, here.
2232     *
2233     * This gets the global rendering engine that is applied to all Elementary
2234     * applications.
2235     *
2236     * @see elm_engine_set()
2237     */
2238    EAPI const char  *elm_engine_current_get(void);
2239
2240    /**
2241     * @brief Set Elementary's rendering engine for use.
2242     *
2243     * @param engine The rendering engine's name
2244     *
2245     * This sets global rendering engine that is applied to all Elementary
2246     * applications. Note that it will take effect only to Elementary windows
2247     * created after this is called.
2248     *
2249     * @see elm_win_add()
2250     */
2251    EAPI void         elm_engine_set(const char *engine);
2252
2253    /**
2254     * @}
2255     */
2256
2257    /**
2258     * @defgroup Fonts Elementary Fonts
2259     *
2260     * These are functions dealing with font rendering, selection and the
2261     * like for Elementary applications. One might fetch which system
2262     * fonts are there to use and set custom fonts for individual classes
2263     * of UI items containing text (text classes).
2264     *
2265     * @{
2266     */
2267
2268   typedef struct _Elm_Text_Class
2269     {
2270        const char *name;
2271        const char *desc;
2272     } Elm_Text_Class;
2273
2274   typedef struct _Elm_Font_Overlay
2275     {
2276        const char     *text_class;
2277        const char     *font;
2278        Evas_Font_Size  size;
2279     } Elm_Font_Overlay;
2280
2281   typedef struct _Elm_Font_Properties
2282     {
2283        const char *name;
2284        Eina_List  *styles;
2285     } Elm_Font_Properties;
2286
2287    /**
2288     * Get Elementary's list of supported text classes.
2289     *
2290     * @return The text classes list, with @c Elm_Text_Class blobs as data.
2291     * @ingroup Fonts
2292     *
2293     * Release the list with elm_text_classes_list_free().
2294     */
2295    EAPI const Eina_List     *elm_text_classes_list_get(void);
2296
2297    /**
2298     * Free Elementary's list of supported text classes.
2299     *
2300     * @ingroup Fonts
2301     *
2302     * @see elm_text_classes_list_get().
2303     */
2304    EAPI void                 elm_text_classes_list_free(const Eina_List *list);
2305
2306    /**
2307     * Get Elementary's list of font overlays, set with
2308     * elm_font_overlay_set().
2309     *
2310     * @return The font overlays list, with @c Elm_Font_Overlay blobs as
2311     * data.
2312     *
2313     * @ingroup Fonts
2314     *
2315     * For each text class, one can set a <b>font overlay</b> for it,
2316     * overriding the default font properties for that class coming from
2317     * the theme in use. There is no need to free this list.
2318     *
2319     * @see elm_font_overlay_set() and elm_font_overlay_unset().
2320     */
2321    EAPI const Eina_List     *elm_font_overlay_list_get(void);
2322
2323    /**
2324     * Set a font overlay for a given Elementary text class.
2325     *
2326     * @param text_class Text class name
2327     * @param font Font name and style string
2328     * @param size Font size
2329     *
2330     * @ingroup Fonts
2331     *
2332     * @p font has to be in the format returned by
2333     * elm_font_fontconfig_name_get(). @see elm_font_overlay_list_get()
2334     * and elm_font_overlay_unset().
2335     */
2336    EAPI void                 elm_font_overlay_set(const char *text_class, const char *font, Evas_Font_Size size);
2337
2338    /**
2339     * Unset a font overlay for a given Elementary text class.
2340     *
2341     * @param text_class Text class name
2342     *
2343     * @ingroup Fonts
2344     *
2345     * This will bring back text elements belonging to text class
2346     * @p text_class back to their default font settings.
2347     */
2348    EAPI void                 elm_font_overlay_unset(const char *text_class);
2349
2350    /**
2351     * Apply the changes made with elm_font_overlay_set() and
2352     * elm_font_overlay_unset() on the current Elementary window.
2353     *
2354     * @ingroup Fonts
2355     *
2356     * This applies all font overlays set to all objects in the UI.
2357     */
2358    EAPI void                 elm_font_overlay_apply(void);
2359
2360    /**
2361     * Apply the changes made with elm_font_overlay_set() and
2362     * elm_font_overlay_unset() on all Elementary application windows.
2363     *
2364     * @ingroup Fonts
2365     *
2366     * This applies all font overlays set to all objects in the UI.
2367     */
2368    EAPI void                 elm_font_overlay_all_apply(void);
2369
2370    /**
2371     * Translate a font (family) name string in fontconfig's font names
2372     * syntax into an @c Elm_Font_Properties struct.
2373     *
2374     * @param font The font name and styles string
2375     * @return the font properties struct
2376     *
2377     * @ingroup Fonts
2378     *
2379     * @note The reverse translation can be achived with
2380     * elm_font_fontconfig_name_get(), for one style only (single font
2381     * instance, not family).
2382     */
2383    EAPI Elm_Font_Properties *elm_font_properties_get(const char *font) EINA_ARG_NONNULL(1);
2384
2385    /**
2386     * Free font properties return by elm_font_properties_get().
2387     *
2388     * @param efp the font properties struct
2389     *
2390     * @ingroup Fonts
2391     */
2392    EAPI void                 elm_font_properties_free(Elm_Font_Properties *efp) EINA_ARG_NONNULL(1);
2393
2394    /**
2395     * Translate a font name, bound to a style, into fontconfig's font names
2396     * syntax.
2397     *
2398     * @param name The font (family) name
2399     * @param style The given style (may be @c NULL)
2400     *
2401     * @return the font name and style string
2402     *
2403     * @ingroup Fonts
2404     *
2405     * @note The reverse translation can be achived with
2406     * elm_font_properties_get(), for one style only (single font
2407     * instance, not family).
2408     */
2409    EAPI const char          *elm_font_fontconfig_name_get(const char *name, const char *style) EINA_ARG_NONNULL(1);
2410
2411    /**
2412     * Free the font string return by elm_font_fontconfig_name_get().
2413     *
2414     * @param efp the font properties struct
2415     *
2416     * @ingroup Fonts
2417     */
2418    EAPI void                 elm_font_fontconfig_name_free(const char *name) EINA_ARG_NONNULL(1);
2419
2420    /**
2421     * Create a font hash table of available system fonts.
2422     *
2423     * One must call it with @p list being the return value of
2424     * evas_font_available_list(). The hash will be indexed by font
2425     * (family) names, being its values @c Elm_Font_Properties blobs.
2426     *
2427     * @param list The list of available system fonts, as returned by
2428     * evas_font_available_list().
2429     * @return the font hash.
2430     *
2431     * @ingroup Fonts
2432     *
2433     * @note The user is supposed to get it populated at least with 3
2434     * default font families (Sans, Serif, Monospace), which should be
2435     * present on most systems.
2436     */
2437    EAPI Eina_Hash           *elm_font_available_hash_add(Eina_List *list);
2438
2439    /**
2440     * Free the hash return by elm_font_available_hash_add().
2441     *
2442     * @param hash the hash to be freed.
2443     *
2444     * @ingroup Fonts
2445     */
2446    EAPI void                 elm_font_available_hash_del(Eina_Hash *hash);
2447
2448    /**
2449     * @}
2450     */
2451
2452    /**
2453     * @defgroup Fingers Fingers
2454     *
2455     * Elementary is designed to be finger-friendly for touchscreens,
2456     * and so in addition to scaling for display resolution, it can
2457     * also scale based on finger "resolution" (or size). You can then
2458     * customize the granularity of the areas meant to receive clicks
2459     * on touchscreens.
2460     *
2461     * Different profiles may have pre-set values for finger sizes.
2462     *
2463     * @ref general_functions_example_page "This" example contemplates
2464     * some of these functions.
2465     *
2466     * @{
2467     */
2468
2469    /**
2470     * Get the configured "finger size"
2471     *
2472     * @return The finger size
2473     *
2474     * This gets the globally configured finger size, <b>in pixels</b>
2475     *
2476     * @ingroup Fingers
2477     */
2478    EAPI Evas_Coord       elm_finger_size_get(void);
2479
2480    /**
2481     * Set the configured finger size
2482     *
2483     * This sets the globally configured finger size in pixels
2484     *
2485     * @param size The finger size
2486     * @ingroup Fingers
2487     */
2488    EAPI void             elm_finger_size_set(Evas_Coord size);
2489
2490    /**
2491     * Set the configured finger size for all applications on the display
2492     *
2493     * This sets the globally configured finger size in pixels for all
2494     * applications on the display
2495     *
2496     * @param size The finger size
2497     * @ingroup Fingers
2498     */
2499    EAPI void             elm_finger_size_all_set(Evas_Coord size);
2500
2501    /**
2502     * @}
2503     */
2504
2505    /**
2506     * @defgroup Focus Focus
2507     *
2508     * An Elementary application has, at all times, one (and only one)
2509     * @b focused object. This is what determines where the input
2510     * events go to within the application's window. Also, focused
2511     * objects can be decorated differently, in order to signal to the
2512     * user where the input is, at a given moment.
2513     *
2514     * Elementary applications also have the concept of <b>focus
2515     * chain</b>: one can cycle through all the windows' focusable
2516     * objects by input (tab key) or programmatically. The default
2517     * focus chain for an application is the one define by the order in
2518     * which the widgets where added in code. One will cycle through
2519     * top level widgets, and, for each one containg sub-objects, cycle
2520     * through them all, before returning to the level
2521     * above. Elementary also allows one to set @b custom focus chains
2522     * for their applications.
2523     *
2524     * Besides the focused decoration a widget may exhibit, when it
2525     * gets focus, Elementary has a @b global focus highlight object
2526     * that can be enabled for a window. If one chooses to do so, this
2527     * extra highlight effect will surround the current focused object,
2528     * too.
2529     *
2530     * @note Some Elementary widgets are @b unfocusable, after
2531     * creation, by their very nature: they are not meant to be
2532     * interacted with input events, but are there just for visual
2533     * purposes.
2534     *
2535     * @ref general_functions_example_page "This" example contemplates
2536     * some of these functions.
2537     */
2538
2539    /**
2540     * Get the enable status of the focus highlight
2541     *
2542     * This gets whether the highlight on focused objects is enabled or not
2543     * @ingroup Focus
2544     */
2545    EAPI Eina_Bool        elm_focus_highlight_enabled_get(void);
2546
2547    /**
2548     * Set the enable status of the focus highlight
2549     *
2550     * Set whether to show or not the highlight on focused objects
2551     * @param enable Enable highlight if EINA_TRUE, disable otherwise
2552     * @ingroup Focus
2553     */
2554    EAPI void             elm_focus_highlight_enabled_set(Eina_Bool enable);
2555
2556    /**
2557     * Get the enable status of the highlight animation
2558     *
2559     * Get whether the focus highlight, if enabled, will animate its switch from
2560     * one object to the next
2561     * @ingroup Focus
2562     */
2563    EAPI Eina_Bool        elm_focus_highlight_animate_get(void);
2564
2565    /**
2566     * Set the enable status of the highlight animation
2567     *
2568     * Set whether the focus highlight, if enabled, will animate its switch from
2569     * one object to the next
2570     * @param animate Enable animation if EINA_TRUE, disable otherwise
2571     * @ingroup Focus
2572     */
2573    EAPI void             elm_focus_highlight_animate_set(Eina_Bool animate);
2574
2575    /**
2576     * Get the whether an Elementary object has the focus or not.
2577     *
2578     * @param obj The Elementary object to get the information from
2579     * @return @c EINA_TRUE, if the object is focused, @c EINA_FALSE if
2580     *            not (and on errors).
2581     *
2582     * @see elm_object_focus_set()
2583     *
2584     * @ingroup Focus
2585     */
2586    EAPI Eina_Bool        elm_object_focus_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2587
2588    /**
2589     * Set/unset focus to a given Elementary object.
2590     *
2591     * @param obj The Elementary object to operate on.
2592     * @param enable @c EINA_TRUE Set focus to a given object,
2593     *               @c EINA_FALSE Unset focus to a given object.
2594     *
2595     * @note When you set focus to this object, if it can handle focus, will
2596     * take the focus away from the one who had it previously and will, for
2597     * now on, be the one receiving input events. Unsetting focus will remove
2598     * the focus from @p obj, passing it back to the previous element in the
2599     * focus chain list.
2600     *
2601     * @see elm_object_focus_get(), elm_object_focus_custom_chain_get()
2602     *
2603     * @ingroup Focus
2604     */
2605    EAPI void             elm_object_focus_set(Evas_Object *obj, Eina_Bool focus) EINA_ARG_NONNULL(1);
2606
2607    /**
2608     * Make a given Elementary object the focused one.
2609     *
2610     * @param obj The Elementary object to make focused.
2611     *
2612     * @note This object, if it can handle focus, will take the focus
2613     * away from the one who had it previously and will, for now on, be
2614     * the one receiving input events.
2615     *
2616     * @see elm_object_focus_get()
2617     * @deprecated use elm_object_focus_set() instead.
2618     *
2619     * @ingroup Focus
2620     */
2621    EINA_DEPRECATED EAPI void             elm_object_focus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2622
2623    /**
2624     * Remove the focus from an Elementary object
2625     *
2626     * @param obj The Elementary to take focus from
2627     *
2628     * This removes the focus from @p obj, passing it back to the
2629     * previous element in the focus chain list.
2630     *
2631     * @see elm_object_focus() and elm_object_focus_custom_chain_get()
2632     * @deprecated use elm_object_focus_set() instead.
2633     *
2634     * @ingroup Focus
2635     */
2636    EINA_DEPRECATED EAPI void             elm_object_unfocus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2637
2638    /**
2639     * Set the ability for an Element object to be focused
2640     *
2641     * @param obj The Elementary object to operate on
2642     * @param enable @c EINA_TRUE if the object can be focused, @c
2643     *        EINA_FALSE if not (and on errors)
2644     *
2645     * This sets whether the object @p obj is able to take focus or
2646     * not. Unfocusable objects do nothing when programmatically
2647     * focused, being the nearest focusable parent object the one
2648     * really getting focus. Also, when they receive mouse input, they
2649     * will get the event, but not take away the focus from where it
2650     * was previously.
2651     *
2652     * @ingroup Focus
2653     */
2654    EAPI void             elm_object_focus_allow_set(Evas_Object *obj, Eina_Bool enable) EINA_ARG_NONNULL(1);
2655
2656    /**
2657     * Get whether an Elementary object is focusable or not
2658     *
2659     * @param obj The Elementary object to operate on
2660     * @return @c EINA_TRUE if the object is allowed to be focused, @c
2661     *             EINA_FALSE if not (and on errors)
2662     *
2663     * @note Objects which are meant to be interacted with by input
2664     * events are created able to be focused, by default. All the
2665     * others are not.
2666     *
2667     * @ingroup Focus
2668     */
2669    EAPI Eina_Bool        elm_object_focus_allow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2670
2671    /**
2672     * Set custom focus chain.
2673     *
2674     * This function overwrites any previous custom focus chain within
2675     * the list of objects. The previous list will be deleted and this list
2676     * will be managed by elementary. After it is set, don't modify it.
2677     *
2678     * @note On focus cycle, only will be evaluated children of this container.
2679     *
2680     * @param obj The container object
2681     * @param objs Chain of objects to pass focus
2682     * @ingroup Focus
2683     */
2684    EAPI void             elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
2685
2686    /**
2687     * Unset a custom focus chain on a given Elementary widget
2688     *
2689     * @param obj The container object to remove focus chain from
2690     *
2691     * Any focus chain previously set on @p obj (for its child objects)
2692     * is removed entirely after this call.
2693     *
2694     * @ingroup Focus
2695     */
2696    EAPI void             elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
2697
2698    /**
2699     * Get custom focus chain
2700     *
2701     * @param obj The container object
2702     * @ingroup Focus
2703     */
2704    EAPI const Eina_List *elm_object_focus_custom_chain_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2705
2706    /**
2707     * Append object to custom focus chain.
2708     *
2709     * @note If relative_child equal to NULL or not in custom chain, the object
2710     * will be added in end.
2711     *
2712     * @note On focus cycle, only will be evaluated children of this container.
2713     *
2714     * @param obj The container object
2715     * @param child The child to be added in custom chain
2716     * @param relative_child The relative object to position the child
2717     * @ingroup Focus
2718     */
2719    EAPI void             elm_object_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2720
2721    /**
2722     * Prepend object to custom focus chain.
2723     *
2724     * @note If relative_child equal to NULL or not in custom chain, the object
2725     * will be added in begin.
2726     *
2727     * @note On focus cycle, only will be evaluated children of this container.
2728     *
2729     * @param obj The container object
2730     * @param child The child to be added in custom chain
2731     * @param relative_child The relative object to position the child
2732     * @ingroup Focus
2733     */
2734    EAPI void             elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2735
2736    /**
2737     * Give focus to next object in object tree.
2738     *
2739     * Give focus to next object in focus chain of one object sub-tree.
2740     * If the last object of chain already have focus, the focus will go to the
2741     * first object of chain.
2742     *
2743     * @param obj The object root of sub-tree
2744     * @param dir Direction to cycle the focus
2745     *
2746     * @ingroup Focus
2747     */
2748    EAPI void             elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir) EINA_ARG_NONNULL(1);
2749
2750    /**
2751     * Give focus to near object in one direction.
2752     *
2753     * Give focus to near object in direction of one object.
2754     * If none focusable object in given direction, the focus will not change.
2755     *
2756     * @param obj The reference object
2757     * @param x Horizontal component of direction to focus
2758     * @param y Vertical component of direction to focus
2759     *
2760     * @ingroup Focus
2761     */
2762    EAPI void             elm_object_focus_direction_go(Evas_Object *obj, int x, int y) EINA_ARG_NONNULL(1);
2763
2764    /**
2765     * Make the elementary object and its children to be unfocusable
2766     * (or focusable).
2767     *
2768     * @param obj The Elementary object to operate on
2769     * @param tree_unfocusable @c EINA_TRUE for unfocusable,
2770     *        @c EINA_FALSE for focusable.
2771     *
2772     * This sets whether the object @p obj and its children objects
2773     * are able to take focus or not. If the tree is set as unfocusable,
2774     * newest focused object which is not in this tree will get focus.
2775     * This API can be helpful for an object to be deleted.
2776     * When an object will be deleted soon, it and its children may not
2777     * want to get focus (by focus reverting or by other focus controls).
2778     * Then, just use this API before deleting.
2779     *
2780     * @see elm_object_tree_unfocusable_get()
2781     *
2782     * @ingroup Focus
2783     */
2784    EAPI void             elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable) EINA_ARG_NONNULL(1);
2785
2786    /**
2787     * Get whether an Elementary object and its children are unfocusable or not.
2788     *
2789     * @param obj The Elementary object to get the information from
2790     * @return @c EINA_TRUE, if the tree is unfocussable,
2791     *         @c EINA_FALSE if not (and on errors).
2792     *
2793     * @see elm_object_tree_unfocusable_set()
2794     *
2795     * @ingroup Focus
2796     */
2797    EAPI Eina_Bool        elm_object_tree_unfocusable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2798
2799    /**
2800     * @defgroup Scrolling Scrolling
2801     *
2802     * These are functions setting how scrollable views in Elementary
2803     * widgets should behave on user interaction.
2804     *
2805     * @{
2806     */
2807
2808    /**
2809     * Get whether scrollers should bounce when they reach their
2810     * viewport's edge during a scroll.
2811     *
2812     * @return the thumb scroll bouncing state
2813     *
2814     * This is the default behavior for touch screens, in general.
2815     * @ingroup Scrolling
2816     */
2817    EAPI Eina_Bool        elm_scroll_bounce_enabled_get(void);
2818
2819    /**
2820     * Set whether scrollers should bounce when they reach their
2821     * viewport's edge during a scroll.
2822     *
2823     * @param enabled the thumb scroll bouncing state
2824     *
2825     * @see elm_thumbscroll_bounce_enabled_get()
2826     * @ingroup Scrolling
2827     */
2828    EAPI void             elm_scroll_bounce_enabled_set(Eina_Bool enabled);
2829
2830    /**
2831     * Set whether scrollers should bounce when they reach their
2832     * viewport's edge during a scroll, for all Elementary application
2833     * windows.
2834     *
2835     * @param enabled the thumb scroll bouncing state
2836     *
2837     * @see elm_thumbscroll_bounce_enabled_get()
2838     * @ingroup Scrolling
2839     */
2840    EAPI void             elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
2841
2842    /**
2843     * Get the amount of inertia a scroller will impose at bounce
2844     * animations.
2845     *
2846     * @return the thumb scroll bounce friction
2847     *
2848     * @ingroup Scrolling
2849     */
2850    EAPI double           elm_scroll_bounce_friction_get(void);
2851
2852    /**
2853     * Set the amount of inertia a scroller will impose at bounce
2854     * animations.
2855     *
2856     * @param friction the thumb scroll bounce friction
2857     *
2858     * @see elm_thumbscroll_bounce_friction_get()
2859     * @ingroup Scrolling
2860     */
2861    EAPI void             elm_scroll_bounce_friction_set(double friction);
2862
2863    /**
2864     * Set the amount of inertia a scroller will impose at bounce
2865     * animations, for all Elementary application windows.
2866     *
2867     * @param friction the thumb scroll bounce friction
2868     *
2869     * @see elm_thumbscroll_bounce_friction_get()
2870     * @ingroup Scrolling
2871     */
2872    EAPI void             elm_scroll_bounce_friction_all_set(double friction);
2873
2874    /**
2875     * Get the amount of inertia a <b>paged</b> scroller will impose at
2876     * page fitting animations.
2877     *
2878     * @return the page scroll friction
2879     *
2880     * @ingroup Scrolling
2881     */
2882    EAPI double           elm_scroll_page_scroll_friction_get(void);
2883
2884    /**
2885     * Set the amount of inertia a <b>paged</b> scroller will impose at
2886     * page fitting animations.
2887     *
2888     * @param friction the page scroll friction
2889     *
2890     * @see elm_thumbscroll_page_scroll_friction_get()
2891     * @ingroup Scrolling
2892     */
2893    EAPI void             elm_scroll_page_scroll_friction_set(double friction);
2894
2895    /**
2896     * Set the amount of inertia a <b>paged</b> scroller will impose at
2897     * page fitting animations, for all Elementary application windows.
2898     *
2899     * @param friction the page scroll friction
2900     *
2901     * @see elm_thumbscroll_page_scroll_friction_get()
2902     * @ingroup Scrolling
2903     */
2904    EAPI void             elm_scroll_page_scroll_friction_all_set(double friction);
2905
2906    /**
2907     * Get the amount of inertia a scroller will impose at region bring
2908     * animations.
2909     *
2910     * @return the bring in scroll friction
2911     *
2912     * @ingroup Scrolling
2913     */
2914    EAPI double           elm_scroll_bring_in_scroll_friction_get(void);
2915
2916    /**
2917     * Set the amount of inertia a scroller will impose at region bring
2918     * animations.
2919     *
2920     * @param friction the bring in scroll friction
2921     *
2922     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2923     * @ingroup Scrolling
2924     */
2925    EAPI void             elm_scroll_bring_in_scroll_friction_set(double friction);
2926
2927    /**
2928     * Set the amount of inertia a scroller will impose at region bring
2929     * animations, for all Elementary application windows.
2930     *
2931     * @param friction the bring in scroll friction
2932     *
2933     * @see elm_thumbscroll_bring_in_scroll_friction_get()
2934     * @ingroup Scrolling
2935     */
2936    EAPI void             elm_scroll_bring_in_scroll_friction_all_set(double friction);
2937
2938    /**
2939     * Get the amount of inertia scrollers will impose at animations
2940     * triggered by Elementary widgets' zooming API.
2941     *
2942     * @return the zoom friction
2943     *
2944     * @ingroup Scrolling
2945     */
2946    EAPI double           elm_scroll_zoom_friction_get(void);
2947
2948    /**
2949     * Set the amount of inertia scrollers will impose at animations
2950     * triggered by Elementary widgets' zooming API.
2951     *
2952     * @param friction the zoom friction
2953     *
2954     * @see elm_thumbscroll_zoom_friction_get()
2955     * @ingroup Scrolling
2956     */
2957    EAPI void             elm_scroll_zoom_friction_set(double friction);
2958
2959    /**
2960     * Set the amount of inertia scrollers will impose at animations
2961     * triggered by Elementary widgets' zooming API, for all Elementary
2962     * application windows.
2963     *
2964     * @param friction the zoom friction
2965     *
2966     * @see elm_thumbscroll_zoom_friction_get()
2967     * @ingroup Scrolling
2968     */
2969    EAPI void             elm_scroll_zoom_friction_all_set(double friction);
2970
2971    /**
2972     * Get whether scrollers should be draggable from any point in their
2973     * views.
2974     *
2975     * @return the thumb scroll state
2976     *
2977     * @note This is the default behavior for touch screens, in general.
2978     * @note All other functions namespaced with "thumbscroll" will only
2979     *       have effect if this mode is enabled.
2980     *
2981     * @ingroup Scrolling
2982     */
2983    EAPI Eina_Bool        elm_scroll_thumbscroll_enabled_get(void);
2984
2985    /**
2986     * Set whether scrollers should be draggable from any point in their
2987     * views.
2988     *
2989     * @param enabled the thumb scroll state
2990     *
2991     * @see elm_thumbscroll_enabled_get()
2992     * @ingroup Scrolling
2993     */
2994    EAPI void             elm_scroll_thumbscroll_enabled_set(Eina_Bool enabled);
2995
2996    /**
2997     * Set whether scrollers should be draggable from any point in their
2998     * views, for all Elementary application windows.
2999     *
3000     * @param enabled the thumb scroll state
3001     *
3002     * @see elm_thumbscroll_enabled_get()
3003     * @ingroup Scrolling
3004     */
3005    EAPI void             elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
3006
3007    /**
3008     * Get the number of pixels one should travel while dragging a
3009     * scroller's view to actually trigger scrolling.
3010     *
3011     * @return the thumb scroll threshould
3012     *
3013     * One would use higher values for touch screens, in general, because
3014     * of their inherent imprecision.
3015     * @ingroup Scrolling
3016     */
3017    EAPI unsigned int     elm_scroll_thumbscroll_threshold_get(void);
3018
3019    /**
3020     * Set the number of pixels one should travel while dragging a
3021     * scroller's view to actually trigger scrolling.
3022     *
3023     * @param threshold the thumb scroll threshould
3024     *
3025     * @see elm_thumbscroll_threshould_get()
3026     * @ingroup Scrolling
3027     */
3028    EAPI void             elm_scroll_thumbscroll_threshold_set(unsigned int threshold);
3029
3030    /**
3031     * Set the number of pixels one should travel while dragging a
3032     * scroller's view to actually trigger scrolling, for all Elementary
3033     * application windows.
3034     *
3035     * @param threshold the thumb scroll threshould
3036     *
3037     * @see elm_thumbscroll_threshould_get()
3038     * @ingroup Scrolling
3039     */
3040    EAPI void             elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
3041
3042    /**
3043     * Get the minimum speed of mouse cursor movement which will trigger
3044     * list self scrolling animation after a mouse up event
3045     * (pixels/second).
3046     *
3047     * @return the thumb scroll momentum threshould
3048     *
3049     * @ingroup Scrolling
3050     */
3051    EAPI double           elm_scroll_thumbscroll_momentum_threshold_get(void);
3052
3053    /**
3054     * Set the minimum speed of mouse cursor movement which will trigger
3055     * list self scrolling animation after a mouse up event
3056     * (pixels/second).
3057     *
3058     * @param threshold the thumb scroll momentum threshould
3059     *
3060     * @see elm_thumbscroll_momentum_threshould_get()
3061     * @ingroup Scrolling
3062     */
3063    EAPI void             elm_scroll_thumbscroll_momentum_threshold_set(double threshold);
3064
3065    /**
3066     * Set the minimum speed of mouse cursor movement which will trigger
3067     * list self scrolling animation after a mouse up event
3068     * (pixels/second), for all Elementary application windows.
3069     *
3070     * @param threshold the thumb scroll momentum threshould
3071     *
3072     * @see elm_thumbscroll_momentum_threshould_get()
3073     * @ingroup Scrolling
3074     */
3075    EAPI void             elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
3076
3077    /**
3078     * Get the amount of inertia a scroller will impose at self scrolling
3079     * animations.
3080     *
3081     * @return the thumb scroll friction
3082     *
3083     * @ingroup Scrolling
3084     */
3085    EAPI double           elm_scroll_thumbscroll_friction_get(void);
3086
3087    /**
3088     * Set the amount of inertia a scroller will impose at self scrolling
3089     * animations.
3090     *
3091     * @param friction the thumb scroll friction
3092     *
3093     * @see elm_thumbscroll_friction_get()
3094     * @ingroup Scrolling
3095     */
3096    EAPI void             elm_scroll_thumbscroll_friction_set(double friction);
3097
3098    /**
3099     * Set the amount of inertia a scroller will impose at self scrolling
3100     * animations, for all Elementary application windows.
3101     *
3102     * @param friction the thumb scroll friction
3103     *
3104     * @see elm_thumbscroll_friction_get()
3105     * @ingroup Scrolling
3106     */
3107    EAPI void             elm_scroll_thumbscroll_friction_all_set(double friction);
3108
3109    /**
3110     * Get the amount of lag between your actual mouse cursor dragging
3111     * movement and a scroller's view movement itself, while pushing it
3112     * into bounce state manually.
3113     *
3114     * @return the thumb scroll border friction
3115     *
3116     * @ingroup Scrolling
3117     */
3118    EAPI double           elm_scroll_thumbscroll_border_friction_get(void);
3119
3120    /**
3121     * Set the amount of lag between your actual mouse cursor dragging
3122     * movement and a scroller's view movement itself, while pushing it
3123     * into bounce state manually.
3124     *
3125     * @param friction the thumb scroll border friction. @c 0.0 for
3126     *        perfect synchrony between two movements, @c 1.0 for maximum
3127     *        lag.
3128     *
3129     * @see elm_thumbscroll_border_friction_get()
3130     * @note parameter value will get bound to 0.0 - 1.0 interval, always
3131     *
3132     * @ingroup Scrolling
3133     */
3134    EAPI void             elm_scroll_thumbscroll_border_friction_set(double friction);
3135
3136    /**
3137     * Set the amount of lag between your actual mouse cursor dragging
3138     * movement and a scroller's view movement itself, while pushing it
3139     * into bounce state manually, for all Elementary application windows.
3140     *
3141     * @param friction the thumb scroll border friction. @c 0.0 for
3142     *        perfect synchrony between two movements, @c 1.0 for maximum
3143     *        lag.
3144     *
3145     * @see elm_thumbscroll_border_friction_get()
3146     * @note parameter value will get bound to 0.0 - 1.0 interval, always
3147     *
3148     * @ingroup Scrolling
3149     */
3150    EAPI void             elm_scroll_thumbscroll_border_friction_all_set(double friction);
3151
3152    /**
3153     * Get the sensitivity amount which is be multiplied by the length of
3154     * mouse dragging.
3155     *
3156     * @return the thumb scroll sensitivity friction
3157     *
3158     * @ingroup Scrolling
3159     */
3160    EAPI double           elm_scroll_thumbscroll_sensitivity_friction_get(void);
3161
3162    /**
3163     * Set the sensitivity amount which is be multiplied by the length of
3164     * mouse dragging.
3165     *
3166     * @param friction the thumb scroll sensitivity friction. @c 0.1 for
3167     *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
3168     *        is proper.
3169     *
3170     * @see elm_thumbscroll_sensitivity_friction_get()
3171     * @note parameter value will get bound to 0.1 - 1.0 interval, always
3172     *
3173     * @ingroup Scrolling
3174     */
3175    EAPI void             elm_scroll_thumbscroll_sensitivity_friction_set(double friction);
3176
3177    /**
3178     * Set the sensitivity amount which is be multiplied by the length of
3179     * mouse dragging, for all Elementary application windows.
3180     *
3181     * @param friction the thumb scroll sensitivity friction. @c 0.1 for
3182     *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
3183     *        is proper.
3184     *
3185     * @see elm_thumbscroll_sensitivity_friction_get()
3186     * @note parameter value will get bound to 0.1 - 1.0 interval, always
3187     *
3188     * @ingroup Scrolling
3189     */
3190    EAPI void             elm_scroll_thumbscroll_sensitivity_friction_all_set(double friction);
3191
3192    /**
3193     * @}
3194     */
3195
3196    /**
3197     * @defgroup Scrollhints Scrollhints
3198     *
3199     * Objects when inside a scroller can scroll, but this may not always be
3200     * desirable in certain situations. This allows an object to hint to itself
3201     * and parents to "not scroll" in one of 2 ways. If any child object of a
3202     * scroller has pushed a scroll freeze or hold then it affects all parent
3203     * scrollers until all children have released them.
3204     *
3205     * 1. To hold on scrolling. This means just flicking and dragging may no
3206     * longer scroll, but pressing/dragging near an edge of the scroller will
3207     * still scroll. This is automatically used by the entry object when
3208     * selecting text.
3209     *
3210     * 2. To totally freeze scrolling. This means it stops. until
3211     * popped/released.
3212     *
3213     * @{
3214     */
3215
3216    /**
3217     * Push the scroll hold by 1
3218     *
3219     * This increments the scroll hold count by one. If it is more than 0 it will
3220     * take effect on the parents of the indicated object.
3221     *
3222     * @param obj The object
3223     * @ingroup Scrollhints
3224     */
3225    EAPI void             elm_object_scroll_hold_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
3226
3227    /**
3228     * Pop the scroll hold by 1
3229     *
3230     * This decrements the scroll hold count by one. If it is more than 0 it will
3231     * take effect on the parents of the indicated object.
3232     *
3233     * @param obj The object
3234     * @ingroup Scrollhints
3235     */
3236    EAPI void             elm_object_scroll_hold_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
3237
3238    /**
3239     * Push the scroll freeze by 1
3240     *
3241     * This increments the scroll freeze count by one. If it is more
3242     * than 0 it will take effect on the parents of the indicated
3243     * object.
3244     *
3245     * @param obj The object
3246     * @ingroup Scrollhints
3247     */
3248    EAPI void             elm_object_scroll_freeze_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
3249
3250    /**
3251     * Pop the scroll freeze by 1
3252     *
3253     * This decrements the scroll freeze count by one. If it is more
3254     * than 0 it will take effect on the parents of the indicated
3255     * object.
3256     *
3257     * @param obj The object
3258     * @ingroup Scrollhints
3259     */
3260    EAPI void             elm_object_scroll_freeze_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
3261
3262    /**
3263     * Lock the scrolling of the given widget (and thus all parents)
3264     *
3265     * This locks the given object from scrolling in the X axis (and implicitly
3266     * also locks all parent scrollers too from doing the same).
3267     *
3268     * @param obj The object
3269     * @param lock The lock state (1 == locked, 0 == unlocked)
3270     * @ingroup Scrollhints
3271     */
3272    EAPI void             elm_object_scroll_lock_x_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
3273
3274    /**
3275     * Lock the scrolling of the given widget (and thus all parents)
3276     *
3277     * This locks the given object from scrolling in the Y axis (and implicitly
3278     * also locks all parent scrollers too from doing the same).
3279     *
3280     * @param obj The object
3281     * @param lock The lock state (1 == locked, 0 == unlocked)
3282     * @ingroup Scrollhints
3283     */
3284    EAPI void             elm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
3285
3286    /**
3287     * Get the scrolling lock of the given widget
3288     *
3289     * This gets the lock for X axis scrolling.
3290     *
3291     * @param obj The object
3292     * @ingroup Scrollhints
3293     */
3294    EAPI Eina_Bool        elm_object_scroll_lock_x_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3295
3296    /**
3297     * Get the scrolling lock of the given widget
3298     *
3299     * This gets the lock for X axis scrolling.
3300     *
3301     * @param obj The object
3302     * @ingroup Scrollhints
3303     */
3304    EAPI Eina_Bool        elm_object_scroll_lock_y_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3305
3306    /**
3307     * @}
3308     */
3309
3310    /**
3311     * Send a signal to the widget edje object.
3312     *
3313     * This function sends a signal to the edje object of the obj. An
3314     * edje program can respond to a signal by specifying matching
3315     * 'signal' and 'source' fields.
3316     *
3317     * @param obj The object
3318     * @param emission The signal's name.
3319     * @param source The signal's source.
3320     * @ingroup General
3321     */
3322    EAPI void             elm_object_signal_emit(Evas_Object *obj, const char *emission, const char *source) EINA_ARG_NONNULL(1);
3323
3324    /**
3325     * Add a callback for a signal emitted by widget edje object.
3326     *
3327     * This function connects a callback function to a signal emitted by the
3328     * edje object of the obj.
3329     * Globs can occur in either the emission or source name.
3330     *
3331     * @param obj The object
3332     * @param emission The signal's name.
3333     * @param source The signal's source.
3334     * @param func The callback function to be executed when the signal is
3335     * emitted.
3336     * @param data A pointer to data to pass in to the callback function.
3337     * @ingroup General
3338     */
3339    EAPI void             elm_object_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func, void *data) EINA_ARG_NONNULL(1, 4);
3340
3341    /**
3342     * Remove a signal-triggered callback from a widget edje object.
3343     *
3344     * This function removes a callback, previoulsy attached to a
3345     * signal emitted by the edje object of the obj.  The parameters
3346     * emission, source and func must match exactly those passed to a
3347     * previous call to elm_object_signal_callback_add(). The data
3348     * pointer that was passed to this call will be returned.
3349     *
3350     * @param obj The object
3351     * @param emission The signal's name.
3352     * @param source The signal's source.
3353     * @param func The callback function to be executed when the signal is
3354     * emitted.
3355     * @return The data pointer
3356     * @ingroup General
3357     */
3358    EAPI void            *elm_object_signal_callback_del(Evas_Object *obj, const char *emission, const char *source, Edje_Signal_Cb func) EINA_ARG_NONNULL(1, 4);
3359
3360    /**
3361     * Add a callback for input events (key up, key down, mouse wheel)
3362     * on a given Elementary widget
3363     *
3364     * @param obj The widget to add an event callback on
3365     * @param func The callback function to be executed when the event
3366     * happens
3367     * @param data Data to pass in to @p func
3368     *
3369     * Every widget in an Elementary interface set to receive focus,
3370     * with elm_object_focus_allow_set(), will propagate @b all of its
3371     * key up, key down and mouse wheel input events up to its parent
3372     * object, and so on. All of the focusable ones in this chain which
3373     * had an event callback set, with this call, will be able to treat
3374     * those events. There are two ways of making the propagation of
3375     * these event upwards in the tree of widgets to @b cease:
3376     * - Just return @c EINA_TRUE on @p func. @c EINA_FALSE will mean
3377     *   the event was @b not processed, so the propagation will go on.
3378     * - The @c event_info pointer passed to @p func will contain the
3379     *   event's structure and, if you OR its @c event_flags inner
3380     *   value to @c EVAS_EVENT_FLAG_ON_HOLD, you're telling Elementary
3381     *   one has already handled it, thus killing the event's
3382     *   propagation, too.
3383     *
3384     * @note Your event callback will be issued on those events taking
3385     * place only if no other child widget of @obj has consumed the
3386     * event already.
3387     *
3388     * @note Not to be confused with @c
3389     * evas_object_event_callback_add(), which will add event callbacks
3390     * per type on general Evas objects (no event propagation
3391     * infrastructure taken in account).
3392     *
3393     * @note Not to be confused with @c
3394     * elm_object_signal_callback_add(), which will add callbacks to @b
3395     * signals coming from a widget's theme, not input events.
3396     *
3397     * @note Not to be confused with @c
3398     * edje_object_signal_callback_add(), which does the same as
3399     * elm_object_signal_callback_add(), but directly on an Edje
3400     * object.
3401     *
3402     * @note Not to be confused with @c
3403     * evas_object_smart_callback_add(), which adds callbacks to smart
3404     * objects' <b>smart events</b>, and not input events.
3405     *
3406     * @see elm_object_event_callback_del()
3407     *
3408     * @ingroup General
3409     */
3410    EAPI void             elm_object_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3411
3412    /**
3413     * Remove an event callback from a widget.
3414     *
3415     * This function removes a callback, previoulsy attached to event emission
3416     * by the @p obj.
3417     * The parameters func and data must match exactly those passed to
3418     * a previous call to elm_object_event_callback_add(). The data pointer that
3419     * was passed to this call will be returned.
3420     *
3421     * @param obj The object
3422     * @param func The callback function to be executed when the event is
3423     * emitted.
3424     * @param data Data to pass in to the callback function.
3425     * @return The data pointer
3426     * @ingroup General
3427     */
3428    EAPI void            *elm_object_event_callback_del(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3429
3430    /**
3431     * Adjust size of an element for finger usage.
3432     *
3433     * @param times_w How many fingers should fit horizontally
3434     * @param w Pointer to the width size to adjust
3435     * @param times_h How many fingers should fit vertically
3436     * @param h Pointer to the height size to adjust
3437     *
3438     * This takes width and height sizes (in pixels) as input and a
3439     * size multiple (which is how many fingers you want to place
3440     * within the area, being "finger" the size set by
3441     * elm_finger_size_set()), and adjusts the size to be large enough
3442     * to accommodate the resulting size -- if it doesn't already
3443     * accommodate it. On return the @p w and @p h sizes pointed to by
3444     * these parameters will be modified, on those conditions.
3445     *
3446     * @note This is kind of a low level Elementary call, most useful
3447     * on size evaluation times for widgets. An external user wouldn't
3448     * be calling, most of the time.
3449     *
3450     * @ingroup Fingers
3451     */
3452    EAPI void             elm_coords_finger_size_adjust(int times_w, Evas_Coord *w, int times_h, Evas_Coord *h);
3453
3454    /**
3455     * Get the duration for occuring long press event.
3456     *
3457     * @return Timeout for long press event
3458     * @ingroup Longpress
3459     */
3460    EAPI double           elm_longpress_timeout_get(void);
3461
3462    /**
3463     * Set the duration for occuring long press event.
3464     *
3465     * @param lonpress_timeout Timeout for long press event
3466     * @ingroup Longpress
3467     */
3468    EAPI void             elm_longpress_timeout_set(double longpress_timeout);
3469
3470    /**
3471     * @defgroup Debug Debug
3472     * don't use it unless you are sure
3473     *
3474     * @{
3475     */
3476
3477    /**
3478     * Print Tree object hierarchy in stdout
3479     *
3480     * @param obj The root object
3481     * @ingroup Debug
3482     */
3483    EAPI void             elm_object_tree_dump(const Evas_Object *top);
3484
3485    /**
3486     * Print Elm Objects tree hierarchy in file as dot(graphviz) syntax.
3487     *
3488     * @param obj The root object
3489     * @param file The path of output file
3490     * @ingroup Debug
3491     */
3492    EAPI void             elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
3493
3494    /**
3495     * @}
3496     */
3497
3498    /**
3499     * @defgroup Theme Theme
3500     *
3501     * Elementary uses Edje to theme its widgets, naturally. But for the most
3502     * part this is hidden behind a simpler interface that lets the user set
3503     * extensions and choose the style of widgets in a much easier way.
3504     *
3505     * Instead of thinking in terms of paths to Edje files and their groups
3506     * each time you want to change the appearance of a widget, Elementary
3507     * works so you can add any theme file with extensions or replace the
3508     * main theme at one point in the application, and then just set the style
3509     * of widgets with elm_object_style_set() and related functions. Elementary
3510     * will then look in its list of themes for a matching group and apply it,
3511     * and when the theme changes midway through the application, all widgets
3512     * will be updated accordingly.
3513     *
3514     * There are three concepts you need to know to understand how Elementary
3515     * theming works: default theme, extensions and overlays.
3516     *
3517     * Default theme, obviously enough, is the one that provides the default
3518     * look of all widgets. End users can change the theme used by Elementary
3519     * by setting the @c ELM_THEME environment variable before running an
3520     * application, or globally for all programs using the @c elementary_config
3521     * utility. Applications can change the default theme using elm_theme_set(),
3522     * but this can go against the user wishes, so it's not an adviced practice.
3523     *
3524     * Ideally, applications should find everything they need in the already
3525     * provided theme, but there may be occasions when that's not enough and
3526     * custom styles are required to correctly express the idea. For this
3527     * cases, Elementary has extensions.
3528     *
3529     * Extensions allow the application developer to write styles of its own
3530     * to apply to some widgets. This requires knowledge of how each widget
3531     * is themed, as extensions will always replace the entire group used by
3532     * the widget, so important signals and parts need to be there for the
3533     * object to behave properly (see documentation of Edje for details).
3534     * Once the theme for the extension is done, the application needs to add
3535     * it to the list of themes Elementary will look into, using
3536     * elm_theme_extension_add(), and set the style of the desired widgets as
3537     * he would normally with elm_object_style_set().
3538     *
3539     * Overlays, on the other hand, can replace the look of all widgets by
3540     * overriding the default style. Like extensions, it's up to the application
3541     * developer to write the theme for the widgets it wants, the difference
3542     * being that when looking for the theme, Elementary will check first the
3543     * list of overlays, then the set theme and lastly the list of extensions,
3544     * so with overlays it's possible to replace the default view and every
3545     * widget will be affected. This is very much alike to setting the whole
3546     * theme for the application and will probably clash with the end user
3547     * options, not to mention the risk of ending up with not matching styles
3548     * across the program. Unless there's a very special reason to use them,
3549     * overlays should be avoided for the resons exposed before.
3550     *
3551     * All these theme lists are handled by ::Elm_Theme instances. Elementary
3552     * keeps one default internally and every function that receives one of
3553     * these can be called with NULL to refer to this default (except for
3554     * elm_theme_free()). It's possible to create a new instance of a
3555     * ::Elm_Theme to set other theme for a specific widget (and all of its
3556     * children), but this is as discouraged, if not even more so, than using
3557     * overlays. Don't use this unless you really know what you are doing.
3558     *
3559     * But to be less negative about things, you can look at the following
3560     * examples:
3561     * @li @ref theme_example_01 "Using extensions"
3562     * @li @ref theme_example_02 "Using overlays"
3563     *
3564     * @{
3565     */
3566    /**
3567     * @typedef Elm_Theme
3568     *
3569     * Opaque handler for the list of themes Elementary looks for when
3570     * rendering widgets.
3571     *
3572     * Stay out of this unless you really know what you are doing. For most
3573     * cases, sticking to the default is all a developer needs.
3574     */
3575    typedef struct _Elm_Theme Elm_Theme;
3576
3577    /**
3578     * Create a new specific theme
3579     *
3580     * This creates an empty specific theme that only uses the default theme. A
3581     * specific theme has its own private set of extensions and overlays too
3582     * (which are empty by default). Specific themes do not fall back to themes
3583     * of parent objects. They are not intended for this use. Use styles, overlays
3584     * and extensions when needed, but avoid specific themes unless there is no
3585     * other way (example: you want to have a preview of a new theme you are
3586     * selecting in a "theme selector" window. The preview is inside a scroller
3587     * and should display what the theme you selected will look like, but not
3588     * actually apply it yet. The child of the scroller will have a specific
3589     * theme set to show this preview before the user decides to apply it to all
3590     * applications).
3591     */
3592    EAPI Elm_Theme       *elm_theme_new(void);
3593    /**
3594     * Free a specific theme
3595     *
3596     * @param th The theme to free
3597     *
3598     * This frees a theme created with elm_theme_new().
3599     */
3600    EAPI void             elm_theme_free(Elm_Theme *th);
3601    /**
3602     * Copy the theme fom the source to the destination theme
3603     *
3604     * @param th The source theme to copy from
3605     * @param thdst The destination theme to copy data to
3606     *
3607     * This makes a one-time static copy of all the theme config, extensions
3608     * and overlays from @p th to @p thdst. If @p th references a theme, then
3609     * @p thdst is also set to reference it, with all the theme settings,
3610     * overlays and extensions that @p th had.
3611     */
3612    EAPI void             elm_theme_copy(Elm_Theme *th, Elm_Theme *thdst);
3613    /**
3614     * Tell the source theme to reference the ref theme
3615     *
3616     * @param th The theme that will do the referencing
3617     * @param thref The theme that is the reference source
3618     *
3619     * This clears @p th to be empty and then sets it to refer to @p thref
3620     * so @p th acts as an override to @p thref, but where its overrides
3621     * don't apply, it will fall through to @p thref for configuration.
3622     */
3623    EAPI void             elm_theme_ref_set(Elm_Theme *th, Elm_Theme *thref);
3624    /**
3625     * Return the theme referred to
3626     *
3627     * @param th The theme to get the reference from
3628     * @return The referenced theme handle
3629     *
3630     * This gets the theme set as the reference theme by elm_theme_ref_set().
3631     * If no theme is set as a reference, NULL is returned.
3632     */
3633    EAPI Elm_Theme       *elm_theme_ref_get(Elm_Theme *th);
3634    /**
3635     * Return the default theme
3636     *
3637     * @return The default theme handle
3638     *
3639     * This returns the internal default theme setup handle that all widgets
3640     * use implicitly unless a specific theme is set. This is also often use
3641     * as a shorthand of NULL.
3642     */
3643    EAPI Elm_Theme       *elm_theme_default_get(void);
3644    /**
3645     * Prepends a theme overlay to the list of overlays
3646     *
3647     * @param th The theme to add to, or if NULL, the default theme
3648     * @param item The Edje file path to be used
3649     *
3650     * Use this if your application needs to provide some custom overlay theme
3651     * (An Edje file that replaces some default styles of widgets) where adding
3652     * new styles, or changing system theme configuration is not possible. Do
3653     * NOT use this instead of a proper system theme configuration. Use proper
3654     * configuration files, profiles, environment variables etc. to set a theme
3655     * so that the theme can be altered by simple confiugration by a user. Using
3656     * this call to achieve that effect is abusing the API and will create lots
3657     * of trouble.
3658     *
3659     * @see elm_theme_extension_add()
3660     */
3661    EAPI void             elm_theme_overlay_add(Elm_Theme *th, const char *item);
3662    /**
3663     * Delete a theme overlay from the list of overlays
3664     *
3665     * @param th The theme to delete from, or if NULL, the default theme
3666     * @param item The name of the theme overlay
3667     *
3668     * @see elm_theme_overlay_add()
3669     */
3670    EAPI void             elm_theme_overlay_del(Elm_Theme *th, const char *item);
3671    /**
3672     * Appends a theme extension to the list of extensions.
3673     *
3674     * @param th The theme to add to, or if NULL, the default theme
3675     * @param item The Edje file path to be used
3676     *
3677     * This is intended when an application needs more styles of widgets or new
3678     * widget themes that the default does not provide (or may not provide). The
3679     * application has "extended" usage by coming up with new custom style names
3680     * for widgets for specific uses, but as these are not "standard", they are
3681     * not guaranteed to be provided by a default theme. This means the
3682     * application is required to provide these extra elements itself in specific
3683     * Edje files. This call adds one of those Edje files to the theme search
3684     * path to be search after the default theme. The use of this call is
3685     * encouraged when default styles do not meet the needs of the application.
3686     * Use this call instead of elm_theme_overlay_add() for almost all cases.
3687     *
3688     * @see elm_object_style_set()
3689     */
3690    EAPI void             elm_theme_extension_add(Elm_Theme *th, const char *item);
3691    /**
3692     * Deletes a theme extension from the list of extensions.
3693     *
3694     * @param th The theme to delete from, or if NULL, the default theme
3695     * @param item The name of the theme extension
3696     *
3697     * @see elm_theme_extension_add()
3698     */
3699    EAPI void             elm_theme_extension_del(Elm_Theme *th, const char *item);
3700    /**
3701     * Set the theme search order for the given theme
3702     *
3703     * @param th The theme to set the search order, or if NULL, the default theme
3704     * @param theme Theme search string
3705     *
3706     * This sets the search string for the theme in path-notation from first
3707     * theme to search, to last, delimited by the : character. Example:
3708     *
3709     * "shiny:/path/to/file.edj:default"
3710     *
3711     * See the ELM_THEME environment variable for more information.
3712     *
3713     * @see elm_theme_get()
3714     * @see elm_theme_list_get()
3715     */
3716    EAPI void             elm_theme_set(Elm_Theme *th, const char *theme);
3717    /**
3718     * Return the theme search order
3719     *
3720     * @param th The theme to get the search order, or if NULL, the default theme
3721     * @return The internal search order path
3722     *
3723     * This function returns a colon separated string of theme elements as
3724     * returned by elm_theme_list_get().
3725     *
3726     * @see elm_theme_set()
3727     * @see elm_theme_list_get()
3728     */
3729    EAPI const char      *elm_theme_get(Elm_Theme *th);
3730    /**
3731     * Return a list of theme elements to be used in a theme.
3732     *
3733     * @param th Theme to get the list of theme elements from.
3734     * @return The internal list of theme elements
3735     *
3736     * This returns the internal list of theme elements (will only be valid as
3737     * long as the theme is not modified by elm_theme_set() or theme is not
3738     * freed by elm_theme_free(). This is a list of strings which must not be
3739     * altered as they are also internal. If @p th is NULL, then the default
3740     * theme element list is returned.
3741     *
3742     * A theme element can consist of a full or relative path to a .edj file,
3743     * or a name, without extension, for a theme to be searched in the known
3744     * theme paths for Elemementary.
3745     *
3746     * @see elm_theme_set()
3747     * @see elm_theme_get()
3748     */
3749    EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
3750    /**
3751     * Return the full patrh for a theme element
3752     *
3753     * @param f The theme element name
3754     * @param in_search_path Pointer to a boolean to indicate if item is in the search path or not
3755     * @return The full path to the file found.
3756     *
3757     * This returns a string you should free with free() on success, NULL on
3758     * failure. This will search for the given theme element, and if it is a
3759     * full or relative path element or a simple searchable name. The returned
3760     * path is the full path to the file, if searched, and the file exists, or it
3761     * is simply the full path given in the element or a resolved path if
3762     * relative to home. The @p in_search_path boolean pointed to is set to
3763     * EINA_TRUE if the file was a searchable file andis in the search path,
3764     * and EINA_FALSE otherwise.
3765     */
3766    EAPI char            *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path);
3767    /**
3768     * Flush the current theme.
3769     *
3770     * @param th Theme to flush
3771     *
3772     * This flushes caches that let elementary know where to find theme elements
3773     * in the given theme. If @p th is NULL, then the default theme is flushed.
3774     * Call this function if source theme data has changed in such a way as to
3775     * make any caches Elementary kept invalid.
3776     */
3777    EAPI void             elm_theme_flush(Elm_Theme *th);
3778    /**
3779     * This flushes all themes (default and specific ones).
3780     *
3781     * This will flush all themes in the current application context, by calling
3782     * elm_theme_flush() on each of them.
3783     */
3784    EAPI void             elm_theme_full_flush(void);
3785    /**
3786     * Set the theme for all elementary using applications on the current display
3787     *
3788     * @param theme The name of the theme to use. Format same as the ELM_THEME
3789     * environment variable.
3790     */
3791    EAPI void             elm_theme_all_set(const char *theme);
3792    /**
3793     * Return a list of theme elements in the theme search path
3794     *
3795     * @return A list of strings that are the theme element names.
3796     *
3797     * This lists all available theme files in the standard Elementary search path
3798     * for theme elements, and returns them in alphabetical order as theme
3799     * element names in a list of strings. Free this with
3800     * elm_theme_name_available_list_free() when you are done with the list.
3801     */
3802    EAPI Eina_List       *elm_theme_name_available_list_new(void);
3803    /**
3804     * Free the list returned by elm_theme_name_available_list_new()
3805     *
3806     * This frees the list of themes returned by
3807     * elm_theme_name_available_list_new(). Once freed the list should no longer
3808     * be used. a new list mys be created.
3809     */
3810    EAPI void             elm_theme_name_available_list_free(Eina_List *list);
3811    /**
3812     * Set a specific theme to be used for this object and its children
3813     *
3814     * @param obj The object to set the theme on
3815     * @param th The theme to set
3816     *
3817     * This sets a specific theme that will be used for the given object and any
3818     * child objects it has. If @p th is NULL then the theme to be used is
3819     * cleared and the object will inherit its theme from its parent (which
3820     * ultimately will use the default theme if no specific themes are set).
3821     *
3822     * Use special themes with great care as this will annoy users and make
3823     * configuration difficult. Avoid any custom themes at all if it can be
3824     * helped.
3825     */
3826    EAPI void             elm_object_theme_set(Evas_Object *obj, Elm_Theme *th) EINA_ARG_NONNULL(1);
3827    /**
3828     * Get the specific theme to be used
3829     *
3830     * @param obj The object to get the specific theme from
3831     * @return The specifc theme set.
3832     *
3833     * This will return a specific theme set, or NULL if no specific theme is
3834     * set on that object. It will not return inherited themes from parents, only
3835     * the specific theme set for that specific object. See elm_object_theme_set()
3836     * for more information.
3837     */
3838    EAPI Elm_Theme       *elm_object_theme_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3839
3840    /**
3841     * Get a data item from a theme
3842     *
3843     * @param th The theme, or NULL for default theme
3844     * @param key The data key to search with
3845     * @return The data value, or NULL on failure
3846     *
3847     * This function is used to return data items from edc in @p th, an overlay, or an extension.
3848     * It works the same way as edje_file_data_get() except that the return is stringshared.
3849     */
3850    EAPI const char      *elm_theme_data_get(Elm_Theme *th, const char *key) EINA_ARG_NONNULL(2);
3851    /**
3852     * @}
3853     */
3854
3855    /* win */
3856    /** @defgroup Win Win
3857     *
3858     * @image html img/widget/win/preview-00.png
3859     * @image latex img/widget/win/preview-00.eps
3860     *
3861     * The window class of Elementary.  Contains functions to manipulate
3862     * windows. The Evas engine used to render the window contents is specified
3863     * in the system or user elementary config files (whichever is found last),
3864     * and can be overridden with the ELM_ENGINE environment variable for
3865     * testing.  Engines that may be supported (depending on Evas and Ecore-Evas
3866     * compilation setup and modules actually installed at runtime) are (listed
3867     * in order of best supported and most likely to be complete and work to
3868     * lowest quality).
3869     *
3870     * @li "x11", "x", "software-x11", "software_x11" (Software rendering in X11)
3871     * @li "gl", "opengl", "opengl-x11", "opengl_x11" (OpenGL or OpenGL-ES2
3872     * rendering in X11)
3873     * @li "shot:..." (Virtual screenshot renderer - renders to output file and
3874     * exits)
3875     * @li "fb", "software-fb", "software_fb" (Linux framebuffer direct software
3876     * rendering)
3877     * @li "sdl", "software-sdl", "software_sdl" (SDL software rendering to SDL
3878     * buffer)
3879     * @li "gl-sdl", "gl_sdl", "opengl-sdl", "opengl_sdl" (OpenGL or OpenGL-ES2
3880     * rendering using SDL as the buffer)
3881     * @li "gdi", "software-gdi", "software_gdi" (Windows WIN32 rendering via
3882     * GDI with software)
3883     * @li "dfb", "directfb" (Rendering to a DirectFB window)
3884     * @li "x11-8", "x8", "software-8-x11", "software_8_x11" (Rendering in
3885     * grayscale using dedicated 8bit software engine in X11)
3886     * @li "x11-16", "x16", "software-16-x11", "software_16_x11" (Rendering in
3887     * X11 using 16bit software engine)
3888     * @li "wince-gdi", "software-16-wince-gdi", "software_16_wince_gdi"
3889     * (Windows CE rendering via GDI with 16bit software renderer)
3890     * @li "sdl-16", "software-16-sdl", "software_16_sdl" (Rendering to SDL
3891     * buffer with 16bit software renderer)
3892     * @li "ews" (rendering to EWS - Ecore + Evas Single Process Windowing System)
3893     * @li "gl-cocoa", "gl_cocoa", "opengl-cocoa", "opengl_cocoa" (OpenGL rendering in Cocoa)
3894     * @li "psl1ght" (PS3 rendering using PSL1GHT)
3895     *
3896     * All engines use a simple string to select the engine to render, EXCEPT
3897     * the "shot" engine. This actually encodes the output of the virtual
3898     * screenshot and how long to delay in the engine string. The engine string
3899     * is encoded in the following way:
3900     *
3901     *   "shot:[delay=XX][:][repeat=DDD][:][file=XX]"
3902     *
3903     * Where options are separated by a ":" char if more than one option is
3904     * given, with delay, if provided being the first option and file the last
3905     * (order is important). The delay specifies how long to wait after the
3906     * window is shown before doing the virtual "in memory" rendering and then
3907     * save the output to the file specified by the file option (and then exit).
3908     * If no delay is given, the default is 0.5 seconds. If no file is given the
3909     * default output file is "out.png". Repeat option is for continous
3910     * capturing screenshots. Repeat range is from 1 to 999 and filename is
3911     * fixed to "out001.png" Some examples of using the shot engine:
3912     *
3913     *   ELM_ENGINE="shot:delay=1.0:repeat=5:file=elm_test.png" elementary_test
3914     *   ELM_ENGINE="shot:delay=1.0:file=elm_test.png" elementary_test
3915     *   ELM_ENGINE="shot:file=elm_test2.png" elementary_test
3916     *   ELM_ENGINE="shot:delay=2.0" elementary_test
3917     *   ELM_ENGINE="shot:" elementary_test
3918     *
3919     * Signals that you can add callbacks for are:
3920     *
3921     * @li "delete,request": the user requested to close the window. See
3922     * elm_win_autodel_set().
3923     * @li "focus,in": window got focus
3924     * @li "focus,out": window lost focus
3925     * @li "moved": window that holds the canvas was moved
3926     *
3927     * Examples:
3928     * @li @ref win_example_01
3929     *
3930     * @{
3931     */
3932    /**
3933     * Defines the types of window that can be created
3934     *
3935     * These are hints set on the window so that a running Window Manager knows
3936     * how the window should be handled and/or what kind of decorations it
3937     * should have.
3938     *
3939     * Currently, only the X11 backed engines use them.
3940     */
3941    typedef enum _Elm_Win_Type
3942      {
3943         ELM_WIN_BASIC, /**< A normal window. Indicates a normal, top-level
3944                          window. Almost every window will be created with this
3945                          type. */
3946         ELM_WIN_DIALOG_BASIC, /**< Used for simple dialog windows/ */
3947         ELM_WIN_DESKTOP, /**< For special desktop windows, like a background
3948                            window holding desktop icons. */
3949         ELM_WIN_DOCK, /**< The window is used as a dock or panel. Usually would
3950                         be kept on top of any other window by the Window
3951                         Manager. */
3952         ELM_WIN_TOOLBAR, /**< The window is used to hold a floating toolbar, or
3953                            similar. */
3954         ELM_WIN_MENU, /**< Similar to #ELM_WIN_TOOLBAR. */
3955         ELM_WIN_UTILITY, /**< A persistent utility window, like a toolbox or
3956                            pallete. */
3957         ELM_WIN_SPLASH, /**< Splash window for a starting up application. */
3958         ELM_WIN_DROPDOWN_MENU, /**< The window is a dropdown menu, as when an
3959                                  entry in a menubar is clicked. Typically used
3960                                  with elm_win_override_set(). This hint exists
3961                                  for completion only, as the EFL way of
3962                                  implementing a menu would not normally use a
3963                                  separate window for its contents. */
3964         ELM_WIN_POPUP_MENU, /**< Like #ELM_WIN_DROPDOWN_MENU, but for the menu
3965                               triggered by right-clicking an object. */
3966         ELM_WIN_TOOLTIP, /**< The window is a tooltip. A short piece of
3967                            explanatory text that typically appear after the
3968                            mouse cursor hovers over an object for a while.
3969                            Typically used with elm_win_override_set() and also
3970                            not very commonly used in the EFL. */
3971         ELM_WIN_NOTIFICATION, /**< A notification window, like a warning about
3972                                 battery life or a new E-Mail received. */
3973         ELM_WIN_COMBO, /**< A window holding the contents of a combo box. Not
3974                          usually used in the EFL. */
3975         ELM_WIN_DND, /**< Used to indicate the window is a representation of an
3976                        object being dragged across different windows, or even
3977                        applications. Typically used with
3978                        elm_win_override_set(). */
3979         ELM_WIN_INLINED_IMAGE, /**< The window is rendered onto an image
3980                                  buffer. No actual window is created for this
3981                                  type, instead the window and all of its
3982                                  contents will be rendered to an image buffer.
3983                                  This allows to have children window inside a
3984                                  parent one just like any other object would
3985                                  be, and do other things like applying @c
3986                                  Evas_Map effects to it. This is the only type
3987                                  of window that requires the @c parent
3988                                  parameter of elm_win_add() to be a valid @c
3989                                  Evas_Object. */
3990      } Elm_Win_Type;
3991
3992    /**
3993     * The differents layouts that can be requested for the virtual keyboard.
3994     *
3995     * When the application window is being managed by Illume, it may request
3996     * any of the following layouts for the virtual keyboard.
3997     */
3998    typedef enum _Elm_Win_Keyboard_Mode
3999      {
4000         ELM_WIN_KEYBOARD_UNKNOWN, /**< Unknown keyboard state */
4001         ELM_WIN_KEYBOARD_OFF, /**< Request to deactivate the keyboard */
4002         ELM_WIN_KEYBOARD_ON, /**< Enable keyboard with default layout */
4003         ELM_WIN_KEYBOARD_ALPHA, /**< Alpha (a-z) keyboard layout */
4004         ELM_WIN_KEYBOARD_NUMERIC, /**< Numeric keyboard layout */
4005         ELM_WIN_KEYBOARD_PIN, /**< PIN keyboard layout */
4006         ELM_WIN_KEYBOARD_PHONE_NUMBER, /**< Phone keyboard layout */
4007         ELM_WIN_KEYBOARD_HEX, /**< Hexadecimal numeric keyboard layout */
4008         ELM_WIN_KEYBOARD_TERMINAL, /**< Full (QUERTY) keyboard layout */
4009         ELM_WIN_KEYBOARD_PASSWORD, /**< Password keyboard layout */
4010         ELM_WIN_KEYBOARD_IP, /**< IP keyboard layout */
4011         ELM_WIN_KEYBOARD_HOST, /**< Host keyboard layout */
4012         ELM_WIN_KEYBOARD_FILE, /**< File keyboard layout */
4013         ELM_WIN_KEYBOARD_URL, /**< URL keyboard layout */
4014         ELM_WIN_KEYBOARD_KEYPAD, /**< Keypad layout */
4015         ELM_WIN_KEYBOARD_J2ME /**< J2ME keyboard layout */
4016      } Elm_Win_Keyboard_Mode;
4017
4018    /**
4019     * Available commands that can be sent to the Illume manager.
4020     *
4021     * When running under an Illume session, a window may send commands to the
4022     * Illume manager to perform different actions.
4023     */
4024    typedef enum _Elm_Illume_Command
4025      {
4026         ELM_ILLUME_COMMAND_FOCUS_BACK, /**< Reverts focus to the previous
4027                                          window */
4028         ELM_ILLUME_COMMAND_FOCUS_FORWARD, /**< Sends focus to the next window\
4029                                             in the list */
4030         ELM_ILLUME_COMMAND_FOCUS_HOME, /**< Hides all windows to show the Home
4031                                          screen */
4032         ELM_ILLUME_COMMAND_CLOSE /**< Closes the currently active window */
4033      } Elm_Illume_Command;
4034
4035    /**
4036     * Adds a window object. If this is the first window created, pass NULL as
4037     * @p parent.
4038     *
4039     * @param parent Parent object to add the window to, or NULL
4040     * @param name The name of the window
4041     * @param type The window type, one of #Elm_Win_Type.
4042     *
4043     * The @p parent paramter can be @c NULL for every window @p type except
4044     * #ELM_WIN_INLINED_IMAGE, which needs a parent to retrieve the canvas on
4045     * which the image object will be created.
4046     *
4047     * @return The created object, or NULL on failure
4048     */
4049    EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type);
4050    /**
4051     * Adds a window object with standard setup
4052     *
4053     * @param name The name of the window
4054     * @param title The title for the window
4055     *
4056     * This creates a window like elm_win_add() but also puts in a standard
4057     * background with elm_bg_add(), as well as setting the window title to
4058     * @p title. The window type created is of type ELM_WIN_BASIC, with NULL
4059     * as the parent widget.
4060     *
4061     * @return The created object, or NULL on failure
4062     *
4063     * @see elm_win_add()
4064     */
4065    EAPI Evas_Object *elm_win_util_standard_add(const char *name, const char *title);
4066    /**
4067     * Add @p subobj as a resize object of window @p obj.
4068     *
4069     *
4070     * Setting an object as a resize object of the window means that the
4071     * @p subobj child's size and position will be controlled by the window
4072     * directly. That is, the object will be resized to match the window size
4073     * and should never be moved or resized manually by the developer.
4074     *
4075     * In addition, resize objects of the window control what the minimum size
4076     * of it will be, as well as whether it can or not be resized by the user.
4077     *
4078     * For the end user to be able to resize a window by dragging the handles
4079     * or borders provided by the Window Manager, or using any other similar
4080     * mechanism, all of the resize objects in the window should have their
4081     * evas_object_size_hint_weight_set() set to EVAS_HINT_EXPAND.
4082     *
4083     * Also notice that the window can get resized to the current size of the
4084     * object if the EVAS_HINT_EXPAND is set @b after the call to
4085     * elm_win_resize_object_add(). So if the object should get resized to the
4086     * size of the window, set this hint @b before adding it as a resize object
4087     * (this happens because the size of the window and the object are evaluated
4088     * as soon as the object is added to the window).
4089     *
4090     * @param obj The window object
4091     * @param subobj The resize object to add
4092     */
4093    EAPI void         elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
4094    /**
4095     * Delete @p subobj as a resize object of window @p obj.
4096     *
4097     * This function removes the object @p subobj from the resize objects of
4098     * the window @p obj. It will not delete the object itself, which will be
4099     * left unmanaged and should be deleted by the developer, manually handled
4100     * or set as child of some other container.
4101     *
4102     * @param obj The window object
4103     * @param subobj The resize object to add
4104     */
4105    EAPI void         elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
4106    /**
4107     * Set the title of the window
4108     *
4109     * @param obj The window object
4110     * @param title The title to set
4111     */
4112    EAPI void         elm_win_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
4113    /**
4114     * Get the title of the window
4115     *
4116     * The returned string is an internal one and should not be freed or
4117     * modified. It will also be rendered invalid if a new title is set or if
4118     * the window is destroyed.
4119     *
4120     * @param obj The window object
4121     * @return The title
4122     */
4123    EAPI const char  *elm_win_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4124    /**
4125     * Set the window's autodel state.
4126     *
4127     * When closing the window in any way outside of the program control, like
4128     * pressing the X button in the titlebar or using a command from the
4129     * Window Manager, a "delete,request" signal is emitted to indicate that
4130     * this event occurred and the developer can take any action, which may
4131     * include, or not, destroying the window object.
4132     *
4133     * When the @p autodel parameter is set, the window will be automatically
4134     * destroyed when this event occurs, after the signal is emitted.
4135     * If @p autodel is @c EINA_FALSE, then the window will not be destroyed
4136     * and is up to the program to do so when it's required.
4137     *
4138     * @param obj The window object
4139     * @param autodel If true, the window will automatically delete itself when
4140     * closed
4141     */
4142    EAPI void         elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel) EINA_ARG_NONNULL(1);
4143    /**
4144     * Get the window's autodel state.
4145     *
4146     * @param obj The window object
4147     * @return If the window will automatically delete itself when closed
4148     *
4149     * @see elm_win_autodel_set()
4150     */
4151    EAPI Eina_Bool    elm_win_autodel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4152    /**
4153     * Activate a window object.
4154     *
4155     * This function sends a request to the Window Manager to activate the
4156     * window pointed by @p obj. If honored by the WM, the window will receive
4157     * the keyboard focus.
4158     *
4159     * @note This is just a request that a Window Manager may ignore, so calling
4160     * this function does not ensure in any way that the window will be the
4161     * active one after it.
4162     *
4163     * @param obj The window object
4164     */
4165    EAPI void         elm_win_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
4166    /**
4167     * Lower a window object.
4168     *
4169     * Places the window pointed by @p obj at the bottom of the stack, so that
4170     * no other window is covered by it.
4171     *
4172     * If elm_win_override_set() is not set, the Window Manager may ignore this
4173     * request.
4174     *
4175     * @param obj The window object
4176     */
4177    EAPI void         elm_win_lower(Evas_Object *obj) EINA_ARG_NONNULL(1);
4178    /**
4179     * Raise a window object.
4180     *
4181     * Places the window pointed by @p obj at the top of the stack, so that it's
4182     * not covered by any other window.
4183     *
4184     * If elm_win_override_set() is not set, the Window Manager may ignore this
4185     * request.
4186     *
4187     * @param obj The window object
4188     */
4189    EAPI void         elm_win_raise(Evas_Object *obj) EINA_ARG_NONNULL(1);
4190    /**
4191     * Set the borderless state of a window.
4192     *
4193     * This function requests the Window Manager to not draw any decoration
4194     * around the window.
4195     *
4196     * @param obj The window object
4197     * @param borderless If true, the window is borderless
4198     */
4199    EAPI void         elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless) EINA_ARG_NONNULL(1);
4200    /**
4201     * Get the borderless state of a window.
4202     *
4203     * @param obj The window object
4204     * @return If true, the window is borderless
4205     */
4206    EAPI Eina_Bool    elm_win_borderless_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4207    /**
4208     * Set the shaped state of a window.
4209     *
4210     * Shaped windows, when supported, will render the parts of the window that
4211     * has no content, transparent.
4212     *
4213     * If @p shaped is EINA_FALSE, then it is strongly adviced to have some
4214     * background object or cover the entire window in any other way, or the
4215     * parts of the canvas that have no data will show framebuffer artifacts.
4216     *
4217     * @param obj The window object
4218     * @param shaped If true, the window is shaped
4219     *
4220     * @see elm_win_alpha_set()
4221     */
4222    EAPI void         elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped) EINA_ARG_NONNULL(1);
4223    /**
4224     * Get the shaped state of a window.
4225     *
4226     * @param obj The window object
4227     * @return If true, the window is shaped
4228     *
4229     * @see elm_win_shaped_set()
4230     */
4231    EAPI Eina_Bool    elm_win_shaped_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4232    /**
4233     * Set the alpha channel state of a window.
4234     *
4235     * If @p alpha is EINA_TRUE, the alpha channel of the canvas will be enabled
4236     * possibly making parts of the window completely or partially transparent.
4237     * This is also subject to the underlying system supporting it, like for
4238     * example, running under a compositing manager. If no compositing is
4239     * available, enabling this option will instead fallback to using shaped
4240     * windows, with elm_win_shaped_set().
4241     *
4242     * @param obj The window object
4243     * @param alpha If true, the window has an alpha channel
4244     *
4245     * @see elm_win_alpha_set()
4246     */
4247    EAPI void         elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
4248    /**
4249     * Get the transparency state of a window.
4250     *
4251     * @param obj The window object
4252     * @return If true, the window is transparent
4253     *
4254     * @see elm_win_transparent_set()
4255     */
4256    EAPI Eina_Bool    elm_win_transparent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4257    /**
4258     * Set the transparency state of a window.
4259     *
4260     * Use elm_win_alpha_set() instead.
4261     *
4262     * @param obj The window object
4263     * @param transparent If true, the window is transparent
4264     *
4265     * @see elm_win_alpha_set()
4266     */
4267    EAPI void         elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent) EINA_ARG_NONNULL(1);
4268    /**
4269     * Get the alpha channel state of a window.
4270     *
4271     * @param obj The window object
4272     * @return If true, the window has an alpha channel
4273     */
4274    EAPI Eina_Bool    elm_win_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4275    /**
4276     * Set the override state of a window.
4277     *
4278     * A window with @p override set to EINA_TRUE will not be managed by the
4279     * Window Manager. This means that no decorations of any kind will be shown
4280     * for it, moving and resizing must be handled by the application, as well
4281     * as the window visibility.
4282     *
4283     * This should not be used for normal windows, and even for not so normal
4284     * ones, it should only be used when there's a good reason and with a lot
4285     * of care. Mishandling override windows may result situations that
4286     * disrupt the normal workflow of the end user.
4287     *
4288     * @param obj The window object
4289     * @param override If true, the window is overridden
4290     */
4291    EAPI void         elm_win_override_set(Evas_Object *obj, Eina_Bool override) EINA_ARG_NONNULL(1);
4292    /**
4293     * Get the override state of a window.
4294     *
4295     * @param obj The window object
4296     * @return If true, the window is overridden
4297     *
4298     * @see elm_win_override_set()
4299     */
4300    EAPI Eina_Bool    elm_win_override_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4301    /**
4302     * Set the fullscreen state of a window.
4303     *
4304     * @param obj The window object
4305     * @param fullscreen If true, the window is fullscreen
4306     */
4307    EAPI void         elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen) EINA_ARG_NONNULL(1);
4308    /**
4309     * Get the fullscreen state of a window.
4310     *
4311     * @param obj The window object
4312     * @return If true, the window is fullscreen
4313     */
4314    EAPI Eina_Bool    elm_win_fullscreen_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4315    /**
4316     * Set the maximized state of a window.
4317     *
4318     * @param obj The window object
4319     * @param maximized If true, the window is maximized
4320     */
4321    EAPI void         elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized) EINA_ARG_NONNULL(1);
4322    /**
4323     * Get the maximized state of a window.
4324     *
4325     * @param obj The window object
4326     * @return If true, the window is maximized
4327     */
4328    EAPI Eina_Bool    elm_win_maximized_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4329    /**
4330     * Set the iconified state of a window.
4331     *
4332     * @param obj The window object
4333     * @param iconified If true, the window is iconified
4334     */
4335    EAPI void         elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified) EINA_ARG_NONNULL(1);
4336    /**
4337     * Get the iconified state of a window.
4338     *
4339     * @param obj The window object
4340     * @return If true, the window is iconified
4341     */
4342    EAPI Eina_Bool    elm_win_iconified_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4343    /**
4344     * Set the layer of the window.
4345     *
4346     * What this means exactly will depend on the underlying engine used.
4347     *
4348     * In the case of X11 backed engines, the value in @p layer has the
4349     * following meanings:
4350     * @li < 3: The window will be placed below all others.
4351     * @li > 5: The window will be placed above all others.
4352     * @li other: The window will be placed in the default layer.
4353     *
4354     * @param obj The window object
4355     * @param layer The layer of the window
4356     */
4357    EAPI void         elm_win_layer_set(Evas_Object *obj, int layer) EINA_ARG_NONNULL(1);
4358    /**
4359     * Get the layer of the window.
4360     *
4361     * @param obj The window object
4362     * @return The layer of the window
4363     *
4364     * @see elm_win_layer_set()
4365     */
4366    EAPI int          elm_win_layer_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4367    /**
4368     * Set the rotation of the window.
4369     *
4370     * Most engines only work with multiples of 90.
4371     *
4372     * This function is used to set the orientation of the window @p obj to
4373     * match that of the screen. The window itself will be resized to adjust
4374     * to the new geometry of its contents. If you want to keep the window size,
4375     * see elm_win_rotation_with_resize_set().
4376     *
4377     * @param obj The window object
4378     * @param rotation The rotation of the window, in degrees (0-360),
4379     * counter-clockwise.
4380     */
4381    EAPI void         elm_win_rotation_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
4382    /**
4383     * Rotates the window and resizes it.
4384     *
4385     * Like elm_win_rotation_set(), but it also resizes the window's contents so
4386     * that they fit inside the current window geometry.
4387     *
4388     * @param obj The window object
4389     * @param layer The rotation of the window in degrees (0-360),
4390     * counter-clockwise.
4391     */
4392    EAPI void         elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
4393    /**
4394     * Get the rotation of the window.
4395     *
4396     * @param obj The window object
4397     * @return The rotation of the window in degrees (0-360)
4398     *
4399     * @see elm_win_rotation_set()
4400     * @see elm_win_rotation_with_resize_set()
4401     */
4402    EAPI int          elm_win_rotation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4403    /**
4404     * Set the sticky state of the window.
4405     *
4406     * Hints the Window Manager that the window in @p obj should be left fixed
4407     * at its position even when the virtual desktop it's on moves or changes.
4408     *
4409     * @param obj The window object
4410     * @param sticky If true, the window's sticky state is enabled
4411     */
4412    EAPI void         elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky) EINA_ARG_NONNULL(1);
4413    /**
4414     * Get the sticky state of the window.
4415     *
4416     * @param obj The window object
4417     * @return If true, the window's sticky state is enabled
4418     *
4419     * @see elm_win_sticky_set()
4420     */
4421    EAPI Eina_Bool    elm_win_sticky_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4422    /**
4423     * Set if this window is an illume conformant window
4424     *
4425     * @param obj The window object
4426     * @param conformant The conformant flag (1 = conformant, 0 = non-conformant)
4427     */
4428    EAPI void         elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant) EINA_ARG_NONNULL(1);
4429    /**
4430     * Get if this window is an illume conformant window
4431     *
4432     * @param obj The window object
4433     * @return A boolean if this window is illume conformant or not
4434     */
4435    EAPI Eina_Bool    elm_win_conformant_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4436    /**
4437     * Set a window to be an illume quickpanel window
4438     *
4439     * By default window objects are not quickpanel windows.
4440     *
4441     * @param obj The window object
4442     * @param quickpanel The quickpanel flag (1 = quickpanel, 0 = normal window)
4443     */
4444    EAPI void         elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel) EINA_ARG_NONNULL(1);
4445    /**
4446     * Get if this window is a quickpanel or not
4447     *
4448     * @param obj The window object
4449     * @return A boolean if this window is a quickpanel or not
4450     */
4451    EAPI Eina_Bool    elm_win_quickpanel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4452    /**
4453     * Set the major priority of a quickpanel window
4454     *
4455     * @param obj The window object
4456     * @param priority The major priority for this quickpanel
4457     */
4458    EAPI void         elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4459    /**
4460     * Get the major priority of a quickpanel window
4461     *
4462     * @param obj The window object
4463     * @return The major priority of this quickpanel
4464     */
4465    EAPI int          elm_win_quickpanel_priority_major_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4466    /**
4467     * Set the minor priority of a quickpanel window
4468     *
4469     * @param obj The window object
4470     * @param priority The minor priority for this quickpanel
4471     */
4472    EAPI void         elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4473    /**
4474     * Get the minor priority of a quickpanel window
4475     *
4476     * @param obj The window object
4477     * @return The minor priority of this quickpanel
4478     */
4479    EAPI int          elm_win_quickpanel_priority_minor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4480    /**
4481     * Set which zone this quickpanel should appear in
4482     *
4483     * @param obj The window object
4484     * @param zone The requested zone for this quickpanel
4485     */
4486    EAPI void         elm_win_quickpanel_zone_set(Evas_Object *obj, int zone) EINA_ARG_NONNULL(1);
4487    /**
4488     * Get which zone this quickpanel should appear in
4489     *
4490     * @param obj The window object
4491     * @return The requested zone for this quickpanel
4492     */
4493    EAPI int          elm_win_quickpanel_zone_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4494    /**
4495     * Set the window to be skipped by keyboard focus
4496     *
4497     * This sets the window to be skipped by normal keyboard input. This means
4498     * a window manager will be asked to not focus this window as well as omit
4499     * it from things like the taskbar, pager, "alt-tab" list etc. etc.
4500     *
4501     * Call this and enable it on a window BEFORE you show it for the first time,
4502     * otherwise it may have no effect.
4503     *
4504     * Use this for windows that have only output information or might only be
4505     * interacted with by the mouse or fingers, and never for typing input.
4506     * Be careful that this may have side-effects like making the window
4507     * non-accessible in some cases unless the window is specially handled. Use
4508     * this with care.
4509     *
4510     * @param obj The window object
4511     * @param skip The skip flag state (EINA_TRUE if it is to be skipped)
4512     */
4513    EAPI void         elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip) EINA_ARG_NONNULL(1);
4514    /**
4515     * Send a command to the windowing environment
4516     *
4517     * This is intended to work in touchscreen or small screen device
4518     * environments where there is a more simplistic window management policy in
4519     * place. This uses the window object indicated to select which part of the
4520     * environment to control (the part that this window lives in), and provides
4521     * a command and an optional parameter structure (use NULL for this if not
4522     * needed).
4523     *
4524     * @param obj The window object that lives in the environment to control
4525     * @param command The command to send
4526     * @param params Optional parameters for the command
4527     */
4528    EAPI void         elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params) EINA_ARG_NONNULL(1);
4529    /**
4530     * Get the inlined image object handle
4531     *
4532     * When you create a window with elm_win_add() of type ELM_WIN_INLINED_IMAGE,
4533     * then the window is in fact an evas image object inlined in the parent
4534     * canvas. You can get this object (be careful to not manipulate it as it
4535     * is under control of elementary), and use it to do things like get pixel
4536     * data, save the image to a file, etc.
4537     *
4538     * @param obj The window object to get the inlined image from
4539     * @return The inlined image object, or NULL if none exists
4540     */
4541    EAPI Evas_Object *elm_win_inlined_image_object_get(Evas_Object *obj);
4542    /**
4543     * Determine whether a window has focus
4544     * @param obj The window to query
4545     * @return EINA_TRUE if the window exists and has focus, else EINA_FALSE
4546     */
4547    EAPI Eina_Bool    elm_win_focus_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4548    /**
4549     * Get screen geometry details for the screen that a window is on
4550     * @param obj The window to query
4551     * @param x where to return the horizontal offset value. May be NULL.
4552     * @param y  where to return the vertical offset value. May be NULL.
4553     * @param w  where to return the width value. May be NULL.
4554     * @param h  where to return the height value. May be NULL.
4555     */
4556    EAPI void         elm_win_screen_size_get(const Evas_Object *obj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
4557    /**
4558     * Set the enabled status for the focus highlight in a window
4559     *
4560     * This function will enable or disable the focus highlight only for the
4561     * given window, regardless of the global setting for it
4562     *
4563     * @param obj The window where to enable the highlight
4564     * @param enabled The enabled value for the highlight
4565     */
4566    EAPI void         elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
4567    /**
4568     * Get the enabled value of the focus highlight for this window
4569     *
4570     * @param obj The window in which to check if the focus highlight is enabled
4571     *
4572     * @return EINA_TRUE if enabled, EINA_FALSE otherwise
4573     */
4574    EAPI Eina_Bool    elm_win_focus_highlight_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4575    /**
4576     * Set the style for the focus highlight on this window
4577     *
4578     * Sets the style to use for theming the highlight of focused objects on
4579     * the given window. If @p style is NULL, the default will be used.
4580     *
4581     * @param obj The window where to set the style
4582     * @param style The style to set
4583     */
4584    EAPI void         elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
4585    /**
4586     * Get the style set for the focus highlight object
4587     *
4588     * Gets the style set for this windows highilght object, or NULL if none
4589     * is set.
4590     *
4591     * @param obj The window to retrieve the highlights style from
4592     *
4593     * @return The style set or NULL if none was. Default is used in that case.
4594     */
4595    EAPI const char  *elm_win_focus_highlight_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4596    /*...
4597     * ecore_x_icccm_hints_set -> accepts_focus (add to ecore_evas)
4598     * ecore_x_icccm_hints_set -> window_group (add to ecore_evas)
4599     * ecore_x_icccm_size_pos_hints_set -> request_pos (add to ecore_evas)
4600     * ecore_x_icccm_client_leader_set -> l (add to ecore_evas)
4601     * ecore_x_icccm_window_role_set -> role (add to ecore_evas)
4602     * ecore_x_icccm_transient_for_set -> forwin (add to ecore_evas)
4603     * ecore_x_netwm_window_type_set -> type (add to ecore_evas)
4604     *
4605     * (add to ecore_x) set netwm argb icon! (add to ecore_evas)
4606     * (blank mouse, private mouse obj, defaultmouse)
4607     *
4608     */
4609    /**
4610     * Sets the keyboard mode of the window.
4611     *
4612     * @param obj The window object
4613     * @param mode The mode to set, one of #Elm_Win_Keyboard_Mode
4614     */
4615    EAPI void                  elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode) EINA_ARG_NONNULL(1);
4616    /**
4617     * Gets the keyboard mode of the window.
4618     *
4619     * @param obj The window object
4620     * @return The mode, one of #Elm_Win_Keyboard_Mode
4621     */
4622    EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4623    /**
4624     * Sets whether the window is a keyboard.
4625     *
4626     * @param obj The window object
4627     * @param is_keyboard If true, the window is a virtual keyboard
4628     */
4629    EAPI void                  elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard) EINA_ARG_NONNULL(1);
4630    /**
4631     * Gets whether the window is a keyboard.
4632     *
4633     * @param obj The window object
4634     * @return If the window is a virtual keyboard
4635     */
4636    EAPI Eina_Bool             elm_win_keyboard_win_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4637
4638    /**
4639     * Get the screen position of a window.
4640     *
4641     * @param obj The window object
4642     * @param x The int to store the x coordinate to
4643     * @param y The int to store the y coordinate to
4644     */
4645    EAPI void                  elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y) EINA_ARG_NONNULL(1);
4646    /**
4647     * @}
4648     */
4649
4650    /**
4651     * @defgroup Inwin Inwin
4652     *
4653     * @image html img/widget/inwin/preview-00.png
4654     * @image latex img/widget/inwin/preview-00.eps
4655     * @image html img/widget/inwin/preview-01.png
4656     * @image latex img/widget/inwin/preview-01.eps
4657     * @image html img/widget/inwin/preview-02.png
4658     * @image latex img/widget/inwin/preview-02.eps
4659     *
4660     * An inwin is a window inside a window that is useful for a quick popup.
4661     * It does not hover.
4662     *
4663     * It works by creating an object that will occupy the entire window, so it
4664     * must be created using an @ref Win "elm_win" as parent only. The inwin
4665     * object can be hidden or restacked below every other object if it's
4666     * needed to show what's behind it without destroying it. If this is done,
4667     * the elm_win_inwin_activate() function can be used to bring it back to
4668     * full visibility again.
4669     *
4670     * There are three styles available in the default theme. These are:
4671     * @li default: The inwin is sized to take over most of the window it's
4672     * placed in.
4673     * @li minimal: The size of the inwin will be the minimum necessary to show
4674     * its contents.
4675     * @li minimal_vertical: Horizontally, the inwin takes as much space as
4676     * possible, but it's sized vertically the most it needs to fit its\
4677     * contents.
4678     *
4679     * Some examples of Inwin can be found in the following:
4680     * @li @ref inwin_example_01
4681     *
4682     * @{
4683     */
4684    /**
4685     * Adds an inwin to the current window
4686     *
4687     * The @p obj used as parent @b MUST be an @ref Win "Elementary Window".
4688     * Never call this function with anything other than the top-most window
4689     * as its parameter, unless you are fond of undefined behavior.
4690     *
4691     * After creating the object, the widget will set itself as resize object
4692     * for the window with elm_win_resize_object_add(), so when shown it will
4693     * appear to cover almost the entire window (how much of it depends on its
4694     * content and the style used). It must not be added into other container
4695     * objects and it needs not be moved or resized manually.
4696     *
4697     * @param parent The parent object
4698     * @return The new object or NULL if it cannot be created
4699     */
4700    EAPI Evas_Object          *elm_win_inwin_add(Evas_Object *obj) EINA_ARG_NONNULL(1);
4701    /**
4702     * Activates an inwin object, ensuring its visibility
4703     *
4704     * This function will make sure that the inwin @p obj is completely visible
4705     * by calling evas_object_show() and evas_object_raise() on it, to bring it
4706     * to the front. It also sets the keyboard focus to it, which will be passed
4707     * onto its content.
4708     *
4709     * The object's theme will also receive the signal "elm,action,show" with
4710     * source "elm".
4711     *
4712     * @param obj The inwin to activate
4713     */
4714    EAPI void                  elm_win_inwin_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
4715    /**
4716     * Set the content of an inwin object.
4717     *
4718     * Once the content object is set, a previously set one will be deleted.
4719     * If you want to keep that old content object, use the
4720     * elm_win_inwin_content_unset() function.
4721     *
4722     * @param obj The inwin object
4723     * @param content The object to set as content
4724     */
4725    EAPI void                  elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
4726    /**
4727     * Get the content of an inwin object.
4728     *
4729     * Return the content object which is set for this widget.
4730     *
4731     * The returned object is valid as long as the inwin is still alive and no
4732     * other content is set on it. Deleting the object will notify the inwin
4733     * about it and this one will be left empty.
4734     *
4735     * If you need to remove an inwin's content to be reused somewhere else,
4736     * see elm_win_inwin_content_unset().
4737     *
4738     * @param obj The inwin object
4739     * @return The content that is being used
4740     */
4741    EAPI Evas_Object          *elm_win_inwin_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4742    /**
4743     * Unset the content of an inwin object.
4744     *
4745     * Unparent and return the content object which was set for this widget.
4746     *
4747     * @param obj The inwin object
4748     * @return The content that was being used
4749     */
4750    EAPI Evas_Object          *elm_win_inwin_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4751    /**
4752     * @}
4753     */
4754    /* X specific calls - won't work on non-x engines (return 0) */
4755
4756    /**
4757     * Get the Ecore_X_Window of an Evas_Object
4758     *
4759     * @param obj The object
4760     *
4761     * @return The Ecore_X_Window of @p obj
4762     *
4763     * @ingroup Win
4764     */
4765    EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4766
4767    /* smart callbacks called:
4768     * "delete,request" - the user requested to delete the window
4769     * "focus,in" - window got focus
4770     * "focus,out" - window lost focus
4771     * "moved" - window that holds the canvas was moved
4772     */
4773
4774    /**
4775     * @defgroup Bg Bg
4776     *
4777     * @image html img/widget/bg/preview-00.png
4778     * @image latex img/widget/bg/preview-00.eps
4779     *
4780     * @brief Background object, used for setting a solid color, image or Edje
4781     * group as background to a window or any container object.
4782     *
4783     * The bg object is used for setting a solid background to a window or
4784     * packing into any container object. It works just like an image, but has
4785     * some properties useful to a background, like setting it to tiled,
4786     * centered, scaled or stretched.
4787     *
4788     * Default contents parts of the bg widget that you can use for are:
4789     * @li "overlay" - overlay of the bg
4790     *
4791     * Here is some sample code using it:
4792     * @li @ref bg_01_example_page
4793     * @li @ref bg_02_example_page
4794     * @li @ref bg_03_example_page
4795     */
4796
4797    /* bg */
4798    typedef enum _Elm_Bg_Option
4799      {
4800         ELM_BG_OPTION_CENTER,  /**< center the background */
4801         ELM_BG_OPTION_SCALE,   /**< scale the background retaining aspect ratio */
4802         ELM_BG_OPTION_STRETCH, /**< stretch the background to fill */
4803         ELM_BG_OPTION_TILE     /**< tile background at its original size */
4804      } Elm_Bg_Option;
4805
4806    /**
4807     * Add a new background to the parent
4808     *
4809     * @param parent The parent object
4810     * @return The new object or NULL if it cannot be created
4811     *
4812     * @ingroup Bg
4813     */
4814    EAPI Evas_Object  *elm_bg_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4815
4816    /**
4817     * Set the file (image or edje) used for the background
4818     *
4819     * @param obj The bg object
4820     * @param file The file path
4821     * @param group Optional key (group in Edje) within the file
4822     *
4823     * This sets the image file used in the background object. The image (or edje)
4824     * will be stretched (retaining aspect if its an image file) to completely fill
4825     * the bg object. This may mean some parts are not visible.
4826     *
4827     * @note  Once the image of @p obj is set, a previously set one will be deleted,
4828     * even if @p file is NULL.
4829     *
4830     * @ingroup Bg
4831     */
4832    EAPI void          elm_bg_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
4833
4834    /**
4835     * Get the file (image or edje) used for the background
4836     *
4837     * @param obj The bg object
4838     * @param file The file path
4839     * @param group Optional key (group in Edje) within the file
4840     *
4841     * @ingroup Bg
4842     */
4843    EAPI void          elm_bg_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4844
4845    /**
4846     * Set the option used for the background image
4847     *
4848     * @param obj The bg object
4849     * @param option The desired background option (TILE, SCALE)
4850     *
4851     * This sets the option used for manipulating the display of the background
4852     * image. The image can be tiled or scaled.
4853     *
4854     * @ingroup Bg
4855     */
4856    EAPI void          elm_bg_option_set(Evas_Object *obj, Elm_Bg_Option option) EINA_ARG_NONNULL(1);
4857
4858    /**
4859     * Get the option used for the background image
4860     *
4861     * @param obj The bg object
4862     * @return The desired background option (CENTER, SCALE, STRETCH or TILE)
4863     *
4864     * @ingroup Bg
4865     */
4866    EAPI Elm_Bg_Option elm_bg_option_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4867    /**
4868     * Set the option used for the background color
4869     *
4870     * @param obj The bg object
4871     * @param r
4872     * @param g
4873     * @param b
4874     *
4875     * This sets the color used for the background rectangle. Its range goes
4876     * from 0 to 255.
4877     *
4878     * @ingroup Bg
4879     */
4880    EAPI void          elm_bg_color_set(Evas_Object *obj, int r, int g, int b) EINA_ARG_NONNULL(1);
4881    /**
4882     * Get the option used for the background color
4883     *
4884     * @param obj The bg object
4885     * @param r
4886     * @param g
4887     * @param b
4888     *
4889     * @ingroup Bg
4890     */
4891    EAPI void          elm_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b) EINA_ARG_NONNULL(1);
4892
4893    /**
4894     * Set the overlay object used for the background object.
4895     *
4896     * @param obj The bg object
4897     * @param overlay The overlay object
4898     *
4899     * This provides a way for elm_bg to have an 'overlay' that will be on top
4900     * of the bg. Once the over object is set, a previously set one will be
4901     * deleted, even if you set the new one to NULL. If you want to keep that
4902     * old content object, use the elm_bg_overlay_unset() function.
4903     *
4904     * @deprecated use elm_object_part_content_set() instead
4905     *
4906     * @ingroup Bg
4907     */
4908
4909    EINA_DEPRECATED EAPI void          elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay) EINA_ARG_NONNULL(1);
4910
4911    /**
4912     * Get the overlay object used for the background object.
4913     *
4914     * @param obj The bg object
4915     * @return The content that is being used
4916     *
4917     * Return the content object which is set for this widget
4918     *
4919     * @deprecated use elm_object_part_content_get() instead
4920     *
4921     * @ingroup Bg
4922     */
4923    EINA_DEPRECATED EAPI Evas_Object  *elm_bg_overlay_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4924
4925    /**
4926     * Get the overlay object used for the background object.
4927     *
4928     * @param obj The bg object
4929     * @return The content that was being used
4930     *
4931     * Unparent and return the overlay object which was set for this widget
4932     *
4933     * @deprecated use elm_object_part_content_unset() instead
4934     *
4935     * @ingroup Bg
4936     */
4937    EINA_DEPRECATED EAPI Evas_Object  *elm_bg_overlay_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4938
4939    /**
4940     * Set the size of the pixmap representation of the image.
4941     *
4942     * This option just makes sense if an image is going to be set in the bg.
4943     *
4944     * @param obj The bg object
4945     * @param w The new width of the image pixmap representation.
4946     * @param h The new height of the image pixmap representation.
4947     *
4948     * This function sets a new size for pixmap representation of the given bg
4949     * image. It allows the image to be loaded already in the specified size,
4950     * reducing the memory usage and load time when loading a big image with load
4951     * size set to a smaller size.
4952     *
4953     * NOTE: this is just a hint, the real size of the pixmap may differ
4954     * depending on the type of image being loaded, being bigger than requested.
4955     *
4956     * @ingroup Bg
4957     */
4958    EAPI void          elm_bg_load_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
4959    /* smart callbacks called:
4960     */
4961
4962    /**
4963     * @defgroup Icon Icon
4964     *
4965     * @image html img/widget/icon/preview-00.png
4966     * @image latex img/widget/icon/preview-00.eps
4967     *
4968     * An object that provides standard icon images (delete, edit, arrows, etc.)
4969     * or a custom file (PNG, JPG, EDJE, etc.) used for an icon.
4970     *
4971     * The icon image requested can be in the elementary theme, or in the
4972     * freedesktop.org paths. It's possible to set the order of preference from
4973     * where the image will be used.
4974     *
4975     * This API is very similar to @ref Image, but with ready to use images.
4976     *
4977     * Default images provided by the theme are described below.
4978     *
4979     * The first list contains icons that were first intended to be used in
4980     * toolbars, but can be used in many other places too:
4981     * @li home
4982     * @li close
4983     * @li apps
4984     * @li arrow_up
4985     * @li arrow_down
4986     * @li arrow_left
4987     * @li arrow_right
4988     * @li chat
4989     * @li clock
4990     * @li delete
4991     * @li edit
4992     * @li refresh
4993     * @li folder
4994     * @li file
4995     *
4996     * Now some icons that were designed to be used in menus (but again, you can
4997     * use them anywhere else):
4998     * @li menu/home
4999     * @li menu/close
5000     * @li menu/apps
5001     * @li menu/arrow_up
5002     * @li menu/arrow_down
5003     * @li menu/arrow_left
5004     * @li menu/arrow_right
5005     * @li menu/chat
5006     * @li menu/clock
5007     * @li menu/delete
5008     * @li menu/edit
5009     * @li menu/refresh
5010     * @li menu/folder
5011     * @li menu/file
5012     *
5013     * And here we have some media player specific icons:
5014     * @li media_player/forward
5015     * @li media_player/info
5016     * @li media_player/next
5017     * @li media_player/pause
5018     * @li media_player/play
5019     * @li media_player/prev
5020     * @li media_player/rewind
5021     * @li media_player/stop
5022     *
5023     * Signals that you can add callbacks for are:
5024     *
5025     * "clicked" - This is called when a user has clicked the icon
5026     *
5027     * An example of usage for this API follows:
5028     * @li @ref tutorial_icon
5029     */
5030
5031    /**
5032     * @addtogroup Icon
5033     * @{
5034     */
5035
5036    typedef enum _Elm_Icon_Type
5037      {
5038         ELM_ICON_NONE,
5039         ELM_ICON_FILE,
5040         ELM_ICON_STANDARD
5041      } Elm_Icon_Type;
5042    /**
5043     * @enum _Elm_Icon_Lookup_Order
5044     * @typedef Elm_Icon_Lookup_Order
5045     *
5046     * Lookup order used by elm_icon_standard_set(). Should look for icons in the
5047     * theme, FDO paths, or both?
5048     *
5049     * @ingroup Icon
5050     */
5051    typedef enum _Elm_Icon_Lookup_Order
5052      {
5053         ELM_ICON_LOOKUP_FDO_THEME, /**< icon look up order: freedesktop, theme */
5054         ELM_ICON_LOOKUP_THEME_FDO, /**< icon look up order: theme, freedesktop */
5055         ELM_ICON_LOOKUP_FDO,       /**< icon look up order: freedesktop */
5056         ELM_ICON_LOOKUP_THEME      /**< icon look up order: theme */
5057      } Elm_Icon_Lookup_Order;
5058
5059    /**
5060     * Add a new icon object to the parent.
5061     *
5062     * @param parent The parent object
5063     * @return The new object or NULL if it cannot be created
5064     *
5065     * @see elm_icon_file_set()
5066     *
5067     * @ingroup Icon
5068     */
5069    EAPI Evas_Object          *elm_icon_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5070    /**
5071     * Set the file that will be used as icon.
5072     *
5073     * @param obj The icon object
5074     * @param file The path to file that will be used as icon image
5075     * @param group The group that the icon belongs to an edje file
5076     *
5077     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5078     *
5079     * @note The icon image set by this function can be changed by
5080     * elm_icon_standard_set().
5081     *
5082     * @see elm_icon_file_get()
5083     *
5084     * @ingroup Icon
5085     */
5086    EAPI Eina_Bool             elm_icon_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5087    /**
5088     * Set a location in memory to be used as an icon
5089     *
5090     * @param obj The icon object
5091     * @param img The binary data that will be used as an image
5092     * @param size The size of binary data @p img
5093     * @param format Optional format of @p img to pass to the image loader
5094     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
5095     *
5096     * The @p format string should be something like "png", "jpg", "tga",
5097     * "tiff", "bmp" etc. if it is provided (NULL if not). This improves
5098     * the loader performance as it tries the "correct" loader first before
5099     * trying a range of other possible loaders until one succeeds.
5100     * 
5101     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5102     *
5103     * @note The icon image set by this function can be changed by
5104     * elm_icon_standard_set().
5105     *
5106     * @ingroup Icon
5107     */
5108    EAPI Eina_Bool             elm_icon_memfile_set(Evas_Object *obj, const void *img, size_t size, const char *format, const char *key) EINA_ARG_NONNULL(1, 2);
5109    /**
5110     * Get the file that will be used as icon.
5111     *
5112     * @param obj The icon object
5113     * @param file The path to file that will be used as the icon image
5114     * @param group The group that the icon belongs to, in edje file
5115     *
5116     * @see elm_icon_file_set()
5117     *
5118     * @ingroup Icon
5119     */
5120    EAPI void                  elm_icon_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
5121    /**
5122     * Set the file that will be used, but use a generated thumbnail.
5123     *
5124     * @param obj The icon object
5125     * @param file The path to file that will be used as icon image
5126     * @param group The group that the icon belongs to an edje file
5127     *
5128     * This functions like elm_icon_file_set() but requires the Ethumb library
5129     * support to be enabled successfully with elm_need_ethumb(). When set
5130     * the file indicated has a thumbnail generated and cached on disk for
5131     * future use or will directly use an existing cached thumbnail if it
5132     * is valid.
5133     * 
5134     * @see elm_icon_file_set()
5135     *
5136     * @ingroup Icon
5137     */
5138    EAPI void                  elm_icon_thumb_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5139    /**
5140     * Set the icon by icon standards names.
5141     *
5142     * @param obj The icon object
5143     * @param name The icon name
5144     *
5145     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5146     *
5147     * For example, freedesktop.org defines standard icon names such as "home",
5148     * "network", etc. There can be different icon sets to match those icon
5149     * keys. The @p name given as parameter is one of these "keys", and will be
5150     * used to look in the freedesktop.org paths and elementary theme. One can
5151     * change the lookup order with elm_icon_order_lookup_set().
5152     *
5153     * If name is not found in any of the expected locations and it is the
5154     * absolute path of an image file, this image will be used.
5155     *
5156     * @note The icon image set by this function can be changed by
5157     * elm_icon_file_set().
5158     *
5159     * @see elm_icon_standard_get()
5160     * @see elm_icon_file_set()
5161     *
5162     * @ingroup Icon
5163     */
5164    EAPI Eina_Bool             elm_icon_standard_set(Evas_Object *obj, const char *name) EINA_ARG_NONNULL(1);
5165    /**
5166     * Get the icon name set by icon standard names.
5167     *
5168     * @param obj The icon object
5169     * @return The icon name
5170     *
5171     * If the icon image was set using elm_icon_file_set() instead of
5172     * elm_icon_standard_set(), then this function will return @c NULL.
5173     *
5174     * @see elm_icon_standard_set()
5175     *
5176     * @ingroup Icon
5177     */
5178    EAPI const char           *elm_icon_standard_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5179    /**
5180     * Set the smooth scaling for an icon object.
5181     *
5182     * @param obj The icon object
5183     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
5184     * otherwise. Default is @c EINA_TRUE.
5185     *
5186     * Set the scaling algorithm to be used when scaling the icon image. Smooth
5187     * scaling provides a better resulting image, but is slower.
5188     *
5189     * The smooth scaling should be disabled when making animations that change
5190     * the icon size, since they will be faster. Animations that don't require
5191     * resizing of the icon can keep the smooth scaling enabled (even if the icon
5192     * is already scaled, since the scaled icon image will be cached).
5193     *
5194     * @see elm_icon_smooth_get()
5195     *
5196     * @ingroup Icon
5197     */
5198    EAPI void                  elm_icon_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
5199    /**
5200     * Get whether smooth scaling is enabled for an icon object.
5201     *
5202     * @param obj The icon object
5203     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
5204     *
5205     * @see elm_icon_smooth_set()
5206     *
5207     * @ingroup Icon
5208     */
5209    EAPI Eina_Bool             elm_icon_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5210    /**
5211     * Disable scaling of this object.
5212     *
5213     * @param obj The icon object.
5214     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
5215     * otherwise. Default is @c EINA_FALSE.
5216     *
5217     * This function disables scaling of the icon object through the function
5218     * elm_object_scale_set(). However, this does not affect the object
5219     * size/resize in any way. For that effect, take a look at
5220     * elm_icon_scale_set().
5221     *
5222     * @see elm_icon_no_scale_get()
5223     * @see elm_icon_scale_set()
5224     * @see elm_object_scale_set()
5225     *
5226     * @ingroup Icon
5227     */
5228    EAPI void                  elm_icon_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
5229    /**
5230     * Get whether scaling is disabled on the object.
5231     *
5232     * @param obj The icon object
5233     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
5234     *
5235     * @see elm_icon_no_scale_set()
5236     *
5237     * @ingroup Icon
5238     */
5239    EAPI Eina_Bool             elm_icon_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5240    /**
5241     * Set if the object is (up/down) resizable.
5242     *
5243     * @param obj The icon object
5244     * @param scale_up A bool to set if the object is resizable up. Default is
5245     * @c EINA_TRUE.
5246     * @param scale_down A bool to set if the object is resizable down. Default
5247     * is @c EINA_TRUE.
5248     *
5249     * This function limits the icon object resize ability. If @p scale_up is set to
5250     * @c EINA_FALSE, the object can't have its height or width resized to a value
5251     * higher than the original icon size. Same is valid for @p scale_down.
5252     *
5253     * @see elm_icon_scale_get()
5254     *
5255     * @ingroup Icon
5256     */
5257    EAPI void                  elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
5258    /**
5259     * Get if the object is (up/down) resizable.
5260     *
5261     * @param obj The icon object
5262     * @param scale_up A bool to set if the object is resizable up
5263     * @param scale_down A bool to set if the object is resizable down
5264     *
5265     * @see elm_icon_scale_set()
5266     *
5267     * @ingroup Icon
5268     */
5269    EAPI void                  elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
5270    /**
5271     * Get the object's image size
5272     *
5273     * @param obj The icon object
5274     * @param w A pointer to store the width in
5275     * @param h A pointer to store the height in
5276     *
5277     * @ingroup Icon
5278     */
5279    EAPI void                  elm_icon_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
5280    /**
5281     * Set if the icon fill the entire object area.
5282     *
5283     * @param obj The icon object
5284     * @param fill_outside @c EINA_TRUE if the object is filled outside,
5285     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5286     *
5287     * When the icon object is resized to a different aspect ratio from the
5288     * original icon image, the icon image will still keep its aspect. This flag
5289     * tells how the image should fill the object's area. They are: keep the
5290     * entire icon inside the limits of height and width of the object (@p
5291     * fill_outside is @c EINA_FALSE) or let the extra width or height go outside
5292     * of the object, and the icon will fill the entire object (@p fill_outside
5293     * is @c EINA_TRUE).
5294     *
5295     * @note Unlike @ref Image, there's no option in icon to set the aspect ratio
5296     * retain property to false. Thus, the icon image will always keep its
5297     * original aspect ratio.
5298     *
5299     * @see elm_icon_fill_outside_get()
5300     * @see elm_image_fill_outside_set()
5301     *
5302     * @ingroup Icon
5303     */
5304    EAPI void                  elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5305    /**
5306     * Get if the object is filled outside.
5307     *
5308     * @param obj The icon object
5309     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5310     *
5311     * @see elm_icon_fill_outside_set()
5312     *
5313     * @ingroup Icon
5314     */
5315    EAPI Eina_Bool             elm_icon_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5316    /**
5317     * Set the prescale size for the icon.
5318     *
5319     * @param obj The icon object
5320     * @param size The prescale size. This value is used for both width and
5321     * height.
5322     *
5323     * This function sets a new size for pixmap representation of the given
5324     * icon. It allows the icon to be loaded already in the specified size,
5325     * reducing the memory usage and load time when loading a big icon with load
5326     * size set to a smaller size.
5327     *
5328     * It's equivalent to the elm_bg_load_size_set() function for bg.
5329     *
5330     * @note this is just a hint, the real size of the pixmap may differ
5331     * depending on the type of icon being loaded, being bigger than requested.
5332     *
5333     * @see elm_icon_prescale_get()
5334     * @see elm_bg_load_size_set()
5335     *
5336     * @ingroup Icon
5337     */
5338    EAPI void                  elm_icon_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5339    /**
5340     * Get the prescale size for the icon.
5341     *
5342     * @param obj The icon object
5343     * @return The prescale size
5344     *
5345     * @see elm_icon_prescale_set()
5346     *
5347     * @ingroup Icon
5348     */
5349    EAPI int                   elm_icon_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5350    /**
5351     * Gets the image object of the icon. DO NOT MODIFY THIS.
5352     *
5353     * @param obj The icon object
5354     * @return The internal icon object
5355     *
5356     * @ingroup Icon
5357     */
5358    EAPI Evas_Object          *elm_icon_object_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
5359    /**
5360     * Sets the icon lookup order used by elm_icon_standard_set().
5361     *
5362     * @param obj The icon object
5363     * @param order The icon lookup order (can be one of
5364     * ELM_ICON_LOOKUP_FDO_THEME, ELM_ICON_LOOKUP_THEME_FDO, ELM_ICON_LOOKUP_FDO
5365     * or ELM_ICON_LOOKUP_THEME)
5366     *
5367     * @see elm_icon_order_lookup_get()
5368     * @see Elm_Icon_Lookup_Order
5369     *
5370     * @ingroup Icon
5371     */
5372    EAPI void                  elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
5373    /**
5374     * Gets the icon lookup order.
5375     *
5376     * @param obj The icon object
5377     * @return The icon lookup order
5378     *
5379     * @see elm_icon_order_lookup_set()
5380     * @see Elm_Icon_Lookup_Order
5381     *
5382     * @ingroup Icon
5383     */
5384    EAPI Elm_Icon_Lookup_Order elm_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5385    /**
5386     * Enable or disable preloading of the icon
5387     *
5388     * @param obj The icon object
5389     * @param disable If EINA_TRUE, preloading will be disabled
5390     * @ingroup Icon
5391     */
5392    EAPI void                  elm_icon_preload_set(Evas_Object *obj, Eina_Bool disable) EINA_ARG_NONNULL(1);
5393    /**
5394     * Get if the icon supports animation or not.
5395     *
5396     * @param obj The icon object
5397     * @return @c EINA_TRUE if the icon supports animation,
5398     *         @c EINA_FALSE otherwise.
5399     *
5400     * Return if this elm icon's image can be animated. Currently Evas only
5401     * supports gif animation. If the return value is EINA_FALSE, other
5402     * elm_icon_animated_XXX APIs won't work.
5403     * @ingroup Icon
5404     */
5405    EAPI Eina_Bool           elm_icon_animated_available_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5406    /**
5407     * Set animation mode of the icon.
5408     *
5409     * @param obj The icon object
5410     * @param anim @c EINA_TRUE if the object do animation job,
5411     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5412     *
5413     * Since the default animation mode is set to EINA_FALSE,
5414     * the icon is shown without animation. Files like animated GIF files
5415     * can animate, and this is supported if you enable animated support
5416     * on the icon.
5417     * Set it to EINA_TRUE when the icon needs to be animated.
5418     * @ingroup Icon
5419     */
5420    EAPI void                elm_icon_animated_set(Evas_Object *obj, Eina_Bool animated) EINA_ARG_NONNULL(1);
5421    /**
5422     * Get animation mode of the icon.
5423     *
5424     * @param obj The icon object
5425     * @return The animation mode of the icon object
5426     * @see elm_icon_animated_set
5427     * @ingroup Icon
5428     */
5429    EAPI Eina_Bool           elm_icon_animated_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5430    /**
5431     * Set animation play mode of the icon.
5432     *
5433     * @param obj The icon object
5434     * @param play @c EINA_TRUE the object play animation images,
5435     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5436     *
5437     * To play elm icon's animation, set play to EINA_TURE.
5438     * For example, you make gif player using this set/get API and click event.
5439     * This literally lets you control current play or paused state. To have
5440     * this work with animated GIF files for example, you first, before
5441     * setting the file have to use elm_icon_animated_set() to enable animation
5442     * at all on the icon.
5443     *
5444     * 1. Click event occurs
5445     * 2. Check play flag using elm_icon_animaged_play_get
5446     * 3. If elm icon was playing, set play to EINA_FALSE.
5447     *    Then animation will be stopped and vice versa
5448     * @ingroup Icon
5449     */
5450    EAPI void                elm_icon_animated_play_set(Evas_Object *obj, Eina_Bool play) EINA_ARG_NONNULL(1);
5451    /**
5452     * Get animation play mode of the icon.
5453     *
5454     * @param obj The icon object
5455     * @return The play mode of the icon object
5456     *
5457     * @see elm_icon_animated_play_get
5458     * @ingroup Icon
5459     */
5460    EAPI Eina_Bool           elm_icon_animated_play_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5461
5462    /**
5463     * @}
5464     */
5465
5466    /**
5467     * @defgroup Image Image
5468     *
5469     * @image html img/widget/image/preview-00.png
5470     * @image latex img/widget/image/preview-00.eps
5471
5472     *
5473     * An object that allows one to load an image file to it. It can be used
5474     * anywhere like any other elementary widget.
5475     *
5476     * This widget provides most of the functionality provided from @ref Bg or @ref
5477     * Icon, but with a slightly different API (use the one that fits better your
5478     * needs).
5479     *
5480     * The features not provided by those two other image widgets are:
5481     * @li allowing to get the basic @c Evas_Object with elm_image_object_get();
5482     * @li change the object orientation with elm_image_orient_set();
5483     * @li and turning the image editable with elm_image_editable_set().
5484     *
5485     * Signals that you can add callbacks for are:
5486     *
5487     * @li @c "clicked" - This is called when a user has clicked the image
5488     *
5489     * An example of usage for this API follows:
5490     * @li @ref tutorial_image
5491     */
5492
5493    /**
5494     * @addtogroup Image
5495     * @{
5496     */
5497
5498    /**
5499     * @enum _Elm_Image_Orient
5500     * @typedef Elm_Image_Orient
5501     *
5502     * Possible orientation options for elm_image_orient_set().
5503     *
5504     * @image html elm_image_orient_set.png
5505     * @image latex elm_image_orient_set.eps width=\textwidth
5506     *
5507     * @ingroup Image
5508     */
5509    typedef enum _Elm_Image_Orient
5510      {
5511         ELM_IMAGE_ORIENT_NONE = 0, /**< no orientation change */
5512         ELM_IMAGE_ORIENT_0 = 0, /**< no orientation change */
5513         ELM_IMAGE_ROTATE_90 = 1, /**< rotate 90 degrees clockwise */
5514         ELM_IMAGE_ROTATE_180 = 2, /**< rotate 180 degrees clockwise */
5515         ELM_IMAGE_ROTATE_270 = 3, /**< rotate 90 degrees counter-clockwise (i.e. 270 degrees clockwise) */
5516         /*EINA_DEPRECATED*/ELM_IMAGE_ROTATE_90_CW = 1, /**< rotate 90 degrees clockwise */
5517         /*EINA_DEPRECATED*/ELM_IMAGE_ROTATE_180_CW = 2, /**< rotate 180 degrees clockwise */
5518         /*EINA_DEPRECATED*/ELM_IMAGE_ROTATE_90_CCW = 3, /**< rotate 90 degrees counter-clockwise (i.e. 270 degrees clockwise) */
5519         ELM_IMAGE_FLIP_HORIZONTAL = 4, /**< flip image horizontally */
5520         ELM_IMAGE_FLIP_VERTICAL = 5, /**< flip image vertically */
5521         ELM_IMAGE_FLIP_TRANSPOSE = 6, /**< flip the image along the y = (width - x) line (bottom-left to top-right) */
5522         ELM_IMAGE_FLIP_TRANSVERSE = 7 /**< flip the image along the y = x line (top-left to bottom-right) */
5523      } Elm_Image_Orient;
5524
5525    /**
5526     * Add a new image to the parent.
5527     *
5528     * @param parent The parent object
5529     * @return The new object or NULL if it cannot be created
5530     *
5531     * @see elm_image_file_set()
5532     *
5533     * @ingroup Image
5534     */
5535    EAPI Evas_Object     *elm_image_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5536    /**
5537     * Set the file that will be used as image.
5538     *
5539     * @param obj The image object
5540     * @param file The path to file that will be used as image
5541     * @param group The group that the image belongs in edje file (if it's an
5542     * edje image)
5543     *
5544     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5545     *
5546     * @see elm_image_file_get()
5547     *
5548     * @ingroup Image
5549     */
5550    EAPI Eina_Bool        elm_image_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5551    /**
5552     * Get the file that will be used as image.
5553     *
5554     * @param obj The image object
5555     * @param file The path to file
5556     * @param group The group that the image belongs in edje file
5557     *
5558     * @see elm_image_file_set()
5559     *
5560     * @ingroup Image
5561     */
5562    EAPI void             elm_image_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
5563    /**
5564     * Set the smooth effect for an image.
5565     *
5566     * @param obj The image object
5567     * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
5568     * otherwise. Default is @c EINA_TRUE.
5569     *
5570     * Set the scaling algorithm to be used when scaling the image. Smooth
5571     * scaling provides a better resulting image, but is slower.
5572     *
5573     * The smooth scaling should be disabled when making animations that change
5574     * the image size, since it will be faster. Animations that don't require
5575     * resizing of the image can keep the smooth scaling enabled (even if the
5576     * image is already scaled, since the scaled image will be cached).
5577     *
5578     * @see elm_image_smooth_get()
5579     *
5580     * @ingroup Image
5581     */
5582    EAPI void             elm_image_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
5583    /**
5584     * Get the smooth effect for an image.
5585     *
5586     * @param obj The image object
5587     * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
5588     *
5589     * @see elm_image_smooth_get()
5590     *
5591     * @ingroup Image
5592     */
5593    EAPI Eina_Bool        elm_image_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5594
5595    /**
5596     * Gets the current size of the image.
5597     *
5598     * @param obj The image object.
5599     * @param w Pointer to store width, or NULL.
5600     * @param h Pointer to store height, or NULL.
5601     *
5602     * This is the real size of the image, not the size of the object.
5603     *
5604     * On error, neither w and h will be fileld with 0.
5605     *
5606     * @ingroup Image
5607     */
5608    EAPI void             elm_image_object_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
5609    /**
5610     * Disable scaling of this object.
5611     *
5612     * @param obj The image object.
5613     * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
5614     * otherwise. Default is @c EINA_FALSE.
5615     *
5616     * This function disables scaling of the elm_image widget through the
5617     * function elm_object_scale_set(). However, this does not affect the widget
5618     * size/resize in any way. For that effect, take a look at
5619     * elm_image_scale_set().
5620     *
5621     * @see elm_image_no_scale_get()
5622     * @see elm_image_scale_set()
5623     * @see elm_object_scale_set()
5624     *
5625     * @ingroup Image
5626     */
5627    EAPI void             elm_image_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
5628    /**
5629     * Get whether scaling is disabled on the object.
5630     *
5631     * @param obj The image object
5632     * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
5633     *
5634     * @see elm_image_no_scale_set()
5635     *
5636     * @ingroup Image
5637     */
5638    EAPI Eina_Bool        elm_image_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5639    /**
5640     * Set if the object is (up/down) resizable.
5641     *
5642     * @param obj The image object
5643     * @param scale_up A bool to set if the object is resizable up. Default is
5644     * @c EINA_TRUE.
5645     * @param scale_down A bool to set if the object is resizable down. Default
5646     * is @c EINA_TRUE.
5647     *
5648     * This function limits the image resize ability. If @p scale_up is set to
5649     * @c EINA_FALSE, the object can't have its height or width resized to a value
5650     * higher than the original image size. Same is valid for @p scale_down.
5651     *
5652     * @see elm_image_scale_get()
5653     *
5654     * @ingroup Image
5655     */
5656    EAPI void             elm_image_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
5657    /**
5658     * Get if the object is (up/down) resizable.
5659     *
5660     * @param obj The image object
5661     * @param scale_up A bool to set if the object is resizable up
5662     * @param scale_down A bool to set if the object is resizable down
5663     *
5664     * @see elm_image_scale_set()
5665     *
5666     * @ingroup Image
5667     */
5668    EAPI void             elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
5669    /**
5670     * Set if the image fills the entire object area, when keeping the aspect ratio.
5671     *
5672     * @param obj The image object
5673     * @param fill_outside @c EINA_TRUE if the object is filled outside,
5674     * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5675     *
5676     * When the image should keep its aspect ratio even if resized to another
5677     * aspect ratio, there are two possibilities to resize it: keep the entire
5678     * image inside the limits of height and width of the object (@p fill_outside
5679     * is @c EINA_FALSE) or let the extra width or height go outside of the object,
5680     * and the image will fill the entire object (@p fill_outside is @c EINA_TRUE).
5681     *
5682     * @note This option will have no effect if
5683     * elm_image_aspect_ratio_retained_set() is set to @c EINA_FALSE.
5684     *
5685     * @see elm_image_fill_outside_get()
5686     * @see elm_image_aspect_ratio_retained_set()
5687     *
5688     * @ingroup Image
5689     */
5690    EAPI void             elm_image_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5691    /**
5692     * Get if the object is filled outside
5693     *
5694     * @param obj The image object
5695     * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5696     *
5697     * @see elm_image_fill_outside_set()
5698     *
5699     * @ingroup Image
5700     */
5701    EAPI Eina_Bool        elm_image_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5702    /**
5703     * Set the prescale size for the image
5704     *
5705     * @param obj The image object
5706     * @param size The prescale size. This value is used for both width and
5707     * height.
5708     *
5709     * This function sets a new size for pixmap representation of the given
5710     * image. It allows the image to be loaded already in the specified size,
5711     * reducing the memory usage and load time when loading a big image with load
5712     * size set to a smaller size.
5713     *
5714     * It's equivalent to the elm_bg_load_size_set() function for bg.
5715     *
5716     * @note this is just a hint, the real size of the pixmap may differ
5717     * depending on the type of image being loaded, being bigger than requested.
5718     *
5719     * @see elm_image_prescale_get()
5720     * @see elm_bg_load_size_set()
5721     *
5722     * @ingroup Image
5723     */
5724    EAPI void             elm_image_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5725    /**
5726     * Get the prescale size for the image
5727     *
5728     * @param obj The image object
5729     * @return The prescale size
5730     *
5731     * @see elm_image_prescale_set()
5732     *
5733     * @ingroup Image
5734     */
5735    EAPI int              elm_image_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5736    /**
5737     * Set the image orientation.
5738     *
5739     * @param obj The image object
5740     * @param orient The image orientation @ref Elm_Image_Orient
5741     *  Default is #ELM_IMAGE_ORIENT_NONE.
5742     *
5743     * This function allows to rotate or flip the given image.
5744     *
5745     * @see elm_image_orient_get()
5746     * @see @ref Elm_Image_Orient
5747     *
5748     * @ingroup Image
5749     */
5750    EAPI void             elm_image_orient_set(Evas_Object *obj, Elm_Image_Orient orient) EINA_ARG_NONNULL(1);
5751    /**
5752     * Get the image orientation.
5753     *
5754     * @param obj The image object
5755     * @return The image orientation @ref Elm_Image_Orient
5756     *
5757     * @see elm_image_orient_set()
5758     * @see @ref Elm_Image_Orient
5759     *
5760     * @ingroup Image
5761     */
5762    EAPI Elm_Image_Orient elm_image_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5763    /**
5764     * Make the image 'editable'.
5765     *
5766     * @param obj Image object.
5767     * @param set Turn on or off editability. Default is @c EINA_FALSE.
5768     *
5769     * This means the image is a valid drag target for drag and drop, and can be
5770     * cut or pasted too.
5771     *
5772     * @ingroup Image
5773     */
5774    EAPI void             elm_image_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
5775    /**
5776     * Check if the image 'editable'.
5777     *
5778     * @param obj Image object.
5779     * @return Editability.
5780     *
5781     * A return value of EINA_TRUE means the image is a valid drag target
5782     * for drag and drop, and can be cut or pasted too.
5783     *
5784     * @ingroup Image
5785     */
5786    EAPI Eina_Bool        elm_image_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5787    /**
5788     * Get the basic Evas_Image object from this object (widget).
5789     *
5790     * @param obj The image object to get the inlined image from
5791     * @return The inlined image object, or NULL if none exists
5792     *
5793     * This function allows one to get the underlying @c Evas_Object of type
5794     * Image from this elementary widget. It can be useful to do things like get
5795     * the pixel data, save the image to a file, etc.
5796     *
5797     * @note Be careful to not manipulate it, as it is under control of
5798     * elementary.
5799     *
5800     * @ingroup Image
5801     */
5802    EAPI Evas_Object     *elm_image_object_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5803    /**
5804     * Set whether the original aspect ratio of the image should be kept on resize.
5805     *
5806     * @param obj The image object.
5807     * @param retained @c EINA_TRUE if the image should retain the aspect,
5808     * @c EINA_FALSE otherwise.
5809     *
5810     * The original aspect ratio (width / height) of the image is usually
5811     * distorted to match the object's size. Enabling this option will retain
5812     * this original aspect, and the way that the image is fit into the object's
5813     * area depends on the option set by elm_image_fill_outside_set().
5814     *
5815     * @see elm_image_aspect_ratio_retained_get()
5816     * @see elm_image_fill_outside_set()
5817     *
5818     * @ingroup Image
5819     */
5820    EAPI void             elm_image_aspect_ratio_retained_set(Evas_Object *obj, Eina_Bool retained) EINA_ARG_NONNULL(1);
5821    /**
5822     * Get if the object retains the original aspect ratio.
5823     *
5824     * @param obj The image object.
5825     * @return @c EINA_TRUE if the object keeps the original aspect, @c EINA_FALSE
5826     * otherwise.
5827     *
5828     * @ingroup Image
5829     */
5830    EAPI Eina_Bool        elm_image_aspect_ratio_retained_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5831
5832    /**
5833     * @}
5834     */
5835
5836    /* box */
5837    /**
5838     * @defgroup Box Box
5839     *
5840     * @image html img/widget/box/preview-00.png
5841     * @image latex img/widget/box/preview-00.eps width=\textwidth
5842     *
5843     * @image html img/box.png
5844     * @image latex img/box.eps width=\textwidth
5845     *
5846     * A box arranges objects in a linear fashion, governed by a layout function
5847     * that defines the details of this arrangement.
5848     *
5849     * By default, the box will use an internal function to set the layout to
5850     * a single row, either vertical or horizontal. This layout is affected
5851     * by a number of parameters, such as the homogeneous flag set by
5852     * elm_box_homogeneous_set(), the values given by elm_box_padding_set() and
5853     * elm_box_align_set() and the hints set to each object in the box.
5854     *
5855     * For this default layout, it's possible to change the orientation with
5856     * elm_box_horizontal_set(). The box will start in the vertical orientation,
5857     * placing its elements ordered from top to bottom. When horizontal is set,
5858     * the order will go from left to right. If the box is set to be
5859     * homogeneous, every object in it will be assigned the same space, that
5860     * of the largest object. Padding can be used to set some spacing between
5861     * the cell given to each object. The alignment of the box, set with
5862     * elm_box_align_set(), determines how the bounding box of all the elements
5863     * will be placed within the space given to the box widget itself.
5864     *
5865     * The size hints of each object also affect how they are placed and sized
5866     * within the box. evas_object_size_hint_min_set() will give the minimum
5867     * size the object can have, and the box will use it as the basis for all
5868     * latter calculations. Elementary widgets set their own minimum size as
5869     * needed, so there's rarely any need to use it manually.
5870     *
5871     * evas_object_size_hint_weight_set(), when not in homogeneous mode, is
5872     * used to tell whether the object will be allocated the minimum size it
5873     * needs or if the space given to it should be expanded. It's important
5874     * to realize that expanding the size given to the object is not the same
5875     * thing as resizing the object. It could very well end being a small
5876     * widget floating in a much larger empty space. If not set, the weight
5877     * for objects will normally be 0.0 for both axis, meaning the widget will
5878     * not be expanded. To take as much space possible, set the weight to
5879     * EVAS_HINT_EXPAND (defined to 1.0) for the desired axis to expand.
5880     *
5881     * Besides how much space each object is allocated, it's possible to control
5882     * how the widget will be placed within that space using
5883     * evas_object_size_hint_align_set(). By default, this value will be 0.5
5884     * for both axis, meaning the object will be centered, but any value from
5885     * 0.0 (left or top, for the @c x and @c y axis, respectively) to 1.0
5886     * (right or bottom) can be used. The special value EVAS_HINT_FILL, which
5887     * is -1.0, means the object will be resized to fill the entire space it
5888     * was allocated.
5889     *
5890     * In addition, customized functions to define the layout can be set, which
5891     * allow the application developer to organize the objects within the box
5892     * in any number of ways.
5893     *
5894     * The special elm_box_layout_transition() function can be used
5895     * to switch from one layout to another, animating the motion of the
5896     * children of the box.
5897     *
5898     * @note Objects should not be added to box objects using _add() calls.
5899     *
5900     * Some examples on how to use boxes follow:
5901     * @li @ref box_example_01
5902     * @li @ref box_example_02
5903     *
5904     * @{
5905     */
5906    /**
5907     * @typedef Elm_Box_Transition
5908     *
5909     * Opaque handler containing the parameters to perform an animated
5910     * transition of the layout the box uses.
5911     *
5912     * @see elm_box_transition_new()
5913     * @see elm_box_layout_set()
5914     * @see elm_box_layout_transition()
5915     */
5916    typedef struct _Elm_Box_Transition Elm_Box_Transition;
5917
5918    /**
5919     * Add a new box to the parent
5920     *
5921     * By default, the box will be in vertical mode and non-homogeneous.
5922     *
5923     * @param parent The parent object
5924     * @return The new object or NULL if it cannot be created
5925     */
5926    EAPI Evas_Object        *elm_box_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5927    /**
5928     * Set the horizontal orientation
5929     *
5930     * By default, box object arranges their contents vertically from top to
5931     * bottom.
5932     * By calling this function with @p horizontal as EINA_TRUE, the box will
5933     * become horizontal, arranging contents from left to right.
5934     *
5935     * @note This flag is ignored if a custom layout function is set.
5936     *
5937     * @param obj The box object
5938     * @param horizontal The horizontal flag (EINA_TRUE = horizontal,
5939     * EINA_FALSE = vertical)
5940     */
5941    EAPI void                elm_box_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
5942    /**
5943     * Get the horizontal orientation
5944     *
5945     * @param obj The box object
5946     * @return EINA_TRUE if the box is set to horizontal mode, EINA_FALSE otherwise
5947     */
5948    EAPI Eina_Bool           elm_box_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5949    /**
5950     * Set the box to arrange its children homogeneously
5951     *
5952     * If enabled, homogeneous layout makes all items the same size, according
5953     * to the size of the largest of its children.
5954     *
5955     * @note This flag is ignored if a custom layout function is set.
5956     *
5957     * @param obj The box object
5958     * @param homogeneous The homogeneous flag
5959     */
5960    EAPI void                elm_box_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
5961    /**
5962     * Get whether the box is using homogeneous mode or not
5963     *
5964     * @param obj The box object
5965     * @return EINA_TRUE if it's homogeneous, EINA_FALSE otherwise
5966     */
5967    EAPI Eina_Bool           elm_box_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5968    /**
5969     * Add an object to the beginning of the pack list
5970     *
5971     * Pack @p subobj into the box @p obj, placing it first in the list of
5972     * children objects. The actual position the object will get on screen
5973     * depends on the layout used. If no custom layout is set, it will be at
5974     * the top or left, depending if the box is vertical or horizontal,
5975     * respectively.
5976     *
5977     * @param obj The box object
5978     * @param subobj The object to add to the box
5979     *
5980     * @see elm_box_pack_end()
5981     * @see elm_box_pack_before()
5982     * @see elm_box_pack_after()
5983     * @see elm_box_unpack()
5984     * @see elm_box_unpack_all()
5985     * @see elm_box_clear()
5986     */
5987    EAPI void                elm_box_pack_start(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5988    /**
5989     * Add an object at the end of the pack list
5990     *
5991     * Pack @p subobj into the box @p obj, placing it last in the list of
5992     * children objects. The actual position the object will get on screen
5993     * depends on the layout used. If no custom layout is set, it will be at
5994     * the bottom or right, depending if the box is vertical or horizontal,
5995     * respectively.
5996     *
5997     * @param obj The box object
5998     * @param subobj The object to add to the box
5999     *
6000     * @see elm_box_pack_start()
6001     * @see elm_box_pack_before()
6002     * @see elm_box_pack_after()
6003     * @see elm_box_unpack()
6004     * @see elm_box_unpack_all()
6005     * @see elm_box_clear()
6006     */
6007    EAPI void                elm_box_pack_end(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
6008    /**
6009     * Adds an object to the box before the indicated object
6010     *
6011     * This will add the @p subobj to the box indicated before the object
6012     * indicated with @p before. If @p before is not already in the box, results
6013     * are undefined. Before means either to the left of the indicated object or
6014     * above it depending on orientation.
6015     *
6016     * @param obj The box object
6017     * @param subobj The object to add to the box
6018     * @param before The object before which to add it
6019     *
6020     * @see elm_box_pack_start()
6021     * @see elm_box_pack_end()
6022     * @see elm_box_pack_after()
6023     * @see elm_box_unpack()
6024     * @see elm_box_unpack_all()
6025     * @see elm_box_clear()
6026     */
6027    EAPI void                elm_box_pack_before(Evas_Object *obj, Evas_Object *subobj, Evas_Object *before) EINA_ARG_NONNULL(1);
6028    /**
6029     * Adds an object to the box after the indicated object
6030     *
6031     * This will add the @p subobj to the box indicated after the object
6032     * indicated with @p after. If @p after is not already in the box, results
6033     * are undefined. After means either to the right of the indicated object or
6034     * below it depending on orientation.
6035     *
6036     * @param obj The box object
6037     * @param subobj The object to add to the box
6038     * @param after The object after which to add it
6039     *
6040     * @see elm_box_pack_start()
6041     * @see elm_box_pack_end()
6042     * @see elm_box_pack_before()
6043     * @see elm_box_unpack()
6044     * @see elm_box_unpack_all()
6045     * @see elm_box_clear()
6046     */
6047    EAPI void                elm_box_pack_after(Evas_Object *obj, Evas_Object *subobj, Evas_Object *after) EINA_ARG_NONNULL(1);
6048    /**
6049     * Clear the box of all children
6050     *
6051     * Remove all the elements contained by the box, deleting the respective
6052     * objects.
6053     *
6054     * @param obj The box object
6055     *
6056     * @see elm_box_unpack()
6057     * @see elm_box_unpack_all()
6058     */
6059    EAPI void                elm_box_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
6060    /**
6061     * Unpack a box item
6062     *
6063     * Remove the object given by @p subobj from the box @p obj without
6064     * deleting it.
6065     *
6066     * @param obj The box object
6067     *
6068     * @see elm_box_unpack_all()
6069     * @see elm_box_clear()
6070     */
6071    EAPI void                elm_box_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
6072    /**
6073     * Remove all items from the box, without deleting them
6074     *
6075     * Clear the box from all children, but don't delete the respective objects.
6076     * If no other references of the box children exist, the objects will never
6077     * be deleted, and thus the application will leak the memory. Make sure
6078     * when using this function that you hold a reference to all the objects
6079     * in the box @p obj.
6080     *
6081     * @param obj The box object
6082     *
6083     * @see elm_box_clear()
6084     * @see elm_box_unpack()
6085     */
6086    EAPI void                elm_box_unpack_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
6087    /**
6088     * Retrieve a list of the objects packed into the box
6089     *
6090     * Returns a new @c Eina_List with a pointer to @c Evas_Object in its nodes.
6091     * The order of the list corresponds to the packing order the box uses.
6092     *
6093     * You must free this list with eina_list_free() once you are done with it.
6094     *
6095     * @param obj The box object
6096     */
6097    EAPI const Eina_List    *elm_box_children_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6098    /**
6099     * Set the space (padding) between the box's elements.
6100     *
6101     * Extra space in pixels that will be added between a box child and its
6102     * neighbors after its containing cell has been calculated. This padding
6103     * is set for all elements in the box, besides any possible padding that
6104     * individual elements may have through their size hints.
6105     *
6106     * @param obj The box object
6107     * @param horizontal The horizontal space between elements
6108     * @param vertical The vertical space between elements
6109     */
6110    EAPI void                elm_box_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
6111    /**
6112     * Get the space (padding) between the box's elements.
6113     *
6114     * @param obj The box object
6115     * @param horizontal The horizontal space between elements
6116     * @param vertical The vertical space between elements
6117     *
6118     * @see elm_box_padding_set()
6119     */
6120    EAPI void                elm_box_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
6121    /**
6122     * Set the alignment of the whole bouding box of contents.
6123     *
6124     * Sets how the bounding box containing all the elements of the box, after
6125     * their sizes and position has been calculated, will be aligned within
6126     * the space given for the whole box widget.
6127     *
6128     * @param obj The box object
6129     * @param horizontal The horizontal alignment of elements
6130     * @param vertical The vertical alignment of elements
6131     */
6132    EAPI void                elm_box_align_set(Evas_Object *obj, double horizontal, double vertical) EINA_ARG_NONNULL(1);
6133    /**
6134     * Get the alignment of the whole bouding box of contents.
6135     *
6136     * @param obj The box object
6137     * @param horizontal The horizontal alignment of elements
6138     * @param vertical The vertical alignment of elements
6139     *
6140     * @see elm_box_align_set()
6141     */
6142    EAPI void                elm_box_align_get(const Evas_Object *obj, double *horizontal, double *vertical) EINA_ARG_NONNULL(1);
6143
6144    /**
6145     * Force the box to recalculate its children packing.
6146     *
6147     * If any children was added or removed, box will not calculate the
6148     * values immediately rather leaving it to the next main loop
6149     * iteration. While this is great as it would save lots of
6150     * recalculation, whenever you need to get the position of a just
6151     * added item you must force recalculate before doing so.
6152     *
6153     * @param obj The box object.
6154     */
6155    EAPI void                 elm_box_recalculate(Evas_Object *obj);
6156
6157    /**
6158     * Set the layout defining function to be used by the box
6159     *
6160     * Whenever anything changes that requires the box in @p obj to recalculate
6161     * the size and position of its elements, the function @p cb will be called
6162     * to determine what the layout of the children will be.
6163     *
6164     * Once a custom function is set, everything about the children layout
6165     * is defined by it. The flags set by elm_box_horizontal_set() and
6166     * elm_box_homogeneous_set() no longer have any meaning, and the values
6167     * given by elm_box_padding_set() and elm_box_align_set() are up to this
6168     * layout function to decide if they are used and how. These last two
6169     * will be found in the @c priv parameter, of type @c Evas_Object_Box_Data,
6170     * passed to @p cb. The @c Evas_Object the function receives is not the
6171     * Elementary widget, but the internal Evas Box it uses, so none of the
6172     * functions described here can be used on it.
6173     *
6174     * Any of the layout functions in @c Evas can be used here, as well as the
6175     * special elm_box_layout_transition().
6176     *
6177     * The final @p data argument received by @p cb is the same @p data passed
6178     * here, and the @p free_data function will be called to free it
6179     * whenever the box is destroyed or another layout function is set.
6180     *
6181     * Setting @p cb to NULL will revert back to the default layout function.
6182     *
6183     * @param obj The box object
6184     * @param cb The callback function used for layout
6185     * @param data Data that will be passed to layout function
6186     * @param free_data Function called to free @p data
6187     *
6188     * @see elm_box_layout_transition()
6189     */
6190    EAPI void                elm_box_layout_set(Evas_Object *obj, Evas_Object_Box_Layout cb, const void *data, void (*free_data)(void *data)) EINA_ARG_NONNULL(1);
6191    /**
6192     * Special layout function that animates the transition from one layout to another
6193     *
6194     * Normally, when switching the layout function for a box, this will be
6195     * reflected immediately on screen on the next render, but it's also
6196     * possible to do this through an animated transition.
6197     *
6198     * This is done by creating an ::Elm_Box_Transition and setting the box
6199     * layout to this function.
6200     *
6201     * For example:
6202     * @code
6203     * Elm_Box_Transition *t = elm_box_transition_new(1.0,
6204     *                            evas_object_box_layout_vertical, // start
6205     *                            NULL, // data for initial layout
6206     *                            NULL, // free function for initial data
6207     *                            evas_object_box_layout_horizontal, // end
6208     *                            NULL, // data for final layout
6209     *                            NULL, // free function for final data
6210     *                            anim_end, // will be called when animation ends
6211     *                            NULL); // data for anim_end function\
6212     * elm_box_layout_set(box, elm_box_layout_transition, t,
6213     *                    elm_box_transition_free);
6214     * @endcode
6215     *
6216     * @note This function can only be used with elm_box_layout_set(). Calling
6217     * it directly will not have the expected results.
6218     *
6219     * @see elm_box_transition_new
6220     * @see elm_box_transition_free
6221     * @see elm_box_layout_set
6222     */
6223    EAPI void                elm_box_layout_transition(Evas_Object *obj, Evas_Object_Box_Data *priv, void *data);
6224    /**
6225     * Create a new ::Elm_Box_Transition to animate the switch of layouts
6226     *
6227     * If you want to animate the change from one layout to another, you need
6228     * to set the layout function of the box to elm_box_layout_transition(),
6229     * passing as user data to it an instance of ::Elm_Box_Transition with the
6230     * necessary information to perform this animation. The free function to
6231     * set for the layout is elm_box_transition_free().
6232     *
6233     * The parameters to create an ::Elm_Box_Transition sum up to how long
6234     * will it be, in seconds, a layout function to describe the initial point,
6235     * another for the final position of the children and one function to be
6236     * called when the whole animation ends. This last function is useful to
6237     * set the definitive layout for the box, usually the same as the end
6238     * layout for the animation, but could be used to start another transition.
6239     *
6240     * @param start_layout The layout function that will be used to start the animation
6241     * @param start_layout_data The data to be passed the @p start_layout function
6242     * @param start_layout_free_data Function to free @p start_layout_data
6243     * @param end_layout The layout function that will be used to end the animation
6244     * @param end_layout_free_data The data to be passed the @p end_layout function
6245     * @param end_layout_free_data Function to free @p end_layout_data
6246     * @param transition_end_cb Callback function called when animation ends
6247     * @param transition_end_data Data to be passed to @p transition_end_cb
6248     * @return An instance of ::Elm_Box_Transition
6249     *
6250     * @see elm_box_transition_new
6251     * @see elm_box_layout_transition
6252     */
6253    EAPI Elm_Box_Transition *elm_box_transition_new(const double duration, Evas_Object_Box_Layout start_layout, void *start_layout_data, void(*start_layout_free_data)(void *data), Evas_Object_Box_Layout end_layout, void *end_layout_data, void(*end_layout_free_data)(void *data), void(*transition_end_cb)(void *data), void *transition_end_data) EINA_ARG_NONNULL(2, 5);
6254    /**
6255     * Free a Elm_Box_Transition instance created with elm_box_transition_new().
6256     *
6257     * This function is mostly useful as the @c free_data parameter in
6258     * elm_box_layout_set() when elm_box_layout_transition().
6259     *
6260     * @param data The Elm_Box_Transition instance to be freed.
6261     *
6262     * @see elm_box_transition_new
6263     * @see elm_box_layout_transition
6264     */
6265    EAPI void                elm_box_transition_free(void *data);
6266    /**
6267     * @}
6268     */
6269
6270    /* button */
6271    /**
6272     * @defgroup Button Button
6273     *
6274     * @image html img/widget/button/preview-00.png
6275     * @image latex img/widget/button/preview-00.eps
6276     * @image html img/widget/button/preview-01.png
6277     * @image latex img/widget/button/preview-01.eps
6278     * @image html img/widget/button/preview-02.png
6279     * @image latex img/widget/button/preview-02.eps
6280     *
6281     * This is a push-button. Press it and run some function. It can contain
6282     * a simple label and icon object and it also has an autorepeat feature.
6283     *
6284     * This widgets emits the following signals:
6285     * @li "clicked": the user clicked the button (press/release).
6286     * @li "repeated": the user pressed the button without releasing it.
6287     * @li "pressed": button was pressed.
6288     * @li "unpressed": button was released after being pressed.
6289     * In all three cases, the @c event parameter of the callback will be
6290     * @c NULL.
6291     *
6292     * Also, defined in the default theme, the button has the following styles
6293     * available:
6294     * @li default: a normal button.
6295     * @li anchor: Like default, but the button fades away when the mouse is not
6296     * over it, leaving only the text or icon.
6297     * @li hoversel_vertical: Internally used by @ref Hoversel to give a
6298     * continuous look across its options.
6299     * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
6300     *
6301     * Default contents parts of the button widget that you can use for are:
6302     * @li "icon" - An icon of the button
6303     *
6304     * Default text parts of the button widget that you can use for are:
6305     * @li "default" - Label of the button
6306     *
6307     * Follow through a complete example @ref button_example_01 "here".
6308     * @{
6309     */
6310    /**
6311     * Add a new button to the parent's canvas
6312     *
6313     * @param parent The parent object
6314     * @return The new object or NULL if it cannot be created
6315     */
6316    EAPI Evas_Object *elm_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6317    /**
6318     * Set the label used in the button
6319     *
6320     * The passed @p label can be NULL to clean any existing text in it and
6321     * leave the button as an icon only object.
6322     *
6323     * @param obj The button object
6324     * @param label The text will be written on the button
6325     * @deprecated use elm_object_text_set() instead.
6326     */
6327    EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6328    /**
6329     * Get the label set for the button
6330     *
6331     * The string returned is an internal pointer and should not be freed or
6332     * altered. It will also become invalid when the button is destroyed.
6333     * The string returned, if not NULL, is a stringshare, so if you need to
6334     * keep it around even after the button is destroyed, you can use
6335     * eina_stringshare_ref().
6336     *
6337     * @param obj The button object
6338     * @return The text set to the label, or NULL if nothing is set
6339     * @deprecated use elm_object_text_set() instead.
6340     */
6341    EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6342    /**
6343     * Set the icon used for the button
6344     *
6345     * Setting a new icon will delete any other that was previously set, making
6346     * any reference to them invalid. If you need to maintain the previous
6347     * object alive, unset it first with elm_button_icon_unset().
6348     *
6349     * @param obj The button object
6350     * @param icon The icon object for the button
6351     * @deprecated use elm_object_part_content_set() instead.
6352     */
6353    EINA_DEPRECATED EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6354    /**
6355     * Get the icon used for the button
6356     *
6357     * Return the icon object which is set for this widget. If the button is
6358     * destroyed or another icon is set, the returned object will be deleted
6359     * and any reference to it will be invalid.
6360     *
6361     * @param obj The button object
6362     * @return The icon object that is being used
6363     *
6364     * @deprecated use elm_object_part_content_get() instead
6365     */
6366    EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6367    /**
6368     * Remove the icon set without deleting it and return the object
6369     *
6370     * This function drops the reference the button holds of the icon object
6371     * and returns this last object. It is used in case you want to remove any
6372     * icon, or set another one, without deleting the actual object. The button
6373     * will be left without an icon set.
6374     *
6375     * @param obj The button object
6376     * @return The icon object that was being used
6377     * @deprecated use elm_object_part_content_unset() instead.
6378     */
6379    EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6380    /**
6381     * Turn on/off the autorepeat event generated when the button is kept pressed
6382     *
6383     * When off, no autorepeat is performed and buttons emit a normal @c clicked
6384     * signal when they are clicked.
6385     *
6386     * When on, keeping a button pressed will continuously emit a @c repeated
6387     * signal until the button is released. The time it takes until it starts
6388     * emitting the signal is given by
6389     * elm_button_autorepeat_initial_timeout_set(), and the time between each
6390     * new emission by elm_button_autorepeat_gap_timeout_set().
6391     *
6392     * @param obj The button object
6393     * @param on  A bool to turn on/off the event
6394     */
6395    EAPI void         elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on) EINA_ARG_NONNULL(1);
6396    /**
6397     * Get whether the autorepeat feature is enabled
6398     *
6399     * @param obj The button object
6400     * @return EINA_TRUE if autorepeat is on, EINA_FALSE otherwise
6401     *
6402     * @see elm_button_autorepeat_set()
6403     */
6404    EAPI Eina_Bool    elm_button_autorepeat_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6405    /**
6406     * Set the initial timeout before the autorepeat event is generated
6407     *
6408     * Sets the timeout, in seconds, since the button is pressed until the
6409     * first @c repeated signal is emitted. If @p t is 0.0 or less, there
6410     * won't be any delay and the even will be fired the moment the button is
6411     * pressed.
6412     *
6413     * @param obj The button object
6414     * @param t   Timeout in seconds
6415     *
6416     * @see elm_button_autorepeat_set()
6417     * @see elm_button_autorepeat_gap_timeout_set()
6418     */
6419    EAPI void         elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6420    /**
6421     * Get the initial timeout before the autorepeat event is generated
6422     *
6423     * @param obj The button object
6424     * @return Timeout in seconds
6425     *
6426     * @see elm_button_autorepeat_initial_timeout_set()
6427     */
6428    EAPI double       elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6429    /**
6430     * Set the interval between each generated autorepeat event
6431     *
6432     * After the first @c repeated event is fired, all subsequent ones will
6433     * follow after a delay of @p t seconds for each.
6434     *
6435     * @param obj The button object
6436     * @param t   Interval in seconds
6437     *
6438     * @see elm_button_autorepeat_initial_timeout_set()
6439     */
6440    EAPI void         elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6441    /**
6442     * Get the interval between each generated autorepeat event
6443     *
6444     * @param obj The button object
6445     * @return Interval in seconds
6446     */
6447    EAPI double       elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6448    /**
6449     * @}
6450     */
6451
6452    /**
6453     * @defgroup File_Selector_Button File Selector Button
6454     *
6455     * @image html img/widget/fileselector_button/preview-00.png
6456     * @image latex img/widget/fileselector_button/preview-00.eps
6457     * @image html img/widget/fileselector_button/preview-01.png
6458     * @image latex img/widget/fileselector_button/preview-01.eps
6459     * @image html img/widget/fileselector_button/preview-02.png
6460     * @image latex img/widget/fileselector_button/preview-02.eps
6461     *
6462     * This is a button that, when clicked, creates an Elementary
6463     * window (or inner window) <b> with a @ref Fileselector "file
6464     * selector widget" within</b>. When a file is chosen, the (inner)
6465     * window is closed and the button emits a signal having the
6466     * selected file as it's @c event_info.
6467     *
6468     * This widget encapsulates operations on its internal file
6469     * selector on its own API. There is less control over its file
6470     * selector than that one would have instatiating one directly.
6471     *
6472     * The following styles are available for this button:
6473     * @li @c "default"
6474     * @li @c "anchor"
6475     * @li @c "hoversel_vertical"
6476     * @li @c "hoversel_vertical_entry"
6477     *
6478     * Smart callbacks one can register to:
6479     * - @c "file,chosen" - the user has selected a path, whose string
6480     *   pointer comes as the @c event_info data (a stringshared
6481     *   string)
6482     *
6483     * Here is an example on its usage:
6484     * @li @ref fileselector_button_example
6485     *
6486     * @see @ref File_Selector_Entry for a similar widget.
6487     * @{
6488     */
6489
6490    /**
6491     * Add a new file selector button widget to the given parent
6492     * Elementary (container) object
6493     *
6494     * @param parent The parent object
6495     * @return a new file selector button widget handle or @c NULL, on
6496     * errors
6497     */
6498    EAPI Evas_Object *elm_fileselector_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6499
6500    /**
6501     * Set the label for a given file selector button widget
6502     *
6503     * @param obj The file selector button widget
6504     * @param label The text label to be displayed on @p obj
6505     *
6506     * @deprecated use elm_object_text_set() instead.
6507     */
6508    EINA_DEPRECATED EAPI void         elm_fileselector_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6509
6510    /**
6511     * Get the label set for a given file selector button widget
6512     *
6513     * @param obj The file selector button widget
6514     * @return The button label
6515     *
6516     * @deprecated use elm_object_text_set() instead.
6517     */
6518    EINA_DEPRECATED EAPI const char  *elm_fileselector_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6519
6520    /**
6521     * Set the icon on a given file selector button widget
6522     *
6523     * @param obj The file selector button widget
6524     * @param icon The icon object for the button
6525     *
6526     * Once the icon object is set, a previously set one will be
6527     * deleted. If you want to keep the latter, use the
6528     * elm_fileselector_button_icon_unset() function.
6529     *
6530     * @see elm_fileselector_button_icon_get()
6531     */
6532    EAPI void         elm_fileselector_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6533
6534    /**
6535     * Get the icon set for a given file selector button widget
6536     *
6537     * @param obj The file selector button widget
6538     * @return The icon object currently set on @p obj or @c NULL, if
6539     * none is
6540     *
6541     * @see elm_fileselector_button_icon_set()
6542     */
6543    EAPI Evas_Object *elm_fileselector_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6544
6545    /**
6546     * Unset the icon used in a given file selector button widget
6547     *
6548     * @param obj The file selector button widget
6549     * @return The icon object that was being used on @p obj or @c
6550     * NULL, on errors
6551     *
6552     * Unparent and return the icon object which was set for this
6553     * widget.
6554     *
6555     * @see elm_fileselector_button_icon_set()
6556     */
6557    EAPI Evas_Object *elm_fileselector_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6558
6559    /**
6560     * Set the title for a given file selector button widget's window
6561     *
6562     * @param obj The file selector button widget
6563     * @param title The title string
6564     *
6565     * This will change the window's title, when the file selector pops
6566     * out after a click on the button. Those windows have the default
6567     * (unlocalized) value of @c "Select a file" as titles.
6568     *
6569     * @note It will only take any effect if the file selector
6570     * button widget is @b not under "inwin mode".
6571     *
6572     * @see elm_fileselector_button_window_title_get()
6573     */
6574    EAPI void         elm_fileselector_button_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6575
6576    /**
6577     * Get the title set for a given file selector button widget's
6578     * window
6579     *
6580     * @param obj The file selector button widget
6581     * @return Title of the file selector button's window
6582     *
6583     * @see elm_fileselector_button_window_title_get() for more details
6584     */
6585    EAPI const char  *elm_fileselector_button_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6586
6587    /**
6588     * Set the size of a given file selector button widget's window,
6589     * holding the file selector itself.
6590     *
6591     * @param obj The file selector button widget
6592     * @param width The window's width
6593     * @param height The window's height
6594     *
6595     * @note it will only take any effect if the file selector button
6596     * widget is @b not under "inwin mode". The default size for the
6597     * window (when applicable) is 400x400 pixels.
6598     *
6599     * @see elm_fileselector_button_window_size_get()
6600     */
6601    EAPI void         elm_fileselector_button_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6602
6603    /**
6604     * Get the size of a given file selector button widget's window,
6605     * holding the file selector itself.
6606     *
6607     * @param obj The file selector button widget
6608     * @param width Pointer into which to store the width value
6609     * @param height Pointer into which to store the height value
6610     *
6611     * @note Use @c NULL pointers on the size values you're not
6612     * interested in: they'll be ignored by the function.
6613     *
6614     * @see elm_fileselector_button_window_size_set(), for more details
6615     */
6616    EAPI void         elm_fileselector_button_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6617
6618    /**
6619     * Set the initial file system path for a given file selector
6620     * button widget
6621     *
6622     * @param obj The file selector button widget
6623     * @param path The path string
6624     *
6625     * It must be a <b>directory</b> path, which will have the contents
6626     * displayed initially in the file selector's view, when invoked
6627     * from @p obj. The default initial path is the @c "HOME"
6628     * environment variable's value.
6629     *
6630     * @see elm_fileselector_button_path_get()
6631     */
6632    EAPI void         elm_fileselector_button_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6633
6634    /**
6635     * Get the initial file system path set for a given file selector
6636     * button widget
6637     *
6638     * @param obj The file selector button widget
6639     * @return path The path string
6640     *
6641     * @see elm_fileselector_button_path_set() for more details
6642     */
6643    EAPI const char  *elm_fileselector_button_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6644
6645    /**
6646     * Enable/disable a tree view in the given file selector button
6647     * widget's internal file selector
6648     *
6649     * @param obj The file selector button widget
6650     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6651     * disable
6652     *
6653     * This has the same effect as elm_fileselector_expandable_set(),
6654     * but now applied to a file selector button's internal file
6655     * selector.
6656     *
6657     * @note There's no way to put a file selector button's internal
6658     * file selector in "grid mode", as one may do with "pure" file
6659     * selectors.
6660     *
6661     * @see elm_fileselector_expandable_get()
6662     */
6663    EAPI void         elm_fileselector_button_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6664
6665    /**
6666     * Get whether tree view is enabled for the given file selector
6667     * button widget's internal file selector
6668     *
6669     * @param obj The file selector button widget
6670     * @return @c EINA_TRUE if @p obj widget's internal file selector
6671     * is in tree view, @c EINA_FALSE otherwise (and or errors)
6672     *
6673     * @see elm_fileselector_expandable_set() for more details
6674     */
6675    EAPI Eina_Bool    elm_fileselector_button_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6676
6677    /**
6678     * Set whether a given file selector button widget's internal file
6679     * selector is to display folders only or the directory contents,
6680     * as well.
6681     *
6682     * @param obj The file selector button widget
6683     * @param only @c EINA_TRUE to make @p obj widget's internal file
6684     * selector only display directories, @c EINA_FALSE to make files
6685     * to be displayed in it too
6686     *
6687     * This has the same effect as elm_fileselector_folder_only_set(),
6688     * but now applied to a file selector button's internal file
6689     * selector.
6690     *
6691     * @see elm_fileselector_folder_only_get()
6692     */
6693    EAPI void         elm_fileselector_button_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6694
6695    /**
6696     * Get whether a given file selector button widget's internal file
6697     * selector is displaying folders only or the directory contents,
6698     * as well.
6699     *
6700     * @param obj The file selector button widget
6701     * @return @c EINA_TRUE if @p obj widget's internal file
6702     * selector is only displaying directories, @c EINA_FALSE if files
6703     * are being displayed in it too (and on errors)
6704     *
6705     * @see elm_fileselector_button_folder_only_set() for more details
6706     */
6707    EAPI Eina_Bool    elm_fileselector_button_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6708
6709    /**
6710     * Enable/disable the file name entry box where the user can type
6711     * in a name for a file, in a given file selector button widget's
6712     * internal file selector.
6713     *
6714     * @param obj The file selector button widget
6715     * @param is_save @c EINA_TRUE to make @p obj widget's internal
6716     * file selector a "saving dialog", @c EINA_FALSE otherwise
6717     *
6718     * This has the same effect as elm_fileselector_is_save_set(),
6719     * but now applied to a file selector button's internal file
6720     * selector.
6721     *
6722     * @see elm_fileselector_is_save_get()
6723     */
6724    EAPI void         elm_fileselector_button_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6725
6726    /**
6727     * Get whether the given file selector button widget's internal
6728     * file selector is in "saving dialog" mode
6729     *
6730     * @param obj The file selector button widget
6731     * @return @c EINA_TRUE, if @p obj widget's internal file selector
6732     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
6733     * errors)
6734     *
6735     * @see elm_fileselector_button_is_save_set() for more details
6736     */
6737    EAPI Eina_Bool    elm_fileselector_button_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6738
6739    /**
6740     * Set whether a given file selector button widget's internal file
6741     * selector will raise an Elementary "inner window", instead of a
6742     * dedicated Elementary window. By default, it won't.
6743     *
6744     * @param obj The file selector button widget
6745     * @param value @c EINA_TRUE to make it use an inner window, @c
6746     * EINA_TRUE to make it use a dedicated window
6747     *
6748     * @see elm_win_inwin_add() for more information on inner windows
6749     * @see elm_fileselector_button_inwin_mode_get()
6750     */
6751    EAPI void         elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6752
6753    /**
6754     * Get whether a given file selector button widget's internal file
6755     * selector will raise an Elementary "inner window", instead of a
6756     * dedicated Elementary window.
6757     *
6758     * @param obj The file selector button widget
6759     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
6760     * if it will use a dedicated window
6761     *
6762     * @see elm_fileselector_button_inwin_mode_set() for more details
6763     */
6764    EAPI Eina_Bool    elm_fileselector_button_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6765
6766    /**
6767     * @}
6768     */
6769
6770     /**
6771     * @defgroup File_Selector_Entry File Selector Entry
6772     *
6773     * @image html img/widget/fileselector_entry/preview-00.png
6774     * @image latex img/widget/fileselector_entry/preview-00.eps
6775     *
6776     * This is an entry made to be filled with or display a <b>file
6777     * system path string</b>. Besides the entry itself, the widget has
6778     * a @ref File_Selector_Button "file selector button" on its side,
6779     * which will raise an internal @ref Fileselector "file selector widget",
6780     * when clicked, for path selection aided by file system
6781     * navigation.
6782     *
6783     * This file selector may appear in an Elementary window or in an
6784     * inner window. When a file is chosen from it, the (inner) window
6785     * is closed and the selected file's path string is exposed both as
6786     * an smart event and as the new text on the entry.
6787     *
6788     * This widget encapsulates operations on its internal file
6789     * selector on its own API. There is less control over its file
6790     * selector than that one would have instatiating one directly.
6791     *
6792     * Smart callbacks one can register to:
6793     * - @c "changed" - The text within the entry was changed
6794     * - @c "activated" - The entry has had editing finished and
6795     *   changes are to be "committed"
6796     * - @c "press" - The entry has been clicked
6797     * - @c "longpressed" - The entry has been clicked (and held) for a
6798     *   couple seconds
6799     * - @c "clicked" - The entry has been clicked
6800     * - @c "clicked,double" - The entry has been double clicked
6801     * - @c "focused" - The entry has received focus
6802     * - @c "unfocused" - The entry has lost focus
6803     * - @c "selection,paste" - A paste action has occurred on the
6804     *   entry
6805     * - @c "selection,copy" - A copy action has occurred on the entry
6806     * - @c "selection,cut" - A cut action has occurred on the entry
6807     * - @c "unpressed" - The file selector entry's button was released
6808     *   after being pressed.
6809     * - @c "file,chosen" - The user has selected a path via the file
6810     *   selector entry's internal file selector, whose string pointer
6811     *   comes as the @c event_info data (a stringshared string)
6812     *
6813     * Here is an example on its usage:
6814     * @li @ref fileselector_entry_example
6815     *
6816     * @see @ref File_Selector_Button for a similar widget.
6817     * @{
6818     */
6819
6820    /**
6821     * Add a new file selector entry widget to the given parent
6822     * Elementary (container) object
6823     *
6824     * @param parent The parent object
6825     * @return a new file selector entry widget handle or @c NULL, on
6826     * errors
6827     */
6828    EAPI Evas_Object *elm_fileselector_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6829
6830    /**
6831     * Set the label for a given file selector entry widget's button
6832     *
6833     * @param obj The file selector entry widget
6834     * @param label The text label to be displayed on @p obj widget's
6835     * button
6836     *
6837     * @deprecated use elm_object_text_set() instead.
6838     */
6839    EINA_DEPRECATED EAPI void         elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6840
6841    /**
6842     * Get the label set for a given file selector entry widget's button
6843     *
6844     * @param obj The file selector entry widget
6845     * @return The widget button's label
6846     *
6847     * @deprecated use elm_object_text_set() instead.
6848     */
6849    EINA_DEPRECATED EAPI const char  *elm_fileselector_entry_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6850
6851    /**
6852     * Set the icon on a given file selector entry widget's button
6853     *
6854     * @param obj The file selector entry widget
6855     * @param icon The icon object for the entry's button
6856     *
6857     * Once the icon object is set, a previously set one will be
6858     * deleted. If you want to keep the latter, use the
6859     * elm_fileselector_entry_button_icon_unset() function.
6860     *
6861     * @see elm_fileselector_entry_button_icon_get()
6862     */
6863    EAPI void         elm_fileselector_entry_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6864
6865    /**
6866     * Get the icon set for a given file selector entry widget's button
6867     *
6868     * @param obj The file selector entry widget
6869     * @return The icon object currently set on @p obj widget's button
6870     * or @c NULL, if none is
6871     *
6872     * @see elm_fileselector_entry_button_icon_set()
6873     */
6874    EAPI Evas_Object *elm_fileselector_entry_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6875
6876    /**
6877     * Unset the icon used in a given file selector entry widget's
6878     * button
6879     *
6880     * @param obj The file selector entry widget
6881     * @return The icon object that was being used on @p obj widget's
6882     * button or @c NULL, on errors
6883     *
6884     * Unparent and return the icon object which was set for this
6885     * widget's button.
6886     *
6887     * @see elm_fileselector_entry_button_icon_set()
6888     */
6889    EAPI Evas_Object *elm_fileselector_entry_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6890
6891    /**
6892     * Set the title for a given file selector entry widget's window
6893     *
6894     * @param obj The file selector entry widget
6895     * @param title The title string
6896     *
6897     * This will change the window's title, when the file selector pops
6898     * out after a click on the entry's button. Those windows have the
6899     * default (unlocalized) value of @c "Select a file" as titles.
6900     *
6901     * @note It will only take any effect if the file selector
6902     * entry widget is @b not under "inwin mode".
6903     *
6904     * @see elm_fileselector_entry_window_title_get()
6905     */
6906    EAPI void         elm_fileselector_entry_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6907
6908    /**
6909     * Get the title set for a given file selector entry widget's
6910     * window
6911     *
6912     * @param obj The file selector entry widget
6913     * @return Title of the file selector entry's window
6914     *
6915     * @see elm_fileselector_entry_window_title_get() for more details
6916     */
6917    EAPI const char  *elm_fileselector_entry_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6918
6919    /**
6920     * Set the size of a given file selector entry widget's window,
6921     * holding the file selector itself.
6922     *
6923     * @param obj The file selector entry widget
6924     * @param width The window's width
6925     * @param height The window's height
6926     *
6927     * @note it will only take any effect if the file selector entry
6928     * widget is @b not under "inwin mode". The default size for the
6929     * window (when applicable) is 400x400 pixels.
6930     *
6931     * @see elm_fileselector_entry_window_size_get()
6932     */
6933    EAPI void         elm_fileselector_entry_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6934
6935    /**
6936     * Get the size of a given file selector entry widget's window,
6937     * holding the file selector itself.
6938     *
6939     * @param obj The file selector entry widget
6940     * @param width Pointer into which to store the width value
6941     * @param height Pointer into which to store the height value
6942     *
6943     * @note Use @c NULL pointers on the size values you're not
6944     * interested in: they'll be ignored by the function.
6945     *
6946     * @see elm_fileselector_entry_window_size_set(), for more details
6947     */
6948    EAPI void         elm_fileselector_entry_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6949
6950    /**
6951     * Set the initial file system path and the entry's path string for
6952     * a given file selector entry widget
6953     *
6954     * @param obj The file selector entry widget
6955     * @param path The path string
6956     *
6957     * It must be a <b>directory</b> path, which will have the contents
6958     * displayed initially in the file selector's view, when invoked
6959     * from @p obj. The default initial path is the @c "HOME"
6960     * environment variable's value.
6961     *
6962     * @see elm_fileselector_entry_path_get()
6963     */
6964    EAPI void         elm_fileselector_entry_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6965
6966    /**
6967     * Get the entry's path string for a given file selector entry
6968     * widget
6969     *
6970     * @param obj The file selector entry widget
6971     * @return path The path string
6972     *
6973     * @see elm_fileselector_entry_path_set() for more details
6974     */
6975    EAPI const char  *elm_fileselector_entry_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6976
6977    /**
6978     * Enable/disable a tree view in the given file selector entry
6979     * widget's internal file selector
6980     *
6981     * @param obj The file selector entry widget
6982     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6983     * disable
6984     *
6985     * This has the same effect as elm_fileselector_expandable_set(),
6986     * but now applied to a file selector entry's internal file
6987     * selector.
6988     *
6989     * @note There's no way to put a file selector entry's internal
6990     * file selector in "grid mode", as one may do with "pure" file
6991     * selectors.
6992     *
6993     * @see elm_fileselector_expandable_get()
6994     */
6995    EAPI void         elm_fileselector_entry_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6996
6997    /**
6998     * Get whether tree view is enabled for the given file selector
6999     * entry widget's internal file selector
7000     *
7001     * @param obj The file selector entry widget
7002     * @return @c EINA_TRUE if @p obj widget's internal file selector
7003     * is in tree view, @c EINA_FALSE otherwise (and or errors)
7004     *
7005     * @see elm_fileselector_expandable_set() for more details
7006     */
7007    EAPI Eina_Bool    elm_fileselector_entry_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7008
7009    /**
7010     * Set whether a given file selector entry widget's internal file
7011     * selector is to display folders only or the directory contents,
7012     * as well.
7013     *
7014     * @param obj The file selector entry widget
7015     * @param only @c EINA_TRUE to make @p obj widget's internal file
7016     * selector only display directories, @c EINA_FALSE to make files
7017     * to be displayed in it too
7018     *
7019     * This has the same effect as elm_fileselector_folder_only_set(),
7020     * but now applied to a file selector entry's internal file
7021     * selector.
7022     *
7023     * @see elm_fileselector_folder_only_get()
7024     */
7025    EAPI void         elm_fileselector_entry_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
7026
7027    /**
7028     * Get whether a given file selector entry widget's internal file
7029     * selector is displaying folders only or the directory contents,
7030     * as well.
7031     *
7032     * @param obj The file selector entry widget
7033     * @return @c EINA_TRUE if @p obj widget's internal file
7034     * selector is only displaying directories, @c EINA_FALSE if files
7035     * are being displayed in it too (and on errors)
7036     *
7037     * @see elm_fileselector_entry_folder_only_set() for more details
7038     */
7039    EAPI Eina_Bool    elm_fileselector_entry_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7040
7041    /**
7042     * Enable/disable the file name entry box where the user can type
7043     * in a name for a file, in a given file selector entry widget's
7044     * internal file selector.
7045     *
7046     * @param obj The file selector entry widget
7047     * @param is_save @c EINA_TRUE to make @p obj widget's internal
7048     * file selector a "saving dialog", @c EINA_FALSE otherwise
7049     *
7050     * This has the same effect as elm_fileselector_is_save_set(),
7051     * but now applied to a file selector entry's internal file
7052     * selector.
7053     *
7054     * @see elm_fileselector_is_save_get()
7055     */
7056    EAPI void         elm_fileselector_entry_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
7057
7058    /**
7059     * Get whether the given file selector entry widget's internal
7060     * file selector is in "saving dialog" mode
7061     *
7062     * @param obj The file selector entry widget
7063     * @return @c EINA_TRUE, if @p obj widget's internal file selector
7064     * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
7065     * errors)
7066     *
7067     * @see elm_fileselector_entry_is_save_set() for more details
7068     */
7069    EAPI Eina_Bool    elm_fileselector_entry_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7070
7071    /**
7072     * Set whether a given file selector entry widget's internal file
7073     * selector will raise an Elementary "inner window", instead of a
7074     * dedicated Elementary window. By default, it won't.
7075     *
7076     * @param obj The file selector entry widget
7077     * @param value @c EINA_TRUE to make it use an inner window, @c
7078     * EINA_TRUE to make it use a dedicated window
7079     *
7080     * @see elm_win_inwin_add() for more information on inner windows
7081     * @see elm_fileselector_entry_inwin_mode_get()
7082     */
7083    EAPI void         elm_fileselector_entry_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
7084
7085    /**
7086     * Get whether a given file selector entry widget's internal file
7087     * selector will raise an Elementary "inner window", instead of a
7088     * dedicated Elementary window.
7089     *
7090     * @param obj The file selector entry widget
7091     * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
7092     * if it will use a dedicated window
7093     *
7094     * @see elm_fileselector_entry_inwin_mode_set() for more details
7095     */
7096    EAPI Eina_Bool    elm_fileselector_entry_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7097
7098    /**
7099     * Set the initial file system path for a given file selector entry
7100     * widget
7101     *
7102     * @param obj The file selector entry widget
7103     * @param path The path string
7104     *
7105     * It must be a <b>directory</b> path, which will have the contents
7106     * displayed initially in the file selector's view, when invoked
7107     * from @p obj. The default initial path is the @c "HOME"
7108     * environment variable's value.
7109     *
7110     * @see elm_fileselector_entry_path_get()
7111     */
7112    EAPI void         elm_fileselector_entry_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
7113
7114    /**
7115     * Get the parent directory's path to the latest file selection on
7116     * a given filer selector entry widget
7117     *
7118     * @param obj The file selector object
7119     * @return The (full) path of the directory of the last selection
7120     * on @p obj widget, a @b stringshared string
7121     *
7122     * @see elm_fileselector_entry_path_set()
7123     */
7124    EAPI const char  *elm_fileselector_entry_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7125
7126    /**
7127     * @}
7128     */
7129
7130    /**
7131     * @defgroup Scroller Scroller
7132     *
7133     * A scroller holds a single object and "scrolls it around". This means that
7134     * it allows the user to use a scrollbar (or a finger) to drag the viewable
7135     * region around, allowing to move through a much larger object that is
7136     * contained in the scroller. The scroller will always have a small minimum
7137     * size by default as it won't be limited by the contents of the scroller.
7138     *
7139     * Signals that you can add callbacks for are:
7140     * @li "edge,left" - the left edge of the content has been reached
7141     * @li "edge,right" - the right edge of the content has been reached
7142     * @li "edge,top" - the top edge of the content has been reached
7143     * @li "edge,bottom" - the bottom edge of the content has been reached
7144     * @li "scroll" - the content has been scrolled (moved)
7145     * @li "scroll,anim,start" - scrolling animation has started
7146     * @li "scroll,anim,stop" - scrolling animation has stopped
7147     * @li "scroll,drag,start" - dragging the contents around has started
7148     * @li "scroll,drag,stop" - dragging the contents around has stopped
7149     * @note The "scroll,anim,*" and "scroll,drag,*" signals are only emitted by
7150     * user intervetion.
7151     *
7152     * @note When Elemementary is in embedded mode the scrollbars will not be
7153     * dragable, they appear merely as indicators of how much has been scrolled.
7154     * @note When Elementary is in desktop mode the thumbscroll(a.k.a.
7155     * fingerscroll) won't work.
7156     *
7157     * Default contents parts of the scroller widget that you can use for are:
7158     * @li "default" - A content of the scroller
7159     *
7160     * In @ref tutorial_scroller you'll find an example of how to use most of
7161     * this API.
7162     * @{
7163     */
7164    /**
7165     * @brief Type that controls when scrollbars should appear.
7166     *
7167     * @see elm_scroller_policy_set()
7168     */
7169    typedef enum _Elm_Scroller_Policy
7170      {
7171         ELM_SCROLLER_POLICY_AUTO = 0, /**< Show scrollbars as needed */
7172         ELM_SCROLLER_POLICY_ON, /**< Always show scrollbars */
7173         ELM_SCROLLER_POLICY_OFF, /**< Never show scrollbars */
7174         ELM_SCROLLER_POLICY_LAST
7175      } Elm_Scroller_Policy;
7176    /**
7177     * @brief Add a new scroller to the parent
7178     *
7179     * @param parent The parent object
7180     * @return The new object or NULL if it cannot be created
7181     */
7182    EAPI Evas_Object *elm_scroller_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7183    /**
7184     * @brief Set the content of the scroller widget (the object to be scrolled around).
7185     *
7186     * @param obj The scroller object
7187     * @param content The new content object
7188     *
7189     * Once the content object is set, a previously set one will be deleted.
7190     * If you want to keep that old content object, use the
7191     * elm_scroller_content_unset() function.
7192     * @deprecated use elm_object_content_set() instead
7193     */
7194    EINA_DEPRECATED EAPI void elm_scroller_content_set(Evas_Object *obj, Evas_Object *child) EINA_ARG_NONNULL(1);
7195    /**
7196     * @brief Get the content of the scroller widget
7197     *
7198     * @param obj The slider object
7199     * @return The content that is being used
7200     *
7201     * Return the content object which is set for this widget
7202     *
7203     * @see elm_scroller_content_set()
7204     * @deprecated use elm_object_content_get() instead.
7205     */
7206    EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7207    /**
7208     * @brief Unset the content of the scroller widget
7209     *
7210     * @param obj The slider object
7211     * @return The content that was being used
7212     *
7213     * Unparent and return the content object which was set for this widget
7214     *
7215     * @see elm_scroller_content_set()
7216     * @deprecated use elm_object_content_unset() instead.
7217     */
7218    EINA_DEPRECATED EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7219    /**
7220     * @brief Set custom theme elements for the scroller
7221     *
7222     * @param obj The scroller object
7223     * @param widget The widget name to use (default is "scroller")
7224     * @param base The base name to use (default is "base")
7225     */
7226    EAPI void         elm_scroller_custom_widget_base_theme_set(Evas_Object *obj, const char *widget, const char *base) EINA_ARG_NONNULL(1, 2, 3);
7227    /**
7228     * @brief Make the scroller minimum size limited to the minimum size of the content
7229     *
7230     * @param obj The scroller object
7231     * @param w Enable limiting minimum size horizontally
7232     * @param h Enable limiting minimum size vertically
7233     *
7234     * By default the scroller will be as small as its design allows,
7235     * irrespective of its content. This will make the scroller minimum size the
7236     * right size horizontally and/or vertically to perfectly fit its content in
7237     * that direction.
7238     */
7239    EAPI void         elm_scroller_content_min_limit(Evas_Object *obj, Eina_Bool w, Eina_Bool h) EINA_ARG_NONNULL(1);
7240    /**
7241     * @brief Show a specific virtual region within the scroller content object
7242     *
7243     * @param obj The scroller object
7244     * @param x X coordinate of the region
7245     * @param y Y coordinate of the region
7246     * @param w Width of the region
7247     * @param h Height of the region
7248     *
7249     * This will ensure all (or part if it does not fit) of the designated
7250     * region in the virtual content object (0, 0 starting at the top-left of the
7251     * virtual content object) is shown within the scroller.
7252     */
7253    EAPI void         elm_scroller_region_show(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
7254    /**
7255     * @brief Set the scrollbar visibility policy
7256     *
7257     * @param obj The scroller object
7258     * @param policy_h Horizontal scrollbar policy
7259     * @param policy_v Vertical scrollbar policy
7260     *
7261     * This sets the scrollbar visibility policy for the given scroller.
7262     * ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it is
7263     * needed, and otherwise kept hidden. ELM_SCROLLER_POLICY_ON turns it on all
7264     * the time, and ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
7265     * respectively for the horizontal and vertical scrollbars.
7266     */
7267    EAPI void         elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
7268    /**
7269     * @brief Gets scrollbar visibility policy
7270     *
7271     * @param obj The scroller object
7272     * @param policy_h Horizontal scrollbar policy
7273     * @param policy_v Vertical scrollbar policy
7274     *
7275     * @see elm_scroller_policy_set()
7276     */
7277    EAPI void         elm_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
7278    /**
7279     * @brief Get the currently visible content region
7280     *
7281     * @param obj The scroller object
7282     * @param x X coordinate of the region
7283     * @param y Y coordinate of the region
7284     * @param w Width of the region
7285     * @param h Height of the region
7286     *
7287     * This gets the current region in the content object that is visible through
7288     * the scroller. The region co-ordinates are returned in the @p x, @p y, @p
7289     * w, @p h values pointed to.
7290     *
7291     * @note All coordinates are relative to the content.
7292     *
7293     * @see elm_scroller_region_show()
7294     */
7295    EAPI void         elm_scroller_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
7296    /**
7297     * @brief Get the size of the content object
7298     *
7299     * @param obj The scroller object
7300     * @param w Width of the content object.
7301     * @param h Height of the content object.
7302     *
7303     * This gets the size of the content object of the scroller.
7304     */
7305    EAPI void         elm_scroller_child_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
7306    /**
7307     * @brief Set bouncing behavior
7308     *
7309     * @param obj The scroller object
7310     * @param h_bounce Allow bounce horizontally
7311     * @param v_bounce Allow bounce vertically
7312     *
7313     * When scrolling, the scroller may "bounce" when reaching an edge of the
7314     * content object. This is a visual way to indicate the end has been reached.
7315     * This is enabled by default for both axis. This API will set if it is enabled
7316     * for the given axis with the boolean parameters for each axis.
7317     */
7318    EAPI void         elm_scroller_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
7319    /**
7320     * @brief Get the bounce behaviour
7321     *
7322     * @param obj The Scroller object
7323     * @param h_bounce Will the scroller bounce horizontally or not
7324     * @param v_bounce Will the scroller bounce vertically or not
7325     *
7326     * @see elm_scroller_bounce_set()
7327     */
7328    EAPI void         elm_scroller_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
7329    /**
7330     * @brief Set scroll page size relative to viewport size.
7331     *
7332     * @param obj The scroller object
7333     * @param h_pagerel The horizontal page relative size
7334     * @param v_pagerel The vertical page relative size
7335     *
7336     * The scroller is capable of limiting scrolling by the user to "pages". That
7337     * is to jump by and only show a "whole page" at a time as if the continuous
7338     * area of the scroller content is split into page sized pieces. This sets
7339     * the size of a page relative to the viewport of the scroller. 1.0 is "1
7340     * viewport" is size (horizontally or vertically). 0.0 turns it off in that
7341     * axis. This is mutually exclusive with page size
7342     * (see elm_scroller_page_size_set()  for more information). Likewise 0.5
7343     * is "half a viewport". Sane usable values are normally between 0.0 and 1.0
7344     * including 1.0. If you only want 1 axis to be page "limited", use 0.0 for
7345     * the other axis.
7346     */
7347    EAPI void         elm_scroller_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
7348    /**
7349     * @brief Set scroll page size.
7350     *
7351     * @param obj The scroller object
7352     * @param h_pagesize The horizontal page size
7353     * @param v_pagesize The vertical page size
7354     *
7355     * This sets the page size to an absolute fixed value, with 0 turning it off
7356     * for that axis.
7357     *
7358     * @see elm_scroller_page_relative_set()
7359     */
7360    EAPI void         elm_scroller_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
7361    /**
7362     * @brief Get scroll current page number.
7363     *
7364     * @param obj The scroller object
7365     * @param h_pagenumber The horizontal page number
7366     * @param v_pagenumber The vertical page number
7367     *
7368     * The page number starts from 0. 0 is the first page.
7369     * Current page means the page which meets the top-left of the viewport.
7370     * If there are two or more pages in the viewport, it returns the number of the page
7371     * which meets the top-left of the viewport.
7372     *
7373     * @see elm_scroller_last_page_get()
7374     * @see elm_scroller_page_show()
7375     * @see elm_scroller_page_brint_in()
7376     */
7377    EAPI void         elm_scroller_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7378    /**
7379     * @brief Get scroll last page number.
7380     *
7381     * @param obj The scroller object
7382     * @param h_pagenumber The horizontal page number
7383     * @param v_pagenumber The vertical page number
7384     *
7385     * The page number starts from 0. 0 is the first page.
7386     * This returns the last page number among the pages.
7387     *
7388     * @see elm_scroller_current_page_get()
7389     * @see elm_scroller_page_show()
7390     * @see elm_scroller_page_brint_in()
7391     */
7392    EAPI void         elm_scroller_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
7393    /**
7394     * Show a specific virtual region within the scroller content object by page number.
7395     *
7396     * @param obj The scroller object
7397     * @param h_pagenumber The horizontal page number
7398     * @param v_pagenumber The vertical page number
7399     *
7400     * 0, 0 of the indicated page is located at the top-left of the viewport.
7401     * This will jump to the page directly without animation.
7402     *
7403     * Example of usage:
7404     *
7405     * @code
7406     * sc = elm_scroller_add(win);
7407     * elm_scroller_content_set(sc, content);
7408     * elm_scroller_page_relative_set(sc, 1, 0);
7409     * elm_scroller_current_page_get(sc, &h_page, &v_page);
7410     * elm_scroller_page_show(sc, h_page + 1, v_page);
7411     * @endcode
7412     *
7413     * @see elm_scroller_page_bring_in()
7414     */
7415    EAPI void         elm_scroller_page_show(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7416    /**
7417     * Show a specific virtual region within the scroller content object by page number.
7418     *
7419     * @param obj The scroller object
7420     * @param h_pagenumber The horizontal page number
7421     * @param v_pagenumber The vertical page number
7422     *
7423     * 0, 0 of the indicated page is located at the top-left of the viewport.
7424     * This will slide to the page with animation.
7425     *
7426     * Example of usage:
7427     *
7428     * @code
7429     * sc = elm_scroller_add(win);
7430     * elm_scroller_content_set(sc, content);
7431     * elm_scroller_page_relative_set(sc, 1, 0);
7432     * elm_scroller_last_page_get(sc, &h_page, &v_page);
7433     * elm_scroller_page_bring_in(sc, h_page, v_page);
7434     * @endcode
7435     *
7436     * @see elm_scroller_page_show()
7437     */
7438    EAPI void         elm_scroller_page_bring_in(Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
7439    /**
7440     * @brief Show a specific virtual region within the scroller content object.
7441     *
7442     * @param obj The scroller object
7443     * @param x X coordinate of the region
7444     * @param y Y coordinate of the region
7445     * @param w Width of the region
7446     * @param h Height of the region
7447     *
7448     * This will ensure all (or part if it does not fit) of the designated
7449     * region in the virtual content object (0, 0 starting at the top-left of the
7450     * virtual content object) is shown within the scroller. Unlike
7451     * elm_scroller_region_show(), this allow the scroller to "smoothly slide"
7452     * to this location (if configuration in general calls for transitions). It
7453     * may not jump immediately to the new location and make take a while and
7454     * show other content along the way.
7455     *
7456     * @see elm_scroller_region_show()
7457     */
7458    EAPI void         elm_scroller_region_bring_in(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
7459    /**
7460     * @brief Set event propagation on a scroller
7461     *
7462     * @param obj The scroller object
7463     * @param propagation If propagation is enabled or not
7464     *
7465     * This enables or disabled event propagation from the scroller content to
7466     * the scroller and its parent. By default event propagation is disabled.
7467     */
7468    EAPI void         elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation) EINA_ARG_NONNULL(1);
7469    /**
7470     * @brief Get event propagation for a scroller
7471     *
7472     * @param obj The scroller object
7473     * @return The propagation state
7474     *
7475     * This gets the event propagation for a scroller.
7476     *
7477     * @see elm_scroller_propagate_events_set()
7478     */
7479    EAPI Eina_Bool    elm_scroller_propagate_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7480    /**
7481     * @brief Set scrolling gravity on a scroller
7482     *
7483     * @param obj The scroller object
7484     * @param x The scrolling horizontal gravity
7485     * @param y The scrolling vertical gravity
7486     *
7487     * The gravity, defines how the scroller will adjust its view
7488     * when the size of the scroller contents increase.
7489     *
7490     * The scroller will adjust the view to glue itself as follows.
7491     *
7492     *  x=0.0, for showing the left most region of the content.
7493     *  x=1.0, for showing the right most region of the content.
7494     *  y=0.0, for showing the bottom most region of the content.
7495     *  y=1.0, for showing the top most region of the content.
7496     *
7497     * Default values for x and y are 0.0
7498     */
7499    EAPI void         elm_scroller_gravity_set(Evas_Object *obj, double x, double y) EINA_ARG_NONNULL(1);
7500    /**
7501     * @brief Get scrolling gravity values for a scroller
7502     *
7503     * @param obj The scroller object
7504     * @param x The scrolling horizontal gravity
7505     * @param y The scrolling vertical gravity
7506     *
7507     * This gets gravity values for a scroller.
7508     *
7509     * @see elm_scroller_gravity_set()
7510     *
7511     */
7512    EAPI void         elm_scroller_gravity_get(const Evas_Object *obj, double *x, double *y) EINA_ARG_NONNULL(1);
7513    /**
7514     * @}
7515     */
7516
7517    /**
7518     * @defgroup Label Label
7519     *
7520     * @image html img/widget/label/preview-00.png
7521     * @image latex img/widget/label/preview-00.eps
7522     *
7523     * @brief Widget to display text, with simple html-like markup.
7524     *
7525     * The Label widget @b doesn't allow text to overflow its boundaries, if the
7526     * text doesn't fit the geometry of the label it will be ellipsized or be
7527     * cut. Elementary provides several styles for this widget:
7528     * @li default - No animation
7529     * @li marker - Centers the text in the label and make it bold by default
7530     * @li slide_long - The entire text appears from the right of the screen and
7531     * slides until it disappears in the left of the screen(reappering on the
7532     * right again).
7533     * @li slide_short - The text appears in the left of the label and slides to
7534     * the right to show the overflow. When all of the text has been shown the
7535     * position is reset.
7536     * @li slide_bounce - The text appears in the left of the label and slides to
7537     * the right to show the overflow. When all of the text has been shown the
7538     * animation reverses, moving the text to the left.
7539     *
7540     * Custom themes can of course invent new markup tags and style them any way
7541     * they like.
7542     *
7543     * The following signals may be emitted by the label widget:
7544     * @li "language,changed": The program's language changed.
7545     *
7546     * See @ref tutorial_label for a demonstration of how to use a label widget.
7547     * @{
7548     */
7549    /**
7550     * @brief Add a new label to the parent
7551     *
7552     * @param parent The parent object
7553     * @return The new object or NULL if it cannot be created
7554     */
7555    EAPI Evas_Object *elm_label_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7556    /**
7557     * @brief Set the label on the label object
7558     *
7559     * @param obj The label object
7560     * @param label The label will be used on the label object
7561     * @deprecated See elm_object_text_set()
7562     */
7563    EINA_DEPRECATED EAPI void elm_label_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1); /* deprecated, use elm_object_text_set instead */
7564    /**
7565     * @brief Get the label used on the label object
7566     *
7567     * @param obj The label object
7568     * @return The string inside the label
7569     * @deprecated See elm_object_text_get()
7570     */
7571    EINA_DEPRECATED EAPI const char *elm_label_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1); /* deprecated, use elm_object_text_get instead */
7572    /**
7573     * @brief Set the wrapping behavior of the label
7574     *
7575     * @param obj The label object
7576     * @param wrap To wrap text or not
7577     *
7578     * By default no wrapping is done. Possible values for @p wrap are:
7579     * @li ELM_WRAP_NONE - No wrapping
7580     * @li ELM_WRAP_CHAR - wrap between characters
7581     * @li ELM_WRAP_WORD - wrap between words
7582     * @li ELM_WRAP_MIXED - Word wrap, and if that fails, char wrap
7583     */
7584    EAPI void         elm_label_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
7585    /**
7586     * @brief Get the wrapping behavior of the label
7587     *
7588     * @param obj The label object
7589     * @return Wrap type
7590     *
7591     * @see elm_label_line_wrap_set()
7592     */
7593    EAPI Elm_Wrap_Type elm_label_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7594    /**
7595     * @brief Set wrap width of the label
7596     *
7597     * @param obj The label object
7598     * @param w The wrap width in pixels at a minimum where words need to wrap
7599     *
7600     * This function sets the maximum width size hint of the label.
7601     *
7602     * @warning This is only relevant if the label is inside a container.
7603     */
7604    EAPI void         elm_label_wrap_width_set(Evas_Object *obj, Evas_Coord w) EINA_ARG_NONNULL(1);
7605    /**
7606     * @brief Get wrap width of the label
7607     *
7608     * @param obj The label object
7609     * @return The wrap width in pixels at a minimum where words need to wrap
7610     *
7611     * @see elm_label_wrap_width_set()
7612     */
7613    EAPI Evas_Coord   elm_label_wrap_width_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7614    /**
7615     * @brief Set wrap height of the label
7616     *
7617     * @param obj The label object
7618     * @param h The wrap height in pixels at a minimum where words need to wrap
7619     *
7620     * This function sets the maximum height size hint of the label.
7621     *
7622     * @warning This is only relevant if the label is inside a container.
7623     */
7624    EAPI void         elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h) EINA_ARG_NONNULL(1);
7625    /**
7626     * @brief get wrap width of the label
7627     *
7628     * @param obj The label object
7629     * @return The wrap height in pixels at a minimum where words need to wrap
7630     */
7631    EAPI Evas_Coord   elm_label_wrap_height_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7632    /**
7633     * @brief Set the font size on the label object.
7634     *
7635     * @param obj The label object
7636     * @param size font size
7637     *
7638     * @warning NEVER use this. It is for hyper-special cases only. use styles
7639     * instead. e.g. "default", "marker", "slide_long" etc.
7640     */
7641    EAPI void         elm_label_fontsize_set(Evas_Object *obj, int fontsize) EINA_ARG_NONNULL(1);
7642    /**
7643     * @brief Set the text color on the label object
7644     *
7645     * @param obj The label object
7646     * @param r Red property background color of The label object
7647     * @param g Green property background color of The label object
7648     * @param b Blue property background color of The label object
7649     * @param a Alpha property background color of The label object
7650     *
7651     * @warning NEVER use this. It is for hyper-special cases only. use styles
7652     * instead. e.g. "default", "marker", "slide_long" etc.
7653     */
7654    EAPI void         elm_label_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a) EINA_ARG_NONNULL(1);
7655    /**
7656     * @brief Set the text align on the label object
7657     *
7658     * @param obj The label object
7659     * @param align align mode ("left", "center", "right")
7660     *
7661     * @warning NEVER use this. It is for hyper-special cases only. use styles
7662     * instead. e.g. "default", "marker", "slide_long" etc.
7663     */
7664    EAPI void         elm_label_text_align_set(Evas_Object *obj, const char *alignmode) EINA_ARG_NONNULL(1);
7665    /**
7666     * @brief Set background color of the label
7667     *
7668     * @param obj The label object
7669     * @param r Red property background color of The label object
7670     * @param g Green property background color of The label object
7671     * @param b Blue property background color of The label object
7672     * @param a Alpha property background alpha of The label object
7673     *
7674     * @warning NEVER use this. It is for hyper-special cases only. use styles
7675     * instead. e.g. "default", "marker", "slide_long" etc.
7676     */
7677    EAPI void         elm_label_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a) EINA_ARG_NONNULL(1);
7678    /**
7679     * @brief Set the ellipsis behavior of the label
7680     *
7681     * @param obj The label object
7682     * @param ellipsis To ellipsis text or not
7683     *
7684     * If set to true and the text doesn't fit in the label an ellipsis("...")
7685     * will be shown at the end of the widget.
7686     *
7687     * @warning This doesn't work with slide(elm_label_slide_set()) or if the
7688     * choosen wrap method was ELM_WRAP_WORD.
7689     */
7690    EAPI void         elm_label_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis) EINA_ARG_NONNULL(1);
7691    /**
7692     * @brief Set the text slide of the label
7693     *
7694     * @param obj The label object
7695     * @param slide To start slide or stop
7696     *
7697     * If set to true, the text of the label will slide/scroll through the length of
7698     * label.
7699     *
7700     * @warning This only works with the themes "slide_short", "slide_long" and
7701     * "slide_bounce".
7702     */
7703    EAPI void         elm_label_slide_set(Evas_Object *obj, Eina_Bool slide) EINA_ARG_NONNULL(1);
7704    /**
7705     * @brief Get the text slide mode of the label
7706     *
7707     * @param obj The label object
7708     * @return slide slide mode value
7709     *
7710     * @see elm_label_slide_set()
7711     */
7712    EAPI Eina_Bool    elm_label_slide_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7713    /**
7714     * @brief Set the slide duration(speed) of the label
7715     *
7716     * @param obj The label object
7717     * @return The duration in seconds in moving text from slide begin position
7718     * to slide end position
7719     */
7720    EAPI void         elm_label_slide_duration_set(Evas_Object *obj, double duration) EINA_ARG_NONNULL(1);
7721    /**
7722     * @brief Get the slide duration(speed) of the label
7723     *
7724     * @param obj The label object
7725     * @return The duration time in moving text from slide begin position to slide end position
7726     *
7727     * @see elm_label_slide_duration_set()
7728     */
7729    EAPI double       elm_label_slide_duration_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7730    /**
7731     * @}
7732     */
7733
7734    /**
7735     * @defgroup Toggle Toggle
7736     *
7737     * @image html img/widget/toggle/preview-00.png
7738     * @image latex img/widget/toggle/preview-00.eps
7739     *
7740     * @brief A toggle is a slider which can be used to toggle between
7741     * two values.  It has two states: on and off.
7742     *
7743     * This widget is deprecated. Please use elm_check_add() instead using the
7744     * toggle style like:
7745     *
7746     * @code
7747     * obj = elm_check_add(parent);
7748     * elm_object_style_set(obj, "toggle");
7749     * elm_object_part_text_set(obj, "on", "ON");
7750     * elm_object_part_text_set(obj, "off", "OFF");
7751     * @endcode
7752     *
7753     * Signals that you can add callbacks for are:
7754     * @li "changed" - Whenever the toggle value has been changed.  Is not called
7755     *                 until the toggle is released by the cursor (assuming it
7756     *                 has been triggered by the cursor in the first place).
7757     *
7758     * Default contents parts of the toggle widget that you can use for are:
7759     * @li "icon" - An icon of the toggle
7760     *
7761     * Default text parts of the toggle widget that you can use for are:
7762     * @li "elm.text" - Label of the toggle
7763     *
7764     * @ref tutorial_toggle show how to use a toggle.
7765     * @{
7766     */
7767    /**
7768     * @brief Add a toggle to @p parent.
7769     *
7770     * @param parent The parent object
7771     *
7772     * @return The toggle object
7773     */
7774    EINA_DEPRECATED EAPI Evas_Object *elm_toggle_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7775    /**
7776     * @brief Sets the label to be displayed with the toggle.
7777     *
7778     * @param obj The toggle object
7779     * @param label The label to be displayed
7780     *
7781     * @deprecated use elm_object_text_set() instead.
7782     */
7783    EINA_DEPRECATED EAPI void         elm_toggle_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7784    /**
7785     * @brief Gets the label of the toggle
7786     *
7787     * @param obj  toggle object
7788     * @return The label of the toggle
7789     *
7790     * @deprecated use elm_object_text_get() instead.
7791     */
7792    EINA_DEPRECATED EAPI const char  *elm_toggle_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7793    /**
7794     * @brief Set the icon used for the toggle
7795     *
7796     * @param obj The toggle object
7797     * @param icon The icon object for the button
7798     *
7799     * Once the icon object is set, a previously set one will be deleted
7800     * If you want to keep that old content object, use the
7801     * elm_toggle_icon_unset() function.
7802     *
7803     * @deprecated use elm_object_part_content_set() instead.
7804     */
7805    EINA_DEPRECATED EAPI void         elm_toggle_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
7806    /**
7807     * @brief Get the icon used for the toggle
7808     *
7809     * @param obj The toggle object
7810     * @return The icon object that is being used
7811     *
7812     * Return the icon object which is set for this widget.
7813     *
7814     * @see elm_toggle_icon_set()
7815     *
7816     * @deprecated use elm_object_part_content_get() instead.
7817     */
7818    EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7819    /**
7820     * @brief Unset the icon used for the toggle
7821     *
7822     * @param obj The toggle object
7823     * @return The icon object that was being used
7824     *
7825     * Unparent and return the icon object which was set for this widget.
7826     *
7827     * @see elm_toggle_icon_set()
7828     *
7829     * @deprecated use elm_object_part_content_unset() instead.
7830     */
7831    EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7832    /**
7833     * @brief Sets the labels to be associated with the on and off states of the toggle.
7834     *
7835     * @param obj The toggle object
7836     * @param onlabel The label displayed when the toggle is in the "on" state
7837     * @param offlabel The label displayed when the toggle is in the "off" state
7838     *
7839     * @deprecated use elm_object_part_text_set() for "on" and "off" parts
7840     * instead.
7841     */
7842    EINA_DEPRECATED EAPI void         elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel) EINA_ARG_NONNULL(1);
7843    /**
7844     * @brief Gets the labels associated with the on and off states of the
7845     * toggle.
7846     *
7847     * @param obj The toggle object
7848     * @param onlabel A char** to place the onlabel of @p obj into
7849     * @param offlabel A char** to place the offlabel of @p obj into
7850     *
7851     * @deprecated use elm_object_part_text_get() for "on" and "off" parts
7852     * instead.
7853     */
7854    EINA_DEPRECATED EAPI void         elm_toggle_states_labels_get(const Evas_Object *obj, const char **onlabel, const char **offlabel) EINA_ARG_NONNULL(1);
7855    /**
7856     * @brief Sets the state of the toggle to @p state.
7857     *
7858     * @param obj The toggle object
7859     * @param state The state of @p obj
7860     *
7861     * @deprecated use elm_check_state_set() instead.
7862     */
7863    EINA_DEPRECATED EAPI void         elm_toggle_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
7864    /**
7865     * @brief Gets the state of the toggle to @p state.
7866     *
7867     * @param obj The toggle object
7868     * @return The state of @p obj
7869     *
7870     * @deprecated use elm_check_state_get() instead.
7871     */
7872    EINA_DEPRECATED EAPI Eina_Bool    elm_toggle_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7873    /**
7874     * @brief Sets the state pointer of the toggle to @p statep.
7875     *
7876     * @param obj The toggle object
7877     * @param statep The state pointer of @p obj
7878     *
7879     * @deprecated use elm_check_state_pointer_set() instead.
7880     */
7881    EINA_DEPRECATED EAPI void         elm_toggle_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
7882    /**
7883     * @}
7884     */
7885
7886    /**
7887     * @defgroup Frame Frame
7888     *
7889     * @image html img/widget/frame/preview-00.png
7890     * @image latex img/widget/frame/preview-00.eps
7891     *
7892     * @brief Frame is a widget that holds some content and has a title.
7893     *
7894     * The default look is a frame with a title, but Frame supports multple
7895     * styles:
7896     * @li default
7897     * @li pad_small
7898     * @li pad_medium
7899     * @li pad_large
7900     * @li pad_huge
7901     * @li outdent_top
7902     * @li outdent_bottom
7903     *
7904     * Of all this styles only default shows the title. Frame emits no signals.
7905     *
7906     * Default contents parts of the frame widget that you can use for are:
7907     * @li "default" - A content of the frame
7908     *
7909     * Default text parts of the frame widget that you can use for are:
7910     * @li "elm.text" - Label of the frame
7911     *
7912     * For a detailed example see the @ref tutorial_frame.
7913     *
7914     * @{
7915     */
7916    /**
7917     * @brief Add a new frame to the parent
7918     *
7919     * @param parent The parent object
7920     * @return The new object or NULL if it cannot be created
7921     */
7922    EAPI Evas_Object *elm_frame_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7923    /**
7924     * @brief Set the frame label
7925     *
7926     * @param obj The frame object
7927     * @param label The label of this frame object
7928     *
7929     * @deprecated use elm_object_text_set() instead.
7930     */
7931    EINA_DEPRECATED EAPI void         elm_frame_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7932    /**
7933     * @brief Get the frame label
7934     *
7935     * @param obj The frame object
7936     *
7937     * @return The label of this frame objet or NULL if unable to get frame
7938     *
7939     * @deprecated use elm_object_text_get() instead.
7940     */
7941    EINA_DEPRECATED EAPI const char  *elm_frame_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7942    /**
7943     * @brief Set the content of the frame widget
7944     *
7945     * Once the content object is set, a previously set one will be deleted.
7946     * If you want to keep that old content object, use the
7947     * elm_frame_content_unset() function.
7948     *
7949     * @param obj The frame object
7950     * @param content The content will be filled in this frame object
7951     *
7952     * @deprecated use elm_object_content_set() instead.
7953     */
7954    EINA_DEPRECATED EAPI void         elm_frame_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
7955    /**
7956     * @brief Get the content of the frame widget
7957     *
7958     * Return the content object which is set for this widget
7959     *
7960     * @param obj The frame object
7961     * @return The content that is being used
7962     *
7963     * @deprecated use elm_object_content_get() instead.
7964     */
7965    EINA_DEPRECATED EAPI Evas_Object *elm_frame_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7966    /**
7967     * @brief Unset the content of the frame widget
7968     *
7969     * Unparent and return the content object which was set for this widget
7970     *
7971     * @param obj The frame object
7972     * @return The content that was being used
7973     *
7974     * @deprecated use elm_object_content_unset() instead.
7975     */
7976    EINA_DEPRECATED EAPI Evas_Object *elm_frame_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7977    /**
7978     * @}
7979     */
7980
7981    /**
7982     * @defgroup Table Table
7983     *
7984     * A container widget to arrange other widgets in a table where items can
7985     * also span multiple columns or rows - even overlap (and then be raised or
7986     * lowered accordingly to adjust stacking if they do overlap).
7987     *
7988     * For a Table widget the row/column count is not fixed.
7989     * The table widget adjusts itself when subobjects are added to it dynamically.
7990     *
7991     * The followin are examples of how to use a table:
7992     * @li @ref tutorial_table_01
7993     * @li @ref tutorial_table_02
7994     *
7995     * @{
7996     */
7997    /**
7998     * @brief Add a new table to the parent
7999     *
8000     * @param parent The parent object
8001     * @return The new object or NULL if it cannot be created
8002     */
8003    EAPI Evas_Object *elm_table_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
8004    /**
8005     * @brief Set the homogeneous layout in the table
8006     *
8007     * @param obj The layout object
8008     * @param homogeneous A boolean to set if the layout is homogeneous in the
8009     * table (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
8010     */
8011    EAPI void         elm_table_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
8012    /**
8013     * @brief Get the current table homogeneous mode.
8014     *
8015     * @param obj The table object
8016     * @return A boolean to indicating if the layout is homogeneous in the table
8017     * (EINA_TRUE = homogeneous,  EINA_FALSE = no homogeneous)
8018     */
8019    EAPI Eina_Bool    elm_table_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8020    /**
8021     * @brief Set padding between cells.
8022     *
8023     * @param obj The layout object.
8024     * @param horizontal set the horizontal padding.
8025     * @param vertical set the vertical padding.
8026     *
8027     * Default value is 0.
8028     */
8029    EAPI void         elm_table_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
8030    /**
8031     * @brief Get padding between cells.
8032     *
8033     * @param obj The layout object.
8034     * @param horizontal set the horizontal padding.
8035     * @param vertical set the vertical padding.
8036     */
8037    EAPI void         elm_table_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
8038    /**
8039     * @brief Add a subobject on the table with the coordinates passed
8040     *
8041     * @param obj The table object
8042     * @param subobj The subobject to be added to the table
8043     * @param x Row number
8044     * @param y Column number
8045     * @param w rowspan
8046     * @param h colspan
8047     *
8048     * @note All positioning inside the table is relative to rows and columns, so
8049     * a value of 0 for x and y, means the top left cell of the table, and a
8050     * value of 1 for w and h means @p subobj only takes that 1 cell.
8051     */
8052    EAPI void         elm_table_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
8053    /**
8054     * @brief Remove child from table.
8055     *
8056     * @param obj The table object
8057     * @param subobj The subobject
8058     */
8059    EAPI void         elm_table_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
8060    /**
8061     * @brief Faster way to remove all child objects from a table object.
8062     *
8063     * @param obj The table object
8064     * @param clear If true, will delete children, else just remove from table.
8065     */
8066    EAPI void         elm_table_clear(Evas_Object *obj, Eina_Bool clear) EINA_ARG_NONNULL(1);
8067    /**
8068     * @brief Set the packing location of an existing child of the table
8069     *
8070     * @param subobj The subobject to be modified in the table
8071     * @param x Row number
8072     * @param y Column number
8073     * @param w rowspan
8074     * @param h colspan
8075     *
8076     * Modifies the position of an object already in the table.
8077     *
8078     * @note All positioning inside the table is relative to rows and columns, so
8079     * a value of 0 for x and y, means the top left cell of the table, and a
8080     * value of 1 for w and h means @p subobj only takes that 1 cell.
8081     */
8082    EAPI void         elm_table_pack_set(Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
8083    /**
8084     * @brief Get the packing location of an existing child of the table
8085     *
8086     * @param subobj The subobject to be modified in the table
8087     * @param x Row number
8088     * @param y Column number
8089     * @param w rowspan
8090     * @param h colspan
8091     *
8092     * @see elm_table_pack_set()
8093     */
8094    EAPI void         elm_table_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
8095    /**
8096     * @}
8097     */
8098
8099    /* TEMPORARY: DOCS WILL BE FILLED IN WITH CNP/SED */
8100    typedef struct Elm_Gen_Item Elm_Gen_Item;
8101    typedef struct _Elm_Gen_Item_Class Elm_Gen_Item_Class;
8102    typedef struct _Elm_Gen_Item_Class_Func Elm_Gen_Item_Class_Func; /**< Class functions for gen item classes. */
8103    typedef char        *(*Elm_Gen_Item_Text_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< Label fetching class function for gen item classes. */
8104    typedef Evas_Object *(*Elm_Gen_Item_Content_Get_Cb)  (void *data, Evas_Object *obj, const char *part); /**< Content(swallowed object) fetching class function for gen item classes. */
8105    typedef Eina_Bool    (*Elm_Gen_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part); /**< State fetching class function for gen item classes. */
8106    typedef void         (*Elm_Gen_Item_Del_Cb)      (void *data, Evas_Object *obj); /**< Deletion class function for gen item classes. */
8107    struct _Elm_Gen_Item_Class
8108      {
8109         const char             *item_style;
8110         struct _Elm_Gen_Item_Class_Func
8111           {
8112              Elm_Gen_Item_Text_Get_Cb  text_get;
8113              Elm_Gen_Item_Content_Get_Cb  content_get;
8114              Elm_Gen_Item_State_Get_Cb state_get;
8115              Elm_Gen_Item_Del_Cb       del;
8116           } func;
8117      };
8118    EINA_DEPRECATED EAPI void elm_gen_clear(Evas_Object *obj);
8119    EINA_DEPRECATED EAPI void elm_gen_item_selected_set(Elm_Gen_Item *it, Eina_Bool selected);
8120    EINA_DEPRECATED EAPI Eina_Bool elm_gen_item_selected_get(const Elm_Gen_Item *it);
8121    EINA_DEPRECATED EAPI void elm_gen_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select);
8122    EINA_DEPRECATED EAPI Eina_Bool elm_gen_always_select_mode_get(const Evas_Object *obj);
8123    EINA_DEPRECATED EAPI void elm_gen_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
8124    EINA_DEPRECATED EAPI Eina_Bool elm_gen_no_select_mode_get(const Evas_Object *obj);
8125    EINA_DEPRECATED EAPI void elm_gen_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
8126    EINA_DEPRECATED EAPI void elm_gen_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
8127    EINA_DEPRECATED EAPI void elm_gen_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel);
8128    EINA_DEPRECATED EAPI void elm_gen_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel);
8129
8130    EINA_DEPRECATED EAPI void elm_gen_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize);
8131    EINA_DEPRECATED EAPI void elm_gen_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
8132    EINA_DEPRECATED EAPI void elm_gen_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
8133    EINA_DEPRECATED EAPI void elm_gen_page_show(const Evas_Object *obj, int h_pagenumber, int v_pagenumber);
8134    EINA_DEPRECATED EAPI void elm_gen_page_bring_in(const Evas_Object *obj, int h_pagenumber, int v_pagenumber);
8135    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_first_item_get(const Evas_Object *obj);
8136    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_last_item_get(const Evas_Object *obj);
8137    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_item_next_get(const Elm_Gen_Item *it);
8138    EINA_DEPRECATED EAPI Elm_Gen_Item *elm_gen_item_prev_get(const Elm_Gen_Item *it);
8139    EINA_DEPRECATED EAPI Evas_Object *elm_gen_item_widget_get(const Elm_Gen_Item *it);
8140
8141    /**
8142     * @defgroup Gengrid Gengrid (Generic grid)
8143     *
8144     * This widget aims to position objects in a grid layout while
8145     * actually creating and rendering only the visible ones, using the
8146     * same idea as the @ref Genlist "genlist": the user defines a @b
8147     * class for each item, specifying functions that will be called at
8148     * object creation, deletion, etc. When those items are selected by
8149     * the user, a callback function is issued. Users may interact with
8150     * a gengrid via the mouse (by clicking on items to select them and
8151     * clicking on the grid's viewport and swiping to pan the whole
8152     * view) or via the keyboard, navigating through item with the
8153     * arrow keys.
8154     *
8155     * @section Gengrid_Layouts Gengrid layouts
8156     *
8157     * Gengrid may layout its items in one of two possible layouts:
8158     * - horizontal or
8159     * - vertical.
8160     *
8161     * When in "horizontal mode", items will be placed in @b columns,
8162     * from top to bottom and, when the space for a column is filled,
8163     * another one is started on the right, thus expanding the grid
8164     * horizontally, making for horizontal scrolling. When in "vertical
8165     * mode" , though, items will be placed in @b rows, from left to
8166     * right and, when the space for a row is filled, another one is
8167     * started below, thus expanding the grid vertically (and making
8168     * for vertical scrolling).
8169     *
8170     * @section Gengrid_Items Gengrid items
8171     *
8172     * An item in a gengrid can have 0 or more texts (they can be
8173     * regular text or textblock Evas objects - that's up to the style
8174     * to determine), 0 or more contents (which are simply objects
8175     * swallowed into the gengrid item's theming Edje object) and 0 or
8176     * more <b>boolean states</b>, which have the behavior left to the
8177     * user to define. The Edje part names for each of these properties
8178     * will be looked up, in the theme file for the gengrid, under the
8179     * Edje (string) data items named @c "texts", @c "contents" and @c
8180     * "states", respectively. For each of those properties, if more
8181     * than one part is provided, they must have names listed separated
8182     * by spaces in the data fields. For the default gengrid item
8183     * theme, we have @b one text part (@c "elm.text"), @b two content 
8184     * parts (@c "elm.swalllow.icon" and @c "elm.swallow.end") and @b
8185     * no state parts.
8186     *
8187     * A gengrid item may be at one of several styles. Elementary
8188     * provides one by default - "default", but this can be extended by
8189     * system or application custom themes/overlays/extensions (see
8190     * @ref Theme "themes" for more details).
8191     *
8192     * @section Gengrid_Item_Class Gengrid item classes
8193     *
8194     * In order to have the ability to add and delete items on the fly,
8195     * gengrid implements a class (callback) system where the
8196     * application provides a structure with information about that
8197     * type of item (gengrid may contain multiple different items with
8198     * different classes, states and styles). Gengrid will call the
8199     * functions in this struct (methods) when an item is "realized"
8200     * (i.e., created dynamically, while the user is scrolling the
8201     * grid). All objects will simply be deleted when no longer needed
8202     * with evas_object_del(). The #Elm_GenGrid_Item_Class structure
8203     * contains the following members:
8204     * - @c item_style - This is a constant string and simply defines
8205     * the name of the item style. It @b must be specified and the
8206     * default should be @c "default".
8207     * - @c func.text_get - This function is called when an item
8208     * object is actually created. The @c data parameter will point to
8209     * the same data passed to elm_gengrid_item_append() and related
8210     * item creation functions. The @c obj parameter is the gengrid
8211     * object itself, while the @c part one is the name string of one
8212     * of the existing text parts in the Edje group implementing the
8213     * item's theme. This function @b must return a strdup'()ed string,
8214     * as the caller will free() it when done. See
8215     * #Elm_Gengrid_Item_Text_Get_Cb.
8216     * - @c func.content_get - This function is called when an item object
8217     * is actually created. The @c data parameter will point to the
8218     * same data passed to elm_gengrid_item_append() and related item
8219     * creation functions. The @c obj parameter is the gengrid object
8220     * itself, while the @c part one is the name string of one of the
8221     * existing (content) swallow parts in the Edje group implementing the
8222     * item's theme. It must return @c NULL, when no content is desired,
8223     * or a valid object handle, otherwise. The object will be deleted
8224     * by the gengrid on its deletion or when the item is "unrealized".
8225     * See #Elm_Gengrid_Item_Content_Get_Cb.
8226     * - @c func.state_get - This function is called when an item
8227     * object is actually created. The @c data parameter will point to
8228     * the same data passed to elm_gengrid_item_append() and related
8229     * item creation functions. The @c obj parameter is the gengrid
8230     * object itself, while the @c part one is the name string of one
8231     * of the state parts in the Edje group implementing the item's
8232     * theme. Return @c EINA_FALSE for false/off or @c EINA_TRUE for
8233     * true/on. Gengrids will emit a signal to its theming Edje object
8234     * with @c "elm,state,XXX,active" and @c "elm" as "emission" and
8235     * "source" arguments, respectively, when the state is true (the
8236     * default is false), where @c XXX is the name of the (state) part.
8237     * See #Elm_Gengrid_Item_State_Get_Cb.
8238     * - @c func.del - This is called when elm_gengrid_item_del() is
8239     * called on an item or elm_gengrid_clear() is called on the
8240     * gengrid. This is intended for use when gengrid items are
8241     * deleted, so any data attached to the item (e.g. its data
8242     * parameter on creation) can be deleted. See #Elm_Gengrid_Item_Del_Cb.
8243     *
8244     * @section Gengrid_Usage_Hints Usage hints
8245     *
8246     * If the user wants to have multiple items selected at the same
8247     * time, elm_gengrid_multi_select_set() will permit it. If the
8248     * gengrid is single-selection only (the default), then
8249     * elm_gengrid_select_item_get() will return the selected item or
8250     * @c NULL, if none is selected. If the gengrid is under
8251     * multi-selection, then elm_gengrid_selected_items_get() will
8252     * return a list (that is only valid as long as no items are
8253     * modified (added, deleted, selected or unselected) of child items
8254     * on a gengrid.
8255     *
8256     * If an item changes (internal (boolean) state, text or content
8257     * changes), then use elm_gengrid_item_update() to have gengrid
8258     * update the item with the new state. A gengrid will re-"realize"
8259     * the item, thus calling the functions in the
8260     * #Elm_Gengrid_Item_Class set for that item.
8261     *
8262     * To programmatically (un)select an item, use
8263     * elm_gengrid_item_selected_set(). To get its selected state use
8264     * elm_gengrid_item_selected_get(). To make an item disabled
8265     * (unable to be selected and appear differently) use
8266     * elm_gengrid_item_disabled_set() to set this and
8267     * elm_gengrid_item_disabled_get() to get the disabled state.
8268     *
8269     * Grid cells will only have their selection smart callbacks called
8270     * when firstly getting selected. Any further clicks will do
8271     * nothing, unless you enable the "always select mode", with
8272     * elm_gengrid_always_select_mode_set(), thus making every click to
8273     * issue selection callbacks. elm_gengrid_no_select_mode_set() will
8274     * turn off the ability to select items entirely in the widget and
8275     * they will neither appear selected nor call the selection smart
8276     * callbacks.
8277     *
8278     * Remember that you can create new styles and add your own theme
8279     * augmentation per application with elm_theme_extension_add(). If
8280     * you absolutely must have a specific style that overrides any
8281     * theme the user or system sets up you can use
8282     * elm_theme_overlay_add() to add such a file.
8283     *
8284     * @section Gengrid_Smart_Events Gengrid smart events
8285     *
8286     * Smart events that you can add callbacks for are:
8287     * - @c "activated" - The user has double-clicked or pressed
8288     *   (enter|return|spacebar) on an item. The @c event_info parameter
8289     *   is the gengrid item that was activated.
8290     * - @c "clicked,double" - The user has double-clicked an item.
8291     *   The @c event_info parameter is the gengrid item that was double-clicked.
8292     * - @c "longpressed" - This is called when the item is pressed for a certain
8293     *   amount of time. By default it's 1 second.
8294     * - @c "selected" - The user has made an item selected. The
8295     *   @c event_info parameter is the gengrid item that was selected.
8296     * - @c "unselected" - The user has made an item unselected. The
8297     *   @c event_info parameter is the gengrid item that was unselected.
8298     * - @c "realized" - This is called when the item in the gengrid
8299     *   has its implementing Evas object instantiated, de facto. @c
8300     *   event_info is the gengrid item that was created. The object
8301     *   may be deleted at any time, so it is highly advised to the
8302     *   caller @b not to use the object pointer returned from
8303     *   elm_gengrid_item_object_get(), because it may point to freed
8304     *   objects.
8305     * - @c "unrealized" - This is called when the implementing Evas
8306     *   object for this item is deleted. @c event_info is the gengrid
8307     *   item that was deleted.
8308     * - @c "changed" - Called when an item is added, removed, resized
8309     *   or moved and when the gengrid is resized or gets "horizontal"
8310     *   property changes.
8311     * - @c "scroll,anim,start" - This is called when scrolling animation has
8312     *   started.
8313     * - @c "scroll,anim,stop" - This is called when scrolling animation has
8314     *   stopped.
8315     * - @c "drag,start,up" - Called when the item in the gengrid has
8316     *   been dragged (not scrolled) up.
8317     * - @c "drag,start,down" - Called when the item in the gengrid has
8318     *   been dragged (not scrolled) down.
8319     * - @c "drag,start,left" - Called when the item in the gengrid has
8320     *   been dragged (not scrolled) left.
8321     * - @c "drag,start,right" - Called when the item in the gengrid has
8322     *   been dragged (not scrolled) right.
8323     * - @c "drag,stop" - Called when the item in the gengrid has
8324     *   stopped being dragged.
8325     * - @c "drag" - Called when the item in the gengrid is being
8326     *   dragged.
8327     * - @c "scroll" - called when the content has been scrolled
8328     *   (moved).
8329     * - @c "scroll,drag,start" - called when dragging the content has
8330     *   started.
8331     * - @c "scroll,drag,stop" - called when dragging the content has
8332     *   stopped.
8333     * - @c "edge,top" - This is called when the gengrid is scrolled until
8334     *   the top edge.
8335     * - @c "edge,bottom" - This is called when the gengrid is scrolled
8336     *   until the bottom edge.
8337     * - @c "edge,left" - This is called when the gengrid is scrolled
8338     *   until the left edge.
8339     * - @c "edge,right" - This is called when the gengrid is scrolled
8340     *   until the right edge.
8341     *
8342     * List of gengrid examples:
8343     * @li @ref gengrid_example
8344     */
8345
8346    /**
8347     * @addtogroup Gengrid
8348     * @{
8349     */
8350
8351    typedef struct _Elm_Gengrid_Item_Class Elm_Gengrid_Item_Class; /**< Gengrid item class definition structs */
8352    #define Elm_Gengrid_Item_Class Elm_Gen_Item_Class
8353    typedef struct _Elm_Gengrid_Item Elm_Gengrid_Item; /**< Gengrid item handles */
8354    #define Elm_Gengrid_Item Elm_Gen_Item /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
8355    typedef struct _Elm_Gengrid_Item_Class_Func Elm_Gengrid_Item_Class_Func; /**< Class functions for gengrid item classes. */
8356    /**
8357     * Text fetching class function for Elm_Gen_Item_Class.
8358     * @param data The data passed in the item creation function
8359     * @param obj The base widget object
8360     * @param part The part name of the swallow
8361     * @return The allocated (NOT stringshared) string to set as the text 
8362     */
8363    typedef char        *(*Elm_Gengrid_Item_Text_Get_Cb) (void *data, Evas_Object *obj, const char *part);
8364    /**
8365     * Content (swallowed object) fetching class function for Elm_Gen_Item_Class.
8366     * @param data The data passed in the item creation function
8367     * @param obj The base widget object
8368     * @param part The part name of the swallow
8369     * @return The content object to swallow
8370     */
8371    typedef Evas_Object *(*Elm_Gengrid_Item_Content_Get_Cb)  (void *data, Evas_Object *obj, const char *part);
8372    /**
8373     * State fetching class function for Elm_Gen_Item_Class.
8374     * @param data The data passed in the item creation function
8375     * @param obj The base widget object
8376     * @param part The part name of the swallow
8377     * @return The hell if I know
8378     */
8379    typedef Eina_Bool    (*Elm_Gengrid_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part);
8380    /**
8381     * Deletion class function for Elm_Gen_Item_Class.
8382     * @param data The data passed in the item creation function
8383     * @param obj The base widget object
8384     */
8385    typedef void         (*Elm_Gengrid_Item_Del_Cb)      (void *data, Evas_Object *obj);
8386
8387    /**
8388     * @struct _Elm_Gengrid_Item_Class
8389     *
8390     * Gengrid item class definition. See @ref Gengrid_Item_Class for
8391     * field details.
8392     */
8393    struct _Elm_Gengrid_Item_Class
8394      {
8395         const char             *item_style;
8396         struct _Elm_Gengrid_Item_Class_Func
8397           {
8398              Elm_Gengrid_Item_Text_Get_Cb  text_get; /**< Text fetching class function for gengrid item classes.*/
8399              Elm_Gengrid_Item_Content_Get_Cb content_get;
8400              Elm_Gengrid_Item_State_Get_Cb state_get;
8401              Elm_Gengrid_Item_Del_Cb       del;
8402           } func;
8403      }; /**< #Elm_Gengrid_Item_Class member definitions */
8404    #define Elm_Gengrid_Item_Class_Func Elm_Gen_Item_Class_Func
8405    /**
8406     * Add a new gengrid widget to the given parent Elementary
8407     * (container) object
8408     *
8409     * @param parent The parent object
8410     * @return a new gengrid widget handle or @c NULL, on errors
8411     *
8412     * This function inserts a new gengrid widget on the canvas.
8413     *
8414     * @see elm_gengrid_item_size_set()
8415     * @see elm_gengrid_group_item_size_set()
8416     * @see elm_gengrid_horizontal_set()
8417     * @see elm_gengrid_item_append()
8418     * @see elm_gengrid_item_del()
8419     * @see elm_gengrid_clear()
8420     *
8421     * @ingroup Gengrid
8422     */
8423    EAPI Evas_Object       *elm_gengrid_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
8424
8425    /**
8426     * Set the size for the items of a given gengrid widget
8427     *
8428     * @param obj The gengrid object.
8429     * @param w The items' width.
8430     * @param h The items' height;
8431     *
8432     * A gengrid, after creation, has still no information on the size
8433     * to give to each of its cells. So, you most probably will end up
8434     * with squares one @ref Fingers "finger" wide, the default
8435     * size. Use this function to force a custom size for you items,
8436     * making them as big as you wish.
8437     *
8438     * @see elm_gengrid_item_size_get()
8439     *
8440     * @ingroup Gengrid
8441     */
8442    EAPI void               elm_gengrid_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8443
8444    /**
8445     * Get the size set for the items of a given gengrid widget
8446     *
8447     * @param obj The gengrid object.
8448     * @param w Pointer to a variable where to store the items' width.
8449     * @param h Pointer to a variable where to store the items' height.
8450     *
8451     * @note Use @c NULL pointers on the size values you're not
8452     * interested in: they'll be ignored by the function.
8453     *
8454     * @see elm_gengrid_item_size_get() for more details
8455     *
8456     * @ingroup Gengrid
8457     */
8458    EAPI void               elm_gengrid_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8459
8460    /**
8461     * Set the size for the group items of a given gengrid widget
8462     *
8463     * @param obj The gengrid object.
8464     * @param w The group items' width.
8465     * @param h The group items' height;
8466     *
8467     * A gengrid, after creation, has still no information on the size
8468     * to give to each of its cells. So, you most probably will end up
8469     * with squares one @ref Fingers "finger" wide, the default
8470     * size. Use this function to force a custom size for you group items,
8471     * making them as big as you wish.
8472     *
8473     * @see elm_gengrid_group_item_size_get()
8474     *
8475     * @ingroup Gengrid
8476     */
8477    EAPI void               elm_gengrid_group_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8478
8479    /**
8480     * Get the size set for the group items of a given gengrid widget
8481     *
8482     * @param obj The gengrid object.
8483     * @param w Pointer to a variable where to store the group items' width.
8484     * @param h Pointer to a variable where to store the group items' height.
8485     *
8486     * @note Use @c NULL pointers on the size values you're not
8487     * interested in: they'll be ignored by the function.
8488     *
8489     * @see elm_gengrid_group_item_size_get() for more details
8490     *
8491     * @ingroup Gengrid
8492     */
8493    EAPI void               elm_gengrid_group_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8494
8495    /**
8496     * Set the items grid's alignment within a given gengrid widget
8497     *
8498     * @param obj The gengrid object.
8499     * @param align_x Alignment in the horizontal axis (0 <= align_x <= 1).
8500     * @param align_y Alignment in the vertical axis (0 <= align_y <= 1).
8501     *
8502     * This sets the alignment of the whole grid of items of a gengrid
8503     * within its given viewport. By default, those values are both
8504     * 0.5, meaning that the gengrid will have its items grid placed
8505     * exactly in the middle of its viewport.
8506     *
8507     * @note If given alignment values are out of the cited ranges,
8508     * they'll be changed to the nearest boundary values on the valid
8509     * ranges.
8510     *
8511     * @see elm_gengrid_align_get()
8512     *
8513     * @ingroup Gengrid
8514     */
8515    EAPI void               elm_gengrid_align_set(Evas_Object *obj, double align_x, double align_y) EINA_ARG_NONNULL(1);
8516
8517    /**
8518     * Get the items grid's alignment values within a given gengrid
8519     * widget
8520     *
8521     * @param obj The gengrid object.
8522     * @param align_x Pointer to a variable where to store the
8523     * horizontal alignment.
8524     * @param align_y Pointer to a variable where to store the vertical
8525     * alignment.
8526     *
8527     * @note Use @c NULL pointers on the alignment values you're not
8528     * interested in: they'll be ignored by the function.
8529     *
8530     * @see elm_gengrid_align_set() for more details
8531     *
8532     * @ingroup Gengrid
8533     */
8534    EAPI void               elm_gengrid_align_get(const Evas_Object *obj, double *align_x, double *align_y) EINA_ARG_NONNULL(1);
8535
8536    /**
8537     * Set whether a given gengrid widget is or not able have items
8538     * @b reordered
8539     *
8540     * @param obj The gengrid object
8541     * @param reorder_mode Use @c EINA_TRUE to turn reoderding on,
8542     * @c EINA_FALSE to turn it off
8543     *
8544     * If a gengrid is set to allow reordering, a click held for more
8545     * than 0.5 over a given item will highlight it specially,
8546     * signalling the gengrid has entered the reordering state. From
8547     * that time on, the user will be able to, while still holding the
8548     * mouse button down, move the item freely in the gengrid's
8549     * viewport, replacing to said item to the locations it goes to.
8550     * The replacements will be animated and, whenever the user
8551     * releases the mouse button, the item being replaced gets a new
8552     * definitive place in the grid.
8553     *
8554     * @see elm_gengrid_reorder_mode_get()
8555     *
8556     * @ingroup Gengrid
8557     */
8558    EAPI void               elm_gengrid_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
8559
8560    /**
8561     * Get whether a given gengrid widget is or not able have items
8562     * @b reordered
8563     *
8564     * @param obj The gengrid object
8565     * @return @c EINA_TRUE, if reoderding is on, @c EINA_FALSE if it's
8566     * off
8567     *
8568     * @see elm_gengrid_reorder_mode_set() for more details
8569     *
8570     * @ingroup Gengrid
8571     */
8572    EAPI Eina_Bool          elm_gengrid_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8573
8574    /**
8575     * Append a new item in a given gengrid widget.
8576     *
8577     * @param obj The gengrid object.
8578     * @param gic The item class for the item.
8579     * @param data The item data.
8580     * @param func Convenience function called when the item is
8581     * selected.
8582     * @param func_data Data to be passed to @p func.
8583     * @return A handle to the item added or @c NULL, on errors.
8584     *
8585     * This adds an item to the beginning of the gengrid.
8586     *
8587     * @see elm_gengrid_item_prepend()
8588     * @see elm_gengrid_item_insert_before()
8589     * @see elm_gengrid_item_insert_after()
8590     * @see elm_gengrid_item_del()
8591     *
8592     * @ingroup Gengrid
8593     */
8594    EAPI Elm_Gengrid_Item  *elm_gengrid_item_append(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8595
8596    /**
8597     * Prepend a new item in a given gengrid widget.
8598     *
8599     * @param obj The gengrid object.
8600     * @param gic The item class for the item.
8601     * @param data The item data.
8602     * @param func Convenience function called when the item is
8603     * selected.
8604     * @param func_data Data to be passed to @p func.
8605     * @return A handle to the item added or @c NULL, on errors.
8606     *
8607     * This adds an item to the end of the gengrid.
8608     *
8609     * @see elm_gengrid_item_append()
8610     * @see elm_gengrid_item_insert_before()
8611     * @see elm_gengrid_item_insert_after()
8612     * @see elm_gengrid_item_del()
8613     *
8614     * @ingroup Gengrid
8615     */
8616    EAPI Elm_Gengrid_Item  *elm_gengrid_item_prepend(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8617
8618    /**
8619     * Insert an item before another in a gengrid widget
8620     *
8621     * @param obj The gengrid object.
8622     * @param gic The item class for the item.
8623     * @param data The item data.
8624     * @param relative The item to place this new one before.
8625     * @param func Convenience function called when the item is
8626     * selected.
8627     * @param func_data Data to be passed to @p func.
8628     * @return A handle to the item added or @c NULL, on errors.
8629     *
8630     * This inserts an item before another in the gengrid.
8631     *
8632     * @see elm_gengrid_item_append()
8633     * @see elm_gengrid_item_prepend()
8634     * @see elm_gengrid_item_insert_after()
8635     * @see elm_gengrid_item_del()
8636     *
8637     * @ingroup Gengrid
8638     */
8639    EAPI Elm_Gengrid_Item  *elm_gengrid_item_insert_before(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Elm_Gengrid_Item *relative, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8640
8641    /**
8642     * Insert an item after another in a gengrid widget
8643     *
8644     * @param obj The gengrid object.
8645     * @param gic The item class for the item.
8646     * @param data The item data.
8647     * @param relative The item to place this new one after.
8648     * @param func Convenience function called when the item is
8649     * selected.
8650     * @param func_data Data to be passed to @p func.
8651     * @return A handle to the item added or @c NULL, on errors.
8652     *
8653     * This inserts an item after another in the gengrid.
8654     *
8655     * @see elm_gengrid_item_append()
8656     * @see elm_gengrid_item_prepend()
8657     * @see elm_gengrid_item_insert_after()
8658     * @see elm_gengrid_item_del()
8659     *
8660     * @ingroup Gengrid
8661     */
8662    EAPI Elm_Gengrid_Item  *elm_gengrid_item_insert_after(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Elm_Gengrid_Item *relative, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8663
8664    /**
8665     * Insert an item in a gengrid widget using a user-defined sort function.
8666     *
8667     * @param obj The gengrid object.
8668     * @param gic The item class for the item.
8669     * @param data The item data.
8670     * @param comp User defined comparison function that defines the sort order based on
8671     * Elm_Gen_Item and its data param.
8672     * @param func Convenience function called when the item is selected.
8673     * @param func_data Data to be passed to @p func.
8674     * @return A handle to the item added or @c NULL, on errors.
8675     *
8676     * This inserts an item in the gengrid based on user defined comparison function.
8677     *
8678     * @see elm_gengrid_item_append()
8679     * @see elm_gengrid_item_prepend()
8680     * @see elm_gengrid_item_insert_after()
8681     * @see elm_gengrid_item_del()
8682     * @see elm_gengrid_item_direct_sorted_insert()
8683     *
8684     * @ingroup Gengrid
8685     */
8686    EAPI Elm_Gengrid_Item  *elm_gengrid_item_sorted_insert(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data) EINA_ARG_NONNULL(1);
8687
8688    /**
8689     * Insert an item in a gengrid widget using a user-defined sort function.
8690     *
8691     * @param obj The gengrid object.
8692     * @param gic The item class for the item.
8693     * @param data The item data.
8694     * @param comp User defined comparison function that defines the sort order based on
8695     * Elm_Gen_Item.
8696     * @param func Convenience function called when the item is selected.
8697     * @param func_data Data to be passed to @p func.
8698     * @return A handle to the item added or @c NULL, on errors.
8699     *
8700     * This inserts an item in the gengrid based on user defined comparison function.
8701     *
8702     * @see elm_gengrid_item_append()
8703     * @see elm_gengrid_item_prepend()
8704     * @see elm_gengrid_item_insert_after()
8705     * @see elm_gengrid_item_del()
8706     * @see elm_gengrid_item_sorted_insert()
8707     *
8708     * @ingroup Gengrid
8709     */
8710    EAPI Elm_Gengrid_Item  *elm_gengrid_item_direct_sorted_insert(Evas_Object *obj, const Elm_Gengrid_Item_Class *gic, const void *data, Eina_Compare_Cb comp, Evas_Smart_Cb func, const void *func_data);
8711
8712    /**
8713     * Set whether items on a given gengrid widget are to get their
8714     * selection callbacks issued for @b every subsequent selection
8715     * click on them or just for the first click.
8716     *
8717     * @param obj The gengrid object
8718     * @param always_select @c EINA_TRUE to make items "always
8719     * selected", @c EINA_FALSE, otherwise
8720     *
8721     * By default, grid items will only call their selection callback
8722     * function when firstly getting selected, any subsequent further
8723     * clicks will do nothing. With this call, you make those
8724     * subsequent clicks also to issue the selection callbacks.
8725     *
8726     * @note <b>Double clicks</b> will @b always be reported on items.
8727     *
8728     * @see elm_gengrid_always_select_mode_get()
8729     *
8730     * @ingroup Gengrid
8731     */
8732    EAPI void               elm_gengrid_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
8733
8734    /**
8735     * Get whether items on a given gengrid widget have their selection
8736     * callbacks issued for @b every subsequent selection click on them
8737     * or just for the first click.
8738     *
8739     * @param obj The gengrid object.
8740     * @return @c EINA_TRUE if the gengrid items are "always selected",
8741     * @c EINA_FALSE, otherwise
8742     *
8743     * @see elm_gengrid_always_select_mode_set() for more details
8744     *
8745     * @ingroup Gengrid
8746     */
8747    EAPI Eina_Bool          elm_gengrid_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8748
8749    /**
8750     * Set whether items on a given gengrid widget can be selected or not.
8751     *
8752     * @param obj The gengrid object
8753     * @param no_select @c EINA_TRUE to make items selectable,
8754     * @c EINA_FALSE otherwise
8755     *
8756     * This will make items in @p obj selectable or not. In the latter
8757     * case, any user interaction on the gengrid items will neither make
8758     * them appear selected nor them call their selection callback
8759     * functions.
8760     *
8761     * @see elm_gengrid_no_select_mode_get()
8762     *
8763     * @ingroup Gengrid
8764     */
8765    EAPI void               elm_gengrid_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
8766
8767    /**
8768     * Get whether items on a given gengrid widget can be selected or
8769     * not.
8770     *
8771     * @param obj The gengrid object
8772     * @return @c EINA_TRUE, if items are selectable, @c EINA_FALSE
8773     * otherwise
8774     *
8775     * @see elm_gengrid_no_select_mode_set() for more details
8776     *
8777     * @ingroup Gengrid
8778     */
8779    EAPI Eina_Bool          elm_gengrid_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8780
8781    /**
8782     * Enable or disable multi-selection in a given gengrid widget
8783     *
8784     * @param obj The gengrid object.
8785     * @param multi @c EINA_TRUE, to enable multi-selection,
8786     * @c EINA_FALSE to disable it.
8787     *
8788     * Multi-selection is the ability to have @b more than one
8789     * item selected, on a given gengrid, simultaneously. When it is
8790     * enabled, a sequence of clicks on different items will make them
8791     * all selected, progressively. A click on an already selected item
8792     * will unselect it. If interacting via the keyboard,
8793     * multi-selection is enabled while holding the "Shift" key.
8794     *
8795     * @note By default, multi-selection is @b disabled on gengrids
8796     *
8797     * @see elm_gengrid_multi_select_get()
8798     *
8799     * @ingroup Gengrid
8800     */
8801    EAPI void               elm_gengrid_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
8802
8803    /**
8804     * Get whether multi-selection is enabled or disabled for a given
8805     * gengrid widget
8806     *
8807     * @param obj The gengrid object.
8808     * @return @c EINA_TRUE, if multi-selection is enabled, @c
8809     * EINA_FALSE otherwise
8810     *
8811     * @see elm_gengrid_multi_select_set() for more details
8812     *
8813     * @ingroup Gengrid
8814     */
8815    EAPI Eina_Bool          elm_gengrid_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8816
8817    /**
8818     * Enable or disable bouncing effect for a given gengrid widget
8819     *
8820     * @param obj The gengrid object
8821     * @param h_bounce @c EINA_TRUE, to enable @b horizontal bouncing,
8822     * @c EINA_FALSE to disable it
8823     * @param v_bounce @c EINA_TRUE, to enable @b vertical bouncing,
8824     * @c EINA_FALSE to disable it
8825     *
8826     * The bouncing effect occurs whenever one reaches the gengrid's
8827     * edge's while panning it -- it will scroll past its limits a
8828     * little bit and return to the edge again, in a animated for,
8829     * automatically.
8830     *
8831     * @note By default, gengrids have bouncing enabled on both axis
8832     *
8833     * @see elm_gengrid_bounce_get()
8834     *
8835     * @ingroup Gengrid
8836     */
8837    EAPI void               elm_gengrid_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
8838
8839    /**
8840     * Get whether bouncing effects are enabled or disabled, for a
8841     * given gengrid widget, on each axis
8842     *
8843     * @param obj The gengrid object
8844     * @param h_bounce Pointer to a variable where to store the
8845     * horizontal bouncing flag.
8846     * @param v_bounce Pointer to a variable where to store the
8847     * vertical bouncing flag.
8848     *
8849     * @see elm_gengrid_bounce_set() for more details
8850     *
8851     * @ingroup Gengrid
8852     */
8853    EAPI void               elm_gengrid_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
8854
8855    /**
8856     * Set a given gengrid widget's scrolling page size, relative to
8857     * its viewport size.
8858     *
8859     * @param obj The gengrid object
8860     * @param h_pagerel The horizontal page (relative) size
8861     * @param v_pagerel The vertical page (relative) size
8862     *
8863     * The gengrid's scroller is capable of binding scrolling by the
8864     * user to "pages". It means that, while scrolling and, specially
8865     * after releasing the mouse button, the grid will @b snap to the
8866     * nearest displaying page's area. When page sizes are set, the
8867     * grid's continuous content area is split into (equal) page sized
8868     * pieces.
8869     *
8870     * This function sets the size of a page <b>relatively to the
8871     * viewport dimensions</b> of the gengrid, for each axis. A value
8872     * @c 1.0 means "the exact viewport's size", in that axis, while @c
8873     * 0.0 turns paging off in that axis. Likewise, @c 0.5 means "half
8874     * a viewport". Sane usable values are, than, between @c 0.0 and @c
8875     * 1.0. Values beyond those will make it behave behave
8876     * inconsistently. If you only want one axis to snap to pages, use
8877     * the value @c 0.0 for the other one.
8878     *
8879     * There is a function setting page size values in @b absolute
8880     * values, too -- elm_gengrid_page_size_set(). Naturally, its use
8881     * is mutually exclusive to this one.
8882     *
8883     * @see elm_gengrid_page_relative_get()
8884     *
8885     * @ingroup Gengrid
8886     */
8887    EAPI void               elm_gengrid_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
8888
8889    /**
8890     * Get a given gengrid widget's scrolling page size, relative to
8891     * its viewport size.
8892     *
8893     * @param obj The gengrid object
8894     * @param h_pagerel Pointer to a variable where to store the
8895     * horizontal page (relative) size
8896     * @param v_pagerel Pointer to a variable where to store the
8897     * vertical page (relative) size
8898     *
8899     * @see elm_gengrid_page_relative_set() for more details
8900     *
8901     * @ingroup Gengrid
8902     */
8903    EAPI void               elm_gengrid_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel) EINA_ARG_NONNULL(1);
8904
8905    /**
8906     * Set a given gengrid widget's scrolling page size
8907     *
8908     * @param obj The gengrid object
8909     * @param h_pagerel The horizontal page size, in pixels
8910     * @param v_pagerel The vertical page size, in pixels
8911     *
8912     * The gengrid's scroller is capable of binding scrolling by the
8913     * user to "pages". It means that, while scrolling and, specially
8914     * after releasing the mouse button, the grid will @b snap to the
8915     * nearest displaying page's area. When page sizes are set, the
8916     * grid's continuous content area is split into (equal) page sized
8917     * pieces.
8918     *
8919     * This function sets the size of a page of the gengrid, in pixels,
8920     * for each axis. Sane usable values are, between @c 0 and the
8921     * dimensions of @p obj, for each axis. Values beyond those will
8922     * make it behave behave inconsistently. If you only want one axis
8923     * to snap to pages, use the value @c 0 for the other one.
8924     *
8925     * There is a function setting page size values in @b relative
8926     * values, too -- elm_gengrid_page_relative_set(). Naturally, its
8927     * use is mutually exclusive to this one.
8928     *
8929     * @ingroup Gengrid
8930     */
8931    EAPI void               elm_gengrid_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
8932
8933    /**
8934     * @brief Get gengrid current page number.
8935     *
8936     * @param obj The gengrid object
8937     * @param h_pagenumber The horizontal page number
8938     * @param v_pagenumber The vertical page number
8939     *
8940     * The page number starts from 0. 0 is the first page.
8941     * Current page means the page which meet the top-left of the viewport.
8942     * If there are two or more pages in the viewport, it returns the number of page
8943     * which meet the top-left of the viewport.
8944     *
8945     * @see elm_gengrid_last_page_get()
8946     * @see elm_gengrid_page_show()
8947     * @see elm_gengrid_page_brint_in()
8948     */
8949    EAPI void         elm_gengrid_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
8950
8951    /**
8952     * @brief Get scroll last page number.
8953     *
8954     * @param obj The gengrid object
8955     * @param h_pagenumber The horizontal page number
8956     * @param v_pagenumber The vertical page number
8957     *
8958     * The page number starts from 0. 0 is the first page.
8959     * This returns the last page number among the pages.
8960     *
8961     * @see elm_gengrid_current_page_get()
8962     * @see elm_gengrid_page_show()
8963     * @see elm_gengrid_page_brint_in()
8964     */
8965    EAPI void         elm_gengrid_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber) EINA_ARG_NONNULL(1);
8966
8967    /**
8968     * Show a specific virtual region within the gengrid content object by page number.
8969     *
8970     * @param obj The gengrid object
8971     * @param h_pagenumber The horizontal page number
8972     * @param v_pagenumber The vertical page number
8973     *
8974     * 0, 0 of the indicated page is located at the top-left of the viewport.
8975     * This will jump to the page directly without animation.
8976     *
8977     * Example of usage:
8978     *
8979     * @code
8980     * sc = elm_gengrid_add(win);
8981     * elm_gengrid_content_set(sc, content);
8982     * elm_gengrid_page_relative_set(sc, 1, 0);
8983     * elm_gengrid_current_page_get(sc, &h_page, &v_page);
8984     * elm_gengrid_page_show(sc, h_page + 1, v_page);
8985     * @endcode
8986     *
8987     * @see elm_gengrid_page_bring_in()
8988     */
8989    EAPI void         elm_gengrid_page_show(const Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
8990
8991    /**
8992     * Show a specific virtual region within the gengrid content object by page number.
8993     *
8994     * @param obj The gengrid object
8995     * @param h_pagenumber The horizontal page number
8996     * @param v_pagenumber The vertical page number
8997     *
8998     * 0, 0 of the indicated page is located at the top-left of the viewport.
8999     * This will slide to the page with animation.
9000     *
9001     * Example of usage:
9002     *
9003     * @code
9004     * sc = elm_gengrid_add(win);
9005     * elm_gengrid_content_set(sc, content);
9006     * elm_gengrid_page_relative_set(sc, 1, 0);
9007     * elm_gengrid_last_page_get(sc, &h_page, &v_page);
9008     * elm_gengrid_page_bring_in(sc, h_page, v_page);
9009     * @endcode
9010     *
9011     * @see elm_gengrid_page_show()
9012     */
9013     EAPI void         elm_gengrid_page_bring_in(const Evas_Object *obj, int h_pagenumber, int v_pagenumber) EINA_ARG_NONNULL(1);
9014
9015    /**
9016     * Set the direction in which a given gengrid widget will expand while
9017     * placing its items.
9018     *
9019     * @param obj The gengrid object.
9020     * @param setting @c EINA_TRUE to make the gengrid expand
9021     * horizontally, @c EINA_FALSE to expand vertically.
9022     *
9023     * When in "horizontal mode" (@c EINA_TRUE), items will be placed
9024     * in @b columns, from top to bottom and, when the space for a
9025     * column is filled, another one is started on the right, thus
9026     * expanding the grid horizontally. When in "vertical mode"
9027     * (@c EINA_FALSE), though, items will be placed in @b rows, from left
9028     * to right and, when the space for a row is filled, another one is
9029     * started below, thus expanding the grid vertically.
9030     *
9031     * @see elm_gengrid_horizontal_get()
9032     *
9033     * @ingroup Gengrid
9034     */
9035    EAPI void               elm_gengrid_horizontal_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
9036
9037    /**
9038     * Get for what direction a given gengrid widget will expand while
9039     * placing its items.
9040     *
9041     * @param obj The gengrid object.
9042     * @return @c EINA_TRUE, if @p obj is set to expand horizontally,
9043     * @c EINA_FALSE if it's set to expand vertically.
9044     *
9045     * @see elm_gengrid_horizontal_set() for more detais
9046     *
9047     * @ingroup Gengrid
9048     */
9049    EAPI Eina_Bool          elm_gengrid_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9050
9051    /**
9052     * Get the first item in a given gengrid widget
9053     *
9054     * @param obj The gengrid object
9055     * @return The first item's handle or @c NULL, if there are no
9056     * items in @p obj (and on errors)
9057     *
9058     * This returns the first item in the @p obj's internal list of
9059     * items.
9060     *
9061     * @see elm_gengrid_last_item_get()
9062     *
9063     * @ingroup Gengrid
9064     */
9065    EAPI Elm_Gengrid_Item  *elm_gengrid_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9066
9067    /**
9068     * Get the last item in a given gengrid widget
9069     *
9070     * @param obj The gengrid object
9071     * @return The last item's handle or @c NULL, if there are no
9072     * items in @p obj (and on errors)
9073     *
9074     * This returns the last item in the @p obj's internal list of
9075     * items.
9076     *
9077     * @see elm_gengrid_first_item_get()
9078     *
9079     * @ingroup Gengrid
9080     */
9081    EAPI Elm_Gengrid_Item  *elm_gengrid_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9082
9083    /**
9084     * Get the @b next item in a gengrid widget's internal list of items,
9085     * given a handle to one of those items.
9086     *
9087     * @param item The gengrid item to fetch next from
9088     * @return The item after @p item, or @c NULL if there's none (and
9089     * on errors)
9090     *
9091     * This returns the item placed after the @p item, on the container
9092     * gengrid.
9093     *
9094     * @see elm_gengrid_item_prev_get()
9095     *
9096     * @ingroup Gengrid
9097     */
9098    EAPI Elm_Gengrid_Item  *elm_gengrid_item_next_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9099
9100    /**
9101     * Get the @b previous item in a gengrid widget's internal list of items,
9102     * given a handle to one of those items.
9103     *
9104     * @param item The gengrid item to fetch previous from
9105     * @return The item before @p item, or @c NULL if there's none (and
9106     * on errors)
9107     *
9108     * This returns the item placed before the @p item, on the container
9109     * gengrid.
9110     *
9111     * @see elm_gengrid_item_next_get()
9112     *
9113     * @ingroup Gengrid
9114     */
9115    EAPI Elm_Gengrid_Item  *elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9116
9117    /**
9118     * Get the gengrid object's handle which contains a given gengrid
9119     * item
9120     *
9121     * @param item The item to fetch the container from
9122     * @return The gengrid (parent) object
9123     *
9124     * This returns the gengrid object itself that an item belongs to.
9125     *
9126     * @ingroup Gengrid
9127     */
9128    EAPI Evas_Object       *elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9129
9130    /**
9131     * Remove a gengrid item from its parent, deleting it.
9132     *
9133     * @param item The item to be removed.
9134     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
9135     *
9136     * @see elm_gengrid_clear(), to remove all items in a gengrid at
9137     * once.
9138     *
9139     * @ingroup Gengrid
9140     */
9141    EAPI void               elm_gengrid_item_del(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9142
9143    /**
9144     * Update the contents of a given gengrid item
9145     *
9146     * @param item The gengrid item
9147     *
9148     * This updates an item by calling all the item class functions
9149     * again to get the contents, texts and states. Use this when the
9150     * original item data has changed and you want the changes to be
9151     * reflected.
9152     *
9153     * @ingroup Gengrid
9154     */
9155    EAPI void               elm_gengrid_item_update(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9156
9157    /**
9158     * Get the Gengrid Item class for the given Gengrid Item.
9159     *
9160     * @param item The gengrid item
9161     *
9162     * This returns the Gengrid_Item_Class for the given item. It can be used to examine
9163     * the function pointers and item_style.
9164     *
9165     * @ingroup Gengrid
9166     */
9167    EAPI const Elm_Gengrid_Item_Class *elm_gengrid_item_item_class_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9168
9169    /**
9170     * Get the Gengrid Item class for the given Gengrid Item.
9171     *
9172     * This sets the Gengrid_Item_Class for the given item. It can be used to examine
9173     * the function pointers and item_style.
9174     *
9175     * @param item The gengrid item
9176     * @param gic The gengrid item class describing the function pointers and the item style.
9177     *
9178     * @ingroup Gengrid
9179     */
9180    EAPI void               elm_gengrid_item_item_class_set(Elm_Gengrid_Item *item, const Elm_Gengrid_Item_Class *gic) EINA_ARG_NONNULL(1, 2);
9181
9182    /**
9183     * Return the data associated to a given gengrid item
9184     *
9185     * @param item The gengrid item.
9186     * @return the data associated with this item.
9187     *
9188     * This returns the @c data value passed on the
9189     * elm_gengrid_item_append() and related item addition calls.
9190     *
9191     * @see elm_gengrid_item_append()
9192     * @see elm_gengrid_item_data_set()
9193     *
9194     * @ingroup Gengrid
9195     */
9196    EAPI void              *elm_gengrid_item_data_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9197
9198    /**
9199     * Set the data associated with a given gengrid item
9200     *
9201     * @param item The gengrid item
9202     * @param data The data pointer to set on it
9203     *
9204     * This @b overrides the @c data value passed on the
9205     * elm_gengrid_item_append() and related item addition calls. This
9206     * function @b won't call elm_gengrid_item_update() automatically,
9207     * so you'd issue it afterwards if you want to have the item
9208     * updated to reflect the new data.
9209     *
9210     * @see elm_gengrid_item_data_get()
9211     * @see elm_gengrid_item_update()
9212     *
9213     * @ingroup Gengrid
9214     */
9215    EAPI void               elm_gengrid_item_data_set(Elm_Gengrid_Item *item, const void *data) EINA_ARG_NONNULL(1);
9216
9217    /**
9218     * Get a given gengrid item's position, relative to the whole
9219     * gengrid's grid area.
9220     *
9221     * @param item The Gengrid item.
9222     * @param x Pointer to variable to store the item's <b>row number</b>.
9223     * @param y Pointer to variable to store the item's <b>column number</b>.
9224     *
9225     * This returns the "logical" position of the item within the
9226     * gengrid. For example, @c (0, 1) would stand for first row,
9227     * second column.
9228     *
9229     * @ingroup Gengrid
9230     */
9231    EAPI void               elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item, unsigned int *x, unsigned int *y) EINA_ARG_NONNULL(1);
9232
9233    /**
9234     * Set whether a given gengrid item is selected or not
9235     *
9236     * @param item The gengrid item
9237     * @param selected Use @c EINA_TRUE, to make it selected, @c
9238     * EINA_FALSE to make it unselected
9239     *
9240     * This sets the selected state of an item. If multi-selection is
9241     * not enabled on the containing gengrid and @p selected is @c
9242     * EINA_TRUE, any other previously selected items will get
9243     * unselected in favor of this new one.
9244     *
9245     * @see elm_gengrid_item_selected_get()
9246     *
9247     * @ingroup Gengrid
9248     */
9249    EAPI void elm_gengrid_item_selected_set(Elm_Gengrid_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
9250
9251    /**
9252     * Get whether a given gengrid item is selected or not
9253     *
9254     * @param item The gengrid item
9255     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
9256     *
9257     * This API returns EINA_TRUE for all the items selected in multi-select mode as well.
9258     *
9259     * @see elm_gengrid_item_selected_set() for more details
9260     *
9261     * @ingroup Gengrid
9262     */
9263    EAPI Eina_Bool elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9264
9265    /**
9266     * Get the real Evas object created to implement the view of a
9267     * given gengrid item
9268     *
9269     * @param item The gengrid item.
9270     * @return the Evas object implementing this item's view.
9271     *
9272     * This returns the actual Evas object used to implement the
9273     * specified gengrid item's view. This may be @c NULL, as it may
9274     * not have been created or may have been deleted, at any time, by
9275     * the gengrid. <b>Do not modify this object</b> (move, resize,
9276     * show, hide, etc.), as the gengrid is controlling it. This
9277     * function is for querying, emitting custom signals or hooking
9278     * lower level callbacks for events on that object. Do not delete
9279     * this object under any circumstances.
9280     *
9281     * @see elm_gengrid_item_data_get()
9282     *
9283     * @ingroup Gengrid
9284     */
9285    EAPI const Evas_Object *elm_gengrid_item_object_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9286
9287    /**
9288     * Show the portion of a gengrid's internal grid containing a given
9289     * item, @b immediately.
9290     *
9291     * @param item The item to display
9292     *
9293     * This causes gengrid to @b redraw its viewport's contents to the
9294     * region contining the given @p item item, if it is not fully
9295     * visible.
9296     *
9297     * @see elm_gengrid_item_bring_in()
9298     *
9299     * @ingroup Gengrid
9300     */
9301    EAPI void               elm_gengrid_item_show(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9302
9303    /**
9304     * Animatedly bring in, to the visible area of a gengrid, a given
9305     * item on it.
9306     *
9307     * @param item The gengrid item to display
9308     *
9309     * This causes gengrid to jump to the given @p item and show
9310     * it (by scrolling), if it is not fully visible. This will use
9311     * animation to do so and take a period of time to complete.
9312     *
9313     * @see elm_gengrid_item_show()
9314     *
9315     * @ingroup Gengrid
9316     */
9317    EAPI void               elm_gengrid_item_bring_in(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9318
9319    /**
9320     * Set whether a given gengrid item is disabled or not.
9321     *
9322     * @param item The gengrid item
9323     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
9324     * to enable it back.
9325     *
9326     * A disabled item cannot be selected or unselected. It will also
9327     * change its appearance, to signal the user it's disabled.
9328     *
9329     * @see elm_gengrid_item_disabled_get()
9330     *
9331     * @ingroup Gengrid
9332     */
9333    EAPI void               elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
9334
9335    /**
9336     * Get whether a given gengrid item is disabled or not.
9337     *
9338     * @param item The gengrid item
9339     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
9340     * (and on errors).
9341     *
9342     * @see elm_gengrid_item_disabled_set() for more details
9343     *
9344     * @ingroup Gengrid
9345     */
9346    EAPI Eina_Bool          elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9347
9348    /**
9349     * Set the text to be shown in a given gengrid item's tooltips.
9350     *
9351     * @param item The gengrid item
9352     * @param text The text to set in the content
9353     *
9354     * This call will setup the text to be used as tooltip to that item
9355     * (analogous to elm_object_tooltip_text_set(), but being item
9356     * tooltips with higher precedence than object tooltips). It can
9357     * have only one tooltip at a time, so any previous tooltip data
9358     * will get removed.
9359     *
9360     * @ingroup Gengrid
9361     */
9362    EAPI void               elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item, const char *text) EINA_ARG_NONNULL(1);
9363
9364    /**
9365     * Set the content to be shown in a given gengrid item's tooltip
9366     *
9367     * @param item The gengrid item.
9368     * @param func The function returning the tooltip contents.
9369     * @param data What to provide to @a func as callback data/context.
9370     * @param del_cb Called when data is not needed anymore, either when
9371     *        another callback replaces @p func, the tooltip is unset with
9372     *        elm_gengrid_item_tooltip_unset() or the owner @p item
9373     *        dies. This callback receives as its first parameter the
9374     *        given @p data, being @c event_info the item handle.
9375     *
9376     * This call will setup the tooltip's contents to @p item
9377     * (analogous to elm_object_tooltip_content_cb_set(), but being
9378     * item tooltips with higher precedence than object tooltips). It
9379     * can have only one tooltip at a time, so any previous tooltip
9380     * content will get removed. @p func (with @p data) will be called
9381     * every time Elementary needs to show the tooltip and it should
9382     * return a valid Evas object, which will be fully managed by the
9383     * tooltip system, getting deleted when the tooltip is gone.
9384     *
9385     * @ingroup Gengrid
9386     */
9387    EAPI void               elm_gengrid_item_tooltip_content_cb_set(Elm_Gengrid_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
9388
9389    /**
9390     * Unset a tooltip from a given gengrid item
9391     *
9392     * @param item gengrid item to remove a previously set tooltip from.
9393     *
9394     * This call removes any tooltip set on @p item. The callback
9395     * provided as @c del_cb to
9396     * elm_gengrid_item_tooltip_content_cb_set() will be called to
9397     * notify it is not used anymore (and have resources cleaned, if
9398     * need be).
9399     *
9400     * @see elm_gengrid_item_tooltip_content_cb_set()
9401     *
9402     * @ingroup Gengrid
9403     */
9404    EAPI void               elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9405
9406    /**
9407     * Set a different @b style for a given gengrid item's tooltip.
9408     *
9409     * @param item gengrid item with tooltip set
9410     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
9411     * "default", @c "transparent", etc)
9412     *
9413     * Tooltips can have <b>alternate styles</b> to be displayed on,
9414     * which are defined by the theme set on Elementary. This function
9415     * works analogously as elm_object_tooltip_style_set(), but here
9416     * applied only to gengrid item objects. The default style for
9417     * tooltips is @c "default".
9418     *
9419     * @note before you set a style you should define a tooltip with
9420     *       elm_gengrid_item_tooltip_content_cb_set() or
9421     *       elm_gengrid_item_tooltip_text_set()
9422     *
9423     * @see elm_gengrid_item_tooltip_style_get()
9424     *
9425     * @ingroup Gengrid
9426     */
9427    EAPI void               elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
9428
9429    /**
9430     * Get the style set a given gengrid item's tooltip.
9431     *
9432     * @param item gengrid item with tooltip already set on.
9433     * @return style the theme style in use, which defaults to
9434     *         "default". If the object does not have a tooltip set,
9435     *         then @c NULL is returned.
9436     *
9437     * @see elm_gengrid_item_tooltip_style_set() for more details
9438     *
9439     * @ingroup Gengrid
9440     */
9441    EAPI const char        *elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9442    /**
9443     * @brief Disable size restrictions on an object's tooltip
9444     * @param item The tooltip's anchor object
9445     * @param disable If EINA_TRUE, size restrictions are disabled
9446     * @return EINA_FALSE on failure, EINA_TRUE on success
9447     *
9448     * This function allows a tooltip to expand beyond its parant window's canvas.
9449     * It will instead be limited only by the size of the display.
9450     */
9451    EAPI Eina_Bool          elm_gengrid_item_tooltip_size_restrict_disable(Elm_Gengrid_Item *item, Eina_Bool disable);
9452    /**
9453     * @brief Retrieve size restriction state of an object's tooltip
9454     * @param item The tooltip's anchor object
9455     * @return If EINA_TRUE, size restrictions are disabled
9456     *
9457     * This function returns whether a tooltip is allowed to expand beyond
9458     * its parant window's canvas.
9459     * It will instead be limited only by the size of the display.
9460     */
9461    EAPI Eina_Bool          elm_gengrid_item_tooltip_size_restrict_disabled_get(const Elm_Gengrid_Item *item);
9462    /**
9463     * Set the type of mouse pointer/cursor decoration to be shown,
9464     * when the mouse pointer is over the given gengrid widget item
9465     *
9466     * @param item gengrid item to customize cursor on
9467     * @param cursor the cursor type's name
9468     *
9469     * This function works analogously as elm_object_cursor_set(), but
9470     * here the cursor's changing area is restricted to the item's
9471     * area, and not the whole widget's. Note that that item cursors
9472     * have precedence over widget cursors, so that a mouse over @p
9473     * item will always show cursor @p type.
9474     *
9475     * If this function is called twice for an object, a previously set
9476     * cursor will be unset on the second call.
9477     *
9478     * @see elm_object_cursor_set()
9479     * @see elm_gengrid_item_cursor_get()
9480     * @see elm_gengrid_item_cursor_unset()
9481     *
9482     * @ingroup Gengrid
9483     */
9484    EAPI void               elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
9485
9486    /**
9487     * Get the type of mouse pointer/cursor decoration set to be shown,
9488     * when the mouse pointer is over the given gengrid widget item
9489     *
9490     * @param item gengrid item with custom cursor set
9491     * @return the cursor type's name or @c NULL, if no custom cursors
9492     * were set to @p item (and on errors)
9493     *
9494     * @see elm_object_cursor_get()
9495     * @see elm_gengrid_item_cursor_set() for more details
9496     * @see elm_gengrid_item_cursor_unset()
9497     *
9498     * @ingroup Gengrid
9499     */
9500    EAPI const char        *elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9501
9502    /**
9503     * Unset any custom mouse pointer/cursor decoration set to be
9504     * shown, when the mouse pointer is over the given gengrid widget
9505     * item, thus making it show the @b default cursor again.
9506     *
9507     * @param item a gengrid item
9508     *
9509     * Use this call to undo any custom settings on this item's cursor
9510     * decoration, bringing it back to defaults (no custom style set).
9511     *
9512     * @see elm_object_cursor_unset()
9513     * @see elm_gengrid_item_cursor_set() for more details
9514     *
9515     * @ingroup Gengrid
9516     */
9517    EAPI void               elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9518
9519    /**
9520     * Set a different @b style for a given custom cursor set for a
9521     * gengrid item.
9522     *
9523     * @param item gengrid item with custom cursor set
9524     * @param style the <b>theme style</b> to use (e.g. @c "default",
9525     * @c "transparent", etc)
9526     *
9527     * This function only makes sense when one is using custom mouse
9528     * cursor decorations <b>defined in a theme file</b> , which can
9529     * have, given a cursor name/type, <b>alternate styles</b> on
9530     * it. It works analogously as elm_object_cursor_style_set(), but
9531     * here applied only to gengrid item objects.
9532     *
9533     * @warning Before you set a cursor style you should have defined a
9534     *       custom cursor previously on the item, with
9535     *       elm_gengrid_item_cursor_set()
9536     *
9537     * @see elm_gengrid_item_cursor_engine_only_set()
9538     * @see elm_gengrid_item_cursor_style_get()
9539     *
9540     * @ingroup Gengrid
9541     */
9542    EAPI void               elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
9543
9544    /**
9545     * Get the current @b style set for a given gengrid item's custom
9546     * cursor
9547     *
9548     * @param item gengrid item with custom cursor set.
9549     * @return style the cursor style in use. If the object does not
9550     *         have a cursor set, then @c NULL is returned.
9551     *
9552     * @see elm_gengrid_item_cursor_style_set() for more details
9553     *
9554     * @ingroup Gengrid
9555     */
9556    EAPI const char        *elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9557
9558    /**
9559     * Set if the (custom) cursor for a given gengrid item should be
9560     * searched in its theme, also, or should only rely on the
9561     * rendering engine.
9562     *
9563     * @param item item with custom (custom) cursor already set on
9564     * @param engine_only Use @c EINA_TRUE to have cursors looked for
9565     * only on those provided by the rendering engine, @c EINA_FALSE to
9566     * have them searched on the widget's theme, as well.
9567     *
9568     * @note This call is of use only if you've set a custom cursor
9569     * for gengrid items, with elm_gengrid_item_cursor_set().
9570     *
9571     * @note By default, cursors will only be looked for between those
9572     * provided by the rendering engine.
9573     *
9574     * @ingroup Gengrid
9575     */
9576    EAPI void               elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
9577
9578    /**
9579     * Get if the (custom) cursor for a given gengrid item is being
9580     * searched in its theme, also, or is only relying on the rendering
9581     * engine.
9582     *
9583     * @param item a gengrid item
9584     * @return @c EINA_TRUE, if cursors are being looked for only on
9585     * those provided by the rendering engine, @c EINA_FALSE if they
9586     * are being searched on the widget's theme, as well.
9587     *
9588     * @see elm_gengrid_item_cursor_engine_only_set(), for more details
9589     *
9590     * @ingroup Gengrid
9591     */
9592    EAPI Eina_Bool          elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9593
9594    /**
9595     * Remove all items from a given gengrid widget
9596     *
9597     * @param obj The gengrid object.
9598     *
9599     * This removes (and deletes) all items in @p obj, leaving it
9600     * empty.
9601     *
9602     * @see elm_gengrid_item_del(), to remove just one item.
9603     *
9604     * @ingroup Gengrid
9605     */
9606    EAPI void elm_gengrid_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
9607
9608    /**
9609     * Get the selected item in a given gengrid widget
9610     *
9611     * @param obj The gengrid object.
9612     * @return The selected item's handleor @c NULL, if none is
9613     * selected at the moment (and on errors)
9614     *
9615     * This returns the selected item in @p obj. If multi selection is
9616     * enabled on @p obj (@see elm_gengrid_multi_select_set()), only
9617     * the first item in the list is selected, which might not be very
9618     * useful. For that case, see elm_gengrid_selected_items_get().
9619     *
9620     * @ingroup Gengrid
9621     */
9622    EAPI Elm_Gengrid_Item  *elm_gengrid_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9623
9624    /**
9625     * Get <b>a list</b> of selected items in a given gengrid
9626     *
9627     * @param obj The gengrid object.
9628     * @return The list of selected items or @c NULL, if none is
9629     * selected at the moment (and on errors)
9630     *
9631     * This returns a list of the selected items, in the order that
9632     * they appear in the grid. This list is only valid as long as no
9633     * more items are selected or unselected (or unselected implictly
9634     * by deletion). The list contains #Elm_Gengrid_Item pointers as
9635     * data, naturally.
9636     *
9637     * @see elm_gengrid_selected_item_get()
9638     *
9639     * @ingroup Gengrid
9640     */
9641    EAPI const Eina_List   *elm_gengrid_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9642
9643    /**
9644     * @}
9645     */
9646
9647    /**
9648     * @defgroup Clock Clock
9649     *
9650     * @image html img/widget/clock/preview-00.png
9651     * @image latex img/widget/clock/preview-00.eps
9652     *
9653     * This is a @b digital clock widget. In its default theme, it has a
9654     * vintage "flipping numbers clock" appearance, which will animate
9655     * sheets of individual algarisms individually as time goes by.
9656     *
9657     * A newly created clock will fetch system's time (already
9658     * considering local time adjustments) to start with, and will tick
9659     * accondingly. It may or may not show seconds.
9660     *
9661     * Clocks have an @b edition mode. When in it, the sheets will
9662     * display extra arrow indications on the top and bottom and the
9663     * user may click on them to raise or lower the time values. After
9664     * it's told to exit edition mode, it will keep ticking with that
9665     * new time set (it keeps the difference from local time).
9666     *
9667     * Also, when under edition mode, user clicks on the cited arrows
9668     * which are @b held for some time will make the clock to flip the
9669     * sheet, thus editing the time, continuosly and automatically for
9670     * the user. The interval between sheet flips will keep growing in
9671     * time, so that it helps the user to reach a time which is distant
9672     * from the one set.
9673     *
9674     * The time display is, by default, in military mode (24h), but an
9675     * am/pm indicator may be optionally shown, too, when it will
9676     * switch to 12h.
9677     *
9678     * Smart callbacks one can register to:
9679     * - "changed" - the clock's user changed the time
9680     *
9681     * Here is an example on its usage:
9682     * @li @ref clock_example
9683     */
9684
9685    /**
9686     * @addtogroup Clock
9687     * @{
9688     */
9689
9690    /**
9691     * Identifiers for which clock digits should be editable, when a
9692     * clock widget is in edition mode. Values may be ORed together to
9693     * make a mask, naturally.
9694     *
9695     * @see elm_clock_edit_set()
9696     * @see elm_clock_digit_edit_set()
9697     */
9698    typedef enum _Elm_Clock_Digedit
9699      {
9700         ELM_CLOCK_NONE         = 0, /**< Default value. Means that all digits are editable, when in edition mode. */
9701         ELM_CLOCK_HOUR_DECIMAL = 1 << 0, /**< Decimal algarism of hours value should be editable */
9702         ELM_CLOCK_HOUR_UNIT    = 1 << 1, /**< Unit algarism of hours value should be editable */
9703         ELM_CLOCK_MIN_DECIMAL  = 1 << 2, /**< Decimal algarism of minutes value should be editable */
9704         ELM_CLOCK_MIN_UNIT     = 1 << 3, /**< Unit algarism of minutes value should be editable */
9705         ELM_CLOCK_SEC_DECIMAL  = 1 << 4, /**< Decimal algarism of seconds value should be editable */
9706         ELM_CLOCK_SEC_UNIT     = 1 << 5, /**< Unit algarism of seconds value should be editable */
9707         ELM_CLOCK_ALL          = (1 << 6) - 1 /**< All digits should be editable */
9708      } Elm_Clock_Digedit;
9709
9710    /**
9711     * Add a new clock widget to the given parent Elementary
9712     * (container) object
9713     *
9714     * @param parent The parent object
9715     * @return a new clock widget handle or @c NULL, on errors
9716     *
9717     * This function inserts a new clock widget on the canvas.
9718     *
9719     * @ingroup Clock
9720     */
9721    EAPI Evas_Object      *elm_clock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9722
9723    /**
9724     * Set a clock widget's time, programmatically
9725     *
9726     * @param obj The clock widget object
9727     * @param hrs The hours to set
9728     * @param min The minutes to set
9729     * @param sec The secondes to set
9730     *
9731     * This function updates the time that is showed by the clock
9732     * widget.
9733     *
9734     *  Values @b must be set within the following ranges:
9735     * - 0 - 23, for hours
9736     * - 0 - 59, for minutes
9737     * - 0 - 59, for seconds,
9738     *
9739     * even if the clock is not in "military" mode.
9740     *
9741     * @warning The behavior for values set out of those ranges is @b
9742     * undefined.
9743     *
9744     * @ingroup Clock
9745     */
9746    EAPI void              elm_clock_time_set(Evas_Object *obj, int hrs, int min, int sec) EINA_ARG_NONNULL(1);
9747
9748    /**
9749     * Get a clock widget's time values
9750     *
9751     * @param obj The clock object
9752     * @param[out] hrs Pointer to the variable to get the hours value
9753     * @param[out] min Pointer to the variable to get the minutes value
9754     * @param[out] sec Pointer to the variable to get the seconds value
9755     *
9756     * This function gets the time set for @p obj, returning
9757     * it on the variables passed as the arguments to function
9758     *
9759     * @note Use @c NULL pointers on the time values you're not
9760     * interested in: they'll be ignored by the function.
9761     *
9762     * @ingroup Clock
9763     */
9764    EAPI void              elm_clock_time_get(const Evas_Object *obj, int *hrs, int *min, int *sec) EINA_ARG_NONNULL(1);
9765
9766    /**
9767     * Set whether a given clock widget is under <b>edition mode</b> or
9768     * under (default) displaying-only mode.
9769     *
9770     * @param obj The clock object
9771     * @param edit @c EINA_TRUE to put it in edition, @c EINA_FALSE to
9772     * put it back to "displaying only" mode
9773     *
9774     * This function makes a clock's time to be editable or not <b>by
9775     * user interaction</b>. When in edition mode, clocks @b stop
9776     * ticking, until one brings them back to canonical mode. The
9777     * elm_clock_digit_edit_set() function will influence which digits
9778     * of the clock will be editable. By default, all of them will be
9779     * (#ELM_CLOCK_NONE).
9780     *
9781     * @note am/pm sheets, if being shown, will @b always be editable
9782     * under edition mode.
9783     *
9784     * @see elm_clock_edit_get()
9785     *
9786     * @ingroup Clock
9787     */
9788    EAPI void              elm_clock_edit_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
9789
9790    /**
9791     * Retrieve whether a given clock widget is under <b>edition
9792     * mode</b> or under (default) displaying-only mode.
9793     *
9794     * @param obj The clock object
9795     * @param edit @c EINA_TRUE, if it's in edition mode, @c EINA_FALSE
9796     * otherwise
9797     *
9798     * This function retrieves whether the clock's time can be edited
9799     * or not by user interaction.
9800     *
9801     * @see elm_clock_edit_set() for more details
9802     *
9803     * @ingroup Clock
9804     */
9805    EAPI Eina_Bool         elm_clock_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9806
9807    /**
9808     * Set what digits of the given clock widget should be editable
9809     * when in edition mode.
9810     *
9811     * @param obj The clock object
9812     * @param digedit Bit mask indicating the digits to be editable
9813     * (values in #Elm_Clock_Digedit).
9814     *
9815     * If the @p digedit param is #ELM_CLOCK_NONE, editing will be
9816     * disabled on @p obj (same effect as elm_clock_edit_set(), with @c
9817     * EINA_FALSE).
9818     *
9819     * @see elm_clock_digit_edit_get()
9820     *
9821     * @ingroup Clock
9822     */
9823    EAPI void              elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Digedit digedit) EINA_ARG_NONNULL(1);
9824
9825    /**
9826     * Retrieve what digits of the given clock widget should be
9827     * editable when in edition mode.
9828     *
9829     * @param obj The clock object
9830     * @return Bit mask indicating the digits to be editable
9831     * (values in #Elm_Clock_Digedit).
9832     *
9833     * @see elm_clock_digit_edit_set() for more details
9834     *
9835     * @ingroup Clock
9836     */
9837    EAPI Elm_Clock_Digedit elm_clock_digit_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9838
9839    /**
9840     * Set if the given clock widget must show hours in military or
9841     * am/pm mode
9842     *
9843     * @param obj The clock object
9844     * @param am_pm @c EINA_TRUE to put it in am/pm mode, @c EINA_FALSE
9845     * to military mode
9846     *
9847     * This function sets if the clock must show hours in military or
9848     * am/pm mode. In some countries like Brazil the military mode
9849     * (00-24h-format) is used, in opposition to the USA, where the
9850     * am/pm mode is more commonly used.
9851     *
9852     * @see elm_clock_show_am_pm_get()
9853     *
9854     * @ingroup Clock
9855     */
9856    EAPI void              elm_clock_show_am_pm_set(Evas_Object *obj, Eina_Bool am_pm) EINA_ARG_NONNULL(1);
9857
9858    /**
9859     * Get if the given clock widget shows hours in military or am/pm
9860     * mode
9861     *
9862     * @param obj The clock object
9863     * @return @c EINA_TRUE, if in am/pm mode, @c EINA_FALSE if in
9864     * military
9865     *
9866     * This function gets if the clock shows hours in military or am/pm
9867     * mode.
9868     *
9869     * @see elm_clock_show_am_pm_set() for more details
9870     *
9871     * @ingroup Clock
9872     */
9873    EAPI Eina_Bool         elm_clock_show_am_pm_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9874
9875    /**
9876     * Set if the given clock widget must show time with seconds or not
9877     *
9878     * @param obj The clock object
9879     * @param seconds @c EINA_TRUE to show seconds, @c EINA_FALSE otherwise
9880     *
9881     * This function sets if the given clock must show or not elapsed
9882     * seconds. By default, they are @b not shown.
9883     *
9884     * @see elm_clock_show_seconds_get()
9885     *
9886     * @ingroup Clock
9887     */
9888    EAPI void              elm_clock_show_seconds_set(Evas_Object *obj, Eina_Bool seconds) EINA_ARG_NONNULL(1);
9889
9890    /**
9891     * Get whether the given clock widget is showing time with seconds
9892     * or not
9893     *
9894     * @param obj The clock object
9895     * @return @c EINA_TRUE if it's showing seconds, @c EINA_FALSE otherwise
9896     *
9897     * This function gets whether @p obj is showing or not the elapsed
9898     * seconds.
9899     *
9900     * @see elm_clock_show_seconds_set()
9901     *
9902     * @ingroup Clock
9903     */
9904    EAPI Eina_Bool         elm_clock_show_seconds_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9905
9906    /**
9907     * Set the interval on time updates for an user mouse button hold
9908     * on clock widgets' time edition.
9909     *
9910     * @param obj The clock object
9911     * @param interval The (first) interval value in seconds
9912     *
9913     * This interval value is @b decreased while the user holds the
9914     * mouse pointer either incrementing or decrementing a given the
9915     * clock digit's value.
9916     *
9917     * This helps the user to get to a given time distant from the
9918     * current one easier/faster, as it will start to flip quicker and
9919     * quicker on mouse button holds.
9920     *
9921     * The calculation for the next flip interval value, starting from
9922     * the one set with this call, is the previous interval divided by
9923     * 1.05, so it decreases a little bit.
9924     *
9925     * The default starting interval value for automatic flips is
9926     * @b 0.85 seconds.
9927     *
9928     * @see elm_clock_interval_get()
9929     *
9930     * @ingroup Clock
9931     */
9932    EAPI void              elm_clock_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
9933
9934    /**
9935     * Get the interval on time updates for an user mouse button hold
9936     * on clock widgets' time edition.
9937     *
9938     * @param obj The clock object
9939     * @return The (first) interval value, in seconds, set on it
9940     *
9941     * @see elm_clock_interval_set() for more details
9942     *
9943     * @ingroup Clock
9944     */
9945    EAPI double            elm_clock_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9946
9947    /**
9948     * @}
9949     */
9950
9951    /**
9952     * @defgroup Layout Layout
9953     *
9954     * @image html img/widget/layout/preview-00.png
9955     * @image latex img/widget/layout/preview-00.eps width=\textwidth
9956     *
9957     * @image html img/layout-predefined.png
9958     * @image latex img/layout-predefined.eps width=\textwidth
9959     *
9960     * This is a container widget that takes a standard Edje design file and
9961     * wraps it very thinly in a widget.
9962     *
9963     * An Edje design (theme) file has a very wide range of possibilities to
9964     * describe the behavior of elements added to the Layout. Check out the Edje
9965     * documentation and the EDC reference to get more information about what can
9966     * be done with Edje.
9967     *
9968     * Just like @ref List, @ref Box, and other container widgets, any
9969     * object added to the Layout will become its child, meaning that it will be
9970     * deleted if the Layout is deleted, move if the Layout is moved, and so on.
9971     *
9972     * The Layout widget can contain as many Contents, Boxes or Tables as
9973     * described in its theme file. For instance, objects can be added to
9974     * different Tables by specifying the respective Table part names. The same
9975     * is valid for Content and Box.
9976     *
9977     * The objects added as child of the Layout will behave as described in the
9978     * part description where they were added. There are 3 possible types of
9979     * parts where a child can be added:
9980     *
9981     * @section secContent Content (SWALLOW part)
9982     *
9983     * Only one object can be added to the @c SWALLOW part (but you still can
9984     * have many @c SWALLOW parts and one object on each of them). Use the @c
9985     * elm_object_content_set/get/unset functions to set, retrieve and unset
9986     * objects as content of the @c SWALLOW. After being set to this part, the
9987     * object size, position, visibility, clipping and other description
9988     * properties will be totally controlled by the description of the given part
9989     * (inside the Edje theme file).
9990     *
9991     * One can use @c evas_object_size_hint_* functions on the child to have some
9992     * kind of control over its behavior, but the resulting behavior will still
9993     * depend heavily on the @c SWALLOW part description.
9994     *
9995     * The Edje theme also can change the part description, based on signals or
9996     * scripts running inside the theme. This change can also be animated. All of
9997     * this will affect the child object set as content accordingly. The object
9998     * size will be changed if the part size is changed, it will animate move if
9999     * the part is moving, and so on.
10000     *
10001     * The following picture demonstrates a Layout widget with a child object
10002     * added to its @c SWALLOW:
10003     *
10004     * @image html layout_swallow.png
10005     * @image latex layout_swallow.eps width=\textwidth
10006     *
10007     * @section secBox Box (BOX part)
10008     *
10009     * An Edje @c BOX part is very similar to the Elementary @ref Box widget. It
10010     * allows one to add objects to the box and have them distributed along its
10011     * area, accordingly to the specified @a layout property (now by @a layout we
10012     * mean the chosen layouting design of the Box, not the Layout widget
10013     * itself).
10014     *
10015     * A similar effect for having a box with its position, size and other things
10016     * controlled by the Layout theme would be to create an Elementary @ref Box
10017     * widget and add it as a Content in the @c SWALLOW part.
10018     *
10019     * The main difference of using the Layout Box is that its behavior, the box
10020     * properties like layouting format, padding, align, etc. will be all
10021     * controlled by the theme. This means, for example, that a signal could be
10022     * sent to the Layout theme (with elm_object_signal_emit()) and the theme
10023     * handled the signal by changing the box padding, or align, or both. Using
10024     * the Elementary @ref Box widget is not necessarily harder or easier, it
10025     * just depends on the circunstances and requirements.
10026     *
10027     * The Layout Box can be used through the @c elm_layout_box_* set of
10028     * functions.
10029     *
10030     * The following picture demonstrates a Layout widget with many child objects
10031     * added to its @c BOX part:
10032     *
10033     * @image html layout_box.png
10034     * @image latex layout_box.eps width=\textwidth
10035     *
10036     * @section secTable Table (TABLE part)
10037     *
10038     * Just like the @ref secBox, the Layout Table is very similar to the
10039     * Elementary @ref Table widget. It allows one to add objects to the Table
10040     * specifying the row and column where the object should be added, and any
10041     * column or row span if necessary.
10042     *
10043     * Again, we could have this design by adding a @ref Table widget to the @c
10044     * SWALLOW part using elm_object_part_content_set(). The same difference happens
10045     * here when choosing to use the Layout Table (a @c TABLE part) instead of
10046     * the @ref Table plus @c SWALLOW part. It's just a matter of convenience.
10047     *
10048     * The Layout Table can be used through the @c elm_layout_table_* set of
10049     * functions.
10050     *
10051     * The following picture demonstrates a Layout widget with many child objects
10052     * added to its @c TABLE part:
10053     *
10054     * @image html layout_table.png
10055     * @image latex layout_table.eps width=\textwidth
10056     *
10057     * @section secPredef Predefined Layouts
10058     *
10059     * Another interesting thing about the Layout widget is that it offers some
10060     * predefined themes that come with the default Elementary theme. These
10061     * themes can be set by the call elm_layout_theme_set(), and provide some
10062     * basic functionality depending on the theme used.
10063     *
10064     * Most of them already send some signals, some already provide a toolbar or
10065     * back and next buttons.
10066     *
10067     * These are available predefined theme layouts. All of them have class = @c
10068     * layout, group = @c application, and style = one of the following options:
10069     *
10070     * @li @c toolbar-content - application with toolbar and main content area
10071     * @li @c toolbar-content-back - application with toolbar and main content
10072     * area with a back button and title area
10073     * @li @c toolbar-content-back-next - application with toolbar and main
10074     * content area with a back and next buttons and title area
10075     * @li @c content-back - application with a main content area with a back
10076     * button and title area
10077     * @li @c content-back-next - application with a main content area with a
10078     * back and next buttons and title area
10079     * @li @c toolbar-vbox - application with toolbar and main content area as a
10080     * vertical box
10081     * @li @c toolbar-table - application with toolbar and main content area as a
10082     * table
10083     *
10084     * @section secExamples Examples
10085     *
10086     * Some examples of the Layout widget can be found here:
10087     * @li @ref layout_example_01
10088     * @li @ref layout_example_02
10089     * @li @ref layout_example_03
10090     * @li @ref layout_example_edc
10091     *
10092     */
10093
10094    /**
10095     * Add a new layout to the parent
10096     *
10097     * @param parent The parent object
10098     * @return The new object or NULL if it cannot be created
10099     *
10100     * @see elm_layout_file_set()
10101     * @see elm_layout_theme_set()
10102     *
10103     * @ingroup Layout
10104     */
10105    EAPI Evas_Object       *elm_layout_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10106    /**
10107     * Set the file that will be used as layout
10108     *
10109     * @param obj The layout object
10110     * @param file The path to file (edj) that will be used as layout
10111     * @param group The group that the layout belongs in edje file
10112     *
10113     * @return (1 = success, 0 = error)
10114     *
10115     * @ingroup Layout
10116     */
10117    EAPI Eina_Bool          elm_layout_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
10118    /**
10119     * Set the edje group from the elementary theme that will be used as layout
10120     *
10121     * @param obj The layout object
10122     * @param clas the clas of the group
10123     * @param group the group
10124     * @param style the style to used
10125     *
10126     * @return (1 = success, 0 = error)
10127     *
10128     * @ingroup Layout
10129     */
10130    EAPI Eina_Bool          elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, const char *style) EINA_ARG_NONNULL(1);
10131    /**
10132     * Set the layout content.
10133     *
10134     * @param obj The layout object
10135     * @param swallow The swallow part name in the edje file
10136     * @param content The child that will be added in this layout object
10137     *
10138     * Once the content object is set, a previously set one will be deleted.
10139     * If you want to keep that old content object, use the
10140     * elm_object_part_content_unset() function.
10141     *
10142     * @note In an Edje theme, the part used as a content container is called @c
10143     * SWALLOW. This is why the parameter name is called @p swallow, but it is
10144     * expected to be a part name just like the second parameter of
10145     * elm_layout_box_append().
10146     *
10147     * @see elm_layout_box_append()
10148     * @see elm_object_part_content_get()
10149     * @see elm_object_part_content_unset()
10150     * @see @ref secBox
10151     * @deprecated use elm_object_part_content_set() instead
10152     *
10153     * @ingroup Layout
10154     */
10155    EINA_DEPRECATED EAPI void               elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
10156    /**
10157     * Get the child object in the given content part.
10158     *
10159     * @param obj The layout object
10160     * @param swallow The SWALLOW part to get its content
10161     *
10162     * @return The swallowed object or NULL if none or an error occurred
10163     *
10164     * @deprecated use elm_object_part_content_get() instead
10165     *
10166     * @ingroup Layout
10167     */
10168    EINA_DEPRECATED EAPI Evas_Object       *elm_layout_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10169    /**
10170     * Unset the layout content.
10171     *
10172     * @param obj The layout object
10173     * @param swallow The swallow part name in the edje file
10174     * @return The content that was being used
10175     *
10176     * Unparent and return the content object which was set for this part.
10177     *
10178     * @deprecated use elm_object_part_content_unset() instead
10179     *
10180     * @ingroup Layout
10181     */
10182    EINA_DEPRECATED EAPI Evas_Object       *elm_layout_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10183    /**
10184     * Set the text of the given part
10185     *
10186     * @param obj The layout object
10187     * @param part The TEXT part where to set the text
10188     * @param text The text to set
10189     *
10190     * @ingroup Layout
10191     * @deprecated use elm_object_part_text_set() instead.
10192     */
10193    EINA_DEPRECATED EAPI void               elm_layout_text_set(Evas_Object *obj, const char *part, const char *text) EINA_ARG_NONNULL(1);
10194    /**
10195     * Get the text set in the given part
10196     *
10197     * @param obj The layout object
10198     * @param part The TEXT part to retrieve the text off
10199     *
10200     * @return The text set in @p part
10201     *
10202     * @ingroup Layout
10203     * @deprecated use elm_object_part_text_get() instead.
10204     */
10205    EINA_DEPRECATED EAPI const char        *elm_layout_text_get(const Evas_Object *obj, const char *part) EINA_ARG_NONNULL(1);
10206    /**
10207     * Append child to layout box part.
10208     *
10209     * @param obj the layout object
10210     * @param part the box part to which the object will be appended.
10211     * @param child the child object to append to box.
10212     *
10213     * Once the object is appended, it will become child of the layout. Its
10214     * lifetime will be bound to the layout, whenever the layout dies the child
10215     * will be deleted automatically. One should use elm_layout_box_remove() to
10216     * make this layout forget about the object.
10217     *
10218     * @see elm_layout_box_prepend()
10219     * @see elm_layout_box_insert_before()
10220     * @see elm_layout_box_insert_at()
10221     * @see elm_layout_box_remove()
10222     *
10223     * @ingroup Layout
10224     */
10225    EAPI void               elm_layout_box_append(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
10226    /**
10227     * Prepend child to layout box part.
10228     *
10229     * @param obj the layout object
10230     * @param part the box part to prepend.
10231     * @param child the child object to prepend to box.
10232     *
10233     * Once the object is prepended, it will become child of the layout. Its
10234     * lifetime will be bound to the layout, whenever the layout dies the child
10235     * will be deleted automatically. One should use elm_layout_box_remove() to
10236     * make this layout forget about the object.
10237     *
10238     * @see elm_layout_box_append()
10239     * @see elm_layout_box_insert_before()
10240     * @see elm_layout_box_insert_at()
10241     * @see elm_layout_box_remove()
10242     *
10243     * @ingroup Layout
10244     */
10245    EAPI void               elm_layout_box_prepend(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
10246    /**
10247     * Insert child to layout box part before a reference object.
10248     *
10249     * @param obj the layout object
10250     * @param part the box part to insert.
10251     * @param child the child object to insert into box.
10252     * @param reference another reference object to insert before in box.
10253     *
10254     * Once the object is inserted, it will become child of the layout. Its
10255     * lifetime will be bound to the layout, whenever the layout dies the child
10256     * will be deleted automatically. One should use elm_layout_box_remove() to
10257     * make this layout forget about the object.
10258     *
10259     * @see elm_layout_box_append()
10260     * @see elm_layout_box_prepend()
10261     * @see elm_layout_box_insert_before()
10262     * @see elm_layout_box_remove()
10263     *
10264     * @ingroup Layout
10265     */
10266    EAPI void               elm_layout_box_insert_before(Evas_Object *obj, const char *part, Evas_Object *child, const Evas_Object *reference) EINA_ARG_NONNULL(1);
10267    /**
10268     * Insert child to layout box part at a given position.
10269     *
10270     * @param obj the layout object
10271     * @param part the box part to insert.
10272     * @param child the child object to insert into box.
10273     * @param pos the numeric position >=0 to insert the child.
10274     *
10275     * Once the object is inserted, it will become child of the layout. Its
10276     * lifetime will be bound to the layout, whenever the layout dies the child
10277     * will be deleted automatically. One should use elm_layout_box_remove() to
10278     * make this layout forget about the object.
10279     *
10280     * @see elm_layout_box_append()
10281     * @see elm_layout_box_prepend()
10282     * @see elm_layout_box_insert_before()
10283     * @see elm_layout_box_remove()
10284     *
10285     * @ingroup Layout
10286     */
10287    EAPI void               elm_layout_box_insert_at(Evas_Object *obj, const char *part, Evas_Object *child, unsigned int pos) EINA_ARG_NONNULL(1);
10288    /**
10289     * Remove a child of the given part box.
10290     *
10291     * @param obj The layout object
10292     * @param part The box part name to remove child.
10293     * @param child The object to remove from box.
10294     * @return The object that was being used, or NULL if not found.
10295     *
10296     * The object will be removed from the box part and its lifetime will
10297     * not be handled by the layout anymore. This is equivalent to
10298     * elm_object_part_content_unset() for box.
10299     *
10300     * @see elm_layout_box_append()
10301     * @see elm_layout_box_remove_all()
10302     *
10303     * @ingroup Layout
10304     */
10305    EAPI Evas_Object       *elm_layout_box_remove(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1, 2, 3);
10306    /**
10307     * Remove all children of the given part box.
10308     *
10309     * @param obj The layout object
10310     * @param part The box part name to remove child.
10311     * @param clear If EINA_TRUE, then all objects will be deleted as
10312     *        well, otherwise they will just be removed and will be
10313     *        dangling on the canvas.
10314     *
10315     * The objects will be removed from the box part and their lifetime will
10316     * not be handled by the layout anymore. This is equivalent to
10317     * elm_layout_box_remove() for all box children.
10318     *
10319     * @see elm_layout_box_append()
10320     * @see elm_layout_box_remove()
10321     *
10322     * @ingroup Layout
10323     */
10324    EAPI void               elm_layout_box_remove_all(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
10325    /**
10326     * Insert child to layout table part.
10327     *
10328     * @param obj the layout object
10329     * @param part the box part to pack child.
10330     * @param child_obj the child object to pack into table.
10331     * @param col the column to which the child should be added. (>= 0)
10332     * @param row the row to which the child should be added. (>= 0)
10333     * @param colspan how many columns should be used to store this object. (>=
10334     *        1)
10335     * @param rowspan how many rows should be used to store this object. (>= 1)
10336     *
10337     * Once the object is inserted, it will become child of the table. Its
10338     * lifetime will be bound to the layout, and whenever the layout dies the
10339     * child will be deleted automatically. One should use
10340     * elm_layout_table_remove() to make this layout forget about the object.
10341     *
10342     * If @p colspan or @p rowspan are bigger than 1, that object will occupy
10343     * more space than a single cell. For instance, the following code:
10344     * @code
10345     * elm_layout_table_pack(layout, "table_part", child, 0, 1, 3, 1);
10346     * @endcode
10347     *
10348     * Would result in an object being added like the following picture:
10349     *
10350     * @image html layout_colspan.png
10351     * @image latex layout_colspan.eps width=\textwidth
10352     *
10353     * @see elm_layout_table_unpack()
10354     * @see elm_layout_table_clear()
10355     *
10356     * @ingroup Layout
10357     */
10358    EAPI void               elm_layout_table_pack(Evas_Object *obj, const char *part, Evas_Object *child_obj, unsigned short col, unsigned short row, unsigned short colspan, unsigned short rowspan) EINA_ARG_NONNULL(1);
10359    /**
10360     * Unpack (remove) a child of the given part table.
10361     *
10362     * @param obj The layout object
10363     * @param part The table part name to remove child.
10364     * @param child_obj The object to remove from table.
10365     * @return The object that was being used, or NULL if not found.
10366     *
10367     * The object will be unpacked from the table part and its lifetime
10368     * will not be handled by the layout anymore. This is equivalent to
10369     * elm_object_part_content_unset() for table.
10370     *
10371     * @see elm_layout_table_pack()
10372     * @see elm_layout_table_clear()
10373     *
10374     * @ingroup Layout
10375     */
10376    EAPI Evas_Object       *elm_layout_table_unpack(Evas_Object *obj, const char *part, Evas_Object *child_obj) EINA_ARG_NONNULL(1, 2, 3);
10377    /**
10378     * Remove all the child objects of the given part table.
10379     *
10380     * @param obj The layout object
10381     * @param part The table part name to remove child.
10382     * @param clear If EINA_TRUE, then all objects will be deleted as
10383     *        well, otherwise they will just be removed and will be
10384     *        dangling on the canvas.
10385     *
10386     * The objects will be removed from the table part and their lifetime will
10387     * not be handled by the layout anymore. This is equivalent to
10388     * elm_layout_table_unpack() for all table children.
10389     *
10390     * @see elm_layout_table_pack()
10391     * @see elm_layout_table_unpack()
10392     *
10393     * @ingroup Layout
10394     */
10395    EAPI void               elm_layout_table_clear(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
10396    /**
10397     * Get the edje layout
10398     *
10399     * @param obj The layout object
10400     *
10401     * @return A Evas_Object with the edje layout settings loaded
10402     * with function elm_layout_file_set
10403     *
10404     * This returns the edje object. It is not expected to be used to then
10405     * swallow objects via edje_object_part_swallow() for example. Use
10406     * elm_object_part_content_set() instead so child object handling and sizing is
10407     * done properly.
10408     *
10409     * @note This function should only be used if you really need to call some
10410     * low level Edje function on this edje object. All the common stuff (setting
10411     * text, emitting signals, hooking callbacks to signals, etc.) can be done
10412     * with proper elementary functions.
10413     *
10414     * @see elm_object_signal_callback_add()
10415     * @see elm_object_signal_emit()
10416     * @see elm_object_part_text_set()
10417     * @see elm_object_part_content_set()
10418     * @see elm_layout_box_append()
10419     * @see elm_layout_table_pack()
10420     * @see elm_layout_data_get()
10421     *
10422     * @ingroup Layout
10423     */
10424    EAPI Evas_Object       *elm_layout_edje_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10425    /**
10426     * Get the edje data from the given layout
10427     *
10428     * @param obj The layout object
10429     * @param key The data key
10430     *
10431     * @return The edje data string
10432     *
10433     * This function fetches data specified inside the edje theme of this layout.
10434     * This function return NULL if data is not found.
10435     *
10436     * In EDC this comes from a data block within the group block that @p
10437     * obj was loaded from. E.g.
10438     *
10439     * @code
10440     * collections {
10441     *   group {
10442     *     name: "a_group";
10443     *     data {
10444     *       item: "key1" "value1";
10445     *       item: "key2" "value2";
10446     *     }
10447     *   }
10448     * }
10449     * @endcode
10450     *
10451     * @ingroup Layout
10452     */
10453    EAPI const char        *elm_layout_data_get(const Evas_Object *obj, const char *key) EINA_ARG_NONNULL(1, 2);
10454    /**
10455     * Eval sizing
10456     *
10457     * @param obj The layout object
10458     *
10459     * Manually forces a sizing re-evaluation. This is useful when the minimum
10460     * size required by the edje theme of this layout has changed. The change on
10461     * the minimum size required by the edje theme is not immediately reported to
10462     * the elementary layout, so one needs to call this function in order to tell
10463     * the widget (layout) that it needs to reevaluate its own size.
10464     *
10465     * The minimum size of the theme is calculated based on minimum size of
10466     * parts, the size of elements inside containers like box and table, etc. All
10467     * of this can change due to state changes, and that's when this function
10468     * should be called.
10469     *
10470     * Also note that a standard signal of "size,eval" "elm" emitted from the
10471     * edje object will cause this to happen too.
10472     *
10473     * @ingroup Layout
10474     */
10475    EAPI void               elm_layout_sizing_eval(Evas_Object *obj) EINA_ARG_NONNULL(1);
10476
10477    /**
10478     * Sets a specific cursor for an edje part.
10479     *
10480     * @param obj The layout object.
10481     * @param part_name a part from loaded edje group.
10482     * @param cursor cursor name to use, see Elementary_Cursor.h
10483     *
10484     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10485     *         part not exists or it has "mouse_events: 0".
10486     *
10487     * @ingroup Layout
10488     */
10489    EAPI Eina_Bool          elm_layout_part_cursor_set(Evas_Object *obj, const char *part_name, const char *cursor) EINA_ARG_NONNULL(1, 2);
10490
10491    /**
10492     * Get the cursor to be shown when mouse is over an edje part
10493     *
10494     * @param obj The layout object.
10495     * @param part_name a part from loaded edje group.
10496     * @return the cursor name.
10497     *
10498     * @ingroup Layout
10499     */
10500    EAPI const char        *elm_layout_part_cursor_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10501
10502    /**
10503     * Unsets a cursor previously set with elm_layout_part_cursor_set().
10504     *
10505     * @param obj The layout object.
10506     * @param part_name a part from loaded edje group, that had a cursor set
10507     *        with elm_layout_part_cursor_set().
10508     *
10509     * @ingroup Layout
10510     */
10511    EAPI void               elm_layout_part_cursor_unset(Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10512
10513    /**
10514     * Sets a specific cursor style for an edje part.
10515     *
10516     * @param obj The layout object.
10517     * @param part_name a part from loaded edje group.
10518     * @param style the theme style to use (default, transparent, ...)
10519     *
10520     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10521     *         part not exists or it did not had a cursor set.
10522     *
10523     * @ingroup Layout
10524     */
10525    EAPI Eina_Bool          elm_layout_part_cursor_style_set(Evas_Object *obj, const char *part_name, const char *style) EINA_ARG_NONNULL(1, 2);
10526
10527    /**
10528     * Gets a specific cursor style for an edje part.
10529     *
10530     * @param obj The layout object.
10531     * @param part_name a part from loaded edje group.
10532     *
10533     * @return the theme style in use, defaults to "default". If the
10534     *         object does not have a cursor set, then NULL is returned.
10535     *
10536     * @ingroup Layout
10537     */
10538    EAPI const char        *elm_layout_part_cursor_style_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10539
10540    /**
10541     * Sets if the cursor set should be searched on the theme or should use
10542     * the provided by the engine, only.
10543     *
10544     * @note before you set if should look on theme you should define a
10545     * cursor with elm_layout_part_cursor_set(). By default it will only
10546     * look for cursors provided by the engine.
10547     *
10548     * @param obj The layout object.
10549     * @param part_name a part from loaded edje group.
10550     * @param engine_only if cursors should be just provided by the engine (EINA_TRUE)
10551     *        or should also search on widget's theme as well (EINA_FALSE)
10552     *
10553     * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10554     *         part not exists or it did not had a cursor set.
10555     *
10556     * @ingroup Layout
10557     */
10558    EAPI Eina_Bool          elm_layout_part_cursor_engine_only_set(Evas_Object *obj, const char *part_name, Eina_Bool engine_only) EINA_ARG_NONNULL(1, 2);
10559
10560    /**
10561     * Gets a specific cursor engine_only for an edje part.
10562     *
10563     * @param obj The layout object.
10564     * @param part_name a part from loaded edje group.
10565     *
10566     * @return whenever the cursor is just provided by engine or also from theme.
10567     *
10568     * @ingroup Layout
10569     */
10570    EAPI Eina_Bool          elm_layout_part_cursor_engine_only_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10571
10572 /**
10573  * @def elm_layout_icon_set
10574  * Convenience macro to set the icon object in a layout that follows the
10575  * Elementary naming convention for its parts.
10576  *
10577  * @ingroup Layout
10578  */
10579 #define elm_layout_icon_set(_ly, _obj) \
10580   do { \
10581     const char *sig; \
10582     elm_object_part_content_set((_ly), "elm.swallow.icon", (_obj)); \
10583     if ((_obj)) sig = "elm,state,icon,visible"; \
10584     else sig = "elm,state,icon,hidden"; \
10585     elm_object_signal_emit((_ly), sig, "elm"); \
10586   } while (0)
10587
10588 /**
10589  * @def elm_layout_icon_get
10590  * Convienience macro to get the icon object from a layout that follows the
10591  * Elementary naming convention for its parts.
10592  *
10593  * @ingroup Layout
10594  */
10595 #define elm_layout_icon_get(_ly) \
10596   elm_object_part_content_get((_ly), "elm.swallow.icon")
10597
10598 /**
10599  * @def elm_layout_end_set
10600  * Convienience macro to set the end object in a layout that follows the
10601  * Elementary naming convention for its parts.
10602  *
10603  * @ingroup Layout
10604  */
10605 #define elm_layout_end_set(_ly, _obj) \
10606   do { \
10607     const char *sig; \
10608     elm_object_part_content_set((_ly), "elm.swallow.end", (_obj)); \
10609     if ((_obj)) sig = "elm,state,end,visible"; \
10610     else sig = "elm,state,end,hidden"; \
10611     elm_object_signal_emit((_ly), sig, "elm"); \
10612   } while (0)
10613
10614 /**
10615  * @def elm_layout_end_get
10616  * Convienience macro to get the end object in a layout that follows the
10617  * Elementary naming convention for its parts.
10618  *
10619  * @ingroup Layout
10620  */
10621 #define elm_layout_end_get(_ly) \
10622   elm_object_part_content_get((_ly), "elm.swallow.end")
10623
10624 /**
10625  * @def elm_layout_label_set
10626  * Convienience macro to set the label in a layout that follows the
10627  * Elementary naming convention for its parts.
10628  *
10629  * @ingroup Layout
10630  * @deprecated use elm_object_text_set() instead.
10631  */
10632 #define elm_layout_label_set(_ly, _txt) \
10633   elm_layout_text_set((_ly), "elm.text", (_txt))
10634
10635 /**
10636  * @def elm_layout_label_get
10637  * Convenience macro to get the label in a layout that follows the
10638  * Elementary naming convention for its parts.
10639  *
10640  * @ingroup Layout
10641  * @deprecated use elm_object_text_set() instead.
10642  */
10643 #define elm_layout_label_get(_ly) \
10644   elm_layout_text_get((_ly), "elm.text")
10645
10646    /* smart callbacks called:
10647     * "theme,changed" - when elm theme is changed.
10648     */
10649
10650    /**
10651     * @defgroup Notify Notify
10652     *
10653     * @image html img/widget/notify/preview-00.png
10654     * @image latex img/widget/notify/preview-00.eps
10655     *
10656     * Display a container in a particular region of the parent(top, bottom,
10657     * etc).  A timeout can be set to automatically hide the notify. This is so
10658     * that, after an evas_object_show() on a notify object, if a timeout was set
10659     * on it, it will @b automatically get hidden after that time.
10660     *
10661     * Signals that you can add callbacks for are:
10662     * @li "timeout" - when timeout happens on notify and it's hidden
10663     * @li "block,clicked" - when a click outside of the notify happens
10664     *
10665     * Default contents parts of the notify widget that you can use for are:
10666     * @li "default" - A content of the notify
10667     *
10668     * @ref tutorial_notify show usage of the API.
10669     *
10670     * @{
10671     */
10672    /**
10673     * @brief Possible orient values for notify.
10674     *
10675     * This values should be used in conjunction to elm_notify_orient_set() to
10676     * set the position in which the notify should appear(relative to its parent)
10677     * and in conjunction with elm_notify_orient_get() to know where the notify
10678     * is appearing.
10679     */
10680    typedef enum _Elm_Notify_Orient
10681      {
10682         ELM_NOTIFY_ORIENT_TOP, /**< Notify should appear in the top of parent, default */
10683         ELM_NOTIFY_ORIENT_CENTER, /**< Notify should appear in the center of parent */
10684         ELM_NOTIFY_ORIENT_BOTTOM, /**< Notify should appear in the bottom of parent */
10685         ELM_NOTIFY_ORIENT_LEFT, /**< Notify should appear in the left of parent */
10686         ELM_NOTIFY_ORIENT_RIGHT, /**< Notify should appear in the right of parent */
10687         ELM_NOTIFY_ORIENT_TOP_LEFT, /**< Notify should appear in the top left of parent */
10688         ELM_NOTIFY_ORIENT_TOP_RIGHT, /**< Notify should appear in the top right of parent */
10689         ELM_NOTIFY_ORIENT_BOTTOM_LEFT, /**< Notify should appear in the bottom left of parent */
10690         ELM_NOTIFY_ORIENT_BOTTOM_RIGHT, /**< Notify should appear in the bottom right of parent */
10691         ELM_NOTIFY_ORIENT_LAST /**< Sentinel value, @b don't use */
10692      } Elm_Notify_Orient;
10693    /**
10694     * @brief Add a new notify to the parent
10695     *
10696     * @param parent The parent object
10697     * @return The new object or NULL if it cannot be created
10698     */
10699    EAPI Evas_Object      *elm_notify_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10700    /**
10701     * @brief Set the content of the notify widget
10702     *
10703     * @param obj The notify object
10704     * @param content The content will be filled in this notify object
10705     *
10706     * Once the content object is set, a previously set one will be deleted. If
10707     * you want to keep that old content object, use the
10708     * elm_notify_content_unset() function.
10709     *
10710     * @deprecated use elm_object_content_set() instead
10711     *
10712     */
10713    EINA_DEPRECATED EAPI void              elm_notify_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
10714    /**
10715     * @brief Unset the content of the notify widget
10716     *
10717     * @param obj The notify object
10718     * @return The content that was being used
10719     *
10720     * Unparent and return the content object which was set for this widget
10721     *
10722     * @see elm_notify_content_set()
10723     * @deprecated use elm_object_content_unset() instead
10724     *
10725     */
10726    EINA_DEPRECATED EAPI Evas_Object      *elm_notify_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
10727    /**
10728     * @brief Return the content of the notify widget
10729     *
10730     * @param obj The notify object
10731     * @return The content that is being used
10732     *
10733     * @see elm_notify_content_set()
10734     * @deprecated use elm_object_content_get() instead
10735     *
10736     */
10737    EINA_DEPRECATED EAPI Evas_Object      *elm_notify_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10738    /**
10739     * @brief Set the notify parent
10740     *
10741     * @param obj The notify object
10742     * @param content The new parent
10743     *
10744     * Once the parent object is set, a previously set one will be disconnected
10745     * and replaced.
10746     */
10747    EAPI void              elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10748    /**
10749     * @brief Get the notify parent
10750     *
10751     * @param obj The notify object
10752     * @return The parent
10753     *
10754     * @see elm_notify_parent_set()
10755     */
10756    EAPI Evas_Object      *elm_notify_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10757    /**
10758     * @brief Set the orientation
10759     *
10760     * @param obj The notify object
10761     * @param orient The new orientation
10762     *
10763     * Sets the position in which the notify will appear in its parent.
10764     *
10765     * @see @ref Elm_Notify_Orient for possible values.
10766     */
10767    EAPI void              elm_notify_orient_set(Evas_Object *obj, Elm_Notify_Orient orient) EINA_ARG_NONNULL(1);
10768    /**
10769     * @brief Return the orientation
10770     * @param obj The notify object
10771     * @return The orientation of the notification
10772     *
10773     * @see elm_notify_orient_set()
10774     * @see Elm_Notify_Orient
10775     */
10776    EAPI Elm_Notify_Orient elm_notify_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10777    /**
10778     * @brief Set the time interval after which the notify window is going to be
10779     * hidden.
10780     *
10781     * @param obj The notify object
10782     * @param time The timeout in seconds
10783     *
10784     * This function sets a timeout and starts the timer controlling when the
10785     * notify is hidden. Since calling evas_object_show() on a notify restarts
10786     * the timer controlling when the notify is hidden, setting this before the
10787     * notify is shown will in effect mean starting the timer when the notify is
10788     * shown.
10789     *
10790     * @note Set a value <= 0.0 to disable a running timer.
10791     *
10792     * @note If the value > 0.0 and the notify is previously visible, the
10793     * timer will be started with this value, canceling any running timer.
10794     */
10795    EAPI void              elm_notify_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
10796    /**
10797     * @brief Return the timeout value (in seconds)
10798     * @param obj the notify object
10799     *
10800     * @see elm_notify_timeout_set()
10801     */
10802    EAPI double            elm_notify_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10803    /**
10804     * @brief Sets whether events should be passed to by a click outside
10805     * its area.
10806     *
10807     * @param obj The notify object
10808     * @param repeats EINA_TRUE Events are repeats, else no
10809     *
10810     * When true if the user clicks outside the window the events will be caught
10811     * by the others widgets, else the events are blocked.
10812     *
10813     * @note The default value is EINA_TRUE.
10814     */
10815    EAPI void              elm_notify_repeat_events_set(Evas_Object *obj, Eina_Bool repeat) EINA_ARG_NONNULL(1);
10816    /**
10817     * @brief Return true if events are repeat below the notify object
10818     * @param obj the notify object
10819     *
10820     * @see elm_notify_repeat_events_set()
10821     */
10822    EAPI Eina_Bool         elm_notify_repeat_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10823    /**
10824     * @}
10825     */
10826
10827    /**
10828     * @defgroup Hover Hover
10829     *
10830     * @image html img/widget/hover/preview-00.png
10831     * @image latex img/widget/hover/preview-00.eps
10832     *
10833     * A Hover object will hover over its @p parent object at the @p target
10834     * location. Anything in the background will be given a darker coloring to
10835     * indicate that the hover object is on top (at the default theme). When the
10836     * hover is clicked it is dismissed(hidden), if the contents of the hover are
10837     * clicked that @b doesn't cause the hover to be dismissed.
10838     *
10839     * A Hover object has two parents. One parent that owns it during creation
10840     * and the other parent being the one over which the hover object spans.
10841     *
10842     *
10843     * @note The hover object will take up the entire space of @p target
10844     * object.
10845     *
10846     * Elementary has the following styles for the hover widget:
10847     * @li default
10848     * @li popout
10849     * @li menu
10850     * @li hoversel_vertical
10851     *
10852     * The following are the available position for content:
10853     * @li left
10854     * @li top-left
10855     * @li top
10856     * @li top-right
10857     * @li right
10858     * @li bottom-right
10859     * @li bottom
10860     * @li bottom-left
10861     * @li middle
10862     * @li smart
10863     *
10864     * Signals that you can add callbacks for are:
10865     * @li "clicked" - the user clicked the empty space in the hover to dismiss
10866     * @li "smart,changed" - a content object placed under the "smart"
10867     *                   policy was replaced to a new slot direction.
10868     *
10869     * See @ref tutorial_hover for more information.
10870     *
10871     * @{
10872     */
10873    typedef enum _Elm_Hover_Axis
10874      {
10875         ELM_HOVER_AXIS_NONE, /**< ELM_HOVER_AXIS_NONE -- no prefered orientation */
10876         ELM_HOVER_AXIS_HORIZONTAL, /**< ELM_HOVER_AXIS_HORIZONTAL -- horizontal */
10877         ELM_HOVER_AXIS_VERTICAL, /**< ELM_HOVER_AXIS_VERTICAL -- vertical */
10878         ELM_HOVER_AXIS_BOTH /**< ELM_HOVER_AXIS_BOTH -- both */
10879      } Elm_Hover_Axis;
10880    /**
10881     * @brief Adds a hover object to @p parent
10882     *
10883     * @param parent The parent object
10884     * @return The hover object or NULL if one could not be created
10885     */
10886    EAPI Evas_Object *elm_hover_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10887    /**
10888     * @brief Sets the target object for the hover.
10889     *
10890     * @param obj The hover object
10891     * @param target The object to center the hover onto.
10892     *
10893     * This function will cause the hover to be centered on the target object.
10894     */
10895    EAPI void         elm_hover_target_set(Evas_Object *obj, Evas_Object *target) EINA_ARG_NONNULL(1);
10896    /**
10897     * @brief Gets the target object for the hover.
10898     *
10899     * @param obj The hover object
10900     * @return The target object for the hover.
10901     *
10902     * @see elm_hover_target_set()
10903     */
10904    EAPI Evas_Object *elm_hover_target_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10905    /**
10906     * @brief Sets the parent object for the hover.
10907     *
10908     * @param obj The hover object
10909     * @param parent The object to locate the hover over.
10910     *
10911     * This function will cause the hover to take up the entire space that the
10912     * parent object fills.
10913     */
10914    EAPI void         elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10915    /**
10916     * @brief Gets the parent object for the hover.
10917     *
10918     * @param obj The hover object
10919     * @return The parent object to locate the hover over.
10920     *
10921     * @see elm_hover_parent_set()
10922     */
10923    EAPI Evas_Object *elm_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10924    /**
10925     * @brief Sets the content of the hover object and the direction in which it
10926     * will pop out.
10927     *
10928     * @param obj The hover object
10929     * @param swallow The direction that the object will be displayed
10930     * at. Accepted values are "left", "top-left", "top", "top-right",
10931     * "right", "bottom-right", "bottom", "bottom-left", "middle" and
10932     * "smart".
10933     * @param content The content to place at @p swallow
10934     *
10935     * Once the content object is set for a given direction, a previously
10936     * set one (on the same direction) will be deleted. If you want to
10937     * keep that old content object, use the elm_hover_content_unset()
10938     * function.
10939     *
10940     * All directions may have contents at the same time, except for
10941     * "smart". This is a special placement hint and its use case
10942     * independs of the calculations coming from
10943     * elm_hover_best_content_location_get(). Its use is for cases when
10944     * one desires only one hover content, but with a dynamic special
10945     * placement within the hover area. The content's geometry, whenever
10946     * it changes, will be used to decide on a best location, not
10947     * extrapolating the hover's parent object view to show it in (still
10948     * being the hover's target determinant of its medium part -- move and
10949     * resize it to simulate finger sizes, for example). If one of the
10950     * directions other than "smart" are used, a previously content set
10951     * using it will be deleted, and vice-versa.
10952     */
10953    EAPI void         elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
10954    /**
10955     * @brief Get the content of the hover object, in a given direction.
10956     *
10957     * Return the content object which was set for this widget in the
10958     * @p swallow direction.
10959     *
10960     * @param obj The hover object
10961     * @param swallow The direction that the object was display at.
10962     * @return The content that was being used
10963     *
10964     * @see elm_hover_content_set()
10965     */
10966    EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10967    /**
10968     * @brief Unset the content of the hover object, in a given direction.
10969     *
10970     * Unparent and return the content object set at @p swallow direction.
10971     *
10972     * @param obj The hover object
10973     * @param swallow The direction that the object was display at.
10974     * @return The content that was being used.
10975     *
10976     * @see elm_hover_content_set()
10977     */
10978    EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10979    /**
10980     * @brief Returns the best swallow location for content in the hover.
10981     *
10982     * @param obj The hover object
10983     * @param pref_axis The preferred orientation axis for the hover object to use
10984     * @return The edje location to place content into the hover or @c
10985     *         NULL, on errors.
10986     *
10987     * Best is defined here as the location at which there is the most available
10988     * space.
10989     *
10990     * @p pref_axis may be one of
10991     * - @c ELM_HOVER_AXIS_NONE -- no prefered orientation
10992     * - @c ELM_HOVER_AXIS_HORIZONTAL -- horizontal
10993     * - @c ELM_HOVER_AXIS_VERTICAL -- vertical
10994     * - @c ELM_HOVER_AXIS_BOTH -- both
10995     *
10996     * If ELM_HOVER_AXIS_HORIZONTAL is choosen the returned position will
10997     * nescessarily be along the horizontal axis("left" or "right"). If
10998     * ELM_HOVER_AXIS_VERTICAL is choosen the returned position will nescessarily
10999     * be along the vertical axis("top" or "bottom"). Chossing
11000     * ELM_HOVER_AXIS_BOTH or ELM_HOVER_AXIS_NONE has the same effect and the
11001     * returned position may be in either axis.
11002     *
11003     * @see elm_hover_content_set()
11004     */
11005    EAPI const char  *elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis) EINA_ARG_NONNULL(1);
11006    /**
11007     * @}
11008     */
11009
11010    /* entry */
11011    /**
11012     * @defgroup Entry Entry
11013     *
11014     * @image html img/widget/entry/preview-00.png
11015     * @image latex img/widget/entry/preview-00.eps width=\textwidth
11016     * @image html img/widget/entry/preview-01.png
11017     * @image latex img/widget/entry/preview-01.eps width=\textwidth
11018     * @image html img/widget/entry/preview-02.png
11019     * @image latex img/widget/entry/preview-02.eps width=\textwidth
11020     * @image html img/widget/entry/preview-03.png
11021     * @image latex img/widget/entry/preview-03.eps width=\textwidth
11022     *
11023     * An entry is a convenience widget which shows a box that the user can
11024     * enter text into. Entries by default don't scroll, so they grow to
11025     * accomodate the entire text, resizing the parent window as needed. This
11026     * can be changed with the elm_entry_scrollable_set() function.
11027     *
11028     * They can also be single line or multi line (the default) and when set
11029     * to multi line mode they support text wrapping in any of the modes
11030     * indicated by #Elm_Wrap_Type.
11031     *
11032     * Other features include password mode, filtering of inserted text with
11033     * elm_entry_text_filter_append() and related functions, inline "items" and
11034     * formatted markup text.
11035     *
11036     * @section entry-markup Formatted text
11037     *
11038     * The markup tags supported by the Entry are defined by the theme, but
11039     * even when writing new themes or extensions it's a good idea to stick to
11040     * a sane default, to maintain coherency and avoid application breakages.
11041     * Currently defined by the default theme are the following tags:
11042     * @li \<br\>: Inserts a line break.
11043     * @li \<ps\>: Inserts a paragraph separator. This is preferred over line
11044     * breaks.
11045     * @li \<tab\>: Inserts a tab.
11046     * @li \<em\>...\</em\>: Emphasis. Sets the @em oblique style for the
11047     * enclosed text.
11048     * @li \<b\>...\</b\>: Sets the @b bold style for the enclosed text.
11049     * @li \<link\>...\</link\>: Underlines the enclosed text.
11050     * @li \<hilight\>...\</hilight\>: Hilights the enclosed text.
11051     *
11052     * @section entry-special Special markups
11053     *
11054     * Besides those used to format text, entries support two special markup
11055     * tags used to insert clickable portions of text or items inlined within
11056     * the text.
11057     *
11058     * @subsection entry-anchors Anchors
11059     *
11060     * Anchors are similar to HTML anchors. Text can be surrounded by \<a\> and
11061     * \</a\> tags and an event will be generated when this text is clicked,
11062     * like this:
11063     *
11064     * @code
11065     * This text is outside <a href=anc-01>but this one is an anchor</a>
11066     * @endcode
11067     *
11068     * The @c href attribute in the opening tag gives the name that will be
11069     * used to identify the anchor and it can be any valid utf8 string.
11070     *
11071     * When an anchor is clicked, an @c "anchor,clicked" signal is emitted with
11072     * an #Elm_Entry_Anchor_Info in the @c event_info parameter for the
11073     * callback function. The same applies for "anchor,in" (mouse in), "anchor,out"
11074     * (mouse out), "anchor,down" (mouse down), and "anchor,up" (mouse up) events on
11075     * an anchor.
11076     *
11077     * @subsection entry-items Items
11078     *
11079     * Inlined in the text, any other @c Evas_Object can be inserted by using
11080     * \<item\> tags this way:
11081     *
11082     * @code
11083     * <item size=16x16 vsize=full href=emoticon/haha></item>
11084     * @endcode
11085     *
11086     * Just like with anchors, the @c href identifies each item, but these need,
11087     * in addition, to indicate their size, which is done using any one of
11088     * @c size, @c absize or @c relsize attributes. These attributes take their
11089     * value in the WxH format, where W is the width and H the height of the
11090     * item.
11091     *
11092     * @li absize: Absolute pixel size for the item. Whatever value is set will
11093     * be the item's size regardless of any scale value the object may have
11094     * been set to. The final line height will be adjusted to fit larger items.
11095     * @li size: Similar to @c absize, but it's adjusted to the scale value set
11096     * for the object.
11097     * @li relsize: Size is adjusted for the item to fit within the current
11098     * line height.
11099     *
11100     * Besides their size, items are specificed a @c vsize value that affects
11101     * how their final size and position are calculated. The possible values
11102     * are:
11103     * @li ascent: Item will be placed within the line's baseline and its
11104     * ascent. That is, the height between the line where all characters are
11105     * positioned and the highest point in the line. For @c size and @c absize
11106     * items, the descent value will be added to the total line height to make
11107     * them fit. @c relsize items will be adjusted to fit within this space.
11108     * @li full: Items will be placed between the descent and ascent, or the
11109     * lowest point in the line and its highest.
11110     *
11111     * The next image shows different configurations of items and how
11112     * the previously mentioned options affect their sizes. In all cases,
11113     * the green line indicates the ascent, blue for the baseline and red for
11114     * the descent.
11115     *
11116     * @image html entry_item.png
11117     * @image latex entry_item.eps width=\textwidth
11118     *
11119     * And another one to show how size differs from absize. In the first one,
11120     * the scale value is set to 1.0, while the second one is using one of 2.0.
11121     *
11122     * @image html entry_item_scale.png
11123     * @image latex entry_item_scale.eps width=\textwidth
11124     *
11125     * After the size for an item is calculated, the entry will request an
11126     * object to place in its space. For this, the functions set with
11127     * elm_entry_item_provider_append() and related functions will be called
11128     * in order until one of them returns a @c non-NULL value. If no providers
11129     * are available, or all of them return @c NULL, then the entry falls back
11130     * to one of the internal defaults, provided the name matches with one of
11131     * them.
11132     *
11133     * All of the following are currently supported:
11134     *
11135     * - emoticon/angry
11136     * - emoticon/angry-shout
11137     * - emoticon/crazy-laugh
11138     * - emoticon/evil-laugh
11139     * - emoticon/evil
11140     * - emoticon/goggle-smile
11141     * - emoticon/grumpy
11142     * - emoticon/grumpy-smile
11143     * - emoticon/guilty
11144     * - emoticon/guilty-smile
11145     * - emoticon/haha
11146     * - emoticon/half-smile
11147     * - emoticon/happy-panting
11148     * - emoticon/happy
11149     * - emoticon/indifferent
11150     * - emoticon/kiss
11151     * - emoticon/knowing-grin
11152     * - emoticon/laugh
11153     * - emoticon/little-bit-sorry
11154     * - emoticon/love-lots
11155     * - emoticon/love
11156     * - emoticon/minimal-smile
11157     * - emoticon/not-happy
11158     * - emoticon/not-impressed
11159     * - emoticon/omg
11160     * - emoticon/opensmile
11161     * - emoticon/smile
11162     * - emoticon/sorry
11163     * - emoticon/squint-laugh
11164     * - emoticon/surprised
11165     * - emoticon/suspicious
11166     * - emoticon/tongue-dangling
11167     * - emoticon/tongue-poke
11168     * - emoticon/uh
11169     * - emoticon/unhappy
11170     * - emoticon/very-sorry
11171     * - emoticon/what
11172     * - emoticon/wink
11173     * - emoticon/worried
11174     * - emoticon/wtf
11175     *
11176     * Alternatively, an item may reference an image by its path, using
11177     * the URI form @c file:///path/to/an/image.png and the entry will then
11178     * use that image for the item.
11179     *
11180     * @section entry-files Loading and saving files
11181     *
11182     * Entries have convinience functions to load text from a file and save
11183     * changes back to it after a short delay. The automatic saving is enabled
11184     * by default, but can be disabled with elm_entry_autosave_set() and files
11185     * can be loaded directly as plain text or have any markup in them
11186     * recognized. See elm_entry_file_set() for more details.
11187     *
11188     * @section entry-signals Emitted signals
11189     *
11190     * This widget emits the following signals:
11191     *
11192     * @li "changed": The text within the entry was changed.
11193     * @li "changed,user": The text within the entry was changed because of user interaction.
11194     * @li "activated": The enter key was pressed on a single line entry.
11195     * @li "press": A mouse button has been pressed on the entry.
11196     * @li "longpressed": A mouse button has been pressed and held for a couple
11197     * seconds.
11198     * @li "clicked": The entry has been clicked (mouse press and release).
11199     * @li "clicked,double": The entry has been double clicked.
11200     * @li "clicked,triple": The entry has been triple clicked.
11201     * @li "focused": The entry has received focus.
11202     * @li "unfocused": The entry has lost focus.
11203     * @li "selection,paste": A paste of the clipboard contents was requested.
11204     * @li "selection,copy": A copy of the selected text into the clipboard was
11205     * requested.
11206     * @li "selection,cut": A cut of the selected text into the clipboard was
11207     * requested.
11208     * @li "selection,start": A selection has begun and no previous selection
11209     * existed.
11210     * @li "selection,changed": The current selection has changed.
11211     * @li "selection,cleared": The current selection has been cleared.
11212     * @li "cursor,changed": The cursor has changed position.
11213     * @li "anchor,clicked": An anchor has been clicked. The event_info
11214     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11215     * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
11216     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11217     * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
11218     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11219     * @li "anchor,up": Mouse button has been unpressed on an anchor. The event_info
11220     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11221     * @li "anchor,down": Mouse button has been pressed on an anchor. The event_info
11222     * parameter for the callback will be an #Elm_Entry_Anchor_Info.
11223     * @li "preedit,changed": The preedit string has changed.
11224     * @li "language,changed": Program language changed.
11225     *
11226     * @section entry-examples
11227     *
11228     * An overview of the Entry API can be seen in @ref entry_example_01
11229     *
11230     * @{
11231     */
11232    /**
11233     * @typedef Elm_Entry_Anchor_Info
11234     *
11235     * The info sent in the callback for the "anchor,clicked" signals emitted
11236     * by entries.
11237     */
11238    typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
11239    /**
11240     * @struct _Elm_Entry_Anchor_Info
11241     *
11242     * The info sent in the callback for the "anchor,clicked" signals emitted
11243     * by entries.
11244     */
11245    struct _Elm_Entry_Anchor_Info
11246      {
11247         const char *name; /**< The name of the anchor, as stated in its href */
11248         int         button; /**< The mouse button used to click on it */
11249         Evas_Coord  x, /**< Anchor geometry, relative to canvas */
11250                     y, /**< Anchor geometry, relative to canvas */
11251                     w, /**< Anchor geometry, relative to canvas */
11252                     h; /**< Anchor geometry, relative to canvas */
11253      };
11254    /**
11255     * @typedef Elm_Entry_Filter_Cb
11256     * This callback type is used by entry filters to modify text.
11257     * @param data The data specified as the last param when adding the filter
11258     * @param entry The entry object
11259     * @param text A pointer to the location of the text being filtered. This data can be modified,
11260     * but any additional allocations must be managed by the user.
11261     * @see elm_entry_text_filter_append
11262     * @see elm_entry_text_filter_prepend
11263     */
11264    typedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text);
11265
11266    /**
11267     * @typedef Elm_Entry_Change_Info
11268     * This corresponds to Edje_Entry_Change_Info. Includes information about
11269     * a change in the entry.
11270     */
11271    typedef Edje_Entry_Change_Info Elm_Entry_Change_Info;
11272
11273
11274    /**
11275     * This adds an entry to @p parent object.
11276     *
11277     * By default, entries are:
11278     * @li not scrolled
11279     * @li multi-line
11280     * @li word wrapped
11281     * @li autosave is enabled
11282     *
11283     * @param parent The parent object
11284     * @return The new object or NULL if it cannot be created
11285     */
11286    EAPI Evas_Object *elm_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11287    /**
11288     * Sets the entry to single line mode.
11289     *
11290     * In single line mode, entries don't ever wrap when the text reaches the
11291     * edge, and instead they keep growing horizontally. Pressing the @c Enter
11292     * key will generate an @c "activate" event instead of adding a new line.
11293     *
11294     * When @p single_line is @c EINA_FALSE, line wrapping takes effect again
11295     * and pressing enter will break the text into a different line
11296     * without generating any events.
11297     *
11298     * @param obj The entry object
11299     * @param single_line If true, the text in the entry
11300     * will be on a single line.
11301     */
11302    EAPI void         elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
11303    /**
11304     * Gets whether the entry is set to be single line.
11305     *
11306     * @param obj The entry object
11307     * @return single_line If true, the text in the entry is set to display
11308     * on a single line.
11309     *
11310     * @see elm_entry_single_line_set()
11311     */
11312    EAPI Eina_Bool    elm_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11313    /**
11314     * Sets the entry to password mode.
11315     *
11316     * In password mode, entries are implicitly single line and the display of
11317     * any text in them is replaced with asterisks (*).
11318     *
11319     * @param obj The entry object
11320     * @param password If true, password mode is enabled.
11321     */
11322    EAPI void         elm_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
11323    /**
11324     * Gets whether the entry is set to password mode.
11325     *
11326     * @param obj The entry object
11327     * @return If true, the entry is set to display all characters
11328     * as asterisks (*).
11329     *
11330     * @see elm_entry_password_set()
11331     */
11332    EAPI Eina_Bool    elm_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11333    /**
11334     * This sets the text displayed within the entry to @p entry.
11335     *
11336     * @param obj The entry object
11337     * @param entry The text to be displayed
11338     *
11339     * @deprecated Use elm_object_text_set() instead.
11340     * @note Using this function bypasses text filters
11341     */
11342    EAPI void         elm_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11343    /**
11344     * This returns the text currently shown in object @p entry.
11345     * See also elm_entry_entry_set().
11346     *
11347     * @param obj The entry object
11348     * @return The currently displayed text or NULL on failure
11349     *
11350     * @deprecated Use elm_object_text_get() instead.
11351     */
11352    EAPI const char  *elm_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11353    /**
11354     * Appends @p entry to the text of the entry.
11355     *
11356     * Adds the text in @p entry to the end of any text already present in the
11357     * widget.
11358     *
11359     * The appended text is subject to any filters set for the widget.
11360     *
11361     * @param obj The entry object
11362     * @param entry The text to be displayed
11363     *
11364     * @see elm_entry_text_filter_append()
11365     */
11366    EAPI void         elm_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11367    /**
11368     * Gets whether the entry is empty.
11369     *
11370     * Empty means no text at all. If there are any markup tags, like an item
11371     * tag for which no provider finds anything, and no text is displayed, this
11372     * function still returns EINA_FALSE.
11373     *
11374     * @param obj The entry object
11375     * @return EINA_TRUE if the entry is empty, EINA_FALSE otherwise.
11376     */
11377    EAPI Eina_Bool    elm_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11378    /**
11379     * Gets any selected text within the entry.
11380     *
11381     * If there's any selected text in the entry, this function returns it as
11382     * a string in markup format. NULL is returned if no selection exists or
11383     * if an error occurred.
11384     *
11385     * The returned value points to an internal string and should not be freed
11386     * or modified in any way. If the @p entry object is deleted or its
11387     * contents are changed, the returned pointer should be considered invalid.
11388     *
11389     * @param obj The entry object
11390     * @return The selected text within the entry or NULL on failure
11391     */
11392    EAPI const char  *elm_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11393    /**
11394     * Returns the actual textblock object of the entry.
11395     *
11396     * This function exposes the internal textblock object that actually
11397     * contains and draws the text. This should be used for low-level
11398     * manipulations that are otherwise not possible.
11399     *
11400     * Changing the textblock directly from here will not notify edje/elm to
11401     * recalculate the textblock size automatically, so any modifications
11402     * done to the textblock returned by this function should be followed by
11403     * a call to elm_entry_calc_force().
11404     *
11405     * The return value is marked as const as an additional warning.
11406     * One should not use the returned object with any of the generic evas
11407     * functions (geometry_get/resize/move and etc), but only with the textblock
11408     * functions; The former will either not work at all, or break the correct
11409     * functionality.
11410     *
11411     * IMPORTANT: Many functions may change (i.e delete and create a new one)
11412     * the internal textblock object. Do NOT cache the returned object, and try
11413     * not to mix calls on this object with regular elm_entry calls (which may
11414     * change the internal textblock object). This applies to all cursors
11415     * returned from textblock calls, and all the other derivative values.
11416     *
11417     * @param obj The entry object
11418     * @return The textblock object.
11419     */
11420    EAPI const Evas_Object *elm_entry_textblock_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11421    /**
11422     * Forces calculation of the entry size and text layouting.
11423     *
11424     * This should be used after modifying the textblock object directly. See
11425     * elm_entry_textblock_get() for more information.
11426     *
11427     * @param obj The entry object
11428     *
11429     * @see elm_entry_textblock_get()
11430     */
11431    EAPI void elm_entry_calc_force(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11432    /**
11433     * Inserts the given text into the entry at the current cursor position.
11434     *
11435     * This inserts text at the cursor position as if it was typed
11436     * by the user (note that this also allows markup which a user
11437     * can't just "type" as it would be converted to escaped text, so this
11438     * call can be used to insert things like emoticon items or bold push/pop
11439     * tags, other font and color change tags etc.)
11440     *
11441     * If any selection exists, it will be replaced by the inserted text.
11442     *
11443     * The inserted text is subject to any filters set for the widget.
11444     *
11445     * @param obj The entry object
11446     * @param entry The text to insert
11447     *
11448     * @see elm_entry_text_filter_append()
11449     */
11450    EAPI void         elm_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
11451    /**
11452     * Set the line wrap type to use on multi-line entries.
11453     *
11454     * Sets the wrap type used by the entry to any of the specified in
11455     * #Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
11456     * line (without inserting a line break or paragraph separator) when it
11457     * reaches the far edge of the widget.
11458     *
11459     * Note that this only makes sense for multi-line entries. A widget set
11460     * to be single line will never wrap.
11461     *
11462     * @param obj The entry object
11463     * @param wrap The wrap mode to use. See #Elm_Wrap_Type for details on them
11464     */
11465    EAPI void         elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
11466    /**
11467     * Gets the wrap mode the entry was set to use.
11468     *
11469     * @param obj The entry object
11470     * @return Wrap type
11471     *
11472     * @see also elm_entry_line_wrap_set()
11473     */
11474    EAPI Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11475    /**
11476     * Sets if the entry is to be editable or not.
11477     *
11478     * By default, entries are editable and when focused, any text input by the
11479     * user will be inserted at the current cursor position. But calling this
11480     * function with @p editable as EINA_FALSE will prevent the user from
11481     * inputting text into the entry.
11482     *
11483     * The only way to change the text of a non-editable entry is to use
11484     * elm_object_text_set(), elm_entry_entry_insert() and other related
11485     * functions.
11486     *
11487     * @param obj The entry object
11488     * @param editable If EINA_TRUE, user input will be inserted in the entry,
11489     * if not, the entry is read-only and no user input is allowed.
11490     */
11491    EAPI void         elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
11492    /**
11493     * Gets whether the entry is editable or not.
11494     *
11495     * @param obj The entry object
11496     * @return If true, the entry is editable by the user.
11497     * If false, it is not editable by the user
11498     *
11499     * @see elm_entry_editable_set()
11500     */
11501    EAPI Eina_Bool    elm_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11502    /**
11503     * This drops any existing text selection within the entry.
11504     *
11505     * @param obj The entry object
11506     */
11507    EAPI void         elm_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
11508    /**
11509     * This selects all text within the entry.
11510     *
11511     * @param obj The entry object
11512     */
11513    EAPI void         elm_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
11514    /**
11515     * This moves the cursor one place to the right within the entry.
11516     *
11517     * @param obj The entry object
11518     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11519     */
11520    EAPI Eina_Bool    elm_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
11521    /**
11522     * This moves the cursor one place to the left within the entry.
11523     *
11524     * @param obj The entry object
11525     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11526     */
11527    EAPI Eina_Bool    elm_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
11528    /**
11529     * This moves the cursor one line up within the entry.
11530     *
11531     * @param obj The entry object
11532     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11533     */
11534    EAPI Eina_Bool    elm_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
11535    /**
11536     * This moves the cursor one line down within the entry.
11537     *
11538     * @param obj The entry object
11539     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11540     */
11541    EAPI Eina_Bool    elm_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
11542    /**
11543     * This moves the cursor to the beginning of the entry.
11544     *
11545     * @param obj The entry object
11546     */
11547    EAPI void         elm_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11548    /**
11549     * This moves the cursor to the end of the entry.
11550     *
11551     * @param obj The entry object
11552     */
11553    EAPI void         elm_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11554    /**
11555     * This moves the cursor to the beginning of the current line.
11556     *
11557     * @param obj The entry object
11558     */
11559    EAPI void         elm_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11560    /**
11561     * This moves the cursor to the end of the current line.
11562     *
11563     * @param obj The entry object
11564     */
11565    EAPI void         elm_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
11566    /**
11567     * This begins a selection within the entry as though
11568     * the user were holding down the mouse button to make a selection.
11569     *
11570     * @param obj The entry object
11571     */
11572    EAPI void         elm_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
11573    /**
11574     * This ends a selection within the entry as though
11575     * the user had just released the mouse button while making a selection.
11576     *
11577     * @param obj The entry object
11578     */
11579    EAPI void         elm_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
11580    /**
11581     * Gets whether a format node exists at the current cursor position.
11582     *
11583     * A format node is anything that defines how the text is rendered. It can
11584     * be a visible format node, such as a line break or a paragraph separator,
11585     * or an invisible one, such as bold begin or end tag.
11586     * This function returns whether any format node exists at the current
11587     * cursor position.
11588     *
11589     * @param obj The entry object
11590     * @return EINA_TRUE if the current cursor position contains a format node,
11591     * EINA_FALSE otherwise.
11592     *
11593     * @see elm_entry_cursor_is_visible_format_get()
11594     */
11595    EAPI Eina_Bool    elm_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11596    /**
11597     * Gets if the current cursor position holds a visible format node.
11598     *
11599     * @param obj The entry object
11600     * @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
11601     * if it's an invisible one or no format exists.
11602     *
11603     * @see elm_entry_cursor_is_format_get()
11604     */
11605    EAPI Eina_Bool    elm_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11606    /**
11607     * Gets the character pointed by the cursor at its current position.
11608     *
11609     * This function returns a string with the utf8 character stored at the
11610     * current cursor position.
11611     * Only the text is returned, any format that may exist will not be part
11612     * of the return value.
11613     *
11614     * @param obj The entry object
11615     * @return The text pointed by the cursors.
11616     */
11617    EAPI const char  *elm_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11618    /**
11619     * This function returns the geometry of the cursor.
11620     *
11621     * It's useful if you want to draw something on the cursor (or where it is),
11622     * or for example in the case of scrolled entry where you want to show the
11623     * cursor.
11624     *
11625     * @param obj The entry object
11626     * @param x returned geometry
11627     * @param y returned geometry
11628     * @param w returned geometry
11629     * @param h returned geometry
11630     * @return EINA_TRUE upon success, EINA_FALSE upon failure
11631     */
11632    EAPI Eina_Bool    elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
11633    /**
11634     * Sets the cursor position in the entry to the given value
11635     *
11636     * The value in @p pos is the index of the character position within the
11637     * contents of the string as returned by elm_entry_cursor_pos_get().
11638     *
11639     * @param obj The entry object
11640     * @param pos The position of the cursor
11641     */
11642    EAPI void         elm_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
11643    /**
11644     * Retrieves the current position of the cursor in the entry
11645     *
11646     * @param obj The entry object
11647     * @return The cursor position
11648     */
11649    EAPI int          elm_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11650    /**
11651     * This executes a "cut" action on the selected text in the entry.
11652     *
11653     * @param obj The entry object
11654     */
11655    EAPI void         elm_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
11656    /**
11657     * This executes a "copy" action on the selected text in the entry.
11658     *
11659     * @param obj The entry object
11660     */
11661    EAPI void         elm_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
11662    /**
11663     * This executes a "paste" action in the entry.
11664     *
11665     * @param obj The entry object
11666     */
11667    EAPI void         elm_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
11668    /**
11669     * This clears and frees the items in a entry's contextual (longpress)
11670     * menu.
11671     *
11672     * @param obj The entry object
11673     *
11674     * @see elm_entry_context_menu_item_add()
11675     */
11676    EAPI void         elm_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
11677    /**
11678     * This adds an item to the entry's contextual menu.
11679     *
11680     * A longpress on an entry will make the contextual menu show up, if this
11681     * hasn't been disabled with elm_entry_context_menu_disabled_set().
11682     * By default, this menu provides a few options like enabling selection mode,
11683     * which is useful on embedded devices that need to be explicit about it,
11684     * and when a selection exists it also shows the copy and cut actions.
11685     *
11686     * With this function, developers can add other options to this menu to
11687     * perform any action they deem necessary.
11688     *
11689     * @param obj The entry object
11690     * @param label The item's text label
11691     * @param icon_file The item's icon file
11692     * @param icon_type The item's icon type
11693     * @param func The callback to execute when the item is clicked
11694     * @param data The data to associate with the item for related functions
11695     */
11696    EAPI void         elm_entry_context_menu_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
11697    /**
11698     * This disables the entry's contextual (longpress) menu.
11699     *
11700     * @param obj The entry object
11701     * @param disabled If true, the menu is disabled
11702     */
11703    EAPI void         elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
11704    /**
11705     * This returns whether the entry's contextual (longpress) menu is
11706     * disabled.
11707     *
11708     * @param obj The entry object
11709     * @return If true, the menu is disabled
11710     */
11711    EAPI Eina_Bool    elm_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11712    /**
11713     * This appends a custom item provider to the list for that entry
11714     *
11715     * This appends the given callback. The list is walked from beginning to end
11716     * with each function called given the item href string in the text. If the
11717     * function returns an object handle other than NULL (it should create an
11718     * object to do this), then this object is used to replace that item. If
11719     * not the next provider is called until one provides an item object, or the
11720     * default provider in entry does.
11721     *
11722     * @param obj The entry object
11723     * @param func The function called to provide the item object
11724     * @param data The data passed to @p func
11725     *
11726     * @see @ref entry-items
11727     */
11728    EAPI void         elm_entry_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
11729    /**
11730     * This prepends a custom item provider to the list for that entry
11731     *
11732     * This prepends the given callback. See elm_entry_item_provider_append() for
11733     * more information
11734     *
11735     * @param obj The entry object
11736     * @param func The function called to provide the item object
11737     * @param data The data passed to @p func
11738     */
11739    EAPI void         elm_entry_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
11740    /**
11741     * This removes a custom item provider to the list for that entry
11742     *
11743     * This removes the given callback. See elm_entry_item_provider_append() for
11744     * more information
11745     *
11746     * @param obj The entry object
11747     * @param func The function called to provide the item object
11748     * @param data The data passed to @p func
11749     */
11750    EAPI void         elm_entry_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *entry, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
11751    /**
11752     * Append a filter function for text inserted in the entry
11753     *
11754     * Append the given callback to the list. This functions will be called
11755     * whenever any text is inserted into the entry, with the text to be inserted
11756     * as a parameter. The callback function is free to alter the text in any way
11757     * it wants, but it must remember to free the given pointer and update it.
11758     * If the new text is to be discarded, the function can free it and set its
11759     * text parameter to NULL. This will also prevent any following filters from
11760     * being called.
11761     *
11762     * @param obj The entry object
11763     * @param func The function to use as text filter
11764     * @param data User data to pass to @p func
11765     */
11766    EAPI void         elm_entry_text_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11767    /**
11768     * Prepend a filter function for text insdrted in the entry
11769     *
11770     * Prepend the given callback to the list. See elm_entry_text_filter_append()
11771     * for more information
11772     *
11773     * @param obj The entry object
11774     * @param func The function to use as text filter
11775     * @param data User data to pass to @p func
11776     */
11777    EAPI void         elm_entry_text_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11778    /**
11779     * Remove a filter from the list
11780     *
11781     * Removes the given callback from the filter list. See
11782     * elm_entry_text_filter_append() for more information.
11783     *
11784     * @param obj The entry object
11785     * @param func The filter function to remove
11786     * @param data The user data passed when adding the function
11787     */
11788    EAPI void         elm_entry_text_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11789    /**
11790     * This converts a markup (HTML-like) string into UTF-8.
11791     *
11792     * The returned string is a malloc'ed buffer and it should be freed when
11793     * not needed anymore.
11794     *
11795     * @param s The string (in markup) to be converted
11796     * @return The converted string (in UTF-8). It should be freed.
11797     */
11798    EAPI char        *elm_entry_markup_to_utf8(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11799    /**
11800     * This converts a UTF-8 string into markup (HTML-like).
11801     *
11802     * The returned string is a malloc'ed buffer and it should be freed when
11803     * not needed anymore.
11804     *
11805     * @param s The string (in UTF-8) to be converted
11806     * @return The converted string (in markup). It should be freed.
11807     */
11808    EAPI char        *elm_entry_utf8_to_markup(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11809    /**
11810     * This sets the file (and implicitly loads it) for the text to display and
11811     * then edit. All changes are written back to the file after a short delay if
11812     * the entry object is set to autosave (which is the default).
11813     *
11814     * If the entry had any other file set previously, any changes made to it
11815     * will be saved if the autosave feature is enabled, otherwise, the file
11816     * will be silently discarded and any non-saved changes will be lost.
11817     *
11818     * @param obj The entry object
11819     * @param file The path to the file to load and save
11820     * @param format The file format
11821     */
11822    EAPI void         elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
11823    /**
11824     * Gets the file being edited by the entry.
11825     *
11826     * This function can be used to retrieve any file set on the entry for
11827     * edition, along with the format used to load and save it.
11828     *
11829     * @param obj The entry object
11830     * @param file The path to the file to load and save
11831     * @param format The file format
11832     */
11833    EAPI void         elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
11834    /**
11835     * This function writes any changes made to the file set with
11836     * elm_entry_file_set()
11837     *
11838     * @param obj The entry object
11839     */
11840    EAPI void         elm_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
11841    /**
11842     * This sets the entry object to 'autosave' the loaded text file or not.
11843     *
11844     * @param obj The entry object
11845     * @param autosave Autosave the loaded file or not
11846     *
11847     * @see elm_entry_file_set()
11848     */
11849    EAPI void         elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
11850    /**
11851     * This gets the entry object's 'autosave' status.
11852     *
11853     * @param obj The entry object
11854     * @return Autosave the loaded file or not
11855     *
11856     * @see elm_entry_file_set()
11857     */
11858    EAPI Eina_Bool    elm_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11859    /**
11860     * Control pasting of text and images for the widget.
11861     *
11862     * Normally the entry allows both text and images to be pasted.  By setting
11863     * textonly to be true, this prevents images from being pasted.
11864     *
11865     * Note this only changes the behaviour of text.
11866     *
11867     * @param obj The entry object
11868     * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is
11869     * text+image+other.
11870     */
11871    EAPI void         elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
11872    /**
11873     * Getting elm_entry text paste/drop mode.
11874     *
11875     * In textonly mode, only text may be pasted or dropped into the widget.
11876     *
11877     * @param obj The entry object
11878     * @return If the widget only accepts text from pastes.
11879     */
11880    EAPI Eina_Bool    elm_entry_cnp_textonly_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11881    /**
11882     * Enable or disable scrolling in entry
11883     *
11884     * Normally the entry is not scrollable unless you enable it with this call.
11885     *
11886     * @param obj The entry object
11887     * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
11888     */
11889    EAPI void         elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
11890    /**
11891     * Get the scrollable state of the entry
11892     *
11893     * Normally the entry is not scrollable. This gets the scrollable state
11894     * of the entry. See elm_entry_scrollable_set() for more information.
11895     *
11896     * @param obj The entry object
11897     * @return The scrollable state
11898     */
11899    EAPI Eina_Bool    elm_entry_scrollable_get(const Evas_Object *obj);
11900    /**
11901     * This sets a widget to be displayed to the left of a scrolled entry.
11902     *
11903     * @param obj The scrolled entry object
11904     * @param icon The widget to display on the left side of the scrolled
11905     * entry.
11906     *
11907     * @note A previously set widget will be destroyed.
11908     * @note If the object being set does not have minimum size hints set,
11909     * it won't get properly displayed.
11910     *
11911     * @see elm_entry_end_set()
11912     */
11913    EAPI void         elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
11914    /**
11915     * Gets the leftmost widget of the scrolled entry. This object is
11916     * owned by the scrolled entry and should not be modified.
11917     *
11918     * @param obj The scrolled entry object
11919     * @return the left widget inside the scroller
11920     */
11921    EAPI Evas_Object *elm_entry_icon_get(const Evas_Object *obj);
11922    /**
11923     * Unset the leftmost widget of the scrolled entry, unparenting and
11924     * returning it.
11925     *
11926     * @param obj The scrolled entry object
11927     * @return the previously set icon sub-object of this entry, on
11928     * success.
11929     *
11930     * @see elm_entry_icon_set()
11931     */
11932    EAPI Evas_Object *elm_entry_icon_unset(Evas_Object *obj);
11933    /**
11934     * Sets the visibility of the left-side widget of the scrolled entry,
11935     * set by elm_entry_icon_set().
11936     *
11937     * @param obj The scrolled entry object
11938     * @param setting EINA_TRUE if the object should be displayed,
11939     * EINA_FALSE if not.
11940     */
11941    EAPI void         elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
11942    /**
11943     * This sets a widget to be displayed to the end of a scrolled entry.
11944     *
11945     * @param obj The scrolled entry object
11946     * @param end The widget to display on the right side of the scrolled
11947     * entry.
11948     *
11949     * @note A previously set widget will be destroyed.
11950     * @note If the object being set does not have minimum size hints set,
11951     * it won't get properly displayed.
11952     *
11953     * @see elm_entry_icon_set
11954     */
11955    EAPI void         elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
11956    /**
11957     * Gets the endmost widget of the scrolled entry. This object is owned
11958     * by the scrolled entry and should not be modified.
11959     *
11960     * @param obj The scrolled entry object
11961     * @return the right widget inside the scroller
11962     */
11963    EAPI Evas_Object *elm_entry_end_get(const Evas_Object *obj);
11964    /**
11965     * Unset the endmost widget of the scrolled entry, unparenting and
11966     * returning it.
11967     *
11968     * @param obj The scrolled entry object
11969     * @return the previously set icon sub-object of this entry, on
11970     * success.
11971     *
11972     * @see elm_entry_icon_set()
11973     */
11974    EAPI Evas_Object *elm_entry_end_unset(Evas_Object *obj);
11975    /**
11976     * Sets the visibility of the end widget of the scrolled entry, set by
11977     * elm_entry_end_set().
11978     *
11979     * @param obj The scrolled entry object
11980     * @param setting EINA_TRUE if the object should be displayed,
11981     * EINA_FALSE if not.
11982     */
11983    EAPI void         elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
11984    /**
11985     * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling
11986     * them).
11987     *
11988     * Setting an entry to single-line mode with elm_entry_single_line_set()
11989     * will automatically disable the display of scrollbars when the entry
11990     * moves inside its scroller.
11991     *
11992     * @param obj The scrolled entry object
11993     * @param h The horizontal scrollbar policy to apply
11994     * @param v The vertical scrollbar policy to apply
11995     */
11996    EAPI void         elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
11997    /**
11998     * This enables/disables bouncing within the entry.
11999     *
12000     * This function sets whether the entry will bounce when scrolling reaches
12001     * the end of the contained entry.
12002     *
12003     * @param obj The scrolled entry object
12004     * @param h The horizontal bounce state
12005     * @param v The vertical bounce state
12006     */
12007    EAPI void         elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
12008    /**
12009     * Get the bounce mode
12010     *
12011     * @param obj The Entry object
12012     * @param h_bounce Allow bounce horizontally
12013     * @param v_bounce Allow bounce vertically
12014     */
12015    EAPI void         elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
12016
12017    /* pre-made filters for entries */
12018    /**
12019     * @typedef Elm_Entry_Filter_Limit_Size
12020     *
12021     * Data for the elm_entry_filter_limit_size() entry filter.
12022     */
12023    typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
12024    /**
12025     * @struct _Elm_Entry_Filter_Limit_Size
12026     *
12027     * Data for the elm_entry_filter_limit_size() entry filter.
12028     */
12029    struct _Elm_Entry_Filter_Limit_Size
12030      {
12031         int max_char_count; /**< The maximum number of characters allowed. */
12032         int max_byte_count; /**< The maximum number of bytes allowed*/
12033      };
12034    /**
12035     * Filter inserted text based on user defined character and byte limits
12036     *
12037     * Add this filter to an entry to limit the characters that it will accept
12038     * based the the contents of the provided #Elm_Entry_Filter_Limit_Size.
12039     * The funtion works on the UTF-8 representation of the string, converting
12040     * it from the set markup, thus not accounting for any format in it.
12041     *
12042     * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
12043     * it as data when setting the filter. In it, it's possible to set limits
12044     * by character count or bytes (any of them is disabled if 0), and both can
12045     * be set at the same time. In that case, it first checks for characters,
12046     * then bytes.
12047     *
12048     * The function will cut the inserted text in order to allow only the first
12049     * number of characters that are still allowed. The cut is made in
12050     * characters, even when limiting by bytes, in order to always contain
12051     * valid ones and avoid half unicode characters making it in.
12052     *
12053     * This filter, like any others, does not apply when setting the entry text
12054     * directly with elm_object_text_set() (or the deprecated
12055     * elm_entry_entry_set()).
12056     */
12057    EAPI void         elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 2, 3);
12058    /**
12059     * @typedef Elm_Entry_Filter_Accept_Set
12060     *
12061     * Data for the elm_entry_filter_accept_set() entry filter.
12062     */
12063    typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
12064    /**
12065     * @struct _Elm_Entry_Filter_Accept_Set
12066     *
12067     * Data for the elm_entry_filter_accept_set() entry filter.
12068     */
12069    struct _Elm_Entry_Filter_Accept_Set
12070      {
12071         const char *accepted; /**< Set of characters accepted in the entry. */
12072         const char *rejected; /**< Set of characters rejected from the entry. */
12073      };
12074    /**
12075     * Filter inserted text based on accepted or rejected sets of characters
12076     *
12077     * Add this filter to an entry to restrict the set of accepted characters
12078     * based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
12079     * This structure contains both accepted and rejected sets, but they are
12080     * mutually exclusive.
12081     *
12082     * The @c accepted set takes preference, so if it is set, the filter will
12083     * only work based on the accepted characters, ignoring anything in the
12084     * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.
12085     *
12086     * In both cases, the function filters by matching utf8 characters to the
12087     * raw markup text, so it can be used to remove formatting tags.
12088     *
12089     * This filter, like any others, does not apply when setting the entry text
12090     * directly with elm_object_text_set() (or the deprecated
12091     * elm_entry_entry_set()).
12092     */
12093    EAPI void         elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 3);
12094    /**
12095     * Set the input panel layout of the entry
12096     *
12097     * @param obj The entry object
12098     * @param layout layout type
12099     */
12100    EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout) EINA_ARG_NONNULL(1);
12101    /**
12102     * Get the input panel layout of the entry
12103     *
12104     * @param obj The entry object
12105     * @return layout type
12106     *
12107     * @see elm_entry_input_panel_layout_set
12108     */
12109    EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12110    /**
12111     * Set the autocapitalization type on the immodule.
12112     *
12113     * @param obj The entry object
12114     * @param autocapital_type The type of autocapitalization
12115     */
12116    EAPI void         elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type) EINA_ARG_NONNULL(1);
12117    /**
12118     * Retrieve the autocapitalization type on the immodule.
12119     *
12120     * @param obj The entry object
12121     * @return autocapitalization type
12122     */
12123    EAPI Elm_Autocapital_Type elm_entry_autocapital_type_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12124    /**
12125     * Sets the attribute to show the input panel automatically.
12126     *
12127     * @param obj The entry object
12128     * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
12129     */
12130    EAPI void elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
12131    /**
12132     * Retrieve the attribute to show the input panel automatically.
12133     *
12134     * @param obj The entry object
12135     * @return EINA_TRUE if input panel will be appeared when the entry is clicked or has a focus, EINA_FALSE otherwise
12136     */
12137    EAPI Eina_Bool elm_entry_input_panel_enabled_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12138
12139    /**
12140     * @}
12141     */
12142
12143    /* composite widgets - these basically put together basic widgets above
12144     * in convenient packages that do more than basic stuff */
12145
12146    /* anchorview */
12147    /**
12148     * @defgroup Anchorview Anchorview
12149     *
12150     * @image html img/widget/anchorview/preview-00.png
12151     * @image latex img/widget/anchorview/preview-00.eps
12152     *
12153     * Anchorview is for displaying text that contains markup with anchors
12154     * like <c>\<a href=1234\>something\</\></c> in it.
12155     *
12156     * Besides being styled differently, the anchorview widget provides the
12157     * necessary functionality so that clicking on these anchors brings up a
12158     * popup with user defined content such as "call", "add to contacts" or
12159     * "open web page". This popup is provided using the @ref Hover widget.
12160     *
12161     * This widget is very similar to @ref Anchorblock, so refer to that
12162     * widget for an example. The only difference Anchorview has is that the
12163     * widget is already provided with scrolling functionality, so if the
12164     * text set to it is too large to fit in the given space, it will scroll,
12165     * whereas the @ref Anchorblock widget will keep growing to ensure all the
12166     * text can be displayed.
12167     *
12168     * This widget emits the following signals:
12169     * @li "anchor,clicked": will be called when an anchor is clicked. The
12170     * @p event_info parameter on the callback will be a pointer of type
12171     * ::Elm_Entry_Anchorview_Info.
12172     *
12173     * See @ref Anchorblock for an example on how to use both of them.
12174     *
12175     * @see Anchorblock
12176     * @see Entry
12177     * @see Hover
12178     *
12179     * @{
12180     */
12181    /**
12182     * @typedef Elm_Entry_Anchorview_Info
12183     *
12184     * The info sent in the callback for "anchor,clicked" signals emitted by
12185     * the Anchorview widget.
12186     */
12187    typedef struct _Elm_Entry_Anchorview_Info Elm_Entry_Anchorview_Info;
12188    /**
12189     * @struct _Elm_Entry_Anchorview_Info
12190     *
12191     * The info sent in the callback for "anchor,clicked" signals emitted by
12192     * the Anchorview widget.
12193     */
12194    struct _Elm_Entry_Anchorview_Info
12195      {
12196         const char     *name; /**< Name of the anchor, as indicated in its href
12197                                    attribute */
12198         int             button; /**< The mouse button used to click on it */
12199         Evas_Object    *hover; /**< The hover object to use for the popup */
12200         struct {
12201              Evas_Coord    x, y, w, h;
12202         } anchor, /**< Geometry selection of text used as anchor */
12203           hover_parent; /**< Geometry of the object used as parent by the
12204                              hover */
12205         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
12206                                              for content on the left side of
12207                                              the hover. Before calling the
12208                                              callback, the widget will make the
12209                                              necessary calculations to check
12210                                              which sides are fit to be set with
12211                                              content, based on the position the
12212                                              hover is activated and its distance
12213                                              to the edges of its parent object
12214                                              */
12215         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
12216                                               the right side of the hover.
12217                                               See @ref hover_left */
12218         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
12219                                             of the hover. See @ref hover_left */
12220         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
12221                                                below the hover. See @ref
12222                                                hover_left */
12223      };
12224    /**
12225     * Add a new Anchorview object
12226     *
12227     * @param parent The parent object
12228     * @return The new object or NULL if it cannot be created
12229     */
12230    EAPI Evas_Object *elm_anchorview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12231    /**
12232     * Set the text to show in the anchorview
12233     *
12234     * Sets the text of the anchorview to @p text. This text can include markup
12235     * format tags, including <c>\<a href=anchorname\></c> to begin a segment of
12236     * text that will be specially styled and react to click events, ended with
12237     * either of \</a\> or \</\>. When clicked, the anchor will emit an
12238     * "anchor,clicked" signal that you can attach a callback to with
12239     * evas_object_smart_callback_add(). The name of the anchor given in the
12240     * event info struct will be the one set in the href attribute, in this
12241     * case, anchorname.
12242     *
12243     * Other markup can be used to style the text in different ways, but it's
12244     * up to the style defined in the theme which tags do what.
12245     * @deprecated use elm_object_text_set() instead.
12246     */
12247    EINA_DEPRECATED EAPI void         elm_anchorview_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
12248    /**
12249     * Get the markup text set for the anchorview
12250     *
12251     * Retrieves the text set on the anchorview, with markup tags included.
12252     *
12253     * @param obj The anchorview object
12254     * @return The markup text set or @c NULL if nothing was set or an error
12255     * occurred
12256     * @deprecated use elm_object_text_set() instead.
12257     */
12258    EINA_DEPRECATED EAPI const char  *elm_anchorview_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12259    /**
12260     * Set the parent of the hover popup
12261     *
12262     * Sets the parent object to use by the hover created by the anchorview
12263     * when an anchor is clicked. See @ref Hover for more details on this.
12264     * If no parent is set, the same anchorview object will be used.
12265     *
12266     * @param obj The anchorview object
12267     * @param parent The object to use as parent for the hover
12268     */
12269    EAPI void         elm_anchorview_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12270    /**
12271     * Get the parent of the hover popup
12272     *
12273     * Get the object used as parent for the hover created by the anchorview
12274     * widget. See @ref Hover for more details on this.
12275     *
12276     * @param obj The anchorview object
12277     * @return The object used as parent for the hover, NULL if none is set.
12278     */
12279    EAPI Evas_Object *elm_anchorview_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12280    /**
12281     * Set the style that the hover should use
12282     *
12283     * When creating the popup hover, anchorview will request that it's
12284     * themed according to @p style.
12285     *
12286     * @param obj The anchorview object
12287     * @param style The style to use for the underlying hover
12288     *
12289     * @see elm_object_style_set()
12290     */
12291    EAPI void         elm_anchorview_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12292    /**
12293     * Get the style that the hover should use
12294     *
12295     * Get the style the hover created by anchorview will use.
12296     *
12297     * @param obj The anchorview object
12298     * @return The style to use by the hover. NULL means the default is used.
12299     *
12300     * @see elm_object_style_set()
12301     */
12302    EAPI const char  *elm_anchorview_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12303    /**
12304     * Ends the hover popup in the anchorview
12305     *
12306     * When an anchor is clicked, the anchorview widget will create a hover
12307     * object to use as a popup with user provided content. This function
12308     * terminates this popup, returning the anchorview to its normal state.
12309     *
12310     * @param obj The anchorview object
12311     */
12312    EAPI void         elm_anchorview_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12313    /**
12314     * Set bouncing behaviour when the scrolled content reaches an edge
12315     *
12316     * Tell the internal scroller object whether it should bounce or not
12317     * when it reaches the respective edges for each axis.
12318     *
12319     * @param obj The anchorview object
12320     * @param h_bounce Whether to bounce or not in the horizontal axis
12321     * @param v_bounce Whether to bounce or not in the vertical axis
12322     *
12323     * @see elm_scroller_bounce_set()
12324     */
12325    EAPI void         elm_anchorview_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
12326    /**
12327     * Get the set bouncing behaviour of the internal scroller
12328     *
12329     * Get whether the internal scroller should bounce when the edge of each
12330     * axis is reached scrolling.
12331     *
12332     * @param obj The anchorview object
12333     * @param h_bounce Pointer where to store the bounce state of the horizontal
12334     *                 axis
12335     * @param v_bounce Pointer where to store the bounce state of the vertical
12336     *                 axis
12337     *
12338     * @see elm_scroller_bounce_get()
12339     */
12340    EAPI void         elm_anchorview_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
12341    /**
12342     * Appends a custom item provider to the given anchorview
12343     *
12344     * Appends the given function to the list of items providers. This list is
12345     * called, one function at a time, with the given @p data pointer, the
12346     * anchorview object and, in the @p item parameter, the item name as
12347     * referenced in its href string. Following functions in the list will be
12348     * called in order until one of them returns something different to NULL,
12349     * which should be an Evas_Object which will be used in place of the item
12350     * element.
12351     *
12352     * Items in the markup text take the form \<item relsize=16x16 vsize=full
12353     * href=item/name\>\</item\>
12354     *
12355     * @param obj The anchorview object
12356     * @param func The function to add to the list of providers
12357     * @param data User data that will be passed to the callback function
12358     *
12359     * @see elm_entry_item_provider_append()
12360     */
12361    EAPI void         elm_anchorview_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorview, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12362    /**
12363     * Prepend a custom item provider to the given anchorview
12364     *
12365     * Like elm_anchorview_item_provider_append(), but it adds the function
12366     * @p func to the beginning of the list, instead of the end.
12367     *
12368     * @param obj The anchorview object
12369     * @param func The function to add to the list of providers
12370     * @param data User data that will be passed to the callback function
12371     */
12372    EAPI void         elm_anchorview_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorview, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12373    /**
12374     * Remove a custom item provider from the list of the given anchorview
12375     *
12376     * Removes the function and data pairing that matches @p func and @p data.
12377     * That is, unless the same function and same user data are given, the
12378     * function will not be removed from the list. This allows us to add the
12379     * same callback several times, with different @p data pointers and be
12380     * able to remove them later without conflicts.
12381     *
12382     * @param obj The anchorview object
12383     * @param func The function to remove from the list
12384     * @param data The data matching the function to remove from the list
12385     */
12386    EAPI void         elm_anchorview_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorview, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12387    /**
12388     * @}
12389     */
12390
12391    /* anchorblock */
12392    /**
12393     * @defgroup Anchorblock Anchorblock
12394     *
12395     * @image html img/widget/anchorblock/preview-00.png
12396     * @image latex img/widget/anchorblock/preview-00.eps
12397     *
12398     * Anchorblock is for displaying text that contains markup with anchors
12399     * like <c>\<a href=1234\>something\</\></c> in it.
12400     *
12401     * Besides being styled differently, the anchorblock widget provides the
12402     * necessary functionality so that clicking on these anchors brings up a
12403     * popup with user defined content such as "call", "add to contacts" or
12404     * "open web page". This popup is provided using the @ref Hover widget.
12405     *
12406     * This widget emits the following signals:
12407     * @li "anchor,clicked": will be called when an anchor is clicked. The
12408     * @p event_info parameter on the callback will be a pointer of type
12409     * ::Elm_Entry_Anchorblock_Info.
12410     *
12411     * @see Anchorview
12412     * @see Entry
12413     * @see Hover
12414     *
12415     * Since examples are usually better than plain words, we might as well
12416     * try @ref tutorial_anchorblock_example "one".
12417     */
12418    /**
12419     * @addtogroup Anchorblock
12420     * @{
12421     */
12422    /**
12423     * @typedef Elm_Entry_Anchorblock_Info
12424     *
12425     * The info sent in the callback for "anchor,clicked" signals emitted by
12426     * the Anchorblock widget.
12427     */
12428    typedef struct _Elm_Entry_Anchorblock_Info Elm_Entry_Anchorblock_Info;
12429    /**
12430     * @struct _Elm_Entry_Anchorblock_Info
12431     *
12432     * The info sent in the callback for "anchor,clicked" signals emitted by
12433     * the Anchorblock widget.
12434     */
12435    struct _Elm_Entry_Anchorblock_Info
12436      {
12437         const char     *name; /**< Name of the anchor, as indicated in its href
12438                                    attribute */
12439         int             button; /**< The mouse button used to click on it */
12440         Evas_Object    *hover; /**< The hover object to use for the popup */
12441         struct {
12442              Evas_Coord    x, y, w, h;
12443         } anchor, /**< Geometry selection of text used as anchor */
12444           hover_parent; /**< Geometry of the object used as parent by the
12445                              hover */
12446         Eina_Bool       hover_left : 1; /**< Hint indicating if there's space
12447                                              for content on the left side of
12448                                              the hover. Before calling the
12449                                              callback, the widget will make the
12450                                              necessary calculations to check
12451                                              which sides are fit to be set with
12452                                              content, based on the position the
12453                                              hover is activated and its distance
12454                                              to the edges of its parent object
12455                                              */
12456         Eina_Bool       hover_right : 1; /**< Hint indicating content fits on
12457                                               the right side of the hover.
12458                                               See @ref hover_left */
12459         Eina_Bool       hover_top : 1; /**< Hint indicating content fits on top
12460                                             of the hover. See @ref hover_left */
12461         Eina_Bool       hover_bottom : 1; /**< Hint indicating content fits
12462                                                below the hover. See @ref
12463                                                hover_left */
12464      };
12465    /**
12466     * Add a new Anchorblock object
12467     *
12468     * @param parent The parent object
12469     * @return The new object or NULL if it cannot be created
12470     */
12471    EAPI Evas_Object *elm_anchorblock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12472    /**
12473     * Set the text to show in the anchorblock
12474     *
12475     * Sets the text of the anchorblock to @p text. This text can include markup
12476     * format tags, including <c>\<a href=anchorname\></a></c> to begin a segment
12477     * of text that will be specially styled and react to click events, ended
12478     * with either of \</a\> or \</\>. When clicked, the anchor will emit an
12479     * "anchor,clicked" signal that you can attach a callback to with
12480     * evas_object_smart_callback_add(). The name of the anchor given in the
12481     * event info struct will be the one set in the href attribute, in this
12482     * case, anchorname.
12483     *
12484     * Other markup can be used to style the text in different ways, but it's
12485     * up to the style defined in the theme which tags do what.
12486     * @deprecated use elm_object_text_set() instead.
12487     */
12488    EINA_DEPRECATED EAPI void         elm_anchorblock_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
12489    /**
12490     * Get the markup text set for the anchorblock
12491     *
12492     * Retrieves the text set on the anchorblock, with markup tags included.
12493     *
12494     * @param obj The anchorblock object
12495     * @return The markup text set or @c NULL if nothing was set or an error
12496     * occurred
12497     * @deprecated use elm_object_text_set() instead.
12498     */
12499    EINA_DEPRECATED EAPI const char  *elm_anchorblock_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12500    /**
12501     * Set the parent of the hover popup
12502     *
12503     * Sets the parent object to use by the hover created by the anchorblock
12504     * when an anchor is clicked. See @ref Hover for more details on this.
12505     *
12506     * @param obj The anchorblock object
12507     * @param parent The object to use as parent for the hover
12508     */
12509    EAPI void         elm_anchorblock_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12510    /**
12511     * Get the parent of the hover popup
12512     *
12513     * Get the object used as parent for the hover created by the anchorblock
12514     * widget. See @ref Hover for more details on this.
12515     * If no parent is set, the same anchorblock object will be used.
12516     *
12517     * @param obj The anchorblock object
12518     * @return The object used as parent for the hover, NULL if none is set.
12519     */
12520    EAPI Evas_Object *elm_anchorblock_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12521    /**
12522     * Set the style that the hover should use
12523     *
12524     * When creating the popup hover, anchorblock will request that it's
12525     * themed according to @p style.
12526     *
12527     * @param obj The anchorblock object
12528     * @param style The style to use for the underlying hover
12529     *
12530     * @see elm_object_style_set()
12531     */
12532    EAPI void         elm_anchorblock_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12533    /**
12534     * Get the style that the hover should use
12535     *
12536     * Get the style, the hover created by anchorblock will use.
12537     *
12538     * @param obj The anchorblock object
12539     * @return The style to use by the hover. NULL means the default is used.
12540     *
12541     * @see elm_object_style_set()
12542     */
12543    EAPI const char  *elm_anchorblock_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12544    /**
12545     * Ends the hover popup in the anchorblock
12546     *
12547     * When an anchor is clicked, the anchorblock widget will create a hover
12548     * object to use as a popup with user provided content. This function
12549     * terminates this popup, returning the anchorblock to its normal state.
12550     *
12551     * @param obj The anchorblock object
12552     */
12553    EAPI void         elm_anchorblock_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12554    /**
12555     * Appends a custom item provider to the given anchorblock
12556     *
12557     * Appends the given function to the list of items providers. This list is
12558     * called, one function at a time, with the given @p data pointer, the
12559     * anchorblock object and, in the @p item parameter, the item name as
12560     * referenced in its href string. Following functions in the list will be
12561     * called in order until one of them returns something different to NULL,
12562     * which should be an Evas_Object which will be used in place of the item
12563     * element.
12564     *
12565     * Items in the markup text take the form \<item relsize=16x16 vsize=full
12566     * href=item/name\>\</item\>
12567     *
12568     * @param obj The anchorblock object
12569     * @param func The function to add to the list of providers
12570     * @param data User data that will be passed to the callback function
12571     *
12572     * @see elm_entry_item_provider_append()
12573     */
12574    EAPI void         elm_anchorblock_item_provider_append(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorblock, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12575    /**
12576     * Prepend a custom item provider to the given anchorblock
12577     *
12578     * Like elm_anchorblock_item_provider_append(), but it adds the function
12579     * @p func to the beginning of the list, instead of the end.
12580     *
12581     * @param obj The anchorblock object
12582     * @param func The function to add to the list of providers
12583     * @param data User data that will be passed to the callback function
12584     */
12585    EAPI void         elm_anchorblock_item_provider_prepend(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorblock, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12586    /**
12587     * Remove a custom item provider from the list of the given anchorblock
12588     *
12589     * Removes the function and data pairing that matches @p func and @p data.
12590     * That is, unless the same function and same user data are given, the
12591     * function will not be removed from the list. This allows us to add the
12592     * same callback several times, with different @p data pointers and be
12593     * able to remove them later without conflicts.
12594     *
12595     * @param obj The anchorblock object
12596     * @param func The function to remove from the list
12597     * @param data The data matching the function to remove from the list
12598     */
12599    EAPI void         elm_anchorblock_item_provider_remove(Evas_Object *obj, Evas_Object *(*func) (void *data, Evas_Object *anchorblock, const char *item), void *data) EINA_ARG_NONNULL(1, 2);
12600    /**
12601     * @}
12602     */
12603
12604    /**
12605     * @defgroup Bubble Bubble
12606     *
12607     * @image html img/widget/bubble/preview-00.png
12608     * @image latex img/widget/bubble/preview-00.eps
12609     * @image html img/widget/bubble/preview-01.png
12610     * @image latex img/widget/bubble/preview-01.eps
12611     * @image html img/widget/bubble/preview-02.png
12612     * @image latex img/widget/bubble/preview-02.eps
12613     *
12614     * @brief The Bubble is a widget to show text similar to how speech is
12615     * represented in comics.
12616     *
12617     * The bubble widget contains 5 important visual elements:
12618     * @li The frame is a rectangle with rounded edjes and an "arrow".
12619     * @li The @p icon is an image to which the frame's arrow points to.
12620     * @li The @p label is a text which appears to the right of the icon if the
12621     * corner is "top_left" or "bottom_left" and is right aligned to the frame
12622     * otherwise.
12623     * @li The @p info is a text which appears to the right of the label. Info's
12624     * font is of a ligther color than label.
12625     * @li The @p content is an evas object that is shown inside the frame.
12626     *
12627     * The position of the arrow, icon, label and info depends on which corner is
12628     * selected. The four available corners are:
12629     * @li "top_left" - Default
12630     * @li "top_right"
12631     * @li "bottom_left"
12632     * @li "bottom_right"
12633     *
12634     * Signals that you can add callbacks for are:
12635     * @li "clicked" - This is called when a user has clicked the bubble.
12636     *
12637     * Default contents parts of the bubble that you can use for are:
12638     * @li "default" - A content of the bubble
12639     * @li "icon" - An icon of the bubble
12640     *
12641     * Default text parts of the button widget that you can use for are:
12642     * @li NULL - Label of the bubble
12643     *
12644          * For an example of using a buble see @ref bubble_01_example_page "this".
12645     *
12646     * @{
12647     */
12648
12649    /**
12650     * Add a new bubble to the parent
12651     *
12652     * @param parent The parent object
12653     * @return The new object or NULL if it cannot be created
12654     *
12655     * This function adds a text bubble to the given parent evas object.
12656     */
12657    EAPI Evas_Object *elm_bubble_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12658    /**
12659     * Set the label of the bubble
12660     *
12661     * @param obj The bubble object
12662     * @param label The string to set in the label
12663     *
12664     * This function sets the title of the bubble. Where this appears depends on
12665     * the selected corner.
12666     * @deprecated use elm_object_text_set() instead.
12667     */
12668    EINA_DEPRECATED EAPI void         elm_bubble_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12669    /**
12670     * Get the label of the bubble
12671     *
12672     * @param obj The bubble object
12673     * @return The string of set in the label
12674     *
12675     * This function gets the title of the bubble.
12676     * @deprecated use elm_object_text_get() instead.
12677     */
12678    EINA_DEPRECATED EAPI const char  *elm_bubble_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12679    /**
12680     * Set the info of the bubble
12681     *
12682     * @param obj The bubble object
12683     * @param info The given info about the bubble
12684     *
12685     * This function sets the info of the bubble. Where this appears depends on
12686     * the selected corner.
12687     * @deprecated use elm_object_part_text_set() instead. (with "info" as the parameter).
12688     */
12689    EINA_DEPRECATED EAPI void         elm_bubble_info_set(Evas_Object *obj, const char *info) EINA_ARG_NONNULL(1);
12690    /**
12691     * Get the info of the bubble
12692     *
12693     * @param obj The bubble object
12694     *
12695     * @return The "info" string of the bubble
12696     *
12697     * This function gets the info text.
12698     * @deprecated use elm_object_part_text_get() instead. (with "info" as the parameter).
12699     */
12700    EINA_DEPRECATED EAPI const char  *elm_bubble_info_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12701    /**
12702     * Set the content to be shown in the bubble
12703     *
12704     * Once the content object is set, a previously set one will be deleted.
12705     * If you want to keep the old content object, use the
12706     * elm_bubble_content_unset() function.
12707     *
12708     * @param obj The bubble object
12709     * @param content The given content of the bubble
12710     *
12711     * This function sets the content shown on the middle of the bubble.
12712     *
12713     * @deprecated use elm_object_content_set() instead
12714     *
12715     */
12716    EINA_DEPRECATED EAPI void         elm_bubble_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
12717    /**
12718     * Get the content shown in the bubble
12719     *
12720     * Return the content object which is set for this widget.
12721     *
12722     * @param obj The bubble object
12723     * @return The content that is being used
12724     *
12725     * @deprecated use elm_object_content_get() instead
12726     *
12727     */
12728    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12729    /**
12730     * Unset the content shown in the bubble
12731     *
12732     * Unparent and return the content object which was set for this widget.
12733     *
12734     * @param obj The bubble object
12735     * @return The content that was being used
12736     *
12737     * @deprecated use elm_object_content_unset() instead
12738     *
12739     */
12740    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12741    /**
12742     * Set the icon of the bubble
12743     *
12744     * Once the icon object is set, a previously set one will be deleted.
12745     * If you want to keep the old content object, use the
12746     * elm_icon_content_unset() function.
12747     *
12748     * @param obj The bubble object
12749     * @param icon The given icon for the bubble
12750     *
12751     * @deprecated use elm_object_part_content_set() instead
12752     *
12753     */
12754    EINA_DEPRECATED EAPI void         elm_bubble_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12755    /**
12756     * Get the icon of the bubble
12757     *
12758     * @param obj The bubble object
12759     * @return The icon for the bubble
12760     *
12761     * This function gets the icon shown on the top left of bubble.
12762     *
12763     * @deprecated use elm_object_part_content_get() instead
12764     *
12765     */
12766    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12767    /**
12768     * Unset the icon of the bubble
12769     *
12770     * Unparent and return the icon object which was set for this widget.
12771     *
12772     * @param obj The bubble object
12773     * @return The icon that was being used
12774     *
12775     * @deprecated use elm_object_part_content_unset() instead
12776     *
12777     */
12778    EINA_DEPRECATED EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12779    /**
12780     * Set the corner of the bubble
12781     *
12782     * @param obj The bubble object.
12783     * @param corner The given corner for the bubble.
12784     *
12785     * This function sets the corner of the bubble. The corner will be used to
12786     * determine where the arrow in the frame points to and where label, icon and
12787     * info are shown.
12788     *
12789     * Possible values for corner are:
12790     * @li "top_left" - Default
12791     * @li "top_right"
12792     * @li "bottom_left"
12793     * @li "bottom_right"
12794     */
12795    EAPI void         elm_bubble_corner_set(Evas_Object *obj, const char *corner) EINA_ARG_NONNULL(1, 2);
12796    /**
12797     * Get the corner of the bubble
12798     *
12799     * @param obj The bubble object.
12800     * @return The given corner for the bubble.
12801     *
12802     * This function gets the selected corner of the bubble.
12803     */
12804    EAPI const char  *elm_bubble_corner_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12805    /**
12806     * @}
12807     */
12808
12809    /**
12810     * @defgroup Photo Photo
12811     *
12812     * For displaying the photo of a person (contact). Simple, yet
12813     * with a very specific purpose.
12814     *
12815     * Signals that you can add callbacks for are:
12816     *
12817     * "clicked" - This is called when a user has clicked the photo
12818     * "drag,start" - Someone started dragging the image out of the object
12819     * "drag,end" - Dragged item was dropped (somewhere)
12820     *
12821     * @{
12822     */
12823
12824    /**
12825     * Add a new photo to the parent
12826     *
12827     * @param parent The parent object
12828     * @return The new object or NULL if it cannot be created
12829     *
12830     * @ingroup Photo
12831     */
12832    EAPI Evas_Object *elm_photo_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12833
12834    /**
12835     * Set the file that will be used as photo
12836     *
12837     * @param obj The photo object
12838     * @param file The path to file that will be used as photo
12839     *
12840     * @return (1 = success, 0 = error)
12841     *
12842     * @ingroup Photo
12843     */
12844    EAPI Eina_Bool    elm_photo_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
12845
12846     /**
12847     * Set the file that will be used as thumbnail in the photo.
12848     *
12849     * @param obj The photo object.
12850     * @param file The path to file that will be used as thumb.
12851     * @param group The key used in case of an EET file.
12852     *
12853     * @ingroup Photo
12854     */
12855    EAPI void         elm_photo_thumb_set(const Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
12856
12857    /**
12858     * Set the size that will be used on the photo
12859     *
12860     * @param obj The photo object
12861     * @param size The size that the photo will be
12862     *
12863     * @ingroup Photo
12864     */
12865    EAPI void         elm_photo_size_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
12866
12867    /**
12868     * Set if the photo should be completely visible or not.
12869     *
12870     * @param obj The photo object
12871     * @param fill if true the photo will be completely visible
12872     *
12873     * @ingroup Photo
12874     */
12875    EAPI void         elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill) EINA_ARG_NONNULL(1);
12876
12877    /**
12878     * Set editability of the photo.
12879     *
12880     * An editable photo can be dragged to or from, and can be cut or
12881     * pasted too.  Note that pasting an image or dropping an item on
12882     * the image will delete the existing content.
12883     *
12884     * @param obj The photo object.
12885     * @param set To set of clear editablity.
12886     */
12887    EAPI void         elm_photo_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
12888
12889    /**
12890     * @}
12891     */
12892
12893    /* gesture layer */
12894    /**
12895     * @defgroup Elm_Gesture_Layer Gesture Layer
12896     * Gesture Layer Usage:
12897     *
12898     * Use Gesture Layer to detect gestures.
12899     * The advantage is that you don't have to implement
12900     * gesture detection, just set callbacks of gesture state.
12901     * By using gesture layer we make standard interface.
12902     *
12903     * In order to use Gesture Layer you start with @ref elm_gesture_layer_add
12904     * with a parent object parameter.
12905     * Next 'activate' gesture layer with a @ref elm_gesture_layer_attach
12906     * call. Usually with same object as target (2nd parameter).
12907     *
12908     * Now you need to tell gesture layer what gestures you follow.
12909     * This is done with @ref elm_gesture_layer_cb_set call.
12910     * By setting the callback you actually saying to gesture layer:
12911     * I would like to know when the gesture @ref Elm_Gesture_Types
12912     * switches to state @ref Elm_Gesture_State.
12913     *
12914     * Next, you need to implement the actual action that follows the input
12915     * in your callback.
12916     *
12917     * Note that if you like to stop being reported about a gesture, just set
12918     * all callbacks referring this gesture to NULL.
12919     * (again with @ref elm_gesture_layer_cb_set)
12920     *
12921     * The information reported by gesture layer to your callback is depending
12922     * on @ref Elm_Gesture_Types:
12923     * @ref Elm_Gesture_Taps_Info is the info reported for tap gestures:
12924     * @ref ELM_GESTURE_N_TAPS, @ref ELM_GESTURE_N_LONG_TAPS,
12925     * @ref ELM_GESTURE_N_DOUBLE_TAPS, @ref ELM_GESTURE_N_TRIPLE_TAPS.
12926     *
12927     * @ref Elm_Gesture_Momentum_Info is info reported for momentum gestures:
12928     * @ref ELM_GESTURE_MOMENTUM.
12929     *
12930     * @ref Elm_Gesture_Line_Info is the info reported for line gestures:
12931     * (this also contains @ref Elm_Gesture_Momentum_Info internal structure)
12932     * @ref ELM_GESTURE_N_LINES, @ref ELM_GESTURE_N_FLICKS.
12933     * Note that we consider a flick as a line-gesture that should be completed
12934     * in flick-time-limit as defined in @ref Config.
12935     *
12936     * @ref Elm_Gesture_Zoom_Info is the info reported for @ref ELM_GESTURE_ZOOM gesture.
12937     *
12938     * @ref Elm_Gesture_Rotate_Info is the info reported for @ref ELM_GESTURE_ROTATE gesture.
12939     *
12940     *
12941     * Gesture Layer Tweaks:
12942     *
12943     * Note that line, flick, gestures can start without the need to remove fingers from surface.
12944     * When user fingers rests on same-spot gesture is ended and starts again when fingers moved.
12945     *
12946     * Setting glayer_continues_enable to false in @ref Config will change this behavior
12947     * so gesture starts when user touches (a *DOWN event) touch-surface
12948     * and ends when no fingers touches surface (a *UP event).
12949     */
12950
12951    /**
12952     * @enum _Elm_Gesture_Types
12953     * Enum of supported gesture types.
12954     * @ingroup Elm_Gesture_Layer
12955     */
12956    enum _Elm_Gesture_Types
12957      {
12958         ELM_GESTURE_FIRST = 0,
12959
12960         ELM_GESTURE_N_TAPS, /**< N fingers single taps */
12961         ELM_GESTURE_N_LONG_TAPS, /**< N fingers single long-taps */
12962         ELM_GESTURE_N_DOUBLE_TAPS, /**< N fingers double-single taps */
12963         ELM_GESTURE_N_TRIPLE_TAPS, /**< N fingers triple-single taps */
12964
12965         ELM_GESTURE_MOMENTUM, /**< Reports momentum in the dircetion of move */
12966
12967         ELM_GESTURE_N_LINES, /**< N fingers line gesture */
12968         ELM_GESTURE_N_FLICKS, /**< N fingers flick gesture */
12969
12970         ELM_GESTURE_ZOOM, /**< Zoom */
12971         ELM_GESTURE_ROTATE, /**< Rotate */
12972
12973         ELM_GESTURE_LAST
12974      };
12975
12976    /**
12977     * @typedef Elm_Gesture_Types
12978     * gesture types enum
12979     * @ingroup Elm_Gesture_Layer
12980     */
12981    typedef enum _Elm_Gesture_Types Elm_Gesture_Types;
12982
12983    /**
12984     * @enum _Elm_Gesture_State
12985     * Enum of gesture states.
12986     * @ingroup Elm_Gesture_Layer
12987     */
12988    enum _Elm_Gesture_State
12989      {
12990         ELM_GESTURE_STATE_UNDEFINED = -1, /**< Gesture not STARTed */
12991         ELM_GESTURE_STATE_START,          /**< Gesture STARTed     */
12992         ELM_GESTURE_STATE_MOVE,           /**< Gesture is ongoing  */
12993         ELM_GESTURE_STATE_END,            /**< Gesture completed   */
12994         ELM_GESTURE_STATE_ABORT    /**< Onging gesture was ABORTed */
12995      };
12996
12997    /**
12998     * @typedef Elm_Gesture_State
12999     * gesture states enum
13000     * @ingroup Elm_Gesture_Layer
13001     */
13002    typedef enum _Elm_Gesture_State Elm_Gesture_State;
13003
13004    /**
13005     * @struct _Elm_Gesture_Taps_Info
13006     * Struct holds taps info for user
13007     * @ingroup Elm_Gesture_Layer
13008     */
13009    struct _Elm_Gesture_Taps_Info
13010      {
13011         Evas_Coord x, y;         /**< Holds center point between fingers */
13012         unsigned int n;          /**< Number of fingers tapped           */
13013         unsigned int timestamp;  /**< event timestamp       */
13014      };
13015
13016    /**
13017     * @typedef Elm_Gesture_Taps_Info
13018     * holds taps info for user
13019     * @ingroup Elm_Gesture_Layer
13020     */
13021    typedef struct _Elm_Gesture_Taps_Info Elm_Gesture_Taps_Info;
13022
13023    /**
13024     * @struct _Elm_Gesture_Momentum_Info
13025     * Struct holds momentum info for user
13026     * x1 and y1 are not necessarily in sync
13027     * x1 holds x value of x direction starting point
13028     * and same holds for y1.
13029     * This is noticeable when doing V-shape movement
13030     * @ingroup Elm_Gesture_Layer
13031     */
13032    struct _Elm_Gesture_Momentum_Info
13033      {  /* Report line ends, timestamps, and momentum computed        */
13034         Evas_Coord x1; /**< Final-swipe direction starting point on X */
13035         Evas_Coord y1; /**< Final-swipe direction starting point on Y */
13036         Evas_Coord x2; /**< Final-swipe direction ending point on X   */
13037         Evas_Coord y2; /**< Final-swipe direction ending point on Y   */
13038
13039         unsigned int tx; /**< Timestamp of start of final x-swipe */
13040         unsigned int ty; /**< Timestamp of start of final y-swipe */
13041
13042         Evas_Coord mx; /**< Momentum on X */
13043         Evas_Coord my; /**< Momentum on Y */
13044
13045         unsigned int n;  /**< Number of fingers */
13046      };
13047
13048    /**
13049     * @typedef Elm_Gesture_Momentum_Info
13050     * holds momentum info for user
13051     * @ingroup Elm_Gesture_Layer
13052     */
13053     typedef struct _Elm_Gesture_Momentum_Info Elm_Gesture_Momentum_Info;
13054
13055    /**
13056     * @struct _Elm_Gesture_Line_Info
13057     * Struct holds line info for user
13058     * @ingroup Elm_Gesture_Layer
13059     */
13060    struct _Elm_Gesture_Line_Info
13061      {  /* Report line ends, timestamps, and momentum computed      */
13062         Elm_Gesture_Momentum_Info momentum; /**< Line momentum info */
13063         double angle;              /**< Angle (direction) of lines  */
13064      };
13065
13066    /**
13067     * @typedef Elm_Gesture_Line_Info
13068     * Holds line info for user
13069     * @ingroup Elm_Gesture_Layer
13070     */
13071     typedef struct  _Elm_Gesture_Line_Info Elm_Gesture_Line_Info;
13072
13073    /**
13074     * @struct _Elm_Gesture_Zoom_Info
13075     * Struct holds zoom info for user
13076     * @ingroup Elm_Gesture_Layer
13077     */
13078    struct _Elm_Gesture_Zoom_Info
13079      {
13080         Evas_Coord x, y;       /**< Holds zoom center point reported to user  */
13081         Evas_Coord radius; /**< Holds radius between fingers reported to user */
13082         double zoom;            /**< Zoom value: 1.0 means no zoom             */
13083         double momentum;        /**< Zoom momentum: zoom growth per second (NOT YET SUPPORTED) */
13084      };
13085
13086    /**
13087     * @typedef Elm_Gesture_Zoom_Info
13088     * Holds zoom info for user
13089     * @ingroup Elm_Gesture_Layer
13090     */
13091    typedef struct _Elm_Gesture_Zoom_Info Elm_Gesture_Zoom_Info;
13092
13093    /**
13094     * @struct _Elm_Gesture_Rotate_Info
13095     * Struct holds rotation info for user
13096     * @ingroup Elm_Gesture_Layer
13097     */
13098    struct _Elm_Gesture_Rotate_Info
13099      {
13100         Evas_Coord x, y;   /**< Holds zoom center point reported to user      */
13101         Evas_Coord radius; /**< Holds radius between fingers reported to user */
13102         double base_angle; /**< Holds start-angle */
13103         double angle;      /**< Rotation value: 0.0 means no rotation         */
13104         double momentum;   /**< Rotation momentum: rotation done per second (NOT YET SUPPORTED) */
13105      };
13106
13107    /**
13108     * @typedef Elm_Gesture_Rotate_Info
13109     * Holds rotation info for user
13110     * @ingroup Elm_Gesture_Layer
13111     */
13112    typedef struct _Elm_Gesture_Rotate_Info Elm_Gesture_Rotate_Info;
13113
13114    /**
13115     * @typedef Elm_Gesture_Event_Cb
13116     * User callback used to stream gesture info from gesture layer
13117     * @param data user data
13118     * @param event_info gesture report info
13119     * Returns a flag field to be applied on the causing event.
13120     * You should probably return EVAS_EVENT_FLAG_ON_HOLD if your widget acted
13121     * upon the event, in an irreversible way.
13122     *
13123     * @ingroup Elm_Gesture_Layer
13124     */
13125    typedef Evas_Event_Flags (*Elm_Gesture_Event_Cb) (void *data, void *event_info);
13126
13127    /**
13128     * Use function to set callbacks to be notified about
13129     * change of state of gesture.
13130     * When a user registers a callback with this function
13131     * this means this gesture has to be tested.
13132     *
13133     * When ALL callbacks for a gesture are set to NULL
13134     * it means user isn't interested in gesture-state
13135     * and it will not be tested.
13136     *
13137     * @param obj Pointer to gesture-layer.
13138     * @param idx The gesture you would like to track its state.
13139     * @param cb callback function pointer.
13140     * @param cb_type what event this callback tracks: START, MOVE, END, ABORT.
13141     * @param data user info to be sent to callback (usually, Smart Data)
13142     *
13143     * @ingroup Elm_Gesture_Layer
13144     */
13145    EAPI void elm_gesture_layer_cb_set(Evas_Object *obj, Elm_Gesture_Types idx, Elm_Gesture_State cb_type, Elm_Gesture_Event_Cb cb, void *data) EINA_ARG_NONNULL(1);
13146
13147    /**
13148     * Call this function to get repeat-events settings.
13149     *
13150     * @param obj Pointer to gesture-layer.
13151     *
13152     * @return repeat events settings.
13153     * @see elm_gesture_layer_hold_events_set()
13154     * @ingroup Elm_Gesture_Layer
13155     */
13156    EAPI Eina_Bool elm_gesture_layer_hold_events_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
13157
13158    /**
13159     * This function called in order to make gesture-layer repeat events.
13160     * Set this of you like to get the raw events only if gestures were not detected.
13161     * Clear this if you like gesture layer to fwd events as testing gestures.
13162     *
13163     * @param obj Pointer to gesture-layer.
13164     * @param r Repeat: TRUE/FALSE
13165     *
13166     * @ingroup Elm_Gesture_Layer
13167     */
13168    EAPI void elm_gesture_layer_hold_events_set(Evas_Object *obj, Eina_Bool r) EINA_ARG_NONNULL(1);
13169
13170    /**
13171     * This function sets step-value for zoom action.
13172     * Set step to any positive value.
13173     * Cancel step setting by setting to 0.0
13174     *
13175     * @param obj Pointer to gesture-layer.
13176     * @param s new zoom step value.
13177     *
13178     * @ingroup Elm_Gesture_Layer
13179     */
13180    EAPI void elm_gesture_layer_zoom_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
13181
13182    /**
13183     * This function sets step-value for rotate action.
13184     * Set step to any positive value.
13185     * Cancel step setting by setting to 0.0
13186     *
13187     * @param obj Pointer to gesture-layer.
13188     * @param s new roatate step value.
13189     *
13190     * @ingroup Elm_Gesture_Layer
13191     */
13192    EAPI void elm_gesture_layer_rotate_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
13193
13194    /**
13195     * This function called to attach gesture-layer to an Evas_Object.
13196     * @param obj Pointer to gesture-layer.
13197     * @param t Pointer to underlying object (AKA Target)
13198     *
13199     * @return TRUE, FALSE on success, failure.
13200     *
13201     * @ingroup Elm_Gesture_Layer
13202     */
13203    EAPI Eina_Bool elm_gesture_layer_attach(Evas_Object *obj, Evas_Object *t) EINA_ARG_NONNULL(1, 2);
13204
13205    /**
13206     * Call this function to construct a new gesture-layer object.
13207     * This does not activate the gesture layer. You have to
13208     * call elm_gesture_layer_attach in order to 'activate' gesture-layer.
13209     *
13210     * @param parent the parent object.
13211     *
13212     * @return Pointer to new gesture-layer object.
13213     *
13214     * @ingroup Elm_Gesture_Layer
13215     */
13216    EAPI Evas_Object *elm_gesture_layer_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13217
13218    /**
13219     * @defgroup Thumb Thumb
13220     *
13221     * @image html img/widget/thumb/preview-00.png
13222     * @image latex img/widget/thumb/preview-00.eps
13223     *
13224     * A thumb object is used for displaying the thumbnail of an image or video.
13225     * You must have compiled Elementary with Ethumb_Client support and the DBus
13226     * service must be present and auto-activated in order to have thumbnails to
13227     * be generated.
13228     *
13229     * Once the thumbnail object becomes visible, it will check if there is a
13230     * previously generated thumbnail image for the file set on it. If not, it
13231     * will start generating this thumbnail.
13232     *
13233     * Different config settings will cause different thumbnails to be generated
13234     * even on the same file.
13235     *
13236     * Generated thumbnails are stored under @c $HOME/.thumbnails/. Check the
13237     * Ethumb documentation to change this path, and to see other configuration
13238     * options.
13239     *
13240     * Signals that you can add callbacks for are:
13241     *
13242     * - "clicked" - This is called when a user has clicked the thumb without dragging
13243     *             around.
13244     * - "clicked,double" - This is called when a user has double-clicked the thumb.
13245     * - "press" - This is called when a user has pressed down the thumb.
13246     * - "generate,start" - The thumbnail generation started.
13247     * - "generate,stop" - The generation process stopped.
13248     * - "generate,error" - The generation failed.
13249     * - "load,error" - The thumbnail image loading failed.
13250     *
13251     * available styles:
13252     * - default
13253     * - noframe
13254     *
13255     * An example of use of thumbnail:
13256     *
13257     * - @ref thumb_example_01
13258     */
13259
13260    /**
13261     * @addtogroup Thumb
13262     * @{
13263     */
13264
13265    /**
13266     * @enum _Elm_Thumb_Animation_Setting
13267     * @typedef Elm_Thumb_Animation_Setting
13268     *
13269     * Used to set if a video thumbnail is animating or not.
13270     *
13271     * @ingroup Thumb
13272     */
13273    typedef enum _Elm_Thumb_Animation_Setting
13274      {
13275         ELM_THUMB_ANIMATION_START = 0, /**< Play animation once */
13276         ELM_THUMB_ANIMATION_LOOP,      /**< Keep playing animation until stop is requested */
13277         ELM_THUMB_ANIMATION_STOP,      /**< Stop playing the animation */
13278         ELM_THUMB_ANIMATION_LAST
13279      } Elm_Thumb_Animation_Setting;
13280
13281    /**
13282     * Add a new thumb object to the parent.
13283     *
13284     * @param parent The parent object.
13285     * @return The new object or NULL if it cannot be created.
13286     *
13287     * @see elm_thumb_file_set()
13288     * @see elm_thumb_ethumb_client_get()
13289     *
13290     * @ingroup Thumb
13291     */
13292    EAPI Evas_Object                 *elm_thumb_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13293    /**
13294     * Reload thumbnail if it was generated before.
13295     *
13296     * @param obj The thumb object to reload
13297     *
13298     * This is useful if the ethumb client configuration changed, like its
13299     * size, aspect or any other property one set in the handle returned
13300     * by elm_thumb_ethumb_client_get().
13301     *
13302     * If the options didn't change, the thumbnail won't be generated again, but
13303     * the old one will still be used.
13304     *
13305     * @see elm_thumb_file_set()
13306     *
13307     * @ingroup Thumb
13308     */
13309    EAPI void                         elm_thumb_reload(Evas_Object *obj) EINA_ARG_NONNULL(1);
13310    /**
13311     * Set the file that will be used as thumbnail.
13312     *
13313     * @param obj The thumb object.
13314     * @param file The path to file that will be used as thumb.
13315     * @param key The key used in case of an EET file.
13316     *
13317     * The file can be an image or a video (in that case, acceptable extensions are:
13318     * avi, mp4, ogv, mov, mpg and wmv). To start the video animation, use the
13319     * function elm_thumb_animate().
13320     *
13321     * @see elm_thumb_file_get()
13322     * @see elm_thumb_reload()
13323     * @see elm_thumb_animate()
13324     *
13325     * @ingroup Thumb
13326     */
13327    EAPI void                         elm_thumb_file_set(Evas_Object *obj, const char *file, const char *key) EINA_ARG_NONNULL(1);
13328    /**
13329     * Get the image or video path and key used to generate the thumbnail.
13330     *
13331     * @param obj The thumb object.
13332     * @param file Pointer to filename.
13333     * @param key Pointer to key.
13334     *
13335     * @see elm_thumb_file_set()
13336     * @see elm_thumb_path_get()
13337     *
13338     * @ingroup Thumb
13339     */
13340    EAPI void                         elm_thumb_file_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
13341    /**
13342     * Get the path and key to the image or video generated by ethumb.
13343     *
13344     * One just need to make sure that the thumbnail was generated before getting
13345     * its path; otherwise, the path will be NULL. One way to do that is by asking
13346     * for the path when/after the "generate,stop" smart callback is called.
13347     *
13348     * @param obj The thumb object.
13349     * @param file Pointer to thumb path.
13350     * @param key Pointer to thumb key.
13351     *
13352     * @see elm_thumb_file_get()
13353     *
13354     * @ingroup Thumb
13355     */
13356    EAPI void                         elm_thumb_path_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
13357    /**
13358     * Set the animation state for the thumb object. If its content is an animated
13359     * video, you may start/stop the animation or tell it to play continuously and
13360     * looping.
13361     *
13362     * @param obj The thumb object.
13363     * @param setting The animation setting.
13364     *
13365     * @see elm_thumb_file_set()
13366     *
13367     * @ingroup Thumb
13368     */
13369    EAPI void                         elm_thumb_animate_set(Evas_Object *obj, Elm_Thumb_Animation_Setting s) EINA_ARG_NONNULL(1);
13370    /**
13371     * Get the animation state for the thumb object.
13372     *
13373     * @param obj The thumb object.
13374     * @return getting The animation setting or @c ELM_THUMB_ANIMATION_LAST,
13375     * on errors.
13376     *
13377     * @see elm_thumb_animate_set()
13378     *
13379     * @ingroup Thumb
13380     */
13381    EAPI Elm_Thumb_Animation_Setting  elm_thumb_animate_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13382    /**
13383     * Get the ethumb_client handle so custom configuration can be made.
13384     *
13385     * @return Ethumb_Client instance or NULL.
13386     *
13387     * This must be called before the objects are created to be sure no object is
13388     * visible and no generation started.
13389     *
13390     * Example of usage:
13391     *
13392     * @code
13393     * #include <Elementary.h>
13394     * #ifndef ELM_LIB_QUICKLAUNCH
13395     * EAPI_MAIN int
13396     * elm_main(int argc, char **argv)
13397     * {
13398     *    Ethumb_Client *client;
13399     *
13400     *    elm_need_ethumb();
13401     *
13402     *    // ... your code
13403     *
13404     *    client = elm_thumb_ethumb_client_get();
13405     *    if (!client)
13406     *      {
13407     *         ERR("could not get ethumb_client");
13408     *         return 1;
13409     *      }
13410     *    ethumb_client_size_set(client, 100, 100);
13411     *    ethumb_client_crop_align_set(client, 0.5, 0.5);
13412     *    // ... your code
13413     *
13414     *    // Create elm_thumb objects here
13415     *
13416     *    elm_run();
13417     *    elm_shutdown();
13418     *    return 0;
13419     * }
13420     * #endif
13421     * ELM_MAIN()
13422     * @endcode
13423     *
13424     * @note There's only one client handle for Ethumb, so once a configuration
13425     * change is done to it, any other request for thumbnails (for any thumbnail
13426     * object) will use that configuration. Thus, this configuration is global.
13427     *
13428     * @ingroup Thumb
13429     */
13430    EAPI void                        *elm_thumb_ethumb_client_get(void);
13431    /**
13432     * Get the ethumb_client connection state.
13433     *
13434     * @return EINA_TRUE if the client is connected to the server or EINA_FALSE
13435     * otherwise.
13436     */
13437    EAPI Eina_Bool                    elm_thumb_ethumb_client_connected(void);
13438    /**
13439     * Make the thumbnail 'editable'.
13440     *
13441     * @param obj Thumb object.
13442     * @param set Turn on or off editability. Default is @c EINA_FALSE.
13443     *
13444     * This means the thumbnail is a valid drag target for drag and drop, and can be
13445     * cut or pasted too.
13446     *
13447     * @see elm_thumb_editable_get()
13448     *
13449     * @ingroup Thumb
13450     */
13451    EAPI Eina_Bool                    elm_thumb_editable_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
13452    /**
13453     * Make the thumbnail 'editable'.
13454     *
13455     * @param obj Thumb object.
13456     * @return Editability.
13457     *
13458     * This means the thumbnail is a valid drag target for drag and drop, and can be
13459     * cut or pasted too.
13460     *
13461     * @see elm_thumb_editable_set()
13462     *
13463     * @ingroup Thumb
13464     */
13465    EAPI Eina_Bool                    elm_thumb_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13466
13467    /**
13468     * @}
13469     */
13470
13471    /**
13472     * @defgroup Web Web
13473     *
13474     * @image html img/widget/web/preview-00.png
13475     * @image latex img/widget/web/preview-00.eps
13476     *
13477     * A web object is used for displaying web pages (HTML/CSS/JS)
13478     * using WebKit-EFL. You must have compiled Elementary with
13479     * ewebkit support.
13480     *
13481     * Signals that you can add callbacks for are:
13482     * @li "download,request": A file download has been requested. Event info is
13483     * a pointer to a Elm_Web_Download
13484     * @li "editorclient,contents,changed": Editor client's contents changed
13485     * @li "editorclient,selection,changed": Editor client's selection changed
13486     * @li "frame,created": A new frame was created. Event info is an
13487     * Evas_Object which can be handled with WebKit's ewk_frame API
13488     * @li "icon,received": An icon was received by the main frame
13489     * @li "inputmethod,changed": Input method changed. Event info is an
13490     * Eina_Bool indicating whether it's enabled or not
13491     * @li "js,windowobject,clear": JS window object has been cleared
13492     * @li "link,hover,in": Mouse cursor is hovering over a link. Event info
13493     * is a char *link[2], where the first string contains the URL the link
13494     * points to, and the second one the title of the link
13495     * @li "link,hover,out": Mouse cursor left the link
13496     * @li "load,document,finished": Loading of a document finished. Event info
13497     * is the frame that finished loading
13498     * @li "load,error": Load failed. Event info is a pointer to
13499     * Elm_Web_Frame_Load_Error
13500     * @li "load,finished": Load finished. Event info is NULL on success, on
13501     * error it's a pointer to Elm_Web_Frame_Load_Error
13502     * @li "load,newwindow,show": A new window was created and is ready to be
13503     * shown
13504     * @li "load,progress": Overall load progress. Event info is a pointer to
13505     * a double containing a value between 0.0 and 1.0
13506     * @li "load,provisional": Started provisional load
13507     * @li "load,started": Loading of a document started
13508     * @li "menubar,visible,get": Queries if the menubar is visible. Event info
13509     * is a pointer to Eina_Bool where the callback should set EINA_TRUE if
13510     * the menubar is visible, or EINA_FALSE in case it's not
13511     * @li "menubar,visible,set": Informs menubar visibility. Event info is
13512     * an Eina_Bool indicating the visibility
13513     * @li "popup,created": A dropdown widget was activated, requesting its
13514     * popup menu to be created. Event info is a pointer to Elm_Web_Menu
13515     * @li "popup,willdelete": The web object is ready to destroy the popup
13516     * object created. Event info is a pointer to Elm_Web_Menu
13517     * @li "ready": Page is fully loaded
13518     * @li "scrollbars,visible,get": Queries visibility of scrollbars. Event
13519     * info is a pointer to Eina_Bool where the visibility state should be set
13520     * @li "scrollbars,visible,set": Informs scrollbars visibility. Event info
13521     * is an Eina_Bool with the visibility state set
13522     * @li "statusbar,text,set": Text of the statusbar changed. Even info is
13523     * a string with the new text
13524     * @li "statusbar,visible,get": Queries visibility of the status bar.
13525     * Event info is a pointer to Eina_Bool where the visibility state should be
13526     * set.
13527     * @li "statusbar,visible,set": Informs statusbar visibility. Event info is
13528     * an Eina_Bool with the visibility value
13529     * @li "title,changed": Title of the main frame changed. Event info is a
13530     * string with the new title
13531     * @li "toolbars,visible,get": Queries visibility of toolbars. Event info
13532     * is a pointer to Eina_Bool where the visibility state should be set
13533     * @li "toolbars,visible,set": Informs the visibility of toolbars. Event
13534     * info is an Eina_Bool with the visibility state
13535     * @li "tooltip,text,set": Show and set text of a tooltip. Event info is
13536     * a string with the text to show
13537     * @li "uri,changed": URI of the main frame changed. Event info is a string
13538     * with the new URI
13539     * @li "view,resized": The web object internal's view changed sized
13540     * @li "windows,close,request": A JavaScript request to close the current
13541     * window was requested
13542     * @li "zoom,animated,end": Animated zoom finished
13543     *
13544     * available styles:
13545     * - default
13546     *
13547     * An example of use of web:
13548     *
13549     * - @ref web_example_01 TBD
13550     */
13551
13552    /**
13553     * @addtogroup Web
13554     * @{
13555     */
13556
13557    /**
13558     * Structure used to report load errors.
13559     *
13560     * Load errors are reported as signal by elm_web. All the strings are
13561     * temporary references and should @b not be used after the signal
13562     * callback returns. If it's required, make copies with strdup() or
13563     * eina_stringshare_add() (they are not even guaranteed to be
13564     * stringshared, so must use eina_stringshare_add() and not
13565     * eina_stringshare_ref()).
13566     */
13567    typedef struct _Elm_Web_Frame_Load_Error Elm_Web_Frame_Load_Error;
13568    /**
13569     * Structure used to report load errors.
13570     *
13571     * Load errors are reported as signal by elm_web. All the strings are
13572     * temporary references and should @b not be used after the signal
13573     * callback returns. If it's required, make copies with strdup() or
13574     * eina_stringshare_add() (they are not even guaranteed to be
13575     * stringshared, so must use eina_stringshare_add() and not
13576     * eina_stringshare_ref()).
13577     */
13578    struct _Elm_Web_Frame_Load_Error
13579      {
13580         int code; /**< Numeric error code */
13581         Eina_Bool is_cancellation; /**< Error produced by cancelling a request */
13582         const char *domain; /**< Error domain name */
13583         const char *description; /**< Error description (already localized) */
13584         const char *failing_url; /**< The URL that failed to load */
13585         Evas_Object *frame; /**< Frame object that produced the error */
13586      };
13587
13588    /**
13589     * The possibles types that the items in a menu can be
13590     */
13591    typedef enum _Elm_Web_Menu_Item_Type
13592      {
13593         ELM_WEB_MENU_SEPARATOR,
13594         ELM_WEB_MENU_GROUP,
13595         ELM_WEB_MENU_OPTION
13596      } Elm_Web_Menu_Item_Type;
13597
13598    /**
13599     * Structure describing the items in a menu
13600     */
13601    typedef struct _Elm_Web_Menu_Item Elm_Web_Menu_Item;
13602    /**
13603     * Structure describing the items in a menu
13604     */
13605    struct _Elm_Web_Menu_Item
13606      {
13607         const char *text; /**< The text for the item */
13608         Elm_Web_Menu_Item_Type type; /**< The type of the item */
13609      };
13610
13611    /**
13612     * Structure describing the menu of a popup
13613     *
13614     * This structure will be passed as the @c event_info for the "popup,create"
13615     * signal, which is emitted when a dropdown menu is opened. Users wanting
13616     * to handle these popups by themselves should listen to this signal and
13617     * set the @c handled property of the struct to @c EINA_TRUE. Leaving this
13618     * property as @c EINA_FALSE means that the user will not handle the popup
13619     * and the default implementation will be used.
13620     *
13621     * When the popup is ready to be dismissed, a "popup,willdelete" signal
13622     * will be emitted to notify the user that it can destroy any objects and
13623     * free all data related to it.
13624     *
13625     * @see elm_web_popup_selected_set()
13626     * @see elm_web_popup_destroy()
13627     */
13628    typedef struct _Elm_Web_Menu Elm_Web_Menu;
13629    /**
13630     * Structure describing the menu of a popup
13631     *
13632     * This structure will be passed as the @c event_info for the "popup,create"
13633     * signal, which is emitted when a dropdown menu is opened. Users wanting
13634     * to handle these popups by themselves should listen to this signal and
13635     * set the @c handled property of the struct to @c EINA_TRUE. Leaving this
13636     * property as @c EINA_FALSE means that the user will not handle the popup
13637     * and the default implementation will be used.
13638     *
13639     * When the popup is ready to be dismissed, a "popup,willdelete" signal
13640     * will be emitted to notify the user that it can destroy any objects and
13641     * free all data related to it.
13642     *
13643     * @see elm_web_popup_selected_set()
13644     * @see elm_web_popup_destroy()
13645     */
13646    struct _Elm_Web_Menu
13647      {
13648         Eina_List *items; /**< List of #Elm_Web_Menu_Item */
13649         int x; /**< The X position of the popup, relative to the elm_web object */
13650         int y; /**< The Y position of the popup, relative to the elm_web object */
13651         int width; /**< Width of the popup menu */
13652         int height; /**< Height of the popup menu */
13653
13654         Eina_Bool handled : 1; /**< Set to @c EINA_TRUE by the user to indicate that the popup has been handled and the default implementation should be ignored. Leave as @c EINA_FALSE otherwise. */
13655      };
13656
13657    typedef struct _Elm_Web_Download Elm_Web_Download;
13658    struct _Elm_Web_Download
13659      {
13660         const char *url;
13661      };
13662
13663    /**
13664     * Types of zoom available.
13665     */
13666    typedef enum _Elm_Web_Zoom_Mode
13667      {
13668         ELM_WEB_ZOOM_MODE_MANUAL = 0, /**< Zoom controlled normally by elm_web_zoom_set */
13669         ELM_WEB_ZOOM_MODE_AUTO_FIT, /**< Zoom until content fits in web object */
13670         ELM_WEB_ZOOM_MODE_AUTO_FILL, /**< Zoom until content fills web object */
13671         ELM_WEB_ZOOM_MODE_LAST
13672      } Elm_Web_Zoom_Mode;
13673    /**
13674     * Opaque handler containing the features (such as statusbar, menubar, etc)
13675     * that are to be set on a newly requested window.
13676     */
13677    typedef struct _Elm_Web_Window_Features Elm_Web_Window_Features;
13678    /**
13679     * Callback type for the create_window hook.
13680     *
13681     * The function parameters are:
13682     * @li @p data User data pointer set when setting the hook function
13683     * @li @p obj The elm_web object requesting the new window
13684     * @li @p js Set to @c EINA_TRUE if the request was originated from
13685     * JavaScript. @c EINA_FALSE otherwise.
13686     * @li @p window_features A pointer of #Elm_Web_Window_Features indicating
13687     * the features requested for the new window.
13688     *
13689     * The returned value of the function should be the @c elm_web widget where
13690     * the request will be loaded. That is, if a new window or tab is created,
13691     * the elm_web widget in it should be returned, and @b NOT the window
13692     * object.
13693     * Returning @c NULL should cancel the request.
13694     *
13695     * @see elm_web_window_create_hook_set()
13696     */
13697    typedef Evas_Object *(*Elm_Web_Window_Open)(void *data, Evas_Object *obj, Eina_Bool js, const Elm_Web_Window_Features *window_features);
13698    /**
13699     * Callback type for the JS alert hook.
13700     *
13701     * The function parameters are:
13702     * @li @p data User data pointer set when setting the hook function
13703     * @li @p obj The elm_web object requesting the new window
13704     * @li @p message The message to show in the alert dialog
13705     *
13706     * The function should return the object representing the alert dialog.
13707     * Elm_Web will run a second main loop to handle the dialog and normal
13708     * flow of the application will be restored when the object is deleted, so
13709     * the user should handle the popup properly in order to delete the object
13710     * when the action is finished.
13711     * If the function returns @c NULL the popup will be ignored.
13712     *
13713     * @see elm_web_dialog_alert_hook_set()
13714     */
13715    typedef Evas_Object *(*Elm_Web_Dialog_Alert)(void *data, Evas_Object *obj, const char *message);
13716    /**
13717     * Callback type for the JS confirm hook.
13718     *
13719     * The function parameters are:
13720     * @li @p data User data pointer set when setting the hook function
13721     * @li @p obj The elm_web object requesting the new window
13722     * @li @p message The message to show in the confirm dialog
13723     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13724     * the user selected @c Ok, @c EINA_FALSE otherwise.
13725     *
13726     * The function should return the object representing the confirm dialog.
13727     * Elm_Web will run a second main loop to handle the dialog and normal
13728     * flow of the application will be restored when the object is deleted, so
13729     * the user should handle the popup properly in order to delete the object
13730     * when the action is finished.
13731     * If the function returns @c NULL the popup will be ignored.
13732     *
13733     * @see elm_web_dialog_confirm_hook_set()
13734     */
13735    typedef Evas_Object *(*Elm_Web_Dialog_Confirm)(void *data, Evas_Object *obj, const char *message, Eina_Bool *ret);
13736    /**
13737     * Callback type for the JS prompt hook.
13738     *
13739     * The function parameters are:
13740     * @li @p data User data pointer set when setting the hook function
13741     * @li @p obj The elm_web object requesting the new window
13742     * @li @p message The message to show in the prompt dialog
13743     * @li @p def_value The default value to present the user in the entry
13744     * @li @p value Pointer where to store the value given by the user. Must
13745     * be a malloc'ed string or @c NULL if the user cancelled the popup.
13746     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13747     * the user selected @c Ok, @c EINA_FALSE otherwise.
13748     *
13749     * The function should return the object representing the prompt dialog.
13750     * Elm_Web will run a second main loop to handle the dialog and normal
13751     * flow of the application will be restored when the object is deleted, so
13752     * the user should handle the popup properly in order to delete the object
13753     * when the action is finished.
13754     * If the function returns @c NULL the popup will be ignored.
13755     *
13756     * @see elm_web_dialog_prompt_hook_set()
13757     */
13758    typedef Evas_Object *(*Elm_Web_Dialog_Prompt)(void *data, Evas_Object *obj, const char *message, const char *def_value, char **value, Eina_Bool *ret);
13759    /**
13760     * Callback type for the JS file selector hook.
13761     *
13762     * The function parameters are:
13763     * @li @p data User data pointer set when setting the hook function
13764     * @li @p obj The elm_web object requesting the new window
13765     * @li @p allows_multiple @c EINA_TRUE if multiple files can be selected.
13766     * @li @p accept_types Mime types accepted
13767     * @li @p selected Pointer where to store the list of malloc'ed strings
13768     * containing the path to each file selected. Must be @c NULL if the file
13769     * dialog is cancelled
13770     * @li @p ret Pointer where to store the user selection. @c EINA_TRUE if
13771     * the user selected @c Ok, @c EINA_FALSE otherwise.
13772     *
13773     * The function should return the object representing the file selector
13774     * dialog.
13775     * Elm_Web will run a second main loop to handle the dialog and normal
13776     * flow of the application will be restored when the object is deleted, so
13777     * the user should handle the popup properly in order to delete the object
13778     * when the action is finished.
13779     * If the function returns @c NULL the popup will be ignored.
13780     *
13781     * @see elm_web_dialog_file selector_hook_set()
13782     */
13783    typedef Evas_Object *(*Elm_Web_Dialog_File_Selector)(void *data, Evas_Object *obj, Eina_Bool allows_multiple, Eina_List *accept_types, Eina_List **selected, Eina_Bool *ret);
13784    /**
13785     * Callback type for the JS console message hook.
13786     *
13787     * When a console message is added from JavaScript, any set function to the
13788     * console message hook will be called for the user to handle. There is no
13789     * default implementation of this hook.
13790     *
13791     * The function parameters are:
13792     * @li @p data User data pointer set when setting the hook function
13793     * @li @p obj The elm_web object that originated the message
13794     * @li @p message The message sent
13795     * @li @p line_number The line number
13796     * @li @p source_id Source id
13797     *
13798     * @see elm_web_console_message_hook_set()
13799     */
13800    typedef void (*Elm_Web_Console_Message)(void *data, Evas_Object *obj, const char *message, unsigned int line_number, const char *source_id);
13801    /**
13802     * Add a new web object to the parent.
13803     *
13804     * @param parent The parent object.
13805     * @return The new object or NULL if it cannot be created.
13806     *
13807     * @see elm_web_uri_set()
13808     * @see elm_web_webkit_view_get()
13809     */
13810    EAPI Evas_Object                 *elm_web_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13811
13812    /**
13813     * Get internal ewk_view object from web object.
13814     *
13815     * Elementary may not provide some low level features of EWebKit,
13816     * instead of cluttering the API with proxy methods we opted to
13817     * return the internal reference. Be careful using it as it may
13818     * interfere with elm_web behavior.
13819     *
13820     * @param obj The web object.
13821     * @return The internal ewk_view object or NULL if it does not
13822     *         exist. (Failure to create or Elementary compiled without
13823     *         ewebkit)
13824     *
13825     * @see elm_web_add()
13826     */
13827    EAPI Evas_Object                 *elm_web_webkit_view_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13828
13829    /**
13830     * Sets the function to call when a new window is requested
13831     *
13832     * This hook will be called when a request to create a new window is
13833     * issued from the web page loaded.
13834     * There is no default implementation for this feature, so leaving this
13835     * unset or passing @c NULL in @p func will prevent new windows from
13836     * opening.
13837     *
13838     * @param obj The web object where to set the hook function
13839     * @param func The hook function to be called when a window is requested
13840     * @param data User data
13841     */
13842    EAPI void                         elm_web_window_create_hook_set(Evas_Object *obj, Elm_Web_Window_Open func, void *data);
13843    /**
13844     * Sets the function to call when an alert dialog
13845     *
13846     * This hook will be called when a JavaScript alert dialog is requested.
13847     * If no function is set or @c NULL is passed in @p func, the default
13848     * implementation will take place.
13849     *
13850     * @param obj The web object where to set the hook function
13851     * @param func The callback function to be used
13852     * @param data User data
13853     *
13854     * @see elm_web_inwin_mode_set()
13855     */
13856    EAPI void                         elm_web_dialog_alert_hook_set(Evas_Object *obj, Elm_Web_Dialog_Alert func, void *data);
13857    /**
13858     * Sets the function to call when an confirm dialog
13859     *
13860     * This hook will be called when a JavaScript confirm dialog is requested.
13861     * If no function is set or @c NULL is passed in @p func, the default
13862     * implementation will take place.
13863     *
13864     * @param obj The web object where to set the hook function
13865     * @param func The callback function to be used
13866     * @param data User data
13867     *
13868     * @see elm_web_inwin_mode_set()
13869     */
13870    EAPI void                         elm_web_dialog_confirm_hook_set(Evas_Object *obj, Elm_Web_Dialog_Confirm func, void *data);
13871    /**
13872     * Sets the function to call when an prompt dialog
13873     *
13874     * This hook will be called when a JavaScript prompt dialog is requested.
13875     * If no function is set or @c NULL is passed in @p func, the default
13876     * implementation will take place.
13877     *
13878     * @param obj The web object where to set the hook function
13879     * @param func The callback function to be used
13880     * @param data User data
13881     *
13882     * @see elm_web_inwin_mode_set()
13883     */
13884    EAPI void                         elm_web_dialog_prompt_hook_set(Evas_Object *obj, Elm_Web_Dialog_Prompt func, void *data);
13885    /**
13886     * Sets the function to call when an file selector dialog
13887     *
13888     * This hook will be called when a JavaScript file selector dialog is
13889     * requested.
13890     * If no function is set or @c NULL is passed in @p func, the default
13891     * implementation will take place.
13892     *
13893     * @param obj The web object where to set the hook function
13894     * @param func The callback function to be used
13895     * @param data User data
13896     *
13897     * @see elm_web_inwin_mode_set()
13898     */
13899    EAPI void                         elm_web_dialog_file_selector_hook_set(Evas_Object *obj, Elm_Web_Dialog_File_Selector func, void *data);
13900    /**
13901     * Sets the function to call when a console message is emitted from JS
13902     *
13903     * This hook will be called when a console message is emitted from
13904     * JavaScript. There is no default implementation for this feature.
13905     *
13906     * @param obj The web object where to set the hook function
13907     * @param func The callback function to be used
13908     * @param data User data
13909     */
13910    EAPI void                         elm_web_console_message_hook_set(Evas_Object *obj, Elm_Web_Console_Message func, void *data);
13911    /**
13912     * Gets the status of the tab propagation
13913     *
13914     * @param obj The web object to query
13915     * @return EINA_TRUE if tab propagation is enabled, EINA_FALSE otherwise
13916     *
13917     * @see elm_web_tab_propagate_set()
13918     */
13919    EAPI Eina_Bool                    elm_web_tab_propagate_get(const Evas_Object *obj);
13920    /**
13921     * Sets whether to use tab propagation
13922     *
13923     * If tab propagation is enabled, whenever the user presses the Tab key,
13924     * Elementary will handle it and switch focus to the next widget.
13925     * The default value is disabled, where WebKit will handle the Tab key to
13926     * cycle focus though its internal objects, jumping to the next widget
13927     * only when that cycle ends.
13928     *
13929     * @param obj The web object
13930     * @param propagate Whether to propagate Tab keys to Elementary or not
13931     */
13932    EAPI void                         elm_web_tab_propagate_set(Evas_Object *obj, Eina_Bool propagate);
13933    /**
13934     * Sets the URI for the web object
13935     *
13936     * It must be a full URI, with resource included, in the form
13937     * http://www.enlightenment.org or file:///tmp/something.html
13938     *
13939     * @param obj The web object
13940     * @param uri The URI to set
13941     * @return EINA_TRUE if the URI could be, EINA_FALSE if an error occurred
13942     */
13943    EAPI Eina_Bool                    elm_web_uri_set(Evas_Object *obj, const char *uri);
13944    /**
13945     * Gets the current URI for the object
13946     *
13947     * The returned string must not be freed and is guaranteed to be
13948     * stringshared.
13949     *
13950     * @param obj The web object
13951     * @return A stringshared internal string with the current URI, or NULL on
13952     * failure
13953     */
13954    EAPI const char                  *elm_web_uri_get(const Evas_Object *obj);
13955    /**
13956     * Gets the current title
13957     *
13958     * The returned string must not be freed and is guaranteed to be
13959     * stringshared.
13960     *
13961     * @param obj The web object
13962     * @return A stringshared internal string with the current title, or NULL on
13963     * failure
13964     */
13965    EAPI const char                  *elm_web_title_get(const Evas_Object *obj);
13966    /**
13967     * Sets the background color to be used by the web object
13968     *
13969     * This is the color that will be used by default when the loaded page
13970     * does not set it's own. Color values are pre-multiplied.
13971     *
13972     * @param obj The web object
13973     * @param r Red component
13974     * @param g Green component
13975     * @param b Blue component
13976     * @param a Alpha component
13977     */
13978    EAPI void                         elm_web_bg_color_set(Evas_Object *obj, int r, int g, int b, int a);
13979    /**
13980     * Gets the background color to be used by the web object
13981     *
13982     * This is the color that will be used by default when the loaded page
13983     * does not set it's own. Color values are pre-multiplied.
13984     *
13985     * @param obj The web object
13986     * @param r Red component
13987     * @param g Green component
13988     * @param b Blue component
13989     * @param a Alpha component
13990     */
13991    EAPI void                         elm_web_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b, int *a);
13992    /**
13993     * Gets a copy of the currently selected text
13994     *
13995     * The string returned must be freed by the user when it's done with it.
13996     *
13997     * @param obj The web object
13998     * @return A newly allocated string, or NULL if nothing is selected or an
13999     * error occurred
14000     */
14001    EAPI char                        *elm_view_selection_get(const Evas_Object *obj);
14002    /**
14003     * Tells the web object which index in the currently open popup was selected
14004     *
14005     * When the user handles the popup creation from the "popup,created" signal,
14006     * it needs to tell the web object which item was selected by calling this
14007     * function with the index corresponding to the item.
14008     *
14009     * @param obj The web object
14010     * @param index The index selected
14011     *
14012     * @see elm_web_popup_destroy()
14013     */
14014    EAPI void                         elm_web_popup_selected_set(Evas_Object *obj, int index);
14015    /**
14016     * Dismisses an open dropdown popup
14017     *
14018     * When the popup from a dropdown widget is to be dismissed, either after
14019     * selecting an option or to cancel it, this function must be called, which
14020     * will later emit an "popup,willdelete" signal to notify the user that
14021     * any memory and objects related to this popup can be freed.
14022     *
14023     * @param obj The web object
14024     * @return EINA_TRUE if the menu was successfully destroyed, or EINA_FALSE
14025     * if there was no menu to destroy
14026     */
14027    EAPI Eina_Bool                    elm_web_popup_destroy(Evas_Object *obj);
14028    /**
14029     * Searches the given string in a document.
14030     *
14031     * @param obj The web object where to search the text
14032     * @param string String to search
14033     * @param case_sensitive If search should be case sensitive or not
14034     * @param forward If search is from cursor and on or backwards
14035     * @param wrap If search should wrap at the end
14036     *
14037     * @return @c EINA_TRUE if the given string was found, @c EINA_FALSE if not
14038     * or failure
14039     */
14040    EAPI Eina_Bool                    elm_web_text_search(const Evas_Object *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap);
14041    /**
14042     * Marks matches of the given string in a document.
14043     *
14044     * @param obj The web object where to search text
14045     * @param string String to match
14046     * @param case_sensitive If match should be case sensitive or not
14047     * @param highlight If matches should be highlighted
14048     * @param limit Maximum amount of matches, or zero to unlimited
14049     *
14050     * @return number of matched @a string
14051     */
14052    EAPI unsigned int                 elm_web_text_matches_mark(Evas_Object *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit);
14053    /**
14054     * Clears all marked matches in the document
14055     *
14056     * @param obj The web object
14057     *
14058     * @return EINA_TRUE on success, EINA_FALSE otherwise
14059     */
14060    EAPI Eina_Bool                    elm_web_text_matches_unmark_all(Evas_Object *obj);
14061    /**
14062     * Sets whether to highlight the matched marks
14063     *
14064     * If enabled, marks set with elm_web_text_matches_mark() will be
14065     * highlighted.
14066     *
14067     * @param obj The web object
14068     * @param highlight Whether to highlight the marks or not
14069     *
14070     * @return EINA_TRUE on success, EINA_FALSE otherwise
14071     */
14072    EAPI Eina_Bool                    elm_web_text_matches_highlight_set(Evas_Object *obj, Eina_Bool highlight);
14073    /**
14074     * Gets whether highlighting marks is enabled
14075     *
14076     * @param The web object
14077     *
14078     * @return EINA_TRUE is marks are set to be highlighted, EINA_FALSE
14079     * otherwise
14080     */
14081    EAPI Eina_Bool                    elm_web_text_matches_highlight_get(const Evas_Object *obj);
14082    /**
14083     * Gets the overall loading progress of the page
14084     *
14085     * Returns the estimated loading progress of the page, with a value between
14086     * 0.0 and 1.0. This is an estimated progress accounting for all the frames
14087     * included in the page.
14088     *
14089     * @param The web object
14090     *
14091     * @return A value between 0.0 and 1.0 indicating the progress, or -1.0 on
14092     * failure
14093     */
14094    EAPI double                       elm_web_load_progress_get(const Evas_Object *obj);
14095    /**
14096     * Stops loading the current page
14097     *
14098     * Cancels the loading of the current page in the web object. This will
14099     * cause a "load,error" signal to be emitted, with the is_cancellation
14100     * flag set to EINA_TRUE.
14101     *
14102     * @param obj The web object
14103     *
14104     * @return EINA_TRUE if the cancel was successful, EINA_FALSE otherwise
14105     */
14106    EAPI Eina_Bool                    elm_web_stop(Evas_Object *obj);
14107    /**
14108     * Requests a reload of the current document in the object
14109     *
14110     * @param obj The web object
14111     *
14112     * @return EINA_TRUE on success, EINA_FALSE otherwise
14113     */
14114    EAPI Eina_Bool                    elm_web_reload(Evas_Object *obj);
14115    /**
14116     * Requests a reload of the current document, avoiding any existing caches
14117     *
14118     * @param obj The web object
14119     *
14120     * @return EINA_TRUE on success, EINA_FALSE otherwise
14121     */
14122    EAPI Eina_Bool                    elm_web_reload_full(Evas_Object *obj);
14123    /**
14124     * Goes back one step in the browsing history
14125     *
14126     * This is equivalent to calling elm_web_object_navigate(obj, -1);
14127     *
14128     * @param obj The web object
14129     *
14130     * @return EINA_TRUE on success, EINA_FALSE otherwise
14131     *
14132     * @see elm_web_history_enable_set()
14133     * @see elm_web_back_possible()
14134     * @see elm_web_forward()
14135     * @see elm_web_navigate()
14136     */
14137    EAPI Eina_Bool                    elm_web_back(Evas_Object *obj);
14138    /**
14139     * Goes forward one step in the browsing history
14140     *
14141     * This is equivalent to calling elm_web_object_navigate(obj, 1);
14142     *
14143     * @param obj The web object
14144     *
14145     * @return EINA_TRUE on success, EINA_FALSE otherwise
14146     *
14147     * @see elm_web_history_enable_set()
14148     * @see elm_web_forward_possible()
14149     * @see elm_web_back()
14150     * @see elm_web_navigate()
14151     */
14152    EAPI Eina_Bool                    elm_web_forward(Evas_Object *obj);
14153    /**
14154     * Jumps the given number of steps in the browsing history
14155     *
14156     * The @p steps value can be a negative integer to back in history, or a
14157     * positive to move forward.
14158     *
14159     * @param obj The web object
14160     * @param steps The number of steps to jump
14161     *
14162     * @return EINA_TRUE on success, EINA_FALSE on error or if not enough
14163     * history exists to jump the given number of steps
14164     *
14165     * @see elm_web_history_enable_set()
14166     * @see elm_web_navigate_possible()
14167     * @see elm_web_back()
14168     * @see elm_web_forward()
14169     */
14170    EAPI Eina_Bool                    elm_web_navigate(Evas_Object *obj, int steps);
14171    /**
14172     * Queries whether it's possible to go back in history
14173     *
14174     * @param obj The web object
14175     *
14176     * @return EINA_TRUE if it's possible to back in history, EINA_FALSE
14177     * otherwise
14178     */
14179    EAPI Eina_Bool                    elm_web_back_possible(Evas_Object *obj);
14180    /**
14181     * Queries whether it's possible to go forward in history
14182     *
14183     * @param obj The web object
14184     *
14185     * @return EINA_TRUE if it's possible to forward in history, EINA_FALSE
14186     * otherwise
14187     */
14188    EAPI Eina_Bool                    elm_web_forward_possible(Evas_Object *obj);
14189    /**
14190     * Queries whether it's possible to jump the given number of steps
14191     *
14192     * The @p steps value can be a negative integer to back in history, or a
14193     * positive to move forward.
14194     *
14195     * @param obj The web object
14196     * @param steps The number of steps to check for
14197     *
14198     * @return EINA_TRUE if enough history exists to perform the given jump,
14199     * EINA_FALSE otherwise
14200     */
14201    EAPI Eina_Bool                    elm_web_navigate_possible(Evas_Object *obj, int steps);
14202    /**
14203     * Gets whether browsing history is enabled for the given object
14204     *
14205     * @param obj The web object
14206     *
14207     * @return EINA_TRUE if history is enabled, EINA_FALSE otherwise
14208     */
14209    EAPI Eina_Bool                    elm_web_history_enable_get(const Evas_Object *obj);
14210    /**
14211     * Enables or disables the browsing history
14212     *
14213     * @param obj The web object
14214     * @param enable Whether to enable or disable the browsing history
14215     */
14216    EAPI void                         elm_web_history_enable_set(Evas_Object *obj, Eina_Bool enable);
14217    /**
14218     * Sets the zoom level of the web object
14219     *
14220     * Zoom level matches the Webkit API, so 1.0 means normal zoom, with higher
14221     * values meaning zoom in and lower meaning zoom out. This function will
14222     * only affect the zoom level if the mode set with elm_web_zoom_mode_set()
14223     * is ::ELM_WEB_ZOOM_MODE_MANUAL.
14224     *
14225     * @param obj The web object
14226     * @param zoom The zoom level to set
14227     */
14228    EAPI void                         elm_web_zoom_set(Evas_Object *obj, double zoom);
14229    /**
14230     * Gets the current zoom level set on the web object
14231     *
14232     * Note that this is the zoom level set on the web object and not that
14233     * of the underlying Webkit one. In the ::ELM_WEB_ZOOM_MODE_MANUAL mode,
14234     * the two zoom levels should match, but for the other two modes the
14235     * Webkit zoom is calculated internally to match the chosen mode without
14236     * changing the zoom level set for the web object.
14237     *
14238     * @param obj The web object
14239     *
14240     * @return The zoom level set on the object
14241     */
14242    EAPI double                       elm_web_zoom_get(const Evas_Object *obj);
14243    /**
14244     * Sets the zoom mode to use
14245     *
14246     * The modes can be any of those defined in ::Elm_Web_Zoom_Mode, except
14247     * ::ELM_WEB_ZOOM_MODE_LAST. The default is ::ELM_WEB_ZOOM_MODE_MANUAL.
14248     *
14249     * ::ELM_WEB_ZOOM_MODE_MANUAL means the zoom level will be controlled
14250     * with the elm_web_zoom_set() function.
14251     * ::ELM_WEB_ZOOM_MODE_AUTO_FIT will calculate the needed zoom level to
14252     * make sure the entirety of the web object's contents are shown.
14253     * ::ELM_WEB_ZOOM_MODE_AUTO_FILL will calculate the needed zoom level to
14254     * fit the contents in the web object's size, without leaving any space
14255     * unused.
14256     *
14257     * @param obj The web object
14258     * @param mode The mode to set
14259     */
14260    EAPI void                         elm_web_zoom_mode_set(Evas_Object *obj, Elm_Web_Zoom_Mode mode);
14261    /**
14262     * Gets the currently set zoom mode
14263     *
14264     * @param obj The web object
14265     *
14266     * @return The current zoom mode set for the object, or
14267     * ::ELM_WEB_ZOOM_MODE_LAST on error
14268     */
14269    EAPI Elm_Web_Zoom_Mode            elm_web_zoom_mode_get(const Evas_Object *obj);
14270    /**
14271     * Shows the given region in the web object
14272     *
14273     * @param obj The web object
14274     * @param x The x coordinate of the region to show
14275     * @param y The y coordinate of the region to show
14276     * @param w The width of the region to show
14277     * @param h The height of the region to show
14278     */
14279    EAPI void                         elm_web_region_show(Evas_Object *obj, int x, int y, int w, int h);
14280    /**
14281     * Brings in the region to the visible area
14282     *
14283     * Like elm_web_region_show(), but it animates the scrolling of the object
14284     * to show the area
14285     *
14286     * @param obj The web object
14287     * @param x The x coordinate of the region to show
14288     * @param y The y coordinate of the region to show
14289     * @param w The width of the region to show
14290     * @param h The height of the region to show
14291     */
14292    EAPI void                         elm_web_region_bring_in(Evas_Object *obj, int x, int y, int w, int h);
14293    /**
14294     * Sets the default dialogs to use an Inwin instead of a normal window
14295     *
14296     * If set, then the default implementation for the JavaScript dialogs and
14297     * file selector will be opened in an Inwin. Otherwise they will use a
14298     * normal separated window.
14299     *
14300     * @param obj The web object
14301     * @param value EINA_TRUE to use Inwin, EINA_FALSE to use a normal window
14302     */
14303    EAPI void                         elm_web_inwin_mode_set(Evas_Object *obj, Eina_Bool value);
14304    /**
14305     * Gets whether Inwin mode is set for the current object
14306     *
14307     * @param obj The web object
14308     *
14309     * @return EINA_TRUE if Inwin mode is set, EINA_FALSE otherwise
14310     */
14311    EAPI Eina_Bool                    elm_web_inwin_mode_get(const Evas_Object *obj);
14312
14313    EAPI void                         elm_web_window_features_ref(Elm_Web_Window_Features *wf);
14314    EAPI void                         elm_web_window_features_unref(Elm_Web_Window_Features *wf);
14315    EAPI void                         elm_web_window_features_bool_property_get(const Elm_Web_Window_Features *wf, Eina_Bool *toolbar_visible, Eina_Bool *statusbar_visible, Eina_Bool *scrollbars_visible, Eina_Bool *menubar_visible, Eina_Bool *locationbar_visble, Eina_Bool *fullscreen);
14316    EAPI void                         elm_web_window_features_int_property_get(const Elm_Web_Window_Features *wf, int *x, int *y, int *w, int *h);
14317
14318    /**
14319     * @}
14320     */
14321
14322    /**
14323     * @defgroup Hoversel Hoversel
14324     *
14325     * @image html img/widget/hoversel/preview-00.png
14326     * @image latex img/widget/hoversel/preview-00.eps
14327     *
14328     * A hoversel is a button that pops up a list of items (automatically
14329     * choosing the direction to display) that have a label and, optionally, an
14330     * icon to select from. It is a convenience widget to avoid the need to do
14331     * all the piecing together yourself. It is intended for a small number of
14332     * items in the hoversel menu (no more than 8), though is capable of many
14333     * more.
14334     *
14335     * Signals that you can add callbacks for are:
14336     * "clicked" - the user clicked the hoversel button and popped up the sel
14337     * "selected" - an item in the hoversel list is selected. event_info is the item
14338     * "dismissed" - the hover is dismissed
14339     *
14340     * See @ref tutorial_hoversel for an example.
14341     * @{
14342     */
14343    typedef struct _Elm_Hoversel_Item Elm_Hoversel_Item; /**< Item of Elm_Hoversel. Sub-type of Elm_Widget_Item */
14344    /**
14345     * @brief Add a new Hoversel object
14346     *
14347     * @param parent The parent object
14348     * @return The new object or NULL if it cannot be created
14349     */
14350    EAPI Evas_Object       *elm_hoversel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14351    /**
14352     * @brief This sets the hoversel to expand horizontally.
14353     *
14354     * @param obj The hoversel object
14355     * @param horizontal If true, the hover will expand horizontally to the
14356     * right.
14357     *
14358     * @note The initial button will display horizontally regardless of this
14359     * setting.
14360     */
14361    EAPI void               elm_hoversel_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
14362    /**
14363     * @brief This returns whether the hoversel is set to expand horizontally.
14364     *
14365     * @param obj The hoversel object
14366     * @return If true, the hover will expand horizontally to the right.
14367     *
14368     * @see elm_hoversel_horizontal_set()
14369     */
14370    EAPI Eina_Bool          elm_hoversel_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14371    /**
14372     * @brief Set the Hover parent
14373     *
14374     * @param obj The hoversel object
14375     * @param parent The parent to use
14376     *
14377     * Sets the hover parent object, the area that will be darkened when the
14378     * hoversel is clicked. Should probably be the window that the hoversel is
14379     * in. See @ref Hover objects for more information.
14380     */
14381    EAPI void               elm_hoversel_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
14382    /**
14383     * @brief Get the Hover parent
14384     *
14385     * @param obj The hoversel object
14386     * @return The used parent
14387     *
14388     * Gets the hover parent object.
14389     *
14390     * @see elm_hoversel_hover_parent_set()
14391     */
14392    EAPI Evas_Object       *elm_hoversel_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14393    /**
14394     * @brief Set the hoversel button label
14395     *
14396     * @param obj The hoversel object
14397     * @param label The label text.
14398     *
14399     * This sets the label of the button that is always visible (before it is
14400     * clicked and expanded).
14401     *
14402     * @deprecated elm_object_text_set()
14403     */
14404    EINA_DEPRECATED EAPI void               elm_hoversel_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
14405    /**
14406     * @brief Get the hoversel button label
14407     *
14408     * @param obj The hoversel object
14409     * @return The label text.
14410     *
14411     * @deprecated elm_object_text_get()
14412     */
14413    EINA_DEPRECATED EAPI const char        *elm_hoversel_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14414    /**
14415     * @brief Set the icon of the hoversel button
14416     *
14417     * @param obj The hoversel object
14418     * @param icon The icon object
14419     *
14420     * Sets the icon of the button that is always visible (before it is clicked
14421     * and expanded).  Once the icon object is set, a previously set one will be
14422     * deleted, if you want to keep that old content object, use the
14423     * elm_hoversel_icon_unset() function.
14424     *
14425     * @see elm_object_content_set() for the button widget
14426     */
14427    EAPI void               elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
14428    /**
14429     * @brief Get the icon of the hoversel button
14430     *
14431     * @param obj The hoversel object
14432     * @return The icon object
14433     *
14434     * Get the icon of the button that is always visible (before it is clicked
14435     * and expanded). Also see elm_object_content_get() for the button widget.
14436     *
14437     * @see elm_hoversel_icon_set()
14438     */
14439    EAPI Evas_Object       *elm_hoversel_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14440    /**
14441     * @brief Get and unparent the icon of the hoversel button
14442     *
14443     * @param obj The hoversel object
14444     * @return The icon object that was being used
14445     *
14446     * Unparent and return the icon of the button that is always visible
14447     * (before it is clicked and expanded).
14448     *
14449     * @see elm_hoversel_icon_set()
14450     * @see elm_object_content_unset() for the button widget
14451     */
14452    EAPI Evas_Object       *elm_hoversel_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14453    /**
14454     * @brief This triggers the hoversel popup from code, the same as if the user
14455     * had clicked the button.
14456     *
14457     * @param obj The hoversel object
14458     */
14459    EAPI void               elm_hoversel_hover_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
14460    /**
14461     * @brief This dismisses the hoversel popup as if the user had clicked
14462     * outside the hover.
14463     *
14464     * @param obj The hoversel object
14465     */
14466    EAPI void               elm_hoversel_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
14467    /**
14468     * @brief Returns whether the hoversel is expanded.
14469     *
14470     * @param obj The hoversel object
14471     * @return  This will return EINA_TRUE if the hoversel is expanded or
14472     * EINA_FALSE if it is not expanded.
14473     */
14474    EAPI Eina_Bool          elm_hoversel_expanded_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14475    /**
14476     * @brief This will remove all the children items from the hoversel.
14477     *
14478     * @param obj The hoversel object
14479     *
14480     * @warning Should @b not be called while the hoversel is active; use
14481     * elm_hoversel_expanded_get() to check first.
14482     *
14483     * @see elm_hoversel_item_del_cb_set()
14484     * @see elm_hoversel_item_del()
14485     */
14486    EAPI void               elm_hoversel_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
14487    /**
14488     * @brief Get the list of items within the given hoversel.
14489     *
14490     * @param obj The hoversel object
14491     * @return Returns a list of Elm_Hoversel_Item*
14492     *
14493     * @see elm_hoversel_item_add()
14494     */
14495    EAPI const Eina_List   *elm_hoversel_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14496    /**
14497     * @brief Add an item to the hoversel button
14498     *
14499     * @param obj The hoversel object
14500     * @param label The text label to use for the item (NULL if not desired)
14501     * @param icon_file An image file path on disk to use for the icon or standard
14502     * icon name (NULL if not desired)
14503     * @param icon_type The icon type if relevant
14504     * @param func Convenience function to call when this item is selected
14505     * @param data Data to pass to item-related functions
14506     * @return A handle to the item added.
14507     *
14508     * This adds an item to the hoversel to show when it is clicked. Note: if you
14509     * need to use an icon from an edje file then use
14510     * elm_hoversel_item_icon_set() right after the this function, and set
14511     * icon_file to NULL here.
14512     *
14513     * For more information on what @p icon_file and @p icon_type are see the
14514     * @ref Icon "icon documentation".
14515     */
14516    EAPI Elm_Hoversel_Item *elm_hoversel_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14517    /**
14518     * @brief Delete an item from the hoversel
14519     *
14520     * @param item The item to delete
14521     *
14522     * This deletes the item from the hoversel (should not be called while the
14523     * hoversel is active; use elm_hoversel_expanded_get() to check first).
14524     *
14525     * @see elm_hoversel_item_add()
14526     * @see elm_hoversel_item_del_cb_set()
14527     */
14528    EAPI void               elm_hoversel_item_del(Elm_Hoversel_Item *item) EINA_ARG_NONNULL(1);
14529    /**
14530     * @brief Set the function to be called when an item from the hoversel is
14531     * freed.
14532     *
14533     * @param item The item to set the callback on
14534     * @param func The function called
14535     *
14536     * That function will receive these parameters:
14537     * @li void *item_data
14538     * @li Evas_Object *the_item_object
14539     * @li Elm_Hoversel_Item *the_object_struct
14540     *
14541     * @see elm_hoversel_item_add()
14542     */
14543    EAPI void               elm_hoversel_item_del_cb_set(Elm_Hoversel_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
14544    /**
14545     * @brief This returns the data pointer supplied with elm_hoversel_item_add()
14546     * that will be passed to associated function callbacks.
14547     *
14548     * @param item The item to get the data from
14549     * @return The data pointer set with elm_hoversel_item_add()
14550     *
14551     * @see elm_hoversel_item_add()
14552     */
14553    EAPI void              *elm_hoversel_item_data_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
14554    /**
14555     * @brief This returns the label text of the given hoversel item.
14556     *
14557     * @param item The item to get the label
14558     * @return The label text of the hoversel item
14559     *
14560     * @see elm_hoversel_item_add()
14561     */
14562    EAPI const char        *elm_hoversel_item_label_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
14563    /**
14564     * @brief This sets the icon for the given hoversel item.
14565     *
14566     * @param item The item to set the icon
14567     * @param icon_file An image file path on disk to use for the icon or standard
14568     * icon name
14569     * @param icon_group The edje group to use if @p icon_file is an edje file. Set this
14570     * to NULL if the icon is not an edje file
14571     * @param icon_type The icon type
14572     *
14573     * The icon can be loaded from the standard set, from an image file, or from
14574     * an edje file.
14575     *
14576     * @see elm_hoversel_item_add()
14577     */
14578    EAPI void               elm_hoversel_item_icon_set(Elm_Hoversel_Item *it, const char *icon_file, const char *icon_group, Elm_Icon_Type icon_type) EINA_ARG_NONNULL(1);
14579    /**
14580     * @brief Get the icon object of the hoversel item
14581     *
14582     * @param item The item to get the icon from
14583     * @param icon_file The image file path on disk used for the icon or standard
14584     * icon name
14585     * @param icon_group The edje group used if @p icon_file is an edje file. NULL
14586     * if the icon is not an edje file
14587     * @param icon_type The icon type
14588     *
14589     * @see elm_hoversel_item_icon_set()
14590     * @see elm_hoversel_item_add()
14591     */
14592    EAPI void               elm_hoversel_item_icon_get(const Elm_Hoversel_Item *it, const char **icon_file, const char **icon_group, Elm_Icon_Type *icon_type) EINA_ARG_NONNULL(1);
14593    /**
14594     * @}
14595     */
14596
14597    /**
14598     * @defgroup Toolbar Toolbar
14599     * @ingroup Elementary
14600     *
14601     * @image html img/widget/toolbar/preview-00.png
14602     * @image latex img/widget/toolbar/preview-00.eps width=\textwidth
14603     *
14604     * @image html img/toolbar.png
14605     * @image latex img/toolbar.eps width=\textwidth
14606     *
14607     * A toolbar is a widget that displays a list of items inside
14608     * a box. It can be scrollable, show a menu with items that don't fit
14609     * to toolbar size or even crop them.
14610     *
14611     * Only one item can be selected at a time.
14612     *
14613     * Items can have multiple states, or show menus when selected by the user.
14614     *
14615     * Smart callbacks one can listen to:
14616     * - "clicked" - when the user clicks on a toolbar item and becomes selected.
14617     * - "language,changed" - when the program language changes
14618     *
14619     * Available styles for it:
14620     * - @c "default"
14621     * - @c "transparent" - no background or shadow, just show the content
14622     *
14623     * List of examples:
14624     * @li @ref toolbar_example_01
14625     * @li @ref toolbar_example_02
14626     * @li @ref toolbar_example_03
14627     */
14628
14629    /**
14630     * @addtogroup Toolbar
14631     * @{
14632     */
14633
14634    /**
14635     * @enum _Elm_Toolbar_Shrink_Mode
14636     * @typedef Elm_Toolbar_Shrink_Mode
14637     *
14638     * Set toolbar's items display behavior, it can be scrollabel,
14639     * show a menu with exceeding items, or simply hide them.
14640     *
14641     * @note Default value is #ELM_TOOLBAR_SHRINK_MENU. It reads value
14642     * from elm config.
14643     *
14644     * Values <b> don't </b> work as bitmask, only one can be choosen.
14645     *
14646     * @see elm_toolbar_mode_shrink_set()
14647     * @see elm_toolbar_mode_shrink_get()
14648     *
14649     * @ingroup Toolbar
14650     */
14651    typedef enum _Elm_Toolbar_Shrink_Mode
14652      {
14653         ELM_TOOLBAR_SHRINK_NONE,   /**< Set toolbar minimun size to fit all the items. */
14654         ELM_TOOLBAR_SHRINK_HIDE,   /**< Hide exceeding items. */
14655         ELM_TOOLBAR_SHRINK_SCROLL, /**< Allow accessing exceeding items through a scroller. */
14656         ELM_TOOLBAR_SHRINK_MENU,   /**< Inserts a button to pop up a menu with exceeding items. */
14657         ELM_TOOLBAR_SHRINK_LAST    /**< Indicates error if returned by elm_toolbar_shrink_mode_get() */
14658      } Elm_Toolbar_Shrink_Mode;
14659
14660    typedef struct _Elm_Toolbar_Item_State Elm_Toolbar_Item_State; /**< State of a Elm_Toolbar_Item. Can be created with elm_toolbar_item_state_add() and removed with elm_toolbar_item_state_del(). */
14661
14662    /**
14663     * Add a new toolbar widget to the given parent Elementary
14664     * (container) object.
14665     *
14666     * @param parent The parent object.
14667     * @return a new toolbar widget handle or @c NULL, on errors.
14668     *
14669     * This function inserts a new toolbar widget on the canvas.
14670     *
14671     * @ingroup Toolbar
14672     */
14673    EAPI Evas_Object            *elm_toolbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14674    /**
14675     * Set the icon size, in pixels, to be used by toolbar items.
14676     *
14677     * @param obj The toolbar object
14678     * @param icon_size The icon size in pixels
14679     *
14680     * @note Default value is @c 32. It reads value from elm config.
14681     *
14682     * @see elm_toolbar_icon_size_get()
14683     *
14684     * @ingroup Toolbar
14685     */
14686    EAPI void                    elm_toolbar_icon_size_set(Evas_Object *obj, int icon_size) EINA_ARG_NONNULL(1);
14687    /**
14688     * Get the icon size, in pixels, to be used by toolbar items.
14689     *
14690     * @param obj The toolbar object.
14691     * @return The icon size in pixels.
14692     *
14693     * @see elm_toolbar_icon_size_set() for details.
14694     *
14695     * @ingroup Toolbar
14696     */
14697    EAPI int                     elm_toolbar_icon_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14698    /**
14699     * Sets icon lookup order, for toolbar items' icons.
14700     *
14701     * @param obj The toolbar object.
14702     * @param order The icon lookup order.
14703     *
14704     * Icons added before calling this function will not be affected.
14705     * The default lookup order is #ELM_ICON_LOOKUP_THEME_FDO.
14706     *
14707     * @see elm_toolbar_icon_order_lookup_get()
14708     *
14709     * @ingroup Toolbar
14710     */
14711    EAPI void                    elm_toolbar_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
14712    /**
14713     * Gets the icon lookup order.
14714     *
14715     * @param obj The toolbar object.
14716     * @return The icon lookup order.
14717     *
14718     * @see elm_toolbar_icon_order_lookup_set() for details.
14719     *
14720     * @ingroup Toolbar
14721     */
14722    EAPI Elm_Icon_Lookup_Order   elm_toolbar_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14723    /**
14724     * Set whether the toolbar should always have an item selected.
14725     *
14726     * @param obj The toolbar object.
14727     * @param wrap @c EINA_TRUE to enable always-select mode or @c EINA_FALSE to
14728     * disable it.
14729     *
14730     * This will cause the toolbar to always have an item selected, and clicking
14731     * the selected item will not cause a selected event to be emitted. Enabling this mode
14732     * will immediately select the first toolbar item.
14733     *
14734     * Always-selected is disabled by default.
14735     *
14736     * @see elm_toolbar_always_select_mode_get().
14737     *
14738     * @ingroup Toolbar
14739     */
14740    EAPI void                    elm_toolbar_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
14741    /**
14742     * Get whether the toolbar should always have an item selected.
14743     *
14744     * @param obj The toolbar object.
14745     * @return @c EINA_TRUE means an item will always be selected, @c EINA_FALSE indicates
14746     * that it is possible to have no items selected. If @p obj is @c NULL, @c EINA_FALSE is returned.
14747     *
14748     * @see elm_toolbar_always_select_mode_set() for details.
14749     *
14750     * @ingroup Toolbar
14751     */
14752    EAPI Eina_Bool               elm_toolbar_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14753    /**
14754     * Set whether the toolbar items' should be selected by the user or not.
14755     *
14756     * @param obj The toolbar object.
14757     * @param wrap @c EINA_TRUE to disable selection or @c EINA_FALSE to
14758     * enable it.
14759     *
14760     * This will turn off the ability to select items entirely and they will
14761     * neither appear selected nor emit selected signals. The clicked
14762     * callback function will still be called.
14763     *
14764     * Selection is enabled by default.
14765     *
14766     * @see elm_toolbar_no_select_mode_get().
14767     *
14768     * @ingroup Toolbar
14769     */
14770    EAPI void                    elm_toolbar_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
14771
14772    /**
14773     * Set whether the toolbar items' should be selected by the user or not.
14774     *
14775     * @param obj The toolbar object.
14776     * @return @c EINA_TRUE means items can be selected. @c EINA_FALSE indicates
14777     * they can't. If @p obj is @c NULL, @c EINA_FALSE is returned.
14778     *
14779     * @see elm_toolbar_no_select_mode_set() for details.
14780     *
14781     * @ingroup Toolbar
14782     */
14783    EAPI Eina_Bool               elm_toolbar_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14784    /**
14785     * Append item to the toolbar.
14786     *
14787     * @param obj The toolbar object.
14788     * @param icon A string with icon name or the absolute path of an image file.
14789     * @param label The label of the item.
14790     * @param func The function to call when the item is clicked.
14791     * @param data The data to associate with the item for related callbacks.
14792     * @return The created item or @c NULL upon failure.
14793     *
14794     * A new item will be created and appended to the toolbar, i.e., will
14795     * be set as @b last item.
14796     *
14797     * Items created with this method can be deleted with
14798     * elm_toolbar_item_del().
14799     *
14800     * Associated @p data can be properly freed when item is deleted if a
14801     * callback function is set with elm_toolbar_item_del_cb_set().
14802     *
14803     * If a function is passed as argument, it will be called everytime this item
14804     * is selected, i.e., the user clicks over an unselected item.
14805     * If such function isn't needed, just passing
14806     * @c NULL as @p func is enough. The same should be done for @p data.
14807     *
14808     * Toolbar will load icon image from fdo or current theme.
14809     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14810     * If an absolute path is provided it will load it direct from a file.
14811     *
14812     * @see elm_toolbar_item_icon_set()
14813     * @see elm_toolbar_item_del()
14814     * @see elm_toolbar_item_del_cb_set()
14815     *
14816     * @ingroup Toolbar
14817     */
14818    EAPI Elm_Object_Item       *elm_toolbar_item_append(Evas_Object *obj, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14819    /**
14820     * Prepend item to the toolbar.
14821     *
14822     * @param obj The toolbar object.
14823     * @param icon A string with icon name or the absolute path of an image file.
14824     * @param label The label of the item.
14825     * @param func The function to call when the item is clicked.
14826     * @param data The data to associate with the item for related callbacks.
14827     * @return The created item or @c NULL upon failure.
14828     *
14829     * A new item will be created and prepended to the toolbar, i.e., will
14830     * be set as @b first item.
14831     *
14832     * Items created with this method can be deleted with
14833     * elm_toolbar_item_del().
14834     *
14835     * Associated @p data can be properly freed when item is deleted if a
14836     * callback function is set with elm_toolbar_item_del_cb_set().
14837     *
14838     * If a function is passed as argument, it will be called everytime this item
14839     * is selected, i.e., the user clicks over an unselected item.
14840     * If such function isn't needed, just passing
14841     * @c NULL as @p func is enough. The same should be done for @p data.
14842     *
14843     * Toolbar will load icon image from fdo or current theme.
14844     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14845     * If an absolute path is provided it will load it direct from a file.
14846     *
14847     * @see elm_toolbar_item_icon_set()
14848     * @see elm_toolbar_item_del()
14849     * @see elm_toolbar_item_del_cb_set()
14850     *
14851     * @ingroup Toolbar
14852     */
14853    EAPI Elm_Object_Item       *elm_toolbar_item_prepend(Evas_Object *obj, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14854    /**
14855     * Insert a new item into the toolbar object before item @p before.
14856     *
14857     * @param obj The toolbar object.
14858     * @param before The toolbar item to insert before.
14859     * @param icon A string with icon name or the absolute path of an image file.
14860     * @param label The label of the item.
14861     * @param func The function to call when the item is clicked.
14862     * @param data The data to associate with the item for related callbacks.
14863     * @return The created item or @c NULL upon failure.
14864     *
14865     * A new item will be created and added to the toolbar. Its position in
14866     * this toolbar will be just before item @p before.
14867     *
14868     * Items created with this method can be deleted with
14869     * elm_toolbar_item_del().
14870     *
14871     * Associated @p data can be properly freed when item is deleted if a
14872     * callback function is set with elm_toolbar_item_del_cb_set().
14873     *
14874     * If a function is passed as argument, it will be called everytime this item
14875     * is selected, i.e., the user clicks over an unselected item.
14876     * If such function isn't needed, just passing
14877     * @c NULL as @p func is enough. The same should be done for @p data.
14878     *
14879     * Toolbar will load icon image from fdo or current theme.
14880     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14881     * If an absolute path is provided it will load it direct from a file.
14882     *
14883     * @see elm_toolbar_item_icon_set()
14884     * @see elm_toolbar_item_del()
14885     * @see elm_toolbar_item_del_cb_set()
14886     *
14887     * @ingroup Toolbar
14888     */
14889    EAPI Elm_Object_Item       *elm_toolbar_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14890
14891    /**
14892     * Insert a new item into the toolbar object after item @p after.
14893     *
14894     * @param obj The toolbar object.
14895     * @param after The toolbar item to insert after.
14896     * @param icon A string with icon name or the absolute path of an image file.
14897     * @param label The label of the item.
14898     * @param func The function to call when the item is clicked.
14899     * @param data The data to associate with the item for related callbacks.
14900     * @return The created item or @c NULL upon failure.
14901     *
14902     * A new item will be created and added to the toolbar. Its position in
14903     * this toolbar will be just after item @p after.
14904     *
14905     * Items created with this method can be deleted with
14906     * elm_toolbar_item_del().
14907     *
14908     * Associated @p data can be properly freed when item is deleted if a
14909     * callback function is set with elm_toolbar_item_del_cb_set().
14910     *
14911     * If a function is passed as argument, it will be called everytime this item
14912     * is selected, i.e., the user clicks over an unselected item.
14913     * If such function isn't needed, just passing
14914     * @c NULL as @p func is enough. The same should be done for @p data.
14915     *
14916     * Toolbar will load icon image from fdo or current theme.
14917     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
14918     * If an absolute path is provided it will load it direct from a file.
14919     *
14920     * @see elm_toolbar_item_icon_set()
14921     * @see elm_toolbar_item_del()
14922     * @see elm_toolbar_item_del_cb_set()
14923     *
14924     * @ingroup Toolbar
14925     */
14926    EAPI Elm_Object_Item       *elm_toolbar_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
14927    /**
14928     * Get the first item in the given toolbar widget's list of
14929     * items.
14930     *
14931     * @param obj The toolbar object
14932     * @return The first item or @c NULL, if it has no items (and on
14933     * errors)
14934     *
14935     * @see elm_toolbar_item_append()
14936     * @see elm_toolbar_last_item_get()
14937     *
14938     * @ingroup Toolbar
14939     */
14940    EAPI Elm_Object_Item       *elm_toolbar_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14941    /**
14942     * Get the last item in the given toolbar widget's list of
14943     * items.
14944     *
14945     * @param obj The toolbar object
14946     * @return The last item or @c NULL, if it has no items (and on
14947     * errors)
14948     *
14949     * @see elm_toolbar_item_prepend()
14950     * @see elm_toolbar_first_item_get()
14951     *
14952     * @ingroup Toolbar
14953     */
14954    EAPI Elm_Object_Item       *elm_toolbar_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14955    /**
14956     * Get the item after @p item in toolbar.
14957     *
14958     * @param it The toolbar item.
14959     * @return The item after @p item, or @c NULL if none or on failure.
14960     *
14961     * @note If it is the last item, @c NULL will be returned.
14962     *
14963     * @see elm_toolbar_item_append()
14964     *
14965     * @ingroup Toolbar
14966     */
14967    EAPI Elm_Object_Item       *elm_toolbar_item_next_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
14968    /**
14969     * Get the item before @p item in toolbar.
14970     *
14971     * @param item The toolbar item.
14972     * @return The item before @p item, or @c NULL if none or on failure.
14973     *
14974     * @note If it is the first item, @c NULL will be returned.
14975     *
14976     * @see elm_toolbar_item_prepend()
14977     *
14978     * @ingroup Toolbar
14979     */
14980    EAPI Elm_Object_Item       *elm_toolbar_item_prev_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
14981    /**
14982     * Get the toolbar object from an item.
14983     *
14984     * @param it The item.
14985     * @return The toolbar object.
14986     *
14987     * This returns the toolbar object itself that an item belongs to.
14988     *
14989     * @ingroup Toolbar
14990     */
14991    EAPI Evas_Object            *elm_toolbar_item_toolbar_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
14992    /**
14993     * Set the priority of a toolbar item.
14994     *
14995     * @param it The toolbar item.
14996     * @param priority The item priority. The default is zero.
14997     *
14998     * This is used only when the toolbar shrink mode is set to
14999     * #ELM_TOOLBAR_SHRINK_MENU or #ELM_TOOLBAR_SHRINK_HIDE.
15000     * When space is less than required, items with low priority
15001     * will be removed from the toolbar and added to a dynamically-created menu,
15002     * while items with higher priority will remain on the toolbar,
15003     * with the same order they were added.
15004     *
15005     * @see elm_toolbar_item_priority_get()
15006     *
15007     * @ingroup Toolbar
15008     */
15009    EAPI void                    elm_toolbar_item_priority_set(Elm_Object_Item *it, int priority) EINA_ARG_NONNULL(1);
15010    /**
15011     * Get the priority of a toolbar item.
15012     *
15013     * @param it The toolbar item.
15014     * @return The @p item priority, or @c 0 on failure.
15015     *
15016     * @see elm_toolbar_item_priority_set() for details.
15017     *
15018     * @ingroup Toolbar
15019     */
15020    EAPI int                     elm_toolbar_item_priority_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15021    /**
15022     * Get the label of item.
15023     *
15024     * @param it The item of toolbar.
15025     * @return The label of item.
15026     *
15027     * The return value is a pointer to the label associated to @p item when
15028     * it was created, with function elm_toolbar_item_append() or similar,
15029     * or later,
15030     * with function elm_toolbar_item_label_set. If no label
15031     * was passed as argument, it will return @c NULL.
15032     *
15033     * @see elm_toolbar_item_label_set() for more details.
15034     * @see elm_toolbar_item_append()
15035     *
15036     * @ingroup Toolbar
15037     */
15038    EAPI const char             *elm_toolbar_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15039    /**
15040     * Set the label of item.
15041     *
15042     * @param it The item of toolbar.
15043     * @param text The label of item.
15044     *
15045     * The label to be displayed by the item.
15046     * Label will be placed at icons bottom (if set).
15047     *
15048     * If a label was passed as argument on item creation, with function
15049     * elm_toolbar_item_append() or similar, it will be already
15050     * displayed by the item.
15051     *
15052     * @see elm_toolbar_item_label_get()
15053     * @see elm_toolbar_item_append()
15054     *
15055     * @ingroup Toolbar
15056     */
15057    EAPI void                    elm_toolbar_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
15058    /**
15059     * Return the data associated with a given toolbar widget item.
15060     *
15061     * @param it The toolbar widget item handle.
15062     * @return The data associated with @p item.
15063     *
15064     * @see elm_toolbar_item_data_set()
15065     *
15066     * @ingroup Toolbar
15067     */
15068    EAPI void                   *elm_toolbar_item_data_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15069    /**
15070     * Set the data associated with a given toolbar widget item.
15071     *
15072     * @param it The toolbar widget item handle
15073     * @param data The new data pointer to set to @p item.
15074     *
15075     * This sets new item data on @p item.
15076     *
15077     * @warning The old data pointer won't be touched by this function, so
15078     * the user had better to free that old data himself/herself.
15079     *
15080     * @ingroup Toolbar
15081     */
15082    EAPI void                    elm_toolbar_item_data_set(Elm_Object_Item *it, const void *data) EINA_ARG_NONNULL(1);
15083    /**
15084     * Returns a pointer to a toolbar item by its label.
15085     *
15086     * @param obj The toolbar object.
15087     * @param label The label of the item to find.
15088     *
15089     * @return The pointer to the toolbar item matching @p label or @c NULL
15090     * on failure.
15091     *
15092     * @ingroup Toolbar
15093     */
15094    EAPI Elm_Object_Item       *elm_toolbar_item_find_by_label(const Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
15095    /*
15096     * Get whether the @p item is selected or not.
15097     *
15098     * @param it The toolbar item.
15099     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
15100     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
15101     *
15102     * @see elm_toolbar_selected_item_set() for details.
15103     * @see elm_toolbar_item_selected_get()
15104     *
15105     * @ingroup Toolbar
15106     */
15107    EAPI Eina_Bool               elm_toolbar_item_selected_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15108    /**
15109     * Set the selected state of an item.
15110     *
15111     * @param it The toolbar item
15112     * @param selected The selected state
15113     *
15114     * This sets the selected state of the given item @p it.
15115     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
15116     *
15117     * If a new item is selected the previosly selected will be unselected.
15118     * Previoulsy selected item can be get with function
15119     * elm_toolbar_selected_item_get().
15120     *
15121     * Selected items will be highlighted.
15122     *
15123     * @see elm_toolbar_item_selected_get()
15124     * @see elm_toolbar_selected_item_get()
15125     *
15126     * @ingroup Toolbar
15127     */
15128    EAPI void                    elm_toolbar_item_selected_set(Elm_Object_Item *it, Eina_Bool selected) EINA_ARG_NONNULL(1);
15129    /**
15130     * Get the selected item.
15131     *
15132     * @param obj The toolbar object.
15133     * @return The selected toolbar item.
15134     *
15135     * The selected item can be unselected with function
15136     * elm_toolbar_item_selected_set().
15137     *
15138     * The selected item always will be highlighted on toolbar.
15139     *
15140     * @see elm_toolbar_selected_items_get()
15141     *
15142     * @ingroup Toolbar
15143     */
15144    EAPI Elm_Object_Item       *elm_toolbar_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15145    /**
15146     * Set the icon associated with @p item.
15147     *
15148     * @param obj The parent of this item.
15149     * @param it The toolbar item.
15150     * @param icon A string with icon name or the absolute path of an image file.
15151     *
15152     * Toolbar will load icon image from fdo or current theme.
15153     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
15154     * If an absolute path is provided it will load it direct from a file.
15155     *
15156     * @see elm_toolbar_icon_order_lookup_set()
15157     * @see elm_toolbar_icon_order_lookup_get()
15158     *
15159     * @ingroup Toolbar
15160     */
15161    EAPI void                    elm_toolbar_item_icon_set(Elm_Object_Item *it, const char *icon) EINA_ARG_NONNULL(1);
15162    /**
15163     * Get the string used to set the icon of @p item.
15164     *
15165     * @param it The toolbar item.
15166     * @return The string associated with the icon object.
15167     *
15168     * @see elm_toolbar_item_icon_set() for details.
15169     *
15170     * @ingroup Toolbar
15171     */
15172    EAPI const char             *elm_toolbar_item_icon_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15173    /**
15174     * Get the object of @p item.
15175     *
15176     * @param it The toolbar item.
15177     * @return The object
15178     *
15179     * @ingroup Toolbar
15180     */
15181    EAPI Evas_Object            *elm_toolbar_item_object_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15182    /**
15183     * Get the icon object of @p item.
15184     *
15185     * @param it The toolbar item.
15186     * @return The icon object
15187     *
15188     * @see elm_toolbar_item_icon_set() or elm_toolbar_item_icon_memfile_set() for details.
15189     *
15190     * @ingroup Toolbar
15191     */
15192    EAPI Evas_Object            *elm_toolbar_item_icon_object_get(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15193    /**
15194     * Set the icon associated with @p item to an image in a binary buffer.
15195     *
15196     * @param it The toolbar item.
15197     * @param img The binary data that will be used as an image
15198     * @param size The size of binary data @p img
15199     * @param format Optional format of @p img to pass to the image loader
15200     * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
15201     *
15202     * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
15203     *
15204     * @note The icon image set by this function can be changed by
15205     * elm_toolbar_item_icon_set().
15206     *
15207     * @ingroup Toolbar
15208     */
15209    EAPI Eina_Bool elm_toolbar_item_icon_memfile_set(Elm_Object_Item *it, const void *img, size_t size, const char *format, const char *key) EINA_ARG_NONNULL(1);
15210    /**
15211     * Delete them item from the toolbar.
15212     *
15213     * @param it The item of toolbar to be deleted.
15214     *
15215     * @see elm_toolbar_item_append()
15216     * @see elm_toolbar_item_del_cb_set()
15217     *
15218     * @ingroup Toolbar
15219     */
15220    EAPI void                    elm_toolbar_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15221
15222    /**
15223     * Set the function called when a toolbar item is freed.
15224     *
15225     * @param it The item to set the callback on.
15226     * @param func The function called.
15227     *
15228     * If there is a @p func, then it will be called prior item's memory release.
15229     * That will be called with the following arguments:
15230     * @li item's data;
15231     * @li item's Evas object;
15232     * @li item itself;
15233     *
15234     * This way, a data associated to a toolbar item could be properly freed.
15235     *
15236     * @ingroup Toolbar
15237     */
15238    EAPI void                    elm_toolbar_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
15239
15240    /**
15241     * Get a value whether toolbar item is disabled or not.
15242     *
15243     * @param it The item.
15244     * @return The disabled state.
15245     *
15246     * @see elm_toolbar_item_disabled_set() for more details.
15247     *
15248     * @ingroup Toolbar
15249     */
15250    EAPI Eina_Bool               elm_toolbar_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15251
15252    /**
15253     * Sets the disabled/enabled state of a toolbar item.
15254     *
15255     * @param it The item.
15256     * @param disabled The disabled state.
15257     *
15258     * A disabled item cannot be selected or unselected. It will also
15259     * change its appearance (generally greyed out). This sets the
15260     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
15261     * enabled).
15262     *
15263     * @ingroup Toolbar
15264     */
15265    EAPI void                    elm_toolbar_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
15266
15267    /**
15268     * Set or unset item as a separator.
15269     *
15270     * @param it The toolbar item.
15271     * @param setting @c EINA_TRUE to set item @p item as separator or
15272     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
15273     *
15274     * Items aren't set as separator by default.
15275     *
15276     * If set as separator it will display separator theme, so won't display
15277     * icons or label.
15278     *
15279     * @see elm_toolbar_item_separator_get()
15280     *
15281     * @ingroup Toolbar
15282     */
15283    EAPI void                    elm_toolbar_item_separator_set(Elm_Object_Item *it, Eina_Bool separator) EINA_ARG_NONNULL(1);
15284
15285    /**
15286     * Get a value whether item is a separator or not.
15287     *
15288     * @param it The toolbar item.
15289     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
15290     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
15291     *
15292     * @see elm_toolbar_item_separator_set() for details.
15293     *
15294     * @ingroup Toolbar
15295     */
15296    EAPI Eina_Bool               elm_toolbar_item_separator_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15297
15298    /**
15299     * Set the shrink state of toolbar @p obj.
15300     *
15301     * @param obj The toolbar object.
15302     * @param shrink_mode Toolbar's items display behavior.
15303     *
15304     * The toolbar won't scroll if #ELM_TOOLBAR_SHRINK_NONE,
15305     * but will enforce a minimun size so all the items will fit, won't scroll
15306     * and won't show the items that don't fit if #ELM_TOOLBAR_SHRINK_HIDE,
15307     * will scroll if #ELM_TOOLBAR_SHRINK_SCROLL, and will create a button to
15308     * pop up excess elements with #ELM_TOOLBAR_SHRINK_MENU.
15309     *
15310     * @ingroup Toolbar
15311     */
15312    EAPI void                    elm_toolbar_mode_shrink_set(Evas_Object *obj, Elm_Toolbar_Shrink_Mode shrink_mode) EINA_ARG_NONNULL(1);
15313
15314    /**
15315     * Get the shrink mode of toolbar @p obj.
15316     *
15317     * @param obj The toolbar object.
15318     * @return Toolbar's items display behavior.
15319     *
15320     * @see elm_toolbar_mode_shrink_set() for details.
15321     *
15322     * @ingroup Toolbar
15323     */
15324    EAPI Elm_Toolbar_Shrink_Mode elm_toolbar_mode_shrink_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15325
15326    /**
15327     * Enable/disable homogeneous mode.
15328     *
15329     * @param obj The toolbar object
15330     * @param homogeneous Assume the items within the toolbar are of the
15331     * same size (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE.
15332     *
15333     * This will enable the homogeneous mode where items are of the same size.
15334     * @see elm_toolbar_homogeneous_get()
15335     *
15336     * @ingroup Toolbar
15337     */
15338    EAPI void                    elm_toolbar_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
15339
15340    /**
15341     * Get whether the homogeneous mode is enabled.
15342     *
15343     * @param obj The toolbar object.
15344     * @return Assume the items within the toolbar are of the same height
15345     * and width (EINA_TRUE = on, EINA_FALSE = off).
15346     *
15347     * @see elm_toolbar_homogeneous_set()
15348     *
15349     * @ingroup Toolbar
15350     */
15351    EAPI Eina_Bool               elm_toolbar_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15352    /**
15353     * Set the parent object of the toolbar items' menus.
15354     *
15355     * @param obj The toolbar object.
15356     * @param parent The parent of the menu objects.
15357     *
15358     * Each item can be set as item menu, with elm_toolbar_item_menu_set().
15359     *
15360     * For more details about setting the parent for toolbar menus, see
15361     * elm_menu_parent_set().
15362     *
15363     * @see elm_menu_parent_set() for details.
15364     * @see elm_toolbar_item_menu_set() for details.
15365     *
15366     * @ingroup Toolbar
15367     */
15368    EAPI void                    elm_toolbar_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
15369    /**
15370     * Get the parent object of the toolbar items' menus.
15371     *
15372     * @param obj The toolbar object.
15373     * @return The parent of the menu objects.
15374     *
15375     * @see elm_toolbar_menu_parent_set() for details.
15376     *
15377     * @ingroup Toolbar
15378     */
15379    EAPI Evas_Object            *elm_toolbar_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15380    /**
15381     * Set the alignment of the items.
15382     *
15383     * @param obj The toolbar object.
15384     * @param align The new alignment, a float between <tt> 0.0 </tt>
15385     * and <tt> 1.0 </tt>.
15386     *
15387     * Alignment of toolbar items, from <tt> 0.0 </tt> to indicates to align
15388     * left, to <tt> 1.0 </tt>, to align to right. <tt> 0.5 </tt> centralize
15389     * items.
15390     *
15391     * Centered items by default.
15392     *
15393     * @see elm_toolbar_align_get()
15394     *
15395     * @ingroup Toolbar
15396     */
15397    EAPI void                    elm_toolbar_align_set(Evas_Object *obj, double align) EINA_ARG_NONNULL(1);
15398    /**
15399     * Get the alignment of the items.
15400     *
15401     * @param obj The toolbar object.
15402     * @return toolbar items alignment, a float between <tt> 0.0 </tt> and
15403     * <tt> 1.0 </tt>.
15404     *
15405     * @see elm_toolbar_align_set() for details.
15406     *
15407     * @ingroup Toolbar
15408     */
15409    EAPI double                  elm_toolbar_align_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15410    /**
15411     * Set whether the toolbar item opens a menu.
15412     *
15413     * @param it The toolbar item.
15414     * @param menu If @c EINA_TRUE, @p item will opens a menu when selected.
15415     *
15416     * A toolbar item can be set to be a menu, using this function.
15417     *
15418     * Once it is set to be a menu, it can be manipulated through the
15419     * menu-like function elm_toolbar_menu_parent_set() and the other
15420     * elm_menu functions, using the Evas_Object @c menu returned by
15421     * elm_toolbar_item_menu_get().
15422     *
15423     * So, items to be displayed in this item's menu should be added with
15424     * elm_menu_item_add().
15425     *
15426     * The following code exemplifies the most basic usage:
15427     * @code
15428     * tb = elm_toolbar_add(win)
15429     * item = elm_toolbar_item_append(tb, "refresh", "Menu", NULL, NULL);
15430     * elm_toolbar_item_menu_set(item, EINA_TRUE);
15431     * elm_toolbar_menu_parent_set(tb, win);
15432     * menu = elm_toolbar_item_menu_get(item);
15433     * elm_menu_item_add(menu, NULL, "edit-cut", "Cut", NULL, NULL);
15434     * menu_item = elm_menu_item_add(menu, NULL, "edit-copy", "Copy", NULL,
15435     * NULL);
15436     * @endcode
15437     *
15438     * @see elm_toolbar_item_menu_get()
15439     *
15440     * @ingroup Toolbar
15441     */
15442    EAPI void                    elm_toolbar_item_menu_set(Elm_Object_Item *it, Eina_Bool menu) EINA_ARG_NONNULL(1);
15443    /**
15444     * Get toolbar item's menu.
15445     *
15446     * @param it The toolbar item.
15447     * @return Item's menu object or @c NULL on failure.
15448     *
15449     * If @p item wasn't set as menu item with elm_toolbar_item_menu_set(),
15450     * this function will set it.
15451     *
15452     * @see elm_toolbar_item_menu_set() for details.
15453     *
15454     * @ingroup Toolbar
15455     */
15456    EAPI Evas_Object            *elm_toolbar_item_menu_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15457    /**
15458     * Add a new state to @p item.
15459     *
15460     * @param it The toolbar item.
15461     * @param icon A string with icon name or the absolute path of an image file.
15462     * @param label The label of the new state.
15463     * @param func The function to call when the item is clicked when this
15464     * state is selected.
15465     * @param data The data to associate with the state.
15466     * @return The toolbar item state, or @c NULL upon failure.
15467     *
15468     * Toolbar will load icon image from fdo or current theme.
15469     * This behavior can be set by elm_toolbar_icon_order_lookup_set() function.
15470     * If an absolute path is provided it will load it direct from a file.
15471     *
15472     * States created with this function can be removed with
15473     * elm_toolbar_item_state_del().
15474     *
15475     * @see elm_toolbar_item_state_del()
15476     * @see elm_toolbar_item_state_sel()
15477     * @see elm_toolbar_item_state_get()
15478     *
15479     * @ingroup Toolbar
15480     */
15481    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_add(Elm_Object_Item *it, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
15482    /**
15483     * Delete a previoulsy added state to @p item.
15484     *
15485     * @param it The toolbar item.
15486     * @param state The state to be deleted.
15487     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
15488     *
15489     * @see elm_toolbar_item_state_add()
15490     */
15491    EAPI Eina_Bool               elm_toolbar_item_state_del(Elm_Object_Item *it, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
15492    /**
15493     * Set @p state as the current state of @p it.
15494     *
15495     * @param it The toolbar item.
15496     * @param state The state to use.
15497     * @return @c EINA_TRUE on success or @c EINA_FALSE on failure.
15498     *
15499     * If @p state is @c NULL, it won't select any state and the default item's
15500     * icon and label will be used. It's the same behaviour than
15501     * elm_toolbar_item_state_unser().
15502     *
15503     * @see elm_toolbar_item_state_unset()
15504     *
15505     * @ingroup Toolbar
15506     */
15507    EAPI Eina_Bool               elm_toolbar_item_state_set(Elm_Object_Item *it, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
15508    /**
15509     * Unset the state of @p it.
15510     *
15511     * @param it The toolbar item.
15512     *
15513     * The default icon and label from this item will be displayed.
15514     *
15515     * @see elm_toolbar_item_state_set() for more details.
15516     *
15517     * @ingroup Toolbar
15518     */
15519    EAPI void                    elm_toolbar_item_state_unset(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15520    /**
15521     * Get the current state of @p it.
15522     *
15523     * @param it The toolbar item.
15524     * @return The selected state or @c NULL if none is selected or on failure.
15525     *
15526     * @see elm_toolbar_item_state_set() for details.
15527     * @see elm_toolbar_item_state_unset()
15528     * @see elm_toolbar_item_state_add()
15529     *
15530     * @ingroup Toolbar
15531     */
15532    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15533    /**
15534     * Get the state after selected state in toolbar's @p item.
15535     *
15536     * @param it The toolbar item to change state.
15537     * @return The state after current state, or @c NULL on failure.
15538     *
15539     * If last state is selected, this function will return first state.
15540     *
15541     * @see elm_toolbar_item_state_set()
15542     * @see elm_toolbar_item_state_add()
15543     *
15544     * @ingroup Toolbar
15545     */
15546    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_next(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15547    /**
15548     * Get the state before selected state in toolbar's @p item.
15549     *
15550     * @param it The toolbar item to change state.
15551     * @return The state before current state, or @c NULL on failure.
15552     *
15553     * If first state is selected, this function will return last state.
15554     *
15555     * @see elm_toolbar_item_state_set()
15556     * @see elm_toolbar_item_state_add()
15557     *
15558     * @ingroup Toolbar
15559     */
15560    EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_prev(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15561    /**
15562     * Set the text to be shown in a given toolbar item's tooltips.
15563     *
15564     * @param it toolbar item.
15565     * @param text The text to set in the content.
15566     *
15567     * Setup the text as tooltip to object. The item can have only one tooltip,
15568     * so any previous tooltip data - set with this function or
15569     * elm_toolbar_item_tooltip_content_cb_set() - is removed.
15570     *
15571     * @see elm_object_tooltip_text_set() for more details.
15572     *
15573     * @ingroup Toolbar
15574     */
15575    EAPI void             elm_toolbar_item_tooltip_text_set(Elm_Object_Item *it, const char *text) EINA_ARG_NONNULL(1);
15576    /**
15577     * Set the content to be shown in the tooltip item.
15578     *
15579     * Setup the tooltip to item. The item can have only one tooltip,
15580     * so any previous tooltip data is removed. @p func(with @p data) will
15581     * be called every time that need show the tooltip and it should
15582     * return a valid Evas_Object. This object is then managed fully by
15583     * tooltip system and is deleted when the tooltip is gone.
15584     *
15585     * @param it the toolbar item being attached a tooltip.
15586     * @param func the function used to create the tooltip contents.
15587     * @param data what to provide to @a func as callback data/context.
15588     * @param del_cb called when data is not needed anymore, either when
15589     *        another callback replaces @a func, the tooltip is unset with
15590     *        elm_toolbar_item_tooltip_unset() or the owner @a item
15591     *        dies. This callback receives as the first parameter the
15592     *        given @a data, and @c event_info is the item.
15593     *
15594     * @see elm_object_tooltip_content_cb_set() for more details.
15595     *
15596     * @ingroup Toolbar
15597     */
15598    EAPI void             elm_toolbar_item_tooltip_content_cb_set(Elm_Object_Item *it, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
15599    /**
15600     * Unset tooltip from item.
15601     *
15602     * @param it toolbar item to remove previously set tooltip.
15603     *
15604     * Remove tooltip from item. The callback provided as del_cb to
15605     * elm_toolbar_item_tooltip_content_cb_set() will be called to notify
15606     * it is not used anymore.
15607     *
15608     * @see elm_object_tooltip_unset() for more details.
15609     * @see elm_toolbar_item_tooltip_content_cb_set()
15610     *
15611     * @ingroup Toolbar
15612     */
15613    EAPI void             elm_toolbar_item_tooltip_unset(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15614    /**
15615     * Sets a different style for this item tooltip.
15616     *
15617     * @note before you set a style you should define a tooltip with
15618     *       elm_toolbar_item_tooltip_content_cb_set() or
15619     *       elm_toolbar_item_tooltip_text_set()
15620     *
15621     * @param it toolbar item with tooltip already set.
15622     * @param style the theme style to use (default, transparent, ...)
15623     *
15624     * @see elm_object_tooltip_style_set() for more details.
15625     *
15626     * @ingroup Toolbar
15627     */
15628    EAPI void             elm_toolbar_item_tooltip_style_set(Elm_Object_Item *it, const char *style) EINA_ARG_NONNULL(1);
15629    /**
15630     * Get the style for this item tooltip.
15631     *
15632     * @param it toolbar item with tooltip already set.
15633     * @return style the theme style in use, defaults to "default". If the
15634     *         object does not have a tooltip set, then NULL is returned.
15635     *
15636     * @see elm_object_tooltip_style_get() for more details.
15637     * @see elm_toolbar_item_tooltip_style_set()
15638     *
15639     * @ingroup Toolbar
15640     */
15641    EAPI const char      *elm_toolbar_item_tooltip_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15642    /**
15643     * Set the type of mouse pointer/cursor decoration to be shown,
15644     * when the mouse pointer is over the given toolbar widget item
15645     *
15646     * @param it toolbar item to customize cursor on
15647     * @param cursor the cursor type's name
15648     *
15649     * This function works analogously as elm_object_cursor_set(), but
15650     * here the cursor's changing area is restricted to the item's
15651     * area, and not the whole widget's. Note that that item cursors
15652     * have precedence over widget cursors, so that a mouse over an
15653     * item with custom cursor set will always show @b that cursor.
15654     *
15655     * If this function is called twice for an object, a previously set
15656     * cursor will be unset on the second call.
15657     *
15658     * @see elm_object_cursor_set()
15659     * @see elm_toolbar_item_cursor_get()
15660     * @see elm_toolbar_item_cursor_unset()
15661     *
15662     * @ingroup Toolbar
15663     */
15664    EAPI void             elm_toolbar_item_cursor_set(Elm_Object_Item *it, const char *cursor) EINA_ARG_NONNULL(1);
15665
15666    /*
15667     * Get the type of mouse pointer/cursor decoration set to be shown,
15668     * when the mouse pointer is over the given toolbar widget item
15669     *
15670     * @param it toolbar item with custom cursor set
15671     * @return the cursor type's name or @c NULL, if no custom cursors
15672     * were set to @p item (and on errors)
15673     *
15674     * @see elm_object_cursor_get()
15675     * @see elm_toolbar_item_cursor_set()
15676     * @see elm_toolbar_item_cursor_unset()
15677     *
15678     * @ingroup Toolbar
15679     */
15680    EAPI const char      *elm_toolbar_item_cursor_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15681
15682    /**
15683     * Unset any custom mouse pointer/cursor decoration set to be
15684     * shown, when the mouse pointer is over the given toolbar widget
15685     * item, thus making it show the @b default cursor again.
15686     *
15687     * @param it a toolbar item
15688     *
15689     * Use this call to undo any custom settings on this item's cursor
15690     * decoration, bringing it back to defaults (no custom style set).
15691     *
15692     * @see elm_object_cursor_unset()
15693     * @see elm_toolbar_item_cursor_set()
15694     *
15695     * @ingroup Toolbar
15696     */
15697    EAPI void             elm_toolbar_item_cursor_unset(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15698
15699    /**
15700     * Set a different @b style for a given custom cursor set for a
15701     * toolbar item.
15702     *
15703     * @param it toolbar item with custom cursor set
15704     * @param style the <b>theme style</b> to use (e.g. @c "default",
15705     * @c "transparent", etc)
15706     *
15707     * This function only makes sense when one is using custom mouse
15708     * cursor decorations <b>defined in a theme file</b>, which can have,
15709     * given a cursor name/type, <b>alternate styles</b> on it. It
15710     * works analogously as elm_object_cursor_style_set(), but here
15711     * applyed only to toolbar item objects.
15712     *
15713     * @warning Before you set a cursor style you should have definen a
15714     *       custom cursor previously on the item, with
15715     *       elm_toolbar_item_cursor_set()
15716     *
15717     * @see elm_toolbar_item_cursor_engine_only_set()
15718     * @see elm_toolbar_item_cursor_style_get()
15719     *
15720     * @ingroup Toolbar
15721     */
15722    EAPI void             elm_toolbar_item_cursor_style_set(Elm_Object_Item *it, const char *style) EINA_ARG_NONNULL(1);
15723
15724    /**
15725     * Get the current @b style set for a given toolbar item's custom
15726     * cursor
15727     *
15728     * @param it toolbar item with custom cursor set.
15729     * @return style the cursor style in use. If the object does not
15730     *         have a cursor set, then @c NULL is returned.
15731     *
15732     * @see elm_toolbar_item_cursor_style_set() for more details
15733     *
15734     * @ingroup Toolbar
15735     */
15736    EAPI const char      *elm_toolbar_item_cursor_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15737
15738    /**
15739     * Set if the (custom)cursor for a given toolbar item should be
15740     * searched in its theme, also, or should only rely on the
15741     * rendering engine.
15742     *
15743     * @param it item with custom (custom) cursor already set on
15744     * @param engine_only Use @c EINA_TRUE to have cursors looked for
15745     * only on those provided by the rendering engine, @c EINA_FALSE to
15746     * have them searched on the widget's theme, as well.
15747     *
15748     * @note This call is of use only if you've set a custom cursor
15749     * for toolbar items, with elm_toolbar_item_cursor_set().
15750     *
15751     * @note By default, cursors will only be looked for between those
15752     * provided by the rendering engine.
15753     *
15754     * @ingroup Toolbar
15755     */
15756    EAPI void             elm_toolbar_item_cursor_engine_only_set(Elm_Object_Item *it, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
15757
15758    /**
15759     * Get if the (custom) cursor for a given toolbar item is being
15760     * searched in its theme, also, or is only relying on the rendering
15761     * engine.
15762     *
15763     * @param it a toolbar item
15764     * @return @c EINA_TRUE, if cursors are being looked for only on
15765     * those provided by the rendering engine, @c EINA_FALSE if they
15766     * are being searched on the widget's theme, as well.
15767     *
15768     * @see elm_toolbar_item_cursor_engine_only_set(), for more details
15769     *
15770     * @ingroup Toolbar
15771     */
15772    EAPI Eina_Bool        elm_toolbar_item_cursor_engine_only_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
15773
15774    /**
15775     * Change a toolbar's orientation
15776     * @param obj The toolbar object
15777     * @param vertical If @c EINA_TRUE, the toolbar is vertical
15778     * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
15779     * @ingroup Toolbar
15780     * @deprecated use elm_toolbar_horizontal_set() instead.
15781     */
15782    EINA_DEPRECATED EAPI void             elm_toolbar_orientation_set(Evas_Object *obj, Eina_Bool vertical) EINA_ARG_NONNULL(1);
15783
15784    /**
15785     * Change a toolbar's orientation
15786     * @param obj The toolbar object
15787     * @param horizontal If @c EINA_TRUE, the toolbar is horizontal
15788     * By default, a toolbar will be horizontal. Use this function to create a vertical toolbar.
15789     * @ingroup Toolbar
15790     */
15791    EAPI void             elm_toolbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
15792
15793    /**
15794     * Get a toolbar's orientation
15795     * @param obj The toolbar object
15796     * @return If @c EINA_TRUE, the toolbar is vertical
15797     * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
15798     * @ingroup Toolbar
15799     * @deprecated use elm_toolbar_horizontal_get() instead.
15800     */
15801    EINA_DEPRECATED EAPI Eina_Bool        elm_toolbar_orientation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15802
15803    /**
15804     * Get a toolbar's orientation
15805     * @param obj The toolbar object
15806     * @return If @c EINA_TRUE, the toolbar is horizontal
15807     * By default, a toolbar will be horizontal. Use this function to determine whether a toolbar is vertical.
15808     * @ingroup Toolbar
15809     */
15810    EAPI Eina_Bool elm_toolbar_horizontal_get(const Evas_Object *obj);
15811    /**
15812     * @}
15813     */
15814
15815    /**
15816     * @defgroup Tooltips Tooltips
15817     *
15818     * The Tooltip is an (internal, for now) smart object used to show a
15819     * content in a frame on mouse hover of objects(or widgets), with
15820     * tips/information about them.
15821     *
15822     * @{
15823     */
15824
15825    EAPI double       elm_tooltip_delay_get(void);
15826    EAPI Eina_Bool    elm_tooltip_delay_set(double delay);
15827    EAPI void         elm_object_tooltip_show(Evas_Object *obj) EINA_ARG_NONNULL(1);
15828    EAPI void         elm_object_tooltip_hide(Evas_Object *obj) EINA_ARG_NONNULL(1);
15829    EAPI void         elm_object_tooltip_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1, 2);
15830    EAPI void         elm_object_tooltip_domain_translatable_text_set(Evas_Object *obj, const char *domain, const char *text) EINA_ARG_NONNULL(1, 3);
15831 #define elm_object_tooltip_translatable_text_set(obj, text) elm_object_tooltip_domain_translatable_text_set((obj), NULL, (text))
15832    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);
15833    EAPI void         elm_object_tooltip_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
15834    EAPI void         elm_object_tooltip_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
15835    EAPI const char  *elm_object_tooltip_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15836    EAPI Eina_Bool    elm_tooltip_size_restrict_disable(Evas_Object *obj, Eina_Bool disable) EINA_ARG_NONNULL(1);
15837    EAPI Eina_Bool    elm_tooltip_size_restrict_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15838
15839    /**
15840     * @}
15841     */
15842
15843    /**
15844     * @defgroup Cursors Cursors
15845     *
15846     * The Elementary cursor is an internal smart object used to
15847     * customize the mouse cursor displayed over objects (or
15848     * widgets). In the most common scenario, the cursor decoration
15849     * comes from the graphical @b engine Elementary is running
15850     * on. Those engines may provide different decorations for cursors,
15851     * and Elementary provides functions to choose them (think of X11
15852     * cursors, as an example).
15853     *
15854     * There's also the possibility of, besides using engine provided
15855     * cursors, also use ones coming from Edje theming files. Both
15856     * globally and per widget, Elementary makes it possible for one to
15857     * make the cursors lookup to be held on engines only or on
15858     * Elementary's theme file, too. To set cursor's hot spot,
15859     * two data items should be added to cursor's theme: "hot_x" and
15860     * "hot_y", that are the offset from upper-left corner of the cursor
15861     * (coordinates 0,0).
15862     *
15863     * @{
15864     */
15865
15866    /**
15867     * Set the cursor to be shown when mouse is over the object
15868     *
15869     * Set the cursor that will be displayed when mouse is over the
15870     * object. The object can have only one cursor set to it, so if
15871     * this function is called twice for an object, the previous set
15872     * will be unset.
15873     * If using X cursors, a definition of all the valid cursor names
15874     * is listed on Elementary_Cursors.h. If an invalid name is set
15875     * the default cursor will be used.
15876     *
15877     * @param obj the object being set a cursor.
15878     * @param cursor the cursor name to be used.
15879     *
15880     * @ingroup Cursors
15881     */
15882    EAPI void         elm_object_cursor_set(Evas_Object *obj, const char *cursor) EINA_ARG_NONNULL(1);
15883
15884    /**
15885     * Get the cursor to be shown when mouse is over the object
15886     *
15887     * @param obj an object with cursor already set.
15888     * @return the cursor name.
15889     *
15890     * @ingroup Cursors
15891     */
15892    EAPI const char  *elm_object_cursor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15893
15894    /**
15895     * Unset cursor for object
15896     *
15897     * Unset cursor for object, and set the cursor to default if the mouse
15898     * was over this object.
15899     *
15900     * @param obj Target object
15901     * @see elm_object_cursor_set()
15902     *
15903     * @ingroup Cursors
15904     */
15905    EAPI void         elm_object_cursor_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
15906
15907    /**
15908     * Sets a different style for this object cursor.
15909     *
15910     * @note before you set a style you should define a cursor with
15911     *       elm_object_cursor_set()
15912     *
15913     * @param obj an object with cursor already set.
15914     * @param style the theme style to use (default, transparent, ...)
15915     *
15916     * @ingroup Cursors
15917     */
15918    EAPI void         elm_object_cursor_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
15919
15920    /**
15921     * Get the style for this object cursor.
15922     *
15923     * @param obj an object with cursor already set.
15924     * @return style the theme style in use, defaults to "default". If the
15925     *         object does not have a cursor set, then NULL is returned.
15926     *
15927     * @ingroup Cursors
15928     */
15929    EAPI const char  *elm_object_cursor_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15930
15931    /**
15932     * Set if the cursor set should be searched on the theme or should use
15933     * the provided by the engine, only.
15934     *
15935     * @note before you set if should look on theme you should define a cursor
15936     * with elm_object_cursor_set(). By default it will only look for cursors
15937     * provided by the engine.
15938     *
15939     * @param obj an object with cursor already set.
15940     * @param engine_only boolean to define it cursors should be looked only
15941     * between the provided by the engine or searched on widget's theme as well.
15942     *
15943     * @ingroup Cursors
15944     */
15945    EAPI void         elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
15946
15947    /**
15948     * Get the cursor engine only usage for this object cursor.
15949     *
15950     * @param obj an object with cursor already set.
15951     * @return engine_only boolean to define it cursors should be
15952     * looked only between the provided by the engine or searched on
15953     * widget's theme as well. If the object does not have a cursor
15954     * set, then EINA_FALSE is returned.
15955     *
15956     * @ingroup Cursors
15957     */
15958    EAPI Eina_Bool    elm_object_cursor_engine_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15959
15960    /**
15961     * Get the configured cursor engine only usage
15962     *
15963     * This gets the globally configured exclusive usage of engine cursors.
15964     *
15965     * @return 1 if only engine cursors should be used
15966     * @ingroup Cursors
15967     */
15968    EAPI int          elm_cursor_engine_only_get(void);
15969
15970    /**
15971     * Set the configured cursor engine only usage
15972     *
15973     * This sets the globally configured exclusive usage of engine cursors.
15974     * It won't affect cursors set before changing this value.
15975     *
15976     * @param engine_only If 1 only engine cursors will be enabled, if 0 will
15977     * look for them on theme before.
15978     * @return EINA_TRUE if value is valid and setted (0 or 1)
15979     * @ingroup Cursors
15980     */
15981    EAPI Eina_Bool    elm_cursor_engine_only_set(int engine_only);
15982
15983    /**
15984     * @}
15985     */
15986
15987    /**
15988     * @defgroup Menu Menu
15989     *
15990     * @image html img/widget/menu/preview-00.png
15991     * @image latex img/widget/menu/preview-00.eps
15992     *
15993     * A menu is a list of items displayed above its parent. When the menu is
15994     * showing its parent is darkened. Each item can have a sub-menu. The menu
15995     * object can be used to display a menu on a right click event, in a toolbar,
15996     * anywhere.
15997     *
15998     * Signals that you can add callbacks for are:
15999     * @li "clicked" - the user clicked the empty space in the menu to dismiss.
16000     *
16001     * Default contents parts of the menu items that you can use for are:
16002     * @li "default" - A main content of the menu item
16003     *
16004     * Default text parts of the menu items that you can use for are:
16005     * @li "default" - label in the menu item
16006     *
16007     * @see @ref tutorial_menu
16008     * @{
16009     */
16010
16011    /**
16012     * @brief Add a new menu to the parent
16013     *
16014     * @param parent The parent object.
16015     * @return The new object or NULL if it cannot be created.
16016     */
16017    EAPI Evas_Object       *elm_menu_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16018    /**
16019     * @brief Set the parent for the given menu widget
16020     *
16021     * @param obj The menu object.
16022     * @param parent The new parent.
16023     */
16024    EAPI void               elm_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
16025    /**
16026     * @brief Get the parent for the given menu widget
16027     *
16028     * @param obj The menu object.
16029     * @return The parent.
16030     *
16031     * @see elm_menu_parent_set()
16032     */
16033    EAPI Evas_Object       *elm_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16034    /**
16035     * @brief Move the menu to a new position
16036     *
16037     * @param obj The menu object.
16038     * @param x The new position.
16039     * @param y The new position.
16040     *
16041     * Sets the top-left position of the menu to (@p x,@p y).
16042     *
16043     * @note @p x and @p y coordinates are relative to parent.
16044     */
16045    EAPI void               elm_menu_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
16046    /**
16047     * @brief Close a opened menu
16048     *
16049     * @param obj the menu object
16050     * @return void
16051     *
16052     * Hides the menu and all it's sub-menus.
16053     */
16054    EAPI void               elm_menu_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
16055    /**
16056     * @brief Returns a list of @p item's items.
16057     *
16058     * @param obj The menu object
16059     * @return An Eina_List* of @p item's items
16060     */
16061    EAPI const Eina_List   *elm_menu_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16062    /**
16063     * @brief Get the Evas_Object of an Elm_Object_Item
16064     *
16065     * @param it The menu item object.
16066     * @return The edje object containing the swallowed content
16067     *
16068     * @warning Don't manipulate this object!
16069     *
16070     */
16071    EAPI Evas_Object       *elm_menu_item_object_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16072    /**
16073     * @brief Add an item at the end of the given menu widget
16074     *
16075     * @param obj The menu object.
16076     * @param parent The parent menu item (optional)
16077     * @param icon An icon display on the item. The icon will be destryed by the menu.
16078     * @param label The label of the item.
16079     * @param func Function called when the user select the item.
16080     * @param data Data sent by the callback.
16081     * @return Returns the new item.
16082     */
16083    EAPI Elm_Object_Item     *elm_menu_item_add(Evas_Object *obj, Elm_Object_Item *parent, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
16084    /**
16085     * @brief Add an object swallowed in an item at the end of the given menu
16086     * widget
16087     *
16088     * @param obj The menu object.
16089     * @param parent The parent menu item (optional)
16090     * @param subobj The object to swallow
16091     * @param func Function called when the user select the item.
16092     * @param data Data sent by the callback.
16093     * @return Returns the new item.
16094     *
16095     * Add an evas object as an item to the menu.
16096     */
16097    EAPI Elm_Object_Item     *elm_menu_item_add_object(Evas_Object *obj, Elm_Object_Item *parent, Evas_Object *subobj, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
16098    /**
16099     * @brief Set the label of a menu item
16100     *
16101     * @param it The menu item object.
16102     * @param label The label to set for @p item
16103     *
16104     * @warning Don't use this funcion on items created with
16105     * elm_menu_item_add_object() or elm_menu_item_separator_add().
16106     *
16107     * @deprecated Use elm_object_item_text_set() instead
16108     */
16109    EINA_DEPRECATED EAPI void               elm_menu_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
16110    /**
16111     * @brief Get the label of a menu item
16112     *
16113     * @param it The menu item object.
16114     * @return The label of @p item
16115          * @deprecated Use elm_object_item_text_get() instead
16116     */
16117    EINA_DEPRECATED EAPI const char        *elm_menu_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16118    /**
16119     * @brief Set the icon of a menu item to the standard icon with name @p icon
16120     *
16121     * @param it The menu item object.
16122     * @param icon The icon object to set for the content of @p item
16123     *
16124     * Once this icon is set, any previously set icon will be deleted.
16125     */
16126    EAPI void               elm_menu_item_object_icon_name_set(Elm_Object_Item *it, const char *icon) EINA_ARG_NONNULL(1, 2);
16127    /**
16128     * @brief Get the string representation from the icon of a menu item
16129     *
16130     * @param it The menu item object.
16131     * @return The string representation of @p item's icon or NULL
16132     *
16133     * @see elm_menu_item_object_icon_name_set()
16134     */
16135    EAPI const char        *elm_menu_item_object_icon_name_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16136    /**
16137     * @brief Set the content object of a menu item
16138     *
16139     * @param it The menu item object
16140     * @param The content object or NULL
16141     * @return EINA_TRUE on success, else EINA_FALSE
16142     *
16143     * Use this function to change the object swallowed by a menu item, deleting
16144     * any previously swallowed object.
16145     *
16146     * @deprecated Use elm_object_item_content_set() instead
16147     */
16148    EINA_DEPRECATED EAPI Eina_Bool          elm_menu_item_object_content_set(Elm_Object_Item *it, Evas_Object *obj) EINA_ARG_NONNULL(1);
16149    /**
16150     * @brief Get the content object of a menu item
16151     *
16152     * @param it The menu item object
16153     * @return The content object or NULL
16154     * @note If @p item was added with elm_menu_item_add_object, this
16155     * function will return the object passed, else it will return the
16156     * icon object.
16157     *
16158     * @see elm_menu_item_object_content_set()
16159     *
16160     * @deprecated Use elm_object_item_content_get() instead
16161     */
16162    EINA_DEPRECATED EAPI Evas_Object *elm_menu_item_object_content_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16163    /**
16164     * @brief Set the selected state of @p item.
16165     *
16166     * @param it The menu item object.
16167     * @param selected The selected/unselected state of the item
16168     */
16169    EAPI void               elm_menu_item_selected_set(Elm_Object_Item *it, Eina_Bool selected) EINA_ARG_NONNULL(1);
16170    /**
16171     * @brief Get the selected state of @p item.
16172     *
16173     * @param it The menu item object.
16174     * @return The selected/unselected state of the item
16175     *
16176     * @see elm_menu_item_selected_set()
16177     */
16178    EAPI Eina_Bool          elm_menu_item_selected_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16179    /**
16180     * @brief Set the disabled state of @p item.
16181     *
16182     * @param it The menu item object.
16183     * @param disabled The enabled/disabled state of the item
16184     * @deprecated Use elm_object_item_disabled_set() instead
16185     */
16186    EINA_DEPRECATED EAPI void               elm_menu_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
16187    /**
16188     * @brief Get the disabled state of @p item.
16189     *
16190     * @param it The menu item object.
16191     * @return The enabled/disabled state of the item
16192     *
16193     * @see elm_menu_item_disabled_set()
16194     * @deprecated Use elm_object_item_disabled_get() instead
16195     */
16196    EINA_DEPRECATED EAPI Eina_Bool          elm_menu_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16197    /**
16198     * @brief Add a separator item to menu @p obj under @p parent.
16199     *
16200     * @param obj The menu object
16201     * @param parent The item to add the separator under
16202     * @return The created item or NULL on failure
16203     *
16204     * This is item is a @ref Separator.
16205     */
16206    EAPI Elm_Object_Item     *elm_menu_item_separator_add(Evas_Object *obj, Elm_Object_Item *parent) EINA_ARG_NONNULL(1);
16207    /**
16208     * @brief Returns whether @p item is a separator.
16209     *
16210     * @param it The item to check
16211     * @return If true, @p item is a separator
16212     *
16213     * @see elm_menu_item_separator_add()
16214     */
16215    EAPI Eina_Bool          elm_menu_item_is_separator(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16216    /**
16217     * @brief Deletes an item from the menu.
16218     *
16219     * @param it The item to delete.
16220     *
16221     * @see elm_menu_item_add()
16222     */
16223    EAPI void               elm_menu_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16224    /**
16225     * @brief Set the function called when a menu item is deleted.
16226     *
16227     * @param it The item to set the callback on
16228     * @param func The function called
16229     *
16230     * @see elm_menu_item_add()
16231     * @see elm_menu_item_del()
16232     */
16233    EAPI void               elm_menu_item_del_cb_set(Elm_Object_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
16234    /**
16235     * @brief Returns the data associated with menu item @p item.
16236     *
16237     * @param it The item
16238     * @return The data associated with @p item or NULL if none was set.
16239     *
16240     * This is the data set with elm_menu_add() or elm_menu_item_data_set().
16241          *
16242          * @deprecated Use elm_object_item_data_get() instead
16243     */
16244    EINA_DEPRECATED EAPI void              *elm_menu_item_data_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16245    /**
16246     * @brief Sets the data to be associated with menu item @p item.
16247     *
16248     * @param it The item
16249     * @param data The data to be associated with @p item
16250          *
16251          * @deprecated Use elm_object_item_data_set() instead
16252     */
16253    EINA_DEPRECATED EAPI void               elm_menu_item_data_set(Elm_Object_Item *it, const void *data) EINA_ARG_NONNULL(1);
16254
16255    /**
16256     * @brief Returns a list of @p item's subitems.
16257     *
16258     * @param it The item
16259     * @return An Eina_List* of @p item's subitems
16260     *
16261     * @see elm_menu_add()
16262     */
16263    EAPI const Eina_List   *elm_menu_item_subitems_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16264    /**
16265     * @brief Get the position of a menu item
16266     *
16267     * @param it The menu item
16268     * @return The item's index
16269     *
16270     * This function returns the index position of a menu item in a menu.
16271     * For a sub-menu, this number is relative to the first item in the sub-menu.
16272     *
16273     * @note Index values begin with 0
16274     */
16275    EAPI unsigned int       elm_menu_item_index_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1) EINA_PURE;
16276    /**
16277     * @brief @brief Return a menu item's owner menu
16278     *
16279     * @param it The menu item
16280     * @return The menu object owning @p item, or NULL on failure
16281     *
16282     * Use this function to get the menu object owning an item.
16283     */
16284    EAPI Evas_Object       *elm_menu_item_menu_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1) EINA_PURE;
16285    /**
16286     * @brief Get the selected item in the menu
16287     *
16288     * @param obj The menu object
16289     * @return The selected item, or NULL if none
16290     *
16291     * @see elm_menu_item_selected_get()
16292     * @see elm_menu_item_selected_set()
16293     */
16294    EAPI Elm_Object_Item *elm_menu_selected_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
16295    /**
16296     * @brief Get the last item in the menu
16297     *
16298     * @param obj The menu object
16299     * @return The last item, or NULL if none
16300     */
16301    EAPI Elm_Object_Item *elm_menu_last_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
16302    /**
16303     * @brief Get the first item in the menu
16304     *
16305     * @param obj The menu object
16306     * @return The first item, or NULL if none
16307     */
16308    EAPI Elm_Object_Item *elm_menu_first_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
16309    /**
16310     * @brief Get the next item in the menu.
16311     *
16312     * @param it The menu item object.
16313     * @return The item after it, or NULL if none
16314     */
16315    EAPI Elm_Object_Item *elm_menu_item_next_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16316    /**
16317     * @brief Get the previous item in the menu.
16318     *
16319     * @param it The menu item object.
16320     * @return The item before it, or NULL if none
16321     */
16322    EAPI Elm_Object_Item *elm_menu_item_prev_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16323    /**
16324     * @}
16325     */
16326
16327    /**
16328     * @defgroup List List
16329     * @ingroup Elementary
16330     *
16331     * @image html img/widget/list/preview-00.png
16332     * @image latex img/widget/list/preview-00.eps width=\textwidth
16333     *
16334     * @image html img/list.png
16335     * @image latex img/list.eps width=\textwidth
16336     *
16337     * A list widget is a container whose children are displayed vertically or
16338     * horizontally, in order, and can be selected.
16339     * The list can accept only one or multiple items selection. Also has many
16340     * modes of items displaying.
16341     *
16342     * A list is a very simple type of list widget.  For more robust
16343     * lists, @ref Genlist should probably be used.
16344     *
16345     * Smart callbacks one can listen to:
16346     * - @c "activated" - The user has double-clicked or pressed
16347     *   (enter|return|spacebar) on an item. The @c event_info parameter
16348     *   is the item that was activated.
16349     * - @c "clicked,double" - The user has double-clicked an item.
16350     *   The @c event_info parameter is the item that was double-clicked.
16351     * - "selected" - when the user selected an item
16352     * - "unselected" - when the user unselected an item
16353     * - "longpressed" - an item in the list is long-pressed
16354     * - "edge,top" - the list is scrolled until the top edge
16355     * - "edge,bottom" - the list is scrolled until the bottom edge
16356     * - "edge,left" - the list is scrolled until the left edge
16357     * - "edge,right" - the list is scrolled until the right edge
16358     * - "language,changed" - the program's language changed
16359     *
16360     * Available styles for it:
16361     * - @c "default"
16362     *
16363     * List of examples:
16364     * @li @ref list_example_01
16365     * @li @ref list_example_02
16366     * @li @ref list_example_03
16367     */
16368
16369    /**
16370     * @addtogroup List
16371     * @{
16372     */
16373
16374    /**
16375     * @enum _Elm_List_Mode
16376     * @typedef Elm_List_Mode
16377     *
16378     * Set list's resize behavior, transverse axis scroll and
16379     * items cropping. See each mode's description for more details.
16380     *
16381     * @note Default value is #ELM_LIST_SCROLL.
16382     *
16383     * Values <b> don't </b> work as bitmask, only one can be choosen.
16384     *
16385     * @see elm_list_mode_set()
16386     * @see elm_list_mode_get()
16387     *
16388     * @ingroup List
16389     */
16390    typedef enum _Elm_List_Mode
16391      {
16392         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. */
16393         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). */
16394         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. */
16395         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. */
16396         ELM_LIST_LAST /**< Indicates error if returned by elm_list_mode_get() */
16397      } Elm_List_Mode;
16398
16399    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().  */
16400
16401    /**
16402     * Add a new list widget to the given parent Elementary
16403     * (container) object.
16404     *
16405     * @param parent The parent object.
16406     * @return a new list widget handle or @c NULL, on errors.
16407     *
16408     * This function inserts a new list widget on the canvas.
16409     *
16410     * @ingroup List
16411     */
16412    EAPI Evas_Object     *elm_list_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16413
16414    /**
16415     * Starts the list.
16416     *
16417     * @param obj The list object
16418     *
16419     * @note Call before running show() on the list object.
16420     * @warning If not called, it won't display the list properly.
16421     *
16422     * @code
16423     * li = elm_list_add(win);
16424     * elm_list_item_append(li, "First", NULL, NULL, NULL, NULL);
16425     * elm_list_item_append(li, "Second", NULL, NULL, NULL, NULL);
16426     * elm_list_go(li);
16427     * evas_object_show(li);
16428     * @endcode
16429     *
16430     * @ingroup List
16431     */
16432    EAPI void             elm_list_go(Evas_Object *obj) EINA_ARG_NONNULL(1);
16433
16434    /**
16435     * Enable or disable multiple items selection on the list object.
16436     *
16437     * @param obj The list object
16438     * @param multi @c EINA_TRUE to enable multi selection or @c EINA_FALSE to
16439     * disable it.
16440     *
16441     * Disabled by default. If disabled, the user can select a single item of
16442     * the list each time. Selected items are highlighted on list.
16443     * If enabled, many items can be selected.
16444     *
16445     * If a selected item is selected again, it will be unselected.
16446     *
16447     * @see elm_list_multi_select_get()
16448     *
16449     * @ingroup List
16450     */
16451    EAPI void             elm_list_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
16452
16453    /**
16454     * Get a value whether multiple items selection is enabled or not.
16455     *
16456     * @see elm_list_multi_select_set() for details.
16457     *
16458     * @param obj The list object.
16459     * @return @c EINA_TRUE means multiple items selection is enabled.
16460     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16461     * @c EINA_FALSE is returned.
16462     *
16463     * @ingroup List
16464     */
16465    EAPI Eina_Bool        elm_list_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16466
16467    /**
16468     * Set which mode to use for the list object.
16469     *
16470     * @param obj The list object
16471     * @param mode One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
16472     * #ELM_LIST_LIMIT or #ELM_LIST_EXPAND.
16473     *
16474     * Set list's resize behavior, transverse axis scroll and
16475     * items cropping. See each mode's description for more details.
16476     *
16477     * @note Default value is #ELM_LIST_SCROLL.
16478     *
16479     * Only one can be set, if a previous one was set, it will be changed
16480     * by the new mode set. Bitmask won't work as well.
16481     *
16482     * @see elm_list_mode_get()
16483     *
16484     * @ingroup List
16485     */
16486    EAPI void             elm_list_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
16487
16488    /**
16489     * Get the mode the list is at.
16490     *
16491     * @param obj The list object
16492     * @return One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL,
16493     * #ELM_LIST_LIMIT, #ELM_LIST_EXPAND or #ELM_LIST_LAST on errors.
16494     *
16495     * @note see elm_list_mode_set() for more information.
16496     *
16497     * @ingroup List
16498     */
16499    EAPI Elm_List_Mode    elm_list_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16500
16501    /**
16502     * Enable or disable horizontal mode on the list object.
16503     *
16504     * @param obj The list object.
16505     * @param horizontal @c EINA_TRUE to enable horizontal or @c EINA_FALSE to
16506     * disable it, i.e., to enable vertical mode.
16507     *
16508     * @note Vertical mode is set by default.
16509     *
16510     * On horizontal mode items are displayed on list from left to right,
16511     * instead of from top to bottom. Also, the list will scroll horizontally.
16512     * Each item will presents left icon on top and right icon, or end, at
16513     * the bottom.
16514     *
16515     * @see elm_list_horizontal_get()
16516     *
16517     * @ingroup List
16518     */
16519    EAPI void             elm_list_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
16520
16521    /**
16522     * Get a value whether horizontal mode is enabled or not.
16523     *
16524     * @param obj The list object.
16525     * @return @c EINA_TRUE means horizontal mode selection is enabled.
16526     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16527     * @c EINA_FALSE is returned.
16528     *
16529     * @see elm_list_horizontal_set() for details.
16530     *
16531     * @ingroup List
16532     */
16533    EAPI Eina_Bool        elm_list_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16534
16535    /**
16536     * Enable or disable always select mode on the list object.
16537     *
16538     * @param obj The list object
16539     * @param always_select @c EINA_TRUE to enable always select mode or
16540     * @c EINA_FALSE to disable it.
16541     *
16542     * @note Always select mode is disabled by default.
16543     *
16544     * Default behavior of list items is to only call its callback function
16545     * the first time it's pressed, i.e., when it is selected. If a selected
16546     * item is pressed again, and multi-select is disabled, it won't call
16547     * this function (if multi-select is enabled it will unselect the item).
16548     *
16549     * If always select is enabled, it will call the callback function
16550     * everytime a item is pressed, so it will call when the item is selected,
16551     * and again when a selected item is pressed.
16552     *
16553     * @see elm_list_always_select_mode_get()
16554     * @see elm_list_multi_select_set()
16555     *
16556     * @ingroup List
16557     */
16558    EAPI void             elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
16559
16560    /**
16561     * Get a value whether always select mode is enabled or not, meaning that
16562     * an item will always call its callback function, even if already selected.
16563     *
16564     * @param obj The list object
16565     * @return @c EINA_TRUE means horizontal mode selection is enabled.
16566     * @c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
16567     * @c EINA_FALSE is returned.
16568     *
16569     * @see elm_list_always_select_mode_set() for details.
16570     *
16571     * @ingroup List
16572     */
16573    EAPI Eina_Bool        elm_list_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16574
16575    /**
16576     * Set bouncing behaviour when the scrolled content reaches an edge.
16577     *
16578     * Tell the internal scroller object whether it should bounce or not
16579     * when it reaches the respective edges for each axis.
16580     *
16581     * @param obj The list object
16582     * @param h_bounce Whether to bounce or not in the horizontal axis.
16583     * @param v_bounce Whether to bounce or not in the vertical axis.
16584     *
16585     * @see elm_scroller_bounce_set()
16586     *
16587     * @ingroup List
16588     */
16589    EAPI void             elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
16590
16591    /**
16592     * Get the bouncing behaviour of the internal scroller.
16593     *
16594     * Get whether the internal scroller should bounce when the edge of each
16595     * axis is reached scrolling.
16596     *
16597     * @param obj The list object.
16598     * @param h_bounce Pointer where to store the bounce state of the horizontal
16599     * axis.
16600     * @param v_bounce Pointer where to store the bounce state of the vertical
16601     * axis.
16602     *
16603     * @see elm_scroller_bounce_get()
16604     * @see elm_list_bounce_set()
16605     *
16606     * @ingroup List
16607     */
16608    EAPI void             elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
16609
16610    /**
16611     * Set the scrollbar policy.
16612     *
16613     * @param obj The list object
16614     * @param policy_h Horizontal scrollbar policy.
16615     * @param policy_v Vertical scrollbar policy.
16616     *
16617     * This sets the scrollbar visibility policy for the given scroller.
16618     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
16619     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
16620     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
16621     * This applies respectively for the horizontal and vertical scrollbars.
16622     *
16623     * The both are disabled by default, i.e., are set to
16624     * #ELM_SCROLLER_POLICY_OFF.
16625     *
16626     * @ingroup List
16627     */
16628    EAPI void             elm_list_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
16629
16630    /**
16631     * Get the scrollbar policy.
16632     *
16633     * @see elm_list_scroller_policy_get() for details.
16634     *
16635     * @param obj The list object.
16636     * @param policy_h Pointer where to store horizontal scrollbar policy.
16637     * @param policy_v Pointer where to store vertical scrollbar policy.
16638     *
16639     * @ingroup List
16640     */
16641    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);
16642
16643    /**
16644     * Append a new item to the list object.
16645     *
16646     * @param obj The list object.
16647     * @param label The label of the list item.
16648     * @param icon The icon object to use for the left side of the item. An
16649     * icon can be any Evas object, but usually it is an icon created
16650     * with elm_icon_add().
16651     * @param end The icon object to use for the right side of the item. An
16652     * icon can be any Evas object.
16653     * @param func The function to call when the item is clicked.
16654     * @param data The data to associate with the item for related callbacks.
16655     *
16656     * @return The created item or @c NULL upon failure.
16657     *
16658     * A new item will be created and appended to the list, i.e., will
16659     * be set as @b last item.
16660     *
16661     * Items created with this method can be deleted with
16662     * elm_list_item_del().
16663     *
16664     * Associated @p data can be properly freed when item is deleted if a
16665     * callback function is set with elm_list_item_del_cb_set().
16666     *
16667     * If a function is passed as argument, it will be called everytime this item
16668     * is selected, i.e., the user clicks over an unselected item.
16669     * If always select is enabled it will call this function every time
16670     * user clicks over an item (already selected or not).
16671     * If such function isn't needed, just passing
16672     * @c NULL as @p func is enough. The same should be done for @p data.
16673     *
16674     * Simple example (with no function callback or data associated):
16675     * @code
16676     * li = elm_list_add(win);
16677     * ic = elm_icon_add(win);
16678     * elm_icon_file_set(ic, "path/to/image", NULL);
16679     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
16680     * elm_list_item_append(li, "label", ic, NULL, NULL, NULL);
16681     * elm_list_go(li);
16682     * evas_object_show(li);
16683     * @endcode
16684     *
16685     * @see elm_list_always_select_mode_set()
16686     * @see elm_list_item_del()
16687     * @see elm_list_item_del_cb_set()
16688     * @see elm_list_clear()
16689     * @see elm_icon_add()
16690     *
16691     * @ingroup List
16692     */
16693    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);
16694
16695    /**
16696     * Prepend a new item to the list object.
16697     *
16698     * @param obj The list object.
16699     * @param label The label of the list item.
16700     * @param icon The icon object to use for the left side of the item. An
16701     * icon can be any Evas object, but usually it is an icon created
16702     * with elm_icon_add().
16703     * @param end The icon object to use for the right side of the item. An
16704     * icon can be any Evas object.
16705     * @param func The function to call when the item is clicked.
16706     * @param data The data to associate with the item for related callbacks.
16707     *
16708     * @return The created item or @c NULL upon failure.
16709     *
16710     * A new item will be created and prepended to the list, i.e., will
16711     * be set as @b first item.
16712     *
16713     * Items created with this method can be deleted with
16714     * elm_list_item_del().
16715     *
16716     * Associated @p data can be properly freed when item is deleted if a
16717     * callback function is set with elm_list_item_del_cb_set().
16718     *
16719     * If a function is passed as argument, it will be called everytime this item
16720     * is selected, i.e., the user clicks over an unselected item.
16721     * If always select is enabled it will call this function every time
16722     * user clicks over an item (already selected or not).
16723     * If such function isn't needed, just passing
16724     * @c NULL as @p func is enough. The same should be done for @p data.
16725     *
16726     * @see elm_list_item_append() for a simple code example.
16727     * @see elm_list_always_select_mode_set()
16728     * @see elm_list_item_del()
16729     * @see elm_list_item_del_cb_set()
16730     * @see elm_list_clear()
16731     * @see elm_icon_add()
16732     *
16733     * @ingroup List
16734     */
16735    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);
16736
16737    /**
16738     * Insert a new item into the list object before item @p before.
16739     *
16740     * @param obj The list object.
16741     * @param before The list item to insert before.
16742     * @param label The label of the list item.
16743     * @param icon The icon object to use for the left side of the item. An
16744     * icon can be any Evas object, but usually it is an icon created
16745     * with elm_icon_add().
16746     * @param end The icon object to use for the right side of the item. An
16747     * icon can be any Evas object.
16748     * @param func The function to call when the item is clicked.
16749     * @param data The data to associate with the item for related callbacks.
16750     *
16751     * @return The created item or @c NULL upon failure.
16752     *
16753     * A new item will be created and added to the list. Its position in
16754     * this list will be just before item @p before.
16755     *
16756     * Items created with this method can be deleted with
16757     * elm_list_item_del().
16758     *
16759     * Associated @p data can be properly freed when item is deleted if a
16760     * callback function is set with elm_list_item_del_cb_set().
16761     *
16762     * If a function is passed as argument, it will be called everytime this item
16763     * is selected, i.e., the user clicks over an unselected item.
16764     * If always select is enabled it will call this function every time
16765     * user clicks over an item (already selected or not).
16766     * If such function isn't needed, just passing
16767     * @c NULL as @p func is enough. The same should be done for @p data.
16768     *
16769     * @see elm_list_item_append() for a simple code example.
16770     * @see elm_list_always_select_mode_set()
16771     * @see elm_list_item_del()
16772     * @see elm_list_item_del_cb_set()
16773     * @see elm_list_clear()
16774     * @see elm_icon_add()
16775     *
16776     * @ingroup List
16777     */
16778    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);
16779
16780    /**
16781     * Insert a new item into the list object after item @p after.
16782     *
16783     * @param obj The list object.
16784     * @param after The list item to insert after.
16785     * @param label The label of the list item.
16786     * @param icon The icon object to use for the left side of the item. An
16787     * icon can be any Evas object, but usually it is an icon created
16788     * with elm_icon_add().
16789     * @param end The icon object to use for the right side of the item. An
16790     * icon can be any Evas object.
16791     * @param func The function to call when the item is clicked.
16792     * @param data The data to associate with the item for related callbacks.
16793     *
16794     * @return The created item or @c NULL upon failure.
16795     *
16796     * A new item will be created and added to the list. Its position in
16797     * this list will be just after item @p after.
16798     *
16799     * Items created with this method can be deleted with
16800     * elm_list_item_del().
16801     *
16802     * Associated @p data can be properly freed when item is deleted if a
16803     * callback function is set with elm_list_item_del_cb_set().
16804     *
16805     * If a function is passed as argument, it will be called everytime this item
16806     * is selected, i.e., the user clicks over an unselected item.
16807     * If always select is enabled it will call this function every time
16808     * user clicks over an item (already selected or not).
16809     * If such function isn't needed, just passing
16810     * @c NULL as @p func is enough. The same should be done for @p data.
16811     *
16812     * @see elm_list_item_append() for a simple code example.
16813     * @see elm_list_always_select_mode_set()
16814     * @see elm_list_item_del()
16815     * @see elm_list_item_del_cb_set()
16816     * @see elm_list_clear()
16817     * @see elm_icon_add()
16818     *
16819     * @ingroup List
16820     */
16821    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);
16822
16823    /**
16824     * Insert a new item into the sorted list object.
16825     *
16826     * @param obj The list object.
16827     * @param label The label of the list item.
16828     * @param icon The icon object to use for the left side of the item. An
16829     * icon can be any Evas object, but usually it is an icon created
16830     * with elm_icon_add().
16831     * @param end The icon object to use for the right side of the item. An
16832     * icon can be any Evas object.
16833     * @param func The function to call when the item is clicked.
16834     * @param data The data to associate with the item for related callbacks.
16835     * @param cmp_func The comparing function to be used to sort list
16836     * items <b>by #Elm_List_Item item handles</b>. This function will
16837     * receive two items and compare them, returning a non-negative integer
16838     * if the second item should be place after the first, or negative value
16839     * if should be placed before.
16840     *
16841     * @return The created item or @c NULL upon failure.
16842     *
16843     * @note This function inserts values into a list object assuming it was
16844     * sorted and the result will be sorted.
16845     *
16846     * A new item will be created and added to the list. Its position in
16847     * this list will be found comparing the new item with previously inserted
16848     * items using function @p cmp_func.
16849     *
16850     * Items created with this method can be deleted with
16851     * elm_list_item_del().
16852     *
16853     * Associated @p data can be properly freed when item is deleted if a
16854     * callback function is set with elm_list_item_del_cb_set().
16855     *
16856     * If a function is passed as argument, it will be called everytime this item
16857     * is selected, i.e., the user clicks over an unselected item.
16858     * If always select is enabled it will call this function every time
16859     * user clicks over an item (already selected or not).
16860     * If such function isn't needed, just passing
16861     * @c NULL as @p func is enough. The same should be done for @p data.
16862     *
16863     * @see elm_list_item_append() for a simple code example.
16864     * @see elm_list_always_select_mode_set()
16865     * @see elm_list_item_del()
16866     * @see elm_list_item_del_cb_set()
16867     * @see elm_list_clear()
16868     * @see elm_icon_add()
16869     *
16870     * @ingroup List
16871     */
16872    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);
16873
16874    /**
16875     * Remove all list's items.
16876     *
16877     * @param obj The list object
16878     *
16879     * @see elm_list_item_del()
16880     * @see elm_list_item_append()
16881     *
16882     * @ingroup List
16883     */
16884    EAPI void             elm_list_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
16885
16886    /**
16887     * Get a list of all the list items.
16888     *
16889     * @param obj The list object
16890     * @return An @c Eina_List of list items, #Elm_List_Item,
16891     * or @c NULL on failure.
16892     *
16893     * @see elm_list_item_append()
16894     * @see elm_list_item_del()
16895     * @see elm_list_clear()
16896     *
16897     * @ingroup List
16898     */
16899    EAPI const Eina_List *elm_list_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16900
16901    /**
16902     * Get the selected item.
16903     *
16904     * @param obj The list object.
16905     * @return The selected list item.
16906     *
16907     * The selected item can be unselected with function
16908     * elm_list_item_selected_set().
16909     *
16910     * The selected item always will be highlighted on list.
16911     *
16912     * @see elm_list_selected_items_get()
16913     *
16914     * @ingroup List
16915     */
16916    EAPI Elm_List_Item   *elm_list_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16917
16918    /**
16919     * Return a list of the currently selected list items.
16920     *
16921     * @param obj The list object.
16922     * @return An @c Eina_List of list items, #Elm_List_Item,
16923     * or @c NULL on failure.
16924     *
16925     * Multiple items can be selected if multi select is enabled. It can be
16926     * done with elm_list_multi_select_set().
16927     *
16928     * @see elm_list_selected_item_get()
16929     * @see elm_list_multi_select_set()
16930     *
16931     * @ingroup List
16932     */
16933    EAPI const Eina_List *elm_list_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16934
16935    /**
16936     * Set the selected state of an item.
16937     *
16938     * @param item The list item
16939     * @param selected The selected state
16940     *
16941     * This sets the selected state of the given item @p it.
16942     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
16943     *
16944     * If a new item is selected the previosly selected will be unselected,
16945     * unless multiple selection is enabled with elm_list_multi_select_set().
16946     * Previoulsy selected item can be get with function
16947     * elm_list_selected_item_get().
16948     *
16949     * Selected items will be highlighted.
16950     *
16951     * @see elm_list_item_selected_get()
16952     * @see elm_list_selected_item_get()
16953     * @see elm_list_multi_select_set()
16954     *
16955     * @ingroup List
16956     */
16957    EAPI void             elm_list_item_selected_set(Elm_List_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
16958
16959    /*
16960     * Get whether the @p item is selected or not.
16961     *
16962     * @param item The list item.
16963     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
16964     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
16965     *
16966     * @see elm_list_selected_item_set() for details.
16967     * @see elm_list_item_selected_get()
16968     *
16969     * @ingroup List
16970     */
16971    EAPI Eina_Bool        elm_list_item_selected_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
16972
16973    /**
16974     * Set or unset item as a separator.
16975     *
16976     * @param it The list item.
16977     * @param setting @c EINA_TRUE to set item @p it as separator or
16978     * @c EINA_FALSE to unset, i.e., item will be used as a regular item.
16979     *
16980     * Items aren't set as separator by default.
16981     *
16982     * If set as separator it will display separator theme, so won't display
16983     * icons or label.
16984     *
16985     * @see elm_list_item_separator_get()
16986     *
16987     * @ingroup List
16988     */
16989    EAPI void             elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting) EINA_ARG_NONNULL(1);
16990
16991    /**
16992     * Get a value whether item is a separator or not.
16993     *
16994     * @see elm_list_item_separator_set() for details.
16995     *
16996     * @param it The list item.
16997     * @return @c EINA_TRUE means item @p it is a separator. @c EINA_FALSE
16998     * indicates it's not. If @p it is @c NULL, @c EINA_FALSE is returned.
16999     *
17000     * @ingroup List
17001     */
17002    EAPI Eina_Bool        elm_list_item_separator_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17003
17004    /**
17005     * Show @p item in the list view.
17006     *
17007     * @param item The list item to be shown.
17008     *
17009     * It won't animate list until item is visible. If such behavior is wanted,
17010     * use elm_list_bring_in() intead.
17011     *
17012     * @ingroup List
17013     */
17014    EAPI void             elm_list_item_show(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17015
17016    /**
17017     * Bring in the given item to list view.
17018     *
17019     * @param item The item.
17020     *
17021     * This causes list to jump to the given item @p item and show it
17022     * (by scrolling), if it is not fully visible.
17023     *
17024     * This may use animation to do so and take a period of time.
17025     *
17026     * If animation isn't wanted, elm_list_item_show() can be used.
17027     *
17028     * @ingroup List
17029     */
17030    EAPI void             elm_list_item_bring_in(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17031
17032    /**
17033     * Delete them item from the list.
17034     *
17035     * @param item The item of list to be deleted.
17036     *
17037     * If deleting all list items is required, elm_list_clear()
17038     * should be used instead of getting items list and deleting each one.
17039     *
17040     * @see elm_list_clear()
17041     * @see elm_list_item_append()
17042     * @see elm_list_item_del_cb_set()
17043     *
17044     * @ingroup List
17045     */
17046    EAPI void             elm_list_item_del(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17047
17048    /**
17049     * Set the function called when a list item is freed.
17050     *
17051     * @param item The item to set the callback on
17052     * @param func The function called
17053     *
17054     * If there is a @p func, then it will be called prior item's memory release.
17055     * That will be called with the following arguments:
17056     * @li item's data;
17057     * @li item's Evas object;
17058     * @li item itself;
17059     *
17060     * This way, a data associated to a list item could be properly freed.
17061     *
17062     * @ingroup List
17063     */
17064    EAPI void             elm_list_item_del_cb_set(Elm_List_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
17065
17066    /**
17067     * Get the data associated to the item.
17068     *
17069     * @param item The list item
17070     * @return The data associated to @p item
17071     *
17072     * The return value is a pointer to data associated to @p item when it was
17073     * created, with function elm_list_item_append() or similar. If no data
17074     * was passed as argument, it will return @c NULL.
17075     *
17076     * @see elm_list_item_append()
17077     *
17078     * @ingroup List
17079     */
17080    EAPI void            *elm_list_item_data_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17081
17082    /**
17083     * Get the left side icon associated to the item.
17084     *
17085     * @param item The list item
17086     * @return The left side icon associated to @p item
17087     *
17088     * The return value is a pointer to the icon associated to @p item when
17089     * it was
17090     * created, with function elm_list_item_append() or similar, or later
17091     * with function elm_list_item_icon_set(). If no icon
17092     * was passed as argument, it will return @c NULL.
17093     *
17094     * @see elm_list_item_append()
17095     * @see elm_list_item_icon_set()
17096     *
17097     * @ingroup List
17098     */
17099    EAPI Evas_Object     *elm_list_item_icon_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17100
17101    /**
17102     * Set the left side icon associated to the item.
17103     *
17104     * @param item The list item
17105     * @param icon The left side icon object to associate with @p item
17106     *
17107     * The icon object to use at left side of the item. An
17108     * icon can be any Evas object, but usually it is an icon created
17109     * with elm_icon_add().
17110     *
17111     * Once the icon object is set, a previously set one will be deleted.
17112     * @warning Setting the same icon for two items will cause the icon to
17113     * dissapear from the first item.
17114     *
17115     * If an icon was passed as argument on item creation, with function
17116     * elm_list_item_append() or similar, it will be already
17117     * associated to the item.
17118     *
17119     * @see elm_list_item_append()
17120     * @see elm_list_item_icon_get()
17121     *
17122     * @ingroup List
17123     */
17124    EAPI void             elm_list_item_icon_set(Elm_List_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
17125
17126    /**
17127     * Get the right side icon associated to the item.
17128     *
17129     * @param item The list item
17130     * @return The right side icon associated to @p item
17131     *
17132     * The return value is a pointer to the icon associated to @p item when
17133     * it was
17134     * created, with function elm_list_item_append() or similar, or later
17135     * with function elm_list_item_icon_set(). If no icon
17136     * was passed as argument, it will return @c NULL.
17137     *
17138     * @see elm_list_item_append()
17139     * @see elm_list_item_icon_set()
17140     *
17141     * @ingroup List
17142     */
17143    EAPI Evas_Object     *elm_list_item_end_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17144
17145    /**
17146     * Set the right side icon associated to the item.
17147     *
17148     * @param item The list item
17149     * @param end The right side icon object to associate with @p item
17150     *
17151     * The icon object to use at right side of the item. An
17152     * icon can be any Evas object, but usually it is an icon created
17153     * with elm_icon_add().
17154     *
17155     * Once the icon object is set, a previously set one will be deleted.
17156     * @warning Setting the same icon for two items will cause the icon to
17157     * dissapear from the first item.
17158     *
17159     * If an icon was passed as argument on item creation, with function
17160     * elm_list_item_append() or similar, it will be already
17161     * associated to the item.
17162     *
17163     * @see elm_list_item_append()
17164     * @see elm_list_item_end_get()
17165     *
17166     * @ingroup List
17167     */
17168    EAPI void             elm_list_item_end_set(Elm_List_Item *item, Evas_Object *end) EINA_ARG_NONNULL(1);
17169
17170    /**
17171     * Gets the base object of the item.
17172     *
17173     * @param item The list item
17174     * @return The base object associated with @p item
17175     *
17176     * Base object is the @c Evas_Object that represents that item.
17177     *
17178     * @ingroup List
17179     */
17180    EAPI Evas_Object     *elm_list_item_object_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17181    EINA_DEPRECATED EAPI Evas_Object     *elm_list_item_base_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17182
17183    /**
17184     * Get the label of item.
17185     *
17186     * @param item The item of list.
17187     * @return The label of item.
17188     *
17189     * The return value is a pointer to the label associated to @p item when
17190     * it was created, with function elm_list_item_append(), or later
17191     * with function elm_list_item_label_set. If no label
17192     * was passed as argument, it will return @c NULL.
17193     *
17194     * @see elm_list_item_label_set() for more details.
17195     * @see elm_list_item_append()
17196     *
17197     * @ingroup List
17198     */
17199    EAPI const char      *elm_list_item_label_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17200
17201    /**
17202     * Set the label of item.
17203     *
17204     * @param item The item of list.
17205     * @param text The label of item.
17206     *
17207     * The label to be displayed by the item.
17208     * Label will be placed between left and right side icons (if set).
17209     *
17210     * If a label was passed as argument on item creation, with function
17211     * elm_list_item_append() or similar, it will be already
17212     * displayed by the item.
17213     *
17214     * @see elm_list_item_label_get()
17215     * @see elm_list_item_append()
17216     *
17217     * @ingroup List
17218     */
17219    EAPI void             elm_list_item_label_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
17220
17221
17222    /**
17223     * Get the item before @p it in list.
17224     *
17225     * @param it The list item.
17226     * @return The item before @p it, or @c NULL if none or on failure.
17227     *
17228     * @note If it is the first item, @c NULL will be returned.
17229     *
17230     * @see elm_list_item_append()
17231     * @see elm_list_items_get()
17232     *
17233     * @ingroup List
17234     */
17235    EAPI Elm_List_Item   *elm_list_item_prev(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17236
17237    /**
17238     * Get the item after @p it in list.
17239     *
17240     * @param it The list item.
17241     * @return The item after @p it, or @c NULL if none or on failure.
17242     *
17243     * @note If it is the last item, @c NULL will be returned.
17244     *
17245     * @see elm_list_item_append()
17246     * @see elm_list_items_get()
17247     *
17248     * @ingroup List
17249     */
17250    EAPI Elm_List_Item   *elm_list_item_next(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17251
17252    /**
17253     * Sets the disabled/enabled state of a list item.
17254     *
17255     * @param it The item.
17256     * @param disabled The disabled state.
17257     *
17258     * A disabled item cannot be selected or unselected. It will also
17259     * change its appearance (generally greyed out). This sets the
17260     * disabled state (@c EINA_TRUE for disabled, @c EINA_FALSE for
17261     * enabled).
17262     *
17263     * @ingroup List
17264     */
17265    EAPI void             elm_list_item_disabled_set(Elm_List_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
17266
17267    /**
17268     * Get a value whether list item is disabled or not.
17269     *
17270     * @param it The item.
17271     * @return The disabled state.
17272     *
17273     * @see elm_list_item_disabled_set() for more details.
17274     *
17275     * @ingroup List
17276     */
17277    EAPI Eina_Bool        elm_list_item_disabled_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
17278
17279    /**
17280     * Set the text to be shown in a given list item's tooltips.
17281     *
17282     * @param item Target item.
17283     * @param text The text to set in the content.
17284     *
17285     * Setup the text as tooltip to object. The item can have only one tooltip,
17286     * so any previous tooltip data - set with this function or
17287     * elm_list_item_tooltip_content_cb_set() - is removed.
17288     *
17289     * @see elm_object_tooltip_text_set() for more details.
17290     *
17291     * @ingroup List
17292     */
17293    EAPI void             elm_list_item_tooltip_text_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
17294
17295
17296    /**
17297     * @brief Disable size restrictions on an object's tooltip
17298     * @param item The tooltip's anchor object
17299     * @param disable If EINA_TRUE, size restrictions are disabled
17300     * @return EINA_FALSE on failure, EINA_TRUE on success
17301     *
17302     * This function allows a tooltip to expand beyond its parant window's canvas.
17303     * It will instead be limited only by the size of the display.
17304     */
17305    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disable(Elm_List_Item *item, Eina_Bool disable) EINA_ARG_NONNULL(1);
17306    /**
17307     * @brief Retrieve size restriction state of an object's tooltip
17308     * @param obj The tooltip's anchor object
17309     * @return If EINA_TRUE, size restrictions are disabled
17310     *
17311     * This function returns whether a tooltip is allowed to expand beyond
17312     * its parant window's canvas.
17313     * It will instead be limited only by the size of the display.
17314     */
17315    EAPI Eina_Bool        elm_list_item_tooltip_size_restrict_disabled_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17316
17317    /**
17318     * Set the content to be shown in the tooltip item.
17319     *
17320     * Setup the tooltip to item. The item can have only one tooltip,
17321     * so any previous tooltip data is removed. @p func(with @p data) will
17322     * be called every time that need show the tooltip and it should
17323     * return a valid Evas_Object. This object is then managed fully by
17324     * tooltip system and is deleted when the tooltip is gone.
17325     *
17326     * @param item the list item being attached a tooltip.
17327     * @param func the function used to create the tooltip contents.
17328     * @param data what to provide to @a func as callback data/context.
17329     * @param del_cb called when data is not needed anymore, either when
17330     *        another callback replaces @a func, the tooltip is unset with
17331     *        elm_list_item_tooltip_unset() or the owner @a item
17332     *        dies. This callback receives as the first parameter the
17333     *        given @a data, and @c event_info is the item.
17334     *
17335     * @see elm_object_tooltip_content_cb_set() for more details.
17336     *
17337     * @ingroup List
17338     */
17339    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);
17340
17341    /**
17342     * Unset tooltip from item.
17343     *
17344     * @param item list item to remove previously set tooltip.
17345     *
17346     * Remove tooltip from item. The callback provided as del_cb to
17347     * elm_list_item_tooltip_content_cb_set() will be called to notify
17348     * it is not used anymore.
17349     *
17350     * @see elm_object_tooltip_unset() for more details.
17351     * @see elm_list_item_tooltip_content_cb_set()
17352     *
17353     * @ingroup List
17354     */
17355    EAPI void             elm_list_item_tooltip_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17356
17357    /**
17358     * Sets a different style for this item tooltip.
17359     *
17360     * @note before you set a style you should define a tooltip with
17361     *       elm_list_item_tooltip_content_cb_set() or
17362     *       elm_list_item_tooltip_text_set()
17363     *
17364     * @param item list item with tooltip already set.
17365     * @param style the theme style to use (default, transparent, ...)
17366     *
17367     * @see elm_object_tooltip_style_set() for more details.
17368     *
17369     * @ingroup List
17370     */
17371    EAPI void             elm_list_item_tooltip_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
17372
17373    /**
17374     * Get the style for this item tooltip.
17375     *
17376     * @param item list item with tooltip already set.
17377     * @return style the theme style in use, defaults to "default". If the
17378     *         object does not have a tooltip set, then NULL is returned.
17379     *
17380     * @see elm_object_tooltip_style_get() for more details.
17381     * @see elm_list_item_tooltip_style_set()
17382     *
17383     * @ingroup List
17384     */
17385    EAPI const char      *elm_list_item_tooltip_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17386
17387    /**
17388     * Set the type of mouse pointer/cursor decoration to be shown,
17389     * when the mouse pointer is over the given list widget item
17390     *
17391     * @param item list item to customize cursor on
17392     * @param cursor the cursor type's name
17393     *
17394     * This function works analogously as elm_object_cursor_set(), but
17395     * here the cursor's changing area is restricted to the item's
17396     * area, and not the whole widget's. Note that that item cursors
17397     * have precedence over widget cursors, so that a mouse over an
17398     * item with custom cursor set will always show @b that cursor.
17399     *
17400     * If this function is called twice for an object, a previously set
17401     * cursor will be unset on the second call.
17402     *
17403     * @see elm_object_cursor_set()
17404     * @see elm_list_item_cursor_get()
17405     * @see elm_list_item_cursor_unset()
17406     *
17407     * @ingroup List
17408     */
17409    EAPI void             elm_list_item_cursor_set(Elm_List_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
17410
17411    /*
17412     * Get the type of mouse pointer/cursor decoration set to be shown,
17413     * when the mouse pointer is over the given list widget item
17414     *
17415     * @param item list item with custom cursor set
17416     * @return the cursor type's name or @c NULL, if no custom cursors
17417     * were set to @p item (and on errors)
17418     *
17419     * @see elm_object_cursor_get()
17420     * @see elm_list_item_cursor_set()
17421     * @see elm_list_item_cursor_unset()
17422     *
17423     * @ingroup List
17424     */
17425    EAPI const char      *elm_list_item_cursor_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17426
17427    /**
17428     * Unset any custom mouse pointer/cursor decoration set to be
17429     * shown, when the mouse pointer is over the given list widget
17430     * item, thus making it show the @b default cursor again.
17431     *
17432     * @param item a list item
17433     *
17434     * Use this call to undo any custom settings on this item's cursor
17435     * decoration, bringing it back to defaults (no custom style set).
17436     *
17437     * @see elm_object_cursor_unset()
17438     * @see elm_list_item_cursor_set()
17439     *
17440     * @ingroup List
17441     */
17442    EAPI void             elm_list_item_cursor_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
17443
17444    /**
17445     * Set a different @b style for a given custom cursor set for a
17446     * list item.
17447     *
17448     * @param item list item with custom cursor set
17449     * @param style the <b>theme style</b> to use (e.g. @c "default",
17450     * @c "transparent", etc)
17451     *
17452     * This function only makes sense when one is using custom mouse
17453     * cursor decorations <b>defined in a theme file</b>, which can have,
17454     * given a cursor name/type, <b>alternate styles</b> on it. It
17455     * works analogously as elm_object_cursor_style_set(), but here
17456     * applyed only to list item objects.
17457     *
17458     * @warning Before you set a cursor style you should have definen a
17459     *       custom cursor previously on the item, with
17460     *       elm_list_item_cursor_set()
17461     *
17462     * @see elm_list_item_cursor_engine_only_set()
17463     * @see elm_list_item_cursor_style_get()
17464     *
17465     * @ingroup List
17466     */
17467    EAPI void             elm_list_item_cursor_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
17468
17469    /**
17470     * Get the current @b style set for a given list item's custom
17471     * cursor
17472     *
17473     * @param item list item with custom cursor set.
17474     * @return style the cursor style in use. If the object does not
17475     *         have a cursor set, then @c NULL is returned.
17476     *
17477     * @see elm_list_item_cursor_style_set() for more details
17478     *
17479     * @ingroup List
17480     */
17481    EAPI const char      *elm_list_item_cursor_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17482
17483    /**
17484     * Set if the (custom)cursor for a given list item should be
17485     * searched in its theme, also, or should only rely on the
17486     * rendering engine.
17487     *
17488     * @param item item with custom (custom) cursor already set on
17489     * @param engine_only Use @c EINA_TRUE to have cursors looked for
17490     * only on those provided by the rendering engine, @c EINA_FALSE to
17491     * have them searched on the widget's theme, as well.
17492     *
17493     * @note This call is of use only if you've set a custom cursor
17494     * for list items, with elm_list_item_cursor_set().
17495     *
17496     * @note By default, cursors will only be looked for between those
17497     * provided by the rendering engine.
17498     *
17499     * @ingroup List
17500     */
17501    EAPI void             elm_list_item_cursor_engine_only_set(Elm_List_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
17502
17503    /**
17504     * Get if the (custom) cursor for a given list item is being
17505     * searched in its theme, also, or is only relying on the rendering
17506     * engine.
17507     *
17508     * @param item a list item
17509     * @return @c EINA_TRUE, if cursors are being looked for only on
17510     * those provided by the rendering engine, @c EINA_FALSE if they
17511     * are being searched on the widget's theme, as well.
17512     *
17513     * @see elm_list_item_cursor_engine_only_set(), for more details
17514     *
17515     * @ingroup List
17516     */
17517    EAPI Eina_Bool        elm_list_item_cursor_engine_only_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
17518
17519    /**
17520     * @}
17521     */
17522
17523    /**
17524     * @defgroup Slider Slider
17525     * @ingroup Elementary
17526     *
17527     * @image html img/widget/slider/preview-00.png
17528     * @image latex img/widget/slider/preview-00.eps width=\textwidth
17529     *
17530     * The slider adds a dragable ā€œsliderā€ widget for selecting the value of
17531     * something within a range.
17532     *
17533     * A slider can be horizontal or vertical. It can contain an Icon and has a
17534     * primary label as well as a units label (that is formatted with floating
17535     * point values and thus accepts a printf-style format string, like
17536     * ā€œ%1.2f unitsā€. There is also an indicator string that may be somewhere
17537     * else (like on the slider itself) that also accepts a format string like
17538     * units. Label, Icon Unit and Indicator strings/objects are optional.
17539     *
17540     * A slider may be inverted which means values invert, with high vales being
17541     * on the left or top and low values on the right or bottom (as opposed to
17542     * normally being low on the left or top and high on the bottom and right).
17543     *
17544     * The slider should have its minimum and maximum values set by the
17545     * application with  elm_slider_min_max_set() and value should also be set by
17546     * the application before use with  elm_slider_value_set(). The span of the
17547     * slider is its length (horizontally or vertically). This will be scaled by
17548     * the object or applications scaling factor. At any point code can query the
17549     * slider for its value with elm_slider_value_get().
17550     *
17551     * Smart callbacks one can listen to:
17552     * - "changed" - Whenever the slider value is changed by the user.
17553     * - "slider,drag,start" - dragging the slider indicator around has started.
17554     * - "slider,drag,stop" - dragging the slider indicator around has stopped.
17555     * - "delay,changed" - A short time after the value is changed by the user.
17556     * This will be called only when the user stops dragging for
17557     * a very short period or when they release their
17558     * finger/mouse, so it avoids possibly expensive reactions to
17559     * the value change.
17560     *
17561     * Available styles for it:
17562     * - @c "default"
17563     *
17564     * Default contents parts of the slider widget that you can use for are:
17565     * @li "icon" - An icon of the slider
17566     * @li "end" - A end part content of the slider
17567     *
17568     * Default text parts of the silder widget that you can use for are:
17569     * @li "default" - Label of the silder
17570     * Here is an example on its usage:
17571     * @li @ref slider_example
17572     */
17573
17574    /**
17575     * @addtogroup Slider
17576     * @{
17577     */
17578
17579    /**
17580     * Add a new slider widget to the given parent Elementary
17581     * (container) object.
17582     *
17583     * @param parent The parent object.
17584     * @return a new slider widget handle or @c NULL, on errors.
17585     *
17586     * This function inserts a new slider widget on the canvas.
17587     *
17588     * @ingroup Slider
17589     */
17590    EAPI Evas_Object       *elm_slider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
17591
17592    /**
17593     * Set the label of a given slider widget
17594     *
17595     * @param obj The progress bar object
17596     * @param label The text label string, in UTF-8
17597     *
17598     * @ingroup Slider
17599     * @deprecated use elm_object_text_set() instead.
17600     */
17601    EINA_DEPRECATED EAPI void               elm_slider_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
17602
17603    /**
17604     * Get the label of a given slider widget
17605     *
17606     * @param obj The progressbar object
17607     * @return The text label string, in UTF-8
17608     *
17609     * @ingroup Slider
17610     * @deprecated use elm_object_text_get() instead.
17611     */
17612    EINA_DEPRECATED EAPI const char        *elm_slider_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17613
17614    /**
17615     * Set the icon object of the slider object.
17616     *
17617     * @param obj The slider object.
17618     * @param icon The icon object.
17619     *
17620     * On horizontal mode, icon is placed at left, and on vertical mode,
17621     * placed at top.
17622     *
17623     * @note Once the icon object is set, a previously set one will be deleted.
17624     * If you want to keep that old content object, use the
17625     * elm_slider_icon_unset() function.
17626     *
17627     * @warning If the object being set does not have minimum size hints set,
17628     * it won't get properly displayed.
17629     *
17630     * @ingroup Slider
17631     * @deprecated use elm_object_part_content_set() instead.
17632     */
17633    EINA_DEPRECATED EAPI void               elm_slider_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
17634
17635    /**
17636     * Unset an icon set on a given slider widget.
17637     *
17638     * @param obj The slider object.
17639     * @return The icon object that was being used, if any was set, or
17640     * @c NULL, otherwise (and on errors).
17641     *
17642     * On horizontal mode, icon is placed at left, and on vertical mode,
17643     * placed at top.
17644     *
17645     * This call will unparent and return the icon object which was set
17646     * for this widget, previously, on success.
17647     *
17648     * @see elm_slider_icon_set() for more details
17649     * @see elm_slider_icon_get()
17650     * @deprecated use elm_object_part_content_unset() instead.
17651     *
17652     * @ingroup Slider
17653     */
17654    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
17655
17656    /**
17657     * Retrieve the icon object set for a given slider widget.
17658     *
17659     * @param obj The slider object.
17660     * @return The icon object's handle, if @p obj had one set, or @c NULL,
17661     * otherwise (and on errors).
17662     *
17663     * On horizontal mode, icon is placed at left, and on vertical mode,
17664     * placed at top.
17665     *
17666     * @see elm_slider_icon_set() for more details
17667     * @see elm_slider_icon_unset()
17668     *
17669     * @deprecated use elm_object_part_content_get() instead.
17670     *
17671     * @ingroup Slider
17672     */
17673    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17674
17675    /**
17676     * Set the end object of the slider object.
17677     *
17678     * @param obj The slider object.
17679     * @param end The end object.
17680     *
17681     * On horizontal mode, end is placed at left, and on vertical mode,
17682     * placed at bottom.
17683     *
17684     * @note Once the icon object is set, a previously set one will be deleted.
17685     * If you want to keep that old content object, use the
17686     * elm_slider_end_unset() function.
17687     *
17688     * @warning If the object being set does not have minimum size hints set,
17689     * it won't get properly displayed.
17690     *
17691     * @deprecated use elm_object_part_content_set() instead.
17692     *
17693     * @ingroup Slider
17694     */
17695    EINA_DEPRECATED EAPI void               elm_slider_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1);
17696
17697    /**
17698     * Unset an end object set on a given slider widget.
17699     *
17700     * @param obj The slider object.
17701     * @return The end object that was being used, if any was set, or
17702     * @c NULL, otherwise (and on errors).
17703     *
17704     * On horizontal mode, end is placed at left, and on vertical mode,
17705     * placed at bottom.
17706     *
17707     * This call will unparent and return the icon object which was set
17708     * for this widget, previously, on success.
17709     *
17710     * @see elm_slider_end_set() for more details.
17711     * @see elm_slider_end_get()
17712     *
17713     * @deprecated use elm_object_part_content_unset() instead
17714     * instead.
17715     *
17716     * @ingroup Slider
17717     */
17718    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
17719
17720    /**
17721     * Retrieve the end object set for a given slider widget.
17722     *
17723     * @param obj The slider object.
17724     * @return The end object's handle, if @p obj had one set, or @c NULL,
17725     * otherwise (and on errors).
17726     *
17727     * On horizontal mode, icon is placed at right, and on vertical mode,
17728     * placed at bottom.
17729     *
17730     * @see elm_slider_end_set() for more details.
17731     * @see elm_slider_end_unset()
17732     *
17733     *
17734     * @deprecated use elm_object_part_content_get() instead
17735     * instead.
17736     *
17737     * @ingroup Slider
17738     */
17739    EINA_DEPRECATED EAPI Evas_Object       *elm_slider_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17740
17741    /**
17742     * Set the (exact) length of the bar region of a given slider widget.
17743     *
17744     * @param obj The slider object.
17745     * @param size The length of the slider's bar region.
17746     *
17747     * This sets the minimum width (when in horizontal mode) or height
17748     * (when in vertical mode) of the actual bar area of the slider
17749     * @p obj. This in turn affects the object's minimum size. Use
17750     * this when you're not setting other size hints expanding on the
17751     * given direction (like weight and alignment hints) and you would
17752     * like it to have a specific size.
17753     *
17754     * @note Icon, end, label, indicator and unit text around @p obj
17755     * will require their
17756     * own space, which will make @p obj to require more the @p size,
17757     * actually.
17758     *
17759     * @see elm_slider_span_size_get()
17760     *
17761     * @ingroup Slider
17762     */
17763    EAPI void               elm_slider_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
17764
17765    /**
17766     * Get the length set for the bar region of a given slider widget
17767     *
17768     * @param obj The slider object.
17769     * @return The length of the slider's bar region.
17770     *
17771     * If that size was not set previously, with
17772     * elm_slider_span_size_set(), this call will return @c 0.
17773     *
17774     * @ingroup Slider
17775     */
17776    EAPI Evas_Coord         elm_slider_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17777
17778    /**
17779     * Set the format string for the unit label.
17780     *
17781     * @param obj The slider object.
17782     * @param format The format string for the unit display.
17783     *
17784     * Unit label is displayed all the time, if set, after slider's bar.
17785     * In horizontal mode, at right and in vertical mode, at bottom.
17786     *
17787     * If @c NULL, unit label won't be visible. If not it sets the format
17788     * string for the label text. To the label text is provided a floating point
17789     * value, so the label text can display up to 1 floating point value.
17790     * Note that this is optional.
17791     *
17792     * Use a format string such as "%1.2f meters" for example, and it will
17793     * display values like: "3.14 meters" for a value equal to 3.14159.
17794     *
17795     * Default is unit label disabled.
17796     *
17797     * @see elm_slider_indicator_format_get()
17798     *
17799     * @ingroup Slider
17800     */
17801    EAPI void               elm_slider_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
17802
17803    /**
17804     * Get the unit label format of the slider.
17805     *
17806     * @param obj The slider object.
17807     * @return The unit label format string in UTF-8.
17808     *
17809     * Unit label is displayed all the time, if set, after slider's bar.
17810     * In horizontal mode, at right and in vertical mode, at bottom.
17811     *
17812     * @see elm_slider_unit_format_set() for more
17813     * information on how this works.
17814     *
17815     * @ingroup Slider
17816     */
17817    EAPI const char        *elm_slider_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17818
17819    /**
17820     * Set the format string for the indicator label.
17821     *
17822     * @param obj The slider object.
17823     * @param indicator The format string for the indicator display.
17824     *
17825     * The slider may display its value somewhere else then unit label,
17826     * for example, above the slider knob that is dragged around. This function
17827     * sets the format string used for this.
17828     *
17829     * If @c NULL, indicator label won't be visible. If not it sets the format
17830     * string for the label text. To the label text is provided a floating point
17831     * value, so the label text can display up to 1 floating point value.
17832     * Note that this is optional.
17833     *
17834     * Use a format string such as "%1.2f meters" for example, and it will
17835     * display values like: "3.14 meters" for a value equal to 3.14159.
17836     *
17837     * Default is indicator label disabled.
17838     *
17839     * @see elm_slider_indicator_format_get()
17840     *
17841     * @ingroup Slider
17842     */
17843    EAPI void               elm_slider_indicator_format_set(Evas_Object *obj, const char *indicator) EINA_ARG_NONNULL(1);
17844
17845    /**
17846     * Get the indicator label format of the slider.
17847     *
17848     * @param obj The slider object.
17849     * @return The indicator label format string in UTF-8.
17850     *
17851     * The slider may display its value somewhere else then unit label,
17852     * for example, above the slider knob that is dragged around. This function
17853     * gets the format string used for this.
17854     *
17855     * @see elm_slider_indicator_format_set() for more
17856     * information on how this works.
17857     *
17858     * @ingroup Slider
17859     */
17860    EAPI const char        *elm_slider_indicator_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17861
17862    /**
17863     * Set the format function pointer for the indicator label
17864     *
17865     * @param obj The slider object.
17866     * @param func The indicator format function.
17867     * @param free_func The freeing function for the format string.
17868     *
17869     * Set the callback function to format the indicator string.
17870     *
17871     * @see elm_slider_indicator_format_set() for more info on how this works.
17872     *
17873     * @ingroup Slider
17874     */
17875   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);
17876
17877   /**
17878    * Set the format function pointer for the units label
17879    *
17880    * @param obj The slider object.
17881    * @param func The units format function.
17882    * @param free_func The freeing function for the format string.
17883    *
17884    * Set the callback function to format the indicator string.
17885    *
17886    * @see elm_slider_units_format_set() for more info on how this works.
17887    *
17888    * @ingroup Slider
17889    */
17890   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);
17891
17892   /**
17893    * Set the orientation of a given slider widget.
17894    *
17895    * @param obj The slider object.
17896    * @param horizontal Use @c EINA_TRUE to make @p obj to be
17897    * @b horizontal, @c EINA_FALSE to make it @b vertical.
17898    *
17899    * Use this function to change how your slider is to be
17900    * disposed: vertically or horizontally.
17901    *
17902    * By default it's displayed horizontally.
17903    *
17904    * @see elm_slider_horizontal_get()
17905    *
17906    * @ingroup Slider
17907    */
17908    EAPI void               elm_slider_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
17909
17910    /**
17911     * Retrieve the orientation of a given slider widget
17912     *
17913     * @param obj The slider object.
17914     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
17915     * @c EINA_FALSE if it's @b vertical (and on errors).
17916     *
17917     * @see elm_slider_horizontal_set() for more details.
17918     *
17919     * @ingroup Slider
17920     */
17921    EAPI Eina_Bool          elm_slider_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17922
17923    /**
17924     * Set the minimum and maximum values for the slider.
17925     *
17926     * @param obj The slider object.
17927     * @param min The minimum value.
17928     * @param max The maximum value.
17929     *
17930     * Define the allowed range of values to be selected by the user.
17931     *
17932     * If actual value is less than @p min, it will be updated to @p min. If it
17933     * is bigger then @p max, will be updated to @p max. Actual value can be
17934     * get with elm_slider_value_get().
17935     *
17936     * By default, min is equal to 0.0, and max is equal to 1.0.
17937     *
17938     * @warning Maximum must be greater than minimum, otherwise behavior
17939     * is undefined.
17940     *
17941     * @see elm_slider_min_max_get()
17942     *
17943     * @ingroup Slider
17944     */
17945    EAPI void               elm_slider_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
17946
17947    /**
17948     * Get the minimum and maximum values of the slider.
17949     *
17950     * @param obj The slider object.
17951     * @param min Pointer where to store the minimum value.
17952     * @param max Pointer where to store the maximum value.
17953     *
17954     * @note If only one value is needed, the other pointer can be passed
17955     * as @c NULL.
17956     *
17957     * @see elm_slider_min_max_set() for details.
17958     *
17959     * @ingroup Slider
17960     */
17961    EAPI void               elm_slider_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
17962
17963    /**
17964     * Set the value the slider displays.
17965     *
17966     * @param obj The slider object.
17967     * @param val The value to be displayed.
17968     *
17969     * Value will be presented on the unit label following format specified with
17970     * elm_slider_unit_format_set() and on indicator with
17971     * elm_slider_indicator_format_set().
17972     *
17973     * @warning The value must to be between min and max values. This values
17974     * are set by elm_slider_min_max_set().
17975     *
17976     * @see elm_slider_value_get()
17977     * @see elm_slider_unit_format_set()
17978     * @see elm_slider_indicator_format_set()
17979     * @see elm_slider_min_max_set()
17980     *
17981     * @ingroup Slider
17982     */
17983    EAPI void               elm_slider_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
17984
17985    /**
17986     * Get the value displayed by the spinner.
17987     *
17988     * @param obj The spinner object.
17989     * @return The value displayed.
17990     *
17991     * @see elm_spinner_value_set() for details.
17992     *
17993     * @ingroup Slider
17994     */
17995    EAPI double             elm_slider_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
17996
17997    /**
17998     * Invert a given slider widget's displaying values order
17999     *
18000     * @param obj The slider object.
18001     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
18002     * @c EINA_FALSE to bring it back to default, non-inverted values.
18003     *
18004     * A slider may be @b inverted, in which state it gets its
18005     * values inverted, with high vales being on the left or top and
18006     * low values on the right or bottom, as opposed to normally have
18007     * the low values on the former and high values on the latter,
18008     * respectively, for horizontal and vertical modes.
18009     *
18010     * @see elm_slider_inverted_get()
18011     *
18012     * @ingroup Slider
18013     */
18014    EAPI void               elm_slider_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
18015
18016    /**
18017     * Get whether a given slider widget's displaying values are
18018     * inverted or not.
18019     *
18020     * @param obj The slider object.
18021     * @return @c EINA_TRUE, if @p obj has inverted values,
18022     * @c EINA_FALSE otherwise (and on errors).
18023     *
18024     * @see elm_slider_inverted_set() for more details.
18025     *
18026     * @ingroup Slider
18027     */
18028    EAPI Eina_Bool          elm_slider_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18029
18030    /**
18031     * Set whether to enlarge slider indicator (augmented knob) or not.
18032     *
18033     * @param obj The slider object.
18034     * @param show @c EINA_TRUE will make it enlarge, @c EINA_FALSE will
18035     * let the knob always at default size.
18036     *
18037     * By default, indicator will be bigger while dragged by the user.
18038     *
18039     * @warning It won't display values set with
18040     * elm_slider_indicator_format_set() if you disable indicator.
18041     *
18042     * @ingroup Slider
18043     */
18044    EAPI void               elm_slider_indicator_show_set(Evas_Object *obj, Eina_Bool show) EINA_ARG_NONNULL(1);
18045
18046    /**
18047     * Get whether a given slider widget's enlarging indicator or not.
18048     *
18049     * @param obj The slider object.
18050     * @return @c EINA_TRUE, if @p obj is enlarging indicator, or
18051     * @c EINA_FALSE otherwise (and on errors).
18052     *
18053     * @see elm_slider_indicator_show_set() for details.
18054     *
18055     * @ingroup Slider
18056     */
18057    EAPI Eina_Bool          elm_slider_indicator_show_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18058
18059    /**
18060     * @}
18061     */
18062
18063    /**
18064     * @addtogroup Actionslider Actionslider
18065     *
18066     * @image html img/widget/actionslider/preview-00.png
18067     * @image latex img/widget/actionslider/preview-00.eps
18068     *
18069     * An actionslider is a switcher for 2 or 3 labels with customizable magnet
18070     * properties. The user drags and releases the indicator, to choose a label.
18071     *
18072     * Labels occupy the following positions.
18073     * a. Left
18074     * b. Right
18075     * c. Center
18076     *
18077     * Positions can be enabled or disabled.
18078     *
18079     * Magnets can be set on the above positions.
18080     *
18081     * When the indicator is released, it will move to its nearest "enabled and magnetized" position.
18082     *
18083     * @note By default all positions are set as enabled.
18084     *
18085     * Signals that you can add callbacks for are:
18086     *
18087     * "selected" - when user selects an enabled position (the label is passed
18088     *              as event info)".
18089     * @n
18090     * "pos_changed" - when the indicator reaches any of the positions("left",
18091     *                 "right" or "center").
18092     *
18093     * See an example of actionslider usage @ref actionslider_example_page "here"
18094     * @{
18095     */
18096    typedef enum _Elm_Actionslider_Pos
18097      {
18098         ELM_ACTIONSLIDER_NONE = 0,
18099         ELM_ACTIONSLIDER_LEFT = 1 << 0,
18100         ELM_ACTIONSLIDER_CENTER = 1 << 1,
18101         ELM_ACTIONSLIDER_RIGHT = 1 << 2,
18102         ELM_ACTIONSLIDER_ALL = (1 << 3) -1
18103      } Elm_Actionslider_Pos;
18104
18105    /**
18106     * Add a new actionslider to the parent.
18107     *
18108     * @param parent The parent object
18109     * @return The new actionslider object or NULL if it cannot be created
18110     */
18111    EAPI Evas_Object          *elm_actionslider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18112    /**
18113     * Set actionslider labels.
18114     *
18115     * @param obj The actionslider object
18116     * @param left_label The label to be set on the left.
18117     * @param center_label The label to be set on the center.
18118     * @param right_label The label to be set on the right.
18119     * @deprecated use elm_object_text_set() instead.
18120     */
18121    EINA_DEPRECATED EAPI void                  elm_actionslider_labels_set(Evas_Object *obj, const char *left_label, const char *center_label, const char *right_label) EINA_ARG_NONNULL(1);
18122    /**
18123     * Get actionslider labels.
18124     *
18125     * @param obj The actionslider object
18126     * @param left_label A char** to place the left_label of @p obj into.
18127     * @param center_label A char** to place the center_label of @p obj into.
18128     * @param right_label A char** to place the right_label of @p obj into.
18129     * @deprecated use elm_object_text_set() instead.
18130     */
18131    EINA_DEPRECATED EAPI void                  elm_actionslider_labels_get(const Evas_Object *obj, const char **left_label, const char **center_label, const char **right_label) EINA_ARG_NONNULL(1);
18132    /**
18133     * Get actionslider selected label.
18134     *
18135     * @param obj The actionslider object
18136     * @return The selected label
18137     */
18138    EAPI const char           *elm_actionslider_selected_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18139    /**
18140     * Set actionslider indicator position.
18141     *
18142     * @param obj The actionslider object.
18143     * @param pos The position of the indicator.
18144     */
18145    EAPI void                  elm_actionslider_indicator_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
18146    /**
18147     * Get actionslider indicator position.
18148     *
18149     * @param obj The actionslider object.
18150     * @return The position of the indicator.
18151     */
18152    EAPI Elm_Actionslider_Pos  elm_actionslider_indicator_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18153    /**
18154     * Set actionslider magnet position. To make multiple positions magnets @c or
18155     * them together(e.g.: ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT)
18156     *
18157     * @param obj The actionslider object.
18158     * @param pos Bit mask indicating the magnet positions.
18159     */
18160    EAPI void                  elm_actionslider_magnet_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
18161    /**
18162     * Get actionslider magnet position.
18163     *
18164     * @param obj The actionslider object.
18165     * @return The positions with magnet property.
18166     */
18167    EAPI Elm_Actionslider_Pos  elm_actionslider_magnet_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18168    /**
18169     * Set actionslider enabled position. To set multiple positions as enabled @c or
18170     * them together(e.g.: ELM_ACTIONSLIDER_LEFT | ELM_ACTIONSLIDER_RIGHT).
18171     *
18172     * @note All the positions are enabled by default.
18173     *
18174     * @param obj The actionslider object.
18175     * @param pos Bit mask indicating the enabled positions.
18176     */
18177    EAPI void                  elm_actionslider_enabled_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos) EINA_ARG_NONNULL(1);
18178    /**
18179     * Get actionslider enabled position.
18180     *
18181     * @param obj The actionslider object.
18182     * @return The enabled positions.
18183     */
18184    EAPI Elm_Actionslider_Pos  elm_actionslider_enabled_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18185    /**
18186     * Set the label used on the indicator.
18187     *
18188     * @param obj The actionslider object
18189     * @param label The label to be set on the indicator.
18190     * @deprecated use elm_object_text_set() instead.
18191     */
18192    EINA_DEPRECATED EAPI void                  elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
18193    /**
18194     * Get the label used on the indicator object.
18195     *
18196     * @param obj The actionslider object
18197     * @return The indicator label
18198     * @deprecated use elm_object_text_get() instead.
18199     */
18200    EINA_DEPRECATED EAPI const char           *elm_actionslider_indicator_label_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
18201    /**
18202     * @}
18203     */
18204
18205    /**
18206     * @defgroup Genlist Genlist
18207     *
18208     * @image html img/widget/genlist/preview-00.png
18209     * @image latex img/widget/genlist/preview-00.eps
18210     * @image html img/genlist.png
18211     * @image latex img/genlist.eps
18212     *
18213     * This widget aims to have more expansive list than the simple list in
18214     * Elementary that could have more flexible items and allow many more entries
18215     * while still being fast and low on memory usage. At the same time it was
18216     * also made to be able to do tree structures. But the price to pay is more
18217     * complexity when it comes to usage. If all you want is a simple list with
18218     * icons and a single text, use the normal @ref List object.
18219     *
18220     * Genlist has a fairly large API, mostly because it's relatively complex,
18221     * trying to be both expansive, powerful and efficient. First we will begin
18222     * an overview on the theory behind genlist.
18223     *
18224     * @section Genlist_Item_Class Genlist item classes - creating items
18225     *
18226     * In order to have the ability to add and delete items on the fly, genlist
18227     * implements a class (callback) system where the application provides a
18228     * structure with information about that type of item (genlist may contain
18229     * multiple different items with different classes, states and styles).
18230     * Genlist will call the functions in this struct (methods) when an item is
18231     * "realized" (i.e., created dynamically, while the user is scrolling the
18232     * grid). All objects will simply be deleted when no longer needed with
18233     * evas_object_del(). The #Elm_Genlist_Item_Class structure contains the
18234     * following members:
18235     * - @c item_style - This is a constant string and simply defines the name
18236     *   of the item style. It @b must be specified and the default should be @c
18237     *   "default".
18238     *
18239     * - @c func - A struct with pointers to functions that will be called when
18240     *   an item is going to be actually created. All of them receive a @c data
18241     *   parameter that will point to the same data passed to
18242     *   elm_genlist_item_append() and related item creation functions, and a @c
18243     *   obj parameter that points to the genlist object itself.
18244     *
18245     * The function pointers inside @c func are @c text_get, @c content_get, @c
18246     * state_get and @c del. The 3 first functions also receive a @c part
18247     * parameter described below. A brief description of these functions follows:
18248     *
18249     * - @c text_get - The @c part parameter is the name string of one of the
18250     *   existing text parts in the Edje group implementing the item's theme.
18251     *   This function @b must return a strdup'()ed string, as the caller will
18252     *   free() it when done. See #Elm_Genlist_Item_Text_Get_Cb.
18253     * - @c content_get - The @c part parameter is the name string of one of the
18254     *   existing (content) swallow parts in the Edje group implementing the item's
18255     *   theme. It must return @c NULL, when no content is desired, or a valid
18256     *   object handle, otherwise.  The object will be deleted by the genlist on
18257     *   its deletion or when the item is "unrealized".  See
18258     *   #Elm_Genlist_Item_Content_Get_Cb.
18259     * - @c func.state_get - The @c part parameter is the name string of one of
18260     *   the state parts in the Edje group implementing the item's theme. Return
18261     *   @c EINA_FALSE for false/off or @c EINA_TRUE for true/on. Genlists will
18262     *   emit a signal to its theming Edje object with @c "elm,state,XXX,active"
18263     *   and @c "elm" as "emission" and "source" arguments, respectively, when
18264     *   the state is true (the default is false), where @c XXX is the name of
18265     *   the (state) part.  See #Elm_Genlist_Item_State_Get_Cb.
18266     * - @c func.del - This is intended for use when genlist items are deleted,
18267     *   so any data attached to the item (e.g. its data parameter on creation)
18268     *   can be deleted. See #Elm_Genlist_Item_Del_Cb.
18269     *
18270     * available item styles:
18271     * - default
18272     * - default_style - The text part is a textblock
18273     *
18274     * @image html img/widget/genlist/preview-04.png
18275     * @image latex img/widget/genlist/preview-04.eps
18276     *
18277     * - double_label
18278     *
18279     * @image html img/widget/genlist/preview-01.png
18280     * @image latex img/widget/genlist/preview-01.eps
18281     *
18282     * - icon_top_text_bottom
18283     *
18284     * @image html img/widget/genlist/preview-02.png
18285     * @image latex img/widget/genlist/preview-02.eps
18286     *
18287     * - group_index
18288     *
18289     * @image html img/widget/genlist/preview-03.png
18290     * @image latex img/widget/genlist/preview-03.eps
18291     *
18292     * @section Genlist_Items Structure of items
18293     *
18294     * An item in a genlist can have 0 or more texts (they can be regular
18295     * text or textblock Evas objects - that's up to the style to determine), 0
18296     * or more contents (which are simply objects swallowed into the genlist item's
18297     * theming Edje object) and 0 or more <b>boolean states</b>, which have the
18298     * behavior left to the user to define. The Edje part names for each of
18299     * these properties will be looked up, in the theme file for the genlist,
18300     * under the Edje (string) data items named @c "labels", @c "contents" and @c
18301     * "states", respectively. For each of those properties, if more than one
18302     * part is provided, they must have names listed separated by spaces in the
18303     * data fields. For the default genlist item theme, we have @b one text 
18304     * part (@c "elm.text"), @b two content parts (@c "elm.swalllow.icon" and @c
18305     * "elm.swallow.end") and @b no state parts.
18306     *
18307     * A genlist item may be at one of several styles. Elementary provides one
18308     * by default - "default", but this can be extended by system or application
18309     * custom themes/overlays/extensions (see @ref Theme "themes" for more
18310     * details).
18311     *
18312     * @section Genlist_Manipulation Editing and Navigating
18313     *
18314     * Items can be added by several calls. All of them return a @ref
18315     * Elm_Genlist_Item handle that is an internal member inside the genlist.
18316     * They all take a data parameter that is meant to be used for a handle to
18317     * the applications internal data (eg the struct with the original item
18318     * data). The parent parameter is the parent genlist item this belongs to if
18319     * it is a tree or an indexed group, and NULL if there is no parent. The
18320     * flags can be a bitmask of #ELM_GENLIST_ITEM_NONE,
18321     * #ELM_GENLIST_ITEM_SUBITEMS and #ELM_GENLIST_ITEM_GROUP. If
18322     * #ELM_GENLIST_ITEM_SUBITEMS is set then this item is displayed as an item
18323     * that is able to expand and have child items.  If ELM_GENLIST_ITEM_GROUP
18324     * is set then this item is group index item that is displayed at the top
18325     * until the next group comes. The func parameter is a convenience callback
18326     * that is called when the item is selected and the data parameter will be
18327     * the func_data parameter, obj be the genlist object and event_info will be
18328     * the genlist item.
18329     *
18330     * elm_genlist_item_append() adds an item to the end of the list, or if
18331     * there is a parent, to the end of all the child items of the parent.
18332     * elm_genlist_item_prepend() is the same but adds to the beginning of
18333     * the list or children list. elm_genlist_item_insert_before() inserts at
18334     * item before another item and elm_genlist_item_insert_after() inserts after
18335     * the indicated item.
18336     *
18337     * The application can clear the list with elm_genlist_clear() which deletes
18338     * all the items in the list and elm_genlist_item_del() will delete a specific
18339     * item. elm_genlist_item_subitems_clear() will clear all items that are
18340     * children of the indicated parent item.
18341     *
18342     * To help inspect list items you can jump to the item at the top of the list
18343     * with elm_genlist_first_item_get() which will return the item pointer, and
18344     * similarly elm_genlist_last_item_get() gets the item at the end of the list.
18345     * elm_genlist_item_next_get() and elm_genlist_item_prev_get() get the next
18346     * and previous items respectively relative to the indicated item. Using
18347     * these calls you can walk the entire item list/tree. Note that as a tree
18348     * the items are flattened in the list, so elm_genlist_item_parent_get() will
18349     * let you know which item is the parent (and thus know how to skip them if
18350     * wanted).
18351     *
18352     * @section Genlist_Muti_Selection Multi-selection
18353     *
18354     * If the application wants multiple items to be able to be selected,
18355     * elm_genlist_multi_select_set() can enable this. If the list is
18356     * single-selection only (the default), then elm_genlist_selected_item_get()
18357     * will return the selected item, if any, or NULL if none is selected. If the
18358     * list is multi-select then elm_genlist_selected_items_get() will return a
18359     * list (that is only valid as long as no items are modified (added, deleted,
18360     * selected or unselected)).
18361     *
18362     * @section Genlist_Usage_Hints Usage hints
18363     *
18364     * There are also convenience functions. elm_genlist_item_genlist_get() will
18365     * return the genlist object the item belongs to. elm_genlist_item_show()
18366     * will make the scroller scroll to show that specific item so its visible.
18367     * elm_genlist_item_data_get() returns the data pointer set by the item
18368     * creation functions.
18369     *
18370     * If an item changes (state of boolean changes, text or contents change),
18371     * then use elm_genlist_item_update() to have genlist update the item with
18372     * the new state. Genlist will re-realize the item thus call the functions
18373     * in the _Elm_Genlist_Item_Class for that item.
18374     *
18375     * To programmatically (un)select an item use elm_genlist_item_selected_set().
18376     * To get its selected state use elm_genlist_item_selected_get(). Similarly
18377     * to expand/contract an item and get its expanded state, use
18378     * elm_genlist_item_expanded_set() and elm_genlist_item_expanded_get(). And
18379     * again to make an item disabled (unable to be selected and appear
18380     * differently) use elm_genlist_item_disabled_set() to set this and
18381     * elm_genlist_item_disabled_get() to get the disabled state.
18382     *
18383     * In general to indicate how the genlist should expand items horizontally to
18384     * fill the list area, use elm_genlist_horizontal_set(). Valid modes are
18385     * ELM_LIST_LIMIT and ELM_LIST_SCROLL. The default is ELM_LIST_SCROLL. This
18386     * mode means that if items are too wide to fit, the scroller will scroll
18387     * horizontally. Otherwise items are expanded to fill the width of the
18388     * viewport of the scroller. If it is ELM_LIST_LIMIT, items will be expanded
18389     * to the viewport width and limited to that size. This can be combined with
18390     * a different style that uses edjes' ellipsis feature (cutting text off like
18391     * this: "tex...").
18392     *
18393     * Items will only call their selection func and callback when first becoming
18394     * selected. Any further clicks will do nothing, unless you enable always
18395     * select with elm_genlist_always_select_mode_set(). This means even if
18396     * selected, every click will make the selected callbacks be called.
18397     * elm_genlist_no_select_mode_set() will turn off the ability to select
18398     * items entirely and they will neither appear selected nor call selected
18399     * callback functions.
18400     *
18401     * Remember that you can create new styles and add your own theme augmentation
18402     * per application with elm_theme_extension_add(). If you absolutely must
18403     * have a specific style that overrides any theme the user or system sets up
18404     * you can use elm_theme_overlay_add() to add such a file.
18405     *
18406     * @section Genlist_Implementation Implementation
18407     *
18408     * Evas tracks every object you create. Every time it processes an event
18409     * (mouse move, down, up etc.) it needs to walk through objects and find out
18410     * what event that affects. Even worse every time it renders display updates,
18411     * in order to just calculate what to re-draw, it needs to walk through many
18412     * many many objects. Thus, the more objects you keep active, the more
18413     * overhead Evas has in just doing its work. It is advisable to keep your
18414     * active objects to the minimum working set you need. Also remember that
18415     * object creation and deletion carries an overhead, so there is a
18416     * middle-ground, which is not easily determined. But don't keep massive lists
18417     * of objects you can't see or use. Genlist does this with list objects. It
18418     * creates and destroys them dynamically as you scroll around. It groups them
18419     * into blocks so it can determine the visibility etc. of a whole block at
18420     * once as opposed to having to walk the whole list. This 2-level list allows
18421     * for very large numbers of items to be in the list (tests have used up to
18422     * 2,000,000 items). Also genlist employs a queue for adding items. As items
18423     * may be different sizes, every item added needs to be calculated as to its
18424     * size and thus this presents a lot of overhead on populating the list, this
18425     * genlist employs a queue. Any item added is queued and spooled off over
18426     * time, actually appearing some time later, so if your list has many members
18427     * you may find it takes a while for them to all appear, with your process
18428     * consuming a lot of CPU while it is busy spooling.
18429     *
18430     * Genlist also implements a tree structure, but it does so with callbacks to
18431     * the application, with the application filling in tree structures when
18432     * requested (allowing for efficient building of a very deep tree that could
18433     * even be used for file-management). See the above smart signal callbacks for
18434     * details.
18435     *
18436     * @section Genlist_Smart_Events Genlist smart events
18437     *
18438     * Signals that you can add callbacks for are:
18439     * - @c "activated" - The user has double-clicked or pressed
18440     *   (enter|return|spacebar) on an item. The @c event_info parameter is the
18441     *   item that was activated.
18442     * - @c "clicked,double" - The user has double-clicked an item.  The @c
18443     *   event_info parameter is the item that was double-clicked.
18444     * - @c "selected" - This is called when a user has made an item selected.
18445     *   The event_info parameter is the genlist item that was selected.
18446     * - @c "unselected" - This is called when a user has made an item
18447     *   unselected. The event_info parameter is the genlist item that was
18448     *   unselected.
18449     * - @c "expanded" - This is called when elm_genlist_item_expanded_set() is
18450     *   called and the item is now meant to be expanded. The event_info
18451     *   parameter is the genlist item that was indicated to expand.  It is the
18452     *   job of this callback to then fill in the child items.
18453     * - @c "contracted" - This is called when elm_genlist_item_expanded_set() is
18454     *   called and the item is now meant to be contracted. The event_info
18455     *   parameter is the genlist item that was indicated to contract. It is the
18456     *   job of this callback to then delete the child items.
18457     * - @c "expand,request" - This is called when a user has indicated they want
18458     *   to expand a tree branch item. The callback should decide if the item can
18459     *   expand (has any children) and then call elm_genlist_item_expanded_set()
18460     *   appropriately to set the state. The event_info parameter is the genlist
18461     *   item that was indicated to expand.
18462     * - @c "contract,request" - This is called when a user has indicated they
18463     *   want to contract a tree branch item. The callback should decide if the
18464     *   item can contract (has any children) and then call
18465     *   elm_genlist_item_expanded_set() appropriately to set the state. The
18466     *   event_info parameter is the genlist item that was indicated to contract.
18467     * - @c "realized" - This is called when the item in the list is created as a
18468     *   real evas object. event_info parameter is the genlist item that was
18469     *   created. The object may be deleted at any time, so it is up to the
18470     *   caller to not use the object pointer from elm_genlist_item_object_get()
18471     *   in a way where it may point to freed objects.
18472     * - @c "unrealized" - This is called just before an item is unrealized.
18473     *   After this call content objects provided will be deleted and the item
18474     *   object itself delete or be put into a floating cache.
18475     * - @c "drag,start,up" - This is called when the item in the list has been
18476     *   dragged (not scrolled) up.
18477     * - @c "drag,start,down" - This is called when the item in the list has been
18478     *   dragged (not scrolled) down.
18479     * - @c "drag,start,left" - This is called when the item in the list has been
18480     *   dragged (not scrolled) left.
18481     * - @c "drag,start,right" - This is called when the item in the list has
18482     *   been dragged (not scrolled) right.
18483     * - @c "drag,stop" - This is called when the item in the list has stopped
18484     *   being dragged.
18485     * - @c "drag" - This is called when the item in the list is being dragged.
18486     * - @c "longpressed" - This is called when the item is pressed for a certain
18487     *   amount of time. By default it's 1 second.
18488     * - @c "scroll,anim,start" - This is called when scrolling animation has
18489     *   started.
18490     * - @c "scroll,anim,stop" - This is called when scrolling animation has
18491     *   stopped.
18492     * - @c "scroll,drag,start" - This is called when dragging the content has
18493     *   started.
18494     * - @c "scroll,drag,stop" - This is called when dragging the content has
18495     *   stopped.
18496     * - @c "edge,top" - This is called when the genlist is scrolled until
18497     *   the top edge.
18498     * - @c "edge,bottom" - This is called when the genlist is scrolled
18499     *   until the bottom edge.
18500     * - @c "edge,left" - This is called when the genlist is scrolled
18501     *   until the left edge.
18502     * - @c "edge,right" - This is called when the genlist is scrolled
18503     *   until the right edge.
18504     * - @c "multi,swipe,left" - This is called when the genlist is multi-touch
18505     *   swiped left.
18506     * - @c "multi,swipe,right" - This is called when the genlist is multi-touch
18507     *   swiped right.
18508     * - @c "multi,swipe,up" - This is called when the genlist is multi-touch
18509     *   swiped up.
18510     * - @c "multi,swipe,down" - This is called when the genlist is multi-touch
18511     *   swiped down.
18512     * - @c "multi,pinch,out" - This is called when the genlist is multi-touch
18513     *   pinched out.  "- @c multi,pinch,in" - This is called when the genlist is
18514     *   multi-touch pinched in.
18515     * - @c "swipe" - This is called when the genlist is swiped.
18516     * - @c "moved" - This is called when a genlist item is moved.
18517     * - @c "language,changed" - This is called when the program's language is
18518     *   changed.
18519     *
18520     * @section Genlist_Examples Examples
18521     *
18522     * Here is a list of examples that use the genlist, trying to show some of
18523     * its capabilities:
18524     * - @ref genlist_example_01
18525     * - @ref genlist_example_02
18526     * - @ref genlist_example_03
18527     * - @ref genlist_example_04
18528     * - @ref genlist_example_05
18529     */
18530
18531    /**
18532     * @addtogroup Genlist
18533     * @{
18534     */
18535
18536    /**
18537     * @enum _Elm_Genlist_Item_Flags
18538     * @typedef Elm_Genlist_Item_Flags
18539     *
18540     * Defines if the item is of any special type (has subitems or it's the
18541     * index of a group), or is just a simple item.
18542     *
18543     * @ingroup Genlist
18544     */
18545    typedef enum _Elm_Genlist_Item_Flags
18546      {
18547         ELM_GENLIST_ITEM_NONE = 0, /**< simple item */
18548         ELM_GENLIST_ITEM_SUBITEMS = (1 << 0), /**< may expand and have child items */
18549         ELM_GENLIST_ITEM_GROUP = (1 << 1) /**< index of a group of items */
18550      } Elm_Genlist_Item_Flags;
18551    typedef enum _Elm_Genlist_Item_Field_Flags
18552      {
18553         ELM_GENLIST_ITEM_FIELD_ALL = 0,
18554         ELM_GENLIST_ITEM_FIELD_LABEL = (1 << 0),
18555         ELM_GENLIST_ITEM_FIELD_CONTENT = (1 << 1),
18556         ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
18557      } Elm_Genlist_Item_Field_Flags;
18558    typedef struct _Elm_Genlist_Item_Class Elm_Genlist_Item_Class;  /**< Genlist item class definition structs */
18559    #define Elm_Genlist_Item_Class Elm_Gen_Item_Class
18560    typedef struct _Elm_Genlist_Item       Elm_Genlist_Item; /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
18561    #define Elm_Genlist_Item Elm_Gen_Item /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
18562    typedef struct _Elm_Genlist_Item_Class_Func Elm_Genlist_Item_Class_Func; /**< Class functions for genlist item class */
18563    /**
18564     * Text fetching class function for Elm_Gen_Item_Class.
18565     * @param data The data passed in the item creation function
18566     * @param obj The base widget object
18567     * @param part The part name of the swallow
18568     * @return The allocated (NOT stringshared) string to set as the text
18569     */
18570    typedef char        *(*Elm_Genlist_Item_Text_Get_Cb) (void *data, Evas_Object *obj, const char *part);
18571    /**
18572     * Content (swallowed object) fetching class function for Elm_Gen_Item_Class.
18573     * @param data The data passed in the item creation function
18574     * @param obj The base widget object
18575     * @param part The part name of the swallow
18576     * @return The content object to swallow
18577     */
18578    typedef Evas_Object *(*Elm_Genlist_Item_Content_Get_Cb)  (void *data, Evas_Object *obj, const char *part);
18579    /**
18580     * State fetching class function for Elm_Gen_Item_Class.
18581     * @param data The data passed in the item creation function
18582     * @param obj The base widget object
18583     * @param part The part name of the swallow
18584     * @return The hell if I know
18585     */
18586    typedef Eina_Bool    (*Elm_Genlist_Item_State_Get_Cb) (void *data, Evas_Object *obj, const char *part);
18587    /**
18588     * Deletion class function for Elm_Gen_Item_Class.
18589     * @param data The data passed in the item creation function
18590     * @param obj The base widget object
18591     */
18592    typedef void         (*Elm_Genlist_Item_Del_Cb)      (void *data, Evas_Object *obj);
18593
18594    /**
18595     * @struct _Elm_Genlist_Item_Class
18596     *
18597     * Genlist item class definition structs.
18598     *
18599     * This struct contains the style and fetching functions that will define the
18600     * contents of each item.
18601     *
18602     * @see @ref Genlist_Item_Class
18603     */
18604    struct _Elm_Genlist_Item_Class
18605      {
18606         const char                *item_style; /**< style of this class. */
18607         struct Elm_Genlist_Item_Class_Func
18608           {
18609              Elm_Genlist_Item_Text_Get_Cb  text_get; /**< Text fetching class function for genlist item classes.*/
18610              Elm_Genlist_Item_Content_Get_Cb   content_get; /**< Content fetching class function for genlist item classes. */
18611              Elm_Genlist_Item_State_Get_Cb  state_get; /**< State fetching class function for genlist item classes. */
18612              Elm_Genlist_Item_Del_Cb        del; /**< Deletion class function for genlist item classes. */
18613           } func;
18614      };
18615    #define Elm_Genlist_Item_Class_Func Elm_Gen_Item_Class_Func
18616    /**
18617     * Add a new genlist widget to the given parent Elementary
18618     * (container) object
18619     *
18620     * @param parent The parent object
18621     * @return a new genlist widget handle or @c NULL, on errors
18622     *
18623     * This function inserts a new genlist widget on the canvas.
18624     *
18625     * @see elm_genlist_item_append()
18626     * @see elm_genlist_item_del()
18627     * @see elm_genlist_clear()
18628     *
18629     * @ingroup Genlist
18630     */
18631    EAPI Evas_Object      *elm_genlist_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
18632    /**
18633     * Remove all items from a given genlist widget.
18634     *
18635     * @param obj The genlist object
18636     *
18637     * This removes (and deletes) all items in @p obj, leaving it empty.
18638     *
18639     * @see elm_genlist_item_del(), to remove just one item.
18640     *
18641     * @ingroup Genlist
18642     */
18643    EAPI void elm_genlist_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
18644    /**
18645     * Enable or disable multi-selection in the genlist
18646     *
18647     * @param obj The genlist object
18648     * @param multi Multi-select enable/disable. Default is disabled.
18649     *
18650     * This enables (@c EINA_TRUE) or disables (@c EINA_FALSE) multi-selection in
18651     * the list. This allows more than 1 item to be selected. To retrieve the list
18652     * of selected items, use elm_genlist_selected_items_get().
18653     *
18654     * @see elm_genlist_selected_items_get()
18655     * @see elm_genlist_multi_select_get()
18656     *
18657     * @ingroup Genlist
18658     */
18659    EAPI void              elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
18660    /**
18661     * Gets if multi-selection in genlist is enabled or disabled.
18662     *
18663     * @param obj The genlist object
18664     * @return Multi-select enabled/disabled
18665     * (@c EINA_TRUE = enabled/@c EINA_FALSE = disabled). Default is @c EINA_FALSE.
18666     *
18667     * @see elm_genlist_multi_select_set()
18668     *
18669     * @ingroup Genlist
18670     */
18671    EAPI Eina_Bool         elm_genlist_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18672    /**
18673     * This sets the horizontal stretching mode.
18674     *
18675     * @param obj The genlist object
18676     * @param mode The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT).
18677     *
18678     * This sets the mode used for sizing items horizontally. Valid modes
18679     * are #ELM_LIST_LIMIT and #ELM_LIST_SCROLL. The default is
18680     * ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
18681     * the scroller will scroll horizontally. Otherwise items are expanded
18682     * to fill the width of the viewport of the scroller. If it is
18683     * ELM_LIST_LIMIT, items will be expanded to the viewport width and
18684     * limited to that size.
18685     *
18686     * @see elm_genlist_horizontal_get()
18687     *
18688     * @ingroup Genlist
18689     */
18690    EAPI void              elm_genlist_horizontal_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
18691    EINA_DEPRECATED EAPI void              elm_genlist_horizontal_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
18692    /**
18693     * Gets the horizontal stretching mode.
18694     *
18695     * @param obj The genlist object
18696     * @return The mode to use
18697     * (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)
18698     *
18699     * @see elm_genlist_horizontal_set()
18700     *
18701     * @ingroup Genlist
18702     */
18703    EAPI Elm_List_Mode     elm_genlist_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18704    EINA_DEPRECATED EAPI Elm_List_Mode     elm_genlist_horizontal_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18705    /**
18706     * Set the always select mode.
18707     *
18708     * @param obj The genlist object
18709     * @param always_select The always select mode (@c EINA_TRUE = on, @c
18710     * EINA_FALSE = off). Default is @c EINA_FALSE.
18711     *
18712     * Items will only call their selection func and callback when first
18713     * becoming selected. Any further clicks will do nothing, unless you
18714     * enable always select with elm_genlist_always_select_mode_set().
18715     * This means that, even if selected, every click will make the selected
18716     * callbacks be called.
18717     *
18718     * @see elm_genlist_always_select_mode_get()
18719     *
18720     * @ingroup Genlist
18721     */
18722    EAPI void              elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
18723    /**
18724     * Get the always select mode.
18725     *
18726     * @param obj The genlist object
18727     * @return The always select mode
18728     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18729     *
18730     * @see elm_genlist_always_select_mode_set()
18731     *
18732     * @ingroup Genlist
18733     */
18734    EAPI Eina_Bool         elm_genlist_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18735    /**
18736     * Enable/disable the no select mode.
18737     *
18738     * @param obj The genlist object
18739     * @param no_select The no select mode
18740     * (EINA_TRUE = on, EINA_FALSE = off)
18741     *
18742     * This will turn off the ability to select items entirely and they
18743     * will neither appear selected nor call selected callback functions.
18744     *
18745     * @see elm_genlist_no_select_mode_get()
18746     *
18747     * @ingroup Genlist
18748     */
18749    EAPI void              elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
18750    /**
18751     * Gets whether the no select mode is enabled.
18752     *
18753     * @param obj The genlist object
18754     * @return The no select mode
18755     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18756     *
18757     * @see elm_genlist_no_select_mode_set()
18758     *
18759     * @ingroup Genlist
18760     */
18761    EAPI Eina_Bool         elm_genlist_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18762    /**
18763     * Enable/disable compress mode.
18764     *
18765     * @param obj The genlist object
18766     * @param compress The compress mode
18767     * (@c EINA_TRUE = on, @c EINA_FALSE = off). Default is @c EINA_FALSE.
18768     *
18769     * This will enable the compress mode where items are "compressed"
18770     * horizontally to fit the genlist scrollable viewport width. This is
18771     * special for genlist.  Do not rely on
18772     * elm_genlist_horizontal_set() being set to @c ELM_LIST_COMPRESS to
18773     * work as genlist needs to handle it specially.
18774     *
18775     * @see elm_genlist_compress_mode_get()
18776     *
18777     * @ingroup Genlist
18778     */
18779    EAPI void              elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress) EINA_ARG_NONNULL(1);
18780    /**
18781     * Get whether the compress mode is enabled.
18782     *
18783     * @param obj The genlist object
18784     * @return The compress mode
18785     * (@c EINA_TRUE = on, @c EINA_FALSE = off)
18786     *
18787     * @see elm_genlist_compress_mode_set()
18788     *
18789     * @ingroup Genlist
18790     */
18791    EAPI Eina_Bool         elm_genlist_compress_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18792    /**
18793     * Enable/disable height-for-width mode.
18794     *
18795     * @param obj The genlist object
18796     * @param setting The height-for-width mode (@c EINA_TRUE = on,
18797     * @c EINA_FALSE = off). Default is @c EINA_FALSE.
18798     *
18799     * With height-for-width mode the item width will be fixed (restricted
18800     * to a minimum of) to the list width when calculating its size in
18801     * order to allow the height to be calculated based on it. This allows,
18802     * for instance, text block to wrap lines if the Edje part is
18803     * configured with "text.min: 0 1".
18804     *
18805     * @note This mode will make list resize slower as it will have to
18806     *       recalculate every item height again whenever the list width
18807     *       changes!
18808     *
18809     * @note When height-for-width mode is enabled, it also enables
18810     *       compress mode (see elm_genlist_compress_mode_set()) and
18811     *       disables homogeneous (see elm_genlist_homogeneous_set()).
18812     *
18813     * @ingroup Genlist
18814     */
18815    EAPI void              elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width) EINA_ARG_NONNULL(1);
18816    /**
18817     * Get whether the height-for-width mode is enabled.
18818     *
18819     * @param obj The genlist object
18820     * @return The height-for-width mode (@c EINA_TRUE = on, @c EINA_FALSE =
18821     * off)
18822     *
18823     * @ingroup Genlist
18824     */
18825    EAPI Eina_Bool         elm_genlist_height_for_width_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18826    /**
18827     * Enable/disable horizontal and vertical bouncing effect.
18828     *
18829     * @param obj The genlist object
18830     * @param h_bounce Allow bounce horizontally (@c EINA_TRUE = on, @c
18831     * EINA_FALSE = off). Default is @c EINA_FALSE.
18832     * @param v_bounce Allow bounce vertically (@c EINA_TRUE = on, @c
18833     * EINA_FALSE = off). Default is @c EINA_TRUE.
18834     *
18835     * This will enable or disable the scroller bouncing effect for the
18836     * genlist. See elm_scroller_bounce_set() for details.
18837     *
18838     * @see elm_scroller_bounce_set()
18839     * @see elm_genlist_bounce_get()
18840     *
18841     * @ingroup Genlist
18842     */
18843    EAPI void              elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
18844    /**
18845     * Get whether the horizontal and vertical bouncing effect is enabled.
18846     *
18847     * @param obj The genlist object
18848     * @param h_bounce Pointer to a bool to receive if the bounce horizontally
18849     * option is set.
18850     * @param v_bounce Pointer to a bool to receive if the bounce vertically
18851     * option is set.
18852     *
18853     * @see elm_genlist_bounce_set()
18854     *
18855     * @ingroup Genlist
18856     */
18857    EAPI void              elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
18858    /**
18859     * Enable/disable homogeneous mode.
18860     *
18861     * @param obj The genlist object
18862     * @param homogeneous Assume the items within the genlist are of the
18863     * same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c
18864     * EINA_FALSE.
18865     *
18866     * This will enable the homogeneous mode where items are of the same
18867     * height and width so that genlist may do the lazy-loading at its
18868     * maximum (which increases the performance for scrolling the list). This
18869     * implies 'compressed' mode.
18870     *
18871     * @see elm_genlist_compress_mode_set()
18872     * @see elm_genlist_homogeneous_get()
18873     *
18874     * @ingroup Genlist
18875     */
18876    EAPI void              elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
18877    /**
18878     * Get whether the homogeneous mode is enabled.
18879     *
18880     * @param obj The genlist object
18881     * @return Assume the items within the genlist are of the same height
18882     * and width (EINA_TRUE = on, EINA_FALSE = off)
18883     *
18884     * @see elm_genlist_homogeneous_set()
18885     *
18886     * @ingroup Genlist
18887     */
18888    EAPI Eina_Bool         elm_genlist_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18889    /**
18890     * Set the maximum number of items within an item block
18891     *
18892     * @param obj The genlist object
18893     * @param n   Maximum number of items within an item block. Default is 32.
18894     *
18895     * This will configure the block count to tune to the target with
18896     * particular performance matrix.
18897     *
18898     * A block of objects will be used to reduce the number of operations due to
18899     * many objects in the screen. It can determine the visibility, or if the
18900     * object has changed, it theme needs to be updated, etc. doing this kind of
18901     * calculation to the entire block, instead of per object.
18902     *
18903     * The default value for the block count is enough for most lists, so unless
18904     * you know you will have a lot of objects visible in the screen at the same
18905     * time, don't try to change this.
18906     *
18907     * @see elm_genlist_block_count_get()
18908     * @see @ref Genlist_Implementation
18909     *
18910     * @ingroup Genlist
18911     */
18912    EAPI void              elm_genlist_block_count_set(Evas_Object *obj, int n) EINA_ARG_NONNULL(1);
18913    /**
18914     * Get the maximum number of items within an item block
18915     *
18916     * @param obj The genlist object
18917     * @return Maximum number of items within an item block
18918     *
18919     * @see elm_genlist_block_count_set()
18920     *
18921     * @ingroup Genlist
18922     */
18923    EAPI int               elm_genlist_block_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18924    /**
18925     * Set the timeout in seconds for the longpress event.
18926     *
18927     * @param obj The genlist object
18928     * @param timeout timeout in seconds. Default is 1.
18929     *
18930     * This option will change how long it takes to send an event "longpressed"
18931     * after the mouse down signal is sent to the list. If this event occurs, no
18932     * "clicked" event will be sent.
18933     *
18934     * @see elm_genlist_longpress_timeout_set()
18935     *
18936     * @ingroup Genlist
18937     */
18938    EAPI void              elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
18939    /**
18940     * Get the timeout in seconds for the longpress event.
18941     *
18942     * @param obj The genlist object
18943     * @return timeout in seconds
18944     *
18945     * @see elm_genlist_longpress_timeout_get()
18946     *
18947     * @ingroup Genlist
18948     */
18949    EAPI double            elm_genlist_longpress_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
18950    /**
18951     * Append a new item in a given genlist widget.
18952     *
18953     * @param obj The genlist object
18954     * @param itc The item class for the item
18955     * @param data The item data
18956     * @param parent The parent item, or NULL if none
18957     * @param flags Item flags
18958     * @param func Convenience function called when the item is selected
18959     * @param func_data Data passed to @p func above.
18960     * @return A handle to the item added or @c NULL if not possible
18961     *
18962     * This adds the given item to the end of the list or the end of
18963     * the children list if the @p parent is given.
18964     *
18965     * @see elm_genlist_item_prepend()
18966     * @see elm_genlist_item_insert_before()
18967     * @see elm_genlist_item_insert_after()
18968     * @see elm_genlist_item_del()
18969     *
18970     * @ingroup Genlist
18971     */
18972    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);
18973    /**
18974     * Prepend a new item in a given genlist widget.
18975     *
18976     * @param obj The genlist object
18977     * @param itc The item class for the item
18978     * @param data The item data
18979     * @param parent The parent item, or NULL if none
18980     * @param flags Item flags
18981     * @param func Convenience function called when the item is selected
18982     * @param func_data Data passed to @p func above.
18983     * @return A handle to the item added or NULL if not possible
18984     *
18985     * This adds an item to the beginning of the list or beginning of the
18986     * children of the parent if given.
18987     *
18988     * @see elm_genlist_item_append()
18989     * @see elm_genlist_item_insert_before()
18990     * @see elm_genlist_item_insert_after()
18991     * @see elm_genlist_item_del()
18992     *
18993     * @ingroup Genlist
18994     */
18995    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);
18996    /**
18997     * Insert an item before another in a genlist widget
18998     *
18999     * @param obj The genlist object
19000     * @param itc The item class for the item
19001     * @param data The item data
19002     * @param before The item to place this new one before.
19003     * @param flags Item flags
19004     * @param func Convenience function called when the item is selected
19005     * @param func_data Data passed to @p func above.
19006     * @return A handle to the item added or @c NULL if not possible
19007     *
19008     * This inserts an item before another in the list. It will be in the
19009     * same tree level or group as the item it is inserted before.
19010     *
19011     * @see elm_genlist_item_append()
19012     * @see elm_genlist_item_prepend()
19013     * @see elm_genlist_item_insert_after()
19014     * @see elm_genlist_item_del()
19015     *
19016     * @ingroup Genlist
19017     */
19018    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);
19019    /**
19020     * Insert an item after another in a genlist widget
19021     *
19022     * @param obj The genlist object
19023     * @param itc The item class for the item
19024     * @param data The item data
19025     * @param after The item to place this new one after.
19026     * @param flags Item flags
19027     * @param func Convenience function called when the item is selected
19028     * @param func_data Data passed to @p func above.
19029     * @return A handle to the item added or @c NULL if not possible
19030     *
19031     * This inserts an item after another in the list. It will be in the
19032     * same tree level or group as the item it is inserted after.
19033     *
19034     * @see elm_genlist_item_append()
19035     * @see elm_genlist_item_prepend()
19036     * @see elm_genlist_item_insert_before()
19037     * @see elm_genlist_item_del()
19038     *
19039     * @ingroup Genlist
19040     */
19041    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);
19042    /**
19043     * Insert a new item into the sorted genlist object
19044     *
19045     * @param obj The genlist object
19046     * @param itc The item class for the item
19047     * @param data The item data
19048     * @param parent The parent item, or NULL if none
19049     * @param flags Item flags
19050     * @param comp The function called for the sort
19051     * @param func Convenience function called when item selected
19052     * @param func_data Data passed to @p func above.
19053     * @return A handle to the item added or NULL if not possible
19054     *
19055     * @ingroup Genlist
19056     */
19057    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);
19058    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);
19059    /* operations to retrieve existing items */
19060    /**
19061     * Get the selectd item in the genlist.
19062     *
19063     * @param obj The genlist object
19064     * @return The selected item, or NULL if none is selected.
19065     *
19066     * This gets the selected item in the list (if multi-selection is enabled, only
19067     * the item that was first selected in the list is returned - which is not very
19068     * useful, so see elm_genlist_selected_items_get() for when multi-selection is
19069     * used).
19070     *
19071     * If no item is selected, NULL is returned.
19072     *
19073     * @see elm_genlist_selected_items_get()
19074     *
19075     * @ingroup Genlist
19076     */
19077    EAPI Elm_Genlist_Item *elm_genlist_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19078    /**
19079     * Get a list of selected items in the genlist.
19080     *
19081     * @param obj The genlist object
19082     * @return The list of selected items, or NULL if none are selected.
19083     *
19084     * It returns a list of the selected items. This list pointer is only valid so
19085     * long as the selection doesn't change (no items are selected or unselected, or
19086     * unselected implicitly by deletion). The list contains Elm_Genlist_Item
19087     * pointers. The order of the items in this list is the order which they were
19088     * selected, i.e. the first item in this list is the first item that was
19089     * selected, and so on.
19090     *
19091     * @note If not in multi-select mode, consider using function
19092     * elm_genlist_selected_item_get() instead.
19093     *
19094     * @see elm_genlist_multi_select_set()
19095     * @see elm_genlist_selected_item_get()
19096     *
19097     * @ingroup Genlist
19098     */
19099    EAPI const Eina_List  *elm_genlist_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19100    /**
19101     * Get the mode item style of items in the genlist
19102     * @param obj The genlist object
19103     * @return The mode item style string, or NULL if none is specified
19104     *
19105     * This is a constant string and simply defines the name of the
19106     * style that will be used for mode animations. It can be
19107     * @c NULL if you don't plan to use Genlist mode. See
19108     * elm_genlist_item_mode_set() for more info.
19109     *
19110     * @ingroup Genlist
19111     */
19112    EAPI const char       *elm_genlist_mode_item_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19113    /**
19114     * Set the mode item style of items in the genlist
19115     * @param obj The genlist object
19116     * @param style The mode item style string, or NULL if none is desired
19117     *
19118     * This is a constant string and simply defines the name of the
19119     * style that will be used for mode animations. It can be
19120     * @c NULL if you don't plan to use Genlist mode. See
19121     * elm_genlist_item_mode_set() for more info.
19122     *
19123     * @ingroup Genlist
19124     */
19125    EAPI void              elm_genlist_mode_item_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
19126    /**
19127     * Get a list of realized items in genlist
19128     *
19129     * @param obj The genlist object
19130     * @return The list of realized items, nor NULL if none are realized.
19131     *
19132     * This returns a list of the realized items in the genlist. The list
19133     * contains Elm_Genlist_Item pointers. The list must be freed by the
19134     * caller when done with eina_list_free(). The item pointers in the
19135     * list are only valid so long as those items are not deleted or the
19136     * genlist is not deleted.
19137     *
19138     * @see elm_genlist_realized_items_update()
19139     *
19140     * @ingroup Genlist
19141     */
19142    EAPI Eina_List        *elm_genlist_realized_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19143    /**
19144     * Get the item that is at the x, y canvas coords.
19145     *
19146     * @param obj The gelinst object.
19147     * @param x The input x coordinate
19148     * @param y The input y coordinate
19149     * @param posret The position relative to the item returned here
19150     * @return The item at the coordinates or NULL if none
19151     *
19152     * This returns the item at the given coordinates (which are canvas
19153     * relative, not object-relative). If an item is at that coordinate,
19154     * that item handle is returned, and if @p posret is not NULL, the
19155     * integer pointed to is set to a value of -1, 0 or 1, depending if
19156     * the coordinate is on the upper portion of that item (-1), on the
19157     * middle section (0) or on the lower part (1). If NULL is returned as
19158     * an item (no item found there), then posret may indicate -1 or 1
19159     * based if the coordinate is above or below all items respectively in
19160     * the genlist.
19161     *
19162     * @ingroup Genlist
19163     */
19164    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);
19165    /**
19166     * Get the first item in the genlist
19167     *
19168     * This returns the first item in the list.
19169     *
19170     * @param obj The genlist object
19171     * @return The first item, or NULL if none
19172     *
19173     * @ingroup Genlist
19174     */
19175    EAPI Elm_Genlist_Item *elm_genlist_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19176    /**
19177     * Get the last item in the genlist
19178     *
19179     * This returns the last item in the list.
19180     *
19181     * @return The last item, or NULL if none
19182     *
19183     * @ingroup Genlist
19184     */
19185    EAPI Elm_Genlist_Item *elm_genlist_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19186    /**
19187     * Set the scrollbar policy
19188     *
19189     * @param obj The genlist object
19190     * @param policy_h Horizontal scrollbar policy.
19191     * @param policy_v Vertical scrollbar policy.
19192     *
19193     * This sets the scrollbar visibility policy for the given genlist
19194     * scroller. #ELM_SMART_SCROLLER_POLICY_AUTO means the scrollbar is
19195     * made visible if it is needed, and otherwise kept hidden.
19196     * #ELM_SMART_SCROLLER_POLICY_ON turns it on all the time, and
19197     * #ELM_SMART_SCROLLER_POLICY_OFF always keeps it off. This applies
19198     * respectively for the horizontal and vertical scrollbars. Default is
19199     * #ELM_SMART_SCROLLER_POLICY_AUTO
19200     *
19201     * @see elm_genlist_scroller_policy_get()
19202     *
19203     * @ingroup Genlist
19204     */
19205    EAPI void              elm_genlist_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
19206    /**
19207     * Get the scrollbar policy
19208     *
19209     * @param obj The genlist object
19210     * @param policy_h Pointer to store the horizontal scrollbar policy.
19211     * @param policy_v Pointer to store the vertical scrollbar policy.
19212     *
19213     * @see elm_genlist_scroller_policy_set()
19214     *
19215     * @ingroup Genlist
19216     */
19217    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);
19218    /**
19219     * Get the @b next item in a genlist widget's internal list of items,
19220     * given a handle to one of those items.
19221     *
19222     * @param item The genlist item to fetch next from
19223     * @return The item after @p item, or @c NULL if there's none (and
19224     * on errors)
19225     *
19226     * This returns the item placed after the @p item, on the container
19227     * genlist.
19228     *
19229     * @see elm_genlist_item_prev_get()
19230     *
19231     * @ingroup Genlist
19232     */
19233    EAPI Elm_Genlist_Item  *elm_genlist_item_next_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19234    /**
19235     * Get the @b previous item in a genlist widget's internal list of items,
19236     * given a handle to one of those items.
19237     *
19238     * @param item The genlist item to fetch previous from
19239     * @return The item before @p item, or @c NULL if there's none (and
19240     * on errors)
19241     *
19242     * This returns the item placed before the @p item, on the container
19243     * genlist.
19244     *
19245     * @see elm_genlist_item_next_get()
19246     *
19247     * @ingroup Genlist
19248     */
19249    EAPI Elm_Genlist_Item  *elm_genlist_item_prev_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19250    /**
19251     * Get the genlist object's handle which contains a given genlist
19252     * item
19253     *
19254     * @param item The item to fetch the container from
19255     * @return The genlist (parent) object
19256     *
19257     * This returns the genlist object itself that an item belongs to.
19258     *
19259     * @ingroup Genlist
19260     */
19261    EAPI Evas_Object       *elm_genlist_item_genlist_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19262    /**
19263     * Get the parent item of the given item
19264     *
19265     * @param it The item
19266     * @return The parent of the item or @c NULL if it has no parent.
19267     *
19268     * This returns the item that was specified as parent of the item @p it on
19269     * elm_genlist_item_append() and insertion related functions.
19270     *
19271     * @ingroup Genlist
19272     */
19273    EAPI Elm_Genlist_Item  *elm_genlist_item_parent_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19274    /**
19275     * Remove all sub-items (children) of the given item
19276     *
19277     * @param it The item
19278     *
19279     * This removes all items that are children (and their descendants) of the
19280     * given item @p it.
19281     *
19282     * @see elm_genlist_clear()
19283     * @see elm_genlist_item_del()
19284     *
19285     * @ingroup Genlist
19286     */
19287    EAPI void               elm_genlist_item_subitems_clear(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19288    /**
19289     * Set whether a given genlist item is selected or not
19290     *
19291     * @param it The item
19292     * @param selected Use @c EINA_TRUE, to make it selected, @c
19293     * EINA_FALSE to make it unselected
19294     *
19295     * This sets the selected state of an item. If multi selection is
19296     * not enabled on the containing genlist and @p selected is @c
19297     * EINA_TRUE, any other previously selected items will get
19298     * unselected in favor of this new one.
19299     *
19300     * @see elm_genlist_item_selected_get()
19301     *
19302     * @ingroup Genlist
19303     */
19304    EAPI void elm_genlist_item_selected_set(Elm_Genlist_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
19305    /**
19306     * Get whether a given genlist item is selected or not
19307     *
19308     * @param it The item
19309     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
19310     *
19311     * @see elm_genlist_item_selected_set() for more details
19312     *
19313     * @ingroup Genlist
19314     */
19315    EAPI Eina_Bool elm_genlist_item_selected_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19316    /**
19317     * Sets the expanded state of an item.
19318     *
19319     * @param it The item
19320     * @param expanded The expanded state (@c EINA_TRUE expanded, @c EINA_FALSE not expanded).
19321     *
19322     * This function flags the item of type #ELM_GENLIST_ITEM_SUBITEMS as
19323     * expanded or not.
19324     *
19325     * The theme will respond to this change visually, and a signal "expanded" or
19326     * "contracted" will be sent from the genlist with a pointer to the item that
19327     * has been expanded/contracted.
19328     *
19329     * Calling this function won't show or hide any child of this item (if it is
19330     * a parent). You must manually delete and create them on the callbacks fo
19331     * the "expanded" or "contracted" signals.
19332     *
19333     * @see elm_genlist_item_expanded_get()
19334     *
19335     * @ingroup Genlist
19336     */
19337    EAPI void               elm_genlist_item_expanded_set(Elm_Genlist_Item *item, Eina_Bool expanded) EINA_ARG_NONNULL(1);
19338    /**
19339     * Get the expanded state of an item
19340     *
19341     * @param it The item
19342     * @return The expanded state
19343     *
19344     * This gets the expanded state of an item.
19345     *
19346     * @see elm_genlist_item_expanded_set()
19347     *
19348     * @ingroup Genlist
19349     */
19350    EAPI Eina_Bool          elm_genlist_item_expanded_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19351    /**
19352     * Get the depth of expanded item
19353     *
19354     * @param it The genlist item object
19355     * @return The depth of expanded item
19356     *
19357     * @ingroup Genlist
19358     */
19359    EAPI int                elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19360    /**
19361     * Set whether a given genlist item is disabled or not.
19362     *
19363     * @param it The item
19364     * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
19365     * to enable it back.
19366     *
19367     * A disabled item cannot be selected or unselected. It will also
19368     * change its appearance, to signal the user it's disabled.
19369     *
19370     * @see elm_genlist_item_disabled_get()
19371     *
19372     * @ingroup Genlist
19373     */
19374    EAPI void               elm_genlist_item_disabled_set(Elm_Genlist_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
19375    /**
19376     * Get whether a given genlist item is disabled or not.
19377     *
19378     * @param it The item
19379     * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
19380     * (and on errors).
19381     *
19382     * @see elm_genlist_item_disabled_set() for more details
19383     *
19384     * @ingroup Genlist
19385     */
19386    EAPI Eina_Bool          elm_genlist_item_disabled_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19387    /**
19388     * Sets the display only state of an item.
19389     *
19390     * @param it The item
19391     * @param display_only @c EINA_TRUE if the item is display only, @c
19392     * EINA_FALSE otherwise.
19393     *
19394     * A display only item cannot be selected or unselected. It is for
19395     * display only and not selecting or otherwise clicking, dragging
19396     * etc. by the user, thus finger size rules will not be applied to
19397     * this item.
19398     *
19399     * It's good to set group index items to display only state.
19400     *
19401     * @see elm_genlist_item_display_only_get()
19402     *
19403     * @ingroup Genlist
19404     */
19405    EAPI void               elm_genlist_item_display_only_set(Elm_Genlist_Item *it, Eina_Bool display_only) EINA_ARG_NONNULL(1);
19406    /**
19407     * Get the display only state of an item
19408     *
19409     * @param it The item
19410     * @return @c EINA_TRUE if the item is display only, @c
19411     * EINA_FALSE otherwise.
19412     *
19413     * @see elm_genlist_item_display_only_set()
19414     *
19415     * @ingroup Genlist
19416     */
19417    EAPI Eina_Bool          elm_genlist_item_display_only_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19418    /**
19419     * Show the portion of a genlist's internal list containing a given
19420     * item, immediately.
19421     *
19422     * @param it The item to display
19423     *
19424     * This causes genlist to jump to the given item @p it and show it (by
19425     * immediately scrolling to that position), if it is not fully visible.
19426     *
19427     * @see elm_genlist_item_bring_in()
19428     * @see elm_genlist_item_top_show()
19429     * @see elm_genlist_item_middle_show()
19430     *
19431     * @ingroup Genlist
19432     */
19433    EAPI void               elm_genlist_item_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19434    /**
19435     * Animatedly bring in, to the visible are of a genlist, a given
19436     * item on it.
19437     *
19438     * @param it The item to display
19439     *
19440     * This causes genlist to jump to the given item @p it and show it (by
19441     * animatedly scrolling), if it is not fully visible. This may use animation
19442     * to do so and take a period of time
19443     *
19444     * @see elm_genlist_item_show()
19445     * @see elm_genlist_item_top_bring_in()
19446     * @see elm_genlist_item_middle_bring_in()
19447     *
19448     * @ingroup Genlist
19449     */
19450    EAPI void               elm_genlist_item_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19451    /**
19452     * Show the portion of a genlist's internal list containing a given
19453     * item, immediately.
19454     *
19455     * @param it The item to display
19456     *
19457     * This causes genlist to jump to the given item @p it and show it (by
19458     * immediately scrolling to that position), if it is not fully visible.
19459     *
19460     * The item will be positioned at the top of the genlist viewport.
19461     *
19462     * @see elm_genlist_item_show()
19463     * @see elm_genlist_item_top_bring_in()
19464     *
19465     * @ingroup Genlist
19466     */
19467    EAPI void               elm_genlist_item_top_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19468    /**
19469     * Animatedly bring in, to the visible are of a genlist, a given
19470     * item on it.
19471     *
19472     * @param it The item
19473     *
19474     * This causes genlist to jump to the given item @p it and show it (by
19475     * animatedly scrolling), if it is not fully visible. This may use animation
19476     * to do so and take a period of time
19477     *
19478     * The item will be positioned at the top of the genlist viewport.
19479     *
19480     * @see elm_genlist_item_bring_in()
19481     * @see elm_genlist_item_top_show()
19482     *
19483     * @ingroup Genlist
19484     */
19485    EAPI void               elm_genlist_item_top_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19486    /**
19487     * Show the portion of a genlist's internal list containing a given
19488     * item, immediately.
19489     *
19490     * @param it The item to display
19491     *
19492     * This causes genlist to jump to the given item @p it and show it (by
19493     * immediately scrolling to that position), if it is not fully visible.
19494     *
19495     * The item will be positioned at the middle of the genlist viewport.
19496     *
19497     * @see elm_genlist_item_show()
19498     * @see elm_genlist_item_middle_bring_in()
19499     *
19500     * @ingroup Genlist
19501     */
19502    EAPI void               elm_genlist_item_middle_show(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19503    /**
19504     * Animatedly bring in, to the visible are of a genlist, a given
19505     * item on it.
19506     *
19507     * @param it The item
19508     *
19509     * This causes genlist to jump to the given item @p it and show it (by
19510     * animatedly scrolling), if it is not fully visible. This may use animation
19511     * to do so and take a period of time
19512     *
19513     * The item will be positioned at the middle of the genlist viewport.
19514     *
19515     * @see elm_genlist_item_bring_in()
19516     * @see elm_genlist_item_middle_show()
19517     *
19518     * @ingroup Genlist
19519     */
19520    EAPI void               elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19521    /**
19522     * Remove a genlist item from the its parent, deleting it.
19523     *
19524     * @param item The item to be removed.
19525     * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
19526     *
19527     * @see elm_genlist_clear(), to remove all items in a genlist at
19528     * once.
19529     *
19530     * @ingroup Genlist
19531     */
19532    EAPI void               elm_genlist_item_del(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19533    /**
19534     * Return the data associated to a given genlist item
19535     *
19536     * @param item The genlist item.
19537     * @return the data associated to this item.
19538     *
19539     * This returns the @c data value passed on the
19540     * elm_genlist_item_append() and related item addition calls.
19541     *
19542     * @see elm_genlist_item_append()
19543     * @see elm_genlist_item_data_set()
19544     *
19545     * @ingroup Genlist
19546     */
19547    EAPI void              *elm_genlist_item_data_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19548    /**
19549     * Set the data associated to a given genlist item
19550     *
19551     * @param item The genlist item
19552     * @param data The new data pointer to set on it
19553     *
19554     * This @b overrides the @c data value passed on the
19555     * elm_genlist_item_append() and related item addition calls. This
19556     * function @b won't call elm_genlist_item_update() automatically,
19557     * so you'd issue it afterwards if you want to hove the item
19558     * updated to reflect the that new data.
19559     *
19560     * @see elm_genlist_item_data_get()
19561     *
19562     * @ingroup Genlist
19563     */
19564    EAPI void               elm_genlist_item_data_set(Elm_Genlist_Item *it, const void *data) EINA_ARG_NONNULL(1);
19565    /**
19566     * Tells genlist to "orphan" contents fetchs by the item class
19567     *
19568     * @param it The item
19569     *
19570     * This instructs genlist to release references to contents in the item,
19571     * meaning that they will no longer be managed by genlist and are
19572     * floating "orphans" that can be re-used elsewhere if the user wants
19573     * to.
19574     *
19575     * @ingroup Genlist
19576     */
19577    EAPI void               elm_genlist_item_contents_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19578    EINA_DEPRECATED EAPI void               elm_genlist_item_icons_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19579    /**
19580     * Get the real Evas object created to implement the view of a
19581     * given genlist item
19582     *
19583     * @param item The genlist item.
19584     * @return the Evas object implementing this item's view.
19585     *
19586     * This returns the actual Evas object used to implement the
19587     * specified genlist item's view. This may be @c NULL, as it may
19588     * not have been created or may have been deleted, at any time, by
19589     * the genlist. <b>Do not modify this object</b> (move, resize,
19590     * show, hide, etc.), as the genlist is controlling it. This
19591     * function is for querying, emitting custom signals or hooking
19592     * lower level callbacks for events on that object. Do not delete
19593     * this object under any circumstances.
19594     *
19595     * @see elm_genlist_item_data_get()
19596     *
19597     * @ingroup Genlist
19598     */
19599    EAPI const Evas_Object *elm_genlist_item_object_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19600    /**
19601     * Update the contents of an item
19602     *
19603     * @param it The item
19604     *
19605     * This updates an item by calling all the item class functions again
19606     * to get the contents, texts and states. Use this when the original
19607     * item data has changed and the changes are desired to be reflected.
19608     *
19609     * Use elm_genlist_realized_items_update() to update all already realized
19610     * items.
19611     *
19612     * @see elm_genlist_realized_items_update()
19613     *
19614     * @ingroup Genlist
19615     */
19616    EAPI void               elm_genlist_item_update(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19617    /**
19618     * Promote an item to the top of the list
19619     *
19620     * @param it The item
19621     *
19622     * @ingroup Genlist
19623     */
19624    EAPI void               elm_genlist_item_promote(Elm_Gen_Item *it) EINA_ARG_NONNULL(1);
19625    /**
19626     * Demote an item to the end of the list
19627     *
19628     * @param it The item
19629     *
19630     * @ingroup Genlist
19631     */
19632    EAPI void               elm_genlist_item_demote(Elm_Gen_Item *it) EINA_ARG_NONNULL(1);
19633    /**
19634     * Update the part of an item
19635     *
19636     * @param it The item
19637     * @param parts The name of item's part
19638     * @param itf The flags of item's part type
19639     *
19640     * This updates an item's part by calling item's fetching functions again
19641     * to get the contents, texts and states. Use this when the original
19642     * item data has changed and the changes are desired to be reflected.
19643     * Second parts argument is used for globbing to match '*', '?', and '.'
19644     * It can be used at updating multi fields.
19645     *
19646     * Use elm_genlist_realized_items_update() to update an item's all
19647     * property.
19648     *
19649     * @see elm_genlist_item_update()
19650     *
19651     * @ingroup Genlist
19652     */
19653    EAPI void               elm_genlist_item_fields_update(Elm_Genlist_Item *it, const char *parts, Elm_Genlist_Item_Field_Flags itf) EINA_ARG_NONNULL(1);
19654    /**
19655     * Update the item class of an item
19656     *
19657     * @param it The item
19658     * @param itc The item class for the item
19659     *
19660     * This sets another class fo the item, changing the way that it is
19661     * displayed. After changing the item class, elm_genlist_item_update() is
19662     * called on the item @p it.
19663     *
19664     * @ingroup Genlist
19665     */
19666    EAPI void               elm_genlist_item_item_class_update(Elm_Genlist_Item *it, const Elm_Genlist_Item_Class *itc) EINA_ARG_NONNULL(1, 2);
19667    EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
19668    /**
19669     * Set the text to be shown in a given genlist item's tooltips.
19670     *
19671     * @param item The genlist item
19672     * @param text The text to set in the content
19673     *
19674     * This call will setup the text to be used as tooltip to that item
19675     * (analogous to elm_object_tooltip_text_set(), but being item
19676     * tooltips with higher precedence than object tooltips). It can
19677     * have only one tooltip at a time, so any previous tooltip data
19678     * will get removed.
19679     *
19680     * In order to set a content or something else as a tooltip, look at
19681     * elm_genlist_item_tooltip_content_cb_set().
19682     *
19683     * @ingroup Genlist
19684     */
19685    EAPI void               elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item, const char *text) EINA_ARG_NONNULL(1);
19686    /**
19687     * Set the content to be shown in a given genlist item's tooltips
19688     *
19689     * @param item The genlist item.
19690     * @param func The function returning the tooltip contents.
19691     * @param data What to provide to @a func as callback data/context.
19692     * @param del_cb Called when data is not needed anymore, either when
19693     *        another callback replaces @p func, the tooltip is unset with
19694     *        elm_genlist_item_tooltip_unset() or the owner @p item
19695     *        dies. This callback receives as its first parameter the
19696     *        given @p data, being @c event_info the item handle.
19697     *
19698     * This call will setup the tooltip's contents to @p item
19699     * (analogous to elm_object_tooltip_content_cb_set(), but being
19700     * item tooltips with higher precedence than object tooltips). It
19701     * can have only one tooltip at a time, so any previous tooltip
19702     * content will get removed. @p func (with @p data) will be called
19703     * every time Elementary needs to show the tooltip and it should
19704     * return a valid Evas object, which will be fully managed by the
19705     * tooltip system, getting deleted when the tooltip is gone.
19706     *
19707     * In order to set just a text as a tooltip, look at
19708     * elm_genlist_item_tooltip_text_set().
19709     *
19710     * @ingroup Genlist
19711     */
19712    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);
19713    /**
19714     * Unset a tooltip from a given genlist item
19715     *
19716     * @param item genlist item to remove a previously set tooltip from.
19717     *
19718     * This call removes any tooltip set on @p item. The callback
19719     * provided as @c del_cb to
19720     * elm_genlist_item_tooltip_content_cb_set() will be called to
19721     * notify it is not used anymore (and have resources cleaned, if
19722     * need be).
19723     *
19724     * @see elm_genlist_item_tooltip_content_cb_set()
19725     *
19726     * @ingroup Genlist
19727     */
19728    EAPI void               elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19729    /**
19730     * Set a different @b style for a given genlist item's tooltip.
19731     *
19732     * @param item genlist item with tooltip set
19733     * @param style the <b>theme style</b> to use on tooltips (e.g. @c
19734     * "default", @c "transparent", etc)
19735     *
19736     * Tooltips can have <b>alternate styles</b> to be displayed on,
19737     * which are defined by the theme set on Elementary. This function
19738     * works analogously as elm_object_tooltip_style_set(), but here
19739     * applied only to genlist item objects. The default style for
19740     * tooltips is @c "default".
19741     *
19742     * @note before you set a style you should define a tooltip with
19743     *       elm_genlist_item_tooltip_content_cb_set() or
19744     *       elm_genlist_item_tooltip_text_set()
19745     *
19746     * @see elm_genlist_item_tooltip_style_get()
19747     *
19748     * @ingroup Genlist
19749     */
19750    EAPI void               elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
19751    /**
19752     * Get the style set a given genlist item's tooltip.
19753     *
19754     * @param item genlist item with tooltip already set on.
19755     * @return style the theme style in use, which defaults to
19756     *         "default". If the object does not have a tooltip set,
19757     *         then @c NULL is returned.
19758     *
19759     * @see elm_genlist_item_tooltip_style_set() for more details
19760     *
19761     * @ingroup Genlist
19762     */
19763    EAPI const char        *elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19764    /**
19765     * @brief Disable size restrictions on an object's tooltip
19766     * @param item The tooltip's anchor object
19767     * @param disable If EINA_TRUE, size restrictions are disabled
19768     * @return EINA_FALSE on failure, EINA_TRUE on success
19769     *
19770     * This function allows a tooltip to expand beyond its parant window's canvas.
19771     * It will instead be limited only by the size of the display.
19772     */
19773    EAPI Eina_Bool          elm_genlist_item_tooltip_size_restrict_disable(Elm_Genlist_Item *item, Eina_Bool disable);
19774    /**
19775     * @brief Retrieve size restriction state of an object's tooltip
19776     * @param item The tooltip's anchor object
19777     * @return If EINA_TRUE, size restrictions are disabled
19778     *
19779     * This function returns whether a tooltip is allowed to expand beyond
19780     * its parant window's canvas.
19781     * It will instead be limited only by the size of the display.
19782     */
19783    EAPI Eina_Bool          elm_genlist_item_tooltip_size_restrict_disabled_get(const Elm_Genlist_Item *item);
19784    /**
19785     * Set the type of mouse pointer/cursor decoration to be shown,
19786     * when the mouse pointer is over the given genlist widget item
19787     *
19788     * @param item genlist item to customize cursor on
19789     * @param cursor the cursor type's name
19790     *
19791     * This function works analogously as elm_object_cursor_set(), but
19792     * here the cursor's changing area is restricted to the item's
19793     * area, and not the whole widget's. Note that that item cursors
19794     * have precedence over widget cursors, so that a mouse over @p
19795     * item will always show cursor @p type.
19796     *
19797     * If this function is called twice for an object, a previously set
19798     * cursor will be unset on the second call.
19799     *
19800     * @see elm_object_cursor_set()
19801     * @see elm_genlist_item_cursor_get()
19802     * @see elm_genlist_item_cursor_unset()
19803     *
19804     * @ingroup Genlist
19805     */
19806    EAPI void               elm_genlist_item_cursor_set(Elm_Genlist_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
19807    /**
19808     * Get the type of mouse pointer/cursor decoration set to be shown,
19809     * when the mouse pointer is over the given genlist widget item
19810     *
19811     * @param item genlist item with custom cursor set
19812     * @return the cursor type's name or @c NULL, if no custom cursors
19813     * were set to @p item (and on errors)
19814     *
19815     * @see elm_object_cursor_get()
19816     * @see elm_genlist_item_cursor_set() for more details
19817     * @see elm_genlist_item_cursor_unset()
19818     *
19819     * @ingroup Genlist
19820     */
19821    EAPI const char        *elm_genlist_item_cursor_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19822    /**
19823     * Unset any custom mouse pointer/cursor decoration set to be
19824     * shown, when the mouse pointer is over the given genlist widget
19825     * item, thus making it show the @b default cursor again.
19826     *
19827     * @param item a genlist item
19828     *
19829     * Use this call to undo any custom settings on this item's cursor
19830     * decoration, bringing it back to defaults (no custom style set).
19831     *
19832     * @see elm_object_cursor_unset()
19833     * @see elm_genlist_item_cursor_set() for more details
19834     *
19835     * @ingroup Genlist
19836     */
19837    EAPI void               elm_genlist_item_cursor_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19838    /**
19839     * Set a different @b style for a given custom cursor set for a
19840     * genlist item.
19841     *
19842     * @param item genlist item with custom cursor set
19843     * @param style the <b>theme style</b> to use (e.g. @c "default",
19844     * @c "transparent", etc)
19845     *
19846     * This function only makes sense when one is using custom mouse
19847     * cursor decorations <b>defined in a theme file</b> , which can
19848     * have, given a cursor name/type, <b>alternate styles</b> on
19849     * it. It works analogously as elm_object_cursor_style_set(), but
19850     * here applied only to genlist item objects.
19851     *
19852     * @warning Before you set a cursor style you should have defined a
19853     *       custom cursor previously on the item, with
19854     *       elm_genlist_item_cursor_set()
19855     *
19856     * @see elm_genlist_item_cursor_engine_only_set()
19857     * @see elm_genlist_item_cursor_style_get()
19858     *
19859     * @ingroup Genlist
19860     */
19861    EAPI void               elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
19862    /**
19863     * Get the current @b style set for a given genlist item's custom
19864     * cursor
19865     *
19866     * @param item genlist item with custom cursor set.
19867     * @return style the cursor style in use. If the object does not
19868     *         have a cursor set, then @c NULL is returned.
19869     *
19870     * @see elm_genlist_item_cursor_style_set() for more details
19871     *
19872     * @ingroup Genlist
19873     */
19874    EAPI const char        *elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19875    /**
19876     * Set if the (custom) cursor for a given genlist item should be
19877     * searched in its theme, also, or should only rely on the
19878     * rendering engine.
19879     *
19880     * @param item item with custom (custom) cursor already set on
19881     * @param engine_only Use @c EINA_TRUE to have cursors looked for
19882     * only on those provided by the rendering engine, @c EINA_FALSE to
19883     * have them searched on the widget's theme, as well.
19884     *
19885     * @note This call is of use only if you've set a custom cursor
19886     * for genlist items, with elm_genlist_item_cursor_set().
19887     *
19888     * @note By default, cursors will only be looked for between those
19889     * provided by the rendering engine.
19890     *
19891     * @ingroup Genlist
19892     */
19893    EAPI void               elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
19894    /**
19895     * Get if the (custom) cursor for a given genlist item is being
19896     * searched in its theme, also, or is only relying on the rendering
19897     * engine.
19898     *
19899     * @param item a genlist item
19900     * @return @c EINA_TRUE, if cursors are being looked for only on
19901     * those provided by the rendering engine, @c EINA_FALSE if they
19902     * are being searched on the widget's theme, as well.
19903     *
19904     * @see elm_genlist_item_cursor_engine_only_set(), for more details
19905     *
19906     * @ingroup Genlist
19907     */
19908    EAPI Eina_Bool          elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
19909    /**
19910     * Update the contents of all realized items.
19911     *
19912     * @param obj The genlist object.
19913     *
19914     * This updates all realized items by calling all the item class functions again
19915     * to get the contents, texts and states. Use this when the original
19916     * item data has changed and the changes are desired to be reflected.
19917     *
19918     * To update just one item, use elm_genlist_item_update().
19919     *
19920     * @see elm_genlist_realized_items_get()
19921     * @see elm_genlist_item_update()
19922     *
19923     * @ingroup Genlist
19924     */
19925    EAPI void               elm_genlist_realized_items_update(Evas_Object *obj) EINA_ARG_NONNULL(1);
19926    /**
19927     * Activate a genlist mode on an item
19928     *
19929     * @param item The genlist item
19930     * @param mode Mode name
19931     * @param mode_set Boolean to define set or unset mode.
19932     *
19933     * A genlist mode is a different way of selecting an item. Once a mode is
19934     * activated on an item, any other selected item is immediately unselected.
19935     * This feature provides an easy way of implementing a new kind of animation
19936     * for selecting an item, without having to entirely rewrite the item style
19937     * theme. However, the elm_genlist_selected_* API can't be used to get what
19938     * item is activate for a mode.
19939     *
19940     * The current item style will still be used, but applying a genlist mode to
19941     * an item will select it using a different kind of animation.
19942     *
19943     * The current active item for a mode can be found by
19944     * elm_genlist_mode_item_get().
19945     *
19946     * The characteristics of genlist mode are:
19947     * - Only one mode can be active at any time, and for only one item.
19948     * - Genlist handles deactivating other items when one item is activated.
19949     * - A mode is defined in the genlist theme (edc), and more modes can easily
19950     *   be added.
19951     * - A mode style and the genlist item style are different things. They
19952     *   can be combined to provide a default style to the item, with some kind
19953     *   of animation for that item when the mode is activated.
19954     *
19955     * When a mode is activated on an item, a new view for that item is created.
19956     * The theme of this mode defines the animation that will be used to transit
19957     * the item from the old view to the new view. This second (new) view will be
19958     * active for that item while the mode is active on the item, and will be
19959     * destroyed after the mode is totally deactivated from that item.
19960     *
19961     * @see elm_genlist_mode_get()
19962     * @see elm_genlist_mode_item_get()
19963     *
19964     * @ingroup Genlist
19965     */
19966    EAPI void               elm_genlist_item_mode_set(Elm_Genlist_Item *it, const char *mode_type, Eina_Bool mode_set) EINA_ARG_NONNULL(1, 2);
19967    /**
19968     * Get the last (or current) genlist mode used.
19969     *
19970     * @param obj The genlist object
19971     *
19972     * This function just returns the name of the last used genlist mode. It will
19973     * be the current mode if it's still active.
19974     *
19975     * @see elm_genlist_item_mode_set()
19976     * @see elm_genlist_mode_item_get()
19977     *
19978     * @ingroup Genlist
19979     */
19980    EAPI const char        *elm_genlist_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19981    /**
19982     * Get active genlist mode item
19983     *
19984     * @param obj The genlist object
19985     * @return The active item for that current mode. Or @c NULL if no item is
19986     * activated with any mode.
19987     *
19988     * This function returns the item that was activated with a mode, by the
19989     * function elm_genlist_item_mode_set().
19990     *
19991     * @see elm_genlist_item_mode_set()
19992     * @see elm_genlist_mode_get()
19993     *
19994     * @ingroup Genlist
19995     */
19996    EAPI const Elm_Genlist_Item *elm_genlist_mode_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
19997
19998    /**
19999     * Set reorder mode
20000     *
20001     * @param obj The genlist object
20002     * @param reorder_mode The reorder mode
20003     * (EINA_TRUE = on, EINA_FALSE = off)
20004     *
20005     * @ingroup Genlist
20006     */
20007    EAPI void               elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
20008
20009    /**
20010     * Get the reorder mode
20011     *
20012     * @param obj The genlist object
20013     * @return The reorder mode
20014     * (EINA_TRUE = on, EINA_FALSE = off)
20015     *
20016     * @ingroup Genlist
20017     */
20018    EAPI Eina_Bool          elm_genlist_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20019
20020    /**
20021     * @}
20022     */
20023
20024    /**
20025     * @defgroup Check Check
20026     *
20027     * @image html img/widget/check/preview-00.png
20028     * @image latex img/widget/check/preview-00.eps
20029     * @image html img/widget/check/preview-01.png
20030     * @image latex img/widget/check/preview-01.eps
20031     * @image html img/widget/check/preview-02.png
20032     * @image latex img/widget/check/preview-02.eps
20033     *
20034     * @brief The check widget allows for toggling a value between true and
20035     * false.
20036     *
20037     * Check objects are a lot like radio objects in layout and functionality
20038     * except they do not work as a group, but independently and only toggle the
20039     * value of a boolean from false to true (0 or 1). elm_check_state_set() sets
20040     * the boolean state (1 for true, 0 for false), and elm_check_state_get()
20041     * returns the current state. For convenience, like the radio objects, you
20042     * can set a pointer to a boolean directly with elm_check_state_pointer_set()
20043     * for it to modify.
20044     *
20045     * Signals that you can add callbacks for are:
20046     * "changed" - This is called whenever the user changes the state of one of
20047     *             the check object(event_info is NULL).
20048     *
20049     * Default contents parts of the check widget that you can use for are:
20050     * @li "icon" - An icon of the check
20051     *
20052     * Default text parts of the check widget that you can use for are:
20053     * @li "elm.text" - Label of the check
20054     *
20055     * @ref tutorial_check should give you a firm grasp of how to use this widget
20056     * .
20057     * @{
20058     */
20059    /**
20060     * @brief Add a new Check object
20061     *
20062     * @param parent The parent object
20063     * @return The new object or NULL if it cannot be created
20064     */
20065    EAPI Evas_Object *elm_check_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20066    /**
20067     * @brief Set the text label of the check object
20068     *
20069     * @param obj The check object
20070     * @param label The text label string in UTF-8
20071     *
20072     * @deprecated use elm_object_text_set() instead.
20073     */
20074    EINA_DEPRECATED EAPI void         elm_check_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
20075    /**
20076     * @brief Get the text label of the check object
20077     *
20078     * @param obj The check object
20079     * @return The text label string in UTF-8
20080     *
20081     * @deprecated use elm_object_text_get() instead.
20082     */
20083    EINA_DEPRECATED EAPI const char  *elm_check_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20084    /**
20085     * @brief Set the icon object of the check object
20086     *
20087     * @param obj The check object
20088     * @param icon The icon object
20089     *
20090     * Once the icon object is set, a previously set one will be deleted.
20091     * If you want to keep that old content object, use the
20092     * elm_object_content_unset() function.
20093     *
20094     * @deprecated use elm_object_part_content_set() instead.
20095     *
20096     */
20097    EINA_DEPRECATED EAPI void         elm_check_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
20098    /**
20099     * @brief Get the icon object of the check object
20100     *
20101     * @param obj The check object
20102     * @return The icon object
20103     *
20104     * @deprecated use elm_object_part_content_get() instead.
20105     *
20106     */
20107    EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20108    /**
20109     * @brief Unset the icon used for the check object
20110     *
20111     * @param obj The check object
20112     * @return The icon object that was being used
20113     *
20114     * Unparent and return the icon object which was set for this widget.
20115     *
20116     * @deprecated use elm_object_part_content_unset() instead.
20117     *
20118     */
20119    EINA_DEPRECATED EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
20120    /**
20121     * @brief Set the on/off state of the check object
20122     *
20123     * @param obj The check object
20124     * @param state The state to use (1 == on, 0 == off)
20125     *
20126     * This sets the state of the check. If set
20127     * with elm_check_state_pointer_set() the state of that variable is also
20128     * changed. Calling this @b doesn't cause the "changed" signal to be emited.
20129     */
20130    EAPI void         elm_check_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
20131    /**
20132     * @brief Get the state of the check object
20133     *
20134     * @param obj The check object
20135     * @return The boolean state
20136     */
20137    EAPI Eina_Bool    elm_check_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20138    /**
20139     * @brief Set a convenience pointer to a boolean to change
20140     *
20141     * @param obj The check object
20142     * @param statep Pointer to the boolean to modify
20143     *
20144     * This sets a pointer to a boolean, that, in addition to the check objects
20145     * state will also be modified directly. To stop setting the object pointed
20146     * to simply use NULL as the @p statep parameter. If @p statep is not NULL,
20147     * then when this is called, the check objects state will also be modified to
20148     * reflect the value of the boolean @p statep points to, just like calling
20149     * elm_check_state_set().
20150     */
20151    EAPI void         elm_check_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
20152    EINA_DEPRECATED EAPI void         elm_check_states_labels_set(Evas_Object *obj, const char *ontext, const char *offtext) EINA_ARG_NONNULL(1,2,3);
20153    EINA_DEPRECATED EAPI void         elm_check_states_labels_get(const Evas_Object *obj, const char **ontext, const char **offtext) EINA_ARG_NONNULL(1,2,3);
20154
20155    /**
20156     * @}
20157     */
20158
20159    /**
20160     * @defgroup Radio Radio
20161     *
20162     * @image html img/widget/radio/preview-00.png
20163     * @image latex img/widget/radio/preview-00.eps
20164     *
20165     * @brief Radio is a widget that allows for 1 or more options to be displayed
20166     * and have the user choose only 1 of them.
20167     *
20168     * A radio object contains an indicator, an optional Label and an optional
20169     * icon object. While it's possible to have a group of only one radio they,
20170     * are normally used in groups of 2 or more. To add a radio to a group use
20171     * elm_radio_group_add(). The radio object(s) will select from one of a set
20172     * of integer values, so any value they are configuring needs to be mapped to
20173     * a set of integers. To configure what value that radio object represents,
20174     * use  elm_radio_state_value_set() to set the integer it represents. To set
20175     * the value the whole group(which one is currently selected) is to indicate
20176     * use elm_radio_value_set() on any group member, and to get the groups value
20177     * use elm_radio_value_get(). For convenience the radio objects are also able
20178     * to directly set an integer(int) to the value that is selected. To specify
20179     * the pointer to this integer to modify, use elm_radio_value_pointer_set().
20180     * The radio objects will modify this directly. That implies the pointer must
20181     * point to valid memory for as long as the radio objects exist.
20182     *
20183     * Signals that you can add callbacks for are:
20184     * @li changed - This is called whenever the user changes the state of one of
20185     * the radio objects within the group of radio objects that work together.
20186     *
20187     * Default contents parts of the radio widget that you can use for are:
20188     * @li "icon" - An icon of the radio
20189     *
20190     * @ref tutorial_radio show most of this API in action.
20191     * @{
20192     */
20193    /**
20194     * @brief Add a new radio to the parent
20195     *
20196     * @param parent The parent object
20197     * @return The new object or NULL if it cannot be created
20198     */
20199    EAPI Evas_Object *elm_radio_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20200    /**
20201     * @brief Set the text label of the radio object
20202     *
20203     * @param obj The radio object
20204     * @param label The text label string in UTF-8
20205     *
20206     * @deprecated use elm_object_text_set() instead.
20207     */
20208    EINA_DEPRECATED EAPI void         elm_radio_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
20209    /**
20210     * @brief Get the text label of the radio object
20211     *
20212     * @param obj The radio object
20213     * @return The text label string in UTF-8
20214     *
20215     * @deprecated use elm_object_text_set() instead.
20216     */
20217    EINA_DEPRECATED EAPI const char  *elm_radio_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20218    /**
20219     * @brief Set the icon object of the radio object
20220     *
20221     * @param obj The radio object
20222     * @param icon The icon object
20223     *
20224     * Once the icon object is set, a previously set one will be deleted. If you
20225     * want to keep that old content object, use the elm_radio_icon_unset()
20226     * function.
20227     *
20228     * @deprecated use elm_object_part_content_set() instead.
20229     *
20230     */
20231    EINA_DEPRECATED EAPI void         elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
20232    /**
20233     * @brief Get the icon object of the radio object
20234     *
20235     * @param obj The radio object
20236     * @return The icon object
20237     *
20238     * @see elm_radio_icon_set()
20239     *
20240     * @deprecated use elm_object_part_content_get() instead.
20241     *
20242     */
20243    EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20244    /**
20245     * @brief Unset the icon used for the radio object
20246     *
20247     * @param obj The radio object
20248     * @return The icon object that was being used
20249     *
20250     * Unparent and return the icon object which was set for this widget.
20251     *
20252     * @see elm_radio_icon_set()
20253     * @deprecated use elm_object_part_content_unset() instead.
20254     *
20255     */
20256    EINA_DEPRECATED EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
20257    /**
20258     * @brief Add this radio to a group of other radio objects
20259     *
20260     * @param obj The radio object
20261     * @param group Any object whose group the @p obj is to join.
20262     *
20263     * Radio objects work in groups. Each member should have a different integer
20264     * value assigned. In order to have them work as a group, they need to know
20265     * about each other. This adds the given radio object to the group of which
20266     * the group object indicated is a member.
20267     */
20268    EAPI void         elm_radio_group_add(Evas_Object *obj, Evas_Object *group) EINA_ARG_NONNULL(1);
20269    /**
20270     * @brief Set the integer value that this radio object represents
20271     *
20272     * @param obj The radio object
20273     * @param value The value to use if this radio object is selected
20274     *
20275     * This sets the value of the radio.
20276     */
20277    EAPI void         elm_radio_state_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
20278    /**
20279     * @brief Get the integer value that this radio object represents
20280     *
20281     * @param obj The radio object
20282     * @return The value used if this radio object is selected
20283     *
20284     * This gets the value of the radio.
20285     *
20286     * @see elm_radio_value_set()
20287     */
20288    EAPI int          elm_radio_state_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20289    /**
20290     * @brief Set the value of the radio.
20291     *
20292     * @param obj The radio object
20293     * @param value The value to use for the group
20294     *
20295     * This sets the value of the radio group and will also set the value if
20296     * pointed to, to the value supplied, but will not call any callbacks.
20297     */
20298    EAPI void         elm_radio_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
20299    /**
20300     * @brief Get the state of the radio object
20301     *
20302     * @param obj The radio object
20303     * @return The integer state
20304     */
20305    EAPI int          elm_radio_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20306    /**
20307     * @brief Set a convenience pointer to a integer to change
20308     *
20309     * @param obj The radio object
20310     * @param valuep Pointer to the integer to modify
20311     *
20312     * This sets a pointer to a integer, that, in addition to the radio objects
20313     * state will also be modified directly. To stop setting the object pointed
20314     * to simply use NULL as the @p valuep argument. If valuep is not NULL, then
20315     * when this is called, the radio objects state will also be modified to
20316     * reflect the value of the integer valuep points to, just like calling
20317     * elm_radio_value_set().
20318     */
20319    EAPI void         elm_radio_value_pointer_set(Evas_Object *obj, int *valuep) EINA_ARG_NONNULL(1);
20320    /**
20321     * @}
20322     */
20323
20324    /**
20325     * @defgroup Pager Pager
20326     *
20327     * @image html img/widget/pager/preview-00.png
20328     * @image latex img/widget/pager/preview-00.eps
20329     *
20330     * @brief Widget that allows flipping between one or more ā€œpagesā€
20331     * of objects.
20332     *
20333     * The flipping between pages of objects is animated. All content
20334     * in the pager is kept in a stack, being the last content added
20335     * (visible one) on the top of that stack.
20336     *
20337     * Objects can be pushed or popped from the stack or deleted as
20338     * well. Pushes and pops will animate the widget accordingly to its
20339     * style (a pop will also delete the child object once the
20340     * animation is finished). Any object already in the pager can be
20341     * promoted to the top (from its current stacking position) through
20342     * the use of elm_pager_content_promote(). New objects are pushed
20343     * to the top with elm_pager_content_push(). When the top item is
20344     * no longer wanted, simply pop it with elm_pager_content_pop() and
20345     * it will also be deleted. If an object is no longer needed and is
20346     * not the top item, just delete it as normal. You can query which
20347     * objects are the top and bottom with
20348     * elm_pager_content_bottom_get() and elm_pager_content_top_get().
20349     *
20350     * Signals that you can add callbacks for are:
20351     * - @c "show,finished" - when a new page is actually shown on the top
20352     * - @c "hide,finished" - when a previous page is hidden
20353     *
20354     * Only after the first of that signals the child object is
20355     * guaranteed to be visible, as in @c evas_object_visible_get().
20356     *
20357     * This widget has the following styles available:
20358     * - @c "default"
20359     * - @c "fade"
20360     * - @c "fade_translucide"
20361     * - @c "fade_invisible"
20362     *
20363     * @note These styles affect only the flipping animations on the
20364     * default theme; the appearance when not animating is unaffected
20365     * by them.
20366     *
20367     * @ref tutorial_pager gives a good overview of the usage of the API.
20368     * @{
20369     */
20370
20371    /**
20372     * Add a new pager to the parent
20373     *
20374     * @param parent The parent object
20375     * @return The new object or NULL if it cannot be created
20376     *
20377     * @ingroup Pager
20378     */
20379    EAPI Evas_Object *elm_pager_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20380
20381    /**
20382     * @brief Push an object to the top of the pager stack (and show it).
20383     *
20384     * @param obj The pager object
20385     * @param content The object to push
20386     *
20387     * The object pushed becomes a child of the pager, it will be controlled and
20388     * deleted when the pager is deleted.
20389     *
20390     * @note If the content is already in the stack use
20391     * elm_pager_content_promote().
20392     * @warning Using this function on @p content already in the stack results in
20393     * undefined behavior.
20394     */
20395    EAPI void         elm_pager_content_push(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
20396
20397    /**
20398     * @brief Pop the object that is on top of the stack
20399     *
20400     * @param obj The pager object
20401     *
20402     * This pops the object that is on the top(visible) of the pager, makes it
20403     * disappear, then deletes the object. The object that was underneath it on
20404     * the stack will become visible.
20405     */
20406    EAPI void         elm_pager_content_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
20407
20408    /**
20409     * @brief Moves an object already in the pager stack to the top of the stack.
20410     *
20411     * @param obj The pager object
20412     * @param content The object to promote
20413     *
20414     * This will take the @p content and move it to the top of the stack as
20415     * if it had been pushed there.
20416     *
20417     * @note If the content isn't already in the stack use
20418     * elm_pager_content_push().
20419     * @warning Using this function on @p content not already in the stack
20420     * results in undefined behavior.
20421     */
20422    EAPI void         elm_pager_content_promote(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
20423
20424    /**
20425     * @brief Return the object at the bottom of the pager stack
20426     *
20427     * @param obj The pager object
20428     * @return The bottom object or NULL if none
20429     */
20430    EAPI Evas_Object *elm_pager_content_bottom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20431
20432    /**
20433     * @brief  Return the object at the top of the pager stack
20434     *
20435     * @param obj The pager object
20436     * @return The top object or NULL if none
20437     */
20438    EAPI Evas_Object *elm_pager_content_top_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20439
20440    /**
20441     * @}
20442     */
20443
20444    /**
20445     * @defgroup Slideshow Slideshow
20446     *
20447     * @image html img/widget/slideshow/preview-00.png
20448     * @image latex img/widget/slideshow/preview-00.eps
20449     *
20450     * This widget, as the name indicates, is a pre-made image
20451     * slideshow panel, with API functions acting on (child) image
20452     * items presentation. Between those actions, are:
20453     * - advance to next/previous image
20454     * - select the style of image transition animation
20455     * - set the exhibition time for each image
20456     * - start/stop the slideshow
20457     *
20458     * The transition animations are defined in the widget's theme,
20459     * consequently new animations can be added without having to
20460     * update the widget's code.
20461     *
20462     * @section Slideshow_Items Slideshow items
20463     *
20464     * For slideshow items, just like for @ref Genlist "genlist" ones,
20465     * the user defines a @b classes, specifying functions that will be
20466     * called on the item's creation and deletion times.
20467     *
20468     * The #Elm_Slideshow_Item_Class structure contains the following
20469     * members:
20470     *
20471     * - @c func.get - When an item is displayed, this function is
20472     *   called, and it's where one should create the item object, de
20473     *   facto. For example, the object can be a pure Evas image object
20474     *   or an Elementary @ref Photocam "photocam" widget. See
20475     *   #SlideshowItemGetFunc.
20476     * - @c func.del - When an item is no more displayed, this function
20477     *   is called, where the user must delete any data associated to
20478     *   the item. See #SlideshowItemDelFunc.
20479     *
20480     * @section Slideshow_Caching Slideshow caching
20481     *
20482     * The slideshow provides facilities to have items adjacent to the
20483     * one being displayed <b>already "realized"</b> (i.e. loaded) for
20484     * you, so that the system does not have to decode image data
20485     * anymore at the time it has to actually switch images on its
20486     * viewport. The user is able to set the numbers of items to be
20487     * cached @b before and @b after the current item, in the widget's
20488     * item list.
20489     *
20490     * Smart events one can add callbacks for are:
20491     *
20492     * - @c "changed" - when the slideshow switches its view to a new
20493     *   item
20494     *
20495     * List of examples for the slideshow widget:
20496     * @li @ref slideshow_example
20497     */
20498
20499    /**
20500     * @addtogroup Slideshow
20501     * @{
20502     */
20503
20504    typedef struct _Elm_Slideshow_Item_Class Elm_Slideshow_Item_Class; /**< Slideshow item class definition struct */
20505    typedef struct _Elm_Slideshow_Item_Class_Func Elm_Slideshow_Item_Class_Func; /**< Class functions for slideshow item classes. */
20506    typedef struct _Elm_Slideshow_Item       Elm_Slideshow_Item; /**< Slideshow item handle */
20507    typedef Evas_Object *(*SlideshowItemGetFunc) (void *data, Evas_Object *obj); /**< Image fetching class function for slideshow item classes. */
20508    typedef void         (*SlideshowItemDelFunc) (void *data, Evas_Object *obj); /**< Deletion class function for slideshow item classes. */
20509
20510    /**
20511     * @struct _Elm_Slideshow_Item_Class
20512     *
20513     * Slideshow item class definition. See @ref Slideshow_Items for
20514     * field details.
20515     */
20516    struct _Elm_Slideshow_Item_Class
20517      {
20518         struct _Elm_Slideshow_Item_Class_Func
20519           {
20520              SlideshowItemGetFunc get;
20521              SlideshowItemDelFunc del;
20522           } func;
20523      }; /**< #Elm_Slideshow_Item_Class member definitions */
20524
20525    /**
20526     * Add a new slideshow widget to the given parent Elementary
20527     * (container) object
20528     *
20529     * @param parent The parent object
20530     * @return A new slideshow widget handle or @c NULL, on errors
20531     *
20532     * This function inserts a new slideshow widget on the canvas.
20533     *
20534     * @ingroup Slideshow
20535     */
20536    EAPI Evas_Object        *elm_slideshow_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
20537
20538    /**
20539     * Add (append) a new item in a given slideshow widget.
20540     *
20541     * @param obj The slideshow object
20542     * @param itc The item class for the item
20543     * @param data The item's data
20544     * @return A handle to the item added or @c NULL, on errors
20545     *
20546     * Add a new item to @p obj's internal list of items, appending it.
20547     * The item's class must contain the function really fetching the
20548     * image object to show for this item, which could be an Evas image
20549     * object or an Elementary photo, for example. The @p data
20550     * parameter is going to be passed to both class functions of the
20551     * item.
20552     *
20553     * @see #Elm_Slideshow_Item_Class
20554     * @see elm_slideshow_item_sorted_insert()
20555     *
20556     * @ingroup Slideshow
20557     */
20558    EAPI Elm_Slideshow_Item *elm_slideshow_item_add(Evas_Object *obj, const Elm_Slideshow_Item_Class *itc, const void *data) EINA_ARG_NONNULL(1);
20559
20560    /**
20561     * Insert a new item into the given slideshow widget, using the @p func
20562     * function to sort items (by item handles).
20563     *
20564     * @param obj The slideshow object
20565     * @param itc The item class for the item
20566     * @param data The item's data
20567     * @param func The comparing function to be used to sort slideshow
20568     * items <b>by #Elm_Slideshow_Item item handles</b>
20569     * @return Returns The slideshow item handle, on success, or
20570     * @c NULL, on errors
20571     *
20572     * Add a new item to @p obj's internal list of items, in a position
20573     * determined by the @p func comparing function. The item's class
20574     * must contain the function really fetching the image object to
20575     * show for this item, which could be an Evas image object or an
20576     * Elementary photo, for example. The @p data parameter is going to
20577     * be passed to both class functions of the item.
20578     *
20579     * @see #Elm_Slideshow_Item_Class
20580     * @see elm_slideshow_item_add()
20581     *
20582     * @ingroup Slideshow
20583     */
20584    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);
20585
20586    /**
20587     * Display a given slideshow widget's item, programmatically.
20588     *
20589     * @param obj The slideshow object
20590     * @param item The item to display on @p obj's viewport
20591     *
20592     * The change between the current item and @p item will use the
20593     * transition @p obj is set to use (@see
20594     * elm_slideshow_transition_set()).
20595     *
20596     * @ingroup Slideshow
20597     */
20598    EAPI void                elm_slideshow_show(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20599
20600    /**
20601     * Slide to the @b next item, in a given slideshow widget
20602     *
20603     * @param obj The slideshow object
20604     *
20605     * The sliding animation @p obj is set to use will be the
20606     * transition effect used, after this call is issued.
20607     *
20608     * @note If the end of the slideshow's internal list of items is
20609     * reached, it'll wrap around to the list's beginning, again.
20610     *
20611     * @ingroup Slideshow
20612     */
20613    EAPI void                elm_slideshow_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
20614
20615    /**
20616     * Slide to the @b previous item, in a given slideshow widget
20617     *
20618     * @param obj The slideshow object
20619     *
20620     * The sliding animation @p obj is set to use will be the
20621     * transition effect used, after this call is issued.
20622     *
20623     * @note If the beginning of the slideshow's internal list of items
20624     * is reached, it'll wrap around to the list's end, again.
20625     *
20626     * @ingroup Slideshow
20627     */
20628    EAPI void                elm_slideshow_previous(Evas_Object *obj) EINA_ARG_NONNULL(1);
20629
20630    /**
20631     * Returns the list of sliding transition/effect names available, for a
20632     * given slideshow widget.
20633     *
20634     * @param obj The slideshow object
20635     * @return The list of transitions (list of @b stringshared strings
20636     * as data)
20637     *
20638     * The transitions, which come from @p obj's theme, must be an EDC
20639     * data item named @c "transitions" on the theme file, with (prefix)
20640     * names of EDC programs actually implementing them.
20641     *
20642     * The available transitions for slideshows on the default theme are:
20643     * - @c "fade" - the current item fades out, while the new one
20644     *   fades in to the slideshow's viewport.
20645     * - @c "black_fade" - the current item fades to black, and just
20646     *   then, the new item will fade in.
20647     * - @c "horizontal" - the current item slides horizontally, until
20648     *   it gets out of the slideshow's viewport, while the new item
20649     *   comes from the left to take its place.
20650     * - @c "vertical" - the current item slides vertically, until it
20651     *   gets out of the slideshow's viewport, while the new item comes
20652     *   from the bottom to take its place.
20653     * - @c "square" - the new item starts to appear from the middle of
20654     *   the current one, but with a tiny size, growing until its
20655     *   target (full) size and covering the old one.
20656     *
20657     * @warning The stringshared strings get no new references
20658     * exclusive to the user grabbing the list, here, so if you'd like
20659     * to use them out of this call's context, you'd better @c
20660     * eina_stringshare_ref() them.
20661     *
20662     * @see elm_slideshow_transition_set()
20663     *
20664     * @ingroup Slideshow
20665     */
20666    EAPI const Eina_List    *elm_slideshow_transitions_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20667
20668    /**
20669     * Set the current slide transition/effect in use for a given
20670     * slideshow widget
20671     *
20672     * @param obj The slideshow object
20673     * @param transition The new transition's name string
20674     *
20675     * If @p transition is implemented in @p obj's theme (i.e., is
20676     * contained in the list returned by
20677     * elm_slideshow_transitions_get()), this new sliding effect will
20678     * be used on the widget.
20679     *
20680     * @see elm_slideshow_transitions_get() for more details
20681     *
20682     * @ingroup Slideshow
20683     */
20684    EAPI void                elm_slideshow_transition_set(Evas_Object *obj, const char *transition) EINA_ARG_NONNULL(1);
20685
20686    /**
20687     * Get the current slide transition/effect in use for a given
20688     * slideshow widget
20689     *
20690     * @param obj The slideshow object
20691     * @return The current transition's name
20692     *
20693     * @see elm_slideshow_transition_set() for more details
20694     *
20695     * @ingroup Slideshow
20696     */
20697    EAPI const char         *elm_slideshow_transition_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20698
20699    /**
20700     * Set the interval between each image transition on a given
20701     * slideshow widget, <b>and start the slideshow, itself</b>
20702     *
20703     * @param obj The slideshow object
20704     * @param timeout The new displaying timeout for images
20705     *
20706     * After this call, the slideshow widget will start cycling its
20707     * view, sequentially and automatically, with the images of the
20708     * items it has. The time between each new image displayed is going
20709     * to be @p timeout, in @b seconds. If a different timeout was set
20710     * previously and an slideshow was in progress, it will continue
20711     * with the new time between transitions, after this call.
20712     *
20713     * @note A value less than or equal to 0 on @p timeout will disable
20714     * the widget's internal timer, thus halting any slideshow which
20715     * could be happening on @p obj.
20716     *
20717     * @see elm_slideshow_timeout_get()
20718     *
20719     * @ingroup Slideshow
20720     */
20721    EAPI void                elm_slideshow_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
20722
20723    /**
20724     * Get the interval set for image transitions on a given slideshow
20725     * widget.
20726     *
20727     * @param obj The slideshow object
20728     * @return Returns the timeout set on it
20729     *
20730     * @see elm_slideshow_timeout_set() for more details
20731     *
20732     * @ingroup Slideshow
20733     */
20734    EAPI double              elm_slideshow_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20735
20736    /**
20737     * Set if, after a slideshow is started, for a given slideshow
20738     * widget, its items should be displayed cyclically or not.
20739     *
20740     * @param obj The slideshow object
20741     * @param loop Use @c EINA_TRUE to make it cycle through items or
20742     * @c EINA_FALSE for it to stop at the end of @p obj's internal
20743     * list of items
20744     *
20745     * @note elm_slideshow_next() and elm_slideshow_previous() will @b
20746     * ignore what is set by this functions, i.e., they'll @b always
20747     * cycle through items. This affects only the "automatic"
20748     * slideshow, as set by elm_slideshow_timeout_set().
20749     *
20750     * @see elm_slideshow_loop_get()
20751     *
20752     * @ingroup Slideshow
20753     */
20754    EAPI void                elm_slideshow_loop_set(Evas_Object *obj, Eina_Bool loop) EINA_ARG_NONNULL(1);
20755
20756    /**
20757     * Get if, after a slideshow is started, for a given slideshow
20758     * widget, its items are to be displayed cyclically or not.
20759     *
20760     * @param obj The slideshow object
20761     * @return @c EINA_TRUE, if the items in @p obj will be cycled
20762     * through or @c EINA_FALSE, otherwise
20763     *
20764     * @see elm_slideshow_loop_set() for more details
20765     *
20766     * @ingroup Slideshow
20767     */
20768    EAPI Eina_Bool           elm_slideshow_loop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20769
20770    /**
20771     * Remove all items from a given slideshow widget
20772     *
20773     * @param obj The slideshow object
20774     *
20775     * This removes (and deletes) all items in @p obj, leaving it
20776     * empty.
20777     *
20778     * @see elm_slideshow_item_del(), to remove just one item.
20779     *
20780     * @ingroup Slideshow
20781     */
20782    EAPI void                elm_slideshow_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
20783
20784    /**
20785     * Get the internal list of items in a given slideshow widget.
20786     *
20787     * @param obj The slideshow object
20788     * @return The list of items (#Elm_Slideshow_Item as data) or
20789     * @c NULL on errors.
20790     *
20791     * This list is @b not to be modified in any way and must not be
20792     * freed. Use the list members with functions like
20793     * elm_slideshow_item_del(), elm_slideshow_item_data_get().
20794     *
20795     * @warning This list is only valid until @p obj object's internal
20796     * items list is changed. It should be fetched again with another
20797     * call to this function when changes happen.
20798     *
20799     * @ingroup Slideshow
20800     */
20801    EAPI const Eina_List    *elm_slideshow_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20802
20803    /**
20804     * Delete a given item from a slideshow widget.
20805     *
20806     * @param item The slideshow item
20807     *
20808     * @ingroup Slideshow
20809     */
20810    EAPI void                elm_slideshow_item_del(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20811
20812    /**
20813     * Return the data associated with a given slideshow item
20814     *
20815     * @param item The slideshow item
20816     * @return Returns the data associated to this item
20817     *
20818     * @ingroup Slideshow
20819     */
20820    EAPI void               *elm_slideshow_item_data_get(const Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
20821
20822    /**
20823     * Returns the currently displayed item, in a given slideshow widget
20824     *
20825     * @param obj The slideshow object
20826     * @return A handle to the item being displayed in @p obj or
20827     * @c NULL, if none is (and on errors)
20828     *
20829     * @ingroup Slideshow
20830     */
20831    EAPI Elm_Slideshow_Item *elm_slideshow_item_current_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20832
20833    /**
20834     * Get the real Evas object created to implement the view of a
20835     * given slideshow item
20836     *
20837     * @param item The slideshow item.
20838     * @return the Evas object implementing this item's view.
20839     *
20840     * This returns the actual Evas object used to implement the
20841     * specified slideshow item's view. This may be @c NULL, as it may
20842     * not have been created or may have been deleted, at any time, by
20843     * the slideshow. <b>Do not modify this object</b> (move, resize,
20844     * show, hide, etc.), as the slideshow is controlling it. This
20845     * function is for querying, emitting custom signals or hooking
20846     * lower level callbacks for events on that object. Do not delete
20847     * this object under any circumstances.
20848     *
20849     * @see elm_slideshow_item_data_get()
20850     *
20851     * @ingroup Slideshow
20852     */
20853    EAPI Evas_Object*        elm_slideshow_item_object_get(const Elm_Slideshow_Item* item) EINA_ARG_NONNULL(1);
20854
20855    /**
20856     * Get the the item, in a given slideshow widget, placed at
20857     * position @p nth, in its internal items list
20858     *
20859     * @param obj The slideshow object
20860     * @param nth The number of the item to grab a handle to (0 being
20861     * the first)
20862     * @return The item stored in @p obj at position @p nth or @c NULL,
20863     * if there's no item with that index (and on errors)
20864     *
20865     * @ingroup Slideshow
20866     */
20867    EAPI Elm_Slideshow_Item *elm_slideshow_item_nth_get(const Evas_Object *obj, unsigned int nth) EINA_ARG_NONNULL(1);
20868
20869    /**
20870     * Set the current slide layout in use for a given slideshow widget
20871     *
20872     * @param obj The slideshow object
20873     * @param layout The new layout's name string
20874     *
20875     * If @p layout is implemented in @p obj's theme (i.e., is contained
20876     * in the list returned by elm_slideshow_layouts_get()), this new
20877     * images layout will be used on the widget.
20878     *
20879     * @see elm_slideshow_layouts_get() for more details
20880     *
20881     * @ingroup Slideshow
20882     */
20883    EAPI void                elm_slideshow_layout_set(Evas_Object *obj, const char *layout) EINA_ARG_NONNULL(1);
20884
20885    /**
20886     * Get the current slide layout in use for a given slideshow widget
20887     *
20888     * @param obj The slideshow object
20889     * @return The current layout's name
20890     *
20891     * @see elm_slideshow_layout_set() for more details
20892     *
20893     * @ingroup Slideshow
20894     */
20895    EAPI const char         *elm_slideshow_layout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20896
20897    /**
20898     * Returns the list of @b layout names available, for a given
20899     * slideshow widget.
20900     *
20901     * @param obj The slideshow object
20902     * @return The list of layouts (list of @b stringshared strings
20903     * as data)
20904     *
20905     * Slideshow layouts will change how the widget is to dispose each
20906     * image item in its viewport, with regard to cropping, scaling,
20907     * etc.
20908     *
20909     * The layouts, which come from @p obj's theme, must be an EDC
20910     * data item name @c "layouts" on the theme file, with (prefix)
20911     * names of EDC programs actually implementing them.
20912     *
20913     * The available layouts for slideshows on the default theme are:
20914     * - @c "fullscreen" - item images with original aspect, scaled to
20915     *   touch top and down slideshow borders or, if the image's heigh
20916     *   is not enough, left and right slideshow borders.
20917     * - @c "not_fullscreen" - the same behavior as the @c "fullscreen"
20918     *   one, but always leaving 10% of the slideshow's dimensions of
20919     *   distance between the item image's borders and the slideshow
20920     *   borders, for each axis.
20921     *
20922     * @warning The stringshared strings get no new references
20923     * exclusive to the user grabbing the list, here, so if you'd like
20924     * to use them out of this call's context, you'd better @c
20925     * eina_stringshare_ref() them.
20926     *
20927     * @see elm_slideshow_layout_set()
20928     *
20929     * @ingroup Slideshow
20930     */
20931    EAPI const Eina_List    *elm_slideshow_layouts_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20932
20933    /**
20934     * Set the number of items to cache, on a given slideshow widget,
20935     * <b>before the current item</b>
20936     *
20937     * @param obj The slideshow object
20938     * @param count Number of items to cache before the current one
20939     *
20940     * The default value for this property is @c 2. See
20941     * @ref Slideshow_Caching "slideshow caching" for more details.
20942     *
20943     * @see elm_slideshow_cache_before_get()
20944     *
20945     * @ingroup Slideshow
20946     */
20947    EAPI void                elm_slideshow_cache_before_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
20948
20949    /**
20950     * Retrieve the number of items to cache, on a given slideshow widget,
20951     * <b>before the current item</b>
20952     *
20953     * @param obj The slideshow object
20954     * @return The number of items set to be cached before the current one
20955     *
20956     * @see elm_slideshow_cache_before_set() for more details
20957     *
20958     * @ingroup Slideshow
20959     */
20960    EAPI int                 elm_slideshow_cache_before_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20961
20962    /**
20963     * Set the number of items to cache, on a given slideshow widget,
20964     * <b>after the current item</b>
20965     *
20966     * @param obj The slideshow object
20967     * @param count Number of items to cache after the current one
20968     *
20969     * The default value for this property is @c 2. See
20970     * @ref Slideshow_Caching "slideshow caching" for more details.
20971     *
20972     * @see elm_slideshow_cache_after_get()
20973     *
20974     * @ingroup Slideshow
20975     */
20976    EAPI void                elm_slideshow_cache_after_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
20977
20978    /**
20979     * Retrieve the number of items to cache, on a given slideshow widget,
20980     * <b>after the current item</b>
20981     *
20982     * @param obj The slideshow object
20983     * @return The number of items set to be cached after the current one
20984     *
20985     * @see elm_slideshow_cache_after_set() for more details
20986     *
20987     * @ingroup Slideshow
20988     */
20989    EAPI int                 elm_slideshow_cache_after_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
20990
20991    /**
20992     * Get the number of items stored in a given slideshow widget
20993     *
20994     * @param obj The slideshow object
20995     * @return The number of items on @p obj, at the moment of this call
20996     *
20997     * @ingroup Slideshow
20998     */
20999    EAPI unsigned int        elm_slideshow_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21000
21001    /**
21002     * @}
21003     */
21004
21005    /**
21006     * @defgroup Fileselector File Selector
21007     *
21008     * @image html img/widget/fileselector/preview-00.png
21009     * @image latex img/widget/fileselector/preview-00.eps
21010     *
21011     * A file selector is a widget that allows a user to navigate
21012     * through a file system, reporting file selections back via its
21013     * API.
21014     *
21015     * It contains shortcut buttons for home directory (@c ~) and to
21016     * jump one directory upwards (..), as well as cancel/ok buttons to
21017     * confirm/cancel a given selection. After either one of those two
21018     * former actions, the file selector will issue its @c "done" smart
21019     * callback.
21020     *
21021     * There's a text entry on it, too, showing the name of the current
21022     * selection. There's the possibility of making it editable, so it
21023     * is useful on file saving dialogs on applications, where one
21024     * gives a file name to save contents to, in a given directory in
21025     * the system. This custom file name will be reported on the @c
21026     * "done" smart callback (explained in sequence).
21027     *
21028     * Finally, it has a view to display file system items into in two
21029     * possible forms:
21030     * - list
21031     * - grid
21032     *
21033     * If Elementary is built with support of the Ethumb thumbnailing
21034     * library, the second form of view will display preview thumbnails
21035     * of files which it supports.
21036     *
21037     * Smart callbacks one can register to:
21038     *
21039     * - @c "selected" - the user has clicked on a file (when not in
21040     *      folders-only mode) or directory (when in folders-only mode)
21041     * - @c "directory,open" - the list has been populated with new
21042     *      content (@c event_info is a pointer to the directory's
21043     *      path, a @b stringshared string)
21044     * - @c "done" - the user has clicked on the "ok" or "cancel"
21045     *      buttons (@c event_info is a pointer to the selection's
21046     *      path, a @b stringshared string)
21047     *
21048     * Here is an example on its usage:
21049     * @li @ref fileselector_example
21050     */
21051
21052    /**
21053     * @addtogroup Fileselector
21054     * @{
21055     */
21056
21057    /**
21058     * Defines how a file selector widget is to layout its contents
21059     * (file system entries).
21060     */
21061    typedef enum _Elm_Fileselector_Mode
21062      {
21063         ELM_FILESELECTOR_LIST = 0, /**< layout as a list */
21064         ELM_FILESELECTOR_GRID, /**< layout as a grid */
21065         ELM_FILESELECTOR_LAST /**< sentinel (helper) value, not used */
21066      } Elm_Fileselector_Mode;
21067
21068    /**
21069     * Add a new file selector widget to the given parent Elementary
21070     * (container) object
21071     *
21072     * @param parent The parent object
21073     * @return a new file selector widget handle or @c NULL, on errors
21074     *
21075     * This function inserts a new file selector widget on the canvas.
21076     *
21077     * @ingroup Fileselector
21078     */
21079    EAPI Evas_Object          *elm_fileselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21080
21081    /**
21082     * Enable/disable the file name entry box where the user can type
21083     * in a name for a file, in a given file selector widget
21084     *
21085     * @param obj The file selector object
21086     * @param is_save @c EINA_TRUE to make the file selector a "saving
21087     * dialog", @c EINA_FALSE otherwise
21088     *
21089     * Having the entry editable is useful on file saving dialogs on
21090     * applications, where one gives a file name to save contents to,
21091     * in a given directory in the system. This custom file name will
21092     * be reported on the @c "done" smart callback.
21093     *
21094     * @see elm_fileselector_is_save_get()
21095     *
21096     * @ingroup Fileselector
21097     */
21098    EAPI void                  elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save) EINA_ARG_NONNULL(1);
21099
21100    /**
21101     * Get whether the given file selector is in "saving dialog" mode
21102     *
21103     * @param obj The file selector object
21104     * @return @c EINA_TRUE, if the file selector is in "saving dialog"
21105     * mode, @c EINA_FALSE otherwise (and on errors)
21106     *
21107     * @see elm_fileselector_is_save_set() for more details
21108     *
21109     * @ingroup Fileselector
21110     */
21111    EAPI Eina_Bool             elm_fileselector_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21112
21113    /**
21114     * Enable/disable folder-only view for a given file selector widget
21115     *
21116     * @param obj The file selector object
21117     * @param only @c EINA_TRUE to make @p obj only display
21118     * directories, @c EINA_FALSE to make files to be displayed in it
21119     * too
21120     *
21121     * If enabled, the widget's view will only display folder items,
21122     * naturally.
21123     *
21124     * @see elm_fileselector_folder_only_get()
21125     *
21126     * @ingroup Fileselector
21127     */
21128    EAPI void                  elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only) EINA_ARG_NONNULL(1);
21129
21130    /**
21131     * Get whether folder-only view is set for a given file selector
21132     * widget
21133     *
21134     * @param obj The file selector object
21135     * @return only @c EINA_TRUE if @p obj is only displaying
21136     * directories, @c EINA_FALSE if files are being displayed in it
21137     * too (and on errors)
21138     *
21139     * @see elm_fileselector_folder_only_get()
21140     *
21141     * @ingroup Fileselector
21142     */
21143    EAPI Eina_Bool             elm_fileselector_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21144
21145    /**
21146     * Enable/disable the "ok" and "cancel" buttons on a given file
21147     * selector widget
21148     *
21149     * @param obj The file selector object
21150     * @param only @c EINA_TRUE to show them, @c EINA_FALSE to hide.
21151     *
21152     * @note A file selector without those buttons will never emit the
21153     * @c "done" smart event, and is only usable if one is just hooking
21154     * to the other two events.
21155     *
21156     * @see elm_fileselector_buttons_ok_cancel_get()
21157     *
21158     * @ingroup Fileselector
21159     */
21160    EAPI void                  elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons) EINA_ARG_NONNULL(1);
21161
21162    /**
21163     * Get whether the "ok" and "cancel" buttons on a given file
21164     * selector widget are being shown.
21165     *
21166     * @param obj The file selector object
21167     * @return @c EINA_TRUE if they are being shown, @c EINA_FALSE
21168     * otherwise (and on errors)
21169     *
21170     * @see elm_fileselector_buttons_ok_cancel_set() for more details
21171     *
21172     * @ingroup Fileselector
21173     */
21174    EAPI Eina_Bool             elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21175
21176    /**
21177     * Enable/disable a tree view in the given file selector widget,
21178     * <b>if it's in @c #ELM_FILESELECTOR_LIST mode</b>
21179     *
21180     * @param obj The file selector object
21181     * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
21182     * disable
21183     *
21184     * In a tree view, arrows are created on the sides of directories,
21185     * allowing them to expand in place.
21186     *
21187     * @note If it's in other mode, the changes made by this function
21188     * will only be visible when one switches back to "list" mode.
21189     *
21190     * @see elm_fileselector_expandable_get()
21191     *
21192     * @ingroup Fileselector
21193     */
21194    EAPI void                  elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand) EINA_ARG_NONNULL(1);
21195
21196    /**
21197     * Get whether tree view is enabled for the given file selector
21198     * widget
21199     *
21200     * @param obj The file selector object
21201     * @return @c EINA_TRUE if @p obj is in tree view, @c EINA_FALSE
21202     * otherwise (and or errors)
21203     *
21204     * @see elm_fileselector_expandable_set() for more details
21205     *
21206     * @ingroup Fileselector
21207     */
21208    EAPI Eina_Bool             elm_fileselector_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21209
21210    /**
21211     * Set, programmatically, the @b directory that a given file
21212     * selector widget will display contents from
21213     *
21214     * @param obj The file selector object
21215     * @param path The path to display in @p obj
21216     *
21217     * This will change the @b directory that @p obj is displaying. It
21218     * will also clear the text entry area on the @p obj object, which
21219     * displays select files' names.
21220     *
21221     * @see elm_fileselector_path_get()
21222     *
21223     * @ingroup Fileselector
21224     */
21225    EAPI void                  elm_fileselector_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
21226
21227    /**
21228     * Get the parent directory's path that a given file selector
21229     * widget is displaying
21230     *
21231     * @param obj The file selector object
21232     * @return The (full) path of the directory the file selector is
21233     * displaying, a @b stringshared string
21234     *
21235     * @see elm_fileselector_path_set()
21236     *
21237     * @ingroup Fileselector
21238     */
21239    EAPI const char           *elm_fileselector_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21240
21241    /**
21242     * Set, programmatically, the currently selected file/directory in
21243     * the given file selector widget
21244     *
21245     * @param obj The file selector object
21246     * @param path The (full) path to a file or directory
21247     * @return @c EINA_TRUE on success, @c EINA_FALSE on failure. The
21248     * latter case occurs if the directory or file pointed to do not
21249     * exist.
21250     *
21251     * @see elm_fileselector_selected_get()
21252     *
21253     * @ingroup Fileselector
21254     */
21255    EAPI Eina_Bool             elm_fileselector_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
21256
21257    /**
21258     * Get the currently selected item's (full) path, in the given file
21259     * selector widget
21260     *
21261     * @param obj The file selector object
21262     * @return The absolute path of the selected item, a @b
21263     * stringshared string
21264     *
21265     * @note Custom editions on @p obj object's text entry, if made,
21266     * will appear on the return string of this function, naturally.
21267     *
21268     * @see elm_fileselector_selected_set() for more details
21269     *
21270     * @ingroup Fileselector
21271     */
21272    EAPI const char           *elm_fileselector_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21273
21274    /**
21275     * Set the mode in which a given file selector widget will display
21276     * (layout) file system entries in its view
21277     *
21278     * @param obj The file selector object
21279     * @param mode The mode of the fileselector, being it one of
21280     * #ELM_FILESELECTOR_LIST (default) or #ELM_FILESELECTOR_GRID. The
21281     * first one, naturally, will display the files in a list. The
21282     * latter will make the widget to display its entries in a grid
21283     * form.
21284     *
21285     * @note By using elm_fileselector_expandable_set(), the user may
21286     * trigger a tree view for that list.
21287     *
21288     * @note If Elementary is built with support of the Ethumb
21289     * thumbnailing library, the second form of view will display
21290     * preview thumbnails of files which it supports. You must have
21291     * elm_need_ethumb() called in your Elementary for thumbnailing to
21292     * work, though.
21293     *
21294     * @see elm_fileselector_expandable_set().
21295     * @see elm_fileselector_mode_get().
21296     *
21297     * @ingroup Fileselector
21298     */
21299    EAPI void                  elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode) EINA_ARG_NONNULL(1);
21300
21301    /**
21302     * Get the mode in which a given file selector widget is displaying
21303     * (layouting) file system entries in its view
21304     *
21305     * @param obj The fileselector object
21306     * @return The mode in which the fileselector is at
21307     *
21308     * @see elm_fileselector_mode_set() for more details
21309     *
21310     * @ingroup Fileselector
21311     */
21312    EAPI Elm_Fileselector_Mode elm_fileselector_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21313
21314    /**
21315     * @}
21316     */
21317
21318    /**
21319     * @defgroup Progressbar Progress bar
21320     *
21321     * The progress bar is a widget for visually representing the
21322     * progress status of a given job/task.
21323     *
21324     * A progress bar may be horizontal or vertical. It may display an
21325     * icon besides it, as well as primary and @b units labels. The
21326     * former is meant to label the widget as a whole, while the
21327     * latter, which is formatted with floating point values (and thus
21328     * accepts a <c>printf</c>-style format string, like <c>"%1.2f
21329     * units"</c>), is meant to label the widget's <b>progress
21330     * value</b>. Label, icon and unit strings/objects are @b optional
21331     * for progress bars.
21332     *
21333     * A progress bar may be @b inverted, in which state it gets its
21334     * values inverted, with high values being on the left or top and
21335     * low values on the right or bottom, as opposed to normally have
21336     * the low values on the former and high values on the latter,
21337     * respectively, for horizontal and vertical modes.
21338     *
21339     * The @b span of the progress, as set by
21340     * elm_progressbar_span_size_set(), is its length (horizontally or
21341     * vertically), unless one puts size hints on the widget to expand
21342     * on desired directions, by any container. That length will be
21343     * scaled by the object or applications scaling factor. At any
21344     * point code can query the progress bar for its value with
21345     * elm_progressbar_value_get().
21346     *
21347     * Available widget styles for progress bars:
21348     * - @c "default"
21349     * - @c "wheel" (simple style, no text, no progression, only
21350     *      "pulse" effect is available)
21351     *
21352     * Default contents parts of the progressbar widget that you can use for are:
21353     * @li "icon" - An icon of the progressbar
21354     *
21355     * Here is an example on its usage:
21356     * @li @ref progressbar_example
21357     */
21358
21359    /**
21360     * Add a new progress bar widget to the given parent Elementary
21361     * (container) object
21362     *
21363     * @param parent The parent object
21364     * @return a new progress bar widget handle or @c NULL, on errors
21365     *
21366     * This function inserts a new progress bar widget on the canvas.
21367     *
21368     * @ingroup Progressbar
21369     */
21370    EAPI Evas_Object *elm_progressbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21371
21372    /**
21373     * Set whether a given progress bar widget is at "pulsing mode" or
21374     * not.
21375     *
21376     * @param obj The progress bar object
21377     * @param pulse @c EINA_TRUE to put @p obj in pulsing mode,
21378     * @c EINA_FALSE to put it back to its default one
21379     *
21380     * By default, progress bars will display values from the low to
21381     * high value boundaries. There are, though, contexts in which the
21382     * state of progression of a given task is @b unknown.  For those,
21383     * one can set a progress bar widget to a "pulsing state", to give
21384     * the user an idea that some computation is being held, but
21385     * without exact progress values. In the default theme it will
21386     * animate its bar with the contents filling in constantly and back
21387     * to non-filled, in a loop. To start and stop this pulsing
21388     * animation, one has to explicitly call elm_progressbar_pulse().
21389     *
21390     * @see elm_progressbar_pulse_get()
21391     * @see elm_progressbar_pulse()
21392     *
21393     * @ingroup Progressbar
21394     */
21395    EAPI void         elm_progressbar_pulse_set(Evas_Object *obj, Eina_Bool pulse) EINA_ARG_NONNULL(1);
21396
21397    /**
21398     * Get whether a given progress bar widget is at "pulsing mode" or
21399     * not.
21400     *
21401     * @param obj The progress bar object
21402     * @return @c EINA_TRUE, if @p obj is in pulsing mode, @c EINA_FALSE
21403     * if it's in the default one (and on errors)
21404     *
21405     * @ingroup Progressbar
21406     */
21407    EAPI Eina_Bool    elm_progressbar_pulse_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21408
21409    /**
21410     * Start/stop a given progress bar "pulsing" animation, if its
21411     * under that mode
21412     *
21413     * @param obj The progress bar object
21414     * @param state @c EINA_TRUE, to @b start the pulsing animation,
21415     * @c EINA_FALSE to @b stop it
21416     *
21417     * @note This call won't do anything if @p obj is not under "pulsing mode".
21418     *
21419     * @see elm_progressbar_pulse_set() for more details.
21420     *
21421     * @ingroup Progressbar
21422     */
21423    EAPI void         elm_progressbar_pulse(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
21424
21425    /**
21426     * Set the progress value (in percentage) on a given progress bar
21427     * widget
21428     *
21429     * @param obj The progress bar object
21430     * @param val The progress value (@b must be between @c 0.0 and @c
21431     * 1.0)
21432     *
21433     * Use this call to set progress bar levels.
21434     *
21435     * @note If you passes a value out of the specified range for @p
21436     * val, it will be interpreted as the @b closest of the @b boundary
21437     * values in the range.
21438     *
21439     * @ingroup Progressbar
21440     */
21441    EAPI void         elm_progressbar_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
21442
21443    /**
21444     * Get the progress value (in percentage) on a given progress bar
21445     * widget
21446     *
21447     * @param obj The progress bar object
21448     * @return The value of the progressbar
21449     *
21450     * @see elm_progressbar_value_set() for more details
21451     *
21452     * @ingroup Progressbar
21453     */
21454    EAPI double       elm_progressbar_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21455
21456    /**
21457     * Set the label of a given progress bar widget
21458     *
21459     * @param obj The progress bar object
21460     * @param label The text label string, in UTF-8
21461     *
21462     * @ingroup Progressbar
21463     * @deprecated use elm_object_text_set() instead.
21464     */
21465    EINA_DEPRECATED EAPI void         elm_progressbar_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
21466
21467    /**
21468     * Get the label of a given progress bar widget
21469     *
21470     * @param obj The progressbar object
21471     * @return The text label string, in UTF-8
21472     *
21473     * @ingroup Progressbar
21474     * @deprecated use elm_object_text_set() instead.
21475     */
21476    EINA_DEPRECATED EAPI const char  *elm_progressbar_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21477
21478    /**
21479     * Set the icon object of a given progress bar widget
21480     *
21481     * @param obj The progress bar object
21482     * @param icon The icon object
21483     *
21484     * Use this call to decorate @p obj with an icon next to it.
21485     *
21486     * @note Once the icon object is set, a previously set one will be
21487     * deleted. If you want to keep that old content object, use the
21488     * elm_progressbar_icon_unset() function.
21489     *
21490     * @see elm_progressbar_icon_get()
21491     * @deprecated use elm_object_part_content_set() instead.
21492     *
21493     * @ingroup Progressbar
21494     */
21495    EINA_DEPRECATED EAPI void         elm_progressbar_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
21496
21497    /**
21498     * Retrieve the icon object set for a given progress bar widget
21499     *
21500     * @param obj The progress bar object
21501     * @return The icon object's handle, if @p obj had one set, or @c NULL,
21502     * otherwise (and on errors)
21503     *
21504     * @see elm_progressbar_icon_set() for more details
21505     * @deprecated use elm_object_part_content_get() instead.
21506     *
21507     * @ingroup Progressbar
21508     */
21509    EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21510
21511    /**
21512     * Unset an icon set on a given progress bar widget
21513     *
21514     * @param obj The progress bar object
21515     * @return The icon object that was being used, if any was set, or
21516     * @c NULL, otherwise (and on errors)
21517     *
21518     * This call will unparent and return the icon object which was set
21519     * for this widget, previously, on success.
21520     *
21521     * @see elm_progressbar_icon_set() for more details
21522     * @deprecated use elm_object_part_content_unset() instead.
21523     *
21524     * @ingroup Progressbar
21525     */
21526    EINA_DEPRECATED EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
21527
21528    /**
21529     * Set the (exact) length of the bar region of a given progress bar
21530     * widget
21531     *
21532     * @param obj The progress bar object
21533     * @param size The length of the progress bar's bar region
21534     *
21535     * This sets the minimum width (when in horizontal mode) or height
21536     * (when in vertical mode) of the actual bar area of the progress
21537     * bar @p obj. This in turn affects the object's minimum size. Use
21538     * this when you're not setting other size hints expanding on the
21539     * given direction (like weight and alignment hints) and you would
21540     * like it to have a specific size.
21541     *
21542     * @note Icon, label and unit text around @p obj will require their
21543     * own space, which will make @p obj to require more the @p size,
21544     * actually.
21545     *
21546     * @see elm_progressbar_span_size_get()
21547     *
21548     * @ingroup Progressbar
21549     */
21550    EAPI void         elm_progressbar_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
21551
21552    /**
21553     * Get the length set for the bar region of a given progress bar
21554     * widget
21555     *
21556     * @param obj The progress bar object
21557     * @return The length of the progress bar's bar region
21558     *
21559     * If that size was not set previously, with
21560     * elm_progressbar_span_size_set(), this call will return @c 0.
21561     *
21562     * @ingroup Progressbar
21563     */
21564    EAPI Evas_Coord   elm_progressbar_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21565
21566    /**
21567     * Set the format string for a given progress bar widget's units
21568     * label
21569     *
21570     * @param obj The progress bar object
21571     * @param format The format string for @p obj's units label
21572     *
21573     * If @c NULL is passed on @p format, it will make @p obj's units
21574     * area to be hidden completely. If not, it'll set the <b>format
21575     * string</b> for the units label's @b text. The units label is
21576     * provided a floating point value, so the units text is up display
21577     * at most one floating point falue. Note that the units label is
21578     * optional. Use a format string such as "%1.2f meters" for
21579     * example.
21580     *
21581     * @note The default format string for a progress bar is an integer
21582     * percentage, as in @c "%.0f %%".
21583     *
21584     * @see elm_progressbar_unit_format_get()
21585     *
21586     * @ingroup Progressbar
21587     */
21588    EAPI void         elm_progressbar_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
21589
21590    /**
21591     * Retrieve the format string set for a given progress bar widget's
21592     * units label
21593     *
21594     * @param obj The progress bar object
21595     * @return The format set string for @p obj's units label or
21596     * @c NULL, if none was set (and on errors)
21597     *
21598     * @see elm_progressbar_unit_format_set() for more details
21599     *
21600     * @ingroup Progressbar
21601     */
21602    EAPI const char  *elm_progressbar_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21603
21604    /**
21605     * Set the orientation of a given progress bar widget
21606     *
21607     * @param obj The progress bar object
21608     * @param horizontal Use @c EINA_TRUE to make @p obj to be
21609     * @b horizontal, @c EINA_FALSE to make it @b vertical
21610     *
21611     * Use this function to change how your progress bar is to be
21612     * disposed: vertically or horizontally.
21613     *
21614     * @see elm_progressbar_horizontal_get()
21615     *
21616     * @ingroup Progressbar
21617     */
21618    EAPI void         elm_progressbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
21619
21620    /**
21621     * Retrieve the orientation of a given progress bar widget
21622     *
21623     * @param obj The progress bar object
21624     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
21625     * @c EINA_FALSE if it's @b vertical (and on errors)
21626     *
21627     * @see elm_progressbar_horizontal_set() for more details
21628     *
21629     * @ingroup Progressbar
21630     */
21631    EAPI Eina_Bool    elm_progressbar_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21632
21633    /**
21634     * Invert a given progress bar widget's displaying values order
21635     *
21636     * @param obj The progress bar object
21637     * @param inverted Use @c EINA_TRUE to make @p obj inverted,
21638     * @c EINA_FALSE to bring it back to default, non-inverted values.
21639     *
21640     * A progress bar may be @b inverted, in which state it gets its
21641     * values inverted, with high values being on the left or top and
21642     * low values on the right or bottom, as opposed to normally have
21643     * the low values on the former and high values on the latter,
21644     * respectively, for horizontal and vertical modes.
21645     *
21646     * @see elm_progressbar_inverted_get()
21647     *
21648     * @ingroup Progressbar
21649     */
21650    EAPI void         elm_progressbar_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
21651
21652    /**
21653     * Get whether a given progress bar widget's displaying values are
21654     * inverted or not
21655     *
21656     * @param obj The progress bar object
21657     * @return @c EINA_TRUE, if @p obj has inverted values,
21658     * @c EINA_FALSE otherwise (and on errors)
21659     *
21660     * @see elm_progressbar_inverted_set() for more details
21661     *
21662     * @ingroup Progressbar
21663     */
21664    EAPI Eina_Bool    elm_progressbar_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21665
21666    /**
21667     * @defgroup Separator Separator
21668     *
21669     * @brief Separator is a very thin object used to separate other objects.
21670     *
21671     * A separator can be vertical or horizontal.
21672     *
21673     * @ref tutorial_separator is a good example of how to use a separator.
21674     * @{
21675     */
21676    /**
21677     * @brief Add a separator object to @p parent
21678     *
21679     * @param parent The parent object
21680     *
21681     * @return The separator object, or NULL upon failure
21682     */
21683    EAPI Evas_Object *elm_separator_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21684    /**
21685     * @brief Set the horizontal mode of a separator object
21686     *
21687     * @param obj The separator object
21688     * @param horizontal If true, the separator is horizontal
21689     */
21690    EAPI void         elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
21691    /**
21692     * @brief Get the horizontal mode of a separator object
21693     *
21694     * @param obj The separator object
21695     * @return If true, the separator is horizontal
21696     *
21697     * @see elm_separator_horizontal_set()
21698     */
21699    EAPI Eina_Bool    elm_separator_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21700    /**
21701     * @}
21702     */
21703
21704    /**
21705     * @defgroup Spinner Spinner
21706     * @ingroup Elementary
21707     *
21708     * @image html img/widget/spinner/preview-00.png
21709     * @image latex img/widget/spinner/preview-00.eps
21710     *
21711     * A spinner is a widget which allows the user to increase or decrease
21712     * numeric values using arrow buttons, or edit values directly, clicking
21713     * over it and typing the new value.
21714     *
21715     * By default the spinner will not wrap and has a label
21716     * of "%.0f" (just showing the integer value of the double).
21717     *
21718     * A spinner has a label that is formatted with floating
21719     * point values and thus accepts a printf-style format string, like
21720     * ā€œ%1.2f unitsā€.
21721     *
21722     * It also allows specific values to be replaced by pre-defined labels.
21723     *
21724     * Smart callbacks one can register to:
21725     *
21726     * - "changed" - Whenever the spinner value is changed.
21727     * - "delay,changed" - A short time after the value is changed by the user.
21728     *    This will be called only when the user stops dragging for a very short
21729     *    period or when they release their finger/mouse, so it avoids possibly
21730     *    expensive reactions to the value change.
21731     *
21732     * Available styles for it:
21733     * - @c "default";
21734     * - @c "vertical": up/down buttons at the right side and text left aligned.
21735     *
21736     * Here is an example on its usage:
21737     * @ref spinner_example
21738     */
21739
21740    /**
21741     * @addtogroup Spinner
21742     * @{
21743     */
21744
21745    /**
21746     * Add a new spinner widget to the given parent Elementary
21747     * (container) object.
21748     *
21749     * @param parent The parent object.
21750     * @return a new spinner widget handle or @c NULL, on errors.
21751     *
21752     * This function inserts a new spinner widget on the canvas.
21753     *
21754     * @ingroup Spinner
21755     *
21756     */
21757    EAPI Evas_Object *elm_spinner_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
21758
21759    /**
21760     * Set the format string of the displayed label.
21761     *
21762     * @param obj The spinner object.
21763     * @param fmt The format string for the label display.
21764     *
21765     * If @c NULL, this sets the format to "%.0f". If not it sets the format
21766     * string for the label text. The label text is provided a floating point
21767     * value, so the label text can display up to 1 floating point value.
21768     * Note that this is optional.
21769     *
21770     * Use a format string such as "%1.2f meters" for example, and it will
21771     * display values like: "3.14 meters" for a value equal to 3.14159.
21772     *
21773     * Default is "%0.f".
21774     *
21775     * @see elm_spinner_label_format_get()
21776     *
21777     * @ingroup Spinner
21778     */
21779    EAPI void         elm_spinner_label_format_set(Evas_Object *obj, const char *fmt) EINA_ARG_NONNULL(1);
21780
21781    /**
21782     * Get the label format of the spinner.
21783     *
21784     * @param obj The spinner object.
21785     * @return The text label format string in UTF-8.
21786     *
21787     * @see elm_spinner_label_format_set() for details.
21788     *
21789     * @ingroup Spinner
21790     */
21791    EAPI const char  *elm_spinner_label_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21792
21793    /**
21794     * Set the minimum and maximum values for the spinner.
21795     *
21796     * @param obj The spinner object.
21797     * @param min The minimum value.
21798     * @param max The maximum value.
21799     *
21800     * Define the allowed range of values to be selected by the user.
21801     *
21802     * If actual value is less than @p min, it will be updated to @p min. If it
21803     * is bigger then @p max, will be updated to @p max. Actual value can be
21804     * get with elm_spinner_value_get().
21805     *
21806     * By default, min is equal to 0, and max is equal to 100.
21807     *
21808     * @warning Maximum must be greater than minimum.
21809     *
21810     * @see elm_spinner_min_max_get()
21811     *
21812     * @ingroup Spinner
21813     */
21814    EAPI void         elm_spinner_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
21815
21816    /**
21817     * Get the minimum and maximum values of the spinner.
21818     *
21819     * @param obj The spinner object.
21820     * @param min Pointer where to store the minimum value.
21821     * @param max Pointer where to store the maximum value.
21822     *
21823     * @note If only one value is needed, the other pointer can be passed
21824     * as @c NULL.
21825     *
21826     * @see elm_spinner_min_max_set() for details.
21827     *
21828     * @ingroup Spinner
21829     */
21830    EAPI void         elm_spinner_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
21831
21832    /**
21833     * Set the step used to increment or decrement the spinner value.
21834     *
21835     * @param obj The spinner object.
21836     * @param step The step value.
21837     *
21838     * This value will be incremented or decremented to the displayed value.
21839     * It will be incremented while the user keep right or top arrow pressed,
21840     * and will be decremented while the user keep left or bottom arrow pressed.
21841     *
21842     * The interval to increment / decrement can be set with
21843     * elm_spinner_interval_set().
21844     *
21845     * By default step value is equal to 1.
21846     *
21847     * @see elm_spinner_step_get()
21848     *
21849     * @ingroup Spinner
21850     */
21851    EAPI void         elm_spinner_step_set(Evas_Object *obj, double step) EINA_ARG_NONNULL(1);
21852
21853    /**
21854     * Get the step used to increment or decrement the spinner value.
21855     *
21856     * @param obj The spinner object.
21857     * @return The step value.
21858     *
21859     * @see elm_spinner_step_get() for more details.
21860     *
21861     * @ingroup Spinner
21862     */
21863    EAPI double       elm_spinner_step_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21864
21865    /**
21866     * Set the value the spinner displays.
21867     *
21868     * @param obj The spinner object.
21869     * @param val The value to be displayed.
21870     *
21871     * Value will be presented on the label following format specified with
21872     * elm_spinner_format_set().
21873     *
21874     * @warning The value must to be between min and max values. This values
21875     * are set by elm_spinner_min_max_set().
21876     *
21877     * @see elm_spinner_value_get().
21878     * @see elm_spinner_format_set().
21879     * @see elm_spinner_min_max_set().
21880     *
21881     * @ingroup Spinner
21882     */
21883    EAPI void         elm_spinner_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
21884
21885    /**
21886     * Get the value displayed by the spinner.
21887     *
21888     * @param obj The spinner object.
21889     * @return The value displayed.
21890     *
21891     * @see elm_spinner_value_set() for details.
21892     *
21893     * @ingroup Spinner
21894     */
21895    EAPI double       elm_spinner_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21896
21897    /**
21898     * Set whether the spinner should wrap when it reaches its
21899     * minimum or maximum value.
21900     *
21901     * @param obj The spinner object.
21902     * @param wrap @c EINA_TRUE to enable wrap or @c EINA_FALSE to
21903     * disable it.
21904     *
21905     * Disabled by default. If disabled, when the user tries to increment the
21906     * value,
21907     * but displayed value plus step value is bigger than maximum value,
21908     * the spinner
21909     * won't allow it. The same happens when the user tries to decrement it,
21910     * but the value less step is less than minimum value.
21911     *
21912     * When wrap is enabled, in such situations it will allow these changes,
21913     * but will get the value that would be less than minimum and subtracts
21914     * from maximum. Or add the value that would be more than maximum to
21915     * the minimum.
21916     *
21917     * E.g.:
21918     * @li min value = 10
21919     * @li max value = 50
21920     * @li step value = 20
21921     * @li displayed value = 20
21922     *
21923     * When the user decrement value (using left or bottom arrow), it will
21924     * displays @c 40, because max - (min - (displayed - step)) is
21925     * @c 50 - (@c 10 - (@c 20 - @c 20)) = @c 40.
21926     *
21927     * @see elm_spinner_wrap_get().
21928     *
21929     * @ingroup Spinner
21930     */
21931    EAPI void         elm_spinner_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
21932
21933    /**
21934     * Get whether the spinner should wrap when it reaches its
21935     * minimum or maximum value.
21936     *
21937     * @param obj The spinner object
21938     * @return @c EINA_TRUE means wrap is enabled. @c EINA_FALSE indicates
21939     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
21940     *
21941     * @see elm_spinner_wrap_set() for details.
21942     *
21943     * @ingroup Spinner
21944     */
21945    EAPI Eina_Bool    elm_spinner_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21946
21947    /**
21948     * Set whether the spinner can be directly edited by the user or not.
21949     *
21950     * @param obj The spinner object.
21951     * @param editable @c EINA_TRUE to allow users to edit it or @c EINA_FALSE to
21952     * don't allow users to edit it directly.
21953     *
21954     * Spinner objects can have edition @b disabled, in which state they will
21955     * be changed only by arrows.
21956     * Useful for contexts
21957     * where you don't want your users to interact with it writting the value.
21958     * Specially
21959     * when using special values, the user can see real value instead
21960     * of special label on edition.
21961     *
21962     * It's enabled by default.
21963     *
21964     * @see elm_spinner_editable_get()
21965     *
21966     * @ingroup Spinner
21967     */
21968    EAPI void         elm_spinner_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
21969
21970    /**
21971     * Get whether the spinner can be directly edited by the user or not.
21972     *
21973     * @param obj The spinner object.
21974     * @return @c EINA_TRUE means edition is enabled. @c EINA_FALSE indicates
21975     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
21976     *
21977     * @see elm_spinner_editable_set() for details.
21978     *
21979     * @ingroup Spinner
21980     */
21981    EAPI Eina_Bool    elm_spinner_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
21982
21983    /**
21984     * Set a special string to display in the place of the numerical value.
21985     *
21986     * @param obj The spinner object.
21987     * @param value The value to be replaced.
21988     * @param label The label to be used.
21989     *
21990     * It's useful for cases when a user should select an item that is
21991     * better indicated by a label than a value. For example, weekdays or months.
21992     *
21993     * E.g.:
21994     * @code
21995     * sp = elm_spinner_add(win);
21996     * elm_spinner_min_max_set(sp, 1, 3);
21997     * elm_spinner_special_value_add(sp, 1, "January");
21998     * elm_spinner_special_value_add(sp, 2, "February");
21999     * elm_spinner_special_value_add(sp, 3, "March");
22000     * evas_object_show(sp);
22001     * @endcode
22002     *
22003     * @ingroup Spinner
22004     */
22005    EAPI void         elm_spinner_special_value_add(Evas_Object *obj, double value, const char *label) EINA_ARG_NONNULL(1);
22006
22007    /**
22008     * Set the interval on time updates for an user mouse button hold
22009     * on spinner widgets' arrows.
22010     *
22011     * @param obj The spinner object.
22012     * @param interval The (first) interval value in seconds.
22013     *
22014     * This interval value is @b decreased while the user holds the
22015     * mouse pointer either incrementing or decrementing spinner's value.
22016     *
22017     * This helps the user to get to a given value distant from the
22018     * current one easier/faster, as it will start to change quicker and
22019     * quicker on mouse button holds.
22020     *
22021     * The calculation for the next change interval value, starting from
22022     * the one set with this call, is the previous interval divided by
22023     * @c 1.05, so it decreases a little bit.
22024     *
22025     * The default starting interval value for automatic changes is
22026     * @c 0.85 seconds.
22027     *
22028     * @see elm_spinner_interval_get()
22029     *
22030     * @ingroup Spinner
22031     */
22032    EAPI void         elm_spinner_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
22033
22034    /**
22035     * Get the interval on time updates for an user mouse button hold
22036     * on spinner widgets' arrows.
22037     *
22038     * @param obj The spinner object.
22039     * @return The (first) interval value, in seconds, set on it.
22040     *
22041     * @see elm_spinner_interval_set() for more details.
22042     *
22043     * @ingroup Spinner
22044     */
22045    EAPI double       elm_spinner_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22046
22047    /**
22048     * @}
22049     */
22050
22051    /**
22052     * @defgroup Index Index
22053     *
22054     * @image html img/widget/index/preview-00.png
22055     * @image latex img/widget/index/preview-00.eps
22056     *
22057     * An index widget gives you an index for fast access to whichever
22058     * group of other UI items one might have. It's a list of text
22059     * items (usually letters, for alphabetically ordered access).
22060     *
22061     * Index widgets are by default hidden and just appear when the
22062     * user clicks over it's reserved area in the canvas. In its
22063     * default theme, it's an area one @ref Fingers "finger" wide on
22064     * the right side of the index widget's container.
22065     *
22066     * When items on the index are selected, smart callbacks get
22067     * called, so that its user can make other container objects to
22068     * show a given area or child object depending on the index item
22069     * selected. You'd probably be using an index together with @ref
22070     * List "lists", @ref Genlist "generic lists" or @ref Gengrid
22071     * "general grids".
22072     *
22073     * Smart events one  can add callbacks for are:
22074     * - @c "changed" - When the selected index item changes. @c
22075     *      event_info is the selected item's data pointer.
22076     * - @c "delay,changed" - When the selected index item changes, but
22077     *      after a small idling period. @c event_info is the selected
22078     *      item's data pointer.
22079     * - @c "selected" - When the user releases a mouse button and
22080     *      selects an item. @c event_info is the selected item's data
22081     *      pointer.
22082     * - @c "level,up" - when the user moves a finger from the first
22083     *      level to the second level
22084     * - @c "level,down" - when the user moves a finger from the second
22085     *      level to the first level
22086     *
22087     * The @c "delay,changed" event is so that it'll wait a small time
22088     * before actually reporting those events and, moreover, just the
22089     * last event happening on those time frames will actually be
22090     * reported.
22091     *
22092     * Here are some examples on its usage:
22093     * @li @ref index_example_01
22094     * @li @ref index_example_02
22095     */
22096
22097    /**
22098     * @addtogroup Index
22099     * @{
22100     */
22101
22102    typedef struct _Elm_Index_Item Elm_Index_Item; /**< Opaque handle for items of Elementary index widgets */
22103
22104    /**
22105     * Add a new index widget to the given parent Elementary
22106     * (container) object
22107     *
22108     * @param parent The parent object
22109     * @return a new index widget handle or @c NULL, on errors
22110     *
22111     * This function inserts a new index widget on the canvas.
22112     *
22113     * @ingroup Index
22114     */
22115    EAPI Evas_Object    *elm_index_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22116
22117    /**
22118     * Set whether a given index widget is or not visible,
22119     * programatically.
22120     *
22121     * @param obj The index object
22122     * @param active @c EINA_TRUE to show it, @c EINA_FALSE to hide it
22123     *
22124     * Not to be confused with visible as in @c evas_object_show() --
22125     * visible with regard to the widget's auto hiding feature.
22126     *
22127     * @see elm_index_active_get()
22128     *
22129     * @ingroup Index
22130     */
22131    EAPI void            elm_index_active_set(Evas_Object *obj, Eina_Bool active) EINA_ARG_NONNULL(1);
22132
22133    /**
22134     * Get whether a given index widget is currently visible or not.
22135     *
22136     * @param obj The index object
22137     * @return @c EINA_TRUE, if it's shown, @c EINA_FALSE otherwise
22138     *
22139     * @see elm_index_active_set() for more details
22140     *
22141     * @ingroup Index
22142     */
22143    EAPI Eina_Bool       elm_index_active_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22144
22145    /**
22146     * Set the items level for a given index widget.
22147     *
22148     * @param obj The index object.
22149     * @param level @c 0 or @c 1, the currently implemented levels.
22150     *
22151     * @see elm_index_item_level_get()
22152     *
22153     * @ingroup Index
22154     */
22155    EAPI void            elm_index_item_level_set(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
22156
22157    /**
22158     * Get the items level set for a given index widget.
22159     *
22160     * @param obj The index object.
22161     * @return @c 0 or @c 1, which are the levels @p obj might be at.
22162     *
22163     * @see elm_index_item_level_set() for more information
22164     *
22165     * @ingroup Index
22166     */
22167    EAPI int             elm_index_item_level_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22168
22169    /**
22170     * Returns the last selected item's data, for a given index widget.
22171     *
22172     * @param obj The index object.
22173     * @return The item @b data associated to the last selected item on
22174     * @p obj (or @c NULL, on errors).
22175     *
22176     * @warning The returned value is @b not an #Elm_Index_Item item
22177     * handle, but the data associated to it (see the @c item parameter
22178     * in elm_index_item_append(), as an example).
22179     *
22180     * @ingroup Index
22181     */
22182    EAPI void           *elm_index_item_selected_get(const Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
22183
22184    /**
22185     * Append a new item on a given index widget.
22186     *
22187     * @param obj The index object.
22188     * @param letter Letter under which the item should be indexed
22189     * @param item The item data to set for the index's item
22190     *
22191     * Despite the most common usage of the @p letter argument is for
22192     * single char strings, one could use arbitrary strings as index
22193     * entries.
22194     *
22195     * @c item will be the pointer returned back on @c "changed", @c
22196     * "delay,changed" and @c "selected" smart events.
22197     *
22198     * @ingroup Index
22199     */
22200    EAPI void            elm_index_item_append(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
22201
22202    /**
22203     * Prepend a new item on a given index widget.
22204     *
22205     * @param obj The index object.
22206     * @param letter Letter under which the item should be indexed
22207     * @param item The item data to set for the index's item
22208     *
22209     * Despite the most common usage of the @p letter argument is for
22210     * single char strings, one could use arbitrary strings as index
22211     * entries.
22212     *
22213     * @c item will be the pointer returned back on @c "changed", @c
22214     * "delay,changed" and @c "selected" smart events.
22215     *
22216     * @ingroup Index
22217     */
22218    EAPI void            elm_index_item_prepend(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
22219
22220    /**
22221     * Append a new item, on a given index widget, <b>after the item
22222     * having @p relative as data</b>.
22223     *
22224     * @param obj The index object.
22225     * @param letter Letter under which the item should be indexed
22226     * @param item The item data to set for the index's item
22227     * @param relative The item data of the index item to be the
22228     * predecessor of this new one
22229     *
22230     * Despite the most common usage of the @p letter argument is for
22231     * single char strings, one could use arbitrary strings as index
22232     * entries.
22233     *
22234     * @c item will be the pointer returned back on @c "changed", @c
22235     * "delay,changed" and @c "selected" smart events.
22236     *
22237     * @note If @p relative is @c NULL or if it's not found to be data
22238     * set on any previous item on @p obj, this function will behave as
22239     * elm_index_item_append().
22240     *
22241     * @ingroup Index
22242     */
22243    EAPI void            elm_index_item_append_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
22244
22245    /**
22246     * Prepend a new item, on a given index widget, <b>after the item
22247     * having @p relative as data</b>.
22248     *
22249     * @param obj The index object.
22250     * @param letter Letter under which the item should be indexed
22251     * @param item The item data to set for the index's item
22252     * @param relative The item data of the index item to be the
22253     * successor of this new one
22254     *
22255     * Despite the most common usage of the @p letter argument is for
22256     * single char strings, one could use arbitrary strings as index
22257     * entries.
22258     *
22259     * @c item will be the pointer returned back on @c "changed", @c
22260     * "delay,changed" and @c "selected" smart events.
22261     *
22262     * @note If @p relative is @c NULL or if it's not found to be data
22263     * set on any previous item on @p obj, this function will behave as
22264     * elm_index_item_prepend().
22265     *
22266     * @ingroup Index
22267     */
22268    EAPI void            elm_index_item_prepend_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
22269
22270    /**
22271     * Insert a new item into the given index widget, using @p cmp_func
22272     * function to sort items (by item handles).
22273     *
22274     * @param obj The index object.
22275     * @param letter Letter under which the item should be indexed
22276     * @param item The item data to set for the index's item
22277     * @param cmp_func The comparing function to be used to sort index
22278     * items <b>by #Elm_Index_Item item handles</b>
22279     * @param cmp_data_func A @b fallback function to be called for the
22280     * sorting of index items <b>by item data</b>). It will be used
22281     * when @p cmp_func returns @c 0 (equality), which means an index
22282     * item with provided item data already exists. To decide which
22283     * data item should be pointed to by the index item in question, @p
22284     * cmp_data_func will be used. If @p cmp_data_func returns a
22285     * non-negative value, the previous index item data will be
22286     * replaced by the given @p item pointer. If the previous data need
22287     * to be freed, it should be done by the @p cmp_data_func function,
22288     * because all references to it will be lost. If this function is
22289     * not provided (@c NULL is given), index items will be @b
22290     * duplicated, if @p cmp_func returns @c 0.
22291     *
22292     * Despite the most common usage of the @p letter argument is for
22293     * single char strings, one could use arbitrary strings as index
22294     * entries.
22295     *
22296     * @c item will be the pointer returned back on @c "changed", @c
22297     * "delay,changed" and @c "selected" smart events.
22298     *
22299     * @ingroup Index
22300     */
22301    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);
22302
22303    /**
22304     * Remove an item from a given index widget, <b>to be referenced by
22305     * it's data value</b>.
22306     *
22307     * @param obj The index object
22308     * @param item The item's data pointer for the item to be removed
22309     * from @p obj
22310     *
22311     * If a deletion callback is set, via elm_index_item_del_cb_set(),
22312     * that callback function will be called by this one.
22313     *
22314     * @warning The item to be removed from @p obj will be found via
22315     * its item data pointer, and not by an #Elm_Index_Item handle.
22316     *
22317     * @ingroup Index
22318     */
22319    EAPI void            elm_index_item_del(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
22320
22321    /**
22322     * Find a given index widget's item, <b>using item data</b>.
22323     *
22324     * @param obj The index object
22325     * @param item The item data pointed to by the desired index item
22326     * @return The index item handle, if found, or @c NULL otherwise
22327     *
22328     * @ingroup Index
22329     */
22330    EAPI Elm_Index_Item *elm_index_item_find(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
22331
22332    /**
22333     * Removes @b all items from a given index widget.
22334     *
22335     * @param obj The index object.
22336     *
22337     * If deletion callbacks are set, via elm_index_item_del_cb_set(),
22338     * that callback function will be called for each item in @p obj.
22339     *
22340     * @ingroup Index
22341     */
22342    EAPI void            elm_index_item_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
22343
22344    /**
22345     * Go to a given items level on a index widget
22346     *
22347     * @param obj The index object
22348     * @param level The index level (one of @c 0 or @c 1)
22349     *
22350     * @ingroup Index
22351     */
22352    EAPI void            elm_index_item_go(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
22353
22354    /**
22355     * Return the data associated with a given index widget item
22356     *
22357     * @param it The index widget item handle
22358     * @return The data associated with @p it
22359     *
22360     * @see elm_index_item_data_set()
22361     *
22362     * @ingroup Index
22363     */
22364    EAPI void           *elm_index_item_data_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
22365
22366    /**
22367     * Set the data associated with a given index widget item
22368     *
22369     * @param it The index widget item handle
22370     * @param data The new data pointer to set to @p it
22371     *
22372     * This sets new item data on @p it.
22373     *
22374     * @warning The old data pointer won't be touched by this function, so
22375     * the user had better to free that old data himself/herself.
22376     *
22377     * @ingroup Index
22378     */
22379    EAPI void            elm_index_item_data_set(Elm_Index_Item *it, const void *data) EINA_ARG_NONNULL(1);
22380
22381    /**
22382     * Set the function to be called when a given index widget item is freed.
22383     *
22384     * @param it The item to set the callback on
22385     * @param func The function to call on the item's deletion
22386     *
22387     * When called, @p func will have both @c data and @c event_info
22388     * arguments with the @p it item's data value and, naturally, the
22389     * @c obj argument with a handle to the parent index widget.
22390     *
22391     * @ingroup Index
22392     */
22393    EAPI void            elm_index_item_del_cb_set(Elm_Index_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
22394
22395    /**
22396     * Get the letter (string) set on a given index widget item.
22397     *
22398     * @param it The index item handle
22399     * @return The letter string set on @p it
22400     *
22401     * @ingroup Index
22402     */
22403    EAPI const char     *elm_index_item_letter_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
22404
22405    /**
22406     * @}
22407     */
22408
22409    /**
22410     * @defgroup Photocam Photocam
22411     *
22412     * @image html img/widget/photocam/preview-00.png
22413     * @image latex img/widget/photocam/preview-00.eps
22414     *
22415     * This is a widget specifically for displaying high-resolution digital
22416     * camera photos giving speedy feedback (fast load), low memory footprint
22417     * and zooming and panning as well as fitting logic. It is entirely focused
22418     * on jpeg images, and takes advantage of properties of the jpeg format (via
22419     * evas loader features in the jpeg loader).
22420     *
22421     * Signals that you can add callbacks for are:
22422     * @li "clicked" - This is called when a user has clicked the photo without
22423     *                 dragging around.
22424     * @li "press" - This is called when a user has pressed down on the photo.
22425     * @li "longpressed" - This is called when a user has pressed down on the
22426     *                     photo for a long time without dragging around.
22427     * @li "clicked,double" - This is called when a user has double-clicked the
22428     *                        photo.
22429     * @li "load" - Photo load begins.
22430     * @li "loaded" - This is called when the image file load is complete for the
22431     *                first view (low resolution blurry version).
22432     * @li "load,detail" - Photo detailed data load begins.
22433     * @li "loaded,detail" - This is called when the image file load is complete
22434     *                      for the detailed image data (full resolution needed).
22435     * @li "zoom,start" - Zoom animation started.
22436     * @li "zoom,stop" - Zoom animation stopped.
22437     * @li "zoom,change" - Zoom changed when using an auto zoom mode.
22438     * @li "scroll" - the content has been scrolled (moved)
22439     * @li "scroll,anim,start" - scrolling animation has started
22440     * @li "scroll,anim,stop" - scrolling animation has stopped
22441     * @li "scroll,drag,start" - dragging the contents around has started
22442     * @li "scroll,drag,stop" - dragging the contents around has stopped
22443     *
22444     * @ref tutorial_photocam shows the API in action.
22445     * @{
22446     */
22447    /**
22448     * @brief Types of zoom available.
22449     */
22450    typedef enum _Elm_Photocam_Zoom_Mode
22451      {
22452         ELM_PHOTOCAM_ZOOM_MODE_MANUAL = 0, /**< Zoom controlled normally by elm_photocam_zoom_set */
22453         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT, /**< Zoom until photo fits in photocam */
22454         ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL, /**< Zoom until photo fills photocam */
22455         ELM_PHOTOCAM_ZOOM_MODE_LAST
22456      } Elm_Photocam_Zoom_Mode;
22457    /**
22458     * @brief Add a new Photocam object
22459     *
22460     * @param parent The parent object
22461     * @return The new object or NULL if it cannot be created
22462     */
22463    EAPI Evas_Object           *elm_photocam_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22464    /**
22465     * @brief Set the photo file to be shown
22466     *
22467     * @param obj The photocam object
22468     * @param file The photo file
22469     * @return The return error (see EVAS_LOAD_ERROR_NONE, EVAS_LOAD_ERROR_GENERIC etc.)
22470     *
22471     * This sets (and shows) the specified file (with a relative or absolute
22472     * path) and will return a load error (same error that
22473     * evas_object_image_load_error_get() will return). The image will change and
22474     * adjust its size at this point and begin a background load process for this
22475     * photo that at some time in the future will be displayed at the full
22476     * quality needed.
22477     */
22478    EAPI Evas_Load_Error        elm_photocam_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
22479    /**
22480     * @brief Returns the path of the current image file
22481     *
22482     * @param obj The photocam object
22483     * @return Returns the path
22484     *
22485     * @see elm_photocam_file_set()
22486     */
22487    EAPI const char            *elm_photocam_file_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22488    /**
22489     * @brief Set the zoom level of the photo
22490     *
22491     * @param obj The photocam object
22492     * @param zoom The zoom level to set
22493     *
22494     * This sets the zoom level. 1 will be 1:1 pixel for pixel. 2 will be 2:1
22495     * (that is 2x2 photo pixels will display as 1 on-screen pixel). 4:1 will be
22496     * 4x4 photo pixels as 1 screen pixel, and so on. The @p zoom parameter must
22497     * be greater than 0. It is usggested to stick to powers of 2. (1, 2, 4, 8,
22498     * 16, 32, etc.).
22499     */
22500    EAPI void                   elm_photocam_zoom_set(Evas_Object *obj, double zoom) EINA_ARG_NONNULL(1);
22501    /**
22502     * @brief Get the zoom level of the photo
22503     *
22504     * @param obj The photocam object
22505     * @return The current zoom level
22506     *
22507     * This returns the current zoom level of the photocam object. Note that if
22508     * you set the fill mode to other than ELM_PHOTOCAM_ZOOM_MODE_MANUAL
22509     * (which is the default), the zoom level may be changed at any time by the
22510     * photocam object itself to account for photo size and photocam viewpoer
22511     * size.
22512     *
22513     * @see elm_photocam_zoom_set()
22514     * @see elm_photocam_zoom_mode_set()
22515     */
22516    EAPI double                 elm_photocam_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22517    /**
22518     * @brief Set the zoom mode
22519     *
22520     * @param obj The photocam object
22521     * @param mode The desired mode
22522     *
22523     * This sets the zoom mode to manual or one of several automatic levels.
22524     * Manual (ELM_PHOTOCAM_ZOOM_MODE_MANUAL) means that zoom is set manually by
22525     * elm_photocam_zoom_set() and will stay at that level until changed by code
22526     * or until zoom mode is changed. This is the default mode. The Automatic
22527     * modes will allow the photocam object to automatically adjust zoom mode
22528     * based on properties. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT) will adjust zoom so
22529     * the photo fits EXACTLY inside the scroll frame with no pixels outside this
22530     * area. ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL will be similar but ensure no
22531     * pixels within the frame are left unfilled.
22532     */
22533    EAPI void                   elm_photocam_zoom_mode_set(Evas_Object *obj, Elm_Photocam_Zoom_Mode mode) EINA_ARG_NONNULL(1);
22534    /**
22535     * @brief Get the zoom mode
22536     *
22537     * @param obj The photocam object
22538     * @return The current zoom mode
22539     *
22540     * This gets the current zoom mode of the photocam object.
22541     *
22542     * @see elm_photocam_zoom_mode_set()
22543     */
22544    EAPI Elm_Photocam_Zoom_Mode elm_photocam_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22545    /**
22546     * @brief Get the current image pixel width and height
22547     *
22548     * @param obj The photocam object
22549     * @param w A pointer to the width return
22550     * @param h A pointer to the height return
22551     *
22552     * This gets the current photo pixel width and height (for the original).
22553     * The size will be returned in the integers @p w and @p h that are pointed
22554     * to.
22555     */
22556    EAPI void                   elm_photocam_image_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
22557    /**
22558     * @brief Get the area of the image that is currently shown
22559     *
22560     * @param obj
22561     * @param x A pointer to the X-coordinate of region
22562     * @param y A pointer to the Y-coordinate of region
22563     * @param w A pointer to the width
22564     * @param h A pointer to the height
22565     *
22566     * @see elm_photocam_image_region_show()
22567     * @see elm_photocam_image_region_bring_in()
22568     */
22569    EAPI void                   elm_photocam_region_get(const Evas_Object *obj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
22570    /**
22571     * @brief Set the viewed portion of the image
22572     *
22573     * @param obj The photocam object
22574     * @param x X-coordinate of region in image original pixels
22575     * @param y Y-coordinate of region in image original pixels
22576     * @param w Width of region in image original pixels
22577     * @param h Height of region in image original pixels
22578     *
22579     * This shows the region of the image without using animation.
22580     */
22581    EAPI void                   elm_photocam_image_region_show(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
22582    /**
22583     * @brief Bring in the viewed portion of the image
22584     *
22585     * @param obj The photocam object
22586     * @param x X-coordinate of region in image original pixels
22587     * @param y Y-coordinate of region in image original pixels
22588     * @param w Width of region in image original pixels
22589     * @param h Height of region in image original pixels
22590     *
22591     * This shows the region of the image using animation.
22592     */
22593    EAPI void                   elm_photocam_image_region_bring_in(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
22594    /**
22595     * @brief Set the paused state for photocam
22596     *
22597     * @param obj The photocam object
22598     * @param paused The pause state to set
22599     *
22600     * This sets the paused state to on(EINA_TRUE) or off (EINA_FALSE) for
22601     * photocam. The default is off. This will stop zooming using animation on
22602     * zoom levels changes and change instantly. This will stop any existing
22603     * animations that are running.
22604     */
22605    EAPI void                   elm_photocam_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
22606    /**
22607     * @brief Get the paused state for photocam
22608     *
22609     * @param obj The photocam object
22610     * @return The current paused state
22611     *
22612     * This gets the current paused state for the photocam object.
22613     *
22614     * @see elm_photocam_paused_set()
22615     */
22616    EAPI Eina_Bool              elm_photocam_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22617    /**
22618     * @brief Get the internal low-res image used for photocam
22619     *
22620     * @param obj The photocam object
22621     * @return The internal image object handle, or NULL if none exists
22622     *
22623     * This gets the internal image object inside photocam. Do not modify it. It
22624     * is for inspection only, and hooking callbacks to. Nothing else. It may be
22625     * deleted at any time as well.
22626     */
22627    EAPI Evas_Object           *elm_photocam_internal_image_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22628    /**
22629     * @brief Set the photocam scrolling bouncing.
22630     *
22631     * @param obj The photocam object
22632     * @param h_bounce bouncing for horizontal
22633     * @param v_bounce bouncing for vertical
22634     */
22635    EAPI void                   elm_photocam_bounce_set(Evas_Object *obj,  Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
22636    /**
22637     * @brief Get the photocam scrolling bouncing.
22638     *
22639     * @param obj The photocam object
22640     * @param h_bounce bouncing for horizontal
22641     * @param v_bounce bouncing for vertical
22642     *
22643     * @see elm_photocam_bounce_set()
22644     */
22645    EAPI void                   elm_photocam_bounce_get(const Evas_Object *obj,  Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
22646    /**
22647     * @}
22648     */
22649
22650    /**
22651     * @defgroup Map Map
22652     * @ingroup Elementary
22653     *
22654     * @image html img/widget/map/preview-00.png
22655     * @image latex img/widget/map/preview-00.eps
22656     *
22657     * This is a widget specifically for displaying a map. It uses basically
22658     * OpenStreetMap provider http://www.openstreetmap.org/,
22659     * but custom providers can be added.
22660     *
22661     * It supports some basic but yet nice features:
22662     * @li zoom and scroll
22663     * @li markers with content to be displayed when user clicks over it
22664     * @li group of markers
22665     * @li routes
22666     *
22667     * Smart callbacks one can listen to:
22668     *
22669     * - "clicked" - This is called when a user has clicked the map without
22670     *   dragging around.
22671     * - "press" - This is called when a user has pressed down on the map.
22672     * - "longpressed" - This is called when a user has pressed down on the map
22673     *   for a long time without dragging around.
22674     * - "clicked,double" - This is called when a user has double-clicked
22675     *   the map.
22676     * - "load,detail" - Map detailed data load begins.
22677     * - "loaded,detail" - This is called when all currently visible parts of
22678     *   the map are loaded.
22679     * - "zoom,start" - Zoom animation started.
22680     * - "zoom,stop" - Zoom animation stopped.
22681     * - "zoom,change" - Zoom changed when using an auto zoom mode.
22682     * - "scroll" - the content has been scrolled (moved).
22683     * - "scroll,anim,start" - scrolling animation has started.
22684     * - "scroll,anim,stop" - scrolling animation has stopped.
22685     * - "scroll,drag,start" - dragging the contents around has started.
22686     * - "scroll,drag,stop" - dragging the contents around has stopped.
22687     * - "downloaded" - This is called when all currently required map images
22688     *   are downloaded.
22689     * - "route,load" - This is called when route request begins.
22690     * - "route,loaded" - This is called when route request ends.
22691     * - "name,load" - This is called when name request begins.
22692     * - "name,loaded- This is called when name request ends.
22693     *
22694     * Available style for map widget:
22695     * - @c "default"
22696     *
22697     * Available style for markers:
22698     * - @c "radio"
22699     * - @c "radio2"
22700     * - @c "empty"
22701     *
22702     * Available style for marker bubble:
22703     * - @c "default"
22704     *
22705     * List of examples:
22706     * @li @ref map_example_01
22707     * @li @ref map_example_02
22708     * @li @ref map_example_03
22709     */
22710
22711    /**
22712     * @addtogroup Map
22713     * @{
22714     */
22715
22716    /**
22717     * @enum _Elm_Map_Zoom_Mode
22718     * @typedef Elm_Map_Zoom_Mode
22719     *
22720     * Set map's zoom behavior. It can be set to manual or automatic.
22721     *
22722     * Default value is #ELM_MAP_ZOOM_MODE_MANUAL.
22723     *
22724     * Values <b> don't </b> work as bitmask, only one can be choosen.
22725     *
22726     * @note Valid sizes are 2^zoom, consequently the map may be smaller
22727     * than the scroller view.
22728     *
22729     * @see elm_map_zoom_mode_set()
22730     * @see elm_map_zoom_mode_get()
22731     *
22732     * @ingroup Map
22733     */
22734    typedef enum _Elm_Map_Zoom_Mode
22735      {
22736         ELM_MAP_ZOOM_MODE_MANUAL, /**< Zoom controlled manually by elm_map_zoom_set(). It's set by default. */
22737         ELM_MAP_ZOOM_MODE_AUTO_FIT, /**< Zoom until map fits inside the scroll frame with no pixels outside this area. */
22738         ELM_MAP_ZOOM_MODE_AUTO_FILL, /**< Zoom until map fills scroll, ensuring no pixels are left unfilled. */
22739         ELM_MAP_ZOOM_MODE_LAST
22740      } Elm_Map_Zoom_Mode;
22741
22742    /**
22743     * @enum _Elm_Map_Route_Sources
22744     * @typedef Elm_Map_Route_Sources
22745     *
22746     * Set route service to be used. By default used source is
22747     * #ELM_MAP_ROUTE_SOURCE_YOURS.
22748     *
22749     * @see elm_map_route_source_set()
22750     * @see elm_map_route_source_get()
22751     *
22752     * @ingroup Map
22753     */
22754    typedef enum _Elm_Map_Route_Sources
22755      {
22756         ELM_MAP_ROUTE_SOURCE_YOURS, /**< Routing service http://www.yournavigation.org/ . Set by default.*/
22757         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. */
22758         ELM_MAP_ROUTE_SOURCE_ORS, /**< Open Route Service: http://www.openrouteservice.org/ . It's not working with Map yet. */
22759         ELM_MAP_ROUTE_SOURCE_LAST
22760      } Elm_Map_Route_Sources;
22761
22762    typedef enum _Elm_Map_Name_Sources
22763      {
22764         ELM_MAP_NAME_SOURCE_NOMINATIM,
22765         ELM_MAP_NAME_SOURCE_LAST
22766      } Elm_Map_Name_Sources;
22767
22768    /**
22769     * @enum _Elm_Map_Route_Type
22770     * @typedef Elm_Map_Route_Type
22771     *
22772     * Set type of transport used on route.
22773     *
22774     * @see elm_map_route_add()
22775     *
22776     * @ingroup Map
22777     */
22778    typedef enum _Elm_Map_Route_Type
22779      {
22780         ELM_MAP_ROUTE_TYPE_MOTOCAR, /**< Route should consider an automobile will be used. */
22781         ELM_MAP_ROUTE_TYPE_BICYCLE, /**< Route should consider a bicycle will be used by the user. */
22782         ELM_MAP_ROUTE_TYPE_FOOT, /**< Route should consider user will be walking. */
22783         ELM_MAP_ROUTE_TYPE_LAST
22784      } Elm_Map_Route_Type;
22785
22786    /**
22787     * @enum _Elm_Map_Route_Method
22788     * @typedef Elm_Map_Route_Method
22789     *
22790     * Set the routing method, what should be priorized, time or distance.
22791     *
22792     * @see elm_map_route_add()
22793     *
22794     * @ingroup Map
22795     */
22796    typedef enum _Elm_Map_Route_Method
22797      {
22798         ELM_MAP_ROUTE_METHOD_FASTEST, /**< Route should priorize time. */
22799         ELM_MAP_ROUTE_METHOD_SHORTEST, /**< Route should priorize distance. */
22800         ELM_MAP_ROUTE_METHOD_LAST
22801      } Elm_Map_Route_Method;
22802
22803    typedef enum _Elm_Map_Name_Method
22804      {
22805         ELM_MAP_NAME_METHOD_SEARCH,
22806         ELM_MAP_NAME_METHOD_REVERSE,
22807         ELM_MAP_NAME_METHOD_LAST
22808      } Elm_Map_Name_Method;
22809
22810    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(). */
22811    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(). */
22812    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(). */
22813    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(). */
22814    typedef struct _Elm_Map_Name            Elm_Map_Name; /**< A handle for specific coordinates. */
22815    typedef struct _Elm_Map_Track           Elm_Map_Track;
22816
22817    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. */
22818    typedef void         (*ElmMapMarkerDelFunc)      (Evas_Object *obj, Elm_Map_Marker *marker, void *data, Evas_Object *o); /**< Function to delete bubble content for marker classes. */
22819    typedef Evas_Object *(*ElmMapMarkerIconGetFunc)  (Evas_Object *obj, Elm_Map_Marker *marker, void *data); /**< Icon fetching class function for marker classes. */
22820    typedef Evas_Object *(*ElmMapGroupIconGetFunc)   (Evas_Object *obj, void *data); /**< Icon fetching class function for markers group classes. */
22821
22822    typedef char        *(*ElmMapModuleSourceFunc) (void);
22823    typedef int          (*ElmMapModuleZoomMinFunc) (void);
22824    typedef int          (*ElmMapModuleZoomMaxFunc) (void);
22825    typedef char        *(*ElmMapModuleUrlFunc) (Evas_Object *obj, int x, int y, int zoom);
22826    typedef int          (*ElmMapModuleRouteSourceFunc) (void);
22827    typedef char        *(*ElmMapModuleRouteUrlFunc) (Evas_Object *obj, char *type_name, int method, double flon, double flat, double tlon, double tlat);
22828    typedef char        *(*ElmMapModuleNameUrlFunc) (Evas_Object *obj, int method, char *name, double lon, double lat);
22829    typedef Eina_Bool    (*ElmMapModuleGeoIntoCoordFunc) (const Evas_Object *obj, int zoom, double lon, double lat, int size, int *x, int *y);
22830    typedef Eina_Bool    (*ElmMapModuleCoordIntoGeoFunc) (const Evas_Object *obj, int zoom, int x, int y, int size, double *lon, double *lat);
22831
22832    /**
22833     * Add a new map widget to the given parent Elementary (container) object.
22834     *
22835     * @param parent The parent object.
22836     * @return a new map widget handle or @c NULL, on errors.
22837     *
22838     * This function inserts a new map widget on the canvas.
22839     *
22840     * @ingroup Map
22841     */
22842    EAPI Evas_Object          *elm_map_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
22843
22844    /**
22845     * Set the zoom level of the map.
22846     *
22847     * @param obj The map object.
22848     * @param zoom The zoom level to set.
22849     *
22850     * This sets the zoom level.
22851     *
22852     * It will respect limits defined by elm_map_source_zoom_min_set() and
22853     * elm_map_source_zoom_max_set().
22854     *
22855     * By default these values are 0 (world map) and 18 (maximum zoom).
22856     *
22857     * This function should be used when zoom mode is set to
22858     * #ELM_MAP_ZOOM_MODE_MANUAL. This is the default mode, and can be set
22859     * with elm_map_zoom_mode_set().
22860     *
22861     * @see elm_map_zoom_mode_set().
22862     * @see elm_map_zoom_get().
22863     *
22864     * @ingroup Map
22865     */
22866    EAPI void                  elm_map_zoom_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
22867
22868    /**
22869     * Get the zoom level of the map.
22870     *
22871     * @param obj The map object.
22872     * @return The current zoom level.
22873     *
22874     * This returns the current zoom level of the map object.
22875     *
22876     * Note that if you set the fill mode to other than #ELM_MAP_ZOOM_MODE_MANUAL
22877     * (which is the default), the zoom level may be changed at any time by the
22878     * map object itself to account for map size and map viewport size.
22879     *
22880     * @see elm_map_zoom_set() for details.
22881     *
22882     * @ingroup Map
22883     */
22884    EAPI int                   elm_map_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22885
22886    /**
22887     * Set the zoom mode used by the map object.
22888     *
22889     * @param obj The map object.
22890     * @param mode The zoom mode of the map, being it one of
22891     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
22892     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
22893     *
22894     * This sets the zoom mode to manual or one of the automatic levels.
22895     * Manual (#ELM_MAP_ZOOM_MODE_MANUAL) means that zoom is set manually by
22896     * elm_map_zoom_set() and will stay at that level until changed by code
22897     * or until zoom mode is changed. This is the default mode.
22898     *
22899     * The Automatic modes will allow the map object to automatically
22900     * adjust zoom mode based on properties. #ELM_MAP_ZOOM_MODE_AUTO_FIT will
22901     * adjust zoom so the map fits inside the scroll frame with no pixels
22902     * outside this area. #ELM_MAP_ZOOM_MODE_AUTO_FILL will be similar but
22903     * ensure no pixels within the frame are left unfilled. Do not forget that
22904     * the valid sizes are 2^zoom, consequently the map may be smaller than
22905     * the scroller view.
22906     *
22907     * @see elm_map_zoom_set()
22908     *
22909     * @ingroup Map
22910     */
22911    EAPI void                  elm_map_zoom_mode_set(Evas_Object *obj, Elm_Map_Zoom_Mode mode) EINA_ARG_NONNULL(1);
22912
22913    /**
22914     * Get the zoom mode used by the map object.
22915     *
22916     * @param obj The map object.
22917     * @return The zoom mode of the map, being it one of
22918     * #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT,
22919     * or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
22920     *
22921     * This function returns the current zoom mode used by the map object.
22922     *
22923     * @see elm_map_zoom_mode_set() for more details.
22924     *
22925     * @ingroup Map
22926     */
22927    EAPI Elm_Map_Zoom_Mode     elm_map_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
22928
22929    /**
22930     * Get the current coordinates of the map.
22931     *
22932     * @param obj The map object.
22933     * @param lon Pointer where to store longitude.
22934     * @param lat Pointer where to store latitude.
22935     *
22936     * This gets the current center coordinates of the map object. It can be
22937     * set by elm_map_geo_region_bring_in() and elm_map_geo_region_show().
22938     *
22939     * @see elm_map_geo_region_bring_in()
22940     * @see elm_map_geo_region_show()
22941     *
22942     * @ingroup Map
22943     */
22944    EAPI void                  elm_map_geo_region_get(const Evas_Object *obj, double *lon, double *lat) EINA_ARG_NONNULL(1);
22945
22946    /**
22947     * Animatedly bring in given coordinates to the center of the map.
22948     *
22949     * @param obj The map object.
22950     * @param lon Longitude to center at.
22951     * @param lat Latitude to center at.
22952     *
22953     * This causes map to jump to the given @p lat and @p lon coordinates
22954     * and show it (by scrolling) in the center of the viewport, if it is not
22955     * already centered. This will use animation to do so and take a period
22956     * of time to complete.
22957     *
22958     * @see elm_map_geo_region_show() for a function to avoid animation.
22959     * @see elm_map_geo_region_get()
22960     *
22961     * @ingroup Map
22962     */
22963    EAPI void                  elm_map_geo_region_bring_in(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
22964
22965    /**
22966     * Show the given coordinates at the center of the map, @b immediately.
22967     *
22968     * @param obj The map object.
22969     * @param lon Longitude to center at.
22970     * @param lat Latitude to center at.
22971     *
22972     * This causes map to @b redraw its viewport's contents to the
22973     * region contining the given @p lat and @p lon, that will be moved to the
22974     * center of the map.
22975     *
22976     * @see elm_map_geo_region_bring_in() for a function to move with animation.
22977     * @see elm_map_geo_region_get()
22978     *
22979     * @ingroup Map
22980     */
22981    EAPI void                  elm_map_geo_region_show(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
22982
22983    /**
22984     * Pause or unpause the map.
22985     *
22986     * @param obj The map object.
22987     * @param paused Use @c EINA_TRUE to pause the map @p obj or @c EINA_FALSE
22988     * to unpause it.
22989     *
22990     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
22991     * for map.
22992     *
22993     * The default is off.
22994     *
22995     * This will stop zooming using animation, changing zoom levels will
22996     * change instantly. This will stop any existing animations that are running.
22997     *
22998     * @see elm_map_paused_get()
22999     *
23000     * @ingroup Map
23001     */
23002    EAPI void                  elm_map_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
23003
23004    /**
23005     * Get a value whether map is paused or not.
23006     *
23007     * @param obj The map object.
23008     * @return @c EINA_TRUE means map is pause. @c EINA_FALSE indicates
23009     * it is not. If @p obj is @c NULL, @c EINA_FALSE is returned.
23010     *
23011     * This gets the current paused state for the map object.
23012     *
23013     * @see elm_map_paused_set() for details.
23014     *
23015     * @ingroup Map
23016     */
23017    EAPI Eina_Bool             elm_map_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23018
23019    /**
23020     * Set to show markers during zoom level changes or not.
23021     *
23022     * @param obj The map object.
23023     * @param paused Use @c EINA_TRUE to @b not show markers or @c EINA_FALSE
23024     * to show them.
23025     *
23026     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
23027     * for map.
23028     *
23029     * The default is off.
23030     *
23031     * This will stop zooming using animation, changing zoom levels will
23032     * change instantly. This will stop any existing animations that are running.
23033     *
23034     * This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
23035     * for the markers.
23036     *
23037     * The default  is off.
23038     *
23039     * Enabling it will force the map to stop displaying the markers during
23040     * zoom level changes. Set to on if you have a large number of markers.
23041     *
23042     * @see elm_map_paused_markers_get()
23043     *
23044     * @ingroup Map
23045     */
23046    EAPI void                  elm_map_paused_markers_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
23047
23048    /**
23049     * Get a value whether markers will be displayed on zoom level changes or not
23050     *
23051     * @param obj The map object.
23052     * @return @c EINA_TRUE means map @b won't display markers or @c EINA_FALSE
23053     * indicates it will. If @p obj is @c NULL, @c EINA_FALSE is returned.
23054     *
23055     * This gets the current markers paused state for the map object.
23056     *
23057     * @see elm_map_paused_markers_set() for details.
23058     *
23059     * @ingroup Map
23060     */
23061    EAPI Eina_Bool             elm_map_paused_markers_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23062
23063    /**
23064     * Get the information of downloading status.
23065     *
23066     * @param obj The map object.
23067     * @param try_num Pointer where to store number of tiles being downloaded.
23068     * @param finish_num Pointer where to store number of tiles successfully
23069     * downloaded.
23070     *
23071     * This gets the current downloading status for the map object, the number
23072     * of tiles being downloaded and the number of tiles already downloaded.
23073     *
23074     * @ingroup Map
23075     */
23076    EAPI void                  elm_map_utils_downloading_status_get(const Evas_Object *obj, int *try_num, int *finish_num) EINA_ARG_NONNULL(1, 2, 3);
23077
23078    /**
23079     * Convert a pixel coordinate (x,y) into a geographic coordinate
23080     * (longitude, latitude).
23081     *
23082     * @param obj The map object.
23083     * @param x the coordinate.
23084     * @param y the coordinate.
23085     * @param size the size in pixels of the map.
23086     * The map is a square and generally his size is : pow(2.0, zoom)*256.
23087     * @param lon Pointer where to store the longitude that correspond to x.
23088     * @param lat Pointer where to store the latitude that correspond to y.
23089     *
23090     * @note Origin pixel point is the top left corner of the viewport.
23091     * Map zoom and size are taken on account.
23092     *
23093     * @see elm_map_utils_convert_geo_into_coord() if you need the inverse.
23094     *
23095     * @ingroup Map
23096     */
23097    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);
23098
23099    /**
23100     * Convert a geographic coordinate (longitude, latitude) into a pixel
23101     * coordinate (x, y).
23102     *
23103     * @param obj The map object.
23104     * @param lon the longitude.
23105     * @param lat the latitude.
23106     * @param size the size in pixels of the map. The map is a square
23107     * and generally his size is : pow(2.0, zoom)*256.
23108     * @param x Pointer where to store the horizontal pixel coordinate that
23109     * correspond to the longitude.
23110     * @param y Pointer where to store the vertical pixel coordinate that
23111     * correspond to the latitude.
23112     *
23113     * @note Origin pixel point is the top left corner of the viewport.
23114     * Map zoom and size are taken on account.
23115     *
23116     * @see elm_map_utils_convert_coord_into_geo() if you need the inverse.
23117     *
23118     * @ingroup Map
23119     */
23120    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);
23121
23122    /**
23123     * Convert a geographic coordinate (longitude, latitude) into a name
23124     * (address).
23125     *
23126     * @param obj The map object.
23127     * @param lon the longitude.
23128     * @param lat the latitude.
23129     * @return name A #Elm_Map_Name handle for this coordinate.
23130     *
23131     * To get the string for this address, elm_map_name_address_get()
23132     * should be used.
23133     *
23134     * @see elm_map_utils_convert_name_into_coord() if you need the inverse.
23135     *
23136     * @ingroup Map
23137     */
23138    EAPI Elm_Map_Name         *elm_map_utils_convert_coord_into_name(const Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
23139
23140    /**
23141     * Convert a name (address) into a geographic coordinate
23142     * (longitude, latitude).
23143     *
23144     * @param obj The map object.
23145     * @param name The address.
23146     * @return name A #Elm_Map_Name handle for this address.
23147     *
23148     * To get the longitude and latitude, elm_map_name_region_get()
23149     * should be used.
23150     *
23151     * @see elm_map_utils_convert_coord_into_name() if you need the inverse.
23152     *
23153     * @ingroup Map
23154     */
23155    EAPI Elm_Map_Name         *elm_map_utils_convert_name_into_coord(const Evas_Object *obj, char *address) EINA_ARG_NONNULL(1, 2);
23156
23157    /**
23158     * Convert a pixel coordinate into a rotated pixel coordinate.
23159     *
23160     * @param obj The map object.
23161     * @param x horizontal coordinate of the point to rotate.
23162     * @param y vertical coordinate of the point to rotate.
23163     * @param cx rotation's center horizontal position.
23164     * @param cy rotation's center vertical position.
23165     * @param degree amount of degrees from 0.0 to 360.0 to rotate arount Z axis.
23166     * @param xx Pointer where to store rotated x.
23167     * @param yy Pointer where to store rotated y.
23168     *
23169     * @ingroup Map
23170     */
23171    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);
23172
23173    /**
23174     * Add a new marker to the map object.
23175     *
23176     * @param obj The map object.
23177     * @param lon The longitude of the marker.
23178     * @param lat The latitude of the marker.
23179     * @param clas The class, to use when marker @b isn't grouped to others.
23180     * @param clas_group The class group, to use when marker is grouped to others
23181     * @param data The data passed to the callbacks.
23182     *
23183     * @return The created marker or @c NULL upon failure.
23184     *
23185     * A marker will be created and shown in a specific point of the map, defined
23186     * by @p lon and @p lat.
23187     *
23188     * It will be displayed using style defined by @p class when this marker
23189     * is displayed alone (not grouped). A new class can be created with
23190     * elm_map_marker_class_new().
23191     *
23192     * If the marker is grouped to other markers, it will be displayed with
23193     * style defined by @p class_group. Markers with the same group are grouped
23194     * if they are close. A new group class can be created with
23195     * elm_map_marker_group_class_new().
23196     *
23197     * Markers created with this method can be deleted with
23198     * elm_map_marker_remove().
23199     *
23200     * A marker can have associated content to be displayed by a bubble,
23201     * when a user click over it, as well as an icon. These objects will
23202     * be fetch using class' callback functions.
23203     *
23204     * @see elm_map_marker_class_new()
23205     * @see elm_map_marker_group_class_new()
23206     * @see elm_map_marker_remove()
23207     *
23208     * @ingroup Map
23209     */
23210    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);
23211
23212    /**
23213     * Set the maximum numbers of markers' content to be displayed in a group.
23214     *
23215     * @param obj The map object.
23216     * @param max The maximum numbers of items displayed in a bubble.
23217     *
23218     * A bubble will be displayed when the user clicks over the group,
23219     * and will place the content of markers that belong to this group
23220     * inside it.
23221     *
23222     * A group can have a long list of markers, consequently the creation
23223     * of the content of the bubble can be very slow.
23224     *
23225     * In order to avoid this, a maximum number of items is displayed
23226     * in a bubble.
23227     *
23228     * By default this number is 30.
23229     *
23230     * Marker with the same group class are grouped if they are close.
23231     *
23232     * @see elm_map_marker_add()
23233     *
23234     * @ingroup Map
23235     */
23236    EAPI void                  elm_map_max_marker_per_group_set(Evas_Object *obj, int max) EINA_ARG_NONNULL(1);
23237
23238    /**
23239     * Remove a marker from the map.
23240     *
23241     * @param marker The marker to remove.
23242     *
23243     * @see elm_map_marker_add()
23244     *
23245     * @ingroup Map
23246     */
23247    EAPI void                  elm_map_marker_remove(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23248
23249    /**
23250     * Get the current coordinates of the marker.
23251     *
23252     * @param marker marker.
23253     * @param lat Pointer where to store the marker's latitude.
23254     * @param lon Pointer where to store the marker's longitude.
23255     *
23256     * These values are set when adding markers, with function
23257     * elm_map_marker_add().
23258     *
23259     * @see elm_map_marker_add()
23260     *
23261     * @ingroup Map
23262     */
23263    EAPI void                  elm_map_marker_region_get(const Elm_Map_Marker *marker, double *lon, double *lat) EINA_ARG_NONNULL(1);
23264
23265    /**
23266     * Animatedly bring in given marker to the center of the map.
23267     *
23268     * @param marker The marker to center at.
23269     *
23270     * This causes map to jump to the given @p marker's coordinates
23271     * and show it (by scrolling) in the center of the viewport, if it is not
23272     * already centered. This will use animation to do so and take a period
23273     * of time to complete.
23274     *
23275     * @see elm_map_marker_show() for a function to avoid animation.
23276     * @see elm_map_marker_region_get()
23277     *
23278     * @ingroup Map
23279     */
23280    EAPI void                  elm_map_marker_bring_in(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23281
23282    /**
23283     * Show the given marker at the center of the map, @b immediately.
23284     *
23285     * @param marker The marker to center at.
23286     *
23287     * This causes map to @b redraw its viewport's contents to the
23288     * region contining the given @p marker's coordinates, that will be
23289     * moved to the center of the map.
23290     *
23291     * @see elm_map_marker_bring_in() for a function to move with animation.
23292     * @see elm_map_markers_list_show() if more than one marker need to be
23293     * displayed.
23294     * @see elm_map_marker_region_get()
23295     *
23296     * @ingroup Map
23297     */
23298    EAPI void                  elm_map_marker_show(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23299
23300    /**
23301     * Move and zoom the map to display a list of markers.
23302     *
23303     * @param markers A list of #Elm_Map_Marker handles.
23304     *
23305     * The map will be centered on the center point of the markers in the list.
23306     * Then the map will be zoomed in order to fit the markers using the maximum
23307     * zoom which allows display of all the markers.
23308     *
23309     * @warning All the markers should belong to the same map object.
23310     *
23311     * @see elm_map_marker_show() to show a single marker.
23312     * @see elm_map_marker_bring_in()
23313     *
23314     * @ingroup Map
23315     */
23316    EAPI void                  elm_map_markers_list_show(Eina_List *markers) EINA_ARG_NONNULL(1);
23317
23318    /**
23319     * Get the Evas object returned by the ElmMapMarkerGetFunc callback
23320     *
23321     * @param marker The marker wich content should be returned.
23322     * @return Return the evas object if it exists, else @c NULL.
23323     *
23324     * To set callback function #ElmMapMarkerGetFunc for the marker class,
23325     * elm_map_marker_class_get_cb_set() should be used.
23326     *
23327     * This content is what will be inside the bubble that will be displayed
23328     * when an user clicks over the marker.
23329     *
23330     * This returns the actual Evas object used to be placed inside
23331     * the bubble. This may be @c NULL, as it may
23332     * not have been created or may have been deleted, at any time, by
23333     * the map. <b>Do not modify this object</b> (move, resize,
23334     * show, hide, etc.), as the map is controlling it. This
23335     * function is for querying, emitting custom signals or hooking
23336     * lower level callbacks for events on that object. Do not delete
23337     * this object under any circumstances.
23338     *
23339     * @ingroup Map
23340     */
23341    EAPI Evas_Object          *elm_map_marker_object_get(const Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23342
23343    /**
23344     * Update the marker
23345     *
23346     * @param marker The marker to be updated.
23347     *
23348     * If a content is set to this marker, it will call function to delete it,
23349     * #ElmMapMarkerDelFunc, and then will fetch the content again with
23350     * #ElmMapMarkerGetFunc.
23351     *
23352     * These functions are set for the marker class with
23353     * elm_map_marker_class_get_cb_set() and elm_map_marker_class_del_cb_set().
23354     *
23355     * @ingroup Map
23356     */
23357    EAPI void                  elm_map_marker_update(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
23358
23359    /**
23360     * Close all the bubbles opened by the user.
23361     *
23362     * @param obj The map object.
23363     *
23364     * A bubble is displayed with a content fetched with #ElmMapMarkerGetFunc
23365     * when the user clicks on a marker.
23366     *
23367     * This functions is set for the marker class with
23368     * elm_map_marker_class_get_cb_set().
23369     *
23370     * @ingroup Map
23371     */
23372    EAPI void                  elm_map_bubbles_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
23373
23374    /**
23375     * Create a new group class.
23376     *
23377     * @param obj The map object.
23378     * @return Returns the new group class.
23379     *
23380     * Each marker must be associated to a group class. Markers in the same
23381     * group are grouped if they are close.
23382     *
23383     * The group class defines the style of the marker when a marker is grouped
23384     * to others markers. When it is alone, another class will be used.
23385     *
23386     * A group class will need to be provided when creating a marker with
23387     * elm_map_marker_add().
23388     *
23389     * Some properties and functions can be set by class, as:
23390     * - style, with elm_map_group_class_style_set()
23391     * - data - to be associated to the group class. It can be set using
23392     *   elm_map_group_class_data_set().
23393     * - min zoom to display markers, set with
23394     *   elm_map_group_class_zoom_displayed_set().
23395     * - max zoom to group markers, set using
23396     *   elm_map_group_class_zoom_grouped_set().
23397     * - visibility - set if markers will be visible or not, set with
23398     *   elm_map_group_class_hide_set().
23399     * - #ElmMapGroupIconGetFunc - used to fetch icon for markers group classes.
23400     *   It can be set using elm_map_group_class_icon_cb_set().
23401     *
23402     * @see elm_map_marker_add()
23403     * @see elm_map_group_class_style_set()
23404     * @see elm_map_group_class_data_set()
23405     * @see elm_map_group_class_zoom_displayed_set()
23406     * @see elm_map_group_class_zoom_grouped_set()
23407     * @see elm_map_group_class_hide_set()
23408     * @see elm_map_group_class_icon_cb_set()
23409     *
23410     * @ingroup Map
23411     */
23412    EAPI Elm_Map_Group_Class  *elm_map_group_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
23413
23414    /**
23415     * Set the marker's style of a group class.
23416     *
23417     * @param clas The group class.
23418     * @param style The style to be used by markers.
23419     *
23420     * Each marker must be associated to a group class, and will use the style
23421     * defined by such class when grouped to other markers.
23422     *
23423     * The following styles are provided by default theme:
23424     * @li @c radio - blue circle
23425     * @li @c radio2 - green circle
23426     * @li @c empty
23427     *
23428     * @see elm_map_group_class_new() for more details.
23429     * @see elm_map_marker_add()
23430     *
23431     * @ingroup Map
23432     */
23433    EAPI void                  elm_map_group_class_style_set(Elm_Map_Group_Class *clas, const char *style) EINA_ARG_NONNULL(1);
23434
23435    /**
23436     * Set the icon callback function of a group class.
23437     *
23438     * @param clas The group class.
23439     * @param icon_get The callback function that will return the icon.
23440     *
23441     * Each marker must be associated to a group class, and it can display a
23442     * custom icon. The function @p icon_get must return this icon.
23443     *
23444     * @see elm_map_group_class_new() for more details.
23445     * @see elm_map_marker_add()
23446     *
23447     * @ingroup Map
23448     */
23449    EAPI void                  elm_map_group_class_icon_cb_set(Elm_Map_Group_Class *clas, ElmMapGroupIconGetFunc icon_get) EINA_ARG_NONNULL(1);
23450
23451    /**
23452     * Set the data associated to the group class.
23453     *
23454     * @param clas The group class.
23455     * @param data The new user data.
23456     *
23457     * This data will be passed for callback functions, like icon get callback,
23458     * that can be set with elm_map_group_class_icon_cb_set().
23459     *
23460     * If a data was previously set, the object will lose the pointer for it,
23461     * so if needs to be freed, you must do it yourself.
23462     *
23463     * @see elm_map_group_class_new() for more details.
23464     * @see elm_map_group_class_icon_cb_set()
23465     * @see elm_map_marker_add()
23466     *
23467     * @ingroup Map
23468     */
23469    EAPI void                  elm_map_group_class_data_set(Elm_Map_Group_Class *clas, void *data) EINA_ARG_NONNULL(1);
23470
23471    /**
23472     * Set the minimum zoom from where the markers are displayed.
23473     *
23474     * @param clas The group class.
23475     * @param zoom The minimum zoom.
23476     *
23477     * Markers only will be displayed when the map is displayed at @p zoom
23478     * or bigger.
23479     *
23480     * @see elm_map_group_class_new() for more details.
23481     * @see elm_map_marker_add()
23482     *
23483     * @ingroup Map
23484     */
23485    EAPI void                  elm_map_group_class_zoom_displayed_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
23486
23487    /**
23488     * Set the zoom from where the markers are no more grouped.
23489     *
23490     * @param clas The group class.
23491     * @param zoom The maximum zoom.
23492     *
23493     * Markers only will be grouped when the map is displayed at
23494     * less than @p zoom.
23495     *
23496     * @see elm_map_group_class_new() for more details.
23497     * @see elm_map_marker_add()
23498     *
23499     * @ingroup Map
23500     */
23501    EAPI void                  elm_map_group_class_zoom_grouped_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
23502
23503    /**
23504     * Set if the markers associated to the group class @clas are hidden or not.
23505     *
23506     * @param clas The group class.
23507     * @param hide Use @c EINA_TRUE to hide markers or @c EINA_FALSE
23508     * to show them.
23509     *
23510     * If @p hide is @c EINA_TRUE the markers will be hidden, but default
23511     * is to show them.
23512     *
23513     * @ingroup Map
23514     */
23515    EAPI void                  elm_map_group_class_hide_set(Evas_Object *obj, Elm_Map_Group_Class *clas, Eina_Bool hide) EINA_ARG_NONNULL(1, 2);
23516
23517    /**
23518     * Create a new marker class.
23519     *
23520     * @param obj The map object.
23521     * @return Returns the new group class.
23522     *
23523     * Each marker must be associated to a class.
23524     *
23525     * The marker class defines the style of the marker when a marker is
23526     * displayed alone, i.e., not grouped to to others markers. When grouped
23527     * it will use group class style.
23528     *
23529     * A marker class will need to be provided when creating a marker with
23530     * elm_map_marker_add().
23531     *
23532     * Some properties and functions can be set by class, as:
23533     * - style, with elm_map_marker_class_style_set()
23534     * - #ElmMapMarkerIconGetFunc - used to fetch icon for markers classes.
23535     *   It can be set using elm_map_marker_class_icon_cb_set().
23536     * - #ElmMapMarkerGetFunc - used to fetch bubble content for marker classes.
23537     *   Set using elm_map_marker_class_get_cb_set().
23538     * - #ElmMapMarkerDelFunc - used to delete bubble content for marker classes.
23539     *   Set using elm_map_marker_class_del_cb_set().
23540     *
23541     * @see elm_map_marker_add()
23542     * @see elm_map_marker_class_style_set()
23543     * @see elm_map_marker_class_icon_cb_set()
23544     * @see elm_map_marker_class_get_cb_set()
23545     * @see elm_map_marker_class_del_cb_set()
23546     *
23547     * @ingroup Map
23548     */
23549    EAPI Elm_Map_Marker_Class *elm_map_marker_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
23550
23551    /**
23552     * Set the marker's style of a marker class.
23553     *
23554     * @param clas The marker class.
23555     * @param style The style to be used by markers.
23556     *
23557     * Each marker must be associated to a marker class, and will use the style
23558     * defined by such class when alone, i.e., @b not grouped to other markers.
23559     *
23560     * The following styles are provided by default theme:
23561     * @li @c radio
23562     * @li @c radio2
23563     * @li @c empty
23564     *
23565     * @see elm_map_marker_class_new() for more details.
23566     * @see elm_map_marker_add()
23567     *
23568     * @ingroup Map
23569     */
23570    EAPI void                  elm_map_marker_class_style_set(Elm_Map_Marker_Class *clas, const char *style) EINA_ARG_NONNULL(1);
23571
23572    /**
23573     * Set the icon callback function of a marker class.
23574     *
23575     * @param clas The marker class.
23576     * @param icon_get The callback function that will return the icon.
23577     *
23578     * Each marker must be associated to a marker class, and it can display a
23579     * custom icon. The function @p icon_get must return this icon.
23580     *
23581     * @see elm_map_marker_class_new() for more details.
23582     * @see elm_map_marker_add()
23583     *
23584     * @ingroup Map
23585     */
23586    EAPI void                  elm_map_marker_class_icon_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerIconGetFunc icon_get) EINA_ARG_NONNULL(1);
23587
23588    /**
23589     * Set the bubble content callback function of a marker class.
23590     *
23591     * @param clas The marker class.
23592     * @param get The callback function that will return the content.
23593     *
23594     * Each marker must be associated to a marker class, and it can display a
23595     * a content on a bubble that opens when the user click over the marker.
23596     * The function @p get must return this content object.
23597     *
23598     * If this content will need to be deleted, elm_map_marker_class_del_cb_set()
23599     * can be used.
23600     *
23601     * @see elm_map_marker_class_new() for more details.
23602     * @see elm_map_marker_class_del_cb_set()
23603     * @see elm_map_marker_add()
23604     *
23605     * @ingroup Map
23606     */
23607    EAPI void                  elm_map_marker_class_get_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerGetFunc get) EINA_ARG_NONNULL(1);
23608
23609    /**
23610     * Set the callback function used to delete bubble content of a marker class.
23611     *
23612     * @param clas The marker class.
23613     * @param del The callback function that will delete the content.
23614     *
23615     * Each marker must be associated to a marker class, and it can display a
23616     * a content on a bubble that opens when the user click over the marker.
23617     * The function to return such content can be set with
23618     * elm_map_marker_class_get_cb_set().
23619     *
23620     * If this content must be freed, a callback function need to be
23621     * set for that task with this function.
23622     *
23623     * If this callback is defined it will have to delete (or not) the
23624     * object inside, but if the callback is not defined the object will be
23625     * destroyed with evas_object_del().
23626     *
23627     * @see elm_map_marker_class_new() for more details.
23628     * @see elm_map_marker_class_get_cb_set()
23629     * @see elm_map_marker_add()
23630     *
23631     * @ingroup Map
23632     */
23633    EAPI void                  elm_map_marker_class_del_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerDelFunc del) EINA_ARG_NONNULL(1);
23634
23635    /**
23636     * Get the list of available sources.
23637     *
23638     * @param obj The map object.
23639     * @return The source names list.
23640     *
23641     * It will provide a list with all available sources, that can be set as
23642     * current source with elm_map_source_name_set(), or get with
23643     * elm_map_source_name_get().
23644     *
23645     * Available sources:
23646     * @li "Mapnik"
23647     * @li "Osmarender"
23648     * @li "CycleMap"
23649     * @li "Maplint"
23650     *
23651     * @see elm_map_source_name_set() for more details.
23652     * @see elm_map_source_name_get()
23653     *
23654     * @ingroup Map
23655     */
23656    EAPI const char          **elm_map_source_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23657
23658    /**
23659     * Set the source of the map.
23660     *
23661     * @param obj The map object.
23662     * @param source The source to be used.
23663     *
23664     * Map widget retrieves images that composes the map from a web service.
23665     * This web service can be set with this method.
23666     *
23667     * A different service can return a different maps with different
23668     * information and it can use different zoom values.
23669     *
23670     * The @p source_name need to match one of the names provided by
23671     * elm_map_source_names_get().
23672     *
23673     * The current source can be get using elm_map_source_name_get().
23674     *
23675     * @see elm_map_source_names_get()
23676     * @see elm_map_source_name_get()
23677     *
23678     *
23679     * @ingroup Map
23680     */
23681    EAPI void                  elm_map_source_name_set(Evas_Object *obj, const char *source_name) EINA_ARG_NONNULL(1);
23682
23683    /**
23684     * Get the name of currently used source.
23685     *
23686     * @param obj The map object.
23687     * @return Returns the name of the source in use.
23688     *
23689     * @see elm_map_source_name_set() for more details.
23690     *
23691     * @ingroup Map
23692     */
23693    EAPI const char           *elm_map_source_name_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23694
23695    /**
23696     * Set the source of the route service to be used by the map.
23697     *
23698     * @param obj The map object.
23699     * @param source The route service to be used, being it one of
23700     * #ELM_MAP_ROUTE_SOURCE_YOURS (default), #ELM_MAP_ROUTE_SOURCE_MONAV,
23701     * and #ELM_MAP_ROUTE_SOURCE_ORS.
23702     *
23703     * Each one has its own algorithm, so the route retrieved may
23704     * differ depending on the source route. Now, only the default is working.
23705     *
23706     * #ELM_MAP_ROUTE_SOURCE_YOURS is the routing service provided at
23707     * http://www.yournavigation.org/.
23708     *
23709     * #ELM_MAP_ROUTE_SOURCE_MONAV, offers exact routing without heuristic
23710     * assumptions. Its routing core is based on Contraction Hierarchies.
23711     *
23712     * #ELM_MAP_ROUTE_SOURCE_ORS, is provided at http://www.openrouteservice.org/
23713     *
23714     * @see elm_map_route_source_get().
23715     *
23716     * @ingroup Map
23717     */
23718    EAPI void                  elm_map_route_source_set(Evas_Object *obj, Elm_Map_Route_Sources source) EINA_ARG_NONNULL(1);
23719
23720    /**
23721     * Get the current route source.
23722     *
23723     * @param obj The map object.
23724     * @return The source of the route service used by the map.
23725     *
23726     * @see elm_map_route_source_set() for details.
23727     *
23728     * @ingroup Map
23729     */
23730    EAPI Elm_Map_Route_Sources elm_map_route_source_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23731
23732    /**
23733     * Set the minimum zoom of the source.
23734     *
23735     * @param obj The map object.
23736     * @param zoom New minimum zoom value to be used.
23737     *
23738     * By default, it's 0.
23739     *
23740     * @ingroup Map
23741     */
23742    EAPI void                  elm_map_source_zoom_min_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
23743
23744    /**
23745     * Get the minimum zoom of the source.
23746     *
23747     * @param obj The map object.
23748     * @return Returns the minimum zoom of the source.
23749     *
23750     * @see elm_map_source_zoom_min_set() for details.
23751     *
23752     * @ingroup Map
23753     */
23754    EAPI int                   elm_map_source_zoom_min_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23755
23756    /**
23757     * Set the maximum zoom of the source.
23758     *
23759     * @param obj The map object.
23760     * @param zoom New maximum zoom value to be used.
23761     *
23762     * By default, it's 18.
23763     *
23764     * @ingroup Map
23765     */
23766    EAPI void                  elm_map_source_zoom_max_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
23767
23768    /**
23769     * Get the maximum zoom of the source.
23770     *
23771     * @param obj The map object.
23772     * @return Returns the maximum zoom of the source.
23773     *
23774     * @see elm_map_source_zoom_min_set() for details.
23775     *
23776     * @ingroup Map
23777     */
23778    EAPI int                   elm_map_source_zoom_max_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23779
23780    /**
23781     * Set the user agent used by the map object to access routing services.
23782     *
23783     * @param obj The map object.
23784     * @param user_agent The user agent to be used by the map.
23785     *
23786     * User agent is a client application implementing a network protocol used
23787     * in communications within a clientā€“server distributed computing system
23788     *
23789     * The @p user_agent identification string will transmitted in a header
23790     * field @c User-Agent.
23791     *
23792     * @see elm_map_user_agent_get()
23793     *
23794     * @ingroup Map
23795     */
23796    EAPI void                  elm_map_user_agent_set(Evas_Object *obj, const char *user_agent) EINA_ARG_NONNULL(1, 2);
23797
23798    /**
23799     * Get the user agent used by the map object.
23800     *
23801     * @param obj The map object.
23802     * @return The user agent identification string used by the map.
23803     *
23804     * @see elm_map_user_agent_set() for details.
23805     *
23806     * @ingroup Map
23807     */
23808    EAPI const char           *elm_map_user_agent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
23809
23810    /**
23811     * Add a new route to the map object.
23812     *
23813     * @param obj The map object.
23814     * @param type The type of transport to be considered when tracing a route.
23815     * @param method The routing method, what should be priorized.
23816     * @param flon The start longitude.
23817     * @param flat The start latitude.
23818     * @param tlon The destination longitude.
23819     * @param tlat The destination latitude.
23820     *
23821     * @return The created route or @c NULL upon failure.
23822     *
23823     * A route will be traced by point on coordinates (@p flat, @p flon)
23824     * to point on coordinates (@p tlat, @p tlon), using the route service
23825     * set with elm_map_route_source_set().
23826     *
23827     * It will take @p type on consideration to define the route,
23828     * depending if the user will be walking or driving, the route may vary.
23829     * One of #ELM_MAP_ROUTE_TYPE_MOTOCAR, #ELM_MAP_ROUTE_TYPE_BICYCLE, or
23830     * #ELM_MAP_ROUTE_TYPE_FOOT need to be used.
23831     *
23832     * Another parameter is what the route should priorize, the minor distance
23833     * or the less time to be spend on the route. So @p method should be one
23834     * of #ELM_MAP_ROUTE_METHOD_SHORTEST or #ELM_MAP_ROUTE_METHOD_FASTEST.
23835     *
23836     * Routes created with this method can be deleted with
23837     * elm_map_route_remove(), colored with elm_map_route_color_set(),
23838     * and distance can be get with elm_map_route_distance_get().
23839     *
23840     * @see elm_map_route_remove()
23841     * @see elm_map_route_color_set()
23842     * @see elm_map_route_distance_get()
23843     * @see elm_map_route_source_set()
23844     *
23845     * @ingroup Map
23846     */
23847    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);
23848
23849    /**
23850     * Remove a route from the map.
23851     *
23852     * @param route The route to remove.
23853     *
23854     * @see elm_map_route_add()
23855     *
23856     * @ingroup Map
23857     */
23858    EAPI void                  elm_map_route_remove(Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23859
23860    /**
23861     * Set the route color.
23862     *
23863     * @param route The route object.
23864     * @param r Red channel value, from 0 to 255.
23865     * @param g Green channel value, from 0 to 255.
23866     * @param b Blue channel value, from 0 to 255.
23867     * @param a Alpha channel value, from 0 to 255.
23868     *
23869     * It uses an additive color model, so each color channel represents
23870     * how much of each primary colors must to be used. 0 represents
23871     * ausence of this color, so if all of the three are set to 0,
23872     * the color will be black.
23873     *
23874     * These component values should be integers in the range 0 to 255,
23875     * (single 8-bit byte).
23876     *
23877     * This sets the color used for the route. By default, it is set to
23878     * solid red (r = 255, g = 0, b = 0, a = 255).
23879     *
23880     * For alpha channel, 0 represents completely transparent, and 255, opaque.
23881     *
23882     * @see elm_map_route_color_get()
23883     *
23884     * @ingroup Map
23885     */
23886    EAPI void                  elm_map_route_color_set(Elm_Map_Route *route, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
23887
23888    /**
23889     * Get the route color.
23890     *
23891     * @param route The route object.
23892     * @param r Pointer where to store the red channel value.
23893     * @param g Pointer where to store the green channel value.
23894     * @param b Pointer where to store the blue channel value.
23895     * @param a Pointer where to store the alpha channel value.
23896     *
23897     * @see elm_map_route_color_set() for details.
23898     *
23899     * @ingroup Map
23900     */
23901    EAPI void                  elm_map_route_color_get(const Elm_Map_Route *route, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
23902
23903    /**
23904     * Get the route distance in kilometers.
23905     *
23906     * @param route The route object.
23907     * @return The distance of route (unit : km).
23908     *
23909     * @ingroup Map
23910     */
23911    EAPI double                elm_map_route_distance_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23912
23913    /**
23914     * Get the information of route nodes.
23915     *
23916     * @param route The route object.
23917     * @return Returns a string with the nodes of route.
23918     *
23919     * @ingroup Map
23920     */
23921    EAPI const char           *elm_map_route_node_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23922
23923    /**
23924     * Get the information of route waypoint.
23925     *
23926     * @param route the route object.
23927     * @return Returns a string with information about waypoint of route.
23928     *
23929     * @ingroup Map
23930     */
23931    EAPI const char           *elm_map_route_waypoint_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
23932
23933    /**
23934     * Get the address of the name.
23935     *
23936     * @param name The name handle.
23937     * @return Returns the address string of @p name.
23938     *
23939     * This gets the coordinates of the @p name, created with one of the
23940     * conversion functions.
23941     *
23942     * @see elm_map_utils_convert_name_into_coord()
23943     * @see elm_map_utils_convert_coord_into_name()
23944     *
23945     * @ingroup Map
23946     */
23947    EAPI const char           *elm_map_name_address_get(const Elm_Map_Name *name) EINA_ARG_NONNULL(1);
23948
23949    /**
23950     * Get the current coordinates of the name.
23951     *
23952     * @param name The name handle.
23953     * @param lat Pointer where to store the latitude.
23954     * @param lon Pointer where to store The longitude.
23955     *
23956     * This gets the coordinates of the @p name, created with one of the
23957     * conversion functions.
23958     *
23959     * @see elm_map_utils_convert_name_into_coord()
23960     * @see elm_map_utils_convert_coord_into_name()
23961     *
23962     * @ingroup Map
23963     */
23964    EAPI void                  elm_map_name_region_get(const Elm_Map_Name *name, double *lon, double *lat) EINA_ARG_NONNULL(1);
23965
23966    /**
23967     * Remove a name from the map.
23968     *
23969     * @param name The name to remove.
23970     *
23971     * Basically the struct handled by @p name will be freed, so convertions
23972     * between address and coordinates will be lost.
23973     *
23974     * @see elm_map_utils_convert_name_into_coord()
23975     * @see elm_map_utils_convert_coord_into_name()
23976     *
23977     * @ingroup Map
23978     */
23979    EAPI void                  elm_map_name_remove(Elm_Map_Name *name) EINA_ARG_NONNULL(1);
23980
23981    /**
23982     * Rotate the map.
23983     *
23984     * @param obj The map object.
23985     * @param degree Angle from 0.0 to 360.0 to rotate arount Z axis.
23986     * @param cx Rotation's center horizontal position.
23987     * @param cy Rotation's center vertical position.
23988     *
23989     * @see elm_map_rotate_get()
23990     *
23991     * @ingroup Map
23992     */
23993    EAPI void                  elm_map_rotate_set(Evas_Object *obj, double degree, Evas_Coord cx, Evas_Coord cy) EINA_ARG_NONNULL(1);
23994
23995    /**
23996     * Get the rotate degree of the map
23997     *
23998     * @param obj The map object
23999     * @param degree Pointer where to store degrees from 0.0 to 360.0
24000     * to rotate arount Z axis.
24001     * @param cx Pointer where to store rotation's center horizontal position.
24002     * @param cy Pointer where to store rotation's center vertical position.
24003     *
24004     * @see elm_map_rotate_set() to set map rotation.
24005     *
24006     * @ingroup Map
24007     */
24008    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);
24009
24010    /**
24011     * Enable or disable mouse wheel to be used to zoom in / out the map.
24012     *
24013     * @param obj The map object.
24014     * @param disabled Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE
24015     * to enable it.
24016     *
24017     * Mouse wheel can be used for the user to zoom in or zoom out the map.
24018     *
24019     * It's disabled by default.
24020     *
24021     * @see elm_map_wheel_disabled_get()
24022     *
24023     * @ingroup Map
24024     */
24025    EAPI void                  elm_map_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
24026
24027    /**
24028     * Get a value whether mouse wheel is enabled or not.
24029     *
24030     * @param obj The map object.
24031     * @return @c EINA_TRUE means map is disabled. @c EINA_FALSE indicates
24032     * it is enabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
24033     *
24034     * Mouse wheel can be used for the user to zoom in or zoom out the map.
24035     *
24036     * @see elm_map_wheel_disabled_set() for details.
24037     *
24038     * @ingroup Map
24039     */
24040    EAPI Eina_Bool             elm_map_wheel_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24041
24042 #ifdef ELM_EMAP
24043    /**
24044     * Add a track on the map
24045     *
24046     * @param obj The map object.
24047     * @param emap The emap route object.
24048     * @return The route object. This is an elm object of type Route.
24049     *
24050     * @see elm_route_add() for details.
24051     *
24052     * @ingroup Map
24053     */
24054    EAPI Evas_Object          *elm_map_track_add(Evas_Object *obj, EMap_Route *emap) EINA_ARG_NONNULL(1);
24055 #endif
24056
24057    /**
24058     * Remove a track from the map
24059     *
24060     * @param obj The map object.
24061     * @param route The track to remove.
24062     *
24063     * @ingroup Map
24064     */
24065    EAPI void                  elm_map_track_remove(Evas_Object *obj, Evas_Object *route) EINA_ARG_NONNULL(1);
24066
24067    /**
24068     * @}
24069     */
24070
24071    /* Route */
24072    EAPI Evas_Object *elm_route_add(Evas_Object *parent);
24073 #ifdef ELM_EMAP
24074    EAPI void elm_route_emap_set(Evas_Object *obj, EMap_Route *emap);
24075 #endif
24076    EAPI double elm_route_lon_min_get(Evas_Object *obj);
24077    EAPI double elm_route_lat_min_get(Evas_Object *obj);
24078    EAPI double elm_route_lon_max_get(Evas_Object *obj);
24079    EAPI double elm_route_lat_max_get(Evas_Object *obj);
24080
24081
24082    /**
24083     * @defgroup Panel Panel
24084     *
24085     * @image html img/widget/panel/preview-00.png
24086     * @image latex img/widget/panel/preview-00.eps
24087     *
24088     * @brief A panel is a type of animated container that contains subobjects.
24089     * It can be expanded or contracted by clicking the button on it's edge.
24090     *
24091     * Orientations are as follows:
24092     * @li ELM_PANEL_ORIENT_TOP
24093     * @li ELM_PANEL_ORIENT_LEFT
24094     * @li ELM_PANEL_ORIENT_RIGHT
24095     *
24096     * Default contents parts of the panel widget that you can use for are:
24097     * @li "default" - A content of the panel
24098     *
24099     * @ref tutorial_panel shows one way to use this widget.
24100     * @{
24101     */
24102    typedef enum _Elm_Panel_Orient
24103      {
24104         ELM_PANEL_ORIENT_TOP, /**< Panel (dis)appears from the top */
24105         ELM_PANEL_ORIENT_BOTTOM, /**< Not implemented */
24106         ELM_PANEL_ORIENT_LEFT, /**< Panel (dis)appears from the left */
24107         ELM_PANEL_ORIENT_RIGHT, /**< Panel (dis)appears from the right */
24108      } Elm_Panel_Orient;
24109    /**
24110     * @brief Adds a panel object
24111     *
24112     * @param parent The parent object
24113     *
24114     * @return The panel object, or NULL on failure
24115     */
24116    EAPI Evas_Object          *elm_panel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24117    /**
24118     * @brief Sets the orientation of the panel
24119     *
24120     * @param parent The parent object
24121     * @param orient The panel orientation. Can be one of the following:
24122     * @li ELM_PANEL_ORIENT_TOP
24123     * @li ELM_PANEL_ORIENT_LEFT
24124     * @li ELM_PANEL_ORIENT_RIGHT
24125     *
24126     * Sets from where the panel will (dis)appear.
24127     */
24128    EAPI void                  elm_panel_orient_set(Evas_Object *obj, Elm_Panel_Orient orient) EINA_ARG_NONNULL(1);
24129    /**
24130     * @brief Get the orientation of the panel.
24131     *
24132     * @param obj The panel object
24133     * @return The Elm_Panel_Orient, or ELM_PANEL_ORIENT_LEFT on failure.
24134     */
24135    EAPI Elm_Panel_Orient      elm_panel_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24136    /**
24137     * @brief Set the content of the panel.
24138     *
24139     * @param obj The panel object
24140     * @param content The panel content
24141     *
24142     * Once the content object is set, a previously set one will be deleted.
24143     * If you want to keep that old content object, use the
24144     * elm_panel_content_unset() function.
24145     *
24146     * @deprecated use elm_object_content_set() instead
24147     *
24148     */
24149    EINA_DEPRECATED EAPI void                  elm_panel_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24150    /**
24151     * @brief Get the content of the panel.
24152     *
24153     * @param obj The panel object
24154     * @return The content that is being used
24155     *
24156     * Return the content object which is set for this widget.
24157     *
24158     * @see elm_panel_content_set()
24159     *
24160     * @deprecated use elm_object_content_get() instead
24161     *
24162     */
24163    EINA_DEPRECATED EAPI Evas_Object          *elm_panel_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24164    /**
24165     * @brief Unset the content of the panel.
24166     *
24167     * @param obj The panel object
24168     * @return The content that was being used
24169     *
24170     * Unparent and return the content object which was set for this widget.
24171     *
24172     * @see elm_panel_content_set()
24173     *
24174     * @deprecated use elm_object_content_unset() instead
24175     *
24176     */
24177    EINA_DEPRECATED EAPI Evas_Object          *elm_panel_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24178    /**
24179     * @brief Set the state of the panel.
24180     *
24181     * @param obj The panel object
24182     * @param hidden If true, the panel will run the animation to contract
24183     */
24184    EAPI void                  elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden) EINA_ARG_NONNULL(1);
24185    /**
24186     * @brief Get the state of the panel.
24187     *
24188     * @param obj The panel object
24189     * @param hidden If true, the panel is in the "hide" state
24190     */
24191    EAPI Eina_Bool             elm_panel_hidden_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24192    /**
24193     * @brief Toggle the hidden state of the panel from code
24194     *
24195     * @param obj The panel object
24196     */
24197    EAPI void                  elm_panel_toggle(Evas_Object *obj) EINA_ARG_NONNULL(1);
24198    /**
24199     * @}
24200     */
24201
24202    /**
24203     * @defgroup Panes Panes
24204     * @ingroup Elementary
24205     *
24206     * @image html img/widget/panes/preview-00.png
24207     * @image latex img/widget/panes/preview-00.eps width=\textwidth
24208     *
24209     * @image html img/panes.png
24210     * @image latex img/panes.eps width=\textwidth
24211     *
24212     * The panes adds a dragable bar between two contents. When dragged
24213     * this bar will resize contents size.
24214     *
24215     * Panes can be displayed vertically or horizontally, and contents
24216     * size proportion can be customized (homogeneous by default).
24217     *
24218     * Smart callbacks one can listen to:
24219     * - "press" - The panes has been pressed (button wasn't released yet).
24220     * - "unpressed" - The panes was released after being pressed.
24221     * - "clicked" - The panes has been clicked>
24222     * - "clicked,double" - The panes has been double clicked
24223     *
24224     * Available styles for it:
24225     * - @c "default"
24226     *
24227     * Default contents parts of the panes widget that you can use for are:
24228     * @li "left" - A leftside content of the panes
24229     * @li "right" - A rightside content of the panes
24230     *
24231     * If panes is displayed vertically, left content will be displayed at
24232     * top.
24233     *
24234     * Here is an example on its usage:
24235     * @li @ref panes_example
24236     */
24237
24238    /**
24239     * @addtogroup Panes
24240     * @{
24241     */
24242
24243    /**
24244     * Add a new panes widget to the given parent Elementary
24245     * (container) object.
24246     *
24247     * @param parent The parent object.
24248     * @return a new panes widget handle or @c NULL, on errors.
24249     *
24250     * This function inserts a new panes widget on the canvas.
24251     *
24252     * @ingroup Panes
24253     */
24254    EAPI Evas_Object          *elm_panes_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24255
24256    /**
24257     * Set the left content of the panes widget.
24258     *
24259     * @param obj The panes object.
24260     * @param content The new left content object.
24261     *
24262     * Once the content object is set, a previously set one will be deleted.
24263     * If you want to keep that old content object, use the
24264     * elm_panes_content_left_unset() function.
24265     *
24266     * If panes is displayed vertically, left content will be displayed at
24267     * top.
24268     *
24269     * @see elm_panes_content_left_get()
24270     * @see elm_panes_content_right_set() to set content on the other side.
24271     *
24272     * @deprecated use elm_object_part_content_set() instead
24273     *
24274     * @ingroup Panes
24275     */
24276    EINA_DEPRECATED EAPI void                  elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24277
24278    /**
24279     * Set the right content of the panes widget.
24280     *
24281     * @param obj The panes object.
24282     * @param content The new right content object.
24283     *
24284     * Once the content object is set, a previously set one will be deleted.
24285     * If you want to keep that old content object, use the
24286     * elm_panes_content_right_unset() function.
24287     *
24288     * If panes is displayed vertically, left content will be displayed at
24289     * bottom.
24290     *
24291     * @see elm_panes_content_right_get()
24292     * @see elm_panes_content_left_set() to set content on the other side.
24293     *
24294     * @deprecated use elm_object_part_content_set() instead
24295     *
24296     * @ingroup Panes
24297     */
24298    EINA_DEPRECATED EAPI void                  elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24299
24300    /**
24301     * Get the left content of the panes.
24302     *
24303     * @param obj The panes object.
24304     * @return The left content object that is being used.
24305     *
24306     * Return the left content object which is set for this widget.
24307     *
24308     * @see elm_panes_content_left_set() for details.
24309     *
24310     * @deprecated use elm_object_part_content_get() instead
24311     *
24312     * @ingroup Panes
24313     */
24314    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_left_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24315
24316    /**
24317     * Get the right content of the panes.
24318     *
24319     * @param obj The panes object
24320     * @return The right content object that is being used
24321     *
24322     * Return the right content object which is set for this widget.
24323     *
24324     * @see elm_panes_content_right_set() for details.
24325     *
24326     * @deprecated use elm_object_part_content_get() instead
24327     *
24328     * @ingroup Panes
24329     */
24330    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_right_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24331
24332    /**
24333     * Unset the left content used for the panes.
24334     *
24335     * @param obj The panes object.
24336     * @return The left content object that was being used.
24337     *
24338     * Unparent and return the left content object which was set for this widget.
24339     *
24340     * @see elm_panes_content_left_set() for details.
24341     * @see elm_panes_content_left_get().
24342     *
24343     * @deprecated use elm_object_part_content_unset() instead
24344     *
24345     * @ingroup Panes
24346     */
24347    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_left_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24348
24349    /**
24350     * Unset the right content used for the panes.
24351     *
24352     * @param obj The panes object.
24353     * @return The right content object that was being used.
24354     *
24355     * Unparent and return the right content object which was set for this
24356     * widget.
24357     *
24358     * @see elm_panes_content_right_set() for details.
24359     * @see elm_panes_content_right_get().
24360     *
24361     * @deprecated use elm_object_part_content_unset() instead
24362     *
24363     * @ingroup Panes
24364     */
24365    EINA_DEPRECATED EAPI Evas_Object          *elm_panes_content_right_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24366
24367    /**
24368     * Get the size proportion of panes widget's left side.
24369     *
24370     * @param obj The panes object.
24371     * @return float value between 0.0 and 1.0 representing size proportion
24372     * of left side.
24373     *
24374     * @see elm_panes_content_left_size_set() for more details.
24375     *
24376     * @ingroup Panes
24377     */
24378    EAPI double                elm_panes_content_left_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24379
24380    /**
24381     * Set the size proportion of panes widget's left side.
24382     *
24383     * @param obj The panes object.
24384     * @param size Value between 0.0 and 1.0 representing size proportion
24385     * of left side.
24386     *
24387     * By default it's homogeneous, i.e., both sides have the same size.
24388     *
24389     * If something different is required, it can be set with this function.
24390     * For example, if the left content should be displayed over
24391     * 75% of the panes size, @p size should be passed as @c 0.75.
24392     * This way, right content will be resized to 25% of panes size.
24393     *
24394     * If displayed vertically, left content is displayed at top, and
24395     * right content at bottom.
24396     *
24397     * @note This proportion will change when user drags the panes bar.
24398     *
24399     * @see elm_panes_content_left_size_get()
24400     *
24401     * @ingroup Panes
24402     */
24403    EAPI void                  elm_panes_content_left_size_set(Evas_Object *obj, double size) EINA_ARG_NONNULL(1);
24404
24405   /**
24406    * Set the orientation of a given panes widget.
24407    *
24408    * @param obj The panes object.
24409    * @param horizontal Use @c EINA_TRUE to make @p obj to be
24410    * @b horizontal, @c EINA_FALSE to make it @b vertical.
24411    *
24412    * Use this function to change how your panes is to be
24413    * disposed: vertically or horizontally.
24414    *
24415    * By default it's displayed horizontally.
24416    *
24417    * @see elm_panes_horizontal_get()
24418    *
24419    * @ingroup Panes
24420    */
24421    EAPI void                  elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
24422
24423    /**
24424     * Retrieve the orientation of a given panes widget.
24425     *
24426     * @param obj The panes object.
24427     * @return @c EINA_TRUE, if @p obj is set to be @b horizontal,
24428     * @c EINA_FALSE if it's @b vertical (and on errors).
24429     *
24430     * @see elm_panes_horizontal_set() for more details.
24431     *
24432     * @ingroup Panes
24433     */
24434    EAPI Eina_Bool             elm_panes_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24435    EAPI void                  elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed) EINA_ARG_NONNULL(1);
24436    EAPI Eina_Bool             elm_panes_fixed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24437
24438    /**
24439     * @}
24440     */
24441
24442    /**
24443     * @defgroup Flip Flip
24444     *
24445     * @image html img/widget/flip/preview-00.png
24446     * @image latex img/widget/flip/preview-00.eps
24447     *
24448     * This widget holds 2 content objects(Evas_Object): one on the front and one
24449     * on the back. It allows you to flip from front to back and vice-versa using
24450     * various animations.
24451     *
24452     * If either the front or back contents are not set the flip will treat that
24453     * as transparent. So if you wore to set the front content but not the back,
24454     * and then call elm_flip_go() you would see whatever is below the flip.
24455     *
24456     * For a list of supported animations see elm_flip_go().
24457     *
24458     * Signals that you can add callbacks for are:
24459     * "animate,begin" - when a flip animation was started
24460     * "animate,done" - when a flip animation is finished
24461     *
24462     * @ref tutorial_flip show how to use most of the API.
24463     *
24464     * @{
24465     */
24466    typedef enum _Elm_Flip_Mode
24467      {
24468         ELM_FLIP_ROTATE_Y_CENTER_AXIS,
24469         ELM_FLIP_ROTATE_X_CENTER_AXIS,
24470         ELM_FLIP_ROTATE_XZ_CENTER_AXIS,
24471         ELM_FLIP_ROTATE_YZ_CENTER_AXIS,
24472         ELM_FLIP_CUBE_LEFT,
24473         ELM_FLIP_CUBE_RIGHT,
24474         ELM_FLIP_CUBE_UP,
24475         ELM_FLIP_CUBE_DOWN,
24476         ELM_FLIP_PAGE_LEFT,
24477         ELM_FLIP_PAGE_RIGHT,
24478         ELM_FLIP_PAGE_UP,
24479         ELM_FLIP_PAGE_DOWN
24480      } Elm_Flip_Mode;
24481    typedef enum _Elm_Flip_Interaction
24482      {
24483         ELM_FLIP_INTERACTION_NONE,
24484         ELM_FLIP_INTERACTION_ROTATE,
24485         ELM_FLIP_INTERACTION_CUBE,
24486         ELM_FLIP_INTERACTION_PAGE
24487      } Elm_Flip_Interaction;
24488    typedef enum _Elm_Flip_Direction
24489      {
24490         ELM_FLIP_DIRECTION_UP, /**< Allows interaction with the top of the widget */
24491         ELM_FLIP_DIRECTION_DOWN, /**< Allows interaction with the bottom of the widget */
24492         ELM_FLIP_DIRECTION_LEFT, /**< Allows interaction with the left portion of the widget */
24493         ELM_FLIP_DIRECTION_RIGHT /**< Allows interaction with the right portion of the widget */
24494      } Elm_Flip_Direction;
24495    /**
24496     * @brief Add a new flip to the parent
24497     *
24498     * @param parent The parent object
24499     * @return The new object or NULL if it cannot be created
24500     */
24501    EAPI Evas_Object *elm_flip_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24502    /**
24503     * @brief Set the front content of the flip widget.
24504     *
24505     * @param obj The flip object
24506     * @param content The new front content object
24507     *
24508     * Once the content object is set, a previously set one will be deleted.
24509     * If you want to keep that old content object, use the
24510     * elm_flip_content_front_unset() function.
24511     */
24512    EAPI void         elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24513    /**
24514     * @brief Set the back content of the flip widget.
24515     *
24516     * @param obj The flip object
24517     * @param content The new back content object
24518     *
24519     * Once the content object is set, a previously set one will be deleted.
24520     * If you want to keep that old content object, use the
24521     * elm_flip_content_back_unset() function.
24522     */
24523    EAPI void         elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24524    /**
24525     * @brief Get the front content used for the flip
24526     *
24527     * @param obj The flip object
24528     * @return The front content object that is being used
24529     *
24530     * Return the front content object which is set for this widget.
24531     */
24532    EAPI Evas_Object *elm_flip_content_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24533    /**
24534     * @brief Get the back content used for the flip
24535     *
24536     * @param obj The flip object
24537     * @return The back content object that is being used
24538     *
24539     * Return the back content object which is set for this widget.
24540     */
24541    EAPI Evas_Object *elm_flip_content_back_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24542    /**
24543     * @brief Unset the front content used for the flip
24544     *
24545     * @param obj The flip object
24546     * @return The front content object that was being used
24547     *
24548     * Unparent and return the front content object which was set for this widget.
24549     */
24550    EAPI Evas_Object *elm_flip_content_front_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24551    /**
24552     * @brief Unset the back content used for the flip
24553     *
24554     * @param obj The flip object
24555     * @return The back content object that was being used
24556     *
24557     * Unparent and return the back content object which was set for this widget.
24558     */
24559    EAPI Evas_Object *elm_flip_content_back_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24560    /**
24561     * @brief Get flip front visibility state
24562     *
24563     * @param obj The flip objct
24564     * @return EINA_TRUE if front front is showing, EINA_FALSE if the back is
24565     * showing.
24566     */
24567    EAPI Eina_Bool    elm_flip_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24568    /**
24569     * @brief Set flip perspective
24570     *
24571     * @param obj The flip object
24572     * @param foc The coordinate to set the focus on
24573     * @param x The X coordinate
24574     * @param y The Y coordinate
24575     *
24576     * @warning This function currently does nothing.
24577     */
24578    EAPI void         elm_flip_perspective_set(Evas_Object *obj, Evas_Coord foc, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
24579    /**
24580     * @brief Runs the flip animation
24581     *
24582     * @param obj The flip object
24583     * @param mode The mode type
24584     *
24585     * Flips the front and back contents using the @p mode animation. This
24586     * efectively hides the currently visible content and shows the hidden one.
24587     *
24588     * There a number of possible animations to use for the flipping:
24589     * @li ELM_FLIP_ROTATE_X_CENTER_AXIS - Rotate the currently visible content
24590     * around a horizontal axis in the middle of its height, the other content
24591     * is shown as the other side of the flip.
24592     * @li ELM_FLIP_ROTATE_Y_CENTER_AXIS - Rotate the currently visible content
24593     * around a vertical axis in the middle of its width, the other content is
24594     * shown as the other side of the flip.
24595     * @li ELM_FLIP_ROTATE_XZ_CENTER_AXIS - Rotate the currently visible content
24596     * around a diagonal axis in the middle of its width, the other content is
24597     * shown as the other side of the flip.
24598     * @li ELM_FLIP_ROTATE_YZ_CENTER_AXIS - Rotate the currently visible content
24599     * around a diagonal axis in the middle of its height, the other content is
24600     * shown as the other side of the flip.
24601     * @li ELM_FLIP_CUBE_LEFT - Rotate the currently visible content to the left
24602     * as if the flip was a cube, the other content is show as the right face of
24603     * the cube.
24604     * @li ELM_FLIP_CUBE_RIGHT - Rotate the currently visible content to the
24605     * right as if the flip was a cube, the other content is show as the left
24606     * face of the cube.
24607     * @li ELM_FLIP_CUBE_UP - Rotate the currently visible content up as if the
24608     * flip was a cube, the other content is show as the bottom face of the cube.
24609     * @li ELM_FLIP_CUBE_DOWN - Rotate the currently visible content down as if
24610     * the flip was a cube, the other content is show as the upper face of the
24611     * cube.
24612     * @li ELM_FLIP_PAGE_LEFT - Move the currently visible content to the left as
24613     * if the flip was a book, the other content is shown as the page below that.
24614     * @li ELM_FLIP_PAGE_RIGHT - Move the currently visible content to the right
24615     * as if the flip was a book, the other content is shown as the page below
24616     * that.
24617     * @li ELM_FLIP_PAGE_UP - Move the currently visible content up as if the
24618     * flip was a book, the other content is shown as the page below that.
24619     * @li ELM_FLIP_PAGE_DOWN - Move the currently visible content down as if the
24620     * flip was a book, the other content is shown as the page below that.
24621     *
24622     * @image html elm_flip.png
24623     * @image latex elm_flip.eps width=\textwidth
24624     */
24625    EAPI void         elm_flip_go(Evas_Object *obj, Elm_Flip_Mode mode) EINA_ARG_NONNULL(1);
24626    /**
24627     * @brief Set the interactive flip mode
24628     *
24629     * @param obj The flip object
24630     * @param mode The interactive flip mode to use
24631     *
24632     * This sets if the flip should be interactive (allow user to click and
24633     * drag a side of the flip to reveal the back page and cause it to flip).
24634     * By default a flip is not interactive. You may also need to set which
24635     * sides of the flip are "active" for flipping and how much space they use
24636     * (a minimum of a finger size) with elm_flip_interacton_direction_enabled_set()
24637     * and elm_flip_interacton_direction_hitsize_set()
24638     *
24639     * The four avilable mode of interaction are:
24640     * @li ELM_FLIP_INTERACTION_NONE - No interaction is allowed
24641     * @li ELM_FLIP_INTERACTION_ROTATE - Interaction will cause rotate animation
24642     * @li ELM_FLIP_INTERACTION_CUBE - Interaction will cause cube animation
24643     * @li ELM_FLIP_INTERACTION_PAGE - Interaction will cause page animation
24644     *
24645     * @note ELM_FLIP_INTERACTION_ROTATE won't cause
24646     * ELM_FLIP_ROTATE_XZ_CENTER_AXIS or ELM_FLIP_ROTATE_YZ_CENTER_AXIS to
24647     * happen, those can only be acheived with elm_flip_go();
24648     */
24649    EAPI void         elm_flip_interaction_set(Evas_Object *obj, Elm_Flip_Interaction mode);
24650    /**
24651     * @brief Get the interactive flip mode
24652     *
24653     * @param obj The flip object
24654     * @return The interactive flip mode
24655     *
24656     * Returns the interactive flip mode set by elm_flip_interaction_set()
24657     */
24658    EAPI Elm_Flip_Interaction elm_flip_interaction_get(const Evas_Object *obj);
24659    /**
24660     * @brief Set which directions of the flip respond to interactive flip
24661     *
24662     * @param obj The flip object
24663     * @param dir The direction to change
24664     * @param enabled If that direction is enabled or not
24665     *
24666     * By default all directions are disabled, so you may want to enable the
24667     * desired directions for flipping if you need interactive flipping. You must
24668     * call this function once for each direction that should be enabled.
24669     *
24670     * @see elm_flip_interaction_set()
24671     */
24672    EAPI void         elm_flip_interacton_direction_enabled_set(Evas_Object *obj, Elm_Flip_Direction dir, Eina_Bool enabled);
24673    /**
24674     * @brief Get the enabled state of that flip direction
24675     *
24676     * @param obj The flip object
24677     * @param dir The direction to check
24678     * @return If that direction is enabled or not
24679     *
24680     * Gets the enabled state set by elm_flip_interacton_direction_enabled_set()
24681     *
24682     * @see elm_flip_interaction_set()
24683     */
24684    EAPI Eina_Bool    elm_flip_interacton_direction_enabled_get(Evas_Object *obj, Elm_Flip_Direction dir);
24685    /**
24686     * @brief Set the amount of the flip that is sensitive to interactive flip
24687     *
24688     * @param obj The flip object
24689     * @param dir The direction to modify
24690     * @param hitsize The amount of that dimension (0.0 to 1.0) to use
24691     *
24692     * Set the amount of the flip that is sensitive to interactive flip, with 0
24693     * representing no area in the flip and 1 representing the entire flip. There
24694     * is however a consideration to be made in that the area will never be
24695     * smaller than the finger size set(as set in your Elementary configuration).
24696     *
24697     * @see elm_flip_interaction_set()
24698     */
24699    EAPI void         elm_flip_interacton_direction_hitsize_set(Evas_Object *obj, Elm_Flip_Direction dir, double hitsize);
24700    /**
24701     * @brief Get the amount of the flip that is sensitive to interactive flip
24702     *
24703     * @param obj The flip object
24704     * @param dir The direction to check
24705     * @return The size set for that direction
24706     *
24707     * Returns the amount os sensitive area set by
24708     * elm_flip_interacton_direction_hitsize_set().
24709     */
24710    EAPI double       elm_flip_interacton_direction_hitsize_get(Evas_Object *obj, Elm_Flip_Direction dir);
24711    /**
24712     * @}
24713     */
24714
24715    /* scrolledentry */
24716    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24717    EINA_DEPRECATED EAPI void         elm_scrolled_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
24718    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24719    EINA_DEPRECATED EAPI void         elm_scrolled_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
24720    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24721    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24722    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24723    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24724    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24725    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24726    EINA_DEPRECATED EAPI void         elm_scrolled_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
24727    EINA_DEPRECATED EAPI void         elm_scrolled_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
24728    EINA_DEPRECATED EAPI void         elm_scrolled_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
24729    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24730    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
24731    EINA_DEPRECATED EAPI void         elm_scrolled_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
24732    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
24733    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
24734    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
24735    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
24736    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24737    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24738    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24739    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
24740    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
24741    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
24742    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24743    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24744    EINA_DEPRECATED EAPI const char  *elm_scrolled_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24745    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
24746    EINA_DEPRECATED EAPI int          elm_scrolled_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24747    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
24748    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
24749    EINA_DEPRECATED EAPI void         elm_scrolled_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
24750    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
24751    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);
24752    EINA_DEPRECATED EAPI void         elm_scrolled_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
24753    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24754    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);
24755    EINA_DEPRECATED EAPI void         elm_scrolled_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
24756    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);
24757    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1, 2);
24758    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24759    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24760    EINA_DEPRECATED EAPI void         elm_scrolled_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
24761    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1, 2);
24762    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24763    EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24764    EINA_DEPRECATED EAPI void         elm_scrolled_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
24765    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);
24766    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);
24767    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);
24768    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);
24769    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);
24770    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);
24771    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
24772    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
24773    EINA_DEPRECATED EAPI void         elm_scrolled_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
24774    EINA_DEPRECATED EAPI void         elm_scrolled_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
24775    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24776    EINA_DEPRECATED EAPI void         elm_scrolled_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
24777    EINA_DEPRECATED EAPI Eina_Bool    elm_scrolled_entry_cnp_textonly_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
24778
24779    /**
24780     * @defgroup Conformant Conformant
24781     * @ingroup Elementary
24782     *
24783     * @image html img/widget/conformant/preview-00.png
24784     * @image latex img/widget/conformant/preview-00.eps width=\textwidth
24785     *
24786     * @image html img/conformant.png
24787     * @image latex img/conformant.eps width=\textwidth
24788     *
24789     * The aim is to provide a widget that can be used in elementary apps to
24790     * account for space taken up by the indicator, virtual keypad & softkey
24791     * windows when running the illume2 module of E17.
24792     *
24793     * So conformant content will be sized and positioned considering the
24794     * space required for such stuff, and when they popup, as a keyboard
24795     * shows when an entry is selected, conformant content won't change.
24796     *
24797     * Available styles for it:
24798     * - @c "default"
24799     *
24800     * Default contents parts of the conformant widget that you can use for are:
24801     * @li "default" - A content of the conformant
24802     *
24803     * See how to use this widget in this example:
24804     * @ref conformant_example
24805     */
24806
24807    /**
24808     * @addtogroup Conformant
24809     * @{
24810     */
24811
24812    /**
24813     * Add a new conformant widget to the given parent Elementary
24814     * (container) object.
24815     *
24816     * @param parent The parent object.
24817     * @return A new conformant widget handle or @c NULL, on errors.
24818     *
24819     * This function inserts a new conformant widget on the canvas.
24820     *
24821     * @ingroup Conformant
24822     */
24823    EAPI Evas_Object *elm_conformant_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24824
24825    /**
24826     * Set the content of the conformant widget.
24827     *
24828     * @param obj The conformant object.
24829     * @param content The content to be displayed by the conformant.
24830     *
24831     * Content will be sized and positioned considering the space required
24832     * to display a virtual keyboard. So it won't fill all the conformant
24833     * size. This way is possible to be sure that content won't resize
24834     * or be re-positioned after the keyboard is displayed.
24835     *
24836     * Once the content object is set, a previously set one will be deleted.
24837     * If you want to keep that old content object, use the
24838     * elm_object_content_unset() function.
24839     *
24840     * @see elm_object_content_unset()
24841     * @see elm_object_content_get()
24842     *
24843     * @deprecated use elm_object_content_set() instead
24844     *
24845     * @ingroup Conformant
24846     */
24847    EINA_DEPRECATED EAPI void         elm_conformant_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24848
24849    /**
24850     * Get the content of the conformant widget.
24851     *
24852     * @param obj The conformant object.
24853     * @return The content that is being used.
24854     *
24855     * Return the content object which is set for this widget.
24856     * It won't be unparent from conformant. For that, use
24857     * elm_object_content_unset().
24858     *
24859     * @see elm_object_content_set().
24860     * @see elm_object_content_unset()
24861     *
24862     * @deprecated use elm_object_content_get() instead
24863     *
24864     * @ingroup Conformant
24865     */
24866    EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24867
24868    /**
24869     * Unset the content of the conformant widget.
24870     *
24871     * @param obj The conformant object.
24872     * @return The content that was being used.
24873     *
24874     * Unparent and return the content object which was set for this widget.
24875     *
24876     * @see elm_object_content_set().
24877     *
24878     * @deprecated use elm_object_content_unset() instead
24879     *
24880     * @ingroup Conformant
24881     */
24882    EINA_DEPRECATED EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24883
24884    /**
24885     * Returns the Evas_Object that represents the content area.
24886     *
24887     * @param obj The conformant object.
24888     * @return The content area of the widget.
24889     *
24890     * @ingroup Conformant
24891     */
24892    EAPI Evas_Object *elm_conformant_content_area_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24893
24894    /**
24895     * @}
24896     */
24897
24898    /**
24899     * @defgroup Mapbuf Mapbuf
24900     * @ingroup Elementary
24901     *
24902     * @image html img/widget/mapbuf/preview-00.png
24903     * @image latex img/widget/mapbuf/preview-00.eps width=\textwidth
24904     *
24905     * This holds one content object and uses an Evas Map of transformation
24906     * points to be later used with this content. So the content will be
24907     * moved, resized, etc as a single image. So it will improve performance
24908     * when you have a complex interafce, with a lot of elements, and will
24909     * need to resize or move it frequently (the content object and its
24910     * children).
24911     *
24912     * Default contents parts of the mapbuf widget that you can use for are:
24913     * @li "default" - A content of the mapbuf
24914     *
24915     * To enable map, elm_mapbuf_enabled_set() should be used.
24916     *
24917     * See how to use this widget in this example:
24918     * @ref mapbuf_example
24919     */
24920
24921    /**
24922     * @addtogroup Mapbuf
24923     * @{
24924     */
24925
24926    /**
24927     * Add a new mapbuf widget to the given parent Elementary
24928     * (container) object.
24929     *
24930     * @param parent The parent object.
24931     * @return A new mapbuf widget handle or @c NULL, on errors.
24932     *
24933     * This function inserts a new mapbuf widget on the canvas.
24934     *
24935     * @ingroup Mapbuf
24936     */
24937    EAPI Evas_Object *elm_mapbuf_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
24938
24939    /**
24940     * Set the content of the mapbuf.
24941     *
24942     * @param obj The mapbuf object.
24943     * @param content The content that will be filled in this mapbuf object.
24944     *
24945     * Once the content object is set, a previously set one will be deleted.
24946     * If you want to keep that old content object, use the
24947     * elm_mapbuf_content_unset() function.
24948     *
24949     * To enable map, elm_mapbuf_enabled_set() should be used.
24950     *
24951     * @deprecated use elm_object_content_set() instead
24952     *
24953     * @ingroup Mapbuf
24954     */
24955    EINA_DEPRECATED EAPI void         elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
24956
24957    /**
24958     * Get the content of the mapbuf.
24959     *
24960     * @param obj The mapbuf object.
24961     * @return The content that is being used.
24962     *
24963     * Return the content object which is set for this widget.
24964     *
24965     * @see elm_mapbuf_content_set() for details.
24966     *
24967     * @deprecated use elm_object_content_get() instead
24968     *
24969     * @ingroup Mapbuf
24970     */
24971    EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
24972
24973    /**
24974     * Unset the content of the mapbuf.
24975     *
24976     * @param obj The mapbuf object.
24977     * @return The content that was being used.
24978     *
24979     * Unparent and return the content object which was set for this widget.
24980     *
24981     * @see elm_mapbuf_content_set() for details.
24982     *
24983     * @deprecated use elm_object_content_unset() instead
24984     *
24985     * @ingroup Mapbuf
24986     */
24987    EINA_DEPRECATED EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
24988
24989    /**
24990     * Enable or disable the map.
24991     *
24992     * @param obj The mapbuf object.
24993     * @param enabled @c EINA_TRUE to enable map or @c EINA_FALSE to disable it.
24994     *
24995     * This enables the map that is set or disables it. On enable, the object
24996     * geometry will be saved, and the new geometry will change (position and
24997     * size) to reflect the map geometry set.
24998     *
24999     * Also, when enabled, alpha and smooth states will be used, so if the
25000     * content isn't solid, alpha should be enabled, for example, otherwise
25001     * a black retangle will fill the content.
25002     *
25003     * When disabled, the stored map will be freed and geometry prior to
25004     * enabling the map will be restored.
25005     *
25006     * It's disabled by default.
25007     *
25008     * @see elm_mapbuf_alpha_set()
25009     * @see elm_mapbuf_smooth_set()
25010     *
25011     * @ingroup Mapbuf
25012     */
25013    EAPI void         elm_mapbuf_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
25014
25015    /**
25016     * Get a value whether map is enabled or not.
25017     *
25018     * @param obj The mapbuf object.
25019     * @return @c EINA_TRUE means map is enabled. @c EINA_FALSE indicates
25020     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25021     *
25022     * @see elm_mapbuf_enabled_set() for details.
25023     *
25024     * @ingroup Mapbuf
25025     */
25026    EAPI Eina_Bool    elm_mapbuf_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25027
25028    /**
25029     * Enable or disable smooth map rendering.
25030     *
25031     * @param obj The mapbuf object.
25032     * @param smooth @c EINA_TRUE to enable smooth map rendering or @c EINA_FALSE
25033     * to disable it.
25034     *
25035     * This sets smoothing for map rendering. If the object is a type that has
25036     * its own smoothing settings, then both the smooth settings for this object
25037     * and the map must be turned off.
25038     *
25039     * By default smooth maps are enabled.
25040     *
25041     * @ingroup Mapbuf
25042     */
25043    EAPI void         elm_mapbuf_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
25044
25045    /**
25046     * Get a value whether smooth map rendering is enabled or not.
25047     *
25048     * @param obj The mapbuf object.
25049     * @return @c EINA_TRUE means smooth map rendering is enabled. @c EINA_FALSE
25050     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25051     *
25052     * @see elm_mapbuf_smooth_set() for details.
25053     *
25054     * @ingroup Mapbuf
25055     */
25056    EAPI Eina_Bool    elm_mapbuf_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25057
25058    /**
25059     * Set or unset alpha flag for map rendering.
25060     *
25061     * @param obj The mapbuf object.
25062     * @param alpha @c EINA_TRUE to enable alpha blending or @c EINA_FALSE
25063     * to disable it.
25064     *
25065     * This sets alpha flag for map rendering. If the object is a type that has
25066     * its own alpha settings, then this will take precedence. Only image objects
25067     * have this currently. It stops alpha blending of the map area, and is
25068     * useful if you know the object and/or all sub-objects is 100% solid.
25069     *
25070     * Alpha is enabled by default.
25071     *
25072     * @ingroup Mapbuf
25073     */
25074    EAPI void         elm_mapbuf_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
25075
25076    /**
25077     * Get a value whether alpha blending is enabled or not.
25078     *
25079     * @param obj The mapbuf object.
25080     * @return @c EINA_TRUE means alpha blending is enabled. @c EINA_FALSE
25081     * indicates it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25082     *
25083     * @see elm_mapbuf_alpha_set() for details.
25084     *
25085     * @ingroup Mapbuf
25086     */
25087    EAPI Eina_Bool    elm_mapbuf_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25088
25089    /**
25090     * @}
25091     */
25092
25093    /**
25094     * @defgroup Flipselector Flip Selector
25095     *
25096     * @image html img/widget/flipselector/preview-00.png
25097     * @image latex img/widget/flipselector/preview-00.eps
25098     *
25099     * A flip selector is a widget to show a set of @b text items, one
25100     * at a time, with the same sheet switching style as the @ref Clock
25101     * "clock" widget, when one changes the current displaying sheet
25102     * (thus, the "flip" in the name).
25103     *
25104     * User clicks to flip sheets which are @b held for some time will
25105     * make the flip selector to flip continuosly and automatically for
25106     * the user. The interval between flips will keep growing in time,
25107     * so that it helps the user to reach an item which is distant from
25108     * the current selection.
25109     *
25110     * Smart callbacks one can register to:
25111     * - @c "selected" - when the widget's selected text item is changed
25112     * - @c "overflowed" - when the widget's current selection is changed
25113     *   from the first item in its list to the last
25114     * - @c "underflowed" - when the widget's current selection is changed
25115     *   from the last item in its list to the first
25116     *
25117     * Available styles for it:
25118     * - @c "default"
25119     *
25120          * To set/get the label of the flipselector item, you can use
25121          * elm_object_item_text_set/get APIs.
25122          * Once the text is set, a previously set one will be deleted.
25123          *
25124     * Here is an example on its usage:
25125     * @li @ref flipselector_example
25126     */
25127
25128    /**
25129     * @addtogroup Flipselector
25130     * @{
25131     */
25132
25133    /**
25134     * Add a new flip selector widget to the given parent Elementary
25135     * (container) widget
25136     *
25137     * @param parent The parent object
25138     * @return a new flip selector widget handle or @c NULL, on errors
25139     *
25140     * This function inserts a new flip selector widget on the canvas.
25141     *
25142     * @ingroup Flipselector
25143     */
25144    EAPI Evas_Object               *elm_flipselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25145
25146    /**
25147     * Programmatically select the next item of a flip selector widget
25148     *
25149     * @param obj The flipselector object
25150     *
25151     * @note The selection will be animated. Also, if it reaches the
25152     * end of its list of member items, it will continue with the first
25153     * one onwards.
25154     *
25155     * @ingroup Flipselector
25156     */
25157    EAPI void                       elm_flipselector_flip_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
25158
25159    /**
25160     * Programmatically select the previous item of a flip selector
25161     * widget
25162     *
25163     * @param obj The flipselector object
25164     *
25165     * @note The selection will be animated.  Also, if it reaches the
25166     * beginning of its list of member items, it will continue with the
25167     * last one backwards.
25168     *
25169     * @ingroup Flipselector
25170     */
25171    EAPI void                       elm_flipselector_flip_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
25172
25173    /**
25174     * Append a (text) item to a flip selector widget
25175     *
25176     * @param obj The flipselector object
25177     * @param label The (text) label of the new item
25178     * @param func Convenience callback function to take place when
25179     * item is selected
25180     * @param data Data passed to @p func, above
25181     * @return A handle to the item added or @c NULL, on errors
25182     *
25183     * The widget's list of labels to show will be appended with the
25184     * given value. If the user wishes so, a callback function pointer
25185     * can be passed, which will get called when this same item is
25186     * selected.
25187     *
25188     * @note The current selection @b won't be modified by appending an
25189     * element to the list.
25190     *
25191     * @note The maximum length of the text label is going to be
25192     * determined <b>by the widget's theme</b>. Strings larger than
25193     * that value are going to be @b truncated.
25194     *
25195     * @ingroup Flipselector
25196     */
25197    EAPI Elm_Object_Item     *elm_flipselector_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
25198
25199    /**
25200     * Prepend a (text) item to a flip selector widget
25201     *
25202     * @param obj The flipselector object
25203     * @param label The (text) label of the new item
25204     * @param func Convenience callback function to take place when
25205     * item is selected
25206     * @param data Data passed to @p func, above
25207     * @return A handle to the item added or @c NULL, on errors
25208     *
25209     * The widget's list of labels to show will be prepended with the
25210     * given value. If the user wishes so, a callback function pointer
25211     * can be passed, which will get called when this same item is
25212     * selected.
25213     *
25214     * @note The current selection @b won't be modified by prepending
25215     * an element to the list.
25216     *
25217     * @note The maximum length of the text label is going to be
25218     * determined <b>by the widget's theme</b>. Strings larger than
25219     * that value are going to be @b truncated.
25220     *
25221     * @ingroup Flipselector
25222     */
25223    EAPI Elm_Object_Item     *elm_flipselector_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
25224
25225    /**
25226     * Get the internal list of items in a given flip selector widget.
25227     *
25228     * @param obj The flipselector object
25229     * @return The list of items (#Elm_Object_Item as data) or
25230     * @c NULL on errors.
25231     *
25232     * This list is @b not to be modified in any way and must not be
25233     * freed. Use the list members with functions like
25234     * elm_object_item_text_set(),
25235     * elm_object_item_text_get(),
25236     * elm_flipselector_item_del(),
25237     * elm_flipselector_item_selected_get(),
25238     * elm_flipselector_item_selected_set().
25239     *
25240     * @warning This list is only valid until @p obj object's internal
25241     * items list is changed. It should be fetched again with another
25242     * call to this function when changes happen.
25243     *
25244     * @ingroup Flipselector
25245     */
25246    EAPI const Eina_List           *elm_flipselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25247
25248    /**
25249     * Get the first item in the given flip selector widget's list of
25250     * items.
25251     *
25252     * @param obj The flipselector object
25253     * @return The first item or @c NULL, if it has no items (and on
25254     * errors)
25255     *
25256     * @see elm_flipselector_item_append()
25257     * @see elm_flipselector_last_item_get()
25258     *
25259     * @ingroup Flipselector
25260     */
25261    EAPI Elm_Object_Item     *elm_flipselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25262
25263    /**
25264     * Get the last item in the given flip selector widget's list of
25265     * items.
25266     *
25267     * @param obj The flipselector object
25268     * @return The last item or @c NULL, if it has no items (and on
25269     * errors)
25270     *
25271     * @see elm_flipselector_item_prepend()
25272     * @see elm_flipselector_first_item_get()
25273     *
25274     * @ingroup Flipselector
25275     */
25276    EAPI Elm_Object_Item     *elm_flipselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25277
25278    /**
25279     * Get the currently selected item in a flip selector widget.
25280     *
25281     * @param obj The flipselector object
25282     * @return The selected item or @c NULL, if the widget has no items
25283     * (and on erros)
25284     *
25285     * @ingroup Flipselector
25286     */
25287    EAPI Elm_Object_Item     *elm_flipselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25288
25289    /**
25290     * Set whether a given flip selector widget's item should be the
25291     * currently selected one.
25292     *
25293     * @param it The flip selector item
25294     * @param selected @c EINA_TRUE to select it, @c EINA_FALSE to unselect.
25295     *
25296     * This sets whether @p item is or not the selected (thus, under
25297     * display) one. If @p item is different than one under display,
25298     * the latter will be unselected. If the @p item is set to be
25299     * unselected, on the other hand, the @b first item in the widget's
25300     * internal members list will be the new selected one.
25301     *
25302     * @see elm_flipselector_item_selected_get()
25303     *
25304     * @ingroup Flipselector
25305     */
25306    EAPI void                       elm_flipselector_item_selected_set(Elm_Object_Item *it, Eina_Bool selected) EINA_ARG_NONNULL(1);
25307
25308    /**
25309     * Get whether a given flip selector widget's item is the currently
25310     * selected one.
25311     *
25312     * @param it The flip selector item
25313     * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
25314     * (or on errors).
25315     *
25316     * @see elm_flipselector_item_selected_set()
25317     *
25318     * @ingroup Flipselector
25319     */
25320    EAPI Eina_Bool                  elm_flipselector_item_selected_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25321
25322    /**
25323     * Delete a given item from a flip selector widget.
25324     *
25325     * @param it The item to delete
25326     *
25327     * @ingroup Flipselector
25328     */
25329    EAPI void                       elm_flipselector_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25330
25331    /**
25332     * Get the label of a given flip selector widget's item.
25333     *
25334     * @param it The item to get label from
25335     * @return The text label of @p item or @c NULL, on errors
25336     *
25337     * @see elm_object_item_text_set()
25338     *
25339     * @deprecated see elm_object_item_text_get() instead
25340     * @ingroup Flipselector
25341     */
25342    EINA_DEPRECATED EAPI const char                *elm_flipselector_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25343
25344    /**
25345     * Set the label of a given flip selector widget's item.
25346     *
25347     * @param it The item to set label on
25348     * @param label The text label string, in UTF-8 encoding
25349     *
25350     * @see elm_object_item_text_get()
25351     *
25352          * @deprecated see elm_object_item_text_set() instead
25353     * @ingroup Flipselector
25354     */
25355    EINA_DEPRECATED EAPI void                       elm_flipselector_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
25356
25357    /**
25358     * Gets the item before @p item in a flip selector widget's
25359     * internal list of items.
25360     *
25361     * @param it The item to fetch previous from
25362     * @return The item before the @p item, in its parent's list. If
25363     *         there is no previous item for @p item or there's an
25364     *         error, @c NULL is returned.
25365     *
25366     * @see elm_flipselector_item_next_get()
25367     *
25368     * @ingroup Flipselector
25369     */
25370    EAPI Elm_Object_Item     *elm_flipselector_item_prev_get(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25371
25372    /**
25373     * Gets the item after @p item in a flip selector widget's
25374     * internal list of items.
25375     *
25376     * @param it The item to fetch next from
25377     * @return The item after the @p item, in its parent's list. If
25378     *         there is no next item for @p item or there's an
25379     *         error, @c NULL is returned.
25380     *
25381     * @see elm_flipselector_item_next_get()
25382     *
25383     * @ingroup Flipselector
25384     */
25385    EAPI Elm_Object_Item     *elm_flipselector_item_next_get(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
25386
25387    /**
25388     * Set the interval on time updates for an user mouse button hold
25389     * on a flip selector widget.
25390     *
25391     * @param obj The flip selector object
25392     * @param interval The (first) interval value in seconds
25393     *
25394     * This interval value is @b decreased while the user holds the
25395     * mouse pointer either flipping up or flipping doww a given flip
25396     * selector.
25397     *
25398     * This helps the user to get to a given item distant from the
25399     * current one easier/faster, as it will start to flip quicker and
25400     * quicker on mouse button holds.
25401     *
25402     * The calculation for the next flip interval value, starting from
25403     * the one set with this call, is the previous interval divided by
25404     * 1.05, so it decreases a little bit.
25405     *
25406     * The default starting interval value for automatic flips is
25407     * @b 0.85 seconds.
25408     *
25409     * @see elm_flipselector_interval_get()
25410     *
25411     * @ingroup Flipselector
25412     */
25413    EAPI void                       elm_flipselector_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
25414
25415    /**
25416     * Get the interval on time updates for an user mouse button hold
25417     * on a flip selector widget.
25418     *
25419     * @param obj The flip selector object
25420     * @return The (first) interval value, in seconds, set on it
25421     *
25422     * @see elm_flipselector_interval_set() for more details
25423     *
25424     * @ingroup Flipselector
25425     */
25426    EAPI double                     elm_flipselector_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25427    /**
25428     * @}
25429     */
25430
25431    /**
25432     * @addtogroup Calendar
25433     * @{
25434     */
25435
25436    /**
25437     * @enum _Elm_Calendar_Mark_Repeat
25438     * @typedef Elm_Calendar_Mark_Repeat
25439     *
25440     * Event periodicity, used to define if a mark should be repeated
25441     * @b beyond event's day. It's set when a mark is added.
25442     *
25443     * So, for a mark added to 13th May with periodicity set to WEEKLY,
25444     * there will be marks every week after this date. Marks will be displayed
25445     * at 13th, 20th, 27th, 3rd June ...
25446     *
25447     * Values don't work as bitmask, only one can be choosen.
25448     *
25449     * @see elm_calendar_mark_add()
25450     *
25451     * @ingroup Calendar
25452     */
25453    typedef enum _Elm_Calendar_Mark_Repeat
25454      {
25455         ELM_CALENDAR_UNIQUE, /**< Default value. Marks will be displayed only on event day. */
25456         ELM_CALENDAR_DAILY, /**< Marks will be displayed everyday after event day (inclusive). */
25457         ELM_CALENDAR_WEEKLY, /**< Marks will be displayed every week after event day (inclusive) - i.e. each seven days. */
25458         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*/
25459         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. */
25460      } Elm_Calendar_Mark_Repeat;
25461
25462    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(). */
25463
25464    /**
25465     * Add a new calendar widget to the given parent Elementary
25466     * (container) object.
25467     *
25468     * @param parent The parent object.
25469     * @return a new calendar widget handle or @c NULL, on errors.
25470     *
25471     * This function inserts a new calendar widget on the canvas.
25472     *
25473     * @ref calendar_example_01
25474     *
25475     * @ingroup Calendar
25476     */
25477    EAPI Evas_Object       *elm_calendar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25478
25479    /**
25480     * Get weekdays names displayed by the calendar.
25481     *
25482     * @param obj The calendar object.
25483     * @return Array of seven strings to be used as weekday names.
25484     *
25485     * By default, weekdays abbreviations get from system are displayed:
25486     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
25487     * The first string is related to Sunday, the second to Monday...
25488     *
25489     * @see elm_calendar_weekdays_name_set()
25490     *
25491     * @ref calendar_example_05
25492     *
25493     * @ingroup Calendar
25494     */
25495    EAPI const char       **elm_calendar_weekdays_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25496
25497    /**
25498     * Set weekdays names to be displayed by the calendar.
25499     *
25500     * @param obj The calendar object.
25501     * @param weekdays Array of seven strings to be used as weekday names.
25502     * @warning It must have 7 elements, or it will access invalid memory.
25503     * @warning The strings must be NULL terminated ('@\0').
25504     *
25505     * By default, weekdays abbreviations get from system are displayed:
25506     * E.g. for an en_US locale: "Sun, Mon, Tue, Wed, Thu, Fri, Sat"
25507     *
25508     * The first string should be related to Sunday, the second to Monday...
25509     *
25510     * The usage should be like this:
25511     * @code
25512     *   const char *weekdays[] =
25513     *   {
25514     *      "Sunday", "Monday", "Tuesday", "Wednesday",
25515     *      "Thursday", "Friday", "Saturday"
25516     *   };
25517     *   elm_calendar_weekdays_names_set(calendar, weekdays);
25518     * @endcode
25519     *
25520     * @see elm_calendar_weekdays_name_get()
25521     *
25522     * @ref calendar_example_02
25523     *
25524     * @ingroup Calendar
25525     */
25526    EAPI void               elm_calendar_weekdays_names_set(Evas_Object *obj, const char *weekdays[]) EINA_ARG_NONNULL(1, 2);
25527
25528    /**
25529     * Set the minimum and maximum values for the year
25530     *
25531     * @param obj The calendar object
25532     * @param min The minimum year, greater than 1901;
25533     * @param max The maximum year;
25534     *
25535     * Maximum must be greater than minimum, except if you don't wan't to set
25536     * maximum year.
25537     * Default values are 1902 and -1.
25538     *
25539     * If the maximum year is a negative value, it will be limited depending
25540     * on the platform architecture (year 2037 for 32 bits);
25541     *
25542     * @see elm_calendar_min_max_year_get()
25543     *
25544     * @ref calendar_example_03
25545     *
25546     * @ingroup Calendar
25547     */
25548    EAPI void               elm_calendar_min_max_year_set(Evas_Object *obj, int min, int max) EINA_ARG_NONNULL(1);
25549
25550    /**
25551     * Get the minimum and maximum values for the year
25552     *
25553     * @param obj The calendar object.
25554     * @param min The minimum year.
25555     * @param max The maximum year.
25556     *
25557     * Default values are 1902 and -1.
25558     *
25559     * @see elm_calendar_min_max_year_get() for more details.
25560     *
25561     * @ref calendar_example_05
25562     *
25563     * @ingroup Calendar
25564     */
25565    EAPI void               elm_calendar_min_max_year_get(const Evas_Object *obj, int *min, int *max) EINA_ARG_NONNULL(1);
25566
25567    /**
25568     * Enable or disable day selection
25569     *
25570     * @param obj The calendar object.
25571     * @param enabled @c EINA_TRUE to enable selection or @c EINA_FALSE to
25572     * disable it.
25573     *
25574     * Enabled by default. If disabled, the user still can select months,
25575     * but not days. Selected days are highlighted on calendar.
25576     * It should be used if you won't need such selection for the widget usage.
25577     *
25578     * When a day is selected, or month is changed, smart callbacks for
25579     * signal "changed" will be called.
25580     *
25581     * @see elm_calendar_day_selection_enable_get()
25582     *
25583     * @ref calendar_example_04
25584     *
25585     * @ingroup Calendar
25586     */
25587    EAPI void               elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
25588
25589    /**
25590     * Get a value whether day selection is enabled or not.
25591     *
25592     * @see elm_calendar_day_selection_enable_set() for details.
25593     *
25594     * @param obj The calendar object.
25595     * @return EINA_TRUE means day selection is enabled. EINA_FALSE indicates
25596     * it's disabled. If @p obj is NULL, EINA_FALSE is returned.
25597     *
25598     * @ref calendar_example_05
25599     *
25600     * @ingroup Calendar
25601     */
25602    EAPI Eina_Bool          elm_calendar_day_selection_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25603
25604
25605    /**
25606     * Set selected date to be highlighted on calendar.
25607     *
25608     * @param obj The calendar object.
25609     * @param selected_time A @b tm struct to represent the selected date.
25610     *
25611     * Set the selected date, changing the displayed month if needed.
25612     * Selected date changes when the user goes to next/previous month or
25613     * select a day pressing over it on calendar.
25614     *
25615     * @see elm_calendar_selected_time_get()
25616     *
25617     * @ref calendar_example_04
25618     *
25619     * @ingroup Calendar
25620     */
25621    EAPI void               elm_calendar_selected_time_set(Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1);
25622
25623    /**
25624     * Get selected date.
25625     *
25626     * @param obj The calendar object
25627     * @param selected_time A @b tm struct to point to selected date
25628     * @return EINA_FALSE means an error ocurred and returned time shouldn't
25629     * be considered.
25630     *
25631     * Get date selected by the user or set by function
25632     * elm_calendar_selected_time_set().
25633     * Selected date changes when the user goes to next/previous month or
25634     * select a day pressing over it on calendar.
25635     *
25636     * @see elm_calendar_selected_time_get()
25637     *
25638     * @ref calendar_example_05
25639     *
25640     * @ingroup Calendar
25641     */
25642    EAPI Eina_Bool          elm_calendar_selected_time_get(const Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1, 2);
25643
25644    /**
25645     * Set a function to format the string that will be used to display
25646     * month and year;
25647     *
25648     * @param obj The calendar object
25649     * @param format_function Function to set the month-year string given
25650     * the selected date
25651     *
25652     * By default it uses strftime with "%B %Y" format string.
25653     * It should allocate the memory that will be used by the string,
25654     * that will be freed by the widget after usage.
25655     * A pointer to the string and a pointer to the time struct will be provided.
25656     *
25657     * Example:
25658     * @code
25659     * static char *
25660     * _format_month_year(struct tm *selected_time)
25661     * {
25662     *    char buf[32];
25663     *    if (!strftime(buf, sizeof(buf), "%B %Y", selected_time)) return NULL;
25664     *    return strdup(buf);
25665     * }
25666     *
25667     * elm_calendar_format_function_set(calendar, _format_month_year);
25668     * @endcode
25669     *
25670     * @ref calendar_example_02
25671     *
25672     * @ingroup Calendar
25673     */
25674    EAPI void               elm_calendar_format_function_set(Evas_Object *obj, char * (*format_function) (struct tm *stime)) EINA_ARG_NONNULL(1);
25675
25676    /**
25677     * Add a new mark to the calendar
25678     *
25679     * @param obj The calendar object
25680     * @param mark_type A string used to define the type of mark. It will be
25681     * emitted to the theme, that should display a related modification on these
25682     * days representation.
25683     * @param mark_time A time struct to represent the date of inclusion of the
25684     * mark. For marks that repeats it will just be displayed after the inclusion
25685     * date in the calendar.
25686     * @param repeat Repeat the event following this periodicity. Can be a unique
25687     * mark (that don't repeat), daily, weekly, monthly or annually.
25688     * @return The created mark or @p NULL upon failure.
25689     *
25690     * Add a mark that will be drawn in the calendar respecting the insertion
25691     * time and periodicity. It will emit the type as signal to the widget theme.
25692     * Default theme supports "holiday" and "checked", but it can be extended.
25693     *
25694     * It won't immediately update the calendar, drawing the marks.
25695     * For this, call elm_calendar_marks_draw(). However, when user selects
25696     * next or previous month calendar forces marks drawn.
25697     *
25698     * Marks created with this method can be deleted with
25699     * elm_calendar_mark_del().
25700     *
25701     * Example
25702     * @code
25703     * struct tm selected_time;
25704     * time_t current_time;
25705     *
25706     * current_time = time(NULL) + 5 * 84600;
25707     * localtime_r(&current_time, &selected_time);
25708     * elm_calendar_mark_add(cal, "holiday", selected_time,
25709     *     ELM_CALENDAR_ANNUALLY);
25710     *
25711     * current_time = time(NULL) + 1 * 84600;
25712     * localtime_r(&current_time, &selected_time);
25713     * elm_calendar_mark_add(cal, "checked", selected_time, ELM_CALENDAR_UNIQUE);
25714     *
25715     * elm_calendar_marks_draw(cal);
25716     * @endcode
25717     *
25718     * @see elm_calendar_marks_draw()
25719     * @see elm_calendar_mark_del()
25720     *
25721     * @ref calendar_example_06
25722     *
25723     * @ingroup Calendar
25724     */
25725    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);
25726
25727    /**
25728     * Delete mark from the calendar.
25729     *
25730     * @param mark The mark to be deleted.
25731     *
25732     * If deleting all calendar marks is required, elm_calendar_marks_clear()
25733     * should be used instead of getting marks list and deleting each one.
25734     *
25735     * @see elm_calendar_mark_add()
25736     *
25737     * @ref calendar_example_06
25738     *
25739     * @ingroup Calendar
25740     */
25741    EAPI void               elm_calendar_mark_del(Elm_Calendar_Mark *mark) EINA_ARG_NONNULL(1);
25742
25743    /**
25744     * Remove all calendar's marks
25745     *
25746     * @param obj The calendar object.
25747     *
25748     * @see elm_calendar_mark_add()
25749     * @see elm_calendar_mark_del()
25750     *
25751     * @ingroup Calendar
25752     */
25753    EAPI void               elm_calendar_marks_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
25754
25755
25756    /**
25757     * Get a list of all the calendar marks.
25758     *
25759     * @param obj The calendar object.
25760     * @return An @c Eina_List of calendar marks objects, or @c NULL on failure.
25761     *
25762     * @see elm_calendar_mark_add()
25763     * @see elm_calendar_mark_del()
25764     * @see elm_calendar_marks_clear()
25765     *
25766     * @ingroup Calendar
25767     */
25768    EAPI const Eina_List   *elm_calendar_marks_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25769
25770    /**
25771     * Draw calendar marks.
25772     *
25773     * @param obj The calendar object.
25774     *
25775     * Should be used after adding, removing or clearing marks.
25776     * It will go through the entire marks list updating the calendar.
25777     * If lots of marks will be added, add all the marks and then call
25778     * this function.
25779     *
25780     * When the month is changed, i.e. user selects next or previous month,
25781     * marks will be drawed.
25782     *
25783     * @see elm_calendar_mark_add()
25784     * @see elm_calendar_mark_del()
25785     * @see elm_calendar_marks_clear()
25786     *
25787     * @ref calendar_example_06
25788     *
25789     * @ingroup Calendar
25790     */
25791    EAPI void               elm_calendar_marks_draw(Evas_Object *obj) EINA_ARG_NONNULL(1);
25792
25793    /**
25794     * Set a day text color to the same that represents Saturdays.
25795     *
25796     * @param obj The calendar object.
25797     * @param pos The text position. Position is the cell counter, from left
25798     * to right, up to down. It starts on 0 and ends on 41.
25799     *
25800     * @deprecated use elm_calendar_mark_add() instead like:
25801     *
25802     * @code
25803     * struct tm t = { 0, 0, 12, 6, 0, 0, 6, 6, -1 };
25804     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
25805     * @endcode
25806     *
25807     * @see elm_calendar_mark_add()
25808     *
25809     * @ingroup Calendar
25810     */
25811    EINA_DEPRECATED EAPI void               elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25812
25813    /**
25814     * Set a day text color to the same that represents Sundays.
25815     *
25816     * @param obj The calendar object.
25817     * @param pos The text position. Position is the cell counter, from left
25818     * to right, up to down. It starts on 0 and ends on 41.
25819
25820     * @deprecated use elm_calendar_mark_add() instead like:
25821     *
25822     * @code
25823     * struct tm t = { 0, 0, 12, 7, 0, 0, 0, 0, -1 };
25824     * elm_calendar_mark_add(obj, "sat", &t, ELM_CALENDAR_WEEKLY);
25825     * @endcode
25826     *
25827     * @see elm_calendar_mark_add()
25828     *
25829     * @ingroup Calendar
25830     */
25831    EINA_DEPRECATED EAPI void               elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25832
25833    /**
25834     * Set a day text color to the same that represents Weekdays.
25835     *
25836     * @param obj The calendar object
25837     * @param pos The text position. Position is the cell counter, from left
25838     * to right, up to down. It starts on 0 and ends on 41.
25839     *
25840     * @deprecated use elm_calendar_mark_add() instead like:
25841     *
25842     * @code
25843     * struct tm t = { 0, 0, 12, 1, 0, 0, 0, 0, -1 };
25844     *
25845     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // monday
25846     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25847     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // tuesday
25848     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25849     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // wednesday
25850     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25851     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // thursday
25852     * t.tm_tm_mday++; t.tm_wday++; t.tm_yday++;
25853     * elm_calendar_mark_add(obj, "week", &t, ELM_CALENDAR_WEEKLY); // friday
25854     * @endcode
25855     *
25856     * @see elm_calendar_mark_add()
25857     *
25858     * @ingroup Calendar
25859     */
25860    EINA_DEPRECATED EAPI void               elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
25861
25862    /**
25863     * Set the interval on time updates for an user mouse button hold
25864     * on calendar widgets' month selection.
25865     *
25866     * @param obj The calendar object
25867     * @param interval The (first) interval value in seconds
25868     *
25869     * This interval value is @b decreased while the user holds the
25870     * mouse pointer either selecting next or previous month.
25871     *
25872     * This helps the user to get to a given month distant from the
25873     * current one easier/faster, as it will start to change quicker and
25874     * quicker on mouse button holds.
25875     *
25876     * The calculation for the next change interval value, starting from
25877     * the one set with this call, is the previous interval divided by
25878     * 1.05, so it decreases a little bit.
25879     *
25880     * The default starting interval value for automatic changes is
25881     * @b 0.85 seconds.
25882     *
25883     * @see elm_calendar_interval_get()
25884     *
25885     * @ingroup Calendar
25886     */
25887    EAPI void               elm_calendar_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
25888
25889    /**
25890     * Get the interval on time updates for an user mouse button hold
25891     * on calendar widgets' month selection.
25892     *
25893     * @param obj The calendar object
25894     * @return The (first) interval value, in seconds, set on it
25895     *
25896     * @see elm_calendar_interval_set() for more details
25897     *
25898     * @ingroup Calendar
25899     */
25900    EAPI double             elm_calendar_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25901
25902    /**
25903     * @}
25904     */
25905
25906    /**
25907     * @defgroup Diskselector Diskselector
25908     * @ingroup Elementary
25909     *
25910     * @image html img/widget/diskselector/preview-00.png
25911     * @image latex img/widget/diskselector/preview-00.eps
25912     *
25913     * A diskselector is a kind of list widget. It scrolls horizontally,
25914     * and can contain label and icon objects. Three items are displayed
25915     * with the selected one in the middle.
25916     *
25917     * It can act like a circular list with round mode and labels can be
25918     * reduced for a defined length for side items.
25919     *
25920     * Smart callbacks one can listen to:
25921     * - "selected" - when item is selected, i.e. scroller stops.
25922     *
25923     * Available styles for it:
25924     * - @c "default"
25925     *
25926     * List of examples:
25927     * @li @ref diskselector_example_01
25928     * @li @ref diskselector_example_02
25929     */
25930
25931    /**
25932     * @addtogroup Diskselector
25933     * @{
25934     */
25935
25936    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(). */
25937
25938    /**
25939     * Add a new diskselector widget to the given parent Elementary
25940     * (container) object.
25941     *
25942     * @param parent The parent object.
25943     * @return a new diskselector widget handle or @c NULL, on errors.
25944     *
25945     * This function inserts a new diskselector widget on the canvas.
25946     *
25947     * @ingroup Diskselector
25948     */
25949    EAPI Evas_Object           *elm_diskselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
25950
25951    /**
25952     * Enable or disable round mode.
25953     *
25954     * @param obj The diskselector object.
25955     * @param round @c EINA_TRUE to enable round mode or @c EINA_FALSE to
25956     * disable it.
25957     *
25958     * Disabled by default. If round mode is enabled the items list will
25959     * work like a circle list, so when the user reaches the last item,
25960     * the first one will popup.
25961     *
25962     * @see elm_diskselector_round_get()
25963     *
25964     * @ingroup Diskselector
25965     */
25966    EAPI void                   elm_diskselector_round_set(Evas_Object *obj, Eina_Bool round) EINA_ARG_NONNULL(1);
25967
25968    /**
25969     * Get a value whether round mode is enabled or not.
25970     *
25971     * @see elm_diskselector_round_set() for details.
25972     *
25973     * @param obj The diskselector object.
25974     * @return @c EINA_TRUE means round mode is enabled. @c EINA_FALSE indicates
25975     * it's disabled. If @p obj is @c NULL, @c EINA_FALSE is returned.
25976     *
25977     * @ingroup Diskselector
25978     */
25979    EAPI Eina_Bool              elm_diskselector_round_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25980
25981    /**
25982     * Get the side labels max length.
25983     *
25984     * @deprecated use elm_diskselector_side_label_length_get() instead:
25985     *
25986     * @param obj The diskselector object.
25987     * @return The max length defined for side labels, or 0 if not a valid
25988     * diskselector.
25989     *
25990     * @ingroup Diskselector
25991     */
25992    EINA_DEPRECATED EAPI int    elm_diskselector_side_label_lenght_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
25993
25994    /**
25995     * Set the side labels max length.
25996     *
25997     * @deprecated use elm_diskselector_side_label_length_set() instead:
25998     *
25999     * @param obj The diskselector object.
26000     * @param len The max length defined for side labels.
26001     *
26002     * @ingroup Diskselector
26003     */
26004    EINA_DEPRECATED EAPI void   elm_diskselector_side_label_lenght_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
26005
26006    /**
26007     * Get the side labels max length.
26008     *
26009     * @see elm_diskselector_side_label_length_set() for details.
26010     *
26011     * @param obj The diskselector object.
26012     * @return The max length defined for side labels, or 0 if not a valid
26013     * diskselector.
26014     *
26015     * @ingroup Diskselector
26016     */
26017    EAPI int                    elm_diskselector_side_label_length_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26018
26019    /**
26020     * Set the side labels max length.
26021     *
26022     * @param obj The diskselector object.
26023     * @param len The max length defined for side labels.
26024     *
26025     * Length is the number of characters of items' label that will be
26026     * visible when it's set on side positions. It will just crop
26027     * the string after defined size. E.g.:
26028     *
26029     * An item with label "January" would be displayed on side position as
26030     * "Jan" if max length is set to 3, or "Janu", if this property
26031     * is set to 4.
26032     *
26033     * When it's selected, the entire label will be displayed, except for
26034     * width restrictions. In this case label will be cropped and "..."
26035     * will be concatenated.
26036     *
26037     * Default side label max length is 3.
26038     *
26039     * This property will be applyed over all items, included before or
26040     * later this function call.
26041     *
26042     * @ingroup Diskselector
26043     */
26044    EAPI void                   elm_diskselector_side_label_length_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
26045
26046    /**
26047     * Set the number of items to be displayed.
26048     *
26049     * @param obj The diskselector object.
26050     * @param num The number of items the diskselector will display.
26051     *
26052     * Default value is 3, and also it's the minimun. If @p num is less
26053     * than 3, it will be set to 3.
26054     *
26055     * Also, it can be set on theme, using data item @c display_item_num
26056     * on group "elm/diskselector/item/X", where X is style set.
26057     * E.g.:
26058     *
26059     * group { name: "elm/diskselector/item/X";
26060     * data {
26061     *     item: "display_item_num" "5";
26062     *     }
26063     *
26064     * @ingroup Diskselector
26065     */
26066    EAPI void                   elm_diskselector_display_item_num_set(Evas_Object *obj, int num) EINA_ARG_NONNULL(1);
26067
26068    /**
26069     * Get the number of items in the diskselector object.
26070     *
26071     * @param obj The diskselector object.
26072     *
26073     * @ingroup Diskselector
26074     */
26075    EAPI int                   elm_diskselector_display_item_num_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26076
26077    /**
26078     * Set bouncing behaviour when the scrolled content reaches an edge.
26079     *
26080     * Tell the internal scroller object whether it should bounce or not
26081     * when it reaches the respective edges for each axis.
26082     *
26083     * @param obj The diskselector object.
26084     * @param h_bounce Whether to bounce or not in the horizontal axis.
26085     * @param v_bounce Whether to bounce or not in the vertical axis.
26086     *
26087     * @see elm_scroller_bounce_set()
26088     *
26089     * @ingroup Diskselector
26090     */
26091    EAPI void                   elm_diskselector_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
26092
26093    /**
26094     * Get the bouncing behaviour of the internal scroller.
26095     *
26096     * Get whether the internal scroller should bounce when the edge of each
26097     * axis is reached scrolling.
26098     *
26099     * @param obj The diskselector object.
26100     * @param h_bounce Pointer where to store the bounce state of the horizontal
26101     * axis.
26102     * @param v_bounce Pointer where to store the bounce state of the vertical
26103     * axis.
26104     *
26105     * @see elm_scroller_bounce_get()
26106     * @see elm_diskselector_bounce_set()
26107     *
26108     * @ingroup Diskselector
26109     */
26110    EAPI void                   elm_diskselector_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
26111
26112    /**
26113     * Get the scrollbar policy.
26114     *
26115     * @see elm_diskselector_scroller_policy_get() for details.
26116     *
26117     * @param obj The diskselector object.
26118     * @param policy_h Pointer where to store horizontal scrollbar policy.
26119     * @param policy_v Pointer where to store vertical scrollbar policy.
26120     *
26121     * @ingroup Diskselector
26122     */
26123    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);
26124
26125    /**
26126     * Set the scrollbar policy.
26127     *
26128     * @param obj The diskselector object.
26129     * @param policy_h Horizontal scrollbar policy.
26130     * @param policy_v Vertical scrollbar policy.
26131     *
26132     * This sets the scrollbar visibility policy for the given scroller.
26133     * #ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it
26134     * is needed, and otherwise kept hidden. #ELM_SCROLLER_POLICY_ON turns
26135     * it on all the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off.
26136     * This applies respectively for the horizontal and vertical scrollbars.
26137     *
26138     * The both are disabled by default, i.e., are set to
26139     * #ELM_SCROLLER_POLICY_OFF.
26140     *
26141     * @ingroup Diskselector
26142     */
26143    EAPI void                   elm_diskselector_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
26144
26145    /**
26146     * Remove all diskselector's items.
26147     *
26148     * @param obj The diskselector object.
26149     *
26150     * @see elm_diskselector_item_del()
26151     * @see elm_diskselector_item_append()
26152     *
26153     * @ingroup Diskselector
26154     */
26155    EAPI void                   elm_diskselector_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
26156
26157    /**
26158     * Get a list of all the diskselector items.
26159     *
26160     * @param obj The diskselector object.
26161     * @return An @c Eina_List of diskselector items, #Elm_Diskselector_Item,
26162     * or @c NULL on failure.
26163     *
26164     * @see elm_diskselector_item_append()
26165     * @see elm_diskselector_item_del()
26166     * @see elm_diskselector_clear()
26167     *
26168     * @ingroup Diskselector
26169     */
26170    EAPI const Eina_List       *elm_diskselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26171
26172    /**
26173     * Appends a new item to the diskselector object.
26174     *
26175     * @param obj The diskselector object.
26176     * @param label The label of the diskselector item.
26177     * @param icon The icon object to use at left side of the item. An
26178     * icon can be any Evas object, but usually it is an icon created
26179     * with elm_icon_add().
26180     * @param func The function to call when the item is selected.
26181     * @param data The data to associate with the item for related callbacks.
26182     *
26183     * @return The created item or @c NULL upon failure.
26184     *
26185     * A new item will be created and appended to the diskselector, i.e., will
26186     * be set as last item. Also, if there is no selected item, it will
26187     * be selected. This will always happens for the first appended item.
26188     *
26189     * If no icon is set, label will be centered on item position, otherwise
26190     * the icon will be placed at left of the label, that will be shifted
26191     * to the right.
26192     *
26193     * Items created with this method can be deleted with
26194     * elm_diskselector_item_del().
26195     *
26196     * Associated @p data can be properly freed when item is deleted if a
26197     * callback function is set with elm_diskselector_item_del_cb_set().
26198     *
26199     * If a function is passed as argument, it will be called everytime this item
26200     * is selected, i.e., the user stops the diskselector with this
26201     * item on center position. If such function isn't needed, just passing
26202     * @c NULL as @p func is enough. The same should be done for @p data.
26203     *
26204     * Simple example (with no function callback or data associated):
26205     * @code
26206     * disk = elm_diskselector_add(win);
26207     * ic = elm_icon_add(win);
26208     * elm_icon_file_set(ic, "path/to/image", NULL);
26209     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
26210     * elm_diskselector_item_append(disk, "label", ic, NULL, NULL);
26211     * @endcode
26212     *
26213     * @see elm_diskselector_item_del()
26214     * @see elm_diskselector_item_del_cb_set()
26215     * @see elm_diskselector_clear()
26216     * @see elm_icon_add()
26217     *
26218     * @ingroup Diskselector
26219     */
26220    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);
26221
26222
26223    /**
26224     * Delete them item from the diskselector.
26225     *
26226     * @param it The item of diskselector to be deleted.
26227     *
26228     * If deleting all diskselector items is required, elm_diskselector_clear()
26229     * should be used instead of getting items list and deleting each one.
26230     *
26231     * @see elm_diskselector_clear()
26232     * @see elm_diskselector_item_append()
26233     * @see elm_diskselector_item_del_cb_set()
26234     *
26235     * @ingroup Diskselector
26236     */
26237    EAPI void                   elm_diskselector_item_del(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26238
26239    /**
26240     * Set the function called when a diskselector item is freed.
26241     *
26242     * @param it The item to set the callback on
26243     * @param func The function called
26244     *
26245     * If there is a @p func, then it will be called prior item's memory release.
26246     * That will be called with the following arguments:
26247     * @li item's data;
26248     * @li item's Evas object;
26249     * @li item itself;
26250     *
26251     * This way, a data associated to a diskselector item could be properly
26252     * freed.
26253     *
26254     * @ingroup Diskselector
26255     */
26256    EAPI void                   elm_diskselector_item_del_cb_set(Elm_Diskselector_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
26257
26258    /**
26259     * Get the data associated to the item.
26260     *
26261     * @param it The diskselector item
26262     * @return The data associated to @p it
26263     *
26264     * The return value is a pointer to data associated to @p item when it was
26265     * created, with function elm_diskselector_item_append(). If no data
26266     * was passed as argument, it will return @c NULL.
26267     *
26268     * @see elm_diskselector_item_append()
26269     *
26270     * @ingroup Diskselector
26271     */
26272    EAPI void                  *elm_diskselector_item_data_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26273
26274    /**
26275     * Set the icon associated to the item.
26276     *
26277     * @param it The diskselector item
26278     * @param icon The icon object to associate with @p it
26279     *
26280     * The icon object to use at left side of the item. An
26281     * icon can be any Evas object, but usually it is an icon created
26282     * with elm_icon_add().
26283     *
26284     * Once the icon object is set, a previously set one will be deleted.
26285     * @warning Setting the same icon for two items will cause the icon to
26286     * dissapear from the first item.
26287     *
26288     * If an icon was passed as argument on item creation, with function
26289     * elm_diskselector_item_append(), it will be already
26290     * associated to the item.
26291     *
26292     * @see elm_diskselector_item_append()
26293     * @see elm_diskselector_item_icon_get()
26294     *
26295     * @ingroup Diskselector
26296     */
26297    EAPI void                   elm_diskselector_item_icon_set(Elm_Diskselector_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
26298
26299    /**
26300     * Get the icon associated to the item.
26301     *
26302     * @param it The diskselector item
26303     * @return The icon associated to @p it
26304     *
26305     * The return value is a pointer to the icon associated to @p item when it was
26306     * created, with function elm_diskselector_item_append(), or later
26307     * with function elm_diskselector_item_icon_set. If no icon
26308     * was passed as argument, it will return @c NULL.
26309     *
26310     * @see elm_diskselector_item_append()
26311     * @see elm_diskselector_item_icon_set()
26312     *
26313     * @ingroup Diskselector
26314     */
26315    EAPI Evas_Object           *elm_diskselector_item_icon_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26316
26317    /**
26318     * Set the label of item.
26319     *
26320     * @param it The item of diskselector.
26321     * @param label The label of item.
26322     *
26323     * The label to be displayed by the item.
26324     *
26325     * If no icon is set, label will be centered on item position, otherwise
26326     * the icon will be placed at left of the label, that will be shifted
26327     * to the right.
26328     *
26329     * An item with label "January" would be displayed on side position as
26330     * "Jan" if max length is set to 3 with function
26331     * elm_diskselector_side_label_lenght_set(), or "Janu", if this property
26332     * is set to 4.
26333     *
26334     * When this @p item is selected, the entire label will be displayed,
26335     * except for width restrictions.
26336     * In this case label will be cropped and "..." will be concatenated,
26337     * but only for display purposes. It will keep the entire string, so
26338     * if diskselector is resized the remaining characters will be displayed.
26339     *
26340     * If a label was passed as argument on item creation, with function
26341     * elm_diskselector_item_append(), it will be already
26342     * displayed by the item.
26343     *
26344     * @see elm_diskselector_side_label_lenght_set()
26345     * @see elm_diskselector_item_label_get()
26346     * @see elm_diskselector_item_append()
26347     *
26348     * @ingroup Diskselector
26349     */
26350    EAPI void                   elm_diskselector_item_label_set(Elm_Diskselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
26351
26352    /**
26353     * Get the label of item.
26354     *
26355     * @param it The item of diskselector.
26356     * @return The label of item.
26357     *
26358     * The return value is a pointer to the label associated to @p item when it was
26359     * created, with function elm_diskselector_item_append(), or later
26360     * with function elm_diskselector_item_label_set. If no label
26361     * was passed as argument, it will return @c NULL.
26362     *
26363     * @see elm_diskselector_item_label_set() for more details.
26364     * @see elm_diskselector_item_append()
26365     *
26366     * @ingroup Diskselector
26367     */
26368    EAPI const char            *elm_diskselector_item_label_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26369
26370    /**
26371     * Get the selected item.
26372     *
26373     * @param obj The diskselector object.
26374     * @return The selected diskselector item.
26375     *
26376     * The selected item can be unselected with function
26377     * elm_diskselector_item_selected_set(), and the first item of
26378     * diskselector will be selected.
26379     *
26380     * The selected item always will be centered on diskselector, with
26381     * full label displayed, i.e., max lenght set to side labels won't
26382     * apply on the selected item. More details on
26383     * elm_diskselector_side_label_length_set().
26384     *
26385     * @ingroup Diskselector
26386     */
26387    EAPI Elm_Diskselector_Item *elm_diskselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26388
26389    /**
26390     * Set the selected state of an item.
26391     *
26392     * @param it The diskselector item
26393     * @param selected The selected state
26394     *
26395     * This sets the selected state of the given item @p it.
26396     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
26397     *
26398     * If a new item is selected the previosly selected will be unselected.
26399     * Previoulsy selected item can be get with function
26400     * elm_diskselector_selected_item_get().
26401     *
26402     * If the item @p it is unselected, the first item of diskselector will
26403     * be selected.
26404     *
26405     * Selected items will be visible on center position of diskselector.
26406     * So if it was on another position before selected, or was invisible,
26407     * diskselector will animate items until the selected item reaches center
26408     * position.
26409     *
26410     * @see elm_diskselector_item_selected_get()
26411     * @see elm_diskselector_selected_item_get()
26412     *
26413     * @ingroup Diskselector
26414     */
26415    EAPI void                   elm_diskselector_item_selected_set(Elm_Diskselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
26416
26417    /*
26418     * Get whether the @p item is selected or not.
26419     *
26420     * @param it The diskselector item.
26421     * @return @c EINA_TRUE means item is selected. @c EINA_FALSE indicates
26422     * it's not. If @p obj is @c NULL, @c EINA_FALSE is returned.
26423     *
26424     * @see elm_diskselector_selected_item_set() for details.
26425     * @see elm_diskselector_item_selected_get()
26426     *
26427     * @ingroup Diskselector
26428     */
26429    EAPI Eina_Bool              elm_diskselector_item_selected_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26430
26431    /**
26432     * Get the first item of the diskselector.
26433     *
26434     * @param obj The diskselector object.
26435     * @return The first item, or @c NULL if none.
26436     *
26437     * The list of items follows append order. So it will return the first
26438     * item appended to the widget that wasn't deleted.
26439     *
26440     * @see elm_diskselector_item_append()
26441     * @see elm_diskselector_items_get()
26442     *
26443     * @ingroup Diskselector
26444     */
26445    EAPI Elm_Diskselector_Item *elm_diskselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26446
26447    /**
26448     * Get the last item of the diskselector.
26449     *
26450     * @param obj The diskselector object.
26451     * @return The last item, or @c NULL if none.
26452     *
26453     * The list of items follows append order. So it will return last first
26454     * item appended to the widget that wasn't deleted.
26455     *
26456     * @see elm_diskselector_item_append()
26457     * @see elm_diskselector_items_get()
26458     *
26459     * @ingroup Diskselector
26460     */
26461    EAPI Elm_Diskselector_Item *elm_diskselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26462
26463    /**
26464     * Get the item before @p item in diskselector.
26465     *
26466     * @param it The diskselector item.
26467     * @return The item before @p item, or @c NULL if none or on failure.
26468     *
26469     * The list of items follows append order. So it will return item appended
26470     * just before @p item and that wasn't deleted.
26471     *
26472     * If it is the first item, @c NULL will be returned.
26473     * First item can be get by elm_diskselector_first_item_get().
26474     *
26475     * @see elm_diskselector_item_append()
26476     * @see elm_diskselector_items_get()
26477     *
26478     * @ingroup Diskselector
26479     */
26480    EAPI Elm_Diskselector_Item *elm_diskselector_item_prev_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26481
26482    /**
26483     * Get the item after @p item in diskselector.
26484     *
26485     * @param it The diskselector item.
26486     * @return The item after @p item, or @c NULL if none or on failure.
26487     *
26488     * The list of items follows append order. So it will return item appended
26489     * just after @p item and that wasn't deleted.
26490     *
26491     * If it is the last item, @c NULL will be returned.
26492     * Last item can be get by elm_diskselector_last_item_get().
26493     *
26494     * @see elm_diskselector_item_append()
26495     * @see elm_diskselector_items_get()
26496     *
26497     * @ingroup Diskselector
26498     */
26499    EAPI Elm_Diskselector_Item *elm_diskselector_item_next_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26500
26501    /**
26502     * Set the text to be shown in the diskselector item.
26503     *
26504     * @param item Target item
26505     * @param text The text to set in the content
26506     *
26507     * Setup the text as tooltip to object. The item can have only one tooltip,
26508     * so any previous tooltip data is removed.
26509     *
26510     * @see elm_object_tooltip_text_set() for more details.
26511     *
26512     * @ingroup Diskselector
26513     */
26514    EAPI void                   elm_diskselector_item_tooltip_text_set(Elm_Diskselector_Item *item, const char *text) EINA_ARG_NONNULL(1);
26515
26516    /**
26517     * Set the content to be shown in the tooltip item.
26518     *
26519     * Setup the tooltip to item. The item can have only one tooltip,
26520     * so any previous tooltip data is removed. @p func(with @p data) will
26521     * be called every time that need show the tooltip and it should
26522     * return a valid Evas_Object. This object is then managed fully by
26523     * tooltip system and is deleted when the tooltip is gone.
26524     *
26525     * @param item the diskselector item being attached a tooltip.
26526     * @param func the function used to create the tooltip contents.
26527     * @param data what to provide to @a func as callback data/context.
26528     * @param del_cb called when data is not needed anymore, either when
26529     *        another callback replaces @p func, the tooltip is unset with
26530     *        elm_diskselector_item_tooltip_unset() or the owner @a item
26531     *        dies. This callback receives as the first parameter the
26532     *        given @a data, and @c event_info is the item.
26533     *
26534     * @see elm_object_tooltip_content_cb_set() for more details.
26535     *
26536     * @ingroup Diskselector
26537     */
26538    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);
26539
26540    /**
26541     * Unset tooltip from item.
26542     *
26543     * @param item diskselector item to remove previously set tooltip.
26544     *
26545     * Remove tooltip from item. The callback provided as del_cb to
26546     * elm_diskselector_item_tooltip_content_cb_set() will be called to notify
26547     * it is not used anymore.
26548     *
26549     * @see elm_object_tooltip_unset() for more details.
26550     * @see elm_diskselector_item_tooltip_content_cb_set()
26551     *
26552     * @ingroup Diskselector
26553     */
26554    EAPI void                   elm_diskselector_item_tooltip_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26555
26556
26557    /**
26558     * Sets a different style for this item tooltip.
26559     *
26560     * @note before you set a style you should define a tooltip with
26561     *       elm_diskselector_item_tooltip_content_cb_set() or
26562     *       elm_diskselector_item_tooltip_text_set()
26563     *
26564     * @param item diskselector item with tooltip already set.
26565     * @param style the theme style to use (default, transparent, ...)
26566     *
26567     * @see elm_object_tooltip_style_set() for more details.
26568     *
26569     * @ingroup Diskselector
26570     */
26571    EAPI void                   elm_diskselector_item_tooltip_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
26572
26573    /**
26574     * Get the style for this item tooltip.
26575     *
26576     * @param item diskselector item with tooltip already set.
26577     * @return style the theme style in use, defaults to "default". If the
26578     *         object does not have a tooltip set, then NULL is returned.
26579     *
26580     * @see elm_object_tooltip_style_get() for more details.
26581     * @see elm_diskselector_item_tooltip_style_set()
26582     *
26583     * @ingroup Diskselector
26584     */
26585    EAPI const char            *elm_diskselector_item_tooltip_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26586
26587    /**
26588     * Set the cursor to be shown when mouse is over the diskselector item
26589     *
26590     * @param item Target item
26591     * @param cursor the cursor name to be used.
26592     *
26593     * @see elm_object_cursor_set() for more details.
26594     *
26595     * @ingroup Diskselector
26596     */
26597    EAPI void                   elm_diskselector_item_cursor_set(Elm_Diskselector_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
26598
26599    /**
26600     * Get the cursor to be shown when mouse is over the diskselector item
26601     *
26602     * @param item diskselector item with cursor already set.
26603     * @return the cursor name.
26604     *
26605     * @see elm_object_cursor_get() for more details.
26606     * @see elm_diskselector_cursor_set()
26607     *
26608     * @ingroup Diskselector
26609     */
26610    EAPI const char            *elm_diskselector_item_cursor_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26611
26612
26613    /**
26614     * Unset the cursor to be shown when mouse is over the diskselector item
26615     *
26616     * @param item Target item
26617     *
26618     * @see elm_object_cursor_unset() for more details.
26619     * @see elm_diskselector_cursor_set()
26620     *
26621     * @ingroup Diskselector
26622     */
26623    EAPI void                   elm_diskselector_item_cursor_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26624
26625    /**
26626     * Sets a different style for this item cursor.
26627     *
26628     * @note before you set a style you should define a cursor with
26629     *       elm_diskselector_item_cursor_set()
26630     *
26631     * @param item diskselector item with cursor already set.
26632     * @param style the theme style to use (default, transparent, ...)
26633     *
26634     * @see elm_object_cursor_style_set() for more details.
26635     *
26636     * @ingroup Diskselector
26637     */
26638    EAPI void                   elm_diskselector_item_cursor_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
26639
26640
26641    /**
26642     * Get the style for this item cursor.
26643     *
26644     * @param item diskselector item with cursor already set.
26645     * @return style the theme style in use, defaults to "default". If the
26646     *         object does not have a cursor set, then @c NULL is returned.
26647     *
26648     * @see elm_object_cursor_style_get() for more details.
26649     * @see elm_diskselector_item_cursor_style_set()
26650     *
26651     * @ingroup Diskselector
26652     */
26653    EAPI const char            *elm_diskselector_item_cursor_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26654
26655
26656    /**
26657     * Set if the cursor set should be searched on the theme or should use
26658     * the provided by the engine, only.
26659     *
26660     * @note before you set if should look on theme you should define a cursor
26661     * with elm_diskselector_item_cursor_set().
26662     * By default it will only look for cursors provided by the engine.
26663     *
26664     * @param item widget item with cursor already set.
26665     * @param engine_only boolean to define if cursors set with
26666     * elm_diskselector_item_cursor_set() should be searched only
26667     * between cursors provided by the engine or searched on widget's
26668     * theme as well.
26669     *
26670     * @see elm_object_cursor_engine_only_set() for more details.
26671     *
26672     * @ingroup Diskselector
26673     */
26674    EAPI void                   elm_diskselector_item_cursor_engine_only_set(Elm_Diskselector_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
26675
26676    /**
26677     * Get the cursor engine only usage for this item cursor.
26678     *
26679     * @param item widget item with cursor already set.
26680     * @return engine_only boolean to define it cursors should be looked only
26681     * between the provided by the engine or searched on widget's theme as well.
26682     * If the item does not have a cursor set, then @c EINA_FALSE is returned.
26683     *
26684     * @see elm_object_cursor_engine_only_get() for more details.
26685     * @see elm_diskselector_item_cursor_engine_only_set()
26686     *
26687     * @ingroup Diskselector
26688     */
26689    EAPI Eina_Bool              elm_diskselector_item_cursor_engine_only_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
26690
26691    /**
26692     * @}
26693     */
26694
26695    /**
26696     * @defgroup Colorselector Colorselector
26697     *
26698     * @{
26699     *
26700     * @image html img/widget/colorselector/preview-00.png
26701     * @image latex img/widget/colorselector/preview-00.eps
26702     *
26703     * @brief Widget for user to select a color.
26704     *
26705     * Signals that you can add callbacks for are:
26706     * "changed" - When the color value changes(event_info is NULL).
26707     *
26708     * See @ref tutorial_colorselector.
26709     */
26710    /**
26711     * @brief Add a new colorselector to the parent
26712     *
26713     * @param parent The parent object
26714     * @return The new object or NULL if it cannot be created
26715     *
26716     * @ingroup Colorselector
26717     */
26718    EAPI Evas_Object *elm_colorselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26719    /**
26720     * Set a color for the colorselector
26721     *
26722     * @param obj   Colorselector object
26723     * @param r     r-value of color
26724     * @param g     g-value of color
26725     * @param b     b-value of color
26726     * @param a     a-value of color
26727     *
26728     * @ingroup Colorselector
26729     */
26730    EAPI void         elm_colorselector_color_set(Evas_Object *obj, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
26731    /**
26732     * Get a color from the colorselector
26733     *
26734     * @param obj   Colorselector object
26735     * @param r     integer pointer for r-value of color
26736     * @param g     integer pointer for g-value of color
26737     * @param b     integer pointer for b-value of color
26738     * @param a     integer pointer for a-value of color
26739     *
26740     * @ingroup Colorselector
26741     */
26742    EAPI void         elm_colorselector_color_get(const Evas_Object *obj, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
26743    /**
26744     * @}
26745     */
26746
26747    /**
26748     * @defgroup Ctxpopup Ctxpopup
26749     *
26750     * @image html img/widget/ctxpopup/preview-00.png
26751     * @image latex img/widget/ctxpopup/preview-00.eps
26752     *
26753     * @brief Context popup widet.
26754     *
26755     * A ctxpopup is a widget that, when shown, pops up a list of items.
26756     * It automatically chooses an area inside its parent object's view
26757     * (set via elm_ctxpopup_add() and elm_ctxpopup_hover_parent_set()) to
26758     * optimally fit into it. In the default theme, it will also point an
26759     * arrow to it's top left position at the time one shows it. Ctxpopup
26760     * items have a label and/or an icon. It is intended for a small
26761     * number of items (hence the use of list, not genlist).
26762     *
26763     * @note Ctxpopup is a especialization of @ref Hover.
26764     *
26765     * Signals that you can add callbacks for are:
26766     * "dismissed" - the ctxpopup was dismissed
26767     *
26768     * Default contents parts of the ctxpopup widget that you can use for are:
26769     * @li "default" - A content of the ctxpopup
26770     *
26771     * Default contents parts of the naviframe items that you can use for are:
26772     * @li "icon" - An icon in the title area
26773     *
26774     * Default text parts of the naviframe items that you can use for are:
26775     * @li "default" - Title label in the title area
26776     *
26777     * @ref tutorial_ctxpopup shows the usage of a good deal of the API.
26778     * @{
26779     */
26780    typedef enum _Elm_Ctxpopup_Direction
26781      {
26782         ELM_CTXPOPUP_DIRECTION_DOWN, /**< ctxpopup show appear below clicked
26783                                           area */
26784         ELM_CTXPOPUP_DIRECTION_RIGHT, /**< ctxpopup show appear to the right of
26785                                            the clicked area */
26786         ELM_CTXPOPUP_DIRECTION_LEFT, /**< ctxpopup show appear to the left of
26787                                           the clicked area */
26788         ELM_CTXPOPUP_DIRECTION_UP, /**< ctxpopup show appear above the clicked
26789                                         area */
26790         ELM_CTXPOPUP_DIRECTION_UNKNOWN, /**< ctxpopup does not determine it's direction yet*/
26791      } Elm_Ctxpopup_Direction;
26792
26793    /**
26794     * @brief Add a new Ctxpopup object to the parent.
26795     *
26796     * @param parent Parent object
26797     * @return New object or @c NULL, if it cannot be created
26798     */
26799    EAPI Evas_Object  *elm_ctxpopup_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
26800    /**
26801     * @brief Set the Ctxpopup's parent
26802     *
26803     * @param obj The ctxpopup object
26804     * @param area The parent to use
26805     *
26806     * Set the parent object.
26807     *
26808     * @note elm_ctxpopup_add() will automatically call this function
26809     * with its @c parent argument.
26810     *
26811     * @see elm_ctxpopup_add()
26812     * @see elm_hover_parent_set()
26813     */
26814    EAPI void          elm_ctxpopup_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1, 2);
26815    /**
26816     * @brief Get the Ctxpopup's parent
26817     *
26818     * @param obj The ctxpopup object
26819     *
26820     * @see elm_ctxpopup_hover_parent_set() for more information
26821     */
26822    EAPI Evas_Object  *elm_ctxpopup_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26823    /**
26824     * @brief Clear all items in the given ctxpopup object.
26825     *
26826     * @param obj Ctxpopup object
26827     */
26828    EAPI void          elm_ctxpopup_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
26829    /**
26830     * @brief Change the ctxpopup's orientation to horizontal or vertical.
26831     *
26832     * @param obj Ctxpopup object
26833     * @param horizontal @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical
26834     */
26835    EAPI void          elm_ctxpopup_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
26836    /**
26837     * @brief Get the value of current ctxpopup object's orientation.
26838     *
26839     * @param obj Ctxpopup object
26840     * @return @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical mode (or errors)
26841     *
26842     * @see elm_ctxpopup_horizontal_set()
26843     */
26844    EAPI Eina_Bool     elm_ctxpopup_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
26845    /**
26846     * @brief Add a new item to a ctxpopup object.
26847     *
26848     * @param obj Ctxpopup object
26849     * @param icon Icon to be set on new item
26850     * @param label The Label of the new item
26851     * @param func Convenience function called when item selected
26852     * @param data Data passed to @p func
26853     * @return A handle to the item added or @c NULL, on errors
26854     *
26855     * @warning Ctxpopup can't hold both an item list and a content at the same
26856     * time. When an item is added, any previous content will be removed.
26857     *
26858     * @see elm_ctxpopup_content_set()
26859     */
26860    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);
26861    /**
26862     * @brief Delete the given item in a ctxpopup object.
26863     *
26864     * @param it Ctxpopup item to be deleted
26865     *
26866     * @see elm_ctxpopup_item_append()
26867     */
26868    EAPI void          elm_ctxpopup_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26869    /**
26870     * @brief Set the ctxpopup item's state as disabled or enabled.
26871     *
26872     * @param it Ctxpopup item to be enabled/disabled
26873     * @param disabled @c EINA_TRUE to disable it, @c EINA_FALSE to enable it
26874     *
26875     * When disabled the item is greyed out to indicate it's state.
26876     * @deprecated use elm_object_item_disabled_set() instead
26877     */
26878    EINA_DEPRECATED EAPI void          elm_ctxpopup_item_disabled_set(Elm_Object_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
26879    /**
26880     * @brief Get the ctxpopup item's disabled/enabled state.
26881     *
26882     * @param it Ctxpopup item to be enabled/disabled
26883     * @return disabled @c EINA_TRUE, if disabled, @c EINA_FALSE otherwise
26884     *
26885     * @see elm_ctxpopup_item_disabled_set()
26886     * @deprecated use elm_object_item_disabled_get() instead
26887     */
26888    EAPI Eina_Bool     elm_ctxpopup_item_disabled_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26889    /**
26890     * @brief Get the icon object for the given ctxpopup item.
26891     *
26892     * @param it Ctxpopup item
26893     * @return icon object or @c NULL, if the item does not have icon or an error
26894     * occurred
26895     *
26896     * @see elm_ctxpopup_item_append()
26897     * @see elm_ctxpopup_item_icon_set()
26898     *
26899     * @deprecated use elm_object_item_part_content_get() instead
26900     */
26901    EINA_DEPRECATED EAPI Evas_Object  *elm_ctxpopup_item_icon_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26902    /**
26903     * @brief Sets the side icon associated with the ctxpopup item
26904     *
26905     * @param it Ctxpopup item
26906     * @param icon Icon object to be set
26907     *
26908     * Once the icon object is set, a previously set one will be deleted.
26909     * @warning Setting the same icon for two items will cause the icon to
26910     * dissapear from the first item.
26911     *
26912     * @see elm_ctxpopup_item_append()
26913     *
26914     * @deprecated use elm_object_item_part_content_set() instead
26915     *
26916     */
26917    EINA_DEPRECATED EAPI void          elm_ctxpopup_item_icon_set(Elm_Object_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
26918    /**
26919     * @brief Get the label for the given ctxpopup item.
26920     *
26921     * @param it Ctxpopup item
26922     * @return label string or @c NULL, if the item does not have label or an
26923     * error occured
26924     *
26925     * @see elm_ctxpopup_item_append()
26926     * @see elm_ctxpopup_item_label_set()
26927     *
26928     * @deprecated use elm_object_item_text_get() instead
26929     */
26930    EINA_DEPRECATED EAPI const char   *elm_ctxpopup_item_label_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
26931    /**
26932     * @brief (Re)set the label on the given ctxpopup item.
26933     *
26934     * @param it Ctxpopup item
26935     * @param label String to set as label
26936     *
26937     * @deprecated use elm_object_item_text_set() instead
26938     */
26939    EINA_DEPRECATED EAPI void          elm_ctxpopup_item_label_set(Elm_Object_Item *it, const char *label) EINA_ARG_NONNULL(1);
26940    /**
26941     * @brief Set an elm widget as the content of the ctxpopup.
26942     *
26943     * @param obj Ctxpopup object
26944     * @param content Content to be swallowed
26945     *
26946     * If the content object is already set, a previous one will bedeleted. If
26947     * you want to keep that old content object, use the
26948     * elm_ctxpopup_content_unset() function.
26949     *
26950     * @warning Ctxpopup can't hold both a item list and a content at the same
26951     * time. When a content is set, any previous items will be removed.
26952     *
26953     * @deprecated use elm_object_content_set() instead
26954     *
26955     */
26956    EINA_DEPRECATED EAPI void          elm_ctxpopup_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1, 2);
26957    /**
26958     * @brief Unset the ctxpopup content
26959     *
26960     * @param obj Ctxpopup object
26961     * @return The content that was being used
26962     *
26963     * Unparent and return the content object which was set for this widget.
26964     *
26965     * @deprecated use elm_object_content_unset()
26966     *
26967     * @see elm_ctxpopup_content_set()
26968     *
26969     * @deprecated use elm_object_content_unset() instead
26970     *
26971     */
26972    EINA_DEPRECATED EAPI Evas_Object  *elm_ctxpopup_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
26973    /**
26974     * @brief Set the direction priority of a ctxpopup.
26975     *
26976     * @param obj Ctxpopup object
26977     * @param first 1st priority of direction
26978     * @param second 2nd priority of direction
26979     * @param third 3th priority of direction
26980     * @param fourth 4th priority of direction
26981     *
26982     * This functions gives a chance to user to set the priority of ctxpopup
26983     * showing direction. This doesn't guarantee the ctxpopup will appear in the
26984     * requested direction.
26985     *
26986     * @see Elm_Ctxpopup_Direction
26987     */
26988    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);
26989    /**
26990     * @brief Get the direction priority of a ctxpopup.
26991     *
26992     * @param obj Ctxpopup object
26993     * @param first 1st priority of direction to be returned
26994     * @param second 2nd priority of direction to be returned
26995     * @param third 3th priority of direction to be returned
26996     * @param fourth 4th priority of direction to be returned
26997     *
26998     * @see elm_ctxpopup_direction_priority_set() for more information.
26999     */
27000    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);
27001
27002    /**
27003     * @brief Get the current direction of a ctxpopup.
27004     *
27005     * @param obj Ctxpopup object
27006     * @return current direction of a ctxpopup
27007     *
27008     * @warning Once the ctxpopup showed up, the direction would be determined
27009     */
27010    EAPI Elm_Ctxpopup_Direction elm_ctxpopup_direction_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
27011
27012    /**
27013     * @}
27014     */
27015
27016    /* transit */
27017    /**
27018     *
27019     * @defgroup Transit Transit
27020     * @ingroup Elementary
27021     *
27022     * Transit is designed to apply various animated transition effects to @c
27023     * Evas_Object, such like translation, rotation, etc. For using these
27024     * effects, create an @ref Elm_Transit and add the desired transition effects.
27025     *
27026     * Once the effects are added into transit, they will be automatically
27027     * managed (their callback will be called until the duration is ended, and
27028     * they will be deleted on completion).
27029     *
27030     * Example:
27031     * @code
27032     * Elm_Transit *trans = elm_transit_add();
27033     * elm_transit_object_add(trans, obj);
27034     * elm_transit_effect_translation_add(trans, 0, 0, 280, 280
27035     * elm_transit_duration_set(transit, 1);
27036     * elm_transit_auto_reverse_set(transit, EINA_TRUE);
27037     * elm_transit_tween_mode_set(transit, ELM_TRANSIT_TWEEN_MODE_DECELERATE);
27038     * elm_transit_repeat_times_set(transit, 3);
27039     * @endcode
27040     *
27041     * Some transition effects are used to change the properties of objects. They
27042     * are:
27043     * @li @ref elm_transit_effect_translation_add
27044     * @li @ref elm_transit_effect_color_add
27045     * @li @ref elm_transit_effect_rotation_add
27046     * @li @ref elm_transit_effect_wipe_add
27047     * @li @ref elm_transit_effect_zoom_add
27048     * @li @ref elm_transit_effect_resizing_add
27049     *
27050     * Other transition effects are used to make one object disappear and another
27051     * object appear on its old place. These effects are:
27052     *
27053     * @li @ref elm_transit_effect_flip_add
27054     * @li @ref elm_transit_effect_resizable_flip_add
27055     * @li @ref elm_transit_effect_fade_add
27056     * @li @ref elm_transit_effect_blend_add
27057     *
27058     * It's also possible to make a transition chain with @ref
27059     * elm_transit_chain_transit_add.
27060     *
27061     * @warning We strongly recommend to use elm_transit just when edje can not do
27062     * the trick. Edje has more advantage than Elm_Transit, it has more flexibility and
27063     * animations can be manipulated inside the theme.
27064     *
27065     * List of examples:
27066     * @li @ref transit_example_01_explained
27067     * @li @ref transit_example_02_explained
27068     * @li @ref transit_example_03_c
27069     * @li @ref transit_example_04_c
27070     *
27071     * @{
27072     */
27073
27074    /**
27075     * @enum Elm_Transit_Tween_Mode
27076     *
27077     * The type of acceleration used in the transition.
27078     */
27079    typedef enum
27080      {
27081         ELM_TRANSIT_TWEEN_MODE_LINEAR, /**< Constant speed */
27082         ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL, /**< Starts slow, increase speed
27083                                              over time, then decrease again
27084                                              and stop slowly */
27085         ELM_TRANSIT_TWEEN_MODE_DECELERATE, /**< Starts fast and decrease
27086                                              speed over time */
27087         ELM_TRANSIT_TWEEN_MODE_ACCELERATE /**< Starts slow and increase speed
27088                                             over time */
27089      } Elm_Transit_Tween_Mode;
27090
27091    /**
27092     * @enum Elm_Transit_Effect_Flip_Axis
27093     *
27094     * The axis where flip effect should be applied.
27095     */
27096    typedef enum
27097      {
27098         ELM_TRANSIT_EFFECT_FLIP_AXIS_X, /**< Flip on X axis */
27099         ELM_TRANSIT_EFFECT_FLIP_AXIS_Y /**< Flip on Y axis */
27100      } Elm_Transit_Effect_Flip_Axis;
27101    /**
27102     * @enum Elm_Transit_Effect_Wipe_Dir
27103     *
27104     * The direction where the wipe effect should occur.
27105     */
27106    typedef enum
27107      {
27108         ELM_TRANSIT_EFFECT_WIPE_DIR_LEFT, /**< Wipe to the left */
27109         ELM_TRANSIT_EFFECT_WIPE_DIR_RIGHT, /**< Wipe to the right */
27110         ELM_TRANSIT_EFFECT_WIPE_DIR_UP, /**< Wipe up */
27111         ELM_TRANSIT_EFFECT_WIPE_DIR_DOWN /**< Wipe down */
27112      } Elm_Transit_Effect_Wipe_Dir;
27113    /** @enum Elm_Transit_Effect_Wipe_Type
27114     *
27115     * Whether the wipe effect should show or hide the object.
27116     */
27117    typedef enum
27118      {
27119         ELM_TRANSIT_EFFECT_WIPE_TYPE_HIDE, /**< Hide the object during the
27120                                              animation */
27121         ELM_TRANSIT_EFFECT_WIPE_TYPE_SHOW /**< Show the object during the
27122                                             animation */
27123      } Elm_Transit_Effect_Wipe_Type;
27124
27125    /**
27126     * @typedef Elm_Transit
27127     *
27128     * The Transit created with elm_transit_add(). This type has the information
27129     * about the objects which the transition will be applied, and the
27130     * transition effects that will be used. It also contains info about
27131     * duration, number of repetitions, auto-reverse, etc.
27132     */
27133    typedef struct _Elm_Transit Elm_Transit;
27134    typedef void Elm_Transit_Effect;
27135    /**
27136     * @typedef Elm_Transit_Effect_Transition_Cb
27137     *
27138     * Transition callback called for this effect on each transition iteration.
27139     */
27140    typedef void (*Elm_Transit_Effect_Transition_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit, double progress);
27141    /**
27142     * Elm_Transit_Effect_End_Cb
27143     *
27144     * Transition callback called for this effect when the transition is over.
27145     */
27146    typedef void (*Elm_Transit_Effect_End_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit);
27147
27148    /**
27149     * Elm_Transit_Del_Cb
27150     *
27151     * A callback called when the transit is deleted.
27152     */
27153    typedef void (*Elm_Transit_Del_Cb) (void *data, Elm_Transit *transit);
27154
27155    /**
27156     * Add new transit.
27157     *
27158     * @note Is not necessary to delete the transit object, it will be deleted at
27159     * the end of its operation.
27160     * @note The transit will start playing when the program enter in the main loop, is not
27161     * necessary to give a start to the transit.
27162     *
27163     * @return The transit object.
27164     *
27165     * @ingroup Transit
27166     */
27167    EAPI Elm_Transit                *elm_transit_add(void);
27168
27169    /**
27170     * Stops the animation and delete the @p transit object.
27171     *
27172     * Call this function if you wants to stop the animation before the duration
27173     * time. Make sure the @p transit object is still alive with
27174     * elm_transit_del_cb_set() function.
27175     * All added effects will be deleted, calling its repective data_free_cb
27176     * functions. The function setted by elm_transit_del_cb_set() will be called.
27177     *
27178     * @see elm_transit_del_cb_set()
27179     *
27180     * @param transit The transit object to be deleted.
27181     *
27182     * @ingroup Transit
27183     * @warning Just call this function if you are sure the transit is alive.
27184     */
27185    EAPI void                        elm_transit_del(Elm_Transit *transit) EINA_ARG_NONNULL(1);
27186
27187    /**
27188     * Add a new effect to the transit.
27189     *
27190     * @note The cb function and the data are the key to the effect. If you try to
27191     * add an already added effect, nothing is done.
27192     * @note After the first addition of an effect in @p transit, if its
27193     * effect list become empty again, the @p transit will be killed by
27194     * elm_transit_del(transit) function.
27195     *
27196     * Exemple:
27197     * @code
27198     * Elm_Transit *transit = elm_transit_add();
27199     * elm_transit_effect_add(transit,
27200     *                        elm_transit_effect_blend_op,
27201     *                        elm_transit_effect_blend_context_new(),
27202     *                        elm_transit_effect_blend_context_free);
27203     * @endcode
27204     *
27205     * @param transit The transit object.
27206     * @param transition_cb The operation function. It is called when the
27207     * animation begins, it is the function that actually performs the animation.
27208     * It is called with the @p data, @p transit and the time progression of the
27209     * animation (a double value between 0.0 and 1.0).
27210     * @param effect The context data of the effect.
27211     * @param end_cb The function to free the context data, it will be called
27212     * at the end of the effect, it must finalize the animation and free the
27213     * @p data.
27214     *
27215     * @ingroup Transit
27216     * @warning The transit free the context data at the and of the transition with
27217     * the data_free_cb function, do not use the context data in another transit.
27218     */
27219    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);
27220
27221    /**
27222     * Delete an added effect.
27223     *
27224     * This function will remove the effect from the @p transit, calling the
27225     * data_free_cb to free the @p data.
27226     *
27227     * @see elm_transit_effect_add()
27228     *
27229     * @note If the effect is not found, nothing is done.
27230     * @note If the effect list become empty, this function will call
27231     * elm_transit_del(transit), that is, it will kill the @p transit.
27232     *
27233     * @param transit The transit object.
27234     * @param transition_cb The operation function.
27235     * @param effect The context data of the effect.
27236     *
27237     * @ingroup Transit
27238     */
27239    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);
27240
27241    /**
27242     * Add new object to apply the effects.
27243     *
27244     * @note After the first addition of an object in @p transit, if its
27245     * object list become empty again, the @p transit will be killed by
27246     * elm_transit_del(transit) function.
27247     * @note If the @p obj belongs to another transit, the @p obj will be
27248     * removed from it and it will only belong to the @p transit. If the old
27249     * transit stays without objects, it will die.
27250     * @note When you add an object into the @p transit, its state from
27251     * evas_object_pass_events_get(obj) is saved, and it is applied when the
27252     * transit ends, if you change this state whith evas_object_pass_events_set()
27253     * after add the object, this state will change again when @p transit stops to
27254     * run.
27255     *
27256     * @param transit The transit object.
27257     * @param obj Object to be animated.
27258     *
27259     * @ingroup Transit
27260     * @warning It is not allowed to add a new object after transit begins to go.
27261     */
27262    EAPI void                        elm_transit_object_add(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
27263
27264    /**
27265     * Removes an added object from the transit.
27266     *
27267     * @note If the @p obj is not in the @p transit, nothing is done.
27268     * @note If the list become empty, this function will call
27269     * elm_transit_del(transit), that is, it will kill the @p transit.
27270     *
27271     * @param transit The transit object.
27272     * @param obj Object to be removed from @p transit.
27273     *
27274     * @ingroup Transit
27275     * @warning It is not allowed to remove objects after transit begins to go.
27276     */
27277    EAPI void                        elm_transit_object_remove(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
27278
27279    /**
27280     * Get the objects of the transit.
27281     *
27282     * @param transit The transit object.
27283     * @return a Eina_List with the objects from the transit.
27284     *
27285     * @ingroup Transit
27286     */
27287    EAPI const Eina_List            *elm_transit_objects_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27288
27289    /**
27290     * Enable/disable keeping up the objects states.
27291     * If it is not kept, the objects states will be reset when transition ends.
27292     *
27293     * @note @p transit can not be NULL.
27294     * @note One state includes geometry, color, map data.
27295     *
27296     * @param transit The transit object.
27297     * @param state_keep Keeping or Non Keeping.
27298     *
27299     * @ingroup Transit
27300     */
27301    EAPI void                        elm_transit_objects_final_state_keep_set(Elm_Transit *transit, Eina_Bool state_keep) EINA_ARG_NONNULL(1);
27302
27303    /**
27304     * Get a value whether the objects states will be reset or not.
27305     *
27306     * @note @p transit can not be NULL
27307     *
27308     * @see elm_transit_objects_final_state_keep_set()
27309     *
27310     * @param transit The transit object.
27311     * @return EINA_TRUE means the states of the objects will be reset.
27312     * If @p transit is NULL, EINA_FALSE is returned
27313     *
27314     * @ingroup Transit
27315     */
27316    EAPI Eina_Bool                   elm_transit_objects_final_state_keep_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27317
27318    /**
27319     * Set the event enabled when transit is operating.
27320     *
27321     * If @p enabled is EINA_TRUE, the objects of the transit will receives
27322     * events from mouse and keyboard during the animation.
27323     * @note When you add an object with elm_transit_object_add(), its state from
27324     * evas_object_pass_events_get(obj) is saved, and it is applied when the
27325     * transit ends, if you change this state with evas_object_pass_events_set()
27326     * after adding the object, this state will change again when @p transit stops
27327     * to run.
27328     *
27329     * @param transit The transit object.
27330     * @param enabled Events are received when enabled is @c EINA_TRUE, and
27331     * ignored otherwise.
27332     *
27333     * @ingroup Transit
27334     */
27335    EAPI void                        elm_transit_event_enabled_set(Elm_Transit *transit, Eina_Bool enabled) EINA_ARG_NONNULL(1);
27336
27337    /**
27338     * Get the value of event enabled status.
27339     *
27340     * @see elm_transit_event_enabled_set()
27341     *
27342     * @param transit The Transit object
27343     * @return EINA_TRUE, when event is enabled. If @p transit is NULL
27344     * EINA_FALSE is returned
27345     *
27346     * @ingroup Transit
27347     */
27348    EAPI Eina_Bool                   elm_transit_event_enabled_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27349
27350    /**
27351     * Set the user-callback function when the transit is deleted.
27352     *
27353     * @note Using this function twice will overwrite the first function setted.
27354     * @note the @p transit object will be deleted after call @p cb function.
27355     *
27356     * @param transit The transit object.
27357     * @param cb Callback function pointer. This function will be called before
27358     * the deletion of the transit.
27359     * @param data Callback funtion user data. It is the @p op parameter.
27360     *
27361     * @ingroup Transit
27362     */
27363    EAPI void                        elm_transit_del_cb_set(Elm_Transit *transit, Elm_Transit_Del_Cb cb, void *data) EINA_ARG_NONNULL(1);
27364
27365    /**
27366     * Set reverse effect automatically.
27367     *
27368     * If auto reverse is setted, after running the effects with the progress
27369     * parameter from 0 to 1, it will call the effecs again with the progress
27370     * from 1 to 0. The transit will last for a time iqual to (2 * duration * repeat),
27371     * where the duration was setted with the function elm_transit_add and
27372     * the repeat with the function elm_transit_repeat_times_set().
27373     *
27374     * @param transit The transit object.
27375     * @param reverse EINA_TRUE means the auto_reverse is on.
27376     *
27377     * @ingroup Transit
27378     */
27379    EAPI void                        elm_transit_auto_reverse_set(Elm_Transit *transit, Eina_Bool reverse) EINA_ARG_NONNULL(1);
27380
27381    /**
27382     * Get if the auto reverse is on.
27383     *
27384     * @see elm_transit_auto_reverse_set()
27385     *
27386     * @param transit The transit object.
27387     * @return EINA_TRUE means auto reverse is on. If @p transit is NULL
27388     * EINA_FALSE is returned
27389     *
27390     * @ingroup Transit
27391     */
27392    EAPI Eina_Bool                   elm_transit_auto_reverse_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27393
27394    /**
27395     * Set the transit repeat count. Effect will be repeated by repeat count.
27396     *
27397     * This function sets the number of repetition the transit will run after
27398     * the first one, that is, if @p repeat is 1, the transit will run 2 times.
27399     * If the @p repeat is a negative number, it will repeat infinite times.
27400     *
27401     * @note If this function is called during the transit execution, the transit
27402     * will run @p repeat times, ignoring the times it already performed.
27403     *
27404     * @param transit The transit object
27405     * @param repeat Repeat count
27406     *
27407     * @ingroup Transit
27408     */
27409    EAPI void                        elm_transit_repeat_times_set(Elm_Transit *transit, int repeat) EINA_ARG_NONNULL(1);
27410
27411    /**
27412     * Get the transit repeat count.
27413     *
27414     * @see elm_transit_repeat_times_set()
27415     *
27416     * @param transit The Transit object.
27417     * @return The repeat count. If @p transit is NULL
27418     * 0 is returned
27419     *
27420     * @ingroup Transit
27421     */
27422    EAPI int                         elm_transit_repeat_times_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27423
27424    /**
27425     * Set the transit animation acceleration type.
27426     *
27427     * This function sets the tween mode of the transit that can be:
27428     * ELM_TRANSIT_TWEEN_MODE_LINEAR - The default mode.
27429     * ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL - Starts in accelerate mode and ends decelerating.
27430     * ELM_TRANSIT_TWEEN_MODE_DECELERATE - The animation will be slowed over time.
27431     * ELM_TRANSIT_TWEEN_MODE_ACCELERATE - The animation will accelerate over time.
27432     *
27433     * @param transit The transit object.
27434     * @param tween_mode The tween type.
27435     *
27436     * @ingroup Transit
27437     */
27438    EAPI void                        elm_transit_tween_mode_set(Elm_Transit *transit, Elm_Transit_Tween_Mode tween_mode) EINA_ARG_NONNULL(1);
27439
27440    /**
27441     * Get the transit animation acceleration type.
27442     *
27443     * @note @p transit can not be NULL
27444     *
27445     * @param transit The transit object.
27446     * @return The tween type. If @p transit is NULL
27447     * ELM_TRANSIT_TWEEN_MODE_LINEAR is returned.
27448     *
27449     * @ingroup Transit
27450     */
27451    EAPI Elm_Transit_Tween_Mode      elm_transit_tween_mode_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27452
27453    /**
27454     * Set the transit animation time
27455     *
27456     * @note @p transit can not be NULL
27457     *
27458     * @param transit The transit object.
27459     * @param duration The animation time.
27460     *
27461     * @ingroup Transit
27462     */
27463    EAPI void                        elm_transit_duration_set(Elm_Transit *transit, double duration) EINA_ARG_NONNULL(1);
27464
27465    /**
27466     * Get the transit animation time
27467     *
27468     * @note @p transit can not be NULL
27469     *
27470     * @param transit The transit object.
27471     *
27472     * @return The transit animation time.
27473     *
27474     * @ingroup Transit
27475     */
27476    EAPI double                      elm_transit_duration_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27477
27478    /**
27479     * Starts the transition.
27480     * Once this API is called, the transit begins to measure the time.
27481     *
27482     * @note @p transit can not be NULL
27483     *
27484     * @param transit The transit object.
27485     *
27486     * @ingroup Transit
27487     */
27488    EAPI void                        elm_transit_go(Elm_Transit *transit) EINA_ARG_NONNULL(1);
27489
27490    /**
27491     * Pause/Resume the transition.
27492     *
27493     * If you call elm_transit_go again, the transit will be started from the
27494     * beginning, and will be unpaused.
27495     *
27496     * @note @p transit can not be NULL
27497     *
27498     * @param transit The transit object.
27499     * @param paused Whether the transition should be paused or not.
27500     *
27501     * @ingroup Transit
27502     */
27503    EAPI void                        elm_transit_paused_set(Elm_Transit *transit, Eina_Bool paused) EINA_ARG_NONNULL(1);
27504
27505    /**
27506     * Get the value of paused status.
27507     *
27508     * @see elm_transit_paused_set()
27509     *
27510     * @note @p transit can not be NULL
27511     *
27512     * @param transit The transit object.
27513     * @return EINA_TRUE means transition is paused. If @p transit is NULL
27514     * EINA_FALSE is returned
27515     *
27516     * @ingroup Transit
27517     */
27518    EAPI Eina_Bool                   elm_transit_paused_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27519
27520    /**
27521     * Get the time progression of the animation (a double value between 0.0 and 1.0).
27522     *
27523     * The value returned is a fraction (current time / total time). It
27524     * represents the progression position relative to the total.
27525     *
27526     * @note @p transit can not be NULL
27527     *
27528     * @param transit The transit object.
27529     *
27530     * @return The time progression value. If @p transit is NULL
27531     * 0 is returned
27532     *
27533     * @ingroup Transit
27534     */
27535    EAPI double                      elm_transit_progress_value_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
27536
27537    /**
27538     * Makes the chain relationship between two transits.
27539     *
27540     * @note @p transit can not be NULL. Transit would have multiple chain transits.
27541     * @note @p chain_transit can not be NULL. Chain transits could be chained to the only one transit.
27542     *
27543     * @param transit The transit object.
27544     * @param chain_transit The chain transit object. This transit will be operated
27545     *        after transit is done.
27546     *
27547     * This function adds @p chain_transit transition to a chain after the @p
27548     * transit, and will be started as soon as @p transit ends. See @ref
27549     * transit_example_02_explained for a full example.
27550     *
27551     * @ingroup Transit
27552     */
27553    EAPI void                        elm_transit_chain_transit_add(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1, 2);
27554
27555    /**
27556     * Cut off the chain relationship between two transits.
27557     *
27558     * @note @p transit can not be NULL. Transit would have the chain relationship with @p chain transit.
27559     * @note @p chain_transit can not be NULL. Chain transits should be chained to the @p transit.
27560     *
27561     * @param transit The transit object.
27562     * @param chain_transit The chain transit object.
27563     *
27564     * This function remove the @p chain_transit transition from the @p transit.
27565     *
27566     * @ingroup Transit
27567     */
27568    EAPI void                        elm_transit_chain_transit_del(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1,2);
27569
27570    /**
27571     * Get the current chain transit list.
27572     *
27573     * @note @p transit can not be NULL.
27574     *
27575     * @param transit The transit object.
27576     * @return chain transit list.
27577     *
27578     * @ingroup Transit
27579     */
27580    EAPI Eina_List                  *elm_transit_chain_transits_get(const Elm_Transit *transit);
27581
27582    /**
27583     * Add the Resizing Effect to Elm_Transit.
27584     *
27585     * @note This API is one of the facades. It creates resizing effect context
27586     * and add it's required APIs to elm_transit_effect_add.
27587     *
27588     * @see elm_transit_effect_add()
27589     *
27590     * @param transit Transit object.
27591     * @param from_w Object width size when effect begins.
27592     * @param from_h Object height size when effect begins.
27593     * @param to_w Object width size when effect ends.
27594     * @param to_h Object height size when effect ends.
27595     * @return Resizing effect context data.
27596     *
27597     * @ingroup Transit
27598     */
27599    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);
27600
27601    /**
27602     * Add the Translation Effect to Elm_Transit.
27603     *
27604     * @note This API is one of the facades. It creates translation effect context
27605     * and add it's required APIs to elm_transit_effect_add.
27606     *
27607     * @see elm_transit_effect_add()
27608     *
27609     * @param transit Transit object.
27610     * @param from_dx X Position variation when effect begins.
27611     * @param from_dy Y Position variation when effect begins.
27612     * @param to_dx X Position variation when effect ends.
27613     * @param to_dy Y Position variation when effect ends.
27614     * @return Translation effect context data.
27615     *
27616     * @ingroup Transit
27617     * @warning It is highly recommended just create a transit with this effect when
27618     * the window that the objects of the transit belongs has already been created.
27619     * This is because this effect needs the geometry information about the objects,
27620     * and if the window was not created yet, it can get a wrong information.
27621     */
27622    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);
27623
27624    /**
27625     * Add the Zoom Effect to Elm_Transit.
27626     *
27627     * @note This API is one of the facades. It creates zoom effect context
27628     * and add it's required APIs to elm_transit_effect_add.
27629     *
27630     * @see elm_transit_effect_add()
27631     *
27632     * @param transit Transit object.
27633     * @param from_rate Scale rate when effect begins (1 is current rate).
27634     * @param to_rate Scale rate when effect ends.
27635     * @return Zoom effect context data.
27636     *
27637     * @ingroup Transit
27638     * @warning It is highly recommended just create a transit with this effect when
27639     * the window that the objects of the transit belongs has already been created.
27640     * This is because this effect needs the geometry information about the objects,
27641     * and if the window was not created yet, it can get a wrong information.
27642     */
27643    EAPI Elm_Transit_Effect *elm_transit_effect_zoom_add(Elm_Transit *transit, float from_rate, float to_rate);
27644
27645    /**
27646     * Add the Flip Effect to Elm_Transit.
27647     *
27648     * @note This API is one of the facades. It creates flip effect context
27649     * and add it's required APIs to elm_transit_effect_add.
27650     * @note This effect is applied to each pair of objects in the order they are listed
27651     * in the transit list of objects. The first object in the pair will be the
27652     * "front" object and the second will be the "back" object.
27653     *
27654     * @see elm_transit_effect_add()
27655     *
27656     * @param transit Transit object.
27657     * @param axis Flipping Axis(X or Y).
27658     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
27659     * @return Flip effect context data.
27660     *
27661     * @ingroup Transit
27662     * @warning It is highly recommended just create a transit with this effect when
27663     * the window that the objects of the transit belongs has already been created.
27664     * This is because this effect needs the geometry information about the objects,
27665     * and if the window was not created yet, it can get a wrong information.
27666     */
27667    EAPI Elm_Transit_Effect *elm_transit_effect_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
27668
27669    /**
27670     * Add the Resizable Flip Effect to Elm_Transit.
27671     *
27672     * @note This API is one of the facades. It creates resizable flip effect context
27673     * and add it's required APIs to elm_transit_effect_add.
27674     * @note This effect is applied to each pair of objects in the order they are listed
27675     * in the transit list of objects. The first object in the pair will be the
27676     * "front" object and the second will be the "back" object.
27677     *
27678     * @see elm_transit_effect_add()
27679     *
27680     * @param transit Transit object.
27681     * @param axis Flipping Axis(X or Y).
27682     * @param cw Flipping Direction. EINA_TRUE is clock-wise.
27683     * @return Resizable flip effect context data.
27684     *
27685     * @ingroup Transit
27686     * @warning It is highly recommended just create a transit with this effect when
27687     * the window that the objects of the transit belongs has already been created.
27688     * This is because this effect needs the geometry information about the objects,
27689     * and if the window was not created yet, it can get a wrong information.
27690     */
27691    EAPI Elm_Transit_Effect *elm_transit_effect_resizable_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
27692
27693    /**
27694     * Add the Wipe Effect to Elm_Transit.
27695     *
27696     * @note This API is one of the facades. It creates wipe effect context
27697     * and add it's required APIs to elm_transit_effect_add.
27698     *
27699     * @see elm_transit_effect_add()
27700     *
27701     * @param transit Transit object.
27702     * @param type Wipe type. Hide or show.
27703     * @param dir Wipe Direction.
27704     * @return Wipe effect context data.
27705     *
27706     * @ingroup Transit
27707     * @warning It is highly recommended just create a transit with this effect when
27708     * the window that the objects of the transit belongs has already been created.
27709     * This is because this effect needs the geometry information about the objects,
27710     * and if the window was not created yet, it can get a wrong information.
27711     */
27712    EAPI Elm_Transit_Effect *elm_transit_effect_wipe_add(Elm_Transit *transit, Elm_Transit_Effect_Wipe_Type type, Elm_Transit_Effect_Wipe_Dir dir);
27713
27714    /**
27715     * Add the Color Effect to Elm_Transit.
27716     *
27717     * @note This API is one of the facades. It creates color effect context
27718     * and add it's required APIs to elm_transit_effect_add.
27719     *
27720     * @see elm_transit_effect_add()
27721     *
27722     * @param transit        Transit object.
27723     * @param  from_r        RGB R when effect begins.
27724     * @param  from_g        RGB G when effect begins.
27725     * @param  from_b        RGB B when effect begins.
27726     * @param  from_a        RGB A when effect begins.
27727     * @param  to_r          RGB R when effect ends.
27728     * @param  to_g          RGB G when effect ends.
27729     * @param  to_b          RGB B when effect ends.
27730     * @param  to_a          RGB A when effect ends.
27731     * @return               Color effect context data.
27732     *
27733     * @ingroup Transit
27734     */
27735    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);
27736
27737    /**
27738     * Add the Fade Effect to Elm_Transit.
27739     *
27740     * @note This API is one of the facades. It creates fade effect context
27741     * and add it's required APIs to elm_transit_effect_add.
27742     * @note This effect is applied to each pair of objects in the order they are listed
27743     * in the transit list of objects. The first object in the pair will be the
27744     * "before" object and the second will be the "after" object.
27745     *
27746     * @see elm_transit_effect_add()
27747     *
27748     * @param transit Transit object.
27749     * @return Fade effect context data.
27750     *
27751     * @ingroup Transit
27752     * @warning It is highly recommended just create a transit with this effect when
27753     * the window that the objects of the transit belongs has already been created.
27754     * This is because this effect needs the color information about the objects,
27755     * and if the window was not created yet, it can get a wrong information.
27756     */
27757    EAPI Elm_Transit_Effect *elm_transit_effect_fade_add(Elm_Transit *transit);
27758
27759    /**
27760     * Add the Blend Effect to Elm_Transit.
27761     *
27762     * @note This API is one of the facades. It creates blend effect context
27763     * and add it's required APIs to elm_transit_effect_add.
27764     * @note This effect is applied to each pair of objects in the order they are listed
27765     * in the transit list of objects. The first object in the pair will be the
27766     * "before" object and the second will be the "after" object.
27767     *
27768     * @see elm_transit_effect_add()
27769     *
27770     * @param transit Transit object.
27771     * @return Blend effect context data.
27772     *
27773     * @ingroup Transit
27774     * @warning It is highly recommended just create a transit with this effect when
27775     * the window that the objects of the transit belongs has already been created.
27776     * This is because this effect needs the color information about the objects,
27777     * and if the window was not created yet, it can get a wrong information.
27778     */
27779    EAPI Elm_Transit_Effect *elm_transit_effect_blend_add(Elm_Transit *transit);
27780
27781    /**
27782     * Add the Rotation Effect to Elm_Transit.
27783     *
27784     * @note This API is one of the facades. It creates rotation effect context
27785     * and add it's required APIs to elm_transit_effect_add.
27786     *
27787     * @see elm_transit_effect_add()
27788     *
27789     * @param transit Transit object.
27790     * @param from_degree Degree when effect begins.
27791     * @param to_degree Degree when effect is ends.
27792     * @return Rotation effect context data.
27793     *
27794     * @ingroup Transit
27795     * @warning It is highly recommended just create a transit with this effect when
27796     * the window that the objects of the transit belongs has already been created.
27797     * This is because this effect needs the geometry information about the objects,
27798     * and if the window was not created yet, it can get a wrong information.
27799     */
27800    EAPI Elm_Transit_Effect *elm_transit_effect_rotation_add(Elm_Transit *transit, float from_degree, float to_degree);
27801
27802    /**
27803     * Add the ImageAnimation Effect to Elm_Transit.
27804     *
27805     * @note This API is one of the facades. It creates image animation effect context
27806     * and add it's required APIs to elm_transit_effect_add.
27807     * The @p images parameter is a list images paths. This list and
27808     * its contents will be deleted at the end of the effect by
27809     * elm_transit_effect_image_animation_context_free() function.
27810     *
27811     * Example:
27812     * @code
27813     * char buf[PATH_MAX];
27814     * Eina_List *images = NULL;
27815     * Elm_Transit *transi = elm_transit_add();
27816     *
27817     * snprintf(buf, sizeof(buf), "%s/images/icon_11.png", PACKAGE_DATA_DIR);
27818     * images = eina_list_append(images, eina_stringshare_add(buf));
27819     *
27820     * snprintf(buf, sizeof(buf), "%s/images/logo_small.png", PACKAGE_DATA_DIR);
27821     * images = eina_list_append(images, eina_stringshare_add(buf));
27822     * elm_transit_effect_image_animation_add(transi, images);
27823     *
27824     * @endcode
27825     *
27826     * @see elm_transit_effect_add()
27827     *
27828     * @param transit Transit object.
27829     * @param images Eina_List of images file paths. This list and
27830     * its contents will be deleted at the end of the effect by
27831     * elm_transit_effect_image_animation_context_free() function.
27832     * @return Image Animation effect context data.
27833     *
27834     * @ingroup Transit
27835     */
27836    EAPI Elm_Transit_Effect *elm_transit_effect_image_animation_add(Elm_Transit *transit, Eina_List *images);
27837    /**
27838     * @}
27839     */
27840
27841    typedef struct _Elm_Store                      Elm_Store;
27842    typedef struct _Elm_Store_Filesystem           Elm_Store_Filesystem;
27843    typedef struct _Elm_Store_Item                 Elm_Store_Item;
27844    typedef struct _Elm_Store_Item_Filesystem      Elm_Store_Item_Filesystem;
27845    typedef struct _Elm_Store_Item_Info            Elm_Store_Item_Info;
27846    typedef struct _Elm_Store_Item_Info_Filesystem Elm_Store_Item_Info_Filesystem;
27847    typedef struct _Elm_Store_Item_Mapping         Elm_Store_Item_Mapping;
27848    typedef struct _Elm_Store_Item_Mapping_Empty   Elm_Store_Item_Mapping_Empty;
27849    typedef struct _Elm_Store_Item_Mapping_Icon    Elm_Store_Item_Mapping_Icon;
27850    typedef struct _Elm_Store_Item_Mapping_Photo   Elm_Store_Item_Mapping_Photo;
27851    typedef struct _Elm_Store_Item_Mapping_Custom  Elm_Store_Item_Mapping_Custom;
27852
27853    typedef Eina_Bool (*Elm_Store_Item_List_Cb) (void *data, Elm_Store_Item_Info *info);
27854    typedef void      (*Elm_Store_Item_Fetch_Cb) (void *data, Elm_Store_Item *sti);
27855    typedef void      (*Elm_Store_Item_Unfetch_Cb) (void *data, Elm_Store_Item *sti);
27856    typedef void     *(*Elm_Store_Item_Mapping_Cb) (void *data, Elm_Store_Item *sti, const char *part);
27857
27858    typedef enum
27859      {
27860         ELM_STORE_ITEM_MAPPING_NONE = 0,
27861         ELM_STORE_ITEM_MAPPING_LABEL, // const char * -> label
27862         ELM_STORE_ITEM_MAPPING_STATE, // Eina_Bool -> state
27863         ELM_STORE_ITEM_MAPPING_ICON, // char * -> icon path
27864         ELM_STORE_ITEM_MAPPING_PHOTO, // char * -> photo path
27865         ELM_STORE_ITEM_MAPPING_CUSTOM, // item->custom(it->data, it, part) -> void * (-> any)
27866         // can add more here as needed by common apps
27867         ELM_STORE_ITEM_MAPPING_LAST
27868      } Elm_Store_Item_Mapping_Type;
27869
27870    struct _Elm_Store_Item_Mapping_Icon
27871      {
27872         // FIXME: allow edje file icons
27873         int                   w, h;
27874         Elm_Icon_Lookup_Order lookup_order;
27875         Eina_Bool             standard_name : 1;
27876         Eina_Bool             no_scale : 1;
27877         Eina_Bool             smooth : 1;
27878         Eina_Bool             scale_up : 1;
27879         Eina_Bool             scale_down : 1;
27880      };
27881
27882    struct _Elm_Store_Item_Mapping_Empty
27883      {
27884         Eina_Bool             dummy;
27885      };
27886
27887    struct _Elm_Store_Item_Mapping_Photo
27888      {
27889         int                   size;
27890      };
27891
27892    struct _Elm_Store_Item_Mapping_Custom
27893      {
27894         Elm_Store_Item_Mapping_Cb func;
27895      };
27896
27897    struct _Elm_Store_Item_Mapping
27898      {
27899         Elm_Store_Item_Mapping_Type     type;
27900         const char                     *part;
27901         int                             offset;
27902         union
27903           {
27904              Elm_Store_Item_Mapping_Empty  empty;
27905              Elm_Store_Item_Mapping_Icon   icon;
27906              Elm_Store_Item_Mapping_Photo  photo;
27907              Elm_Store_Item_Mapping_Custom custom;
27908              // add more types here
27909           } details;
27910      };
27911
27912    struct _Elm_Store_Item_Info
27913      {
27914         Elm_Genlist_Item_Class       *item_class;
27915         const Elm_Store_Item_Mapping *mapping;
27916         void                         *data;
27917         char                         *sort_id;
27918      };
27919
27920    struct _Elm_Store_Item_Info_Filesystem
27921      {
27922         Elm_Store_Item_Info  base;
27923         char                *path;
27924      };
27925
27926 #define ELM_STORE_ITEM_MAPPING_END { ELM_STORE_ITEM_MAPPING_NONE, NULL, 0, { .empty = { EINA_TRUE } } }
27927 #define ELM_STORE_ITEM_MAPPING_OFFSET(st, it) offsetof(st, it)
27928
27929    EAPI void                    elm_store_free(Elm_Store *st);
27930
27931    EAPI Elm_Store              *elm_store_filesystem_new(void);
27932    EAPI void                    elm_store_filesystem_directory_set(Elm_Store *st, const char *dir) EINA_ARG_NONNULL(1);
27933    EAPI const char             *elm_store_filesystem_directory_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27934    EAPI const char             *elm_store_item_filesystem_path_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27935
27936    EAPI void                    elm_store_target_genlist_set(Elm_Store *st, Evas_Object *obj) EINA_ARG_NONNULL(1);
27937
27938    EAPI void                    elm_store_cache_set(Elm_Store *st, int max) EINA_ARG_NONNULL(1);
27939    EAPI int                     elm_store_cache_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27940    EAPI void                    elm_store_list_func_set(Elm_Store *st, Elm_Store_Item_List_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27941    EAPI void                    elm_store_fetch_func_set(Elm_Store *st, Elm_Store_Item_Fetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27942    EAPI void                    elm_store_fetch_thread_set(Elm_Store *st, Eina_Bool use_thread) EINA_ARG_NONNULL(1);
27943    EAPI Eina_Bool               elm_store_fetch_thread_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27944
27945    EAPI void                    elm_store_unfetch_func_set(Elm_Store *st, Elm_Store_Item_Unfetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
27946    EAPI void                    elm_store_sorted_set(Elm_Store *st, Eina_Bool sorted) EINA_ARG_NONNULL(1);
27947    EAPI Eina_Bool               elm_store_sorted_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
27948    EAPI void                    elm_store_item_data_set(Elm_Store_Item *sti, void *data) EINA_ARG_NONNULL(1);
27949    EAPI void                   *elm_store_item_data_get(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27950    EAPI const Elm_Store        *elm_store_item_store_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27951    EAPI const Elm_Genlist_Item *elm_store_item_genlist_item_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
27952
27953    /**
27954     * @defgroup SegmentControl SegmentControl
27955     * @ingroup Elementary
27956     *
27957     * @image html img/widget/segment_control/preview-00.png
27958     * @image latex img/widget/segment_control/preview-00.eps width=\textwidth
27959     *
27960     * @image html img/segment_control.png
27961     * @image latex img/segment_control.eps width=\textwidth
27962     *
27963     * Segment control widget is a horizontal control made of multiple segment
27964     * items, each segment item functioning similar to discrete two state button.
27965     * A segment control groups the items together and provides compact
27966     * single button with multiple equal size segments.
27967     *
27968     * Segment item size is determined by base widget
27969     * size and the number of items added.
27970     * Only one segment item can be at selected state. A segment item can display
27971     * combination of Text and any Evas_Object like Images or other widget.
27972     *
27973     * Smart callbacks one can listen to:
27974     * - "changed" - When the user clicks on a segment item which is not
27975     *   previously selected and get selected. The event_info parameter is the
27976     *   segment item pointer.
27977     *
27978     * Available styles for it:
27979     * - @c "default"
27980     *
27981     * Here is an example on its usage:
27982     * @li @ref segment_control_example
27983     */
27984
27985    /**
27986     * @addtogroup SegmentControl
27987     * @{
27988     */
27989
27990    typedef struct _Elm_Segment_Item Elm_Segment_Item; /**< Item handle for a segment control widget. */
27991
27992    /**
27993     * Add a new segment control widget to the given parent Elementary
27994     * (container) object.
27995     *
27996     * @param parent The parent object.
27997     * @return a new segment control widget handle or @c NULL, on errors.
27998     *
27999     * This function inserts a new segment control widget on the canvas.
28000     *
28001     * @ingroup SegmentControl
28002     */
28003    EAPI Evas_Object      *elm_segment_control_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
28004
28005    /**
28006     * Append a new item to the segment control object.
28007     *
28008     * @param obj The segment control object.
28009     * @param icon The icon object to use for the left side of the item. An
28010     * icon can be any Evas object, but usually it is an icon created
28011     * with elm_icon_add().
28012     * @param label The label of the item.
28013     *        Note that, NULL is different from empty string "".
28014     * @return The created item or @c NULL upon failure.
28015     *
28016     * A new item will be created and appended to the segment control, i.e., will
28017     * be set as @b last item.
28018     *
28019     * If it should be inserted at another position,
28020     * elm_segment_control_item_insert_at() should be used instead.
28021     *
28022     * Items created with this function can be deleted with function
28023     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
28024     *
28025     * @note @p label set to @c NULL is different from empty string "".
28026     * If an item
28027     * only has icon, it will be displayed bigger and centered. If it has
28028     * icon and label, even that an empty string, icon will be smaller and
28029     * positioned at left.
28030     *
28031     * Simple example:
28032     * @code
28033     * sc = elm_segment_control_add(win);
28034     * ic = elm_icon_add(win);
28035     * elm_icon_file_set(ic, "path/to/image", NULL);
28036     * elm_icon_scale_set(ic, EINA_TRUE, EINA_TRUE);
28037     * elm_segment_control_item_add(sc, ic, "label");
28038     * evas_object_show(sc);
28039     * @endcode
28040     *
28041     * @see elm_segment_control_item_insert_at()
28042     * @see elm_segment_control_item_del()
28043     *
28044     * @ingroup SegmentControl
28045     */
28046    EAPI Elm_Segment_Item *elm_segment_control_item_add(Evas_Object *obj, Evas_Object *icon, const char *label) EINA_ARG_NONNULL(1);
28047
28048    /**
28049     * Insert a new item to the segment control object at specified position.
28050     *
28051     * @param obj The segment control object.
28052     * @param icon The icon object to use for the left side of the item. An
28053     * icon can be any Evas object, but usually it is an icon created
28054     * with elm_icon_add().
28055     * @param label The label of the item.
28056     * @param index Item position. Value should be between 0 and items count.
28057     * @return The created item or @c NULL upon failure.
28058
28059     * Index values must be between @c 0, when item will be prepended to
28060     * segment control, and items count, that can be get with
28061     * elm_segment_control_item_count_get(), case when item will be appended
28062     * to segment control, just like elm_segment_control_item_add().
28063     *
28064     * Items created with this function can be deleted with function
28065     * elm_segment_control_item_del() or elm_segment_control_item_del_at().
28066     *
28067     * @note @p label set to @c NULL is different from empty string "".
28068     * If an item
28069     * only has icon, it will be displayed bigger and centered. If it has
28070     * icon and label, even that an empty string, icon will be smaller and
28071     * positioned at left.
28072     *
28073     * @see elm_segment_control_item_add()
28074     * @see elm_segment_control_item_count_get()
28075     * @see elm_segment_control_item_del()
28076     *
28077     * @ingroup SegmentControl
28078     */
28079    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);
28080
28081    /**
28082     * Remove a segment control item from its parent, deleting it.
28083     *
28084     * @param it The item to be removed.
28085     *
28086     * Items can be added with elm_segment_control_item_add() or
28087     * elm_segment_control_item_insert_at().
28088     *
28089     * @ingroup SegmentControl
28090     */
28091    EAPI void              elm_segment_control_item_del(Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
28092
28093    /**
28094     * Remove a segment control item at given index from its parent,
28095     * deleting it.
28096     *
28097     * @param obj The segment control object.
28098     * @param index The position of the segment control item to be deleted.
28099     *
28100     * Items can be added with elm_segment_control_item_add() or
28101     * elm_segment_control_item_insert_at().
28102     *
28103     * @ingroup SegmentControl
28104     */
28105    EAPI void              elm_segment_control_item_del_at(Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28106
28107    /**
28108     * Get the Segment items count from segment control.
28109     *
28110     * @param obj The segment control object.
28111     * @return Segment items count.
28112     *
28113     * It will just return the number of items added to segment control @p obj.
28114     *
28115     * @ingroup SegmentControl
28116     */
28117    EAPI int               elm_segment_control_item_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28118
28119    /**
28120     * Get the item placed at specified index.
28121     *
28122     * @param obj The segment control object.
28123     * @param index The index of the segment item.
28124     * @return The segment control item or @c NULL on failure.
28125     *
28126     * Index is the position of an item in segment control widget. Its
28127     * range is from @c 0 to <tt> count - 1 </tt>.
28128     * Count is the number of items, that can be get with
28129     * elm_segment_control_item_count_get().
28130     *
28131     * @ingroup SegmentControl
28132     */
28133    EAPI Elm_Segment_Item *elm_segment_control_item_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28134
28135    /**
28136     * Get the label of item.
28137     *
28138     * @param obj The segment control object.
28139     * @param index The index of the segment item.
28140     * @return The label of the item at @p index.
28141     *
28142     * The return value is a pointer to the label associated to the item when
28143     * it was created, with function elm_segment_control_item_add(), or later
28144     * with function elm_segment_control_item_label_set. If no label
28145     * was passed as argument, it will return @c NULL.
28146     *
28147     * @see elm_segment_control_item_label_set() for more details.
28148     * @see elm_segment_control_item_add()
28149     *
28150     * @ingroup SegmentControl
28151     */
28152    EAPI const char       *elm_segment_control_item_label_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28153
28154    /**
28155     * Set the label of item.
28156     *
28157     * @param it The item of segment control.
28158     * @param text The label of item.
28159     *
28160     * The label to be displayed by the item.
28161     * Label will be at right of the icon (if set).
28162     *
28163     * If a label was passed as argument on item creation, with function
28164     * elm_control_segment_item_add(), it will be already
28165     * displayed by the item.
28166     *
28167     * @see elm_segment_control_item_label_get()
28168     * @see elm_segment_control_item_add()
28169     *
28170     * @ingroup SegmentControl
28171     */
28172    EAPI void              elm_segment_control_item_label_set(Elm_Segment_Item* it, const char* label) EINA_ARG_NONNULL(1);
28173
28174    /**
28175     * Get the icon associated to the item.
28176     *
28177     * @param obj The segment control object.
28178     * @param index The index of the segment item.
28179     * @return The left side icon associated to the item at @p index.
28180     *
28181     * The return value is a pointer to the icon associated to the item when
28182     * it was created, with function elm_segment_control_item_add(), or later
28183     * with function elm_segment_control_item_icon_set(). If no icon
28184     * was passed as argument, it will return @c NULL.
28185     *
28186     * @see elm_segment_control_item_add()
28187     * @see elm_segment_control_item_icon_set()
28188     *
28189     * @ingroup SegmentControl
28190     */
28191    EAPI Evas_Object      *elm_segment_control_item_icon_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
28192
28193    /**
28194     * Set the icon associated to the item.
28195     *
28196     * @param it The segment control item.
28197     * @param icon The icon object to associate with @p it.
28198     *
28199     * The icon object to use at left side of the item. An
28200     * icon can be any Evas object, but usually it is an icon created
28201     * with elm_icon_add().
28202     *
28203     * Once the icon object is set, a previously set one will be deleted.
28204     * @warning Setting the same icon for two items will cause the icon to
28205     * dissapear from the first item.
28206     *
28207     * If an icon was passed as argument on item creation, with function
28208     * elm_segment_control_item_add(), it will be already
28209     * associated to the item.
28210     *
28211     * @see elm_segment_control_item_add()
28212     * @see elm_segment_control_item_icon_get()
28213     *
28214     * @ingroup SegmentControl
28215     */
28216    EAPI void              elm_segment_control_item_icon_set(Elm_Segment_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
28217
28218    /**
28219     * Get the index of an item.
28220     *
28221     * @param it The segment control item.
28222     * @return The position of item in segment control widget.
28223     *
28224     * Index is the position of an item in segment control widget. Its
28225     * range is from @c 0 to <tt> count - 1 </tt>.
28226     * Count is the number of items, that can be get with
28227     * elm_segment_control_item_count_get().
28228     *
28229     * @ingroup SegmentControl
28230     */
28231    EAPI int               elm_segment_control_item_index_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
28232
28233    /**
28234     * Get the base object of the item.
28235     *
28236     * @param it The segment control item.
28237     * @return The base object associated with @p it.
28238     *
28239     * Base object is the @c Evas_Object that represents that item.
28240     *
28241     * @ingroup SegmentControl
28242     */
28243    EAPI Evas_Object      *elm_segment_control_item_object_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
28244
28245    /**
28246     * Get the selected item.
28247     *
28248     * @param obj The segment control object.
28249     * @return The selected item or @c NULL if none of segment items is
28250     * selected.
28251     *
28252     * The selected item can be unselected with function
28253     * elm_segment_control_item_selected_set().
28254     *
28255     * The selected item always will be highlighted on segment control.
28256     *
28257     * @ingroup SegmentControl
28258     */
28259    EAPI Elm_Segment_Item *elm_segment_control_item_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28260
28261    /**
28262     * Set the selected state of an item.
28263     *
28264     * @param it The segment control item
28265     * @param select The selected state
28266     *
28267     * This sets the selected state of the given item @p it.
28268     * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
28269     *
28270     * If a new item is selected the previosly selected will be unselected.
28271     * Previoulsy selected item can be get with function
28272     * elm_segment_control_item_selected_get().
28273     *
28274     * The selected item always will be highlighted on segment control.
28275     *
28276     * @see elm_segment_control_item_selected_get()
28277     *
28278     * @ingroup SegmentControl
28279     */
28280    EAPI void              elm_segment_control_item_selected_set(Elm_Segment_Item *it, Eina_Bool select) EINA_ARG_NONNULL(1);
28281
28282    /**
28283     * @}
28284     */
28285
28286    /**
28287     * @defgroup Grid Grid
28288     *
28289     * The grid is a grid layout widget that lays out a series of children as a
28290     * fixed "grid" of widgets using a given percentage of the grid width and
28291     * height each using the child object.
28292     *
28293     * The Grid uses a "Virtual resolution" that is stretched to fill the grid
28294     * widgets size itself. The default is 100 x 100, so that means the
28295     * position and sizes of children will effectively be percentages (0 to 100)
28296     * of the width or height of the grid widget
28297     *
28298     * @{
28299     */
28300
28301    /**
28302     * Add a new grid to the parent
28303     *
28304     * @param parent The parent object
28305     * @return The new object or NULL if it cannot be created
28306     *
28307     * @ingroup Grid
28308     */
28309    EAPI Evas_Object *elm_grid_add(Evas_Object *parent);
28310
28311    /**
28312     * Set the virtual size of the grid
28313     *
28314     * @param obj The grid object
28315     * @param w The virtual width of the grid
28316     * @param h The virtual height of the grid
28317     *
28318     * @ingroup Grid
28319     */
28320    EAPI void         elm_grid_size_set(Evas_Object *obj, int w, int h);
28321
28322    /**
28323     * Get the virtual size of the grid
28324     *
28325     * @param obj The grid object
28326     * @param w Pointer to integer to store the virtual width of the grid
28327     * @param h Pointer to integer to store the virtual height of the grid
28328     *
28329     * @ingroup Grid
28330     */
28331    EAPI void         elm_grid_size_get(Evas_Object *obj, int *w, int *h);
28332
28333    /**
28334     * Pack child at given position and size
28335     *
28336     * @param obj The grid object
28337     * @param subobj The child to pack
28338     * @param x The virtual x coord at which to pack it
28339     * @param y The virtual y coord at which to pack it
28340     * @param w The virtual width at which to pack it
28341     * @param h The virtual height at which to pack it
28342     *
28343     * @ingroup Grid
28344     */
28345    EAPI void         elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h);
28346
28347    /**
28348     * Unpack a child from a grid object
28349     *
28350     * @param obj The grid object
28351     * @param subobj The child to unpack
28352     *
28353     * @ingroup Grid
28354     */
28355    EAPI void         elm_grid_unpack(Evas_Object *obj, Evas_Object *subobj);
28356
28357    /**
28358     * Faster way to remove all child objects from a grid object.
28359     *
28360     * @param obj The grid object
28361     * @param clear If true, it will delete just removed children
28362     *
28363     * @ingroup Grid
28364     */
28365    EAPI void         elm_grid_clear(Evas_Object *obj, Eina_Bool clear);
28366
28367    /**
28368     * Set packing of an existing child at to position and size
28369     *
28370     * @param subobj The child to set packing of
28371     * @param x The virtual x coord at which to pack it
28372     * @param y The virtual y coord at which to pack it
28373     * @param w The virtual width at which to pack it
28374     * @param h The virtual height at which to pack it
28375     *
28376     * @ingroup Grid
28377     */
28378    EAPI void         elm_grid_pack_set(Evas_Object *subobj, int x, int y, int w, int h);
28379
28380    /**
28381     * get packing of a child
28382     *
28383     * @param subobj The child to query
28384     * @param x Pointer to integer to store the virtual x coord
28385     * @param y Pointer to integer to store the virtual y coord
28386     * @param w Pointer to integer to store the virtual width
28387     * @param h Pointer to integer to store the virtual height
28388     *
28389     * @ingroup Grid
28390     */
28391    EAPI void         elm_grid_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h);
28392
28393    /**
28394     * @}
28395     */
28396
28397    EAPI Evas_Object *elm_factory_add(Evas_Object *parent);
28398    EINA_DEPRECATED EAPI void         elm_factory_content_set(Evas_Object *obj, Evas_Object *content);
28399    EINA_DEPRECATED EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj);
28400    EAPI void         elm_factory_maxmin_mode_set(Evas_Object *obj, Eina_Bool enabled);
28401    EAPI Eina_Bool    elm_factory_maxmin_mode_get(const Evas_Object *obj);
28402    EAPI void         elm_factory_maxmin_reset_set(Evas_Object *obj);
28403
28404    /**
28405     * @defgroup Video Video
28406     *
28407     * @addtogroup Video
28408     * @{
28409     *
28410     * Elementary comes with two object that help design application that need
28411     * to display video. The main one, Elm_Video, display a video by using Emotion.
28412     * It does embedded the video inside an Edje object, so you can do some
28413     * animation depending on the video state change. It does also implement a
28414     * ressource management policy to remove this burden from the application writer.
28415     *
28416     * The second one, Elm_Player is a video player that need to be linked with and Elm_Video.
28417     * It take care of updating its content according to Emotion event and provide a
28418     * way to theme itself. It also does automatically raise the priority of the
28419     * linked Elm_Video so it will use the video decoder if available. It also does
28420     * activate the remember function on the linked Elm_Video object.
28421     *
28422     * Signals that you can add callback for are :
28423     *
28424     * "forward,clicked" - the user clicked the forward button.
28425     * "info,clicked" - the user clicked the info button.
28426     * "next,clicked" - the user clicked the next button.
28427     * "pause,clicked" - the user clicked the pause button.
28428     * "play,clicked" - the user clicked the play button.
28429     * "prev,clicked" - the user clicked the prev button.
28430     * "rewind,clicked" - the user clicked the rewind button.
28431     * "stop,clicked" - the user clicked the stop button.
28432     *
28433     * Default contents parts of the player widget that you can use for are:
28434     * @li "video" - A video of the player
28435     *
28436     */
28437
28438    /**
28439     * @brief Add a new Elm_Player object to the given parent Elementary (container) object.
28440     *
28441     * @param parent The parent object
28442     * @return a new player widget handle or @c NULL, on errors.
28443     *
28444     * This function inserts a new player widget on the canvas.
28445     *
28446     * @see elm_object_part_content_set()
28447     *
28448     * @ingroup Video
28449     */
28450    EAPI Evas_Object *elm_player_add(Evas_Object *parent);
28451
28452    /**
28453     * @brief Link a Elm_Payer with an Elm_Video object.
28454     *
28455     * @param player the Elm_Player object.
28456     * @param video The Elm_Video object.
28457     *
28458     * This mean that action on the player widget will affect the
28459     * video object and the state of the video will be reflected in
28460     * the player itself.
28461     *
28462     * @see elm_player_add()
28463     * @see elm_video_add()
28464     * @deprecated use elm_object_part_content_set() instead
28465     *
28466     * @ingroup Video
28467     */
28468    EINA_DEPRECATED EAPI void elm_player_video_set(Evas_Object *player, Evas_Object *video);
28469
28470    /**
28471     * @brief Add a new Elm_Video object to the given parent Elementary (container) object.
28472     *
28473     * @param parent The parent object
28474     * @return a new video widget handle or @c NULL, on errors.
28475     *
28476     * This function inserts a new video widget on the canvas.
28477     *
28478     * @seeelm_video_file_set()
28479     * @see elm_video_uri_set()
28480     *
28481     * @ingroup Video
28482     */
28483    EAPI Evas_Object *elm_video_add(Evas_Object *parent);
28484
28485    /**
28486     * @brief Define the file that will be the video source.
28487     *
28488     * @param video The video object to define the file for.
28489     * @param filename The file to target.
28490     *
28491     * This function will explicitly define a filename as a source
28492     * for the video of the Elm_Video object.
28493     *
28494     * @see elm_video_uri_set()
28495     * @see elm_video_add()
28496     * @see elm_player_add()
28497     *
28498     * @ingroup Video
28499     */
28500    EAPI void elm_video_file_set(Evas_Object *video, const char *filename);
28501
28502    /**
28503     * @brief Define the uri that will be the video source.
28504     *
28505     * @param video The video object to define the file for.
28506     * @param uri The uri to target.
28507     *
28508     * This function will define an uri as a source for the video of the
28509     * Elm_Video object. URI could be remote source of video, like http:// or local source
28510     * like for example WebCam who are most of the time v4l2:// (but that depend and
28511     * you should use Emotion API to request and list the available Webcam on your system).
28512     *
28513     * @see elm_video_file_set()
28514     * @see elm_video_add()
28515     * @see elm_player_add()
28516     *
28517     * @ingroup Video
28518     */
28519    EAPI void elm_video_uri_set(Evas_Object *video, const char *uri);
28520
28521    /**
28522     * @brief Get the underlying Emotion object.
28523     *
28524     * @param video The video object to proceed the request on.
28525     * @return the underlying Emotion object.
28526     *
28527     * @ingroup Video
28528     */
28529    EAPI Evas_Object *elm_video_emotion_get(const Evas_Object *video);
28530
28531    /**
28532     * @brief Start to play the video
28533     *
28534     * @param video The video object to proceed the request on.
28535     *
28536     * Start to play the video and cancel all suspend state.
28537     *
28538     * @ingroup Video
28539     */
28540    EAPI void elm_video_play(Evas_Object *video);
28541
28542    /**
28543     * @brief Pause the video
28544     *
28545     * @param video The video object to proceed the request on.
28546     *
28547     * Pause the video and start a timer to trigger suspend mode.
28548     *
28549     * @ingroup Video
28550     */
28551    EAPI void elm_video_pause(Evas_Object *video);
28552
28553    /**
28554     * @brief Stop the video
28555     *
28556     * @param video The video object to proceed the request on.
28557     *
28558     * Stop the video and put the emotion in deep sleep mode.
28559     *
28560     * @ingroup Video
28561     */
28562    EAPI void elm_video_stop(Evas_Object *video);
28563
28564    /**
28565     * @brief Is the video actually playing.
28566     *
28567     * @param video The video object to proceed the request on.
28568     * @return EINA_TRUE if the video is actually playing.
28569     *
28570     * You should consider watching event on the object instead of polling
28571     * the object state.
28572     *
28573     * @ingroup Video
28574     */
28575    EAPI Eina_Bool elm_video_is_playing(const Evas_Object *video);
28576
28577    /**
28578     * @brief Is it possible to seek inside the video.
28579     *
28580     * @param video The video object to proceed the request on.
28581     * @return EINA_TRUE if is possible to seek inside the video.
28582     *
28583     * @ingroup Video
28584     */
28585    EAPI Eina_Bool elm_video_is_seekable(const Evas_Object *video);
28586
28587    /**
28588     * @brief Is the audio muted.
28589     *
28590     * @param video The video object to proceed the request on.
28591     * @return EINA_TRUE if the audio is muted.
28592     *
28593     * @ingroup Video
28594     */
28595    EAPI Eina_Bool elm_video_audio_mute_get(const Evas_Object *video);
28596
28597    /**
28598     * @brief Change the mute state of the Elm_Video object.
28599     *
28600     * @param video The video object to proceed the request on.
28601     * @param mute The new mute state.
28602     *
28603     * @ingroup Video
28604     */
28605    EAPI void elm_video_audio_mute_set(Evas_Object *video, Eina_Bool mute);
28606
28607    /**
28608     * @brief Get the audio level of the current video.
28609     *
28610     * @param video The video object to proceed the request on.
28611     * @return the current audio level.
28612     *
28613     * @ingroup Video
28614     */
28615    EAPI double elm_video_audio_level_get(const Evas_Object *video);
28616
28617    /**
28618     * @brief Set the audio level of anElm_Video object.
28619     *
28620     * @param video The video object to proceed the request on.
28621     * @param volume The new audio volume.
28622     *
28623     * @ingroup Video
28624     */
28625    EAPI void elm_video_audio_level_set(Evas_Object *video, double volume);
28626
28627    EAPI double elm_video_play_position_get(const Evas_Object *video);
28628    EAPI void elm_video_play_position_set(Evas_Object *video, double position);
28629    EAPI double elm_video_play_length_get(const Evas_Object *video);
28630    EAPI void elm_video_remember_position_set(Evas_Object *video, Eina_Bool remember);
28631    EAPI Eina_Bool elm_video_remember_position_get(const Evas_Object *video);
28632    EAPI const char *elm_video_title_get(const Evas_Object *video);
28633    /**
28634     * @}
28635     */
28636
28637    /**
28638     * @defgroup Naviframe Naviframe
28639     * @ingroup Elementary
28640     *
28641     * @brief Naviframe is a kind of view manager for the applications.
28642     *
28643     * Naviframe provides functions to switch different pages with stack
28644     * mechanism. It means if one page(item) needs to be changed to the new one,
28645     * then naviframe would push the new page to it's internal stack. Of course,
28646     * it can be back to the previous page by popping the top page. Naviframe
28647     * provides some transition effect while the pages are switching (same as
28648     * pager).
28649     *
28650     * Since each item could keep the different styles, users could keep the
28651     * same look & feel for the pages or different styles for the items in it's
28652     * application.
28653     *
28654     * Signals that you can add callback for are:
28655     * @li "transition,finished" - When the transition is finished in changing
28656     *     the item
28657     * @li "title,clicked" - User clicked title area
28658     *
28659     * Default contents parts of the naviframe items that you can use for are:
28660     * @li "default" - A main content of the page
28661     * @li "icon" - An icon in the title area
28662     * @li "prev_btn" - A button to go to the previous page
28663     * @li "next_btn" - A button to go to the next page
28664     *
28665     * Default text parts of the naviframe items that you can use for are:
28666     * @li "default" - Title label in the title area
28667     * @li "subtitle" - Sub-title label in the title area
28668     *
28669     * @ref tutorial_naviframe gives a good overview of the usage of the API.
28670     */
28671
28672    /**
28673     * @addtogroup Naviframe
28674     * @{
28675     */
28676
28677    /**
28678     * @brief Add a new Naviframe object to the parent.
28679     *
28680     * @param parent Parent object
28681     * @return New object or @c NULL, if it cannot be created
28682     *
28683     * @ingroup Naviframe
28684     */
28685    EAPI Evas_Object        *elm_naviframe_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
28686    /**
28687     * @brief Push a new item to the top of the naviframe stack (and show it).
28688     *
28689     * @param obj The naviframe object
28690     * @param title_label The label in the title area. The name of the title
28691     *        label part is "elm.text.title"
28692     * @param prev_btn The button to go to the previous item. If it is NULL,
28693     *        then naviframe will create a back button automatically. The name of
28694     *        the prev_btn part is "elm.swallow.prev_btn"
28695     * @param next_btn The button to go to the next item. Or It could be just an
28696     *        extra function button. The name of the next_btn part is
28697     *        "elm.swallow.next_btn"
28698     * @param content The main content object. The name of content part is
28699     *        "elm.swallow.content"
28700     * @param item_style The current item style name. @c NULL would be default.
28701     * @return The created item or @c NULL upon failure.
28702     *
28703     * The item pushed becomes one page of the naviframe, this item will be
28704     * deleted when it is popped.
28705     *
28706     * @see also elm_naviframe_item_style_set()
28707     * @see also elm_naviframe_item_insert_before()
28708     * @see also elm_naviframe_item_insert_after()
28709     *
28710     * The following styles are available for this item:
28711     * @li @c "default"
28712     *
28713     * @ingroup Naviframe
28714     */
28715    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);
28716     /**
28717     * @brief Insert a new item into the naviframe before item @p before.
28718     *
28719     * @param before The naviframe item to insert before.
28720     * @param title_label The label in the title area. The name of the title
28721     *        label part is "elm.text.title"
28722     * @param prev_btn The button to go to the previous item. If it is NULL,
28723     *        then naviframe will create a back button automatically. The name of
28724     *        the prev_btn part is "elm.swallow.prev_btn"
28725     * @param next_btn The button to go to the next item. Or It could be just an
28726     *        extra function button. The name of the next_btn part is
28727     *        "elm.swallow.next_btn"
28728     * @param content The main content object. The name of content part is
28729     *        "elm.swallow.content"
28730     * @param item_style The current item style name. @c NULL would be default.
28731     * @return The created item or @c NULL upon failure.
28732     *
28733     * The item is inserted into the naviframe straight away without any
28734     * transition operations. This item will be deleted when it is popped.
28735     *
28736     * @see also elm_naviframe_item_style_set()
28737     * @see also elm_naviframe_item_push()
28738     * @see also elm_naviframe_item_insert_after()
28739     *
28740     * The following styles are available for this item:
28741     * @li @c "default"
28742     *
28743     * @ingroup Naviframe
28744     */
28745    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);
28746    /**
28747     * @brief Insert a new item into the naviframe after item @p after.
28748     *
28749     * @param after The naviframe item to insert after.
28750     * @param title_label The label in the title area. The name of the title
28751     *        label part is "elm.text.title"
28752     * @param prev_btn The button to go to the previous item. If it is NULL,
28753     *        then naviframe will create a back button automatically. The name of
28754     *        the prev_btn part is "elm.swallow.prev_btn"
28755     * @param next_btn The button to go to the next item. Or It could be just an
28756     *        extra function button. The name of the next_btn part is
28757     *        "elm.swallow.next_btn"
28758     * @param content The main content object. The name of content part is
28759     *        "elm.swallow.content"
28760     * @param item_style The current item style name. @c NULL would be default.
28761     * @return The created item or @c NULL upon failure.
28762     *
28763     * The item is inserted into the naviframe straight away without any
28764     * transition operations. This item will be deleted when it is popped.
28765     *
28766     * @see also elm_naviframe_item_style_set()
28767     * @see also elm_naviframe_item_push()
28768     * @see also elm_naviframe_item_insert_before()
28769     *
28770     * The following styles are available for this item:
28771     * @li @c "default"
28772     *
28773     * @ingroup Naviframe
28774     */
28775    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);
28776    /**
28777     * @brief Pop an item that is on top of the stack
28778     *
28779     * @param obj The naviframe object
28780     * @return @c NULL or the content object(if the
28781     *         elm_naviframe_content_preserve_on_pop_get is true).
28782     *
28783     * This pops an item that is on the top(visible) of the naviframe, makes it
28784     * disappear, then deletes the item. The item that was underneath it on the
28785     * stack will become visible.
28786     *
28787     * @see also elm_naviframe_content_preserve_on_pop_get()
28788     *
28789     * @ingroup Naviframe
28790     */
28791    EAPI Evas_Object        *elm_naviframe_item_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
28792    /**
28793     * @brief Pop the items between the top and the above one on the given item.
28794     *
28795     * @param it The naviframe item
28796     *
28797     * @ingroup Naviframe
28798     */
28799    EAPI void                elm_naviframe_item_pop_to(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28800    /**
28801    * Promote an item already in the naviframe stack to the top of the stack
28802    *
28803    * @param it The naviframe item
28804    *
28805    * This will take the indicated item and promote it to the top of the stack
28806    * as if it had been pushed there. The item must already be inside the
28807    * naviframe stack to work.
28808    *
28809    */
28810    EAPI void                elm_naviframe_item_promote(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28811    /**
28812     * @brief Delete the given item instantly.
28813     *
28814     * @param it The naviframe item
28815     *
28816     * This just deletes the given item from the naviframe item list instantly.
28817     * So this would not emit any signals for view transitions but just change
28818     * the current view if the given item is a top one.
28819     *
28820     * @ingroup Naviframe
28821     */
28822    EAPI void                elm_naviframe_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28823    /**
28824     * @brief preserve the content objects when items are popped.
28825     *
28826     * @param obj The naviframe object
28827     * @param preserve Enable the preserve mode if EINA_TRUE, disable otherwise
28828     *
28829     * @see also elm_naviframe_content_preserve_on_pop_get()
28830     *
28831     * @ingroup Naviframe
28832     */
28833    EAPI void                elm_naviframe_content_preserve_on_pop_set(Evas_Object *obj, Eina_Bool preserve) EINA_ARG_NONNULL(1);
28834    /**
28835     * @brief Get a value whether preserve mode is enabled or not.
28836     *
28837     * @param obj The naviframe object
28838     * @return If @c EINA_TRUE, preserve mode is enabled
28839     *
28840     * @see also elm_naviframe_content_preserve_on_pop_set()
28841     *
28842     * @ingroup Naviframe
28843     */
28844    EAPI Eina_Bool           elm_naviframe_content_preserve_on_pop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28845    /**
28846     * @brief Get a top item on the naviframe stack
28847     *
28848     * @param obj The naviframe object
28849     * @return The top item on the naviframe stack or @c NULL, if the stack is
28850     *         empty
28851     *
28852     * @ingroup Naviframe
28853     */
28854    EAPI Elm_Object_Item    *elm_naviframe_top_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28855    /**
28856     * @brief Get a bottom item on the naviframe stack
28857     *
28858     * @param obj The naviframe object
28859     * @return The bottom item on the naviframe stack or @c NULL, if the stack is
28860     *         empty
28861     *
28862     * @ingroup Naviframe
28863     */
28864    EAPI Elm_Object_Item    *elm_naviframe_bottom_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28865    /**
28866     * @brief Set an item style
28867     *
28868     * @param obj The naviframe item
28869     * @param item_style The current item style name. @c NULL would be default
28870     *
28871     * The following styles are available for this item:
28872     * @li @c "default"
28873     *
28874     * @see also elm_naviframe_item_style_get()
28875     *
28876     * @ingroup Naviframe
28877     */
28878    EAPI void                elm_naviframe_item_style_set(Elm_Object_Item *it, const char *item_style) EINA_ARG_NONNULL(1);
28879    /**
28880     * @brief Get an item style
28881     *
28882     * @param obj The naviframe item
28883     * @return The current item style name
28884     *
28885     * @see also elm_naviframe_item_style_set()
28886     *
28887     * @ingroup Naviframe
28888     */
28889    EAPI const char         *elm_naviframe_item_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28890    /**
28891     * @brief Show/Hide the title area
28892     *
28893     * @param it The naviframe item
28894     * @param visible If @c EINA_TRUE, title area will be visible, hidden
28895     *        otherwise
28896     *
28897     * When the title area is invisible, then the controls would be hidden so as     * to expand the content area to full-size.
28898     *
28899     * @see also elm_naviframe_item_title_visible_get()
28900     *
28901     * @ingroup Naviframe
28902     */
28903    EAPI void                elm_naviframe_item_title_visible_set(Elm_Object_Item *it, Eina_Bool visible) EINA_ARG_NONNULL(1);
28904    /**
28905     * @brief Get a value whether title area is visible or not.
28906     *
28907     * @param it The naviframe item
28908     * @return If @c EINA_TRUE, title area is visible
28909     *
28910     * @see also elm_naviframe_item_title_visible_set()
28911     *
28912     * @ingroup Naviframe
28913     */
28914    EAPI Eina_Bool           elm_naviframe_item_title_visible_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
28915
28916    /**
28917     * @brief Set creating prev button automatically or not
28918     *
28919     * @param obj The naviframe object
28920     * @param auto_pushed If @c EINA_TRUE, the previous button(back button) will
28921     *        be created internally when you pass the @c NULL to the prev_btn
28922     *        parameter in elm_naviframe_item_push
28923     *
28924     * @see also elm_naviframe_item_push()
28925     */
28926    EAPI void                elm_naviframe_prev_btn_auto_pushed_set(Evas_Object *obj, Eina_Bool auto_pushed) EINA_ARG_NONNULL(1);
28927    /**
28928     * @brief Get a value whether prev button(back button) will be auto pushed or
28929     *        not.
28930     *
28931     * @param obj The naviframe object
28932     * @return If @c EINA_TRUE, prev button will be auto pushed.
28933     *
28934     * @see also elm_naviframe_item_push()
28935     *           elm_naviframe_prev_btn_auto_pushed_set()
28936     */
28937    EAPI Eina_Bool           elm_naviframe_prev_btn_auto_pushed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28938    /**
28939     * @brief Get a list of all the naviframe items.
28940     *
28941     * @param obj The naviframe object
28942     * @return An Eina_Inlist* of naviframe items, #Elm_Object_Item,
28943     * or @c NULL on failure.
28944     */
28945    EAPI Eina_Inlist        *elm_naviframe_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28946
28947     /**
28948     * @}
28949     */
28950
28951    /**
28952     * @defgroup Multibuttonentry Multibuttonentry
28953     *
28954     * A Multibuttonentry is a widget to allow a user enter text and manage it as a number of buttons
28955     * Each text button is inserted by pressing the "return" key. If there is no space in the current row,
28956     * a new button is added to the next row. When a text button is pressed, it will become focused.
28957     * Backspace removes the focus.
28958     * When the Multibuttonentry loses focus items longer than 1 lines are shrunk to one line.
28959     *
28960     * Smart callbacks one can register:
28961     * - @c "item,selected" - when item is selected. May be called on backspace key.
28962     * - @c "item,added" - when a new multibuttonentry item is added.
28963     * - @c "item,deleted" - when a multibuttonentry item is deleted.
28964     * - @c "item,clicked" - selected item of multibuttonentry is clicked.
28965     * - @c "clicked" - when multibuttonentry is clicked.
28966     * - @c "focused" - when multibuttonentry is focused.
28967     * - @c "unfocused" - when multibuttonentry is unfocused.
28968     * - @c "expanded" - when multibuttonentry is expanded.
28969     * - @c "shrank" - when multibuttonentry is shrank.
28970     * - @c "shrank,state,changed" - when shrink mode state of multibuttonentry is changed.
28971     *
28972     * Here is an example on its usage:
28973     * @li @ref multibuttonentry_example
28974     */
28975     /**
28976     * @addtogroup Multibuttonentry
28977     * @{
28978     */
28979
28980    typedef struct _Multibuttonentry_Item Elm_Multibuttonentry_Item;
28981    typedef Eina_Bool (*Elm_Multibuttonentry_Item_Filter_callback) (Evas_Object *obj, const char *item_label, void *item_data, void *data);
28982
28983    /**
28984     * @brief Add a new multibuttonentry to the parent
28985     *
28986     * @param parent The parent object
28987     * @return The new object or NULL if it cannot be created
28988     *
28989     */
28990    EAPI Evas_Object               *elm_multibuttonentry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
28991    /**
28992     * Get the label
28993     *
28994     * @param obj The multibuttonentry object
28995     * @return The label, or NULL if none
28996     *
28997     */
28998    EAPI const char                *elm_multibuttonentry_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
28999    /**
29000     * Set the label
29001     *
29002     * @param obj The multibuttonentry object
29003     * @param label The text label string
29004     *
29005     */
29006    EAPI void                       elm_multibuttonentry_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
29007    /**
29008     * Get the entry of the multibuttonentry object
29009     *
29010     * @param obj The multibuttonentry object
29011     * @return The entry object, or NULL if none
29012     *
29013     */
29014    EAPI Evas_Object               *elm_multibuttonentry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29015    /**
29016     * Get the guide text
29017     *
29018     * @param obj The multibuttonentry object
29019     * @return The guide text, or NULL if none
29020     *
29021     */
29022    EAPI const char *               elm_multibuttonentry_guide_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29023    /**
29024     * Set the guide text
29025     *
29026     * @param obj The multibuttonentry object
29027     * @param label The guide text string
29028     *
29029     */
29030    EAPI void                       elm_multibuttonentry_guide_text_set(Evas_Object *obj, const char *guidetext) EINA_ARG_NONNULL(1);
29031    /**
29032     * Get the value of shrink_mode state.
29033     *
29034     * @param obj The multibuttonentry object
29035     * @param the value of shrink mode state.
29036     *
29037     */
29038    EAPI int                        elm_multibuttonentry_shrink_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29039    /**
29040     * Set/Unset the multibuttonentry to shrink mode state of single line
29041     *
29042     * @param obj The multibuttonentry object
29043     * @param the value of shrink_mode state. set this to 1 to set the multibuttonentry to shrink state of single line. set this to 0 to unset the contracted state.
29044     *
29045     */
29046    EAPI void                       elm_multibuttonentry_shrink_mode_set(Evas_Object *obj, int shrink) EINA_ARG_NONNULL(1);
29047    /**
29048     * Prepend a new item to the multibuttonentry
29049     *
29050     * @param obj The multibuttonentry object
29051     * @param label The label of new item
29052     * @param data The ponter to the data to be attached
29053     * @return A handle to the item added or NULL if not possible
29054     *
29055     */
29056    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const char *label, void *data) EINA_ARG_NONNULL(1);
29057    /**
29058     * Append a new item to the multibuttonentry
29059     *
29060     * @param obj The multibuttonentry object
29061     * @param label The label of new item
29062     * @param data The ponter to the data to be attached
29063     * @return A handle to the item added or NULL if not possible
29064     *
29065     */
29066    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const char *label, void *data) EINA_ARG_NONNULL(1);
29067    /**
29068     * Add a new item to the multibuttonentry before the indicated object
29069     *
29070     * reference.
29071     * @param obj The multibuttonentry object
29072     * @param before The item before which to add it
29073     * @param label The label of new item
29074     * @param data The ponter to the data to be attached
29075     * @return A handle to the item added or NULL if not possible
29076     *
29077     */
29078    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj, Elm_Multibuttonentry_Item *before, const char *label, void *data) EINA_ARG_NONNULL(1);
29079    /**
29080     * Add a new item to the multibuttonentry after the indicated object
29081     *
29082     * @param obj The multibuttonentry object
29083     * @param after The item after which to add it
29084     * @param label The label of new item
29085     * @param data The ponter to the data to be attached
29086     * @return A handle to the item added or NULL if not possible
29087     *
29088     */
29089    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_insert_after(Evas_Object *obj, Elm_Multibuttonentry_Item *after, const char *label, void *data) EINA_ARG_NONNULL(1);
29090    /**
29091     * Get a list of items in the multibuttonentry
29092     *
29093     * @param obj The multibuttonentry object
29094     * @return The list of items, or NULL if none
29095     *
29096     */
29097    EAPI const Eina_List           *elm_multibuttonentry_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29098    /**
29099     * Get the first item in the multibuttonentry
29100     *
29101     * @param obj The multibuttonentry object
29102     * @return The first item, or NULL if none
29103     *
29104     */
29105    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29106    /**
29107     * Get the last item in the multibuttonentry
29108     *
29109     * @param obj The multibuttonentry object
29110     * @return The last item, or NULL if none
29111     *
29112     */
29113    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29114    /**
29115     * Get the selected item in the multibuttonentry
29116     *
29117     * @param obj The multibuttonentry object
29118     * @return The selected item, or NULL if none
29119     *
29120     */
29121    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
29122    /**
29123     * Set the selected state of an item
29124     *
29125     * @param item The item
29126     * @param selected if it's EINA_TRUE, select the item otherwise, unselect the item
29127     *
29128     */
29129    EAPI void                       elm_multibuttonentry_item_select(Elm_Multibuttonentry_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
29130    /**
29131    * unselect all items.
29132    *
29133    * @param obj The multibuttonentry object
29134    *
29135    */
29136    EAPI void                       elm_multibuttonentry_item_unselect_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
29137   /**
29138    * Delete a given item
29139    *
29140    * @param item The item
29141    *
29142    */
29143    EAPI void                       elm_multibuttonentry_item_del(Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29144   /**
29145    * Remove all items in the multibuttonentry.
29146    *
29147    * @param obj The multibuttonentry object
29148    *
29149    */
29150    EAPI void                       elm_multibuttonentry_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
29151   /**
29152    * Get the label of a given item
29153    *
29154    * @param item The item
29155    * @return The label of a given item, or NULL if none
29156    *
29157    */
29158    EAPI const char                *elm_multibuttonentry_item_label_get(const Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29159   /**
29160    * Set the label of a given item
29161    *
29162    * @param item The item
29163    * @param label The text label string
29164    *
29165    */
29166    EAPI void                       elm_multibuttonentry_item_label_set(Elm_Multibuttonentry_Item *item, const char *str) EINA_ARG_NONNULL(1);
29167   /**
29168    * Get the previous item in the multibuttonentry
29169    *
29170    * @param item The item
29171    * @return The item before the item @p item
29172    *
29173    */
29174    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_prev_get(const Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29175   /**
29176    * Get the next item in the multibuttonentry
29177    *
29178    * @param item The item
29179    * @return The item after the item @p item
29180    *
29181    */
29182    EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_next_get(const Elm_Multibuttonentry_Item *item) EINA_ARG_NONNULL(1);
29183   /**
29184    * Append a item filter function for text inserted in the Multibuttonentry
29185    *
29186    * Append the given callback to the list. This functions will be called
29187    * whenever any text is inserted into the Multibuttonentry, with the text to be inserted
29188    * as a parameter. The callback function is free to alter the text in any way
29189    * it wants, but it must remember to free the given pointer and update it.
29190    * If the new text is to be discarded, the function can free it and set it text
29191    * parameter to NULL. This will also prevent any following filters from being
29192    * called.
29193    *
29194    * @param obj The multibuttonentryentry object
29195    * @param func The function to use as item filter
29196    * @param data User data to pass to @p func
29197    *
29198    */
29199    EAPI void elm_multibuttonentry_item_filter_append(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data) EINA_ARG_NONNULL(1);
29200   /**
29201    * Prepend a filter function for text inserted in the Multibuttentry
29202    *
29203    * Prepend the given callback to the list. See elm_multibuttonentry_item_filter_append()
29204    * for more information
29205    *
29206    * @param obj The multibuttonentry object
29207    * @param func The function to use as text filter
29208    * @param data User data to pass to @p func
29209    *
29210    */
29211    EAPI void elm_multibuttonentry_item_filter_prepend(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data) EINA_ARG_NONNULL(1);
29212   /**
29213    * Remove a filter from the list
29214    *
29215    * Removes the given callback from the filter list. See elm_multibuttonentry_item_filter_append()
29216    * for more information.
29217    *
29218    * @param obj The multibuttonentry object
29219    * @param func The filter function to remove
29220    * @param data The user data passed when adding the function
29221    *
29222    */
29223    EAPI void elm_multibuttonentry_item_filter_remove(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data) EINA_ARG_NONNULL(1);
29224
29225    /**
29226     * @}
29227     */
29228
29229 #ifdef __cplusplus
29230 }
29231 #endif
29232
29233 #endif