3 * vim:ts=8:sw=3:sts=3:expandtab:cino=>5n-3f0^-2{2(0W1st0
8 @brief Elementary Widget Library
13 @image html elementary.png
17 @section intro What is Elementary?
19 This is a VERY SIMPLE toolkit. It is not meant for writing extensive desktop
20 applications (yet). Small simple ones with simple needs.
22 It is meant to make the programmers work almost brainless but give them lots
25 @li @ref Start - Go here to quickly get started with writing Apps
27 @section organization Organization
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.
34 @section license License
36 LGPL v2 (see COPYING in the base of Elementary's source). This applies to
37 all files in the source tree.
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.
48 * @defgroup Start Getting Started
50 * To write an Elementary app, you can get started with the following:
53 #include <Elementary.h>
55 elm_main(int argc, char **argv)
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
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.
73 AC_INIT(myapp, 0.0.0, myname@mydomain.com)
75 AC_CONFIG_SRCDIR(configure.ac)
76 AM_CONFIG_HEADER(config.h)
78 AM_INIT_AUTOMAKE(1.6 dist-bzip2)
79 PKG_CHECK_MODULES([ELEMENTARY], elementary)
86 AUTOMAKE_OPTIONS = 1.4 foreign
87 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in configure depcomp install-sh missing
89 INCLUDES = -I$(top_srcdir)
93 myapp_SOURCES = main.c
94 myapp_LDADD = @ELEMENTARY_LIBS@
95 myapp_CFLAGS = @ELEMENTARY_CFLAGS@
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
109 * To generate all the things needed to bootstrap just run:
115 * This will generate Makefile.in's, the confgure script and everything else.
116 * After this it works like all normal autotools projects:
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:
128 ./confiugre --prefix=$HOME/mysoftware
131 * Also remember that autotools buys you some useful commands like:
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
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.
160 * This cleans up all build files (binaries, objects etc.) from the tree.
166 * This cleans out all files from the build and from configure's output too.
169 make maintainer-clean
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).
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
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:
184 #include <Elementary.h>
187 on_done(void *data, Evas_Object *obj, void *event_info)
189 // quit the mainloop (elm_run function will return)
194 elm_main(int argc, char **argv)
196 Evas_Object *win, *bg, *box, *lab, *btn;
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);
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);
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);
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);
231 // now we are done, show the window
232 evas_object_show(win);
234 // run the mainloop and process events and callbacks
244 @page authors Authors
245 @author Carsten Haitzler <raster@@rasterman.com>
246 @author Gustavo Sverzut Barbieri <barbieri@@profusion.mobi>
247 @author Cedric Bail <cedric.bail@@free.fr>
248 @author Vincent Torri <vtorri@@univ-evry.fr>
249 @author Daniel Kolesa <quaker66@@gmail.com>
250 @author Jaime Thomas <avi.thomas@@gmail.com>
251 @author Swisscom - http://www.swisscom.ch/
252 @author Christopher Michael <devilhorns@@comcast.net>
253 @author Marco Trevisan (TreviƱo) <mail@@3v1n0.net>
254 @author Michael Bouchaud <michael.bouchaud@@gmail.com>
255 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
256 @author Brian Wang <brian.wang.0721@@gmail.com>
257 @author Mike Blumenkrantz (zmike) <mike@@zentific.com>
258 @author Samsung Electronics <tbd>
259 @author Samsung SAIT <tbd>
260 @author Brett Nash <nash@@nash.id.au>
261 @author Bruno Dilly <bdilly@@profusion.mobi>
262 @author Rafael Fonseca <rfonseca@@profusion.mobi>
263 @author Chuneon Park <hermet@@hermet.pe.kr>
264 @author Woohyun Jung <wh0705.jung@@samsung.com>
265 @author Jaehwan Kim <jae.hwan.kim@@samsung.com>
266 @author Wonguk Jeong <wonguk.jeong@@samsung.com>
267 @author Leandro A. F. Pereira <leandro@@profusion.mobi>
268 @author Helen Fornazier <helen.fornazier@@profusion.mobi>
269 @author Gustavo Lima Chaves <glima@@profusion.mobi>
270 @author Fabiano FidĆŖncio <fidencio@@profusion.mobi>
271 @author Tiago FalcĆ£o <tiago@@profusion.mobi>
272 @author Otavio Pontes <otavio@@profusion.mobi>
273 @author Viktor Kojouharov <vkojouharov@@gmail.com>
274 @author Daniel Juyung Seo (SeoZ) <juyung.seo@@samsung.com> <seojuyung2@@gmail.com>
275 @author Sangho Park <sangho.g.park@@samsung.com> <gouache95@@gmail.com>
276 @author Rajeev Ranjan (Rajeev) <rajeev.r@@samsung.com> <rajeev.jnnce@@gmail.com>
277 @author Seunggyun Kim <sgyun.kim@@samsung.com> <tmdrbs@@gmail.com>
278 @author Sohyun Kim <anna1014.kim@@samsung.com> <sohyun.anna@@gmail.com>
279 @author Jihoon Kim <jihoon48.kim@@samsung.com>
280 @author Jeonghyun Yun (arosis) <jh0506.yun@@samsung.com>
281 @author Tom Hacohen <tom@@stosb.com>
282 @author Aharon Hillel <a.hillel@@partner.samsung.com>
283 @author Jonathan Atton (Watchwolf) <jonathan.atton@@gmail.com>
284 @author Shinwoo Kim <kimcinoo@@gmail.com>
285 @author Govindaraju SM <govi.sm@@samsung.com> <govism@@gmail.com>
286 @author Prince Kumar Dubey <prince.dubey@@samsung.com> <prince.dubey@@gmail.com>
287 @author Sung W. Park <sungwoo@gmail.com>
288 @author Thierry el Borgi <thierry@substantiel.fr>
289 @author Shilpa Singh <shilpa.singh@samsung.com> <shilpasingh.o@gmail.com>
290 @author Chanwook Jung <joey.jung@samsung.com>
291 @author Hyoyoung Chang <hyoyoung.chang@samsung.com>
292 @author Guillaume "Kuri" Friloux <guillaume.friloux@asp64.com>
293 @author Kim Yunhan <spbear@gmail.com>
295 Please contact <enlightenment-devel@lists.sourceforge.net> to get in
296 contact with the developers and maintainers.
304 * @brief Elementary's API
309 @ELM_UNIX_DEF@ ELM_UNIX
310 @ELM_WIN32_DEF@ ELM_WIN32
311 @ELM_WINCE_DEF@ ELM_WINCE
312 @ELM_EDBUS_DEF@ ELM_EDBUS
313 @ELM_EFREET_DEF@ ELM_EFREET
314 @ELM_ETHUMB_DEF@ ELM_ETHUMB
315 @ELM_EMAP_DEF@ ELM_EMAP
316 @ELM_DEBUG_DEF@ ELM_DEBUG
317 @ELM_ALLOCA_H_DEF@ ELM_ALLOCA_H
318 @ELM_LIBINTL_H_DEF@ ELM_LIBINTL_H
320 /* Standard headers for standard system calls etc. */
325 #include <sys/types.h>
326 #include <sys/stat.h>
327 #include <sys/time.h>
328 #include <sys/param.h>
341 # ifdef ELM_LIBINTL_H
342 # include <libintl.h>
353 #if defined (ELM_WIN32) || defined (ELM_WINCE)
356 # define alloca _alloca
367 #include <Ecore_Evas.h>
368 #include <Ecore_File.h>
369 #include <Ecore_IMF.h>
378 # include <Efreet_Mime.h>
379 # include <Efreet_Trash.h>
383 # include <Ethumb_Client.h>
395 # ifdef ELEMENTARY_BUILD
397 # define EAPI __declspec(dllexport)
400 # endif /* ! DLL_EXPORT */
402 # define EAPI __declspec(dllimport)
403 # endif /* ! EFL_EVAS_BUILD */
407 # define EAPI __attribute__ ((visibility("default")))
414 #endif /* ! _WIN32 */
417 /* allow usage from c++ */
422 #define ELM_VERSION_MAJOR @VMAJ@
423 #define ELM_VERSION_MINOR @VMIN@
425 typedef struct _Elm_Version
433 EAPI extern Elm_Version *elm_version;
436 #define ELM_RECTS_INTERSECT(x, y, w, h, xx, yy, ww, hh) (((x) < ((xx) + (ww))) && ((y) < ((yy) + (hh))) && (((x) + (w)) > (xx)) && (((y) + (h)) > (yy)))
437 #define ELM_PI 3.14159265358979323846
440 * @defgroup General General
442 * @brief General Elementary API. Functions that don't relate to
443 * Elementary objects specifically.
445 * Here are documented functions which init/shutdown the library,
446 * that apply to generic Elementary objects, that deal with
447 * configuration, et cetera.
449 * @ref general_functions_example_page "This" example contemplates
450 * some of these functions.
454 * @addtogroup General
459 * Defines couple of standard Evas_Object layers to be used
460 * with evas_object_layer_set().
462 * @note whenever extending with new values, try to keep some padding
463 * to siblings so there is room for further extensions.
465 typedef enum _Elm_Object_Layer
467 ELM_OBJECT_LAYER_BACKGROUND = EVAS_LAYER_MIN + 64, /**< where to place backgrounds */
468 ELM_OBJECT_LAYER_DEFAULT = 0, /**< Evas_Object default layer (and thus for Elementary) */
469 ELM_OBJECT_LAYER_FOCUS = EVAS_LAYER_MAX - 128, /**< where focus object visualization is */
470 ELM_OBJECT_LAYER_TOOLTIP = EVAS_LAYER_MAX - 64, /**< where to show tooltips */
471 ELM_OBJECT_LAYER_CURSOR = EVAS_LAYER_MAX - 32, /**< where to show cursors */
472 ELM_OBJECT_LAYER_LAST /**< last layer known by Elementary */
475 /**************************************************************************/
476 EAPI extern int ELM_ECORE_EVENT_ETHUMB_CONNECT;
479 * Emitted when any Elementary's policy value is changed.
481 EAPI extern int ELM_EVENT_POLICY_CHANGED;
484 * @typedef Elm_Event_Policy_Changed
486 * Data on the event when an Elementary policy has changed
488 typedef struct _Elm_Event_Policy_Changed Elm_Event_Policy_Changed;
491 * @struct _Elm_Event_Policy_Changed
493 * Data on the event when an Elementary policy has changed
495 struct _Elm_Event_Policy_Changed
497 unsigned int policy; /**< the policy identifier */
498 int new_value; /**< value the policy had before the change */
499 int old_value; /**< new value the policy got */
503 * Policy identifiers.
505 typedef enum _Elm_Policy
507 ELM_POLICY_QUIT, /**< under which circumstances the application
508 * should quit automatically. @see
512 } Elm_Policy; /**< Elementary policy identifiers/groups enumeration. @see elm_policy_set()
515 typedef enum _Elm_Policy_Quit
517 ELM_POLICY_QUIT_NONE = 0, /**< never quit the application
519 ELM_POLICY_QUIT_LAST_WINDOW_CLOSED /**< quit when the
521 * window is closed */
522 } Elm_Policy_Quit; /**< Possible values for the #ELM_POLICY_QUIT policy */
524 typedef enum _Elm_Focus_Direction
528 } Elm_Focus_Direction;
530 typedef enum _Elm_Text_Format
532 ELM_TEXT_FORMAT_PLAIN_UTF8,
533 ELM_TEXT_FORMAT_MARKUP_UTF8
537 * Line wrapping types.
539 typedef enum _Elm_Wrap_Type
541 ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
542 ELM_WRAP_CHAR, /**< Char wrap - wrap between characters */
543 ELM_WRAP_WORD, /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
544 ELM_WRAP_MIXED, /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
550 ELM_INPUT_PANEL_LAYOUT_NORMAL, /**< Default layout */
551 ELM_INPUT_PANEL_LAYOUT_NUMBER, /**< Number layout */
552 ELM_INPUT_PANEL_LAYOUT_EMAIL, /**< Email layout */
553 ELM_INPUT_PANEL_LAYOUT_URL, /**< URL layout */
554 ELM_INPUT_PANEL_LAYOUT_PHONENUMBER, /**< Phone Number layout */
555 ELM_INPUT_PANEL_LAYOUT_IP, /**< IP layout */
556 ELM_INPUT_PANEL_LAYOUT_MONTH, /**< Month layout */
557 ELM_INPUT_PANEL_LAYOUT_NUMBERONLY, /**< Number Only layout */
558 ELM_INPUT_PANEL_LAYOUT_INVALID
559 } Elm_Input_Panel_Layout;
563 ELM_AUTOCAPITAL_TYPE_NONE,
564 ELM_AUTOCAPITAL_TYPE_WORD,
565 ELM_AUTOCAPITAL_TYPE_SENTENCE,
566 ELM_AUTOCAPITAL_TYPE_ALLCHARACTER,
567 } Elm_Autocapital_Type;
570 * @typedef Elm_Object_Item
571 * An Elementary Object item handle.
574 typedef struct _Elm_Object_Item Elm_Object_Item;
578 * Called back when a widget's tooltip is activated and needs content.
579 * @param data user-data given to elm_object_tooltip_content_cb_set()
580 * @param obj owner widget.
582 typedef Evas_Object *(*Elm_Tooltip_Content_Cb) (void *data, Evas_Object *obj);
585 * Called back when a widget's item tooltip is activated and needs content.
586 * @param data user-data given to elm_object_tooltip_content_cb_set()
587 * @param obj owner widget.
588 * @param item context dependent item. As an example, if tooltip was
589 * set on Elm_List_Item, then it is of this type.
591 typedef Evas_Object *(*Elm_Tooltip_Item_Content_Cb) (void *data, Evas_Object *obj, void *item);
593 typedef Eina_Bool (*Elm_Event_Cb) (void *data, Evas_Object *obj, Evas_Object *src, Evas_Callback_Type type, void *event_info);
595 #ifndef ELM_LIB_QUICKLAUNCH
596 #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 */
598 #define ELM_MAIN() int main(int argc, char **argv) {return elm_quicklaunch_fallback(argc, argv);} /**< macro to be used after the elm_main() function */
601 /**************************************************************************/
605 * Initialize Elementary
607 * @param[in] argc System's argument count value
608 * @param[in] argv System's pointer to array of argument strings
609 * @return The init counter value.
611 * This function initializes Elementary and increments a counter of
612 * the number of calls to it. It returns the new counter's value.
614 * @warning This call is exported only for use by the @c ELM_MAIN()
615 * macro. There is no need to use this if you use this macro (which
616 * is highly advisable). An elm_main() should contain the entry
617 * point code for your application, having the same prototype as
618 * elm_init(), and @b not being static (putting the @c EAPI symbol
619 * in front of its type declaration is advisable). The @c
620 * ELM_MAIN() call should be placed just after it.
623 * @dontinclude bg_example_01.c
627 * See the full @ref bg_example_01_c "example".
629 * @see elm_shutdown().
632 EAPI int elm_init(int argc, char **argv);
635 * Shut down Elementary
637 * @return The init counter value.
639 * This should be called at the end of your application, just
640 * before it ceases to do any more processing. This will clean up
641 * any permanent resources your application may have allocated via
642 * Elementary that would otherwise persist.
644 * @see elm_init() for an example
648 EAPI int elm_shutdown(void);
651 * Run Elementary's main loop
653 * This call should be issued just after all initialization is
654 * completed. This function will not return until elm_exit() is
655 * called. It will keep looping, running the main
656 * (event/processing) loop for Elementary.
658 * @see elm_init() for an example
662 EAPI void elm_run(void);
665 * Exit Elementary's main loop
667 * If this call is issued, it will flag the main loop to cease
668 * processing and return back to its parent function (usually your
669 * elm_main() function).
671 * @see elm_init() for an example. There, just after a request to
672 * close the window comes, the main loop will be left.
674 * @note By using the appropriate #ELM_POLICY_QUIT on your Elementary
675 * applications, you'll be able to get this function called automatically for you.
679 EAPI void elm_exit(void);
682 * Provide information in order to make Elementary determine the @b
683 * run time location of the software in question, so other data files
684 * such as images, sound files, executable utilities, libraries,
685 * modules and locale files can be found.
687 * @param mainfunc This is your application's main function name,
688 * whose binary's location is to be found. Providing @c NULL
689 * will make Elementary not to use it
690 * @param dom This will be used as the application's "domain", in the
691 * form of a prefix to any environment variables that may
692 * override prefix detection and the directory name, inside the
693 * standard share or data directories, where the software's
694 * data files will be looked for.
695 * @param checkfile This is an (optional) magic file's path to check
696 * for existence (and it must be located in the data directory,
697 * under the share directory provided above). Its presence will
698 * help determine the prefix found was correct. Pass @c NULL if
699 * the check is not to be done.
701 * This function allows one to re-locate the application somewhere
702 * else after compilation, if the developer wishes for easier
703 * distribution of pre-compiled binaries.
705 * The prefix system is designed to locate where the given software is
706 * installed (under a common path prefix) at run time and then report
707 * specific locations of this prefix and common directories inside
708 * this prefix like the binary, library, data and locale directories,
709 * through the @c elm_app_*_get() family of functions.
711 * Call elm_app_info_set() early on before you change working
712 * directory or anything about @c argv[0], so it gets accurate
715 * It will then try and trace back which file @p mainfunc comes from,
716 * if provided, to determine the application's prefix directory.
718 * The @p dom parameter provides a string prefix to prepend before
719 * environment variables, allowing a fallback to @b specific
720 * environment variables to locate the software. You would most
721 * probably provide a lowercase string there, because it will also
722 * serve as directory domain, explained next. For environment
723 * variables purposes, this string is made uppercase. For example if
724 * @c "myapp" is provided as the prefix, then the program would expect
725 * @c "MYAPP_PREFIX" as a master environment variable to specify the
726 * exact install prefix for the software, or more specific environment
727 * variables like @c "MYAPP_BIN_DIR", @c "MYAPP_LIB_DIR", @c
728 * "MYAPP_DATA_DIR" and @c "MYAPP_LOCALE_DIR", which could be set by
729 * the user or scripts before launching. If not provided (@c NULL),
730 * environment variables will not be used to override compiled-in
731 * defaults or auto detections.
733 * The @p dom string also provides a subdirectory inside the system
734 * shared data directory for data files. For example, if the system
735 * directory is @c /usr/local/share, then this directory name is
736 * appended, creating @c /usr/local/share/myapp, if it @p was @c
737 * "myapp". It is expected that the application installs data files in
740 * The @p checkfile is a file name or path of something inside the
741 * share or data directory to be used to test that the prefix
742 * detection worked. For example, your app will install a wallpaper
743 * image as @c /usr/local/share/myapp/images/wallpaper.jpg and so to
744 * check that this worked, provide @c "images/wallpaper.jpg" as the @p
747 * @see elm_app_compile_bin_dir_set()
748 * @see elm_app_compile_lib_dir_set()
749 * @see elm_app_compile_data_dir_set()
750 * @see elm_app_compile_locale_set()
751 * @see elm_app_prefix_dir_get()
752 * @see elm_app_bin_dir_get()
753 * @see elm_app_lib_dir_get()
754 * @see elm_app_data_dir_get()
755 * @see elm_app_locale_dir_get()
757 EAPI void elm_app_info_set(void *mainfunc, const char *dom, const char *checkfile);
760 * Provide information on the @b fallback application's binaries
761 * directory, in scenarios where they get overriden by
762 * elm_app_info_set().
764 * @param dir The path to the default binaries directory (compile time
767 * @note Elementary will as well use this path to determine actual
768 * names of binaries' directory paths, maybe changing it to be @c
769 * something/local/bin instead of @c something/bin, only, for
772 * @warning You should call this function @b before
773 * elm_app_info_set().
775 EAPI void elm_app_compile_bin_dir_set(const char *dir);
778 * Provide information on the @b fallback application's libraries
779 * directory, on scenarios where they get overriden by
780 * elm_app_info_set().
782 * @param dir The path to the default libraries directory (compile
785 * @note Elementary will as well use this path to determine actual
786 * names of libraries' directory paths, maybe changing it to be @c
787 * something/lib32 or @c something/lib64 instead of @c something/lib,
790 * @warning You should call this function @b before
791 * elm_app_info_set().
793 EAPI void elm_app_compile_lib_dir_set(const char *dir);
796 * Provide information on the @b fallback application's data
797 * directory, on scenarios where they get overriden by
798 * elm_app_info_set().
800 * @param dir The path to the default data directory (compile time
803 * @note Elementary will as well use this path to determine actual
804 * names of data directory paths, maybe changing it to be @c
805 * something/local/share instead of @c something/share, only, for
808 * @warning You should call this function @b before
809 * elm_app_info_set().
811 EAPI void elm_app_compile_data_dir_set(const char *dir);
814 * Provide information on the @b fallback application's locale
815 * directory, on scenarios where they get overriden by
816 * elm_app_info_set().
818 * @param dir The path to the default locale directory (compile time
821 * @warning You should call this function @b before
822 * elm_app_info_set().
824 EAPI void elm_app_compile_locale_set(const char *dir);
827 * Retrieve the application's run time prefix directory, as set by
828 * elm_app_info_set() and the way (environment) the application was
831 * @return The directory prefix the application is actually using.
833 EAPI const char *elm_app_prefix_dir_get(void);
836 * Retrieve the application's run time binaries prefix directory, as
837 * set by elm_app_info_set() and the way (environment) the application
840 * @return The binaries directory prefix the application is actually
843 EAPI const char *elm_app_bin_dir_get(void);
846 * Retrieve the application's run time libraries prefix directory, as
847 * set by elm_app_info_set() and the way (environment) the application
850 * @return The libraries directory prefix the application is actually
853 EAPI const char *elm_app_lib_dir_get(void);
856 * Retrieve the application's run time data prefix directory, as
857 * set by elm_app_info_set() and the way (environment) the application
860 * @return The data directory prefix the application is actually
863 EAPI const char *elm_app_data_dir_get(void);
866 * Retrieve the application's run time locale prefix directory, as
867 * set by elm_app_info_set() and the way (environment) the application
870 * @return The locale directory prefix the application is actually
873 EAPI const char *elm_app_locale_dir_get(void);
875 EAPI void elm_quicklaunch_mode_set(Eina_Bool ql_on);
876 EAPI Eina_Bool elm_quicklaunch_mode_get(void);
877 EAPI int elm_quicklaunch_init(int argc, char **argv);
878 EAPI int elm_quicklaunch_sub_init(int argc, char **argv);
879 EAPI int elm_quicklaunch_sub_shutdown(void);
880 EAPI int elm_quicklaunch_shutdown(void);
881 EAPI void elm_quicklaunch_seed(void);
882 EAPI Eina_Bool elm_quicklaunch_prepare(int argc, char **argv);
883 EAPI Eina_Bool elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (postfork_func) (void *data), void *postfork_data);
884 EAPI void elm_quicklaunch_cleanup(void);
885 EAPI int elm_quicklaunch_fallback(int argc, char **argv);
886 EAPI char *elm_quicklaunch_exe_path_get(const char *exe);
888 EAPI Eina_Bool elm_need_efreet(void);
889 EAPI Eina_Bool elm_need_e_dbus(void);
890 EAPI Eina_Bool elm_need_ethumb(void);
893 * Set a new policy's value (for a given policy group/identifier).
895 * @param policy policy identifier, as in @ref Elm_Policy.
896 * @param value policy value, which depends on the identifier
898 * @return @c EINA_TRUE on success or @c EINA_FALSE, on error.
900 * Elementary policies define applications' behavior,
901 * somehow. These behaviors are divided in policy groups (see
902 * #Elm_Policy enumeration). This call will emit the Ecore event
903 * #ELM_EVENT_POLICY_CHANGED, which can be hooked at with
904 * handlers. An #Elm_Event_Policy_Changed struct will be passed,
907 * @note Currently, we have only one policy identifier/group
908 * (#ELM_POLICY_QUIT), which has two possible values.
912 EAPI Eina_Bool elm_policy_set(unsigned int policy, int value);
915 * Gets the policy value for given policy identifier.
917 * @param policy policy identifier, as in #Elm_Policy.
918 * @return The currently set policy value, for that
919 * identifier. Will be @c 0 if @p policy passed is invalid.
923 EAPI int elm_policy_get(unsigned int policy);
926 * Change the language of the current application
928 * The @p lang passed must be the full name of the locale to use, for
929 * example "en_US.utf8" or "es_ES@euro".
931 * Changing language with this function will make Elementary run through
932 * all its widgets, translating strings set with
933 * elm_object_domain_translatable_text_part_set(). This way, an entire
934 * UI can have its language changed without having to restart the program.
936 * For more complex cases, like having formatted strings that need
937 * translation, widgets will also emit a "language,changed" signal that
938 * the user can listen to to manually translate the text.
940 * @param lang Language to set, must be the full name of the locale
944 EAPI void elm_language_set(const char *lang);
947 * Set a label of an object
949 * @param obj The Elementary object
950 * @param part The text part name to set (NULL for the default label)
951 * @param label The new text of the label
953 * @note Elementary objects may have many labels (e.g. Action Slider)
957 EAPI void elm_object_text_part_set(Evas_Object *obj, const char *part, const char *label);
959 #define elm_object_text_set(obj, label) elm_object_text_part_set((obj), NULL, (label))
962 * Get a label of an object
964 * @param obj The Elementary object
965 * @param part The text part name to get (NULL for the default label)
966 * @return text of the label or NULL for any error
968 * @note Elementary objects may have many labels (e.g. Action Slider)
972 EAPI const char *elm_object_text_part_get(const Evas_Object *obj, const char *part);
974 #define elm_object_text_get(obj) elm_object_text_part_get((obj), NULL)
977 * Set a content of an object
979 * @param obj The Elementary object
980 * @param part The content part name to set (NULL for the default content)
981 * @param content The new content of the object
983 * @note Elementary objects may have many contents
987 EAPI void elm_object_content_part_set(Evas_Object *obj, const char *part, Evas_Object *content);
989 #define elm_object_content_set(obj, content) elm_object_content_part_set((obj), NULL, (content))
992 * Get a content of an object
994 * @param obj The Elementary object
995 * @param item The content part name to get (NULL for the default content)
996 * @return content of the object or NULL for any error
998 * @note Elementary objects may have many contents
1002 EAPI Evas_Object *elm_object_content_part_get(const Evas_Object *obj, const char *part);
1004 #define elm_object_content_get(obj) elm_object_content_part_get((obj), NULL)
1007 * Unset a content of an object
1009 * @param obj The Elementary object
1010 * @param item The content part name to unset (NULL for the default content)
1012 * @note Elementary objects may have many contents
1016 EAPI Evas_Object *elm_object_content_part_unset(Evas_Object *obj, const char *part);
1018 #define elm_object_content_unset(obj) elm_object_content_part_unset((obj), NULL)
1021 * Set a content of an object item
1023 * @param it The Elementary object item
1024 * @param part The content part name to set (NULL for the default content)
1025 * @param content The new content of the object item
1027 * @note Elementary object items may have many contents
1031 EAPI void elm_object_item_content_part_set(Elm_Object_Item *it, const char *part, Evas_Object *content);
1033 #define elm_object_item_content_set(it, content) elm_object_item_content_part_set((it), NULL, (content))
1036 * Get a content of an object item
1038 * @param it The Elementary object item
1039 * @param part The content part name to unset (NULL for the default content)
1040 * @return content of the object item or NULL for any error
1042 * @note Elementary object items may have many contents
1046 EAPI Evas_Object *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *part);
1048 #define elm_object_item_content_get(it) elm_object_item_content_part_get((it), NULL)
1051 * Unset a content of an object item
1053 * @param it The Elementary object item
1054 * @param part The content part name to unset (NULL for the default content)
1056 * @note Elementary object items may have many contents
1060 EAPI Evas_Object *elm_object_item_content_part_unset(Elm_Object_Item *it, const char *part);
1062 #define elm_object_item_content_unset(it, content) elm_object_item_content_part_unset((it), (content))
1065 * Set a label of an object item
1067 * @param it The Elementary object item
1068 * @param part The text part name to set (NULL for the default label)
1069 * @param label The new text of the label
1071 * @note Elementary object items may have many labels
1075 EAPI void elm_object_item_text_part_set(Elm_Object_Item *it, const char *part, const char *label);
1077 #define elm_object_item_text_set(it, label) elm_object_item_text_part_set((it), NULL, (label))
1080 * Get a label of an object item
1082 * @param it The Elementary object item
1083 * @param part The text part name to get (NULL for the default label)
1084 * @return text of the label or NULL for any error
1086 * @note Elementary object items may have many labels
1090 EAPI const char *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
1092 #define elm_object_item_text_get(it) elm_object_item_text_part_get((it), NULL)
1095 * Set the text to read out when in accessibility mode
1097 * @param obj The object which is to be described
1098 * @param txt The text that describes the widget to people with poor or no vision
1102 EAPI void elm_object_access_info_set(Evas_Object *obj, const char *txt);
1105 * Set the text to read out when in accessibility mode
1107 * @param it The object item which is to be described
1108 * @param txt The text that describes the widget to people with poor or no vision
1112 EAPI void elm_object_item_access_info_set(Elm_Object_Item *it, const char *txt);
1115 * Get the data associated with an object item
1116 * @param it The object item
1117 * @return The data associated with @p it
1121 EAPI void *elm_object_item_data_get(const Elm_Object_Item *it);
1124 * Set the data associated with an object item
1125 * @param it The object item
1126 * @param data The data to be associated with @p it
1130 EAPI void elm_object_item_data_set(Elm_Object_Item *it, void *data);
1133 * Send a signal to the edje object of the widget item.
1135 * This function sends a signal to the edje object of the obj item. An
1136 * edje program can respond to a signal by specifying matching
1137 * 'signal' and 'source' fields.
1139 * @param it The Elementary object item
1140 * @param emission The signal's name.
1141 * @param source The signal's source.
1144 EAPI void elm_object_item_signal_emit(Elm_Object_Item *it, const char *emission, const char *source) EINA_ARG_NONNULL(1);
1151 * @defgroup Caches Caches
1153 * These are functions which let one fine-tune some cache values for
1154 * Elementary applications, thus allowing for performance adjustments.
1160 * @brief Flush all caches.
1162 * Frees all data that was in cache and is not currently being used to reduce
1163 * memory usage. This frees Edje's, Evas' and Eet's cache. This is equivalent
1164 * to calling all of the following functions:
1165 * @li edje_file_cache_flush()
1166 * @li edje_collection_cache_flush()
1167 * @li eet_clearcache()
1168 * @li evas_image_cache_flush()
1169 * @li evas_font_cache_flush()
1170 * @li evas_render_dump()
1171 * @note Evas caches are flushed for every canvas associated with a window.
1175 EAPI void elm_all_flush(void);
1178 * Get the configured cache flush interval time
1180 * This gets the globally configured cache flush interval time, in
1183 * @return The cache flush interval time
1186 * @see elm_all_flush()
1188 EAPI int elm_cache_flush_interval_get(void);
1191 * Set the configured cache flush interval time
1193 * This sets the globally configured cache flush interval time, in ticks
1195 * @param size The cache flush interval time
1198 * @see elm_all_flush()
1200 EAPI void elm_cache_flush_interval_set(int size);
1203 * Set the configured cache flush interval time for all applications on the
1206 * This sets the globally configured cache flush interval time -- in ticks
1207 * -- for all applications on the display.
1209 * @param size The cache flush interval time
1212 EAPI void elm_cache_flush_interval_all_set(int size);
1215 * Get the configured cache flush enabled state
1217 * This gets the globally configured cache flush state - if it is enabled
1218 * or not. When cache flushing is enabled, elementary will regularly
1219 * (see elm_cache_flush_interval_get() ) flush caches and dump data out of
1220 * memory and allow usage to re-seed caches and data in memory where it
1221 * can do so. An idle application will thus minimise its memory usage as
1222 * data will be freed from memory and not be re-loaded as it is idle and
1223 * not rendering or doing anything graphically right now.
1225 * @return The cache flush state
1228 * @see elm_all_flush()
1230 EAPI Eina_Bool elm_cache_flush_enabled_get(void);
1233 * Set the configured cache flush enabled state
1235 * This sets the globally configured cache flush enabled state.
1237 * @param size The cache flush enabled state
1240 * @see elm_all_flush()
1242 EAPI void elm_cache_flush_enabled_set(Eina_Bool enabled);
1245 * Set the configured cache flush enabled state for all applications on the
1248 * This sets the globally configured cache flush enabled state for all
1249 * applications on the display.
1251 * @param size The cache flush enabled state
1254 EAPI void elm_cache_flush_enabled_all_set(Eina_Bool enabled);
1257 * Get the configured font cache size
1259 * This gets the globally configured font cache size, in bytes.
1261 * @return The font cache size
1264 EAPI int elm_font_cache_get(void);
1267 * Set the configured font cache size
1269 * This sets the globally configured font cache size, in bytes
1271 * @param size The font cache size
1274 EAPI void elm_font_cache_set(int size);
1277 * Set the configured font cache size for all applications on the
1280 * This sets the globally configured font cache size -- in bytes
1281 * -- for all applications on the display.
1283 * @param size The font cache size
1286 EAPI void elm_font_cache_all_set(int size);
1289 * Get the configured image cache size
1291 * This gets the globally configured image cache size, in bytes
1293 * @return The image cache size
1296 EAPI int elm_image_cache_get(void);
1299 * Set the configured image cache size
1301 * This sets the globally configured image cache size, in bytes
1303 * @param size The image cache size
1306 EAPI void elm_image_cache_set(int size);
1309 * Set the configured image cache size for all applications on the
1312 * This sets the globally configured image cache size -- in bytes
1313 * -- for all applications on the display.
1315 * @param size The image cache size
1318 EAPI void elm_image_cache_all_set(int size);
1321 * Get the configured edje file cache size.
1323 * This gets the globally configured edje file cache size, in number
1326 * @return The edje file cache size
1329 EAPI int elm_edje_file_cache_get(void);
1332 * Set the configured edje file cache size
1334 * This sets the globally configured edje file cache size, in number
1337 * @param size The edje file cache size
1340 EAPI void elm_edje_file_cache_set(int size);
1343 * Set the configured edje file cache size for all applications on the
1346 * This sets the globally configured edje file cache size -- in number
1347 * of files -- for all applications on the display.
1349 * @param size The edje file cache size
1352 EAPI void elm_edje_file_cache_all_set(int size);
1355 * Get the configured edje collections (groups) cache size.
1357 * This gets the globally configured edje collections cache size, in
1358 * number of collections.
1360 * @return The edje collections cache size
1363 EAPI int elm_edje_collection_cache_get(void);
1366 * Set the configured edje collections (groups) cache size
1368 * This sets the globally configured edje collections cache size, in
1369 * number of collections.
1371 * @param size The edje collections cache size
1374 EAPI void elm_edje_collection_cache_set(int size);
1377 * Set the configured edje collections (groups) cache size for all
1378 * applications on the display
1380 * This sets the globally configured edje collections cache size -- in
1381 * number of collections -- for all applications on the display.
1383 * @param size The edje collections cache size
1386 EAPI void elm_edje_collection_cache_all_set(int size);
1393 * @defgroup Scaling Widget Scaling
1395 * Different widgets can be scaled independently. These functions
1396 * allow you to manipulate this scaling on a per-widget basis. The
1397 * object and all its children get their scaling factors multiplied
1398 * by the scale factor set. This is multiplicative, in that if a
1399 * child also has a scale size set it is in turn multiplied by its
1400 * parent's scale size. @c 1.0 means ādon't scaleā, @c 2.0 is
1401 * double size, @c 0.5 is half, etc.
1403 * @ref general_functions_example_page "This" example contemplates
1404 * some of these functions.
1408 * Set the scaling factor for a given Elementary object
1410 * @param obj The Elementary to operate on
1411 * @param scale Scale factor (from @c 0.0 up, with @c 1.0 meaning
1416 EAPI void elm_object_scale_set(Evas_Object *obj, double scale) EINA_ARG_NONNULL(1);
1419 * Get the scaling factor for a given Elementary object
1421 * @param obj The object
1422 * @return The scaling factor set by elm_object_scale_set()
1426 EAPI double elm_object_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1429 * @defgroup Password_last_show Password last input show
1431 * Last show feature of password mode enables user to view
1432 * the last input entered for few seconds before masking it.
1433 * These functions allow to set this feature in password mode
1434 * of entry widget and also allow to manipulate the duration
1435 * for which the input has to be visible.
1441 * Get show last setting of password mode.
1443 * This gets the show last input setting of password mode which might be
1444 * enabled or disabled.
1446 * @return @c EINA_TRUE, if the last input show setting is enabled, @c EINA_FALSE
1448 * @ingroup Password_last_show
1450 EAPI Eina_Bool elm_password_show_last_get(void);
1453 * Set show last setting in password mode.
1455 * This enables or disables show last setting of password mode.
1457 * @param password_show_last If EINA_TRUE enable's last input show in password mode.
1458 * @see elm_password_show_last_timeout_set()
1459 * @ingroup Password_last_show
1461 EAPI void elm_password_show_last_set(Eina_Bool password_show_last);
1464 * Get's the timeout value in last show password mode.
1466 * This gets the time out value for which the last input entered in password
1467 * mode will be visible.
1469 * @return The timeout value of last show password mode.
1470 * @ingroup Password_last_show
1472 EAPI double elm_password_show_last_timeout_get(void);
1475 * Set's the timeout value in last show password mode.
1477 * This sets the time out value for which the last input entered in password
1478 * mode will be visible.
1480 * @param password_show_last_timeout The timeout value.
1481 * @see elm_password_show_last_set()
1482 * @ingroup Password_last_show
1484 EAPI void elm_password_show_last_timeout_set(double password_show_last_timeout);
1491 * @defgroup UI-Mirroring Selective Widget mirroring
1493 * These functions allow you to set ui-mirroring on specific
1494 * widgets or the whole interface. Widgets can be in one of two
1495 * modes, automatic and manual. Automatic means they'll be changed
1496 * according to the system mirroring mode and manual means only
1497 * explicit changes will matter. You are not supposed to change
1498 * mirroring state of a widget set to automatic, will mostly work,
1499 * but the behavior is not really defined.
1505 * Get the system mirrored mode. This determines the default mirrored mode
1508 * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
1510 EAPI Eina_Bool elm_object_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1513 * Set the system mirrored mode. This determines the default mirrored mode
1516 * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
1518 EAPI void elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
1521 * Returns the widget's mirrored mode setting.
1523 * @param obj The widget.
1524 * @return mirrored mode setting of the object.
1527 EAPI Eina_Bool elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1530 * Sets the widget's mirrored mode setting.
1531 * When widget in automatic mode, it follows the system mirrored mode set by
1532 * elm_mirrored_set().
1533 * @param obj The widget.
1534 * @param automatic EINA_TRUE for auto mirrored mode. EINA_FALSE for manual.
1536 EAPI void elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
1543 * Set the style to use by a widget
1545 * Sets the style name that will define the appearance of a widget. Styles
1546 * vary from widget to widget and may also be defined by other themes
1547 * by means of extensions and overlays.
1549 * @param obj The Elementary widget to style
1550 * @param style The style name to use
1552 * @see elm_theme_extension_add()
1553 * @see elm_theme_extension_del()
1554 * @see elm_theme_overlay_add()
1555 * @see elm_theme_overlay_del()
1559 EAPI void elm_object_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
1561 * Get the style used by the widget
1563 * This gets the style being used for that widget. Note that the string
1564 * pointer is only valid as longas the object is valid and the style doesn't
1567 * @param obj The Elementary widget to query for its style
1568 * @return The style name used
1570 * @see elm_object_style_set()
1574 EAPI const char *elm_object_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1577 * @defgroup Styles Styles
1579 * Widgets can have different styles of look. These generic API's
1580 * set styles of widgets, if they support them (and if the theme(s)
1583 * @ref general_functions_example_page "This" example contemplates
1584 * some of these functions.
1588 * Set the disabled state of an Elementary object.
1590 * @param obj The Elementary object to operate on
1591 * @param disabled The state to put in in: @c EINA_TRUE for
1592 * disabled, @c EINA_FALSE for enabled
1594 * Elementary objects can be @b disabled, in which state they won't
1595 * receive input and, in general, will be themed differently from
1596 * their normal state, usually greyed out. Useful for contexts
1597 * where you don't want your users to interact with some of the
1598 * parts of you interface.
1600 * This sets the state for the widget, either disabling it or
1605 EAPI void elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
1608 * Get the disabled state of an Elementary object.
1610 * @param obj The Elementary object to operate on
1611 * @return @c EINA_TRUE, if the widget is disabled, @c EINA_FALSE
1612 * if it's enabled (or on errors)
1614 * This gets the state of the widget, which might be enabled or disabled.
1618 EAPI Eina_Bool elm_object_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1621 * @defgroup WidgetNavigation Widget Tree Navigation.
1623 * How to check if an Evas Object is an Elementary widget? How to
1624 * get the first elementary widget that is parent of the given
1625 * object? These are all covered in widget tree navigation.
1627 * @ref general_functions_example_page "This" example contemplates
1628 * some of these functions.
1632 * Check if the given Evas Object is an Elementary widget.
1634 * @param obj the object to query.
1635 * @return @c EINA_TRUE if it is an elementary widget variant,
1636 * @c EINA_FALSE otherwise
1637 * @ingroup WidgetNavigation
1639 EAPI Eina_Bool elm_object_widget_check(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1642 * Get the first parent of the given object that is an Elementary
1645 * @param obj the Elementary object to query parent from.
1646 * @return the parent object that is an Elementary widget, or @c
1647 * NULL, if it was not found.
1649 * Use this to query for an object's parent widget.
1651 * @note Most of Elementary users wouldn't be mixing non-Elementary
1652 * smart objects in the objects tree of an application, as this is
1653 * an advanced usage of Elementary with Evas. So, except for the
1654 * application's window, which is the root of that tree, all other
1655 * objects would have valid Elementary widget parents.
1657 * @ingroup WidgetNavigation
1659 EAPI Evas_Object *elm_object_parent_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1662 * Get the top level parent of an Elementary widget.
1664 * @param obj The object to query.
1665 * @return The top level Elementary widget, or @c NULL if parent cannot be
1667 * @ingroup WidgetNavigation
1669 EAPI Evas_Object *elm_object_top_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1672 * Get the string that represents this Elementary widget.
1674 * @note Elementary is weird and exposes itself as a single
1675 * Evas_Object_Smart_Class of type "elm_widget", so
1676 * evas_object_type_get() always return that, making debug and
1677 * language bindings hard. This function tries to mitigate this
1678 * problem, but the solution is to change Elementary to use
1679 * proper inheritance.
1681 * @param obj the object to query.
1682 * @return Elementary widget name, or @c NULL if not a valid widget.
1683 * @ingroup WidgetNavigation
1685 EAPI const char *elm_object_widget_type_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
1688 * @defgroup Config Elementary Config
1690 * Elementary configuration is formed by a set options bounded to a
1691 * given @ref Profile profile, like @ref Theme theme, @ref Fingers
1692 * "finger size", etc. These are functions with which one syncronizes
1693 * changes made to those values to the configuration storing files, de
1694 * facto. You most probably don't want to use the functions in this
1695 * group unlees you're writing an elementary configuration manager.
1699 EAPI double elm_scale_get(void);
1700 EAPI void elm_scale_set(double scale);
1701 EAPI void elm_scale_all_set(double scale);
1704 * Save back Elementary's configuration, so that it will persist on
1707 * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
1710 * This function will take effect -- thus, do I/O -- immediately. Use
1711 * it when you want to apply all configuration changes at once. The
1712 * current configuration set will get saved onto the current profile
1713 * configuration file.
1716 EAPI Eina_Bool elm_mirrored_get(void);
1717 EAPI void elm_mirrored_set(Eina_Bool mirrored);
1720 * Reload Elementary's configuration, bounded to current selected
1723 * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
1726 * Useful when you want to force reloading of configuration values for
1727 * a profile. If one removes user custom configuration directories,
1728 * for example, it will force a reload with system values insted.
1731 EAPI Eina_Bool elm_config_save(void);
1732 EAPI void elm_config_reload(void);
1739 * @defgroup Profile Elementary Profile
1741 * Profiles are pre-set options that affect the whole look-and-feel of
1742 * Elementary-based applications. There are, for example, profiles
1743 * aimed at desktop computer applications and others aimed at mobile,
1744 * touchscreen-based ones. You most probably don't want to use the
1745 * functions in this group unlees you're writing an elementary
1746 * configuration manager.
1752 * Get Elementary's profile in use.
1754 * This gets the global profile that is applied to all Elementary
1757 * @return The profile's name
1760 EAPI const char *elm_profile_current_get(void);
1763 * Get an Elementary's profile directory path in the filesystem. One
1764 * may want to fetch a system profile's dir or an user one (fetched
1767 * @param profile The profile's name
1768 * @param is_user Whether to lookup for an user profile (@c EINA_TRUE)
1769 * or a system one (@c EINA_FALSE)
1770 * @return The profile's directory path.
1773 * @note You must free it with elm_profile_dir_free().
1775 EAPI const char *elm_profile_dir_get(const char *profile, Eina_Bool is_user);
1778 * Free an Elementary's profile directory path, as returned by
1779 * elm_profile_dir_get().
1781 * @param p_dir The profile's path
1785 EAPI void elm_profile_dir_free(const char *p_dir);
1788 * Get Elementary's list of available profiles.
1790 * @return The profiles list. List node data are the profile name
1794 * @note One must free this list, after usage, with the function
1795 * elm_profile_list_free().
1797 EAPI Eina_List *elm_profile_list_get(void);
1800 * Free Elementary's list of available profiles.
1802 * @param l The profiles list, as returned by elm_profile_list_get().
1806 EAPI void elm_profile_list_free(Eina_List *l);
1809 * Set Elementary's profile.
1811 * This sets the global profile that is applied to Elementary
1812 * applications. Just the process the call comes from will be
1815 * @param profile The profile's name
1819 EAPI void elm_profile_set(const char *profile);
1822 * Set Elementary's profile.
1824 * This sets the global profile that is applied to all Elementary
1825 * applications. All running Elementary windows will be affected.
1827 * @param profile The profile's name
1831 EAPI void elm_profile_all_set(const char *profile);
1838 * @defgroup Engine Elementary Engine
1840 * These are functions setting and querying which rendering engine
1841 * Elementary will use for drawing its windows' pixels.
1843 * The following are the available engines:
1844 * @li "software_x11"
1847 * @li "software_16_x11"
1848 * @li "software_8_x11"
1851 * @li "software_gdi"
1852 * @li "software_16_wince_gdi"
1854 * @li "software_16_sdl"
1863 * @brief Get Elementary's rendering engine in use.
1865 * @return The rendering engine's name
1866 * @note there's no need to free the returned string, here.
1868 * This gets the global rendering engine that is applied to all Elementary
1871 * @see elm_engine_set()
1873 EAPI const char *elm_engine_current_get(void);
1876 * @brief Set Elementary's rendering engine for use.
1878 * @param engine The rendering engine's name
1880 * This sets global rendering engine that is applied to all Elementary
1881 * applications. Note that it will take effect only to Elementary windows
1882 * created after this is called.
1884 * @see elm_win_add()
1886 EAPI void elm_engine_set(const char *engine);
1893 * @defgroup Fonts Elementary Fonts
1895 * These are functions dealing with font rendering, selection and the
1896 * like for Elementary applications. One might fetch which system
1897 * fonts are there to use and set custom fonts for individual classes
1898 * of UI items containing text (text classes).
1903 typedef struct _Elm_Text_Class
1909 typedef struct _Elm_Font_Overlay
1911 const char *text_class;
1913 Evas_Font_Size size;
1916 typedef struct _Elm_Font_Properties
1920 } Elm_Font_Properties;
1923 * Get Elementary's list of supported text classes.
1925 * @return The text classes list, with @c Elm_Text_Class blobs as data.
1928 * Release the list with elm_text_classes_list_free().
1930 EAPI const Eina_List *elm_text_classes_list_get(void);
1933 * Free Elementary's list of supported text classes.
1937 * @see elm_text_classes_list_get().
1939 EAPI void elm_text_classes_list_free(const Eina_List *list);
1942 * Get Elementary's list of font overlays, set with
1943 * elm_font_overlay_set().
1945 * @return The font overlays list, with @c Elm_Font_Overlay blobs as
1950 * For each text class, one can set a <b>font overlay</b> for it,
1951 * overriding the default font properties for that class coming from
1952 * the theme in use. There is no need to free this list.
1954 * @see elm_font_overlay_set() and elm_font_overlay_unset().
1956 EAPI const Eina_List *elm_font_overlay_list_get(void);
1959 * Set a font overlay for a given Elementary text class.
1961 * @param text_class Text class name
1962 * @param font Font name and style string
1963 * @param size Font size
1967 * @p font has to be in the format returned by
1968 * elm_font_fontconfig_name_get(). @see elm_font_overlay_list_get()
1969 * and elm_font_overlay_unset().
1971 EAPI void elm_font_overlay_set(const char *text_class, const char *font, Evas_Font_Size size);
1974 * Unset a font overlay for a given Elementary text class.
1976 * @param text_class Text class name
1980 * This will bring back text elements belonging to text class
1981 * @p text_class back to their default font settings.
1983 EAPI void elm_font_overlay_unset(const char *text_class);
1986 * Apply the changes made with elm_font_overlay_set() and
1987 * elm_font_overlay_unset() on the current Elementary window.
1991 * This applies all font overlays set to all objects in the UI.
1993 EAPI void elm_font_overlay_apply(void);
1996 * Apply the changes made with elm_font_overlay_set() and
1997 * elm_font_overlay_unset() on all Elementary application windows.
2001 * This applies all font overlays set to all objects in the UI.
2003 EAPI void elm_font_overlay_all_apply(void);
2006 * Translate a font (family) name string in fontconfig's font names
2007 * syntax into an @c Elm_Font_Properties struct.
2009 * @param font The font name and styles string
2010 * @return the font properties struct
2014 * @note The reverse translation can be achived with
2015 * elm_font_fontconfig_name_get(), for one style only (single font
2016 * instance, not family).
2018 EAPI Elm_Font_Properties *elm_font_properties_get(const char *font) EINA_ARG_NONNULL(1);
2021 * Free font properties return by elm_font_properties_get().
2023 * @param efp the font properties struct
2027 EAPI void elm_font_properties_free(Elm_Font_Properties *efp) EINA_ARG_NONNULL(1);
2030 * Translate a font name, bound to a style, into fontconfig's font names
2033 * @param name The font (family) name
2034 * @param style The given style (may be @c NULL)
2036 * @return the font name and style string
2040 * @note The reverse translation can be achived with
2041 * elm_font_properties_get(), for one style only (single font
2042 * instance, not family).
2044 EAPI const char *elm_font_fontconfig_name_get(const char *name, const char *style) EINA_ARG_NONNULL(1);
2047 * Free the font string return by elm_font_fontconfig_name_get().
2049 * @param efp the font properties struct
2053 EAPI void elm_font_fontconfig_name_free(const char *name) EINA_ARG_NONNULL(1);
2056 * Create a font hash table of available system fonts.
2058 * One must call it with @p list being the return value of
2059 * evas_font_available_list(). The hash will be indexed by font
2060 * (family) names, being its values @c Elm_Font_Properties blobs.
2062 * @param list The list of available system fonts, as returned by
2063 * evas_font_available_list().
2064 * @return the font hash.
2068 * @note The user is supposed to get it populated at least with 3
2069 * default font families (Sans, Serif, Monospace), which should be
2070 * present on most systems.
2072 EAPI Eina_Hash *elm_font_available_hash_add(Eina_List *list);
2075 * Free the hash return by elm_font_available_hash_add().
2077 * @param hash the hash to be freed.
2081 EAPI void elm_font_available_hash_del(Eina_Hash *hash);
2088 * @defgroup Fingers Fingers
2090 * Elementary is designed to be finger-friendly for touchscreens,
2091 * and so in addition to scaling for display resolution, it can
2092 * also scale based on finger "resolution" (or size). You can then
2093 * customize the granularity of the areas meant to receive clicks
2096 * Different profiles may have pre-set values for finger sizes.
2098 * @ref general_functions_example_page "This" example contemplates
2099 * some of these functions.
2105 * Get the configured "finger size"
2107 * @return The finger size
2109 * This gets the globally configured finger size, <b>in pixels</b>
2113 EAPI Evas_Coord elm_finger_size_get(void);
2116 * Set the configured finger size
2118 * This sets the globally configured finger size in pixels
2120 * @param size The finger size
2123 EAPI void elm_finger_size_set(Evas_Coord size);
2126 * Set the configured finger size for all applications on the display
2128 * This sets the globally configured finger size in pixels for all
2129 * applications on the display
2131 * @param size The finger size
2134 EAPI void elm_finger_size_all_set(Evas_Coord size);
2141 * @defgroup Focus Focus
2143 * An Elementary application has, at all times, one (and only one)
2144 * @b focused object. This is what determines where the input
2145 * events go to within the application's window. Also, focused
2146 * objects can be decorated differently, in order to signal to the
2147 * user where the input is, at a given moment.
2149 * Elementary applications also have the concept of <b>focus
2150 * chain</b>: one can cycle through all the windows' focusable
2151 * objects by input (tab key) or programmatically. The default
2152 * focus chain for an application is the one define by the order in
2153 * which the widgets where added in code. One will cycle through
2154 * top level widgets, and, for each one containg sub-objects, cycle
2155 * through them all, before returning to the level
2156 * above. Elementary also allows one to set @b custom focus chains
2157 * for their applications.
2159 * Besides the focused decoration a widget may exhibit, when it
2160 * gets focus, Elementary has a @b global focus highlight object
2161 * that can be enabled for a window. If one chooses to do so, this
2162 * extra highlight effect will surround the current focused object,
2165 * @note Some Elementary widgets are @b unfocusable, after
2166 * creation, by their very nature: they are not meant to be
2167 * interacted with input events, but are there just for visual
2170 * @ref general_functions_example_page "This" example contemplates
2171 * some of these functions.
2175 * Get the enable status of the focus highlight
2177 * This gets whether the highlight on focused objects is enabled or not
2180 EAPI Eina_Bool elm_focus_highlight_enabled_get(void);
2183 * Set the enable status of the focus highlight
2185 * Set whether to show or not the highlight on focused objects
2186 * @param enable Enable highlight if EINA_TRUE, disable otherwise
2189 EAPI void elm_focus_highlight_enabled_set(Eina_Bool enable);
2192 * Get the enable status of the highlight animation
2194 * Get whether the focus highlight, if enabled, will animate its switch from
2195 * one object to the next
2198 EAPI Eina_Bool elm_focus_highlight_animate_get(void);
2201 * Set the enable status of the highlight animation
2203 * Set whether the focus highlight, if enabled, will animate its switch from
2204 * one object to the next
2205 * @param animate Enable animation if EINA_TRUE, disable otherwise
2208 EAPI void elm_focus_highlight_animate_set(Eina_Bool animate);
2211 * Get the whether an Elementary object has the focus or not.
2213 * @param obj The Elementary object to get the information from
2214 * @return @c EINA_TRUE, if the object is focused, @c EINA_FALSE if
2215 * not (and on errors).
2217 * @see elm_object_focus_set()
2221 EAPI Eina_Bool elm_object_focus_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2224 * Make a given Elementary object the focused one.
2226 * @param obj The Elementary object to make focused.
2228 * @note This object, if it can handle focus, will take the focus
2229 * away from the one who had it previously and will, for now on, be
2230 * the one receiving input events.
2232 * @see elm_object_focus_get()
2236 EAPI void elm_object_focus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2239 * Remove the focus from an Elementary object
2241 * @param obj The Elementary to take focus from
2243 * This removes the focus from @p obj, passing it back to the
2244 * previous element in the focus chain list.
2246 * @see elm_object_focus() and elm_object_focus_custom_chain_get()
2250 EAPI void elm_object_unfocus(Evas_Object *obj) EINA_ARG_NONNULL(1);
2253 * Set the ability for an Element object to be focused
2255 * @param obj The Elementary object to operate on
2256 * @param enable @c EINA_TRUE if the object can be focused, @c
2257 * EINA_FALSE if not (and on errors)
2259 * This sets whether the object @p obj is able to take focus or
2260 * not. Unfocusable objects do nothing when programmatically
2261 * focused, being the nearest focusable parent object the one
2262 * really getting focus. Also, when they receive mouse input, they
2263 * will get the event, but not take away the focus from where it
2268 EAPI void elm_object_focus_allow_set(Evas_Object *obj, Eina_Bool enable) EINA_ARG_NONNULL(1);
2271 * Get whether an Elementary object is focusable or not
2273 * @param obj The Elementary object to operate on
2274 * @return @c EINA_TRUE if the object is allowed to be focused, @c
2275 * EINA_FALSE if not (and on errors)
2277 * @note Objects which are meant to be interacted with by input
2278 * events are created able to be focused, by default. All the
2283 EAPI Eina_Bool elm_object_focus_allow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2286 * Set custom focus chain.
2288 * This function overwrites any previous custom focus chain within
2289 * the list of objects. The previous list will be deleted and this list
2290 * will be managed by elementary. After it is set, don't modify it.
2292 * @note On focus cycle, only will be evaluated children of this container.
2294 * @param obj The container object
2295 * @param objs Chain of objects to pass focus
2298 EAPI void elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
2301 * Unset a custom focus chain on a given Elementary widget
2303 * @param obj The container object to remove focus chain from
2305 * Any focus chain previously set on @p obj (for its child objects)
2306 * is removed entirely after this call.
2310 EAPI void elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
2313 * Get custom focus chain
2315 * @param obj The container object
2318 EAPI const Eina_List *elm_object_focus_custom_chain_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2321 * Append object to custom focus chain.
2323 * @note If relative_child equal to NULL or not in custom chain, the object
2324 * will be added in end.
2326 * @note On focus cycle, only will be evaluated children of this container.
2328 * @param obj The container object
2329 * @param child The child to be added in custom chain
2330 * @param relative_child The relative object to position the child
2333 EAPI void elm_object_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2336 * Prepend object to custom focus chain.
2338 * @note If relative_child equal to NULL or not in custom chain, the object
2339 * will be added in begin.
2341 * @note On focus cycle, only will be evaluated children of this container.
2343 * @param obj The container object
2344 * @param child The child to be added in custom chain
2345 * @param relative_child The relative object to position the child
2348 EAPI void elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
2351 * Give focus to next object in object tree.
2353 * Give focus to next object in focus chain of one object sub-tree.
2354 * If the last object of chain already have focus, the focus will go to the
2355 * first object of chain.
2357 * @param obj The object root of sub-tree
2358 * @param dir Direction to cycle the focus
2362 EAPI void elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir) EINA_ARG_NONNULL(1);
2365 * Give focus to near object in one direction.
2367 * Give focus to near object in direction of one object.
2368 * If none focusable object in given direction, the focus will not change.
2370 * @param obj The reference object
2371 * @param x Horizontal component of direction to focus
2372 * @param y Vertical component of direction to focus
2376 EAPI void elm_object_focus_direction_go(Evas_Object *obj, int x, int y) EINA_ARG_NONNULL(1);
2379 * Make the elementary object and its children to be unfocusable
2382 * @param obj The Elementary object to operate on
2383 * @param tree_unfocusable @c EINA_TRUE for unfocusable,
2384 * @c EINA_FALSE for focusable.
2386 * This sets whether the object @p obj and its children objects
2387 * are able to take focus or not. If the tree is set as unfocusable,
2388 * newest focused object which is not in this tree will get focus.
2389 * This API can be helpful for an object to be deleted.
2390 * When an object will be deleted soon, it and its children may not
2391 * want to get focus (by focus reverting or by other focus controls).
2392 * Then, just use this API before deleting.
2394 * @see elm_object_tree_unfocusable_get()
2398 EAPI void elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable); EINA_ARG_NONNULL(1);
2401 * Get whether an Elementary object and its children are unfocusable or not.
2403 * @param obj The Elementary object to get the information from
2404 * @return @c EINA_TRUE, if the tree is unfocussable,
2405 * @c EINA_FALSE if not (and on errors).
2407 * @see elm_object_tree_unfocusable_set()
2411 EAPI Eina_Bool elm_object_tree_unfocusable_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
2414 * @defgroup Scrolling Scrolling
2416 * These are functions setting how scrollable views in Elementary
2417 * widgets should behave on user interaction.
2423 * Get whether scrollers should bounce when they reach their
2424 * viewport's edge during a scroll.
2426 * @return the thumb scroll bouncing state
2428 * This is the default behavior for touch screens, in general.
2429 * @ingroup Scrolling
2431 EAPI Eina_Bool elm_scroll_bounce_enabled_get(void);
2434 * Set whether scrollers should bounce when they reach their
2435 * viewport's edge during a scroll.
2437 * @param enabled the thumb scroll bouncing state
2439 * @see elm_thumbscroll_bounce_enabled_get()
2440 * @ingroup Scrolling
2442 EAPI void elm_scroll_bounce_enabled_set(Eina_Bool enabled);
2445 * Set whether scrollers should bounce when they reach their
2446 * viewport's edge during a scroll, for all Elementary application
2449 * @param enabled the thumb scroll bouncing state
2451 * @see elm_thumbscroll_bounce_enabled_get()
2452 * @ingroup Scrolling
2454 EAPI void elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
2457 * Get the amount of inertia a scroller will impose at bounce
2460 * @return the thumb scroll bounce friction
2462 * @ingroup Scrolling
2464 EAPI double elm_scroll_bounce_friction_get(void);
2467 * Set the amount of inertia a scroller will impose at bounce
2470 * @param friction the thumb scroll bounce friction
2472 * @see elm_thumbscroll_bounce_friction_get()
2473 * @ingroup Scrolling
2475 EAPI void elm_scroll_bounce_friction_set(double friction);
2478 * Set the amount of inertia a scroller will impose at bounce
2479 * animations, for all Elementary application windows.
2481 * @param friction the thumb scroll bounce friction
2483 * @see elm_thumbscroll_bounce_friction_get()
2484 * @ingroup Scrolling
2486 EAPI void elm_scroll_bounce_friction_all_set(double friction);
2489 * Get the amount of inertia a <b>paged</b> scroller will impose at
2490 * page fitting animations.
2492 * @return the page scroll friction
2494 * @ingroup Scrolling
2496 EAPI double elm_scroll_page_scroll_friction_get(void);
2499 * Set the amount of inertia a <b>paged</b> scroller will impose at
2500 * page fitting animations.
2502 * @param friction the page scroll friction
2504 * @see elm_thumbscroll_page_scroll_friction_get()
2505 * @ingroup Scrolling
2507 EAPI void elm_scroll_page_scroll_friction_set(double friction);
2510 * Set the amount of inertia a <b>paged</b> scroller will impose at
2511 * page fitting animations, for all Elementary application windows.
2513 * @param friction the page scroll friction
2515 * @see elm_thumbscroll_page_scroll_friction_get()
2516 * @ingroup Scrolling
2518 EAPI void elm_scroll_page_scroll_friction_all_set(double friction);
2521 * Get the amount of inertia a scroller will impose at region bring
2524 * @return the bring in scroll friction
2526 * @ingroup Scrolling
2528 EAPI double elm_scroll_bring_in_scroll_friction_get(void);
2531 * Set the amount of inertia a scroller will impose at region bring
2534 * @param friction the bring in scroll friction
2536 * @see elm_thumbscroll_bring_in_scroll_friction_get()
2537 * @ingroup Scrolling
2539 EAPI void elm_scroll_bring_in_scroll_friction_set(double friction);
2542 * Set the amount of inertia a scroller will impose at region bring
2543 * animations, for all Elementary application windows.
2545 * @param friction the bring in scroll friction
2547 * @see elm_thumbscroll_bring_in_scroll_friction_get()
2548 * @ingroup Scrolling
2550 EAPI void elm_scroll_bring_in_scroll_friction_all_set(double friction);
2553 * Get the amount of inertia scrollers will impose at animations
2554 * triggered by Elementary widgets' zooming API.
2556 * @return the zoom friction
2558 * @ingroup Scrolling
2560 EAPI double elm_scroll_zoom_friction_get(void);
2563 * Set the amount of inertia scrollers will impose at animations
2564 * triggered by Elementary widgets' zooming API.
2566 * @param friction the zoom friction
2568 * @see elm_thumbscroll_zoom_friction_get()
2569 * @ingroup Scrolling
2571 EAPI void elm_scroll_zoom_friction_set(double friction);
2574 * Set the amount of inertia scrollers will impose at animations
2575 * triggered by Elementary widgets' zooming API, for all Elementary
2576 * application windows.
2578 * @param friction the zoom friction
2580 * @see elm_thumbscroll_zoom_friction_get()
2581 * @ingroup Scrolling
2583 EAPI void elm_scroll_zoom_friction_all_set(double friction);
2586 * Get whether scrollers should be draggable from any point in their
2589 * @return the thumb scroll state
2591 * @note This is the default behavior for touch screens, in general.
2592 * @note All other functions namespaced with "thumbscroll" will only
2593 * have effect if this mode is enabled.
2595 * @ingroup Scrolling
2597 EAPI Eina_Bool elm_scroll_thumbscroll_enabled_get(void);
2600 * Set whether scrollers should be draggable from any point in their
2603 * @param enabled the thumb scroll state
2605 * @see elm_thumbscroll_enabled_get()
2606 * @ingroup Scrolling
2608 EAPI void elm_scroll_thumbscroll_enabled_set(Eina_Bool enabled);
2611 * Set whether scrollers should be draggable from any point in their
2612 * views, for all Elementary application windows.
2614 * @param enabled the thumb scroll state
2616 * @see elm_thumbscroll_enabled_get()
2617 * @ingroup Scrolling
2619 EAPI void elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
2622 * Get the number of pixels one should travel while dragging a
2623 * scroller's view to actually trigger scrolling.
2625 * @return the thumb scroll threshould
2627 * One would use higher values for touch screens, in general, because
2628 * of their inherent imprecision.
2629 * @ingroup Scrolling
2631 EAPI unsigned int elm_scroll_thumbscroll_threshold_get(void);
2634 * Set the number of pixels one should travel while dragging a
2635 * scroller's view to actually trigger scrolling.
2637 * @param threshold the thumb scroll threshould
2639 * @see elm_thumbscroll_threshould_get()
2640 * @ingroup Scrolling
2642 EAPI void elm_scroll_thumbscroll_threshold_set(unsigned int threshold);
2645 * Set the number of pixels one should travel while dragging a
2646 * scroller's view to actually trigger scrolling, for all Elementary
2647 * application windows.
2649 * @param threshold the thumb scroll threshould
2651 * @see elm_thumbscroll_threshould_get()
2652 * @ingroup Scrolling
2654 EAPI void elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
2657 * Get the minimum speed of mouse cursor movement which will trigger
2658 * list self scrolling animation after a mouse up event
2661 * @return the thumb scroll momentum threshould
2663 * @ingroup Scrolling
2665 EAPI double elm_scroll_thumbscroll_momentum_threshold_get(void);
2668 * Set the minimum speed of mouse cursor movement which will trigger
2669 * list self scrolling animation after a mouse up event
2672 * @param threshold the thumb scroll momentum threshould
2674 * @see elm_thumbscroll_momentum_threshould_get()
2675 * @ingroup Scrolling
2677 EAPI void elm_scroll_thumbscroll_momentum_threshold_set(double threshold);
2680 * Set the minimum speed of mouse cursor movement which will trigger
2681 * list self scrolling animation after a mouse up event
2682 * (pixels/second), for all Elementary application windows.
2684 * @param threshold the thumb scroll momentum threshould
2686 * @see elm_thumbscroll_momentum_threshould_get()
2687 * @ingroup Scrolling
2689 EAPI void elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
2692 * Get the amount of inertia a scroller will impose at self scrolling
2695 * @return the thumb scroll friction
2697 * @ingroup Scrolling
2699 EAPI double elm_scroll_thumbscroll_friction_get(void);
2702 * Set the amount of inertia a scroller will impose at self scrolling
2705 * @param friction the thumb scroll friction
2707 * @see elm_thumbscroll_friction_get()
2708 * @ingroup Scrolling
2710 EAPI void elm_scroll_thumbscroll_friction_set(double friction);
2713 * Set the amount of inertia a scroller will impose at self scrolling
2714 * animations, for all Elementary application windows.
2716 * @param friction the thumb scroll friction
2718 * @see elm_thumbscroll_friction_get()
2719 * @ingroup Scrolling
2721 EAPI void elm_scroll_thumbscroll_friction_all_set(double friction);
2724 * Get the amount of lag between your actual mouse cursor dragging
2725 * movement and a scroller's view movement itself, while pushing it
2726 * into bounce state manually.
2728 * @return the thumb scroll border friction
2730 * @ingroup Scrolling
2732 EAPI double elm_scroll_thumbscroll_border_friction_get(void);
2735 * Set the amount of lag between your actual mouse cursor dragging
2736 * movement and a scroller's view movement itself, while pushing it
2737 * into bounce state manually.
2739 * @param friction the thumb scroll border friction. @c 0.0 for
2740 * perfect synchrony between two movements, @c 1.0 for maximum
2743 * @see elm_thumbscroll_border_friction_get()
2744 * @note parameter value will get bound to 0.0 - 1.0 interval, always
2746 * @ingroup Scrolling
2748 EAPI void elm_scroll_thumbscroll_border_friction_set(double friction);
2751 * Set the amount of lag between your actual mouse cursor dragging
2752 * movement and a scroller's view movement itself, while pushing it
2753 * into bounce state manually, for all Elementary application windows.
2755 * @param friction the thumb scroll border friction. @c 0.0 for
2756 * perfect synchrony between two movements, @c 1.0 for maximum
2759 * @see elm_thumbscroll_border_friction_get()
2760 * @note parameter value will get bound to 0.0 - 1.0 interval, always
2762 * @ingroup Scrolling
2764 EAPI void elm_scroll_thumbscroll_border_friction_all_set(double friction);
2767 * Get the sensitivity amount which is be multiplied by the length of
2770 * @return the thumb scroll sensitivity friction
2772 * @ingroup Scrolling
2774 EAPI double elm_scroll_thumbscroll_sensitivity_friction_get(void);
2777 * Set the sensitivity amount which is be multiplied by the length of
2780 * @param friction the thumb scroll sensitivity friction. @c 0.1 for
2781 * minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
2784 * @see elm_thumbscroll_sensitivity_friction_get()
2785 * @note parameter value will get bound to 0.1 - 1.0 interval, always
2787 * @ingroup Scrolling
2789 EAPI void elm_scroll_thumbscroll_sensitivity_friction_set(double friction);
2792 * Set the sensitivity amount which is be multiplied by the length of
2793 * mouse dragging, for all Elementary application windows.
2795 * @param friction the thumb scroll sensitivity friction. @c 0.1 for
2796 * minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
2799 * @see elm_thumbscroll_sensitivity_friction_get()
2800 * @note parameter value will get bound to 0.1 - 1.0 interval, always
2802 * @ingroup Scrolling
2804 EAPI void elm_scroll_thumbscroll_sensitivity_friction_all_set(double friction);
2811 * @defgroup Scrollhints Scrollhints
2813 * Objects when inside a scroller can scroll, but this may not always be
2814 * desirable in certain situations. This allows an object to hint to itself
2815 * and parents to "not scroll" in one of 2 ways. If any child object of a
2816 * scroller has pushed a scroll freeze or hold then it affects all parent
2817 * scrollers until all children have released them.
2819 * 1. To hold on scrolling. This means just flicking and dragging may no
2820 * longer scroll, but pressing/dragging near an edge of the scroller will
2821 * still scroll. This is automatically used by the entry object when
2824 * 2. To totally freeze scrolling. This means it stops. until
2831 * Push the scroll hold by 1
2833 * This increments the scroll hold count by one. If it is more than 0 it will
2834 * take effect on the parents of the indicated object.
2836 * @param obj The object
2837 * @ingroup Scrollhints
2839 EAPI void elm_object_scroll_hold_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
2842 * Pop the scroll hold by 1
2844 * This decrements the scroll hold count by one. If it is more than 0 it will
2845 * take effect on the parents of the indicated object.
2847 * @param obj The object
2848 * @ingroup Scrollhints
2850 EAPI void elm_object_scroll_hold_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
2853 * Push the scroll freeze by 1
2855 * This increments the scroll freeze count by one. If it is more
2856 * than 0 it will take effect on the parents of the indicated
2859 * @param obj The object
2860 * @ingroup Scrollhints
2862 EAPI void elm_object_scroll_freeze_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
2865 * Pop the scroll freeze by 1
2867 * This decrements the scroll freeze count by one. If it is more
2868 * than 0 it will take effect on the parents of the indicated
2871 * @param obj The object
2872 * @ingroup Scrollhints
2874 EAPI void elm_object_scroll_freeze_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
2877 * Lock the scrolling of the given widget (and thus all parents)
2879 * This locks the given object from scrolling in the X axis (and implicitly
2880 * also locks all parent scrollers too from doing the same).
2882 * @param obj The object
2883 * @param lock The lock state (1 == locked, 0 == unlocked)
2884 * @ingroup Scrollhints
2886 EAPI void elm_object_scroll_lock_x_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
2889 * Lock the scrolling of the given widget (and thus all parents)
2891 * This locks the given object from scrolling in the Y axis (and implicitly
2892 * also locks all parent scrollers too from doing the same).
2894 * @param obj The object
2895 * @param lock The lock state (1 == locked, 0 == unlocked)
2896 * @ingroup Scrollhints
2898 EAPI void elm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
2901 * Get the scrolling lock of the given widget
2903 * This gets the lock for X axis scrolling.
2905 * @param obj The object
2906 * @ingroup Scrollhints
2908 EAPI Eina_Bool elm_object_scroll_lock_x_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2911 * Get the scrolling lock of the given widget
2913 * This gets the lock for X axis scrolling.
2915 * @param obj The object
2916 * @ingroup Scrollhints
2918 EAPI Eina_Bool elm_object_scroll_lock_y_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
2925 * Send a signal to the widget edje object.
2927 * This function sends a signal to the edje object of the obj. An
2928 * edje program can respond to a signal by specifying matching
2929 * 'signal' and 'source' fields.
2931 * @param obj The object
2932 * @param emission The signal's name.
2933 * @param source The signal's source.
2936 EAPI void elm_object_signal_emit(Evas_Object *obj, const char *emission, const char *source) EINA_ARG_NONNULL(1);
2937 EAPI void elm_object_signal_callback_add(Evas_Object *obj, const char *emission, const char *source, void (*func) (void *data, Evas_Object *o, const char *emission, const char *source), void *data) EINA_ARG_NONNULL(1, 4);
2938 EAPI void *elm_object_signal_callback_del(Evas_Object *obj, const char *emission, const char *source, void (*func) (void *data, Evas_Object *o, const char *emission, const char *source)) EINA_ARG_NONNULL(1, 4);
2941 * Add a callback for a signal emitted by widget edje object.
2943 * This function connects a callback function to a signal emitted by the
2944 * edje object of the obj.
2945 * Globs can occur in either the emission or source name.
2947 * @param obj The object
2948 * @param emission The signal's name.
2949 * @param source The signal's source.
2950 * @param func The callback function to be executed when the signal is
2952 * @param data A pointer to data to pass in to the callback function.
2955 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);
2958 * Remove a signal-triggered callback from a widget edje object.
2960 * This function removes a callback, previoulsy attached to a
2961 * signal emitted by the edje object of the obj. The parameters
2962 * emission, source and func must match exactly those passed to a
2963 * previous call to elm_object_signal_callback_add(). The data
2964 * pointer that was passed to this call will be returned.
2966 * @param obj The object
2967 * @param emission The signal's name.
2968 * @param source The signal's source.
2969 * @param func The callback function to be executed when the signal is
2971 * @return The data pointer
2974 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);
2977 * Add a callback for input events (key up, key down, mouse wheel)
2978 * on a given Elementary widget
2980 * @param obj The widget to add an event callback on
2981 * @param func The callback function to be executed when the event
2983 * @param data Data to pass in to @p func
2985 * Every widget in an Elementary interface set to receive focus,
2986 * with elm_object_focus_allow_set(), will propagate @b all of its
2987 * key up, key down and mouse wheel input events up to its parent
2988 * object, and so on. All of the focusable ones in this chain which
2989 * had an event callback set, with this call, will be able to treat
2990 * those events. There are two ways of making the propagation of
2991 * these event upwards in the tree of widgets to @b cease:
2992 * - Just return @c EINA_TRUE on @p func. @c EINA_FALSE will mean
2993 * the event was @b not processed, so the propagation will go on.
2994 * - The @c event_info pointer passed to @p func will contain the
2995 * event's structure and, if you OR its @c event_flags inner
2996 * value to @c EVAS_EVENT_FLAG_ON_HOLD, you're telling Elementary
2997 * one has already handled it, thus killing the event's
3000 * @note Your event callback will be issued on those events taking
3001 * place only if no other child widget of @obj has consumed the
3004 * @note Not to be confused with @c
3005 * evas_object_event_callback_add(), which will add event callbacks
3006 * per type on general Evas objects (no event propagation
3007 * infrastructure taken in account).
3009 * @note Not to be confused with @c
3010 * elm_object_signal_callback_add(), which will add callbacks to @b
3011 * signals coming from a widget's theme, not input events.
3013 * @note Not to be confused with @c
3014 * edje_object_signal_callback_add(), which does the same as
3015 * elm_object_signal_callback_add(), but directly on an Edje
3018 * @note Not to be confused with @c
3019 * evas_object_smart_callback_add(), which adds callbacks to smart
3020 * objects' <b>smart events</b>, and not input events.
3022 * @see elm_object_event_callback_del()
3026 EAPI void elm_object_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3029 * Remove an event callback from a widget.
3031 * This function removes a callback, previoulsy attached to event emission
3033 * The parameters func and data must match exactly those passed to
3034 * a previous call to elm_object_event_callback_add(). The data pointer that
3035 * was passed to this call will be returned.
3037 * @param obj The object
3038 * @param func The callback function to be executed when the event is
3040 * @param data Data to pass in to the callback function.
3041 * @return The data pointer
3044 EAPI void *elm_object_event_callback_del(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
3047 * Adjust size of an element for finger usage.
3049 * @param times_w How many fingers should fit horizontally
3050 * @param w Pointer to the width size to adjust
3051 * @param times_h How many fingers should fit vertically
3052 * @param h Pointer to the height size to adjust
3054 * This takes width and height sizes (in pixels) as input and a
3055 * size multiple (which is how many fingers you want to place
3056 * within the area, being "finger" the size set by
3057 * elm_finger_size_set()), and adjusts the size to be large enough
3058 * to accommodate the resulting size -- if it doesn't already
3059 * accommodate it. On return the @p w and @p h sizes pointed to by
3060 * these parameters will be modified, on those conditions.
3062 * @note This is kind of a low level Elementary call, most useful
3063 * on size evaluation times for widgets. An external user wouldn't
3064 * be calling, most of the time.
3068 EAPI void elm_coords_finger_size_adjust(int times_w, Evas_Coord *w, int times_h, Evas_Coord *h);
3071 * Get the duration for occuring long press event.
3073 * @return Timeout for long press event
3074 * @ingroup Longpress
3076 EAPI double elm_longpress_timeout_get(void);
3079 * Set the duration for occuring long press event.
3081 * @param lonpress_timeout Timeout for long press event
3082 * @ingroup Longpress
3084 EAPI void elm_longpress_timeout_set(double longpress_timeout);
3087 * @defgroup Debug Debug
3088 * don't use it unless you are sure
3094 * Print Tree object hierarchy in stdout
3096 * @param obj The root object
3099 EAPI void elm_object_tree_dump(const Evas_Object *top);
3100 EAPI void elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
3102 EAPI void elm_autocapitalization_allow_all_set(Eina_Bool autocap);
3103 EAPI void elm_autoperiod_allow_all_set(Eina_Bool autoperiod);
3105 * Print Elm Objects tree hierarchy in file as dot(graphviz) syntax.
3107 * @param obj The root object
3108 * @param file The path of output file
3111 EAPI void elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
3118 * @defgroup Theme Theme
3120 * Elementary uses Edje to theme its widgets, naturally. But for the most
3121 * part this is hidden behind a simpler interface that lets the user set
3122 * extensions and choose the style of widgets in a much easier way.
3124 * Instead of thinking in terms of paths to Edje files and their groups
3125 * each time you want to change the appearance of a widget, Elementary
3126 * works so you can add any theme file with extensions or replace the
3127 * main theme at one point in the application, and then just set the style
3128 * of widgets with elm_object_style_set() and related functions. Elementary
3129 * will then look in its list of themes for a matching group and apply it,
3130 * and when the theme changes midway through the application, all widgets
3131 * will be updated accordingly.
3133 * There are three concepts you need to know to understand how Elementary
3134 * theming works: default theme, extensions and overlays.
3136 * Default theme, obviously enough, is the one that provides the default
3137 * look of all widgets. End users can change the theme used by Elementary
3138 * by setting the @c ELM_THEME environment variable before running an
3139 * application, or globally for all programs using the @c elementary_config
3140 * utility. Applications can change the default theme using elm_theme_set(),
3141 * but this can go against the user wishes, so it's not an adviced practice.
3143 * Ideally, applications should find everything they need in the already
3144 * provided theme, but there may be occasions when that's not enough and
3145 * custom styles are required to correctly express the idea. For this
3146 * cases, Elementary has extensions.
3148 * Extensions allow the application developer to write styles of its own
3149 * to apply to some widgets. This requires knowledge of how each widget
3150 * is themed, as extensions will always replace the entire group used by
3151 * the widget, so important signals and parts need to be there for the
3152 * object to behave properly (see documentation of Edje for details).
3153 * Once the theme for the extension is done, the application needs to add
3154 * it to the list of themes Elementary will look into, using
3155 * elm_theme_extension_add(), and set the style of the desired widgets as
3156 * he would normally with elm_object_style_set().
3158 * Overlays, on the other hand, can replace the look of all widgets by
3159 * overriding the default style. Like extensions, it's up to the application
3160 * developer to write the theme for the widgets it wants, the difference
3161 * being that when looking for the theme, Elementary will check first the
3162 * list of overlays, then the set theme and lastly the list of extensions,
3163 * so with overlays it's possible to replace the default view and every
3164 * widget will be affected. This is very much alike to setting the whole
3165 * theme for the application and will probably clash with the end user
3166 * options, not to mention the risk of ending up with not matching styles
3167 * across the program. Unless there's a very special reason to use them,
3168 * overlays should be avoided for the resons exposed before.
3170 * All these theme lists are handled by ::Elm_Theme instances. Elementary
3171 * keeps one default internally and every function that receives one of
3172 * these can be called with NULL to refer to this default (except for
3173 * elm_theme_free()). It's possible to create a new instance of a
3174 * ::Elm_Theme to set other theme for a specific widget (and all of its
3175 * children), but this is as discouraged, if not even more so, than using
3176 * overlays. Don't use this unless you really know what you are doing.
3178 * But to be less negative about things, you can look at the following
3180 * @li @ref theme_example_01 "Using extensions"
3181 * @li @ref theme_example_02 "Using overlays"
3186 * @typedef Elm_Theme
3188 * Opaque handler for the list of themes Elementary looks for when
3189 * rendering widgets.
3191 * Stay out of this unless you really know what you are doing. For most
3192 * cases, sticking to the default is all a developer needs.
3194 typedef struct _Elm_Theme Elm_Theme;
3197 * Create a new specific theme
3199 * This creates an empty specific theme that only uses the default theme. A
3200 * specific theme has its own private set of extensions and overlays too
3201 * (which are empty by default). Specific themes do not fall back to themes
3202 * of parent objects. They are not intended for this use. Use styles, overlays
3203 * and extensions when needed, but avoid specific themes unless there is no
3204 * other way (example: you want to have a preview of a new theme you are
3205 * selecting in a "theme selector" window. The preview is inside a scroller
3206 * and should display what the theme you selected will look like, but not
3207 * actually apply it yet. The child of the scroller will have a specific
3208 * theme set to show this preview before the user decides to apply it to all
3211 EAPI Elm_Theme *elm_theme_new(void);
3213 * Free a specific theme
3215 * @param th The theme to free
3217 * This frees a theme created with elm_theme_new().
3219 EAPI void elm_theme_free(Elm_Theme *th);
3221 * Copy the theme fom the source to the destination theme
3223 * @param th The source theme to copy from
3224 * @param thdst The destination theme to copy data to
3226 * This makes a one-time static copy of all the theme config, extensions
3227 * and overlays from @p th to @p thdst. If @p th references a theme, then
3228 * @p thdst is also set to reference it, with all the theme settings,
3229 * overlays and extensions that @p th had.
3231 EAPI void elm_theme_copy(Elm_Theme *th, Elm_Theme *thdst);
3233 * Tell the source theme to reference the ref theme
3235 * @param th The theme that will do the referencing
3236 * @param thref The theme that is the reference source
3238 * This clears @p th to be empty and then sets it to refer to @p thref
3239 * so @p th acts as an override to @p thref, but where its overrides
3240 * don't apply, it will fall through to @p thref for configuration.
3242 EAPI void elm_theme_ref_set(Elm_Theme *th, Elm_Theme *thref);
3244 * Return the theme referred to
3246 * @param th The theme to get the reference from
3247 * @return The referenced theme handle
3249 * This gets the theme set as the reference theme by elm_theme_ref_set().
3250 * If no theme is set as a reference, NULL is returned.
3252 EAPI Elm_Theme *elm_theme_ref_get(Elm_Theme *th);
3254 * Return the default theme
3256 * @return The default theme handle
3258 * This returns the internal default theme setup handle that all widgets
3259 * use implicitly unless a specific theme is set. This is also often use
3260 * as a shorthand of NULL.
3262 EAPI Elm_Theme *elm_theme_default_get(void);
3264 * Prepends a theme overlay to the list of overlays
3266 * @param th The theme to add to, or if NULL, the default theme
3267 * @param item The Edje file path to be used
3269 * Use this if your application needs to provide some custom overlay theme
3270 * (An Edje file that replaces some default styles of widgets) where adding
3271 * new styles, or changing system theme configuration is not possible. Do
3272 * NOT use this instead of a proper system theme configuration. Use proper
3273 * configuration files, profiles, environment variables etc. to set a theme
3274 * so that the theme can be altered by simple confiugration by a user. Using
3275 * this call to achieve that effect is abusing the API and will create lots
3278 * @see elm_theme_extension_add()
3280 EAPI void elm_theme_overlay_add(Elm_Theme *th, const char *item);
3282 * Delete a theme overlay from the list of overlays
3284 * @param th The theme to delete from, or if NULL, the default theme
3285 * @param item The name of the theme overlay
3287 * @see elm_theme_overlay_add()
3289 EAPI void elm_theme_overlay_del(Elm_Theme *th, const char *item);
3291 * Appends a theme extension to the list of extensions.
3293 * @param th The theme to add to, or if NULL, the default theme
3294 * @param item The Edje file path to be used
3296 * This is intended when an application needs more styles of widgets or new
3297 * widget themes that the default does not provide (or may not provide). The
3298 * application has "extended" usage by coming up with new custom style names
3299 * for widgets for specific uses, but as these are not "standard", they are
3300 * not guaranteed to be provided by a default theme. This means the
3301 * application is required to provide these extra elements itself in specific
3302 * Edje files. This call adds one of those Edje files to the theme search
3303 * path to be search after the default theme. The use of this call is
3304 * encouraged when default styles do not meet the needs of the application.
3305 * Use this call instead of elm_theme_overlay_add() for almost all cases.
3307 * @see elm_object_style_set()
3309 EAPI void elm_theme_extension_add(Elm_Theme *th, const char *item);
3311 * Deletes a theme extension from the list of extensions.
3313 * @param th The theme to delete from, or if NULL, the default theme
3314 * @param item The name of the theme extension
3316 * @see elm_theme_extension_add()
3318 EAPI void elm_theme_extension_del(Elm_Theme *th, const char *item);
3320 * Set the theme search order for the given theme
3322 * @param th The theme to set the search order, or if NULL, the default theme
3323 * @param theme Theme search string
3325 * This sets the search string for the theme in path-notation from first
3326 * theme to search, to last, delimited by the : character. Example:
3328 * "shiny:/path/to/file.edj:default"
3330 * See the ELM_THEME environment variable for more information.
3332 * @see elm_theme_get()
3333 * @see elm_theme_list_get()
3335 EAPI void elm_theme_set(Elm_Theme *th, const char *theme);
3337 * Return the theme search order
3339 * @param th The theme to get the search order, or if NULL, the default theme
3340 * @return The internal search order path
3342 * This function returns a colon separated string of theme elements as
3343 * returned by elm_theme_list_get().
3345 * @see elm_theme_set()
3346 * @see elm_theme_list_get()
3348 EAPI const char *elm_theme_get(Elm_Theme *th);
3350 * Return a list of theme elements to be used in a theme.
3352 * @param th Theme to get the list of theme elements from.
3353 * @return The internal list of theme elements
3355 * This returns the internal list of theme elements (will only be valid as
3356 * long as the theme is not modified by elm_theme_set() or theme is not
3357 * freed by elm_theme_free(). This is a list of strings which must not be
3358 * altered as they are also internal. If @p th is NULL, then the default
3359 * theme element list is returned.
3361 * A theme element can consist of a full or relative path to a .edj file,
3362 * or a name, without extension, for a theme to be searched in the known
3363 * theme paths for Elemementary.
3365 * @see elm_theme_set()
3366 * @see elm_theme_get()
3368 EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
3370 * Return the full patrh for a theme element
3372 * @param f The theme element name
3373 * @param in_search_path Pointer to a boolean to indicate if item is in the search path or not
3374 * @return The full path to the file found.
3376 * This returns a string you should free with free() on success, NULL on
3377 * failure. This will search for the given theme element, and if it is a
3378 * full or relative path element or a simple searchable name. The returned
3379 * path is the full path to the file, if searched, and the file exists, or it
3380 * is simply the full path given in the element or a resolved path if
3381 * relative to home. The @p in_search_path boolean pointed to is set to
3382 * EINA_TRUE if the file was a searchable file andis in the search path,
3383 * and EINA_FALSE otherwise.
3385 EAPI char *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path);
3387 * Flush the current theme.
3389 * @param th Theme to flush
3391 * This flushes caches that let elementary know where to find theme elements
3392 * in the given theme. If @p th is NULL, then the default theme is flushed.
3393 * Call this function if source theme data has changed in such a way as to
3394 * make any caches Elementary kept invalid.
3396 EAPI void elm_theme_flush(Elm_Theme *th);
3398 * This flushes all themes (default and specific ones).
3400 * This will flush all themes in the current application context, by calling
3401 * elm_theme_flush() on each of them.
3403 EAPI void elm_theme_full_flush(void);
3405 * Set the theme for all elementary using applications on the current display
3407 * @param theme The name of the theme to use. Format same as the ELM_THEME
3408 * environment variable.
3410 EAPI void elm_theme_all_set(const char *theme);
3412 * Return a list of theme elements in the theme search path
3414 * @return A list of strings that are the theme element names.
3416 * This lists all available theme files in the standard Elementary search path
3417 * for theme elements, and returns them in alphabetical order as theme
3418 * element names in a list of strings. Free this with
3419 * elm_theme_name_available_list_free() when you are done with the list.
3421 EAPI Eina_List *elm_theme_name_available_list_new(void);
3423 * Free the list returned by elm_theme_name_available_list_new()
3425 * This frees the list of themes returned by
3426 * elm_theme_name_available_list_new(). Once freed the list should no longer
3427 * be used. a new list mys be created.
3429 EAPI void elm_theme_name_available_list_free(Eina_List *list);
3431 * Set a specific theme to be used for this object and its children
3433 * @param obj The object to set the theme on
3434 * @param th The theme to set
3436 * This sets a specific theme that will be used for the given object and any
3437 * child objects it has. If @p th is NULL then the theme to be used is
3438 * cleared and the object will inherit its theme from its parent (which
3439 * ultimately will use the default theme if no specific themes are set).
3441 * Use special themes with great care as this will annoy users and make
3442 * configuration difficult. Avoid any custom themes at all if it can be
3445 EAPI void elm_object_theme_set(Evas_Object *obj, Elm_Theme *th) EINA_ARG_NONNULL(1);
3447 * Get the specific theme to be used
3449 * @param obj The object to get the specific theme from
3450 * @return The specifc theme set.
3452 * This will return a specific theme set, or NULL if no specific theme is
3453 * set on that object. It will not return inherited themes from parents, only
3454 * the specific theme set for that specific object. See elm_object_theme_set()
3455 * for more information.
3457 EAPI Elm_Theme *elm_object_theme_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3460 * Get a data item from a theme
3462 * @param th The theme, or NULL for default theme
3463 * @param key The data key to search with
3464 * @return The data value, or NULL on failure
3466 * This function is used to return data items from edc in @p th, an overlay, or an extension.
3467 * It works the same way as edje_file_data_get() except that the return is stringshared.
3469 EAPI const char *elm_theme_data_get(Elm_Theme *th, const char *key) EINA_ARG_NONNULL(2);
3475 /** @defgroup Win Win
3477 * @image html img/widget/win/preview-00.png
3478 * @image latex img/widget/win/preview-00.eps
3480 * The window class of Elementary. Contains functions to manipulate
3481 * windows. The Evas engine used to render the window contents is specified
3482 * in the system or user elementary config files (whichever is found last),
3483 * and can be overridden with the ELM_ENGINE environment variable for
3484 * testing. Engines that may be supported (depending on Evas and Ecore-Evas
3485 * compilation setup and modules actually installed at runtime) are (listed
3486 * in order of best supported and most likely to be complete and work to
3489 * @li "x11", "x", "software-x11", "software_x11" (Software rendering in X11)
3490 * @li "gl", "opengl", "opengl-x11", "opengl_x11" (OpenGL or OpenGL-ES2
3492 * @li "shot:..." (Virtual screenshot renderer - renders to output file and
3494 * @li "fb", "software-fb", "software_fb" (Linux framebuffer direct software
3496 * @li "sdl", "software-sdl", "software_sdl" (SDL software rendering to SDL
3498 * @li "gl-sdl", "gl_sdl", "opengl-sdl", "opengl_sdl" (OpenGL or OpenGL-ES2
3499 * rendering using SDL as the buffer)
3500 * @li "gdi", "software-gdi", "software_gdi" (Windows WIN32 rendering via
3501 * GDI with software)
3502 * @li "dfb", "directfb" (Rendering to a DirectFB window)
3503 * @li "x11-8", "x8", "software-8-x11", "software_8_x11" (Rendering in
3504 * grayscale using dedicated 8bit software engine in X11)
3505 * @li "x11-16", "x16", "software-16-x11", "software_16_x11" (Rendering in
3506 * X11 using 16bit software engine)
3507 * @li "wince-gdi", "software-16-wince-gdi", "software_16_wince_gdi"
3508 * (Windows CE rendering via GDI with 16bit software renderer)
3509 * @li "sdl-16", "software-16-sdl", "software_16_sdl" (Rendering to SDL
3510 * buffer with 16bit software renderer)
3511 * @li "ews" (rendering to EWS - Ecore + Evas Single Process Windowing System)
3513 * All engines use a simple string to select the engine to render, EXCEPT
3514 * the "shot" engine. This actually encodes the output of the virtual
3515 * screenshot and how long to delay in the engine string. The engine string
3516 * is encoded in the following way:
3518 * "shot:[delay=XX][:][repeat=DDD][:][file=XX]"
3520 * Where options are separated by a ":" char if more than one option is
3521 * given, with delay, if provided being the first option and file the last
3522 * (order is important). The delay specifies how long to wait after the
3523 * window is shown before doing the virtual "in memory" rendering and then
3524 * save the output to the file specified by the file option (and then exit).
3525 * If no delay is given, the default is 0.5 seconds. If no file is given the
3526 * default output file is "out.png". Repeat option is for continous
3527 * capturing screenshots. Repeat range is from 1 to 999 and filename is
3528 * fixed to "out001.png" Some examples of using the shot engine:
3530 * ELM_ENGINE="shot:delay=1.0:repeat=5:file=elm_test.png" elementary_test
3531 * ELM_ENGINE="shot:delay=1.0:file=elm_test.png" elementary_test
3532 * ELM_ENGINE="shot:file=elm_test2.png" elementary_test
3533 * ELM_ENGINE="shot:delay=2.0" elementary_test
3534 * ELM_ENGINE="shot:" elementary_test
3536 * Signals that you can add callbacks for are:
3538 * @li "delete,request": the user requested to close the window. See
3539 * elm_win_autodel_set().
3540 * @li "focus,in": window got focus
3541 * @li "focus,out": window lost focus
3542 * @li "moved": window that holds the canvas was moved
3545 * @li @ref win_example_01
3550 * Defines the types of window that can be created
3552 * These are hints set on the window so that a running Window Manager knows
3553 * how the window should be handled and/or what kind of decorations it
3556 * Currently, only the X11 backed engines use them.
3558 typedef enum _Elm_Win_Type
3560 ELM_WIN_BASIC, /**< A normal window. Indicates a normal, top-level
3561 window. Almost every window will be created with this
3563 ELM_WIN_DIALOG_BASIC, /**< Used for simple dialog windows/ */
3564 ELM_WIN_DESKTOP, /**< For special desktop windows, like a background
3565 window holding desktop icons. */
3566 ELM_WIN_DOCK, /**< The window is used as a dock or panel. Usually would
3567 be kept on top of any other window by the Window
3569 ELM_WIN_TOOLBAR, /**< The window is used to hold a floating toolbar, or
3571 ELM_WIN_MENU, /**< Similar to #ELM_WIN_TOOLBAR. */
3572 ELM_WIN_UTILITY, /**< A persistent utility window, like a toolbox or
3574 ELM_WIN_SPLASH, /**< Splash window for a starting up application. */
3575 ELM_WIN_DROPDOWN_MENU, /**< The window is a dropdown menu, as when an
3576 entry in a menubar is clicked. Typically used
3577 with elm_win_override_set(). This hint exists
3578 for completion only, as the EFL way of
3579 implementing a menu would not normally use a
3580 separate window for its contents. */
3581 ELM_WIN_POPUP_MENU, /**< Like #ELM_WIN_DROPDOWN_MENU, but for the menu
3582 triggered by right-clicking an object. */
3583 ELM_WIN_TOOLTIP, /**< The window is a tooltip. A short piece of
3584 explanatory text that typically appear after the
3585 mouse cursor hovers over an object for a while.
3586 Typically used with elm_win_override_set() and also
3587 not very commonly used in the EFL. */
3588 ELM_WIN_NOTIFICATION, /**< A notification window, like a warning about
3589 battery life or a new E-Mail received. */
3590 ELM_WIN_COMBO, /**< A window holding the contents of a combo box. Not
3591 usually used in the EFL. */
3592 ELM_WIN_DND, /**< Used to indicate the window is a representation of an
3593 object being dragged across different windows, or even
3594 applications. Typically used with
3595 elm_win_override_set(). */
3596 ELM_WIN_INLINED_IMAGE, /**< The window is rendered onto an image
3597 buffer. No actual window is created for this
3598 type, instead the window and all of its
3599 contents will be rendered to an image buffer.
3600 This allows to have children window inside a
3601 parent one just like any other object would
3602 be, and do other things like applying @c
3603 Evas_Map effects to it. This is the only type
3604 of window that requires the @c parent
3605 parameter of elm_win_add() to be a valid @c
3610 * The differents layouts that can be requested for the virtual keyboard.
3612 * When the application window is being managed by Illume, it may request
3613 * any of the following layouts for the virtual keyboard.
3615 typedef enum _Elm_Win_Keyboard_Mode
3617 ELM_WIN_KEYBOARD_UNKNOWN, /**< Unknown keyboard state */
3618 ELM_WIN_KEYBOARD_OFF, /**< Request to deactivate the keyboard */
3619 ELM_WIN_KEYBOARD_ON, /**< Enable keyboard with default layout */
3620 ELM_WIN_KEYBOARD_ALPHA, /**< Alpha (a-z) keyboard layout */
3621 ELM_WIN_KEYBOARD_NUMERIC, /**< Numeric keyboard layout */
3622 ELM_WIN_KEYBOARD_PIN, /**< PIN keyboard layout */
3623 ELM_WIN_KEYBOARD_PHONE_NUMBER, /**< Phone keyboard layout */
3624 ELM_WIN_KEYBOARD_HEX, /**< Hexadecimal numeric keyboard layout */
3625 ELM_WIN_KEYBOARD_TERMINAL, /**< Full (QUERTY) keyboard layout */
3626 ELM_WIN_KEYBOARD_PASSWORD, /**< Password keyboard layout */
3627 ELM_WIN_KEYBOARD_IP, /**< IP keyboard layout */
3628 ELM_WIN_KEYBOARD_HOST, /**< Host keyboard layout */
3629 ELM_WIN_KEYBOARD_FILE, /**< File keyboard layout */
3630 ELM_WIN_KEYBOARD_URL, /**< URL keyboard layout */
3631 ELM_WIN_KEYBOARD_KEYPAD, /**< Keypad layout */
3632 ELM_WIN_KEYBOARD_J2ME /**< J2ME keyboard layout */
3633 } Elm_Win_Keyboard_Mode;
3636 * Available commands that can be sent to the Illume manager.
3638 * When running under an Illume session, a window may send commands to the
3639 * Illume manager to perform different actions.
3641 typedef enum _Elm_Illume_Command
3643 ELM_ILLUME_COMMAND_FOCUS_BACK, /**< Reverts focus to the previous
3645 ELM_ILLUME_COMMAND_FOCUS_FORWARD, /**< Sends focus to the next window\
3647 ELM_ILLUME_COMMAND_FOCUS_HOME, /**< Hides all windows to show the Home
3649 ELM_ILLUME_COMMAND_CLOSE /**< Closes the currently active window */
3650 } Elm_Illume_Command;
3653 * Adds a window object. If this is the first window created, pass NULL as
3656 * @param parent Parent object to add the window to, or NULL
3657 * @param name The name of the window
3658 * @param type The window type, one of #Elm_Win_Type.
3660 * The @p parent paramter can be @c NULL for every window @p type except
3661 * #ELM_WIN_INLINED_IMAGE, which needs a parent to retrieve the canvas on
3662 * which the image object will be created.
3664 * @return The created object, or NULL on failure
3666 EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type);
3668 * Add @p subobj as a resize object of window @p obj.
3671 * Setting an object as a resize object of the window means that the
3672 * @p subobj child's size and position will be controlled by the window
3673 * directly. That is, the object will be resized to match the window size
3674 * and should never be moved or resized manually by the developer.
3676 * In addition, resize objects of the window control what the minimum size
3677 * of it will be, as well as whether it can or not be resized by the user.
3679 * For the end user to be able to resize a window by dragging the handles
3680 * or borders provided by the Window Manager, or using any other similar
3681 * mechanism, all of the resize objects in the window should have their
3682 * evas_object_size_hint_weight_set() set to EVAS_HINT_EXPAND.
3684 * @param obj The window object
3685 * @param subobj The resize object to add
3687 EAPI void elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
3689 * Delete @p subobj as a resize object of window @p obj.
3691 * This function removes the object @p subobj from the resize objects of
3692 * the window @p obj. It will not delete the object itself, which will be
3693 * left unmanaged and should be deleted by the developer, manually handled
3694 * or set as child of some other container.
3696 * @param obj The window object
3697 * @param subobj The resize object to add
3699 EAPI void elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
3701 * Set the title of the window
3703 * @param obj The window object
3704 * @param title The title to set
3706 EAPI void elm_win_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
3708 * Get the title of the window
3710 * The returned string is an internal one and should not be freed or
3711 * modified. It will also be rendered invalid if a new title is set or if
3712 * the window is destroyed.
3714 * @param obj The window object
3717 EAPI const char *elm_win_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3719 * Set the window's autodel state.
3721 * When closing the window in any way outside of the program control, like
3722 * pressing the X button in the titlebar or using a command from the
3723 * Window Manager, a "delete,request" signal is emitted to indicate that
3724 * this event occurred and the developer can take any action, which may
3725 * include, or not, destroying the window object.
3727 * When the @p autodel parameter is set, the window will be automatically
3728 * destroyed when this event occurs, after the signal is emitted.
3729 * If @p autodel is @c EINA_FALSE, then the window will not be destroyed
3730 * and is up to the program to do so when it's required.
3732 * @param obj The window object
3733 * @param autodel If true, the window will automatically delete itself when
3736 EAPI void elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel) EINA_ARG_NONNULL(1);
3738 * Get the window's autodel state.
3740 * @param obj The window object
3741 * @return If the window will automatically delete itself when closed
3743 * @see elm_win_autodel_set()
3745 EAPI Eina_Bool elm_win_autodel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3747 * Activate a window object.
3749 * This function sends a request to the Window Manager to activate the
3750 * window pointed by @p obj. If honored by the WM, the window will receive
3751 * the keyboard focus.
3753 * @note This is just a request that a Window Manager may ignore, so calling
3754 * this function does not ensure in any way that the window will be the
3755 * active one after it.
3757 * @param obj The window object
3759 EAPI void elm_win_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
3761 * Lower a window object.
3763 * Places the window pointed by @p obj at the bottom of the stack, so that
3764 * no other window is covered by it.
3766 * If elm_win_override_set() is not set, the Window Manager may ignore this
3769 * @param obj The window object
3771 EAPI void elm_win_lower(Evas_Object *obj) EINA_ARG_NONNULL(1);
3773 * Raise a window object.
3775 * Places the window pointed by @p obj at the top of the stack, so that it's
3776 * not covered by any other window.
3778 * If elm_win_override_set() is not set, the Window Manager may ignore this
3781 * @param obj The window object
3783 EAPI void elm_win_raise(Evas_Object *obj) EINA_ARG_NONNULL(1);
3785 * Set the borderless state of a window.
3787 * This function requests the Window Manager to not draw any decoration
3788 * around the window.
3790 * @param obj The window object
3791 * @param borderless If true, the window is borderless
3793 EAPI void elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless) EINA_ARG_NONNULL(1);
3795 * Get the borderless state of a window.
3797 * @param obj The window object
3798 * @return If true, the window is borderless
3800 EAPI Eina_Bool elm_win_borderless_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3802 * Set the shaped state of a window.
3804 * Shaped windows, when supported, will render the parts of the window that
3805 * has no content, transparent.
3807 * If @p shaped is EINA_FALSE, then it is strongly adviced to have some
3808 * background object or cover the entire window in any other way, or the
3809 * parts of the canvas that have no data will show framebuffer artifacts.
3811 * @param obj The window object
3812 * @param shaped If true, the window is shaped
3814 * @see elm_win_alpha_set()
3816 EAPI void elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped) EINA_ARG_NONNULL(1);
3818 * Get the shaped state of a window.
3820 * @param obj The window object
3821 * @return If true, the window is shaped
3823 * @see elm_win_shaped_set()
3825 EAPI Eina_Bool elm_win_shaped_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3827 * Set the alpha channel state of a window.
3829 * If @p alpha is EINA_TRUE, the alpha channel of the canvas will be enabled
3830 * possibly making parts of the window completely or partially transparent.
3831 * This is also subject to the underlying system supporting it, like for
3832 * example, running under a compositing manager. If no compositing is
3833 * available, enabling this option will instead fallback to using shaped
3834 * windows, with elm_win_shaped_set().
3836 * @param obj The window object
3837 * @param alpha If true, the window has an alpha channel
3839 * @see elm_win_alpha_set()
3841 EAPI void elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
3843 * Get the transparency state of a window.
3845 * @param obj The window object
3846 * @return If true, the window is transparent
3848 * @see elm_win_transparent_set()
3850 EAPI Eina_Bool elm_win_transparent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3852 * Set the transparency state of a window.
3854 * Use elm_win_alpha_set() instead.
3856 * @param obj The window object
3857 * @param transparent If true, the window is transparent
3859 * @see elm_win_alpha_set()
3861 EAPI void elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent) EINA_ARG_NONNULL(1);
3863 * Get the alpha channel state of a window.
3865 * @param obj The window object
3866 * @return If true, the window has an alpha channel
3868 EAPI Eina_Bool elm_win_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3870 * Set the override state of a window.
3872 * A window with @p override set to EINA_TRUE will not be managed by the
3873 * Window Manager. This means that no decorations of any kind will be shown
3874 * for it, moving and resizing must be handled by the application, as well
3875 * as the window visibility.
3877 * This should not be used for normal windows, and even for not so normal
3878 * ones, it should only be used when there's a good reason and with a lot
3879 * of care. Mishandling override windows may result situations that
3880 * disrupt the normal workflow of the end user.
3882 * @param obj The window object
3883 * @param override If true, the window is overridden
3885 EAPI void elm_win_override_set(Evas_Object *obj, Eina_Bool override) EINA_ARG_NONNULL(1);
3887 * Get the override state of a window.
3889 * @param obj The window object
3890 * @return If true, the window is overridden
3892 * @see elm_win_override_set()
3894 EAPI Eina_Bool elm_win_override_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3896 * Set the fullscreen state of a window.
3898 * @param obj The window object
3899 * @param fullscreen If true, the window is fullscreen
3901 EAPI void elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen) EINA_ARG_NONNULL(1);
3903 * Get the fullscreen state of a window.
3905 * @param obj The window object
3906 * @return If true, the window is fullscreen
3908 EAPI Eina_Bool elm_win_fullscreen_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3910 * Set the maximized state of a window.
3912 * @param obj The window object
3913 * @param maximized If true, the window is maximized
3915 EAPI void elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized) EINA_ARG_NONNULL(1);
3917 * Get the maximized state of a window.
3919 * @param obj The window object
3920 * @return If true, the window is maximized
3922 EAPI Eina_Bool elm_win_maximized_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3924 * Set the iconified state of a window.
3926 * @param obj The window object
3927 * @param iconified If true, the window is iconified
3929 EAPI void elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified) EINA_ARG_NONNULL(1);
3931 * Get the iconified state of a window.
3933 * @param obj The window object
3934 * @return If true, the window is iconified
3936 EAPI Eina_Bool elm_win_iconified_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3938 * Set the layer of the window.
3940 * What this means exactly will depend on the underlying engine used.
3942 * In the case of X11 backed engines, the value in @p layer has the
3943 * following meanings:
3944 * @li < 3: The window will be placed below all others.
3945 * @li > 5: The window will be placed above all others.
3946 * @li other: The window will be placed in the default layer.
3948 * @param obj The window object
3949 * @param layer The layer of the window
3951 EAPI void elm_win_layer_set(Evas_Object *obj, int layer) EINA_ARG_NONNULL(1);
3953 * Get the layer of the window.
3955 * @param obj The window object
3956 * @return The layer of the window
3958 * @see elm_win_layer_set()
3960 EAPI int elm_win_layer_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3962 * Set the rotation of the window.
3964 * Most engines only work with multiples of 90.
3966 * This function is used to set the orientation of the window @p obj to
3967 * match that of the screen. The window itself will be resized to adjust
3968 * to the new geometry of its contents. If you want to keep the window size,
3969 * see elm_win_rotation_with_resize_set().
3971 * @param obj The window object
3972 * @param rotation The rotation of the window, in degrees (0-360),
3973 * counter-clockwise.
3975 EAPI void elm_win_rotation_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
3977 * Rotates the window and resizes it.
3979 * Like elm_win_rotation_set(), but it also resizes the window's contents so
3980 * that they fit inside the current window geometry.
3982 * @param obj The window object
3983 * @param layer The rotation of the window in degrees (0-360),
3984 * counter-clockwise.
3986 EAPI void elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
3988 * Get the rotation of the window.
3990 * @param obj The window object
3991 * @return The rotation of the window in degrees (0-360)
3993 * @see elm_win_rotation_set()
3994 * @see elm_win_rotation_with_resize_set()
3996 EAPI int elm_win_rotation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
3998 * Set the sticky state of the window.
4000 * Hints the Window Manager that the window in @p obj should be left fixed
4001 * at its position even when the virtual desktop it's on moves or changes.
4003 * @param obj The window object
4004 * @param sticky If true, the window's sticky state is enabled
4006 EAPI void elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky) EINA_ARG_NONNULL(1);
4008 * Get the sticky state of the window.
4010 * @param obj The window object
4011 * @return If true, the window's sticky state is enabled
4013 * @see elm_win_sticky_set()
4015 EAPI Eina_Bool elm_win_sticky_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4017 * Set if this window is an illume conformant window
4019 * @param obj The window object
4020 * @param conformant The conformant flag (1 = conformant, 0 = non-conformant)
4022 EAPI void elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant) EINA_ARG_NONNULL(1);
4024 * Get if this window is an illume conformant window
4026 * @param obj The window object
4027 * @return A boolean if this window is illume conformant or not
4029 EAPI Eina_Bool elm_win_conformant_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4031 * Set a window to be an illume quickpanel window
4033 * By default window objects are not quickpanel windows.
4035 * @param obj The window object
4036 * @param quickpanel The quickpanel flag (1 = quickpanel, 0 = normal window)
4038 EAPI void elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel) EINA_ARG_NONNULL(1);
4040 * Get if this window is a quickpanel or not
4042 * @param obj The window object
4043 * @return A boolean if this window is a quickpanel or not
4045 EAPI Eina_Bool elm_win_quickpanel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4047 * Set the major priority of a quickpanel window
4049 * @param obj The window object
4050 * @param priority The major priority for this quickpanel
4052 EAPI void elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4054 * Get the major priority of a quickpanel window
4056 * @param obj The window object
4057 * @return The major priority of this quickpanel
4059 EAPI int elm_win_quickpanel_priority_major_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4061 * Set the minor priority of a quickpanel window
4063 * @param obj The window object
4064 * @param priority The minor priority for this quickpanel
4066 EAPI void elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
4068 * Get the minor priority of a quickpanel window
4070 * @param obj The window object
4071 * @return The minor priority of this quickpanel
4073 EAPI int elm_win_quickpanel_priority_minor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4075 * Set which zone this quickpanel should appear in
4077 * @param obj The window object
4078 * @param zone The requested zone for this quickpanel
4080 EAPI void elm_win_quickpanel_zone_set(Evas_Object *obj, int zone) EINA_ARG_NONNULL(1);
4082 * Get which zone this quickpanel should appear in
4084 * @param obj The window object
4085 * @return The requested zone for this quickpanel
4087 EAPI int elm_win_quickpanel_zone_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4089 * Set the window to be skipped by keyboard focus
4091 * This sets the window to be skipped by normal keyboard input. This means
4092 * a window manager will be asked to not focus this window as well as omit
4093 * it from things like the taskbar, pager, "alt-tab" list etc. etc.
4095 * Call this and enable it on a window BEFORE you show it for the first time,
4096 * otherwise it may have no effect.
4098 * Use this for windows that have only output information or might only be
4099 * interacted with by the mouse or fingers, and never for typing input.
4100 * Be careful that this may have side-effects like making the window
4101 * non-accessible in some cases unless the window is specially handled. Use
4104 * @param obj The window object
4105 * @param skip The skip flag state (EINA_TRUE if it is to be skipped)
4107 EAPI void elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip) EINA_ARG_NONNULL(1);
4109 * Send a command to the windowing environment
4111 * This is intended to work in touchscreen or small screen device
4112 * environments where there is a more simplistic window management policy in
4113 * place. This uses the window object indicated to select which part of the
4114 * environment to control (the part that this window lives in), and provides
4115 * a command and an optional parameter structure (use NULL for this if not
4118 * @param obj The window object that lives in the environment to control
4119 * @param command The command to send
4120 * @param params Optional parameters for the command
4122 EAPI void elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params) EINA_ARG_NONNULL(1);
4124 * Get the inlined image object handle
4126 * When you create a window with elm_win_add() of type ELM_WIN_INLINED_IMAGE,
4127 * then the window is in fact an evas image object inlined in the parent
4128 * canvas. You can get this object (be careful to not manipulate it as it
4129 * is under control of elementary), and use it to do things like get pixel
4130 * data, save the image to a file, etc.
4132 * @param obj The window object to get the inlined image from
4133 * @return The inlined image object, or NULL if none exists
4135 EAPI Evas_Object *elm_win_inlined_image_object_get(Evas_Object *obj);
4137 * Set the enabled status for the focus highlight in a window
4139 * This function will enable or disable the focus highlight only for the
4140 * given window, regardless of the global setting for it
4142 * @param obj The window where to enable the highlight
4143 * @param enabled The enabled value for the highlight
4145 EAPI void elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
4147 * Get the enabled value of the focus highlight for this window
4149 * @param obj The window in which to check if the focus highlight is enabled
4151 * @return EINA_TRUE if enabled, EINA_FALSE otherwise
4153 EAPI Eina_Bool elm_win_focus_highlight_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4155 * Set the style for the focus highlight on this window
4157 * Sets the style to use for theming the highlight of focused objects on
4158 * the given window. If @p style is NULL, the default will be used.
4160 * @param obj The window where to set the style
4161 * @param style The style to set
4163 EAPI void elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
4165 * Get the style set for the focus highlight object
4167 * Gets the style set for this windows highilght object, or NULL if none
4170 * @param obj The window to retrieve the highlights style from
4172 * @return The style set or NULL if none was. Default is used in that case.
4174 EAPI const char *elm_win_focus_highlight_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4175 EAPI void elm_win_indicator_state_set(Evas_Object *obj, int show_state);
4176 EAPI int elm_win_indicator_state_get(Evas_Object *obj);
4178 * ecore_x_icccm_hints_set -> accepts_focus (add to ecore_evas)
4179 * ecore_x_icccm_hints_set -> window_group (add to ecore_evas)
4180 * ecore_x_icccm_size_pos_hints_set -> request_pos (add to ecore_evas)
4181 * ecore_x_icccm_client_leader_set -> l (add to ecore_evas)
4182 * ecore_x_icccm_window_role_set -> role (add to ecore_evas)
4183 * ecore_x_icccm_transient_for_set -> forwin (add to ecore_evas)
4184 * ecore_x_netwm_window_type_set -> type (add to ecore_evas)
4186 * (add to ecore_x) set netwm argb icon! (add to ecore_evas)
4187 * (blank mouse, private mouse obj, defaultmouse)
4191 * Sets the keyboard mode of the window.
4193 * @param obj The window object
4194 * @param mode The mode to set, one of #Elm_Win_Keyboard_Mode
4196 EAPI void elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode) EINA_ARG_NONNULL(1);
4198 * Gets the keyboard mode of the window.
4200 * @param obj The window object
4201 * @return The mode, one of #Elm_Win_Keyboard_Mode
4203 EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4205 * Sets whether the window is a keyboard.
4207 * @param obj The window object
4208 * @param is_keyboard If true, the window is a virtual keyboard
4210 EAPI void elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard) EINA_ARG_NONNULL(1);
4212 * Gets whether the window is a keyboard.
4214 * @param obj The window object
4215 * @return If the window is a virtual keyboard
4217 EAPI Eina_Bool elm_win_keyboard_win_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4220 * Get the screen position of a window.
4222 * @param obj The window object
4223 * @param x The int to store the x coordinate to
4224 * @param y The int to store the y coordinate to
4226 EAPI void elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y) EINA_ARG_NONNULL(1);
4232 * @defgroup Inwin Inwin
4234 * @image html img/widget/inwin/preview-00.png
4235 * @image latex img/widget/inwin/preview-00.eps
4236 * @image html img/widget/inwin/preview-01.png
4237 * @image latex img/widget/inwin/preview-01.eps
4238 * @image html img/widget/inwin/preview-02.png
4239 * @image latex img/widget/inwin/preview-02.eps
4241 * An inwin is a window inside a window that is useful for a quick popup.
4242 * It does not hover.
4244 * It works by creating an object that will occupy the entire window, so it
4245 * must be created using an @ref Win "elm_win" as parent only. The inwin
4246 * object can be hidden or restacked below every other object if it's
4247 * needed to show what's behind it without destroying it. If this is done,
4248 * the elm_win_inwin_activate() function can be used to bring it back to
4249 * full visibility again.
4251 * There are three styles available in the default theme. These are:
4252 * @li default: The inwin is sized to take over most of the window it's
4254 * @li minimal: The size of the inwin will be the minimum necessary to show
4256 * @li minimal_vertical: Horizontally, the inwin takes as much space as
4257 * possible, but it's sized vertically the most it needs to fit its\
4260 * Some examples of Inwin can be found in the following:
4261 * @li @ref inwin_example_01
4266 * Adds an inwin to the current window
4268 * The @p obj used as parent @b MUST be an @ref Win "Elementary Window".
4269 * Never call this function with anything other than the top-most window
4270 * as its parameter, unless you are fond of undefined behavior.
4272 * After creating the object, the widget will set itself as resize object
4273 * for the window with elm_win_resize_object_add(), so when shown it will
4274 * appear to cover almost the entire window (how much of it depends on its
4275 * content and the style used). It must not be added into other container
4276 * objects and it needs not be moved or resized manually.
4278 * @param parent The parent object
4279 * @return The new object or NULL if it cannot be created
4281 EAPI Evas_Object *elm_win_inwin_add(Evas_Object *obj) EINA_ARG_NONNULL(1);
4283 * Activates an inwin object, ensuring its visibility
4285 * This function will make sure that the inwin @p obj is completely visible
4286 * by calling evas_object_show() and evas_object_raise() on it, to bring it
4287 * to the front. It also sets the keyboard focus to it, which will be passed
4290 * The object's theme will also receive the signal "elm,action,show" with
4293 * @param obj The inwin to activate
4295 EAPI void elm_win_inwin_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
4297 * Set the content of an inwin object.
4299 * Once the content object is set, a previously set one will be deleted.
4300 * If you want to keep that old content object, use the
4301 * elm_win_inwin_content_unset() function.
4303 * @param obj The inwin object
4304 * @param content The object to set as content
4306 EAPI void elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
4308 * Get the content of an inwin object.
4310 * Return the content object which is set for this widget.
4312 * The returned object is valid as long as the inwin is still alive and no
4313 * other content is set on it. Deleting the object will notify the inwin
4314 * about it and this one will be left empty.
4316 * If you need to remove an inwin's content to be reused somewhere else,
4317 * see elm_win_inwin_content_unset().
4319 * @param obj The inwin object
4320 * @return The content that is being used
4322 EAPI Evas_Object *elm_win_inwin_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4324 * Unset the content of an inwin object.
4326 * Unparent and return the content object which was set for this widget.
4328 * @param obj The inwin object
4329 * @return The content that was being used
4331 EAPI Evas_Object *elm_win_inwin_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4335 /* X specific calls - won't work on non-x engines (return 0) */
4338 * Get the Ecore_X_Window of an Evas_Object
4340 * @param obj The object
4342 * @return The Ecore_X_Window of @p obj
4346 EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4348 /* smart callbacks called:
4349 * "delete,request" - the user requested to delete the window
4350 * "focus,in" - window got focus
4351 * "focus,out" - window lost focus
4352 * "moved" - window that holds the canvas was moved
4358 * @image html img/widget/bg/preview-00.png
4359 * @image latex img/widget/bg/preview-00.eps
4361 * @brief Background object, used for setting a solid color, image or Edje
4362 * group as background to a window or any container object.
4364 * The bg object is used for setting a solid background to a window or
4365 * packing into any container object. It works just like an image, but has
4366 * some properties useful to a background, like setting it to tiled,
4367 * centered, scaled or stretched.
4369 * Default contents parts of the bg widget that you can use for are:
4370 * @li "elm.swallow.content" - overlay of the bg
4372 * Here is some sample code using it:
4373 * @li @ref bg_01_example_page
4374 * @li @ref bg_02_example_page
4375 * @li @ref bg_03_example_page
4379 typedef enum _Elm_Bg_Option
4381 ELM_BG_OPTION_CENTER, /**< center the background */
4382 ELM_BG_OPTION_SCALE, /**< scale the background retaining aspect ratio */
4383 ELM_BG_OPTION_STRETCH, /**< stretch the background to fill */
4384 ELM_BG_OPTION_TILE /**< tile background at its original size */
4388 * Add a new background to the parent
4390 * @param parent The parent object
4391 * @return The new object or NULL if it cannot be created
4395 EAPI Evas_Object *elm_bg_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4398 * Set the file (image or edje) used for the background
4400 * @param obj The bg object
4401 * @param file The file path
4402 * @param group Optional key (group in Edje) within the file
4404 * This sets the image file used in the background object. The image (or edje)
4405 * will be stretched (retaining aspect if its an image file) to completely fill
4406 * the bg object. This may mean some parts are not visible.
4408 * @note Once the image of @p obj is set, a previously set one will be deleted,
4409 * even if @p file is NULL.
4413 EAPI void elm_bg_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
4416 * Get the file (image or edje) used for the background
4418 * @param obj The bg object
4419 * @param file The file path
4420 * @param group Optional key (group in Edje) within the file
4424 EAPI void elm_bg_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4427 * Set the option used for the background image
4429 * @param obj The bg object
4430 * @param option The desired background option (TILE, SCALE)
4432 * This sets the option used for manipulating the display of the background
4433 * image. The image can be tiled or scaled.
4437 EAPI void elm_bg_option_set(Evas_Object *obj, Elm_Bg_Option option) EINA_ARG_NONNULL(1);
4440 * Get the option used for the background image
4442 * @param obj The bg object
4443 * @return The desired background option (CENTER, SCALE, STRETCH or TILE)
4447 EAPI Elm_Bg_Option elm_bg_option_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4449 * Set the option used for the background color
4451 * @param obj The bg object
4456 * This sets the color used for the background rectangle. Its range goes
4461 EAPI void elm_bg_color_set(Evas_Object *obj, int r, int g, int b) EINA_ARG_NONNULL(1);
4463 * Get the option used for the background color
4465 * @param obj The bg object
4472 EAPI void elm_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b) EINA_ARG_NONNULL(1);
4475 * Set the overlay object used for the background object.
4477 * @param obj The bg object
4478 * @param overlay The overlay object
4480 * This provides a way for elm_bg to have an 'overlay' that will be on top
4481 * of the bg. Once the over object is set, a previously set one will be
4482 * deleted, even if you set the new one to NULL. If you want to keep that
4483 * old content object, use the elm_bg_overlay_unset() function.
4488 EAPI void elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay) EINA_ARG_NONNULL(1);
4491 * Get the overlay object used for the background object.
4493 * @param obj The bg object
4494 * @return The content that is being used
4496 * Return the content object which is set for this widget
4500 EAPI Evas_Object *elm_bg_overlay_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4503 * Get the overlay object used for the background object.
4505 * @param obj The bg object
4506 * @return The content that was being used
4508 * Unparent and return the overlay object which was set for this widget
4512 EAPI Evas_Object *elm_bg_overlay_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
4515 * Set the size of the pixmap representation of the image.
4517 * This option just makes sense if an image is going to be set in the bg.
4519 * @param obj The bg object
4520 * @param w The new width of the image pixmap representation.
4521 * @param h The new height of the image pixmap representation.
4523 * This function sets a new size for pixmap representation of the given bg
4524 * image. It allows the image to be loaded already in the specified size,
4525 * reducing the memory usage and load time when loading a big image with load
4526 * size set to a smaller size.
4528 * NOTE: this is just a hint, the real size of the pixmap may differ
4529 * depending on the type of image being loaded, being bigger than requested.
4533 EAPI void elm_bg_load_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
4534 /* smart callbacks called:
4538 * @defgroup Icon Icon
4540 * @image html img/widget/icon/preview-00.png
4541 * @image latex img/widget/icon/preview-00.eps
4543 * An object that provides standard icon images (delete, edit, arrows, etc.)
4544 * or a custom file (PNG, JPG, EDJE, etc.) used for an icon.
4546 * The icon image requested can be in the elementary theme, or in the
4547 * freedesktop.org paths. It's possible to set the order of preference from
4548 * where the image will be used.
4550 * This API is very similar to @ref Image, but with ready to use images.
4552 * Default images provided by the theme are described below.
4554 * The first list contains icons that were first intended to be used in
4555 * toolbars, but can be used in many other places too:
4571 * Now some icons that were designed to be used in menus (but again, you can
4572 * use them anywhere else):
4577 * @li menu/arrow_down
4578 * @li menu/arrow_left
4579 * @li menu/arrow_right
4588 * And here we have some media player specific icons:
4589 * @li media_player/forward
4590 * @li media_player/info
4591 * @li media_player/next
4592 * @li media_player/pause
4593 * @li media_player/play
4594 * @li media_player/prev
4595 * @li media_player/rewind
4596 * @li media_player/stop
4598 * Signals that you can add callbacks for are:
4600 * "clicked" - This is called when a user has clicked the icon
4602 * An example of usage for this API follows:
4603 * @li @ref tutorial_icon
4611 typedef enum _Elm_Icon_Type
4618 * @enum _Elm_Icon_Lookup_Order
4619 * @typedef Elm_Icon_Lookup_Order
4621 * Lookup order used by elm_icon_standard_set(). Should look for icons in the
4622 * theme, FDO paths, or both?
4626 typedef enum _Elm_Icon_Lookup_Order
4628 ELM_ICON_LOOKUP_FDO_THEME, /**< icon look up order: freedesktop, theme */
4629 ELM_ICON_LOOKUP_THEME_FDO, /**< icon look up order: theme, freedesktop */
4630 ELM_ICON_LOOKUP_FDO, /**< icon look up order: freedesktop */
4631 ELM_ICON_LOOKUP_THEME /**< icon look up order: theme */
4632 } Elm_Icon_Lookup_Order;
4635 * Add a new icon object to the parent.
4637 * @param parent The parent object
4638 * @return The new object or NULL if it cannot be created
4640 * @see elm_icon_file_set()
4644 EAPI Evas_Object *elm_icon_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
4646 * Set the file that will be used as icon.
4648 * @param obj The icon object
4649 * @param file The path to file that will be used as icon image
4650 * @param group The group that the icon belongs to an edje file
4652 * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4654 * @note The icon image set by this function can be changed by
4655 * elm_icon_standard_set().
4657 * @see elm_icon_file_get()
4661 EAPI Eina_Bool elm_icon_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
4663 * Set a location in memory to be used as an icon
4665 * @param obj The icon object
4666 * @param img The binary data that will be used as an image
4667 * @param size The size of binary data @p img
4668 * @param format Optional format of @p img to pass to the image loader
4669 * @param key Optional key of @p img to pass to the image loader (eg. if @p img is an edje file)
4671 * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4673 * @note The icon image set by this function can be changed by
4674 * elm_icon_standard_set().
4678 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);
4680 * Get the file that will be used as icon.
4682 * @param obj The icon object
4683 * @param file The path to file that will be used as the icon image
4684 * @param group The group that the icon belongs to, in edje file
4686 * @see elm_icon_file_set()
4690 EAPI void elm_icon_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
4691 EAPI void elm_icon_thumb_set(const Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
4693 * Set the icon by icon standards names.
4695 * @param obj The icon object
4696 * @param name The icon name
4698 * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
4700 * For example, freedesktop.org defines standard icon names such as "home",
4701 * "network", etc. There can be different icon sets to match those icon
4702 * keys. The @p name given as parameter is one of these "keys", and will be
4703 * used to look in the freedesktop.org paths and elementary theme. One can
4704 * change the lookup order with elm_icon_order_lookup_set().
4706 * If name is not found in any of the expected locations and it is the
4707 * absolute path of an image file, this image will be used.
4709 * @note The icon image set by this function can be changed by
4710 * elm_icon_file_set().
4712 * @see elm_icon_standard_get()
4713 * @see elm_icon_file_set()
4717 EAPI Eina_Bool elm_icon_standard_set(Evas_Object *obj, const char *name) EINA_ARG_NONNULL(1);
4719 * Get the icon name set by icon standard names.
4721 * @param obj The icon object
4722 * @return The icon name
4724 * If the icon image was set using elm_icon_file_set() instead of
4725 * elm_icon_standard_set(), then this function will return @c NULL.
4727 * @see elm_icon_standard_set()
4731 EAPI const char *elm_icon_standard_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4733 * Set the smooth scaling for an icon object.
4735 * @param obj The icon object
4736 * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
4737 * otherwise. Default is @c EINA_TRUE.
4739 * Set the scaling algorithm to be used when scaling the icon image. Smooth
4740 * scaling provides a better resulting image, but is slower.
4742 * The smooth scaling should be disabled when making animations that change
4743 * the icon size, since they will be faster. Animations that don't require
4744 * resizing of the icon can keep the smooth scaling enabled (even if the icon
4745 * is already scaled, since the scaled icon image will be cached).
4747 * @see elm_icon_smooth_get()
4751 EAPI void elm_icon_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
4753 * Get whether smooth scaling is enabled for an icon object.
4755 * @param obj The icon object
4756 * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
4758 * @see elm_icon_smooth_set()
4762 EAPI Eina_Bool elm_icon_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4764 * Disable scaling of this object.
4766 * @param obj The icon object.
4767 * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
4768 * otherwise. Default is @c EINA_FALSE.
4770 * This function disables scaling of the icon object through the function
4771 * elm_object_scale_set(). However, this does not affect the object
4772 * size/resize in any way. For that effect, take a look at
4773 * elm_icon_scale_set().
4775 * @see elm_icon_no_scale_get()
4776 * @see elm_icon_scale_set()
4777 * @see elm_object_scale_set()
4781 EAPI void elm_icon_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
4783 * Get whether scaling is disabled on the object.
4785 * @param obj The icon object
4786 * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
4788 * @see elm_icon_no_scale_set()
4792 EAPI Eina_Bool elm_icon_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4794 * Set if the object is (up/down) resizable.
4796 * @param obj The icon object
4797 * @param scale_up A bool to set if the object is resizable up. Default is
4799 * @param scale_down A bool to set if the object is resizable down. Default
4802 * This function limits the icon object resize ability. If @p scale_up is set to
4803 * @c EINA_FALSE, the object can't have its height or width resized to a value
4804 * higher than the original icon size. Same is valid for @p scale_down.
4806 * @see elm_icon_scale_get()
4810 EAPI void elm_icon_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
4812 * Get if the object is (up/down) resizable.
4814 * @param obj The icon object
4815 * @param scale_up A bool to set if the object is resizable up
4816 * @param scale_down A bool to set if the object is resizable down
4818 * @see elm_icon_scale_set()
4822 EAPI void elm_icon_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
4824 * Get the object's image size
4826 * @param obj The icon object
4827 * @param w A pointer to store the width in
4828 * @param h A pointer to store the height in
4832 EAPI void elm_icon_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
4834 * Set if the icon fill the entire object area.
4836 * @param obj The icon object
4837 * @param fill_outside @c EINA_TRUE if the object is filled outside,
4838 * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
4840 * When the icon object is resized to a different aspect ratio from the
4841 * original icon image, the icon image will still keep its aspect. This flag
4842 * tells how the image should fill the object's area. They are: keep the
4843 * entire icon inside the limits of height and width of the object (@p
4844 * fill_outside is @c EINA_FALSE) or let the extra width or height go outside
4845 * of the object, and the icon will fill the entire object (@p fill_outside
4848 * @note Unlike @ref Image, there's no option in icon to set the aspect ratio
4849 * retain property to false. Thus, the icon image will always keep its
4850 * original aspect ratio.
4852 * @see elm_icon_fill_outside_get()
4853 * @see elm_image_fill_outside_set()
4857 EAPI void elm_icon_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
4859 * Get if the object is filled outside.
4861 * @param obj The icon object
4862 * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
4864 * @see elm_icon_fill_outside_set()
4868 EAPI Eina_Bool elm_icon_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4870 * Set the prescale size for the icon.
4872 * @param obj The icon object
4873 * @param size The prescale size. This value is used for both width and
4876 * This function sets a new size for pixmap representation of the given
4877 * icon. It allows the icon to be loaded already in the specified size,
4878 * reducing the memory usage and load time when loading a big icon with load
4879 * size set to a smaller size.
4881 * It's equivalent to the elm_bg_load_size_set() function for bg.
4883 * @note this is just a hint, the real size of the pixmap may differ
4884 * depending on the type of icon being loaded, being bigger than requested.
4886 * @see elm_icon_prescale_get()
4887 * @see elm_bg_load_size_set()
4891 EAPI void elm_icon_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
4893 * Get the prescale size for the icon.
4895 * @param obj The icon object
4896 * @return The prescale size
4898 * @see elm_icon_prescale_set()
4902 EAPI int elm_icon_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4904 * Sets the icon lookup order used by elm_icon_standard_set().
4906 * @param obj The icon object
4907 * @param order The icon lookup order (can be one of
4908 * ELM_ICON_LOOKUP_FDO_THEME, ELM_ICON_LOOKUP_THEME_FDO, ELM_ICON_LOOKUP_FDO
4909 * or ELM_ICON_LOOKUP_THEME)
4911 * @see elm_icon_order_lookup_get()
4912 * @see Elm_Icon_Lookup_Order
4916 EAPI void elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
4918 * Gets the icon lookup order.
4920 * @param obj The icon object
4921 * @return The icon lookup order
4923 * @see elm_icon_order_lookup_set()
4924 * @see Elm_Icon_Lookup_Order
4928 EAPI Elm_Icon_Lookup_Order elm_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4930 * Get if the icon supports animation or not.
4932 * @param obj The icon object
4933 * @return @c EINA_TRUE if the icon supports animation,
4934 * @c EINA_FALSE otherwise.
4936 * Return if this elm icon's image can be animated. Currently Evas only
4937 * supports gif animation. If the return value is EINA_FALSE, other
4938 * elm_icon_animated_XXX APIs won't work.
4941 EAPI Eina_Bool elm_icon_anim_available_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4943 * Set animation mode of the icon.
4945 * @param obj The icon object
4946 * @param anim @c EINA_TRUE if the object do animation job,
4947 * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
4949 * Since the default animation mode is set to EINA_FALSE,
4950 * the icon is shown without animation.
4951 * This might be desirable when the application developer wants to show
4952 * a snapshot of the animated icon.
4953 * Set it to EINA_TRUE when the icon needs to be animated.
4956 EAPI void elm_icon_anim_set(Evas_Object *obj, Eina_Bool anim) EINA_ARG_NONNULL(1);
4958 * Get animation mode of the icon.
4960 * @param obj The icon object
4961 * @return The animation mode of the icon object
4962 * @see elm_icon_animated_set
4965 EAPI Eina_Bool elm_icon_anim_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
4967 * Set animation play mode of the icon.
4969 * @param obj The icon object
4970 * @param play @c EINA_TRUE the object play animation images,
4971 * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
4973 * To play elm icon's animation, set play to EINA_TURE.
4974 * For example, you make gif player using this set/get API and click event.
4976 * 1. Click event occurs
4977 * 2. Check play flag using elm_icon_animaged_play_get
4978 * 3. If elm icon was playing, set play to EINA_FALSE.
4979 * Then animation will be stopped and vice versa
4982 EAPI void elm_icon_anim_play_set(Evas_Object *obj, Eina_Bool play) EINA_ARG_NONNULL(1);
4984 * Get animation play mode of the icon.
4986 * @param obj The icon object
4987 * @return The play mode of the icon object
4989 * @see elm_icon_animated_play_get
4992 EAPI Eina_Bool elm_icon_anim_play_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5004 * @enum _Elm_Image_Orient
5005 * @typedef Elm_Image_Orient
5007 * Possible orientation options for elm_image_orient_set().
5009 * @image html elm_image_orient_set.png
5010 * @image latex elm_image_orient_set.eps width=\textwidth
5014 typedef enum _Elm_Image_Orient
5016 ELM_IMAGE_ORIENT_NONE, /**< no orientation change */
5017 ELM_IMAGE_ROTATE_90_CW, /**< rotate 90 degrees clockwise */
5018 ELM_IMAGE_ROTATE_180_CW, /**< rotate 180 degrees clockwise */
5019 ELM_IMAGE_ROTATE_90_CCW, /**< rotate 90 degrees counter-clockwise (i.e. 270 degrees clockwise) */
5020 ELM_IMAGE_FLIP_HORIZONTAL, /**< flip image horizontally */
5021 ELM_IMAGE_FLIP_VERTICAL, /**< flip image vertically */
5022 ELM_IMAGE_FLIP_TRANSPOSE, /**< flip the image along the y = (side - x) line*/
5023 ELM_IMAGE_FLIP_TRANSVERSE /**< flip the image along the y = x line */
5027 * Add a new image to the parent.
5029 * @param parent The parent object
5030 * @return The new object or NULL if it cannot be created
5032 * @see elm_image_file_set()
5036 EAPI Evas_Object *elm_image_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5038 * Set the file that will be used as image.
5040 * @param obj The image object
5041 * @param file The path to file that will be used as image
5042 * @param group The group that the image belongs in edje file (if it's an
5045 * @return (@c EINA_TRUE = success, @c EINA_FALSE = error)
5047 * @see elm_image_file_get()
5051 EAPI Eina_Bool elm_image_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1, 2);
5053 * Get the file that will be used as image.
5055 * @param obj The image object
5056 * @param file The path to file
5057 * @param group The group that the image belongs in edje file
5059 * @see elm_image_file_set()
5063 EAPI void elm_image_file_get(const Evas_Object *obj, const char **file, const char **group) EINA_ARG_NONNULL(1);
5065 * Set the smooth effect for an image.
5067 * @param obj The image object
5068 * @param smooth @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE
5069 * otherwise. Default is @c EINA_TRUE.
5071 * Set the scaling algorithm to be used when scaling the image. Smooth
5072 * scaling provides a better resulting image, but is slower.
5074 * The smooth scaling should be disabled when making animations that change
5075 * the image size, since it will be faster. Animations that don't require
5076 * resizing of the image can keep the smooth scaling enabled (even if the
5077 * image is already scaled, since the scaled image will be cached).
5079 * @see elm_image_smooth_get()
5083 EAPI void elm_image_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
5085 * Get the smooth effect for an image.
5087 * @param obj The image object
5088 * @return @c EINA_TRUE if smooth scaling is enabled, @c EINA_FALSE otherwise.
5090 * @see elm_image_smooth_get()
5094 EAPI Eina_Bool elm_image_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5097 * Gets the current size of the image.
5099 * @param obj The image object.
5100 * @param w Pointer to store width, or NULL.
5101 * @param h Pointer to store height, or NULL.
5103 * This is the real size of the image, not the size of the object.
5105 * On error, neither w or h will be written.
5109 EAPI void elm_image_object_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
5111 * Disable scaling of this object.
5113 * @param obj The image object.
5114 * @param no_scale @c EINA_TRUE if the object is not scalable, @c EINA_FALSE
5115 * otherwise. Default is @c EINA_FALSE.
5117 * This function disables scaling of the elm_image widget through the
5118 * function elm_object_scale_set(). However, this does not affect the widget
5119 * size/resize in any way. For that effect, take a look at
5120 * elm_image_scale_set().
5122 * @see elm_image_no_scale_get()
5123 * @see elm_image_scale_set()
5124 * @see elm_object_scale_set()
5128 EAPI void elm_image_no_scale_set(Evas_Object *obj, Eina_Bool no_scale) EINA_ARG_NONNULL(1);
5130 * Get whether scaling is disabled on the object.
5132 * @param obj The image object
5133 * @return @c EINA_TRUE if scaling is disabled, @c EINA_FALSE otherwise
5135 * @see elm_image_no_scale_set()
5139 EAPI Eina_Bool elm_image_no_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5141 * Set if the object is (up/down) resizable.
5143 * @param obj The image object
5144 * @param scale_up A bool to set if the object is resizable up. Default is
5146 * @param scale_down A bool to set if the object is resizable down. Default
5149 * This function limits the image resize ability. If @p scale_up is set to
5150 * @c EINA_FALSE, the object can't have its height or width resized to a value
5151 * higher than the original image size. Same is valid for @p scale_down.
5153 * @see elm_image_scale_get()
5157 EAPI void elm_image_scale_set(Evas_Object *obj, Eina_Bool scale_up, Eina_Bool scale_down) EINA_ARG_NONNULL(1);
5159 * Get if the object is (up/down) resizable.
5161 * @param obj The image object
5162 * @param scale_up A bool to set if the object is resizable up
5163 * @param scale_down A bool to set if the object is resizable down
5165 * @see elm_image_scale_set()
5169 EAPI void elm_image_scale_get(const Evas_Object *obj, Eina_Bool *scale_up, Eina_Bool *scale_down) EINA_ARG_NONNULL(1);
5171 * Set if the image fills the entire object area, when keeping the aspect ratio.
5173 * @param obj The image object
5174 * @param fill_outside @c EINA_TRUE if the object is filled outside,
5175 * @c EINA_FALSE otherwise. Default is @c EINA_FALSE.
5177 * When the image should keep its aspect ratio even if resized to another
5178 * aspect ratio, there are two possibilities to resize it: keep the entire
5179 * image inside the limits of height and width of the object (@p fill_outside
5180 * is @c EINA_FALSE) or let the extra width or height go outside of the object,
5181 * and the image will fill the entire object (@p fill_outside is @c EINA_TRUE).
5183 * @note This option will have no effect if
5184 * elm_image_aspect_ratio_retained_set() is set to @c EINA_FALSE.
5186 * @see elm_image_fill_outside_get()
5187 * @see elm_image_aspect_ratio_retained_set()
5191 EAPI void elm_image_fill_outside_set(Evas_Object *obj, Eina_Bool fill_outside) EINA_ARG_NONNULL(1);
5193 * Get if the object is filled outside
5195 * @param obj The image object
5196 * @return @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise.
5198 * @see elm_image_fill_outside_set()
5202 EAPI Eina_Bool elm_image_fill_outside_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5204 * Set the prescale size for the image
5206 * @param obj The image object
5207 * @param size The prescale size. This value is used for both width and
5210 * This function sets a new size for pixmap representation of the given
5211 * image. It allows the image to be loaded already in the specified size,
5212 * reducing the memory usage and load time when loading a big image with load
5213 * size set to a smaller size.
5215 * It's equivalent to the elm_bg_load_size_set() function for bg.
5217 * @note this is just a hint, the real size of the pixmap may differ
5218 * depending on the type of image being loaded, being bigger than requested.
5220 * @see elm_image_prescale_get()
5221 * @see elm_bg_load_size_set()
5225 EAPI void elm_image_prescale_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
5227 * Get the prescale size for the image
5229 * @param obj The image object
5230 * @return The prescale size
5232 * @see elm_image_prescale_set()
5236 EAPI int elm_image_prescale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5238 * Set the image orientation.
5240 * @param obj The image object
5241 * @param orient The image orientation @ref Elm_Image_Orient
5242 * Default is #ELM_IMAGE_ORIENT_NONE.
5244 * This function allows to rotate or flip the given image.
5246 * @see elm_image_orient_get()
5247 * @see @ref Elm_Image_Orient
5251 EAPI void elm_image_orient_set(Evas_Object *obj, Elm_Image_Orient orient) EINA_ARG_NONNULL(1);
5253 * Get the image orientation.
5255 * @param obj The image object
5256 * @return The image orientation @ref Elm_Image_Orient
5258 * @see elm_image_orient_set()
5259 * @see @ref Elm_Image_Orient
5263 EAPI Elm_Image_Orient elm_image_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5265 * Make the image 'editable'.
5267 * @param obj Image object.
5268 * @param set Turn on or off editability. Default is @c EINA_FALSE.
5270 * This means the image is a valid drag target for drag and drop, and can be
5271 * cut or pasted too.
5275 EAPI void elm_image_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
5277 * Check if the image 'editable'.
5279 * @param obj Image object.
5280 * @return Editability.
5282 * A return value of EINA_TRUE means the image is a valid drag target
5283 * for drag and drop, and can be cut or pasted too.
5287 EAPI Eina_Bool elm_image_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5289 * Get the basic Evas_Image object from this object (widget).
5291 * @param obj The image object to get the inlined image from
5292 * @return The inlined image object, or NULL if none exists
5294 * This function allows one to get the underlying @c Evas_Object of type
5295 * Image from this elementary widget. It can be useful to do things like get
5296 * the pixel data, save the image to a file, etc.
5298 * @note Be careful to not manipulate it, as it is under control of
5303 EAPI Evas_Object *elm_image_object_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5305 * Set whether the original aspect ratio of the image should be kept on resize.
5307 * @param obj The image object.
5308 * @param retained @c EINA_TRUE if the image should retain the aspect,
5309 * @c EINA_FALSE otherwise.
5311 * The original aspect ratio (width / height) of the image is usually
5312 * distorted to match the object's size. Enabling this option will retain
5313 * this original aspect, and the way that the image is fit into the object's
5314 * area depends on the option set by elm_image_fill_outside_set().
5316 * @see elm_image_aspect_ratio_retained_get()
5317 * @see elm_image_fill_outside_set()
5321 EAPI void elm_image_aspect_ratio_retained_set(Evas_Object *obj, Eina_Bool retained) EINA_ARG_NONNULL(1);
5323 * Get if the object retains the original aspect ratio.
5325 * @param obj The image object.
5326 * @return @c EINA_TRUE if the object keeps the original aspect, @c EINA_FALSE
5331 EAPI Eina_Bool elm_image_aspect_ratio_retained_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5340 * A simple GLView widget that allows GL rendering.
5342 * Signals that you can add callbacks for are:
5346 typedef void (*Elm_GLView_Func)(Evas_Object *obj);
5348 typedef enum _Elm_GLView_Mode
5350 ELM_GLVIEW_ALPHA = 1,
5351 ELM_GLVIEW_DEPTH = 2,
5352 ELM_GLVIEW_STENCIL = 4
5355 typedef enum _Elm_GLView_Resize_Policy
5357 ELM_GLVIEW_RESIZE_POLICY_RECREATE = 1, /**< Resize the internal surface along with the image */
5358 ELM_GLVIEW_RESIZE_POLICY_SCALE = 2 /**< Only reize the internal image and not the surface */
5359 } Elm_GLView_Resize_Policy;
5361 typedef enum _Elm_GLView_Render_Policy
5363 ELM_GLVIEW_RENDER_POLICY_ON_DEMAND = 1, /**< Render only when there is a need for redrawing */
5364 ELM_GLVIEW_RENDER_POLICY_ALWAYS = 2 /**< Render always even when it is not visible */
5365 } Elm_GLView_Render_Policy;
5369 * Add a new glview to the parent
5371 * @param parent The parent object
5372 * @return The new object or NULL if it cannot be created
5376 EAPI Evas_Object *elm_glview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5379 * Sets the size of the glview
5381 * @param obj The glview object
5382 * @param width width of the glview object
5383 * @param height height of the glview object
5387 EAPI void elm_glview_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
5390 * Gets the size of the glview.
5392 * @param obj The glview object
5393 * @param width width of the glview object
5394 * @param height height of the glview object
5396 * Note that this function returns the actual image size of the
5397 * glview. This means that when the scale policy is set to
5398 * ELM_GLVIEW_RESIZE_POLICY_SCALE, it'll return the non-scaled
5403 EAPI void elm_glview_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
5406 * Gets the gl api struct for gl rendering
5408 * @param obj The glview object
5409 * @return The api object or NULL if it cannot be created
5413 EAPI Evas_GL_API *elm_glview_gl_api_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5416 * Set the mode of the GLView. Supports Three simple modes.
5418 * @param obj The glview object
5419 * @param mode The mode Options OR'ed enabling Alpha, Depth, Stencil.
5420 * @return True if set properly.
5424 EAPI Eina_Bool elm_glview_mode_set(Evas_Object *obj, Elm_GLView_Mode mode) EINA_ARG_NONNULL(1);
5427 * Set the resize policy for the glview object.
5429 * @param obj The glview object.
5430 * @param policy The scaling policy.
5432 * By default, the resize policy is set to
5433 * ELM_GLVIEW_RESIZE_POLICY_RECREATE. When resize is called it
5434 * destroys the previous surface and recreates the newly specified
5435 * size. If the policy is set to ELM_GLVIEW_RESIZE_POLICY_SCALE,
5436 * however, glview only scales the image object and not the underlying
5441 EAPI Eina_Bool elm_glview_resize_policy_set(Evas_Object *obj, Elm_GLView_Resize_Policy policy) EINA_ARG_NONNULL(1);
5444 * Set the render policy for the glview object.
5446 * @param obj The glview object.
5447 * @param policy The render policy.
5449 * By default, the render policy is set to
5450 * ELM_GLVIEW_RENDER_POLICY_ON_DEMAND. This policy is set such
5451 * that during the render loop, glview is only redrawn if it needs
5452 * to be redrawn. (i.e. When it is visible) If the policy is set to
5453 * ELM_GLVIEWW_RENDER_POLICY_ALWAYS, it redraws regardless of
5454 * whether it is visible/need redrawing or not.
5458 EAPI Eina_Bool elm_glview_render_policy_set(Evas_Object *obj, Elm_GLView_Render_Policy policy) EINA_ARG_NONNULL(1);
5461 * Set the init function that runs once in the main loop.
5463 * @param obj The glview object.
5464 * @param func The init function to be registered.
5466 * The registered init function gets called once during the render loop.
5470 EAPI void elm_glview_init_func_set(Evas_Object *obj, Elm_GLView_Func func) EINA_ARG_NONNULL(1);
5473 * Set the render function that runs in the main loop.
5475 * @param obj The glview object.
5476 * @param func The delete function to be registered.
5478 * The registered del function gets called when GLView object is deleted.
5482 EAPI void elm_glview_del_func_set(Evas_Object *obj, Elm_GLView_Func func) EINA_ARG_NONNULL(1);
5485 * Set the resize function that gets called when resize happens.
5487 * @param obj The glview object.
5488 * @param func The resize function to be registered.
5492 EAPI void elm_glview_resize_func_set(Evas_Object *obj, Elm_GLView_Func func) EINA_ARG_NONNULL(1);
5495 * Set the render function that runs in the main loop.
5497 * @param obj The glview object.
5498 * @param func The render function to be registered.
5502 EAPI void elm_glview_render_func_set(Evas_Object *obj, Elm_GLView_Func func) EINA_ARG_NONNULL(1);
5505 * Notifies that there has been changes in the GLView.
5507 * @param obj The glview object.
5511 EAPI void elm_glview_changed_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
5521 * A box arranges objects in a linear fashion, governed by a layout function
5522 * that defines the details of this arrangement.
5524 * By default, the box will use an internal function to set the layout to
5525 * a single row, either vertical or horizontal. This layout is affected
5526 * by a number of parameters, such as the homogeneous flag set by
5527 * elm_box_homogeneous_set(), the values given by elm_box_padding_set() and
5528 * elm_box_align_set() and the hints set to each object in the box.
5530 * For this default layout, it's possible to change the orientation with
5531 * elm_box_horizontal_set(). The box will start in the vertical orientation,
5532 * placing its elements ordered from top to bottom. When horizontal is set,
5533 * the order will go from left to right. If the box is set to be
5534 * homogeneous, every object in it will be assigned the same space, that
5535 * of the largest object. Padding can be used to set some spacing between
5536 * the cell given to each object. The alignment of the box, set with
5537 * elm_box_align_set(), determines how the bounding box of all the elements
5538 * will be placed within the space given to the box widget itself.
5540 * The size hints of each object also affect how they are placed and sized
5541 * within the box. evas_object_size_hint_min_set() will give the minimum
5542 * size the object can have, and the box will use it as the basis for all
5543 * latter calculations. Elementary widgets set their own minimum size as
5544 * needed, so there's rarely any need to use it manually.
5546 * evas_object_size_hint_weight_set(), when not in homogeneous mode, is
5547 * used to tell whether the object will be allocated the minimum size it
5548 * needs or if the space given to it should be expanded. It's important
5549 * to realize that expanding the size given to the object is not the same
5550 * thing as resizing the object. It could very well end being a small
5551 * widget floating in a much larger empty space. If not set, the weight
5552 * for objects will normally be 0.0 for both axis, meaning the widget will
5553 * not be expanded. To take as much space possible, set the weight to
5554 * EVAS_HINT_EXPAND (defined to 1.0) for the desired axis to expand.
5556 * Besides how much space each object is allocated, it's possible to control
5557 * how the widget will be placed within that space using
5558 * evas_object_size_hint_align_set(). By default, this value will be 0.5
5559 * for both axis, meaning the object will be centered, but any value from
5560 * 0.0 (left or top, for the @c x and @c y axis, respectively) to 1.0
5561 * (right or bottom) can be used. The special value EVAS_HINT_FILL, which
5562 * is -1.0, means the object will be resized to fill the entire space it
5565 * In addition, customized functions to define the layout can be set, which
5566 * allow the application developer to organize the objects within the box
5567 * in any number of ways.
5569 * The special elm_box_layout_transition() function can be used
5570 * to switch from one layout to another, animating the motion of the
5571 * children of the box.
5573 * @note Objects should not be added to box objects using _add() calls.
5575 * Some examples on how to use boxes follow:
5576 * @li @ref box_example_01
5577 * @li @ref box_example_02
5582 * @typedef Elm_Box_Transition
5584 * Opaque handler containing the parameters to perform an animated
5585 * transition of the layout the box uses.
5587 * @see elm_box_transition_new()
5588 * @see elm_box_layout_set()
5589 * @see elm_box_layout_transition()
5591 typedef struct _Elm_Box_Transition Elm_Box_Transition;
5594 * Add a new box to the parent
5596 * By default, the box will be in vertical mode and non-homogeneous.
5598 * @param parent The parent object
5599 * @return The new object or NULL if it cannot be created
5601 EAPI Evas_Object *elm_box_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5603 * Set the horizontal orientation
5605 * By default, box object arranges their contents vertically from top to
5607 * By calling this function with @p horizontal as EINA_TRUE, the box will
5608 * become horizontal, arranging contents from left to right.
5610 * @note This flag is ignored if a custom layout function is set.
5612 * @param obj The box object
5613 * @param horizontal The horizontal flag (EINA_TRUE = horizontal,
5614 * EINA_FALSE = vertical)
5616 EAPI void elm_box_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
5618 * Get the horizontal orientation
5620 * @param obj The box object
5621 * @return EINA_TRUE if the box is set to horizintal mode, EINA_FALSE otherwise
5623 EAPI Eina_Bool elm_box_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5625 * Set the box to arrange its children homogeneously
5627 * If enabled, homogeneous layout makes all items the same size, according
5628 * to the size of the largest of its children.
5630 * @note This flag is ignored if a custom layout function is set.
5632 * @param obj The box object
5633 * @param homogeneous The homogeneous flag
5635 EAPI void elm_box_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
5637 * Get whether the box is using homogeneous mode or not
5639 * @param obj The box object
5640 * @return EINA_TRUE if it's homogeneous, EINA_FALSE otherwise
5642 EAPI Eina_Bool elm_box_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5643 EINA_DEPRECATED EAPI void elm_box_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
5644 EINA_DEPRECATED EAPI Eina_Bool elm_box_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5646 * Add an object to the beginning of the pack list
5648 * Pack @p subobj into the box @p obj, placing it first in the list of
5649 * children objects. The actual position the object will get on screen
5650 * depends on the layout used. If no custom layout is set, it will be at
5651 * the top or left, depending if the box is vertical or horizontal,
5654 * @param obj The box object
5655 * @param subobj The object to add to the box
5657 * @see elm_box_pack_end()
5658 * @see elm_box_pack_before()
5659 * @see elm_box_pack_after()
5660 * @see elm_box_unpack()
5661 * @see elm_box_unpack_all()
5662 * @see elm_box_clear()
5664 EAPI void elm_box_pack_start(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5666 * Add an object at the end of the pack list
5668 * Pack @p subobj into the box @p obj, placing it last in the list of
5669 * children objects. The actual position the object will get on screen
5670 * depends on the layout used. If no custom layout is set, it will be at
5671 * the bottom or right, depending if the box is vertical or horizontal,
5674 * @param obj The box object
5675 * @param subobj The object to add to the box
5677 * @see elm_box_pack_start()
5678 * @see elm_box_pack_before()
5679 * @see elm_box_pack_after()
5680 * @see elm_box_unpack()
5681 * @see elm_box_unpack_all()
5682 * @see elm_box_clear()
5684 EAPI void elm_box_pack_end(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5686 * Adds an object to the box before the indicated object
5688 * This will add the @p subobj to the box indicated before the object
5689 * indicated with @p before. If @p before is not already in the box, results
5690 * are undefined. Before means either to the left of the indicated object or
5691 * above it depending on orientation.
5693 * @param obj The box object
5694 * @param subobj The object to add to the box
5695 * @param before The object before which to add it
5697 * @see elm_box_pack_start()
5698 * @see elm_box_pack_end()
5699 * @see elm_box_pack_after()
5700 * @see elm_box_unpack()
5701 * @see elm_box_unpack_all()
5702 * @see elm_box_clear()
5704 EAPI void elm_box_pack_before(Evas_Object *obj, Evas_Object *subobj, Evas_Object *before) EINA_ARG_NONNULL(1);
5706 * Adds an object to the box after the indicated object
5708 * This will add the @p subobj to the box indicated after the object
5709 * indicated with @p after. If @p after is not already in the box, results
5710 * are undefined. After means either to the right of the indicated object or
5711 * below it depending on orientation.
5713 * @param obj The box object
5714 * @param subobj The object to add to the box
5715 * @param after The object after which to add it
5717 * @see elm_box_pack_start()
5718 * @see elm_box_pack_end()
5719 * @see elm_box_pack_before()
5720 * @see elm_box_unpack()
5721 * @see elm_box_unpack_all()
5722 * @see elm_box_clear()
5724 EAPI void elm_box_pack_after(Evas_Object *obj, Evas_Object *subobj, Evas_Object *after) EINA_ARG_NONNULL(1);
5726 * Clear the box of all children
5728 * Remove all the elements contained by the box, deleting the respective
5731 * @param obj The box object
5733 * @see elm_box_unpack()
5734 * @see elm_box_unpack_all()
5736 EAPI void elm_box_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
5740 * Remove the object given by @p subobj from the box @p obj without
5743 * @param obj The box object
5745 * @see elm_box_unpack_all()
5746 * @see elm_box_clear()
5748 EAPI void elm_box_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
5750 * Remove all items from the box, without deleting them
5752 * Clear the box from all children, but don't delete the respective objects.
5753 * If no other references of the box children exist, the objects will never
5754 * be deleted, and thus the application will leak the memory. Make sure
5755 * when using this function that you hold a reference to all the objects
5756 * in the box @p obj.
5758 * @param obj The box object
5760 * @see elm_box_clear()
5761 * @see elm_box_unpack()
5763 EAPI void elm_box_unpack_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
5765 * Retrieve a list of the objects packed into the box
5767 * Returns a new @c Eina_List with a pointer to @c Evas_Object in its nodes.
5768 * The order of the list corresponds to the packing order the box uses.
5770 * You must free this list with eina_list_free() once you are done with it.
5772 * @param obj The box object
5774 EAPI const Eina_List *elm_box_children_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
5776 * Set the space (padding) between the box's elements.
5778 * Extra space in pixels that will be added between a box child and its
5779 * neighbors after its containing cell has been calculated. This padding
5780 * is set for all elements in the box, besides any possible padding that
5781 * individual elements may have through their size hints.
5783 * @param obj The box object
5784 * @param horizontal The horizontal space between elements
5785 * @param vertical The vertical space between elements
5787 EAPI void elm_box_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
5789 * Get the space (padding) between the box's elements.
5791 * @param obj The box object
5792 * @param horizontal The horizontal space between elements
5793 * @param vertical The vertical space between elements
5795 * @see elm_box_padding_set()
5797 EAPI void elm_box_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
5799 * Set the alignment of the whole bouding box of contents.
5801 * Sets how the bounding box containing all the elements of the box, after
5802 * their sizes and position has been calculated, will be aligned within
5803 * the space given for the whole box widget.
5805 * @param obj The box object
5806 * @param horizontal The horizontal alignment of elements
5807 * @param vertical The vertical alignment of elements
5809 EAPI void elm_box_align_set(Evas_Object *obj, double horizontal, double vertical) EINA_ARG_NONNULL(1);
5811 * Get the alignment of the whole bouding box of contents.
5813 * @param obj The box object
5814 * @param horizontal The horizontal alignment of elements
5815 * @param vertical The vertical alignment of elements
5817 * @see elm_box_align_set()
5819 EAPI void elm_box_align_get(const Evas_Object *obj, double *horizontal, double *vertical) EINA_ARG_NONNULL(1);
5822 * Set the layout defining function to be used by the box
5824 * Whenever anything changes that requires the box in @p obj to recalculate
5825 * the size and position of its elements, the function @p cb will be called
5826 * to determine what the layout of the children will be.
5828 * Once a custom function is set, everything about the children layout
5829 * is defined by it. The flags set by elm_box_horizontal_set() and
5830 * elm_box_homogeneous_set() no longer have any meaning, and the values
5831 * given by elm_box_padding_set() and elm_box_align_set() are up to this
5832 * layout function to decide if they are used and how. These last two
5833 * will be found in the @c priv parameter, of type @c Evas_Object_Box_Data,
5834 * passed to @p cb. The @c Evas_Object the function receives is not the
5835 * Elementary widget, but the internal Evas Box it uses, so none of the
5836 * functions described here can be used on it.
5838 * Any of the layout functions in @c Evas can be used here, as well as the
5839 * special elm_box_layout_transition().
5841 * The final @p data argument received by @p cb is the same @p data passed
5842 * here, and the @p free_data function will be called to free it
5843 * whenever the box is destroyed or another layout function is set.
5845 * Setting @p cb to NULL will revert back to the default layout function.
5847 * @param obj The box object
5848 * @param cb The callback function used for layout
5849 * @param data Data that will be passed to layout function
5850 * @param free_data Function called to free @p data
5852 * @see elm_box_layout_transition()
5854 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);
5856 * Special layout function that animates the transition from one layout to another
5858 * Normally, when switching the layout function for a box, this will be
5859 * reflected immediately on screen on the next render, but it's also
5860 * possible to do this through an animated transition.
5862 * This is done by creating an ::Elm_Box_Transition and setting the box
5863 * layout to this function.
5867 * Elm_Box_Transition *t = elm_box_transition_new(1.0,
5868 * evas_object_box_layout_vertical, // start
5869 * NULL, // data for initial layout
5870 * NULL, // free function for initial data
5871 * evas_object_box_layout_horizontal, // end
5872 * NULL, // data for final layout
5873 * NULL, // free function for final data
5874 * anim_end, // will be called when animation ends
5875 * NULL); // data for anim_end function\
5876 * elm_box_layout_set(box, elm_box_layout_transition, t,
5877 * elm_box_transition_free);
5880 * @note This function can only be used with elm_box_layout_set(). Calling
5881 * it directly will not have the expected results.
5883 * @see elm_box_transition_new
5884 * @see elm_box_transition_free
5885 * @see elm_box_layout_set
5887 EAPI void elm_box_layout_transition(Evas_Object *obj, Evas_Object_Box_Data *priv, void *data);
5889 * Create a new ::Elm_Box_Transition to animate the switch of layouts
5891 * If you want to animate the change from one layout to another, you need
5892 * to set the layout function of the box to elm_box_layout_transition(),
5893 * passing as user data to it an instance of ::Elm_Box_Transition with the
5894 * necessary information to perform this animation. The free function to
5895 * set for the layout is elm_box_transition_free().
5897 * The parameters to create an ::Elm_Box_Transition sum up to how long
5898 * will it be, in seconds, a layout function to describe the initial point,
5899 * another for the final position of the children and one function to be
5900 * called when the whole animation ends. This last function is useful to
5901 * set the definitive layout for the box, usually the same as the end
5902 * layout for the animation, but could be used to start another transition.
5904 * @param start_layout The layout function that will be used to start the animation
5905 * @param start_layout_data The data to be passed the @p start_layout function
5906 * @param start_layout_free_data Function to free @p start_layout_data
5907 * @param end_layout The layout function that will be used to end the animation
5908 * @param end_layout_free_data The data to be passed the @p end_layout function
5909 * @param end_layout_free_data Function to free @p end_layout_data
5910 * @param transition_end_cb Callback function called when animation ends
5911 * @param transition_end_data Data to be passed to @p transition_end_cb
5912 * @return An instance of ::Elm_Box_Transition
5914 * @see elm_box_transition_new
5915 * @see elm_box_layout_transition
5917 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);
5919 * Free a Elm_Box_Transition instance created with elm_box_transition_new().
5921 * This function is mostly useful as the @c free_data parameter in
5922 * elm_box_layout_set() when elm_box_layout_transition().
5924 * @param data The Elm_Box_Transition instance to be freed.
5926 * @see elm_box_transition_new
5927 * @see elm_box_layout_transition
5929 EAPI void elm_box_transition_free(void *data);
5936 * @defgroup Button Button
5938 * @image html widget/button/preview-00.png
5939 * @image html widget/button/preview-01.png
5940 * @image html widget/button/preview-02.png
5942 * This is a push-button. Press it and run some function. It can contain
5943 * a simple label and icon object and it also has an autorepeat feature.
5945 * This widgets emits the following signals:
5946 * @li "clicked": the user clicked the button (press/release).
5947 * @li "repeated": the user pressed the button without releasing it.
5948 * @li "pressed": button was pressed.
5949 * @li "unpressed": button was released after being pressed.
5950 * In all three cases, the @c event parameter of the callback will be
5953 * Also, defined in the default theme, the button has the following styles
5955 * @li default: a normal button.
5956 * @li anchor: Like default, but the button fades away when the mouse is not
5957 * over it, leaving only the text or icon.
5958 * @li hoversel_vertical: Internally used by @ref Hoversel to give a
5959 * continuous look across its options.
5960 * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
5962 * Follow through a complete example @ref button_example_01 "here".
5968 UIControlStateDefault,
5969 UIControlStateHighlighted,
5970 UIControlStateDisabled,
5971 UIControlStateFocused,
5972 UIControlStateReserved
5976 * Add a new button to the parent's canvas
5978 * @param parent The parent object
5979 * @return The new object or NULL if it cannot be created
5981 EAPI Evas_Object *elm_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
5983 * Set the label used in the button
5985 * The passed @p label can be NULL to clean any existing text in it and
5986 * leave the button as an icon only object.
5988 * @param obj The button object
5989 * @param label The text will be written on the button
5990 * @deprecated use elm_object_text_set() instead.
5992 EINA_DEPRECATED EAPI void elm_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
5994 * Get the label set for the button
5996 * The string returned is an internal pointer and should not be freed or
5997 * altered. It will also become invalid when the button is destroyed.
5998 * The string returned, if not NULL, is a stringshare, so if you need to
5999 * keep it around even after the button is destroyed, you can use
6000 * eina_stringshare_ref().
6002 * @param obj The button object
6003 * @return The text set to the label, or NULL if nothing is set
6004 * @deprecated use elm_object_text_set() instead.
6006 EINA_DEPRECATED EAPI const char *elm_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6008 * Set the label for each state of button
6010 * The passed @p label can be NULL to clean any existing text in it and
6011 * leave the button as an icon only object for the state.
6013 * @param obj The button object
6014 * @param label The text will be written on the button
6015 * @param state The state of button
6019 EINA_DEPRECATED EAPI void elm_button_label_set_for_state(Evas_Object *obj, const char *label, UIControlState state) EINA_ARG_NONNULL(1);
6021 * Get the label of button for each state
6023 * The string returned is an internal pointer and should not be freed or
6024 * altered. It will also become invalid when the button is destroyed.
6025 * The string returned, if not NULL, is a stringshare, so if you need to
6026 * keep it around even after the button is destroyed, you can use
6027 * eina_stringshare_ref().
6029 * @param obj The button object
6030 * @param state The state of button
6031 * @return The title of button for state
6035 EINA_DEPRECATED EAPI const char *elm_button_label_get_for_state(const Evas_Object *obj, UIControlState state) EINA_ARG_NONNULL(1);
6037 * Set the icon used for the button
6039 * Setting a new icon will delete any other that was previously set, making
6040 * any reference to them invalid. If you need to maintain the previous
6041 * object alive, unset it first with elm_button_icon_unset().
6043 * @param obj The button object
6044 * @param icon The icon object for the button
6046 EAPI void elm_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6048 * Get the icon used for the button
6050 * Return the icon object which is set for this widget. If the button is
6051 * destroyed or another icon is set, the returned object will be deleted
6052 * and any reference to it will be invalid.
6054 * @param obj The button object
6055 * @return The icon object that is being used
6057 * @see elm_button_icon_unset()
6059 EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6061 * Remove the icon set without deleting it and return the object
6063 * This function drops the reference the button holds of the icon object
6064 * and returns this last object. It is used in case you want to remove any
6065 * icon, or set another one, without deleting the actual object. The button
6066 * will be left without an icon set.
6068 * @param obj The button object
6069 * @return The icon object that was being used
6071 EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6073 * Turn on/off the autorepeat event generated when the button is kept pressed
6075 * When off, no autorepeat is performed and buttons emit a normal @c clicked
6076 * signal when they are clicked.
6078 * When on, keeping a button pressed will continuously emit a @c repeated
6079 * signal until the button is released. The time it takes until it starts
6080 * emitting the signal is given by
6081 * elm_button_autorepeat_initial_timeout_set(), and the time between each
6082 * new emission by elm_button_autorepeat_gap_timeout_set().
6084 * @param obj The button object
6085 * @param on A bool to turn on/off the event
6087 EAPI void elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on) EINA_ARG_NONNULL(1);
6089 * Get whether the autorepeat feature is enabled
6091 * @param obj The button object
6092 * @return EINA_TRUE if autorepeat is on, EINA_FALSE otherwise
6094 * @see elm_button_autorepeat_set()
6096 EAPI Eina_Bool elm_button_autorepeat_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6098 * Set the initial timeout before the autorepeat event is generated
6100 * Sets the timeout, in seconds, since the button is pressed until the
6101 * first @c repeated signal is emitted. If @p t is 0.0 or less, there
6102 * won't be any delay and the even will be fired the moment the button is
6105 * @param obj The button object
6106 * @param t Timeout in seconds
6108 * @see elm_button_autorepeat_set()
6109 * @see elm_button_autorepeat_gap_timeout_set()
6111 EAPI void elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6113 * Get the initial timeout before the autorepeat event is generated
6115 * @param obj The button object
6116 * @return Timeout in seconds
6118 * @see elm_button_autorepeat_initial_timeout_set()
6120 EAPI double elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6122 * Set the interval between each generated autorepeat event
6124 * After the first @c repeated event is fired, all subsequent ones will
6125 * follow after a delay of @p t seconds for each.
6127 * @param obj The button object
6128 * @param t Interval in seconds
6130 * @see elm_button_autorepeat_initial_timeout_set()
6132 EAPI void elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
6134 * Get the interval between each generated autorepeat event
6136 * @param obj The button object
6137 * @return Interval in seconds
6139 EAPI double elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6145 * @defgroup File_Selector_Button File Selector Button
6147 * @image html img/widget/fileselector_button/preview-00.png
6148 * @image latex img/widget/fileselector_button/preview-00.eps
6149 * @image html img/widget/fileselector_button/preview-01.png
6150 * @image latex img/widget/fileselector_button/preview-01.eps
6151 * @image html img/widget/fileselector_button/preview-02.png
6152 * @image latex img/widget/fileselector_button/preview-02.eps
6154 * This is a button that, when clicked, creates an Elementary
6155 * window (or inner window) <b> with a @ref Fileselector "file
6156 * selector widget" within</b>. When a file is chosen, the (inner)
6157 * window is closed and the button emits a signal having the
6158 * selected file as it's @c event_info.
6160 * This widget encapsulates operations on its internal file
6161 * selector on its own API. There is less control over its file
6162 * selector than that one would have instatiating one directly.
6164 * The following styles are available for this button:
6167 * @li @c "hoversel_vertical"
6168 * @li @c "hoversel_vertical_entry"
6170 * Smart callbacks one can register to:
6171 * - @c "file,chosen" - the user has selected a path, whose string
6172 * pointer comes as the @c event_info data (a stringshared
6175 * Here is an example on its usage:
6176 * @li @ref fileselector_button_example
6178 * @see @ref File_Selector_Entry for a similar widget.
6183 * Add a new file selector button widget to the given parent
6184 * Elementary (container) object
6186 * @param parent The parent object
6187 * @return a new file selector button widget handle or @c NULL, on
6190 EAPI Evas_Object *elm_fileselector_button_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6193 * Set the label for a given file selector button widget
6195 * @param obj The file selector button widget
6196 * @param label The text label to be displayed on @p obj
6198 * @deprecated use elm_object_text_set() instead.
6200 EINA_DEPRECATED EAPI void elm_fileselector_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6203 * Get the label set for a given file selector button widget
6205 * @param obj The file selector button widget
6206 * @return The button label
6208 * @deprecated use elm_object_text_set() instead.
6210 EINA_DEPRECATED EAPI const char *elm_fileselector_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6213 * Set the icon on a given file selector button widget
6215 * @param obj The file selector button widget
6216 * @param icon The icon object for the button
6218 * Once the icon object is set, a previously set one will be
6219 * deleted. If you want to keep the latter, use the
6220 * elm_fileselector_button_icon_unset() function.
6222 * @see elm_fileselector_button_icon_get()
6224 EAPI void elm_fileselector_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6227 * Get the icon set for a given file selector button widget
6229 * @param obj The file selector button widget
6230 * @return The icon object currently set on @p obj or @c NULL, if
6233 * @see elm_fileselector_button_icon_set()
6235 EAPI Evas_Object *elm_fileselector_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6238 * Unset the icon used in a given file selector button widget
6240 * @param obj The file selector button widget
6241 * @return The icon object that was being used on @p obj or @c
6244 * Unparent and return the icon object which was set for this
6247 * @see elm_fileselector_button_icon_set()
6249 EAPI Evas_Object *elm_fileselector_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6252 * Set the title for a given file selector button widget's window
6254 * @param obj The file selector button widget
6255 * @param title The title string
6257 * This will change the window's title, when the file selector pops
6258 * out after a click on the button. Those windows have the default
6259 * (unlocalized) value of @c "Select a file" as titles.
6261 * @note It will only take any effect if the file selector
6262 * button widget is @b not under "inwin mode".
6264 * @see elm_fileselector_button_window_title_get()
6266 EAPI void elm_fileselector_button_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6269 * Get the title set for a given file selector button widget's
6272 * @param obj The file selector button widget
6273 * @return Title of the file selector button's window
6275 * @see elm_fileselector_button_window_title_get() for more details
6277 EAPI const char *elm_fileselector_button_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6280 * Set the size of a given file selector button widget's window,
6281 * holding the file selector itself.
6283 * @param obj The file selector button widget
6284 * @param width The window's width
6285 * @param height The window's height
6287 * @note it will only take any effect if the file selector button
6288 * widget is @b not under "inwin mode". The default size for the
6289 * window (when applicable) is 400x400 pixels.
6291 * @see elm_fileselector_button_window_size_get()
6293 EAPI void elm_fileselector_button_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6296 * Get the size of a given file selector button widget's window,
6297 * holding the file selector itself.
6299 * @param obj The file selector button widget
6300 * @param width Pointer into which to store the width value
6301 * @param height Pointer into which to store the height value
6303 * @note Use @c NULL pointers on the size values you're not
6304 * interested in: they'll be ignored by the function.
6306 * @see elm_fileselector_button_window_size_set(), for more details
6308 EAPI void elm_fileselector_button_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6311 * Set the initial file system path for a given file selector
6314 * @param obj The file selector button widget
6315 * @param path The path string
6317 * It must be a <b>directory</b> path, which will have the contents
6318 * displayed initially in the file selector's view, when invoked
6319 * from @p obj. The default initial path is the @c "HOME"
6320 * environment variable's value.
6322 * @see elm_fileselector_button_path_get()
6324 EAPI void elm_fileselector_button_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6327 * Get the initial file system path set for a given file selector
6330 * @param obj The file selector button widget
6331 * @return path The path string
6333 * @see elm_fileselector_button_path_set() for more details
6335 EAPI const char *elm_fileselector_button_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6338 * Enable/disable a tree view in the given file selector button
6339 * widget's internal file selector
6341 * @param obj The file selector button widget
6342 * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6345 * This has the same effect as elm_fileselector_expandable_set(),
6346 * but now applied to a file selector button's internal file
6349 * @note There's no way to put a file selector button's internal
6350 * file selector in "grid mode", as one may do with "pure" file
6353 * @see elm_fileselector_expandable_get()
6355 EAPI void elm_fileselector_button_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6358 * Get whether tree view is enabled for the given file selector
6359 * button widget's internal file selector
6361 * @param obj The file selector button widget
6362 * @return @c EINA_TRUE if @p obj widget's internal file selector
6363 * is in tree view, @c EINA_FALSE otherwise (and or errors)
6365 * @see elm_fileselector_expandable_set() for more details
6367 EAPI Eina_Bool elm_fileselector_button_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6370 * Set whether a given file selector button widget's internal file
6371 * selector is to display folders only or the directory contents,
6374 * @param obj The file selector button widget
6375 * @param only @c EINA_TRUE to make @p obj widget's internal file
6376 * selector only display directories, @c EINA_FALSE to make files
6377 * to be displayed in it too
6379 * This has the same effect as elm_fileselector_folder_only_set(),
6380 * but now applied to a file selector button's internal file
6383 * @see elm_fileselector_folder_only_get()
6385 EAPI void elm_fileselector_button_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6388 * Get whether a given file selector button widget's internal file
6389 * selector is displaying folders only or the directory contents,
6392 * @param obj The file selector button widget
6393 * @return @c EINA_TRUE if @p obj widget's internal file
6394 * selector is only displaying directories, @c EINA_FALSE if files
6395 * are being displayed in it too (and on errors)
6397 * @see elm_fileselector_button_folder_only_set() for more details
6399 EAPI Eina_Bool elm_fileselector_button_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6402 * Enable/disable the file name entry box where the user can type
6403 * in a name for a file, in a given file selector button widget's
6404 * internal file selector.
6406 * @param obj The file selector button widget
6407 * @param is_save @c EINA_TRUE to make @p obj widget's internal
6408 * file selector a "saving dialog", @c EINA_FALSE otherwise
6410 * This has the same effect as elm_fileselector_is_save_set(),
6411 * but now applied to a file selector button's internal file
6414 * @see elm_fileselector_is_save_get()
6416 EAPI void elm_fileselector_button_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6419 * Get whether the given file selector button widget's internal
6420 * file selector is in "saving dialog" mode
6422 * @param obj The file selector button widget
6423 * @return @c EINA_TRUE, if @p obj widget's internal file selector
6424 * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
6427 * @see elm_fileselector_button_is_save_set() for more details
6429 EAPI Eina_Bool elm_fileselector_button_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6432 * Set whether a given file selector button widget's internal file
6433 * selector will raise an Elementary "inner window", instead of a
6434 * dedicated Elementary window. By default, it won't.
6436 * @param obj The file selector button widget
6437 * @param value @c EINA_TRUE to make it use an inner window, @c
6438 * EINA_TRUE to make it use a dedicated window
6440 * @see elm_win_inwin_add() for more information on inner windows
6441 * @see elm_fileselector_button_inwin_mode_get()
6443 EAPI void elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6446 * Get whether a given file selector button widget's internal file
6447 * selector will raise an Elementary "inner window", instead of a
6448 * dedicated Elementary window.
6450 * @param obj The file selector button widget
6451 * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
6452 * if it will use a dedicated window
6454 * @see elm_fileselector_button_inwin_mode_set() for more details
6456 EAPI Eina_Bool elm_fileselector_button_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6463 * @defgroup File_Selector_Entry File Selector Entry
6465 * @image html img/widget/fileselector_entry/preview-00.png
6466 * @image latex img/widget/fileselector_entry/preview-00.eps
6468 * This is an entry made to be filled with or display a <b>file
6469 * system path string</b>. Besides the entry itself, the widget has
6470 * a @ref File_Selector_Button "file selector button" on its side,
6471 * which will raise an internal @ref Fileselector "file selector widget",
6472 * when clicked, for path selection aided by file system
6475 * This file selector may appear in an Elementary window or in an
6476 * inner window. When a file is chosen from it, the (inner) window
6477 * is closed and the selected file's path string is exposed both as
6478 * an smart event and as the new text on the entry.
6480 * This widget encapsulates operations on its internal file
6481 * selector on its own API. There is less control over its file
6482 * selector than that one would have instatiating one directly.
6484 * Smart callbacks one can register to:
6485 * - @c "changed" - The text within the entry was changed
6486 * - @c "activated" - The entry has had editing finished and
6487 * changes are to be "committed"
6488 * - @c "press" - The entry has been clicked
6489 * - @c "longpressed" - The entry has been clicked (and held) for a
6491 * - @c "clicked" - The entry has been clicked
6492 * - @c "clicked,double" - The entry has been double clicked
6493 * - @c "focused" - The entry has received focus
6494 * - @c "unfocused" - The entry has lost focus
6495 * - @c "selection,paste" - A paste action has occurred on the
6497 * - @c "selection,copy" - A copy action has occurred on the entry
6498 * - @c "selection,cut" - A cut action has occurred on the entry
6499 * - @c "unpressed" - The file selector entry's button was released
6500 * after being pressed.
6501 * - @c "file,chosen" - The user has selected a path via the file
6502 * selector entry's internal file selector, whose string pointer
6503 * comes as the @c event_info data (a stringshared string)
6505 * Here is an example on its usage:
6506 * @li @ref fileselector_entry_example
6508 * @see @ref File_Selector_Button for a similar widget.
6513 * Add a new file selector entry widget to the given parent
6514 * Elementary (container) object
6516 * @param parent The parent object
6517 * @return a new file selector entry widget handle or @c NULL, on
6520 EAPI Evas_Object *elm_fileselector_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6523 * Set the label for a given file selector entry widget's button
6525 * @param obj The file selector entry widget
6526 * @param label The text label to be displayed on @p obj widget's
6529 * @deprecated use elm_object_text_set() instead.
6531 EINA_DEPRECATED EAPI void elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
6534 * Get the label set for a given file selector entry widget's button
6536 * @param obj The file selector entry widget
6537 * @return The widget button's label
6539 * @deprecated use elm_object_text_set() instead.
6541 EINA_DEPRECATED EAPI const char *elm_fileselector_entry_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6544 * Set the icon on a given file selector entry widget's button
6546 * @param obj The file selector entry widget
6547 * @param icon The icon object for the entry's button
6549 * Once the icon object is set, a previously set one will be
6550 * deleted. If you want to keep the latter, use the
6551 * elm_fileselector_entry_button_icon_unset() function.
6553 * @see elm_fileselector_entry_button_icon_get()
6555 EAPI void elm_fileselector_entry_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
6558 * Get the icon set for a given file selector entry widget's button
6560 * @param obj The file selector entry widget
6561 * @return The icon object currently set on @p obj widget's button
6562 * or @c NULL, if none is
6564 * @see elm_fileselector_entry_button_icon_set()
6566 EAPI Evas_Object *elm_fileselector_entry_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6569 * Unset the icon used in a given file selector entry widget's
6572 * @param obj The file selector entry widget
6573 * @return The icon object that was being used on @p obj widget's
6574 * button or @c NULL, on errors
6576 * Unparent and return the icon object which was set for this
6579 * @see elm_fileselector_entry_button_icon_set()
6581 EAPI Evas_Object *elm_fileselector_entry_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6584 * Set the title for a given file selector entry widget's window
6586 * @param obj The file selector entry widget
6587 * @param title The title string
6589 * This will change the window's title, when the file selector pops
6590 * out after a click on the entry's button. Those windows have the
6591 * default (unlocalized) value of @c "Select a file" as titles.
6593 * @note It will only take any effect if the file selector
6594 * entry widget is @b not under "inwin mode".
6596 * @see elm_fileselector_entry_window_title_get()
6598 EAPI void elm_fileselector_entry_window_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
6601 * Get the title set for a given file selector entry widget's
6604 * @param obj The file selector entry widget
6605 * @return Title of the file selector entry's window
6607 * @see elm_fileselector_entry_window_title_get() for more details
6609 EAPI const char *elm_fileselector_entry_window_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6612 * Set the size of a given file selector entry widget's window,
6613 * holding the file selector itself.
6615 * @param obj The file selector entry widget
6616 * @param width The window's width
6617 * @param height The window's height
6619 * @note it will only take any effect if the file selector entry
6620 * widget is @b not under "inwin mode". The default size for the
6621 * window (when applicable) is 400x400 pixels.
6623 * @see elm_fileselector_entry_window_size_get()
6625 EAPI void elm_fileselector_entry_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height) EINA_ARG_NONNULL(1);
6628 * Get the size of a given file selector entry widget's window,
6629 * holding the file selector itself.
6631 * @param obj The file selector entry widget
6632 * @param width Pointer into which to store the width value
6633 * @param height Pointer into which to store the height value
6635 * @note Use @c NULL pointers on the size values you're not
6636 * interested in: they'll be ignored by the function.
6638 * @see elm_fileselector_entry_window_size_set(), for more details
6640 EAPI void elm_fileselector_entry_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height) EINA_ARG_NONNULL(1);
6643 * Set the initial file system path and the entry's path string for
6644 * a given file selector entry widget
6646 * @param obj The file selector entry widget
6647 * @param path The path string
6649 * It must be a <b>directory</b> path, which will have the contents
6650 * displayed initially in the file selector's view, when invoked
6651 * from @p obj. The default initial path is the @c "HOME"
6652 * environment variable's value.
6654 * @see elm_fileselector_entry_path_get()
6656 EAPI void elm_fileselector_entry_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6659 * Get the entry's path string for a given file selector entry
6662 * @param obj The file selector entry widget
6663 * @return path The path string
6665 * @see elm_fileselector_entry_path_set() for more details
6667 EAPI const char *elm_fileselector_entry_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6670 * Enable/disable a tree view in the given file selector entry
6671 * widget's internal file selector
6673 * @param obj The file selector entry widget
6674 * @param expand @c EINA_TRUE to enable tree view, @c EINA_FALSE to
6677 * This has the same effect as elm_fileselector_expandable_set(),
6678 * but now applied to a file selector entry's internal file
6681 * @note There's no way to put a file selector entry's internal
6682 * file selector in "grid mode", as one may do with "pure" file
6685 * @see elm_fileselector_expandable_get()
6687 EAPI void elm_fileselector_entry_expandable_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6690 * Get whether tree view is enabled for the given file selector
6691 * entry widget's internal file selector
6693 * @param obj The file selector entry widget
6694 * @return @c EINA_TRUE if @p obj widget's internal file selector
6695 * is in tree view, @c EINA_FALSE otherwise (and or errors)
6697 * @see elm_fileselector_expandable_set() for more details
6699 EAPI Eina_Bool elm_fileselector_entry_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6702 * Set whether a given file selector entry widget's internal file
6703 * selector is to display folders only or the directory contents,
6706 * @param obj The file selector entry widget
6707 * @param only @c EINA_TRUE to make @p obj widget's internal file
6708 * selector only display directories, @c EINA_FALSE to make files
6709 * to be displayed in it too
6711 * This has the same effect as elm_fileselector_folder_only_set(),
6712 * but now applied to a file selector entry's internal file
6715 * @see elm_fileselector_folder_only_get()
6717 EAPI void elm_fileselector_entry_folder_only_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6720 * Get whether a given file selector entry widget's internal file
6721 * selector is displaying folders only or the directory contents,
6724 * @param obj The file selector entry widget
6725 * @return @c EINA_TRUE if @p obj widget's internal file
6726 * selector is only displaying directories, @c EINA_FALSE if files
6727 * are being displayed in it too (and on errors)
6729 * @see elm_fileselector_entry_folder_only_set() for more details
6731 EAPI Eina_Bool elm_fileselector_entry_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6734 * Enable/disable the file name entry box where the user can type
6735 * in a name for a file, in a given file selector entry widget's
6736 * internal file selector.
6738 * @param obj The file selector entry widget
6739 * @param is_save @c EINA_TRUE to make @p obj widget's internal
6740 * file selector a "saving dialog", @c EINA_FALSE otherwise
6742 * This has the same effect as elm_fileselector_is_save_set(),
6743 * but now applied to a file selector entry's internal file
6746 * @see elm_fileselector_is_save_get()
6748 EAPI void elm_fileselector_entry_is_save_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6751 * Get whether the given file selector entry widget's internal
6752 * file selector is in "saving dialog" mode
6754 * @param obj The file selector entry widget
6755 * @return @c EINA_TRUE, if @p obj widget's internal file selector
6756 * is in "saving dialog" mode, @c EINA_FALSE otherwise (and on
6759 * @see elm_fileselector_entry_is_save_set() for more details
6761 EAPI Eina_Bool elm_fileselector_entry_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6764 * Set whether a given file selector entry widget's internal file
6765 * selector will raise an Elementary "inner window", instead of a
6766 * dedicated Elementary window. By default, it won't.
6768 * @param obj The file selector entry widget
6769 * @param value @c EINA_TRUE to make it use an inner window, @c
6770 * EINA_TRUE to make it use a dedicated window
6772 * @see elm_win_inwin_add() for more information on inner windows
6773 * @see elm_fileselector_entry_inwin_mode_get()
6775 EAPI void elm_fileselector_entry_inwin_mode_set(Evas_Object *obj, Eina_Bool value) EINA_ARG_NONNULL(1);
6778 * Get whether a given file selector entry widget's internal file
6779 * selector will raise an Elementary "inner window", instead of a
6780 * dedicated Elementary window.
6782 * @param obj The file selector entry widget
6783 * @return @c EINA_TRUE if will use an inner window, @c EINA_TRUE
6784 * if it will use a dedicated window
6786 * @see elm_fileselector_entry_inwin_mode_set() for more details
6788 EAPI Eina_Bool elm_fileselector_entry_inwin_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6791 * Set the initial file system path for a given file selector entry
6794 * @param obj The file selector entry widget
6795 * @param path The path string
6797 * It must be a <b>directory</b> path, which will have the contents
6798 * displayed initially in the file selector's view, when invoked
6799 * from @p obj. The default initial path is the @c "HOME"
6800 * environment variable's value.
6802 * @see elm_fileselector_entry_path_get()
6804 EAPI void elm_fileselector_entry_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
6807 * Get the parent directory's path to the latest file selection on
6808 * a given filer selector entry widget
6810 * @param obj The file selector object
6811 * @return The (full) path of the directory of the last selection
6812 * on @p obj widget, a @b stringshared string
6814 * @see elm_fileselector_entry_path_set()
6816 EAPI const char *elm_fileselector_entry_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6823 * @defgroup Scroller Scroller
6825 * A scroller holds a single object and "scrolls it around". This means that
6826 * it allows the user to use a scrollbar (or a finger) to drag the viewable
6827 * region around, allowing to move through a much larger object that is
6828 * contained in the scroller. The scroller will always have a small minimum
6829 * size by default as it won't be limited by the contents of the scroller.
6831 * Signals that you can add callbacks for are:
6832 * @li "edge,left" - the left edge of the content has been reached
6833 * @li "edge,right" - the right edge of the content has been reached
6834 * @li "edge,top" - the top edge of the content has been reached
6835 * @li "edge,bottom" - the bottom edge of the content has been reached
6836 * @li "scroll" - the content has been scrolled (moved)
6837 * @li "scroll,anim,start" - scrolling animation has started
6838 * @li "scroll,anim,stop" - scrolling animation has stopped
6839 * @li "scroll,drag,start" - dragging the contents around has started
6840 * @li "scroll,drag,stop" - dragging the contents around has stopped
6841 * @note The "scroll,anim,*" and "scroll,drag,*" signals are only emitted by
6844 * @note When Elemementary is in embedded mode the scrollbars will not be
6845 * dragable, they appear merely as indicators of how much has been scrolled.
6846 * @note When Elementary is in desktop mode the thumbscroll(a.k.a.
6847 * fingerscroll) won't work.
6849 * To set/get/unset the content of the panel, you can use
6850 * elm_object_content_set/get/unset APIs.
6851 * Once the content object is set, a previously set one will be deleted.
6852 * If you want to keep that old content object, use the
6853 * elm_object_content_unset() function
6855 * In @ref tutorial_scroller you'll find an example of how to use most of
6860 * @brief Type that controls when scrollbars should appear.
6862 * @see elm_scroller_policy_set()
6864 typedef enum _Elm_Scroller_Policy
6866 ELM_SCROLLER_POLICY_AUTO = 0, /**< Show scrollbars as needed */
6867 ELM_SCROLLER_POLICY_ON, /**< Always show scrollbars */
6868 ELM_SCROLLER_POLICY_OFF, /**< Never show scrollbars */
6869 ELM_SCROLLER_POLICY_LAST
6870 } Elm_Scroller_Policy;
6872 * @brief Add a new scroller to the parent
6874 * @param parent The parent object
6875 * @return The new object or NULL if it cannot be created
6877 EAPI Evas_Object *elm_scroller_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
6879 * @brief Set the content of the scroller widget (the object to be scrolled around).
6881 * @param obj The scroller object
6882 * @param content The new content object
6884 * Once the content object is set, a previously set one will be deleted.
6885 * If you want to keep that old content object, use the
6886 * elm_scroller_content_unset() function.
6887 * @deprecated See elm_object_content_set()
6889 EAPI void elm_scroller_content_set(Evas_Object *obj, Evas_Object *child) EINA_ARG_NONNULL(1);
6891 * @brief Get the content of the scroller widget
6893 * @param obj The slider object
6894 * @return The content that is being used
6896 * Return the content object which is set for this widget
6898 * @see elm_scroller_content_set()
6899 * @deprecated use elm_object_content_get() instead.
6901 EAPI Evas_Object *elm_scroller_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
6903 * @brief Unset the content of the scroller widget
6905 * @param obj The slider object
6906 * @return The content that was being used
6908 * Unparent and return the content object which was set for this widget
6910 * @see elm_scroller_content_set()
6911 * @deprecated use elm_object_content_unset() instead.
6913 EAPI Evas_Object *elm_scroller_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
6915 * @brief Set custom theme elements for the scroller
6917 * @param obj The scroller object
6918 * @param widget The widget name to use (default is "scroller")
6919 * @param base The base name to use (default is "base")
6921 EAPI void elm_scroller_custom_widget_base_theme_set(Evas_Object *obj, const char *widget, const char *base) EINA_ARG_NONNULL(1, 2, 3);
6923 * @brief Make the scroller minimum size limited to the minimum size of the content
6925 * @param obj The scroller object
6926 * @param w Enable limiting minimum size horizontally
6927 * @param h Enable limiting minimum size vertically
6929 * By default the scroller will be as small as its design allows,
6930 * irrespective of its content. This will make the scroller minimum size the
6931 * right size horizontally and/or vertically to perfectly fit its content in
6934 EAPI void elm_scroller_content_min_limit(Evas_Object *obj, Eina_Bool w, Eina_Bool h) EINA_ARG_NONNULL(1);
6936 * @brief Show a specific virtual region within the scroller content object
6938 * @param obj The scroller object
6939 * @param x X coordinate of the region
6940 * @param y Y coordinate of the region
6941 * @param w Width of the region
6942 * @param h Height of the region
6944 * This will ensure all (or part if it does not fit) of the designated
6945 * region in the virtual content object (0, 0 starting at the top-left of the
6946 * virtual content object) is shown within the scroller.
6948 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);
6950 * @brief Set the scrollbar visibility policy
6952 * @param obj The scroller object
6953 * @param policy_h Horizontal scrollbar policy
6954 * @param policy_v Vertical scrollbar policy
6956 * This sets the scrollbar visibility policy for the given scroller.
6957 * ELM_SCROLLER_POLICY_AUTO means the scrollbar is made visible if it is
6958 * needed, and otherwise kept hidden. ELM_SCROLLER_POLICY_ON turns it on all
6959 * the time, and ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
6960 * respectively for the horizontal and vertical scrollbars.
6962 EAPI void elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
6964 * @brief Gets scrollbar visibility policy
6966 * @param obj The scroller object
6967 * @param policy_h Horizontal scrollbar policy
6968 * @param policy_v Vertical scrollbar policy
6970 * @see elm_scroller_policy_set()
6972 EAPI void elm_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v) EINA_ARG_NONNULL(1);
6974 * @brief Get the currently visible content region
6976 * @param obj The scroller object
6977 * @param x X coordinate of the region
6978 * @param y Y coordinate of the region
6979 * @param w Width of the region
6980 * @param h Height of the region
6982 * This gets the current region in the content object that is visible through
6983 * the scroller. The region co-ordinates are returned in the @p x, @p y, @p
6984 * w, @p h values pointed to.
6986 * @note All coordinates are relative to the content.
6988 * @see elm_scroller_region_show()
6990 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);
6992 * @brief Get the size of the content object
6994 * @param obj The scroller object
6995 * @param w Width of the content object.
6996 * @param h Height of the content object.
6998 * This gets the size of the content object of the scroller.
7000 EAPI void elm_scroller_child_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
7002 * @brief Set bouncing behavior
7004 * @param obj The scroller object
7005 * @param h_bounce Allow bounce horizontally
7006 * @param v_bounce Allow bounce vertically
7008 * When scrolling, the scroller may "bounce" when reaching an edge of the
7009 * content object. This is a visual way to indicate the end has been reached.
7010 * This is enabled by default for both axis. This API will set if it is enabled
7011 * for the given axis with the boolean parameters for each axis.
7013 EAPI void elm_scroller_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
7015 * @brief Get the bounce behaviour
7017 * @param obj The Scroller object
7018 * @param h_bounce Will the scroller bounce horizontally or not
7019 * @param v_bounce Will the scroller bounce vertically or not
7021 * @see elm_scroller_bounce_set()
7023 EAPI void elm_scroller_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
7025 * @brief Set scroll page size relative to viewport size.
7027 * @param obj The scroller object
7028 * @param h_pagerel The horizontal page relative size
7029 * @param v_pagerel The vertical page relative size
7031 * The scroller is capable of limiting scrolling by the user to "pages". That
7032 * is to jump by and only show a "whole page" at a time as if the continuous
7033 * area of the scroller content is split into page sized pieces. This sets
7034 * the size of a page relative to the viewport of the scroller. 1.0 is "1
7035 * viewport" is size (horizontally or vertically). 0.0 turns it off in that
7036 * axis. This is mutually exclusive with page size
7037 * (see elm_scroller_page_size_set() for more information). Likewise 0.5
7038 * is "half a viewport". Sane usable values are normally between 0.0 and 1.0
7039 * including 1.0. If you only want 1 axis to be page "limited", use 0.0 for
7042 EAPI void elm_scroller_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
7044 * @brief Set scroll page size.
7046 * @param obj The scroller object
7047 * @param h_pagesize The horizontal page size
7048 * @param v_pagesize The vertical page size
7050 * This sets the page size to an absolute fixed value, with 0 turning it off
7053 * @see elm_scroller_page_relative_set()
7055 EAPI void elm_scroller_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
7057 * @brief Show a specific virtual region within the scroller content object.
7059 * @param obj The scroller object
7060 * @param x X coordinate of the region
7061 * @param y Y coordinate of the region
7062 * @param w Width of the region
7063 * @param h Height of the region
7065 * This will ensure all (or part if it does not fit) of the designated
7066 * region in the virtual content object (0, 0 starting at the top-left of the
7067 * virtual content object) is shown within the scroller. Unlike
7068 * elm_scroller_region_show(), this allow the scroller to "smoothly slide"
7069 * to this location (if configuration in general calls for transitions). It
7070 * may not jump immediately to the new location and make take a while and
7071 * show other content along the way.
7073 * @see elm_scroller_region_show()
7075 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);
7077 * @brief Set event propagation on a scroller
7079 * @param obj The scroller object
7080 * @param propagation If propagation is enabled or not
7082 * This enables or disabled event propagation from the scroller content to
7083 * the scroller and its parent. By default event propagation is disabled.
7085 EAPI void elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation) EINA_ARG_NONNULL(1);
7087 * @brief Get event propagation for a scroller
7089 * @param obj The scroller object
7090 * @return The propagation state
7092 * This gets the event propagation for a scroller.
7094 * @see elm_scroller_propagate_events_set()
7096 EAPI Eina_Bool elm_scroller_propagate_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7098 * @brief Set scrolling gravity on a scroller
7100 * @param obj The scroller object
7101 * @param x The scrolling horizontal gravity
7102 * @param y The scrolling vertical gravity
7104 * The gravity, defines how the scroller will adjust its view
7105 * when the size of the scroller contents increase.
7107 * The scroller will adjust the view to glue itself as follows.
7109 * x=0.0, for showing the left most region of the content.
7110 * x=1.0, for showing the right most region of the content.
7111 * y=0.0, for showing the bottom most region of the content.
7112 * y=1.0, for showing the top most region of the content.
7114 * Default values for x and y are 0.0
7116 EAPI void elm_scroller_gravity_set(Evas_Object *obj, double x, double y) EINA_ARG_NONNULL(1);
7118 * @brief Get scrolling gravity values for a scroller
7120 * @param obj The scroller object
7121 * @param x The scrolling horizontal gravity
7122 * @param y The scrolling vertical gravity
7124 * This gets gravity values for a scroller.
7126 * @see elm_scroller_gravity_set()
7129 EAPI void elm_scroller_gravity_get(const Evas_Object *obj, double *x, double *y) EINA_ARG_NONNULL(1);
7135 * @defgroup Label Label
7137 * @image html img/widget/label/preview-00.png
7138 * @image latex img/widget/label/preview-00.eps
7140 * @brief Widget to display text, with simple html-like markup.
7142 * The Label widget @b doesn't allow text to overflow its boundaries, if the
7143 * text doesn't fit the geometry of the label it will be ellipsized or be
7144 * cut. Elementary provides several themes for this widget:
7145 * @li default - No animation
7146 * @li marker - Centers the text in the label and make it bold by default
7147 * @li slide_long - The entire text appears from the right of the screen and
7148 * slides until it disappears in the left of the screen(reappering on the
7150 * @li slide_short - The text appears in the left of the label and slides to
7151 * the right to show the overflow. When all of the text has been shown the
7152 * position is reset.
7153 * @li slide_bounce - The text appears in the left of the label and slides to
7154 * the right to show the overflow. When all of the text has been shown the
7155 * animation reverses, moving the text to the left.
7157 * Custom themes can of course invent new markup tags and style them any way
7160 * The following signals may be emitted by the label widget:
7161 * @li "language,changed": The program's language changed.
7163 * See @ref tutorial_label for a demonstration of how to use a label widget.
7167 * @brief Add a new label to the parent
7169 * @param parent The parent object
7170 * @return The new object or NULL if it cannot be created
7172 EAPI Evas_Object *elm_label_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7174 * @brief Set the label on the label object
7176 * @param obj The label object
7177 * @param label The label will be used on the label object
7178 * @deprecated See elm_object_text_set()
7180 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 */
7182 * @brief Get the label used on the label object
7184 * @param obj The label object
7185 * @return The string inside the label
7186 * @deprecated See elm_object_text_get()
7188 EINA_DEPRECATED EAPI const char *elm_label_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1); /* deprecated, use elm_object_text_get instead */
7190 * @brief Set the wrapping behavior of the label
7192 * @param obj The label object
7193 * @param wrap To wrap text or not
7195 * By default no wrapping is done. Possible values for @p wrap are:
7196 * @li ELM_WRAP_NONE - No wrapping
7197 * @li ELM_WRAP_CHAR - wrap between characters
7198 * @li ELM_WRAP_WORD - wrap between words
7199 * @li ELM_WRAP_MIXED - Word wrap, and if that fails, char wrap
7201 EAPI void elm_label_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
7203 * @brief Get the wrapping behavior of the label
7205 * @param obj The label object
7208 * @see elm_label_line_wrap_set()
7210 EAPI Elm_Wrap_Type elm_label_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7212 * @brief Set wrap width of the label
7214 * @param obj The label object
7215 * @param w The wrap width in pixels at a minimum where words need to wrap
7217 * This function sets the maximum width size hint of the label.
7219 * @warning This is only relevant if the label is inside a container.
7221 EAPI void elm_label_wrap_width_set(Evas_Object *obj, Evas_Coord w) EINA_ARG_NONNULL(1);
7223 * @brief Get wrap width of the label
7225 * @param obj The label object
7226 * @return The wrap width in pixels at a minimum where words need to wrap
7228 * @see elm_label_wrap_width_set()
7230 EAPI Evas_Coord elm_label_wrap_width_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7232 * @brief Set wrap height of the label
7234 * @param obj The label object
7235 * @param h The wrap height in pixels at a minimum where words need to wrap
7237 * This function sets the maximum height size hint of the label.
7239 * @warning This is only relevant if the label is inside a container.
7241 EAPI void elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h) EINA_ARG_NONNULL(1);
7243 * @brief get wrap width of the label
7245 * @param obj The label object
7246 * @return The wrap height in pixels at a minimum where words need to wrap
7248 EAPI Evas_Coord elm_label_wrap_height_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7250 * @brief Set the font size on the label object.
7252 * @param obj The label object
7253 * @param size font size
7255 * @warning NEVER use this. It is for hyper-special cases only. use styles
7256 * instead. e.g. "big", "medium", "small" - or better name them by use:
7257 * "title", "footnote", "quote" etc.
7259 EAPI void elm_label_fontsize_set(Evas_Object *obj, int fontsize) EINA_ARG_NONNULL(1);
7261 * @brief Set the text color on the label object
7263 * @param obj The label object
7264 * @param r Red property background color of The label object
7265 * @param g Green property background color of The label object
7266 * @param b Blue property background color of The label object
7267 * @param a Alpha property background color of The label object
7269 * @warning NEVER use this. It is for hyper-special cases only. use styles
7270 * instead. e.g. "big", "medium", "small" - or better name them by use:
7271 * "title", "footnote", "quote" etc.
7273 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);
7275 * @brief Set the text align on the label object
7277 * @param obj The label object
7278 * @param align align mode ("left", "center", "right")
7280 * @warning NEVER use this. It is for hyper-special cases only. use styles
7281 * instead. e.g. "big", "medium", "small" - or better name them by use:
7282 * "title", "footnote", "quote" etc.
7284 EAPI void elm_label_text_align_set(Evas_Object *obj, const char *alignmode) EINA_ARG_NONNULL(1);
7286 * @brief Set background color of the label
7288 * @param obj The label object
7289 * @param r Red property background color of The label object
7290 * @param g Green property background color of The label object
7291 * @param b Blue property background color of The label object
7292 * @param a Alpha property background alpha of The label object
7294 * @warning NEVER use this. It is for hyper-special cases only. use styles
7295 * instead. e.g. "big", "medium", "small" - or better name them by use:
7296 * "title", "footnote", "quote" etc.
7298 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);
7300 * @brief Set the ellipsis behavior of the label
7302 * @param obj The label object
7303 * @param ellipsis To ellipsis text or not
7305 * If set to true and the text doesn't fit in the label an ellipsis("...")
7306 * will be shown at the end of the widget.
7308 * @warning This doesn't work with slide(elm_label_slide_set()) or if the
7309 * choosen wrap method was ELM_WRAP_WORD.
7311 EAPI void elm_label_ellipsis_set(Evas_Object *obj, Eina_Bool ellipsis) EINA_ARG_NONNULL(1);
7312 EINA_DEPRECATED EAPI void elm_label_wrap_mode_set(Evas_Object *obj, Eina_Bool wrapmode) EINA_ARG_NONNULL(1);
7314 * @brief Set the text slide of the label
7316 * @param obj The label object
7317 * @param slide To start slide or stop
7319 * If set to true, the text of the label will slide/scroll through the length of
7322 * @warning This only works with the themes "slide_short", "slide_long" and
7325 EAPI void elm_label_slide_set(Evas_Object *obj, Eina_Bool slide) EINA_ARG_NONNULL(1);
7327 * @brief Get the text slide mode of the label
7329 * @param obj The label object
7330 * @return slide slide mode value
7332 * @see elm_label_slide_set()
7334 EAPI Eina_Bool elm_label_slide_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7336 * @brief Set the slide duration(speed) of the label
7338 * @param obj The label object
7339 * @return The duration in seconds in moving text from slide begin position
7340 * to slide end position
7342 EAPI void elm_label_slide_duration_set(Evas_Object *obj, double duration) EINA_ARG_NONNULL(1);
7344 * @brief Get the slide duration(speed) of the label
7346 * @param obj The label object
7347 * @return The duration time in moving text from slide begin position to slide end position
7349 * @see elm_label_slide_duration_set()
7351 EAPI double elm_label_slide_duration_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
7357 * @defgroup Toggle Toggle
7359 * @image html img/widget/toggle/preview-00.png
7360 * @image latex img/widget/toggle/preview-00.eps
7362 * @brief A toggle is a slider which can be used to toggle between
7363 * two values. It has two states: on and off.
7365 * This widget is deprecated. Please use elm_check_add() instead using the
7366 * toggle style like:
7369 * obj = elm_check_add(parent);
7370 * elm_object_style_set(obj, "toggle");
7371 * elm_object_text_part_set(obj, "on", "ON");
7372 * elm_object_text_part_set(obj, "off", "OFF");
7375 * Signals that you can add callbacks for are:
7376 * @li "changed" - Whenever the toggle value has been changed. Is not called
7377 * until the toggle is released by the cursor (assuming it
7378 * has been triggered by the cursor in the first place).
7380 * @ref tutorial_toggle show how to use a toggle.
7384 * @brief Add a toggle to @p parent.
7386 * @param parent The parent object
7388 * @return The toggle object
7390 EAPI Evas_Object *elm_toggle_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7392 * @brief Sets the label to be displayed with the toggle.
7394 * @param obj The toggle object
7395 * @param label The label to be displayed
7397 * @deprecated use elm_object_text_set() instead.
7399 EINA_DEPRECATED EAPI void elm_toggle_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7401 * @brief Gets the label of the toggle
7403 * @param obj toggle object
7404 * @return The label of the toggle
7406 * @deprecated use elm_object_text_get() instead.
7408 EINA_DEPRECATED EAPI const char *elm_toggle_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7410 * @brief Set the icon used for the toggle
7412 * @param obj The toggle object
7413 * @param icon The icon object for the button
7415 * Once the icon object is set, a previously set one will be deleted
7416 * If you want to keep that old content object, use the
7417 * elm_toggle_icon_unset() function.
7419 * @deprecated use elm_object_content_set() instead.
7421 EAPI void elm_toggle_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
7423 * @brief Get the icon used for the toggle
7425 * @param obj The toggle object
7426 * @return The icon object that is being used
7428 * Return the icon object which is set for this widget.
7430 * @see elm_toggle_icon_set()
7432 * @deprecated use elm_object_content_get() instead.
7434 EAPI Evas_Object *elm_toggle_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7436 * @brief Unset the icon used for the toggle
7438 * @param obj The toggle object
7439 * @return The icon object that was being used
7441 * Unparent and return the icon object which was set for this widget.
7443 * @see elm_toggle_icon_set()
7445 * @deprecated use elm_object_content_unset() instead.
7447 EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7449 * @brief Sets the labels to be associated with the on and off states of the toggle.
7451 * @param obj The toggle object
7452 * @param onlabel The label displayed when the toggle is in the "on" state
7453 * @param offlabel The label displayed when the toggle is in the "off" state
7455 * @deprecated use elm_object_text_part_set() for "on" and "off" parts
7458 EAPI void elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel) EINA_ARG_NONNULL(1);
7460 * @brief Gets the labels associated with the on and off states of the
7463 * @param obj The toggle object
7464 * @param onlabel A char** to place the onlabel of @p obj into
7465 * @param offlabel A char** to place the offlabel of @p obj into
7467 * @deprecated use elm_object_text_part_get() for "on" and "off" parts
7470 EAPI void elm_toggle_states_labels_get(const Evas_Object *obj, const char **onlabel, const char **offlabel) EINA_ARG_NONNULL(1);
7472 * @brief Sets the state of the toggle to @p state.
7474 * @param obj The toggle object
7475 * @param state The state of @p obj
7477 * @deprecated use elm_check_state_set() instead.
7479 EAPI void elm_toggle_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
7481 * @brief Gets the state of the toggle to @p state.
7483 * @param obj The toggle object
7484 * @return The state of @p obj
7486 * @deprecated use elm_check_state_get() instead.
7488 EAPI Eina_Bool elm_toggle_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7490 * @brief Sets the state pointer of the toggle to @p statep.
7492 * @param obj The toggle object
7493 * @param statep The state pointer of @p obj
7495 * @deprecated use elm_check_state_pointer_set() instead.
7497 EAPI void elm_toggle_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
7503 * @page tutorial_frame Frame example
7504 * @dontinclude frame_example_01.c
7506 * In this example we are going to create 4 Frames with different styles and
7507 * add a rectangle of different color in each.
7509 * We start we the usual setup code:
7512 * And then create one rectangle:
7515 * To add it in our first frame, which since it doesn't have it's style
7516 * specifically set uses the default style:
7519 * And then create another rectangle:
7522 * To add it in our second frame, which uses the "pad_small" style, note that
7523 * even tough we are setting a text for this frame it won't be show, only the
7524 * default style shows the Frame's title:
7526 * @note The "pad_small", "pad_medium", "pad_large" and "pad_huge" styles are
7527 * very similar, their only difference is the size of the empty area around
7528 * the content of the frame.
7530 * And then create yet another rectangle:
7533 * To add it in our third frame, which uses the "outdent_top" style, note
7534 * that even tough we are setting a text for this frame it won't be show,
7535 * only the default style shows the Frame's title:
7538 * And then create one last rectangle:
7541 * To add it in our fourth and final frame, which uses the "outdent_bottom"
7542 * style, note that even tough we are setting a text for this frame it won't
7543 * be show, only the default style shows the Frame's title:
7546 * And now we are left with just some more setup code:
7549 * Our example will look like this:
7550 * @image html screenshots/frame_example_01.png
7551 * @image latex screenshots/frame_example_01.eps
7553 * @example frame_example_01.c
7556 * @defgroup Frame Frame
7558 * @brief Frame is a widget that holds some content and has a title.
7560 * The default look is a frame with a title, but Frame supports multple
7568 * @li outdent_bottom
7570 * Of all this styles only default shows the title. Frame emits no signals.
7572 * For a detailed example see the @ref tutorial_frame.
7577 * @brief Add a new frame to the parent
7579 * @param parent The parent object
7580 * @return The new object or NULL if it cannot be created
7582 EAPI Evas_Object *elm_frame_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7584 * @brief Set the frame label
7586 * @param obj The frame object
7587 * @param label The label of this frame object
7589 * @deprecated use elm_object_text_set() instead.
7591 EINA_DEPRECATED EAPI void elm_frame_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
7593 * @brief Get the frame label
7595 * @param obj The frame object
7597 * @return The label of this frame objet or NULL if unable to get frame
7599 * @deprecated use elm_object_text_get() instead.
7601 EINA_DEPRECATED EAPI const char *elm_frame_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7603 * @brief Set the content of the frame widget
7605 * Once the content object is set, a previously set one will be deleted.
7606 * If you want to keep that old content object, use the
7607 * elm_frame_content_unset() function.
7609 * @param obj The frame object
7610 * @param content The content will be filled in this frame object
7612 EAPI void elm_frame_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
7614 * @brief Get the content of the frame widget
7616 * Return the content object which is set for this widget
7618 * @param obj The frame object
7619 * @return The content that is being used
7621 EAPI Evas_Object *elm_frame_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7623 * @brief Unset the content of the frame widget
7625 * Unparent and return the content object which was set for this widget
7627 * @param obj The frame object
7628 * @return The content that was being used
7630 EAPI Evas_Object *elm_frame_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
7636 * @defgroup Table Table
7638 * A container widget to arrange other widgets in a table where items can
7639 * also span multiple columns or rows - even overlap (and then be raised or
7640 * lowered accordingly to adjust stacking if they do overlap).
7642 * For a Table widget the row/column count is not fixed.
7643 * The table widget adjusts itself when subobjects are added to it dynamically.
7645 * The followin are examples of how to use a table:
7646 * @li @ref tutorial_table_01
7647 * @li @ref tutorial_table_02
7652 * @brief Add a new table to the parent
7654 * @param parent The parent object
7655 * @return The new object or NULL if it cannot be created
7657 EAPI Evas_Object *elm_table_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
7659 * @brief Set the homogeneous layout in the table
7661 * @param obj The layout object
7662 * @param homogeneous A boolean to set if the layout is homogeneous in the
7663 * table (EINA_TRUE = homogeneous, EINA_FALSE = no homogeneous)
7665 EAPI void elm_table_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
7667 * @brief Get the current table homogeneous mode.
7669 * @param obj The table object
7670 * @return A boolean to indicating if the layout is homogeneous in the table
7671 * (EINA_TRUE = homogeneous, EINA_FALSE = no homogeneous)
7673 EAPI Eina_Bool elm_table_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7675 * @warning <b>Use elm_table_homogeneous_set() instead</b>
7677 EINA_DEPRECATED EAPI void elm_table_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
7679 * @warning <b>Use elm_table_homogeneous_get() instead</b>
7681 EINA_DEPRECATED EAPI Eina_Bool elm_table_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
7683 * @brief Set padding between cells.
7685 * @param obj The layout object.
7686 * @param horizontal set the horizontal padding.
7687 * @param vertical set the vertical padding.
7689 * Default value is 0.
7691 EAPI void elm_table_padding_set(Evas_Object *obj, Evas_Coord horizontal, Evas_Coord vertical) EINA_ARG_NONNULL(1);
7693 * @brief Get padding between cells.
7695 * @param obj The layout object.
7696 * @param horizontal set the horizontal padding.
7697 * @param vertical set the vertical padding.
7699 EAPI void elm_table_padding_get(const Evas_Object *obj, Evas_Coord *horizontal, Evas_Coord *vertical) EINA_ARG_NONNULL(1);
7701 * @brief Add a subobject on the table with the coordinates passed
7703 * @param obj The table object
7704 * @param subobj The subobject to be added to the table
7705 * @param x Row number
7706 * @param y Column number
7710 * @note All positioning inside the table is relative to rows and columns, so
7711 * a value of 0 for x and y, means the top left cell of the table, and a
7712 * value of 1 for w and h means @p subobj only takes that 1 cell.
7714 EAPI void elm_table_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
7716 * @brief Remove child from table.
7718 * @param obj The table object
7719 * @param subobj The subobject
7721 EAPI void elm_table_unpack(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
7723 * @brief Faster way to remove all child objects from a table object.
7725 * @param obj The table object
7726 * @param clear If true, will delete children, else just remove from table.
7728 EAPI void elm_table_clear(Evas_Object *obj, Eina_Bool clear) EINA_ARG_NONNULL(1);
7730 * @brief Set the packing location of an existing child of the table
7732 * @param subobj The subobject to be modified in the table
7733 * @param x Row number
7734 * @param y Column number
7738 * Modifies the position of an object already in the table.
7740 * @note All positioning inside the table is relative to rows and columns, so
7741 * a value of 0 for x and y, means the top left cell of the table, and a
7742 * value of 1 for w and h means @p subobj only takes that 1 cell.
7744 EAPI void elm_table_pack_set(Evas_Object *subobj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
7746 * @brief Get the packing location of an existing child of the table
7748 * @param subobj The subobject to be modified in the table
7749 * @param x Row number
7750 * @param y Column number
7754 * @see elm_table_pack_set()
7756 EAPI void elm_table_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
7762 * @defgroup Gengrid Gengrid (Generic grid)
7764 * This widget aims to position objects in a grid layout while
7765 * actually creating and rendering only the visible ones, using the
7766 * same idea as the @ref Genlist "genlist": the user defines a @b
7767 * class for each item, specifying functions that will be called at
7768 * object creation, deletion, etc. When those items are selected by
7769 * the user, a callback function is issued. Users may interact with
7770 * a gengrid via the mouse (by clicking on items to select them and
7771 * clicking on the grid's viewport and swiping to pan the whole
7772 * view) or via the keyboard, navigating through item with the
7775 * @section Gengrid_Layouts Gengrid layouts
7777 * Gengrid may layout its items in one of two possible layouts:
7781 * When in "horizontal mode", items will be placed in @b columns,
7782 * from top to bottom and, when the space for a column is filled,
7783 * another one is started on the right, thus expanding the grid
7784 * horizontally, making for horizontal scrolling. When in "vertical
7785 * mode" , though, items will be placed in @b rows, from left to
7786 * right and, when the space for a row is filled, another one is
7787 * started below, thus expanding the grid vertically (and making
7788 * for vertical scrolling).
7790 * @section Gengrid_Items Gengrid items
7792 * An item in a gengrid can have 0 or more text labels (they can be
7793 * regular text or textblock Evas objects - that's up to the style
7794 * to determine), 0 or more icons (which are simply objects
7795 * swallowed into the gengrid item's theming Edje object) and 0 or
7796 * more <b>boolean states</b>, which have the behavior left to the
7797 * user to define. The Edje part names for each of these properties
7798 * will be looked up, in the theme file for the gengrid, under the
7799 * Edje (string) data items named @c "labels", @c "icons" and @c
7800 * "states", respectively. For each of those properties, if more
7801 * than one part is provided, they must have names listed separated
7802 * by spaces in the data fields. For the default gengrid item
7803 * theme, we have @b one label part (@c "elm.text"), @b two icon
7804 * parts (@c "elm.swalllow.icon" and @c "elm.swallow.end") and @b
7807 * A gengrid item may be at one of several styles. Elementary
7808 * provides one by default - "default", but this can be extended by
7809 * system or application custom themes/overlays/extensions (see
7810 * @ref Theme "themes" for more details).
7812 * @section Gengrid_Item_Class Gengrid item classes
7814 * In order to have the ability to add and delete items on the fly,
7815 * gengrid implements a class (callback) system where the
7816 * application provides a structure with information about that
7817 * type of item (gengrid may contain multiple different items with
7818 * different classes, states and styles). Gengrid will call the
7819 * functions in this struct (methods) when an item is "realized"
7820 * (i.e., created dynamically, while the user is scrolling the
7821 * grid). All objects will simply be deleted when no longer needed
7822 * with evas_object_del(). The #Elm_GenGrid_Item_Class structure
7823 * contains the following members:
7824 * - @c item_style - This is a constant string and simply defines
7825 * the name of the item style. It @b must be specified and the
7826 * default should be @c "default".
7827 * - @c func.label_get - This function is called when an item
7828 * object is actually created. The @c data parameter will point to
7829 * the same data passed to elm_gengrid_item_append() and related
7830 * item creation functions. The @c obj parameter is the gengrid
7831 * object itself, while the @c part one is the name string of one
7832 * of the existing text parts in the Edje group implementing the
7833 * item's theme. This function @b must return a strdup'()ed string,
7834 * as the caller will free() it when done. See
7835 * #GridItemLabelGetFunc.
7836 * - @c func.content_get - This function is called when an item object
7837 * is actually created. The @c data parameter will point to the
7838 * same data passed to elm_gengrid_item_append() and related item
7839 * creation functions. The @c obj parameter is the gengrid object
7840 * itself, while the @c part one is the name string of one of the
7841 * existing (content) swallow parts in the Edje group implementing the
7842 * item's theme. It must return @c NULL, when no content is desired,
7843 * or a valid object handle, otherwise. The object will be deleted
7844 * by the gengrid on its deletion or when the item is "unrealized".
7845 * See #GridItemIconGetFunc.
7846 * - @c func.state_get - This function is called when an item
7847 * object is actually created. The @c data parameter will point to
7848 * the same data passed to elm_gengrid_item_append() and related
7849 * item creation functions. The @c obj parameter is the gengrid
7850 * object itself, while the @c part one is the name string of one
7851 * of the state parts in the Edje group implementing the item's
7852 * theme. Return @c EINA_FALSE for false/off or @c EINA_TRUE for
7853 * true/on. Gengrids will emit a signal to its theming Edje object
7854 * with @c "elm,state,XXX,active" and @c "elm" as "emission" and
7855 * "source" arguments, respectively, when the state is true (the
7856 * default is false), where @c XXX is the name of the (state) part.
7857 * See #GridItemStateGetFunc.
7858 * - @c func.del - This is called when elm_gengrid_item_del() is
7859 * called on an item or elm_gengrid_clear() is called on the
7860 * gengrid. This is intended for use when gengrid items are
7861 * deleted, so any data attached to the item (e.g. its data
7862 * parameter on creation) can be deleted. See #GridItemDelFunc.
7864 * @section Gengrid_Usage_Hints Usage hints
7866 * If the user wants to have multiple items selected at the same
7867 * time, elm_gengrid_multi_select_set() will permit it. If the
7868 * gengrid is single-selection only (the default), then
7869 * elm_gengrid_select_item_get() will return the selected item or
7870 * @c NULL, if none is selected. If the gengrid is under
7871 * multi-selection, then elm_gengrid_selected_items_get() will
7872 * return a list (that is only valid as long as no items are
7873 * modified (added, deleted, selected or unselected) of child items
7876 * If an item changes (internal (boolean) state, label or content
7877 * changes), then use elm_gengrid_item_update() to have gengrid
7878 * update the item with the new state. A gengrid will re-"realize"
7879 * the item, thus calling the functions in the
7880 * #Elm_Gengrid_Item_Class set for that item.
7882 * To programmatically (un)select an item, use
7883 * elm_gengrid_item_selected_set(). To get its selected state use
7884 * elm_gengrid_item_selected_get(). To make an item disabled
7885 * (unable to be selected and appear differently) use
7886 * elm_gengrid_item_disabled_set() to set this and
7887 * elm_gengrid_item_disabled_get() to get the disabled state.
7889 * Grid cells will only have their selection smart callbacks called
7890 * when firstly getting selected. Any further clicks will do
7891 * nothing, unless you enable the "always select mode", with
7892 * elm_gengrid_always_select_mode_set(), thus making every click to
7893 * issue selection callbacks. elm_gengrid_no_select_mode_set() will
7894 * turn off the ability to select items entirely in the widget and
7895 * they will neither appear selected nor call the selection smart
7898 * Remember that you can create new styles and add your own theme
7899 * augmentation per application with elm_theme_extension_add(). If
7900 * you absolutely must have a specific style that overrides any
7901 * theme the user or system sets up you can use
7902 * elm_theme_overlay_add() to add such a file.
7904 * @section Gengrid_Smart_Events Gengrid smart events
7906 * Smart events that you can add callbacks for are:
7907 * - @c "activated" - The user has double-clicked or pressed
7908 * (enter|return|spacebar) on an item. The @c event_info parameter
7909 * is the gengrid item that was activated.
7910 * - @c "clicked,double" - The user has double-clicked an item.
7911 * The @c event_info parameter is the gengrid item that was double-clicked.
7912 * - @c "longpressed" - This is called when the item is pressed for a certain
7913 * amount of time. By default it's 1 second.
7914 * - @c "selected" - The user has made an item selected. The
7915 * @c event_info parameter is the gengrid item that was selected.
7916 * - @c "unselected" - The user has made an item unselected. The
7917 * @c event_info parameter is the gengrid item that was unselected.
7918 * - @c "realized" - This is called when the item in the gengrid
7919 * has its implementing Evas object instantiated, de facto. @c
7920 * event_info is the gengrid item that was created. The object
7921 * may be deleted at any time, so it is highly advised to the
7922 * caller @b not to use the object pointer returned from
7923 * elm_gengrid_item_object_get(), because it may point to freed
7925 * - @c "unrealized" - This is called when the implementing Evas
7926 * object for this item is deleted. @c event_info is the gengrid
7927 * item that was deleted.
7928 * - @c "changed" - Called when an item is added, removed, resized
7929 * or moved and when the gengrid is resized or gets "horizontal"
7931 * - @c "scroll,anim,start" - This is called when scrolling animation has
7933 * - @c "scroll,anim,stop" - This is called when scrolling animation has
7935 * - @c "drag,start,up" - Called when the item in the gengrid has
7936 * been dragged (not scrolled) up.
7937 * - @c "drag,start,down" - Called when the item in the gengrid has
7938 * been dragged (not scrolled) down.
7939 * - @c "drag,start,left" - Called when the item in the gengrid has
7940 * been dragged (not scrolled) left.
7941 * - @c "drag,start,right" - Called when the item in the gengrid has
7942 * been dragged (not scrolled) right.
7943 * - @c "drag,stop" - Called when the item in the gengrid has
7944 * stopped being dragged.
7945 * - @c "drag" - Called when the item in the gengrid is being
7947 * - @c "scroll" - called when the content has been scrolled
7949 * - @c "scroll,drag,start" - called when dragging the content has
7951 * - @c "scroll,drag,stop" - called when dragging the content has
7953 * - @c "edge,top" - This is called when the gengrid is scrolled until
7955 * - @c "edge,bottom" - This is called when the gengrid is scrolled
7956 * until the bottom edge.
7957 * - @c "edge,left" - This is called when the gengrid is scrolled
7958 * until the left edge.
7959 * - @c "edge,right" - This is called when the gengrid is scrolled
7960 * until the right edge.
7962 * List of gengrid examples:
7963 * @li @ref gengrid_example
7967 * @addtogroup Gengrid
7971 typedef struct _Elm_Gengrid_Item_Class Elm_Gengrid_Item_Class; /**< Gengrid item class definition structs */
7972 typedef struct _Elm_Gengrid_Item Elm_Gengrid_Item; /**< Gengrid item handles */
7973 typedef struct _Elm_Gengrid_Item_Class_Func Elm_Gengrid_Item_Class_Func; /**< Class functions for gengrid item classes. */
7974 typedef char *(*GridItemLabelGetFunc) (void *data, Evas_Object *obj, const char *part); /**< Label fetching class function for gengrid item classes. */
7975 typedef Evas_Object *(*GridItemIconGetFunc) (void *data, Evas_Object *obj, const char *part); /**< Content (swallowed object) fetching class function for gengrid item classes. */
7976 typedef Eina_Bool (*GridItemStateGetFunc) (void *data, Evas_Object *obj, const char *part); /**< State fetching class function for gengrid item classes. */
7977 typedef void (*GridItemDelFunc) (void *data, Evas_Object *obj); /**< Deletion class function for gengrid item classes. */
7980 * @struct _Elm_Gengrid_Item_Class
7982 * Gengrid item class definition. See @ref Gengrid_Item_Class for
7985 struct _Elm_Gengrid_Item_Class
7987 const char *item_style;
7988 struct _Elm_Gengrid_Item_Class_Func
7990 GridItemLabelGetFunc label_get;
7991 GridItemIconGetFunc icon_get;
7992 GridItemStateGetFunc state_get;
7993 GridItemDelFunc del;
7995 }; /**< #Elm_Gengrid_Item_Class member definitions */
7997 * Add a new gengrid widget to the given parent Elementary
7998 * (container) object
8000 * @param parent The parent object
8001 * @return a new gengrid widget handle or @c NULL, on errors
8003 * This function inserts a new gengrid widget on the canvas.
8005 * @see elm_gengrid_item_size_set()
8006 * @see elm_gengrid_group_item_size_set()
8007 * @see elm_gengrid_horizontal_set()
8008 * @see elm_gengrid_item_append()
8009 * @see elm_gengrid_item_del()
8010 * @see elm_gengrid_clear()
8014 EAPI Evas_Object *elm_gengrid_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
8017 * Set the size for the items of a given gengrid widget
8019 * @param obj The gengrid object.
8020 * @param w The items' width.
8021 * @param h The items' height;
8023 * A gengrid, after creation, has still no information on the size
8024 * to give to each of its cells. So, you most probably will end up
8025 * with squares one @ref Fingers "finger" wide, the default
8026 * size. Use this function to force a custom size for you items,
8027 * making them as big as you wish.
8029 * @see elm_gengrid_item_size_get()
8033 EAPI void elm_gengrid_item_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h) EINA_ARG_NONNULL(1);
8036 * Get the size set for the items of a given gengrid widget
8038 * @param obj The gengrid object.
8039 * @param w Pointer to a variable where to store the items' width.
8040 * @param h Pointer to a variable where to store the items' height.
8042 * @note Use @c NULL pointers on the size values you're not
8043 * interested in: they'll be ignored by the function.
8045 * @see elm_gengrid_item_size_get() for more details
8049 EAPI void elm_gengrid_item_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h) EINA_ARG_NONNULL(1);
8052 * Set the items grid's alignment within a given gengrid widget
8054 * @param obj The gengrid object.
8055 * @param align_x Alignment in the horizontal axis (0 <= align_x <= 1).
8056 * @param align_y Alignment in the vertical axis (0 <= align_y <= 1).
8058 * This sets the alignment of the whole grid of items of a gengrid
8059 * within its given viewport. By default, those values are both
8060 * 0.5, meaning that the gengrid will have its items grid placed
8061 * exactly in the middle of its viewport.
8063 * @note If given alignment values are out of the cited ranges,
8064 * they'll be changed to the nearest boundary values on the valid
8067 * @see elm_gengrid_align_get()
8071 EAPI void elm_gengrid_align_set(Evas_Object *obj, double align_x, double align_y) EINA_ARG_NONNULL(1);
8074 * Get the items grid's alignment values within a given gengrid
8077 * @param obj The gengrid object.
8078 * @param align_x Pointer to a variable where to store the
8079 * horizontal alignment.
8080 * @param align_y Pointer to a variable where to store the vertical
8083 * @note Use @c NULL pointers on the alignment values you're not
8084 * interested in: they'll be ignored by the function.
8086 * @see elm_gengrid_align_set() for more details
8090 EAPI void elm_gengrid_align_get(const Evas_Object *obj, double *align_x, double *align_y) EINA_ARG_NONNULL(1);
8093 * Set whether a given gengrid widget is or not able have items
8096 * @param obj The gengrid object
8097 * @param reorder_mode Use @c EINA_TRUE to turn reoderding on,
8098 * @c EINA_FALSE to turn it off
8100 * If a gengrid is set to allow reordering, a click held for more
8101 * than 0.5 over a given item will highlight it specially,
8102 * signalling the gengrid has entered the reordering state. From
8103 * that time on, the user will be able to, while still holding the
8104 * mouse button down, move the item freely in the gengrid's
8105 * viewport, replacing to said item to the locations it goes to.
8106 * The replacements will be animated and, whenever the user
8107 * releases the mouse button, the item being replaced gets a new
8108 * definitive place in the grid.
8110 * @see elm_gengrid_reorder_mode_get()
8114 EAPI void elm_gengrid_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
8117 * Get whether a given gengrid widget is or not able have items
8120 * @param obj The gengrid object
8121 * @return @c EINA_TRUE, if reoderding is on, @c EINA_FALSE if it's
8124 * @see elm_gengrid_reorder_mode_set() for more details
8128 EAPI Eina_Bool elm_gengrid_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8131 * Append a new item in a given gengrid widget.
8133 * @param obj The gengrid object.
8134 * @param gic The item class for the item.
8135 * @param data The item data.
8136 * @param func Convenience function called when the item is
8138 * @param func_data Data to be passed to @p func.
8139 * @return A handle to the item added or @c NULL, on errors.
8141 * This adds an item to the beginning of the gengrid.
8143 * @see elm_gengrid_item_prepend()
8144 * @see elm_gengrid_item_insert_before()
8145 * @see elm_gengrid_item_insert_after()
8146 * @see elm_gengrid_item_del()
8150 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);
8153 * Prepend a new item in a given gengrid widget.
8155 * @param obj The gengrid object.
8156 * @param gic The item class for the item.
8157 * @param data The item data.
8158 * @param func Convenience function called when the item is
8160 * @param func_data Data to be passed to @p func.
8161 * @return A handle to the item added or @c NULL, on errors.
8163 * This adds an item to the end of the gengrid.
8165 * @see elm_gengrid_item_append()
8166 * @see elm_gengrid_item_insert_before()
8167 * @see elm_gengrid_item_insert_after()
8168 * @see elm_gengrid_item_del()
8172 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);
8175 * Insert an item before another in a gengrid widget
8177 * @param obj The gengrid object.
8178 * @param gic The item class for the item.
8179 * @param data The item data.
8180 * @param relative The item to place this new one before.
8181 * @param func Convenience function called when the item is
8183 * @param func_data Data to be passed to @p func.
8184 * @return A handle to the item added or @c NULL, on errors.
8186 * This inserts an item before another in the gengrid.
8188 * @see elm_gengrid_item_append()
8189 * @see elm_gengrid_item_prepend()
8190 * @see elm_gengrid_item_insert_after()
8191 * @see elm_gengrid_item_del()
8195 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);
8198 * Insert an item after another in a gengrid widget
8200 * @param obj The gengrid object.
8201 * @param gic The item class for the item.
8202 * @param data The item data.
8203 * @param relative The item to place this new one after.
8204 * @param func Convenience function called when the item is
8206 * @param func_data Data to be passed to @p func.
8207 * @return A handle to the item added or @c NULL, on errors.
8209 * This inserts an item after another in the gengrid.
8211 * @see elm_gengrid_item_append()
8212 * @see elm_gengrid_item_prepend()
8213 * @see elm_gengrid_item_insert_after()
8214 * @see elm_gengrid_item_del()
8218 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);
8221 * Insert an item in a gengrid widget using a user-defined sort function.
8223 * @param obj The gengrid object.
8224 * @param gic The item class for the item.
8225 * @param data The item data.
8226 * @param comp User defined comparison function that defines the sort order based on
8227 * Elm_Gen_Item and its data param.
8228 * @param func Convenience function called when the item is selected.
8229 * @param func_data Data to be passed to @p func.
8230 * @return A handle to the item added or @c NULL, on errors.
8232 * This inserts an item in the gengrid based on user defined comparison function.
8234 * @see elm_gengrid_item_append()
8235 * @see elm_gengrid_item_prepend()
8236 * @see elm_gengrid_item_insert_after()
8237 * @see elm_gengrid_item_del()
8238 * @see elm_gengrid_item_direct_sorted_insert()
8242 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);
8245 * Insert an item in a gengrid widget using a user-defined sort function.
8247 * @param obj The gengrid object.
8248 * @param gic The item class for the item.
8249 * @param data The item data.
8250 * @param comp User defined comparison function that defines the sort order based on
8252 * @param func Convenience function called when the item is selected.
8253 * @param func_data Data to be passed to @p func.
8254 * @return A handle to the item added or @c NULL, on errors.
8256 * This inserts an item in the gengrid based on user defined comparison function.
8258 * @see elm_gengrid_item_append()
8259 * @see elm_gengrid_item_prepend()
8260 * @see elm_gengrid_item_insert_after()
8261 * @see elm_gengrid_item_del()
8262 * @see elm_gengrid_item_sorted_insert()
8266 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);
8269 * Set whether items on a given gengrid widget are to get their
8270 * selection callbacks issued for @b every subsequent selection
8271 * click on them or just for the first click.
8273 * @param obj The gengrid object
8274 * @param always_select @c EINA_TRUE to make items "always
8275 * selected", @c EINA_FALSE, otherwise
8277 * By default, grid items will only call their selection callback
8278 * function when firstly getting selected, any subsequent further
8279 * clicks will do nothing. With this call, you make those
8280 * subsequent clicks also to issue the selection callbacks.
8282 * @note <b>Double clicks</b> will @b always be reported on items.
8284 * @see elm_gengrid_always_select_mode_get()
8288 EAPI void elm_gengrid_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
8291 * Get whether items on a given gengrid widget have their selection
8292 * callbacks issued for @b every subsequent selection click on them
8293 * or just for the first click.
8295 * @param obj The gengrid object.
8296 * @return @c EINA_TRUE if the gengrid items are "always selected",
8297 * @c EINA_FALSE, otherwise
8299 * @see elm_gengrid_always_select_mode_set() for more details
8303 EAPI Eina_Bool elm_gengrid_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8306 * Set whether items on a given gengrid widget can be selected or not.
8308 * @param obj The gengrid object
8309 * @param no_select @c EINA_TRUE to make items selectable,
8310 * @c EINA_FALSE otherwise
8312 * This will make items in @p obj selectable or not. In the latter
8313 * case, any user interaction on the gengrid items will neither make
8314 * them appear selected nor them call their selection callback
8317 * @see elm_gengrid_no_select_mode_get()
8321 EAPI void elm_gengrid_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
8324 * Get whether items on a given gengrid widget can be selected or
8327 * @param obj The gengrid object
8328 * @return @c EINA_TRUE, if items are selectable, @c EINA_FALSE
8331 * @see elm_gengrid_no_select_mode_set() for more details
8335 EAPI Eina_Bool elm_gengrid_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8338 * Enable or disable multi-selection in a given gengrid widget
8340 * @param obj The gengrid object.
8341 * @param multi @c EINA_TRUE, to enable multi-selection,
8342 * @c EINA_FALSE to disable it.
8344 * Multi-selection is the ability to have @b more than one
8345 * item selected, on a given gengrid, simultaneously. When it is
8346 * enabled, a sequence of clicks on different items will make them
8347 * all selected, progressively. A click on an already selected item
8348 * will unselect it. If interacting via the keyboard,
8349 * multi-selection is enabled while holding the "Shift" key.
8351 * @note By default, multi-selection is @b disabled on gengrids
8353 * @see elm_gengrid_multi_select_get()
8357 EAPI void elm_gengrid_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
8360 * Get whether multi-selection is enabled or disabled for a given
8363 * @param obj The gengrid object.
8364 * @return @c EINA_TRUE, if multi-selection is enabled, @c
8365 * EINA_FALSE otherwise
8367 * @see elm_gengrid_multi_select_set() for more details
8371 EAPI Eina_Bool elm_gengrid_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8374 * Enable or disable bouncing effect for a given gengrid widget
8376 * @param obj The gengrid object
8377 * @param h_bounce @c EINA_TRUE, to enable @b horizontal bouncing,
8378 * @c EINA_FALSE to disable it
8379 * @param v_bounce @c EINA_TRUE, to enable @b vertical bouncing,
8380 * @c EINA_FALSE to disable it
8382 * The bouncing effect occurs whenever one reaches the gengrid's
8383 * edge's while panning it -- it will scroll past its limits a
8384 * little bit and return to the edge again, in a animated for,
8387 * @note By default, gengrids have bouncing enabled on both axis
8389 * @see elm_gengrid_bounce_get()
8393 EAPI void elm_gengrid_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
8396 * Get whether bouncing effects are enabled or disabled, for a
8397 * given gengrid widget, on each axis
8399 * @param obj The gengrid object
8400 * @param h_bounce Pointer to a variable where to store the
8401 * horizontal bouncing flag.
8402 * @param v_bounce Pointer to a variable where to store the
8403 * vertical bouncing flag.
8405 * @see elm_gengrid_bounce_set() for more details
8409 EAPI void elm_gengrid_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
8412 * Set a given gengrid widget's scrolling page size, relative to
8413 * its viewport size.
8415 * @param obj The gengrid object
8416 * @param h_pagerel The horizontal page (relative) size
8417 * @param v_pagerel The vertical page (relative) size
8419 * The gengrid's scroller is capable of binding scrolling by the
8420 * user to "pages". It means that, while scrolling and, specially
8421 * after releasing the mouse button, the grid will @b snap to the
8422 * nearest displaying page's area. When page sizes are set, the
8423 * grid's continuous content area is split into (equal) page sized
8426 * This function sets the size of a page <b>relatively to the
8427 * viewport dimensions</b> of the gengrid, for each axis. A value
8428 * @c 1.0 means "the exact viewport's size", in that axis, while @c
8429 * 0.0 turns paging off in that axis. Likewise, @c 0.5 means "half
8430 * a viewport". Sane usable values are, than, between @c 0.0 and @c
8431 * 1.0. Values beyond those will make it behave behave
8432 * inconsistently. If you only want one axis to snap to pages, use
8433 * the value @c 0.0 for the other one.
8435 * There is a function setting page size values in @b absolute
8436 * values, too -- elm_gengrid_page_size_set(). Naturally, its use
8437 * is mutually exclusive to this one.
8439 * @see elm_gengrid_page_relative_get()
8443 EAPI void elm_gengrid_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel) EINA_ARG_NONNULL(1);
8446 * Get a given gengrid widget's scrolling page size, relative to
8447 * its viewport size.
8449 * @param obj The gengrid object
8450 * @param h_pagerel Pointer to a variable where to store the
8451 * horizontal page (relative) size
8452 * @param v_pagerel Pointer to a variable where to store the
8453 * vertical page (relative) size
8455 * @see elm_gengrid_page_relative_set() for more details
8459 EAPI void elm_gengrid_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel) EINA_ARG_NONNULL(1);
8462 * Set a given gengrid widget's scrolling page size
8464 * @param obj The gengrid object
8465 * @param h_pagerel The horizontal page size, in pixels
8466 * @param v_pagerel The vertical page size, in pixels
8468 * The gengrid's scroller is capable of binding scrolling by the
8469 * user to "pages". It means that, while scrolling and, specially
8470 * after releasing the mouse button, the grid will @b snap to the
8471 * nearest displaying page's area. When page sizes are set, the
8472 * grid's continuous content area is split into (equal) page sized
8475 * This function sets the size of a page of the gengrid, in pixels,
8476 * for each axis. Sane usable values are, between @c 0 and the
8477 * dimensions of @p obj, for each axis. Values beyond those will
8478 * make it behave behave inconsistently. If you only want one axis
8479 * to snap to pages, use the value @c 0 for the other one.
8481 * There is a function setting page size values in @b relative
8482 * values, too -- elm_gengrid_page_relative_set(). Naturally, its
8483 * use is mutually exclusive to this one.
8487 EAPI void elm_gengrid_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize) EINA_ARG_NONNULL(1);
8490 * Set the direction in which a given gengrid widget will expand while
8491 * placing its items.
8493 * @param obj The gengrid object.
8494 * @param setting @c EINA_TRUE to make the gengrid expand
8495 * horizontally, @c EINA_FALSE to expand vertically.
8497 * When in "horizontal mode" (@c EINA_TRUE), items will be placed
8498 * in @b columns, from top to bottom and, when the space for a
8499 * column is filled, another one is started on the right, thus
8500 * expanding the grid horizontally. When in "vertical mode"
8501 * (@c EINA_FALSE), though, items will be placed in @b rows, from left
8502 * to right and, when the space for a row is filled, another one is
8503 * started below, thus expanding the grid vertically.
8505 * @see elm_gengrid_horizontal_get()
8509 EAPI void elm_gengrid_horizontal_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
8512 * Get for what direction a given gengrid widget will expand while
8513 * placing its items.
8515 * @param obj The gengrid object.
8516 * @return @c EINA_TRUE, if @p obj is set to expand horizontally,
8517 * @c EINA_FALSE if it's set to expand vertically.
8519 * @see elm_gengrid_horizontal_set() for more detais
8523 EAPI Eina_Bool elm_gengrid_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8526 * Get the first item in a given gengrid widget
8528 * @param obj The gengrid object
8529 * @return The first item's handle or @c NULL, if there are no
8530 * items in @p obj (and on errors)
8532 * This returns the first item in the @p obj's internal list of
8535 * @see elm_gengrid_last_item_get()
8539 EAPI Elm_Gengrid_Item *elm_gengrid_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8542 * Get the last item in a given gengrid widget
8544 * @param obj The gengrid object
8545 * @return The last item's handle or @c NULL, if there are no
8546 * items in @p obj (and on errors)
8548 * This returns the last item in the @p obj's internal list of
8551 * @see elm_gengrid_first_item_get()
8555 EAPI Elm_Gengrid_Item *elm_gengrid_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
8558 * Get the @b next item in a gengrid widget's internal list of items,
8559 * given a handle to one of those items.
8561 * @param item The gengrid item to fetch next from
8562 * @return The item after @p item, or @c NULL if there's none (and
8565 * This returns the item placed after the @p item, on the container
8568 * @see elm_gengrid_item_prev_get()
8572 EAPI Elm_Gengrid_Item *elm_gengrid_item_next_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8575 * Get the @b previous item in a gengrid widget's internal list of items,
8576 * given a handle to one of those items.
8578 * @param item The gengrid item to fetch previous from
8579 * @return The item before @p item, or @c NULL if there's none (and
8582 * This returns the item placed before the @p item, on the container
8585 * @see elm_gengrid_item_next_get()
8589 EAPI Elm_Gengrid_Item *elm_gengrid_item_prev_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8592 * Get the gengrid object's handle which contains a given gengrid
8595 * @param item The item to fetch the container from
8596 * @return The gengrid (parent) object
8598 * This returns the gengrid object itself that an item belongs to.
8602 EAPI Evas_Object *elm_gengrid_item_gengrid_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8605 * Remove a gengrid item from its parent, deleting it.
8607 * @param item The item to be removed.
8608 * @return @c EINA_TRUE on success or @c EINA_FALSE, otherwise.
8610 * @see elm_gengrid_clear(), to remove all items in a gengrid at
8615 EAPI void elm_gengrid_item_del(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8618 * Update the contents of a given gengrid item
8620 * @param item The gengrid item
8622 * This updates an item by calling all the item class functions
8623 * again to get the contents, labels and states. Use this when the
8624 * original item data has changed and you want the changes to be
8629 EAPI void elm_gengrid_item_update(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8632 * Get the Gengrid Item class for the given Gengrid Item.
8634 * @param item The gengrid item
8636 * This returns the Gengrid_Item_Class for the given item. It can be used to examine
8637 * the function pointers and item_style.
8641 EAPI const Elm_Gengrid_Item_Class *elm_gengrid_item_item_class_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8644 * Get the Gengrid Item class for the given Gengrid Item.
8646 * This sets the Gengrid_Item_Class for the given item. It can be used to examine
8647 * the function pointers and item_style.
8649 * @param item The gengrid item
8650 * @param gic The gengrid item class describing the function pointers and the item style.
8654 EAPI void elm_gengrid_item_item_class_set(Elm_Gengrid_Item *item, const Elm_Gengrid_Item_Class *gic) EINA_ARG_NONNULL(1, 2);
8657 * Return the data associated to a given gengrid item
8659 * @param item The gengrid item.
8660 * @return the data associated with this item.
8662 * This returns the @c data value passed on the
8663 * elm_gengrid_item_append() and related item addition calls.
8665 * @see elm_gengrid_item_append()
8666 * @see elm_gengrid_item_data_set()
8670 EAPI void *elm_gengrid_item_data_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8673 * Set the data associated with a given gengrid item
8675 * @param item The gengrid item
8676 * @param data The data pointer to set on it
8678 * This @b overrides the @c data value passed on the
8679 * elm_gengrid_item_append() and related item addition calls. This
8680 * function @b won't call elm_gengrid_item_update() automatically,
8681 * so you'd issue it afterwards if you want to have the item
8682 * updated to reflect the new data.
8684 * @see elm_gengrid_item_data_get()
8685 * @see elm_gengrid_item_update()
8689 EAPI void elm_gengrid_item_data_set(Elm_Gengrid_Item *item, const void *data) EINA_ARG_NONNULL(1);
8692 * Get a given gengrid item's position, relative to the whole
8693 * gengrid's grid area.
8695 * @param item The Gengrid item.
8696 * @param x Pointer to variable to store the item's <b>row number</b>.
8697 * @param y Pointer to variable to store the item's <b>column number</b>.
8699 * This returns the "logical" position of the item within the
8700 * gengrid. For example, @c (0, 1) would stand for first row,
8705 EAPI void elm_gengrid_item_pos_get(const Elm_Gengrid_Item *item, unsigned int *x, unsigned int *y) EINA_ARG_NONNULL(1);
8708 * Set whether a given gengrid item is selected or not
8710 * @param item The gengrid item
8711 * @param selected Use @c EINA_TRUE, to make it selected, @c
8712 * EINA_FALSE to make it unselected
8714 * This sets the selected state of an item. If multi-selection is
8715 * not enabled on the containing gengrid and @p selected is @c
8716 * EINA_TRUE, any other previously selected items will get
8717 * unselected in favor of this new one.
8719 * @see elm_gengrid_item_selected_get()
8723 EAPI void elm_gengrid_item_selected_set(Elm_Gengrid_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
8726 * Get whether a given gengrid item is selected or not
8728 * @param item The gengrid item
8729 * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
8731 * This API returns EINA_TRUE for all the items selected in multi-select mode as well.
8733 * @see elm_gengrid_item_selected_set() for more details
8737 EAPI Eina_Bool elm_gengrid_item_selected_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8740 * Get the real Evas object created to implement the view of a
8741 * given gengrid item
8743 * @param item The gengrid item.
8744 * @return the Evas object implementing this item's view.
8746 * This returns the actual Evas object used to implement the
8747 * specified gengrid item's view. This may be @c NULL, as it may
8748 * not have been created or may have been deleted, at any time, by
8749 * the gengrid. <b>Do not modify this object</b> (move, resize,
8750 * show, hide, etc.), as the gengrid is controlling it. This
8751 * function is for querying, emitting custom signals or hooking
8752 * lower level callbacks for events on that object. Do not delete
8753 * this object under any circumstances.
8755 * @see elm_gengrid_item_data_get()
8759 EAPI const Evas_Object *elm_gengrid_item_object_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8762 * Show the portion of a gengrid's internal grid containing a given
8763 * item, @b immediately.
8765 * @param item The item to display
8767 * This causes gengrid to @b redraw its viewport's contents to the
8768 * region contining the given @p item item, if it is not fully
8771 * @see elm_gengrid_item_bring_in()
8775 EAPI void elm_gengrid_item_show(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8778 * Animatedly bring in, to the visible area of a gengrid, a given
8781 * @param item The gengrid item to display
8783 * This causes gengrid to jump to the given @p item and show
8784 * it (by scrolling), if it is not fully visible. This will use
8785 * animation to do so and take a period of time to complete.
8787 * @see elm_gengrid_item_show()
8791 EAPI void elm_gengrid_item_bring_in(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8794 * Set whether a given gengrid item is disabled or not.
8796 * @param item The gengrid item
8797 * @param disabled Use @c EINA_TRUE, true disable it, @c EINA_FALSE
8798 * to enable it back.
8800 * A disabled item cannot be selected or unselected. It will also
8801 * change its appearance, to signal the user it's disabled.
8803 * @see elm_gengrid_item_disabled_get()
8807 EAPI void elm_gengrid_item_disabled_set(Elm_Gengrid_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
8810 * Get whether a given gengrid item is disabled or not.
8812 * @param item The gengrid item
8813 * @return @c EINA_TRUE, if it's disabled, @c EINA_FALSE otherwise
8816 * @see elm_gengrid_item_disabled_set() for more details
8820 EAPI Eina_Bool elm_gengrid_item_disabled_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8823 * Set the text to be shown in a given gengrid item's tooltips.
8825 * @param item The gengrid item
8826 * @param text The text to set in the content
8828 * This call will setup the text to be used as tooltip to that item
8829 * (analogous to elm_object_tooltip_text_set(), but being item
8830 * tooltips with higher precedence than object tooltips). It can
8831 * have only one tooltip at a time, so any previous tooltip data
8836 EAPI void elm_gengrid_item_tooltip_text_set(Elm_Gengrid_Item *item, const char *text) EINA_ARG_NONNULL(1);
8839 * Set the content to be shown in a given gengrid item's tooltip
8841 * @param item The gengrid item.
8842 * @param func The function returning the tooltip contents.
8843 * @param data What to provide to @a func as callback data/context.
8844 * @param del_cb Called when data is not needed anymore, either when
8845 * another callback replaces @p func, the tooltip is unset with
8846 * elm_gengrid_item_tooltip_unset() or the owner @p item
8847 * dies. This callback receives as its first parameter the
8848 * given @p data, being @c event_info the item handle.
8850 * This call will setup the tooltip's contents to @p item
8851 * (analogous to elm_object_tooltip_content_cb_set(), but being
8852 * item tooltips with higher precedence than object tooltips). It
8853 * can have only one tooltip at a time, so any previous tooltip
8854 * content will get removed. @p func (with @p data) will be called
8855 * every time Elementary needs to show the tooltip and it should
8856 * return a valid Evas object, which will be fully managed by the
8857 * tooltip system, getting deleted when the tooltip is gone.
8861 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);
8864 * Unset a tooltip from a given gengrid item
8866 * @param item gengrid item to remove a previously set tooltip from.
8868 * This call removes any tooltip set on @p item. The callback
8869 * provided as @c del_cb to
8870 * elm_gengrid_item_tooltip_content_cb_set() will be called to
8871 * notify it is not used anymore (and have resources cleaned, if
8874 * @see elm_gengrid_item_tooltip_content_cb_set()
8878 EAPI void elm_gengrid_item_tooltip_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8881 * Set a different @b style for a given gengrid item's tooltip.
8883 * @param item gengrid item with tooltip set
8884 * @param style the <b>theme style</b> to use on tooltips (e.g. @c
8885 * "default", @c "transparent", etc)
8887 * Tooltips can have <b>alternate styles</b> to be displayed on,
8888 * which are defined by the theme set on Elementary. This function
8889 * works analogously as elm_object_tooltip_style_set(), but here
8890 * applied only to gengrid item objects. The default style for
8891 * tooltips is @c "default".
8893 * @note before you set a style you should define a tooltip with
8894 * elm_gengrid_item_tooltip_content_cb_set() or
8895 * elm_gengrid_item_tooltip_text_set()
8897 * @see elm_gengrid_item_tooltip_style_get()
8901 EAPI void elm_gengrid_item_tooltip_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
8904 * Get the style set a given gengrid item's tooltip.
8906 * @param item gengrid item with tooltip already set on.
8907 * @return style the theme style in use, which defaults to
8908 * "default". If the object does not have a tooltip set,
8909 * then @c NULL is returned.
8911 * @see elm_gengrid_item_tooltip_style_set() for more details
8915 EAPI const char *elm_gengrid_item_tooltip_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8917 * Set the type of mouse pointer/cursor decoration to be shown,
8918 * when the mouse pointer is over the given gengrid widget item
8920 * @param item gengrid item to customize cursor on
8921 * @param cursor the cursor type's name
8923 * This function works analogously as elm_object_cursor_set(), but
8924 * here the cursor's changing area is restricted to the item's
8925 * area, and not the whole widget's. Note that that item cursors
8926 * have precedence over widget cursors, so that a mouse over @p
8927 * item will always show cursor @p type.
8929 * If this function is called twice for an object, a previously set
8930 * cursor will be unset on the second call.
8932 * @see elm_object_cursor_set()
8933 * @see elm_gengrid_item_cursor_get()
8934 * @see elm_gengrid_item_cursor_unset()
8938 EAPI void elm_gengrid_item_cursor_set(Elm_Gengrid_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
8941 * Get the type of mouse pointer/cursor decoration set to be shown,
8942 * when the mouse pointer is over the given gengrid widget item
8944 * @param item gengrid item with custom cursor set
8945 * @return the cursor type's name or @c NULL, if no custom cursors
8946 * were set to @p item (and on errors)
8948 * @see elm_object_cursor_get()
8949 * @see elm_gengrid_item_cursor_set() for more details
8950 * @see elm_gengrid_item_cursor_unset()
8954 EAPI const char *elm_gengrid_item_cursor_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8957 * Unset any custom mouse pointer/cursor decoration set to be
8958 * shown, when the mouse pointer is over the given gengrid widget
8959 * item, thus making it show the @b default cursor again.
8961 * @param item a gengrid item
8963 * Use this call to undo any custom settings on this item's cursor
8964 * decoration, bringing it back to defaults (no custom style set).
8966 * @see elm_object_cursor_unset()
8967 * @see elm_gengrid_item_cursor_set() for more details
8971 EAPI void elm_gengrid_item_cursor_unset(Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
8974 * Set a different @b style for a given custom cursor set for a
8977 * @param item gengrid item with custom cursor set
8978 * @param style the <b>theme style</b> to use (e.g. @c "default",
8979 * @c "transparent", etc)
8981 * This function only makes sense when one is using custom mouse
8982 * cursor decorations <b>defined in a theme file</b> , which can
8983 * have, given a cursor name/type, <b>alternate styles</b> on
8984 * it. It works analogously as elm_object_cursor_style_set(), but
8985 * here applied only to gengrid item objects.
8987 * @warning Before you set a cursor style you should have defined a
8988 * custom cursor previously on the item, with
8989 * elm_gengrid_item_cursor_set()
8991 * @see elm_gengrid_item_cursor_engine_only_set()
8992 * @see elm_gengrid_item_cursor_style_get()
8996 EAPI void elm_gengrid_item_cursor_style_set(Elm_Gengrid_Item *item, const char *style) EINA_ARG_NONNULL(1);
8999 * Get the current @b style set for a given gengrid item's custom
9002 * @param item gengrid item with custom cursor set.
9003 * @return style the cursor style in use. If the object does not
9004 * have a cursor set, then @c NULL is returned.
9006 * @see elm_gengrid_item_cursor_style_set() for more details
9010 EAPI const char *elm_gengrid_item_cursor_style_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9013 * Set if the (custom) cursor for a given gengrid item should be
9014 * searched in its theme, also, or should only rely on the
9017 * @param item item with custom (custom) cursor already set on
9018 * @param engine_only Use @c EINA_TRUE to have cursors looked for
9019 * only on those provided by the rendering engine, @c EINA_FALSE to
9020 * have them searched on the widget's theme, as well.
9022 * @note This call is of use only if you've set a custom cursor
9023 * for gengrid items, with elm_gengrid_item_cursor_set().
9025 * @note By default, cursors will only be looked for between those
9026 * provided by the rendering engine.
9030 EAPI void elm_gengrid_item_cursor_engine_only_set(Elm_Gengrid_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
9033 * Get if the (custom) cursor for a given gengrid item is being
9034 * searched in its theme, also, or is only relying on the rendering
9037 * @param item a gengrid item
9038 * @return @c EINA_TRUE, if cursors are being looked for only on
9039 * those provided by the rendering engine, @c EINA_FALSE if they
9040 * are being searched on the widget's theme, as well.
9042 * @see elm_gengrid_item_cursor_engine_only_set(), for more details
9046 EAPI Eina_Bool elm_gengrid_item_cursor_engine_only_get(const Elm_Gengrid_Item *item) EINA_ARG_NONNULL(1);
9049 * Remove all items from a given gengrid widget
9051 * @param obj The gengrid object.
9053 * This removes (and deletes) all items in @p obj, leaving it
9056 * @see elm_gengrid_item_del(), to remove just one item.
9060 EAPI void elm_gengrid_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
9063 * Get the selected item in a given gengrid widget
9065 * @param obj The gengrid object.
9066 * @return The selected item's handleor @c NULL, if none is
9067 * selected at the moment (and on errors)
9069 * This returns the selected item in @p obj. If multi selection is
9070 * enabled on @p obj (@see elm_gengrid_multi_select_set()), only
9071 * the first item in the list is selected, which might not be very
9072 * useful. For that case, see elm_gengrid_selected_items_get().
9076 EAPI Elm_Gengrid_Item *elm_gengrid_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9079 * Get <b>a list</b> of selected items in a given gengrid
9081 * @param obj The gengrid object.
9082 * @return The list of selected items or @c NULL, if none is
9083 * selected at the moment (and on errors)
9085 * This returns a list of the selected items, in the order that
9086 * they appear in the grid. This list is only valid as long as no
9087 * more items are selected or unselected (or unselected implictly
9088 * by deletion). The list contains #Elm_Gengrid_Item pointers as
9091 * @see elm_gengrid_selected_item_get()
9095 EAPI const Eina_List *elm_gengrid_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9102 * @defgroup Clock Clock
9104 * This is a @b digital clock widget. In its default theme, it has a
9105 * vintage "flipping numbers clock" appearance, which will animate
9106 * sheets of individual algarisms individually as time goes by.
9108 * A newly created clock will fetch system's time (already
9109 * considering local time adjustments) to start with, and will tick
9110 * accondingly. It may or may not show seconds.
9112 * Clocks have an @b edition mode. When in it, the sheets will
9113 * display extra arrow indications on the top and bottom and the
9114 * user may click on them to raise or lower the time values. After
9115 * it's told to exit edition mode, it will keep ticking with that
9116 * new time set (it keeps the difference from local time).
9118 * Also, when under edition mode, user clicks on the cited arrows
9119 * which are @b held for some time will make the clock to flip the
9120 * sheet, thus editing the time, continuosly and automatically for
9121 * the user. The interval between sheet flips will keep growing in
9122 * time, so that it helps the user to reach a time which is distant
9125 * The time display is, by default, in military mode (24h), but an
9126 * am/pm indicator may be optionally shown, too, when it will
9129 * Smart callbacks one can register to:
9130 * - "changed" - the clock's user changed the time
9132 * Here is an example on its usage:
9133 * @li @ref clock_example
9142 * Identifiers for which clock digits should be editable, when a
9143 * clock widget is in edition mode. Values may be ORed together to
9144 * make a mask, naturally.
9146 * @see elm_clock_edit_set()
9147 * @see elm_clock_digit_edit_set()
9149 typedef enum _Elm_Clock_Digedit
9151 ELM_CLOCK_NONE = 0, /**< Default value. Means that all digits are editable, when in edition mode. */
9152 ELM_CLOCK_HOUR_DECIMAL = 1 << 0, /**< Decimal algarism of hours value should be editable */
9153 ELM_CLOCK_HOUR_UNIT = 1 << 1, /**< Unit algarism of hours value should be editable */
9154 ELM_CLOCK_MIN_DECIMAL = 1 << 2, /**< Decimal algarism of minutes value should be editable */
9155 ELM_CLOCK_MIN_UNIT = 1 << 3, /**< Unit algarism of minutes value should be editable */
9156 ELM_CLOCK_SEC_DECIMAL = 1 << 4, /**< Decimal algarism of seconds value should be editable */
9157 ELM_CLOCK_SEC_UNIT = 1 << 5, /**< Unit algarism of seconds value should be editable */
9158 ELM_CLOCK_ALL = (1 << 6) - 1 /**< All digits should be editable */
9159 } Elm_Clock_Digedit;
9162 * Add a new clock widget to the given parent Elementary
9163 * (container) object
9165 * @param parent The parent object
9166 * @return a new clock widget handle or @c NULL, on errors
9168 * This function inserts a new clock widget on the canvas.
9172 EAPI Evas_Object *elm_clock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9175 * Set a clock widget's time, programmatically
9177 * @param obj The clock widget object
9178 * @param hrs The hours to set
9179 * @param min The minutes to set
9180 * @param sec The secondes to set
9182 * This function updates the time that is showed by the clock
9185 * Values @b must be set within the following ranges:
9186 * - 0 - 23, for hours
9187 * - 0 - 59, for minutes
9188 * - 0 - 59, for seconds,
9190 * even if the clock is not in "military" mode.
9192 * @warning The behavior for values set out of those ranges is @b
9197 EAPI void elm_clock_time_set(Evas_Object *obj, int hrs, int min, int sec) EINA_ARG_NONNULL(1);
9200 * Get a clock widget's time values
9202 * @param obj The clock object
9203 * @param[out] hrs Pointer to the variable to get the hours value
9204 * @param[out] min Pointer to the variable to get the minutes value
9205 * @param[out] sec Pointer to the variable to get the seconds value
9207 * This function gets the time set for @p obj, returning
9208 * it on the variables passed as the arguments to function
9210 * @note Use @c NULL pointers on the time values you're not
9211 * interested in: they'll be ignored by the function.
9215 EAPI void elm_clock_time_get(const Evas_Object *obj, int *hrs, int *min, int *sec) EINA_ARG_NONNULL(1);
9218 * Set whether a given clock widget is under <b>edition mode</b> or
9219 * under (default) displaying-only mode.
9221 * @param obj The clock object
9222 * @param edit @c EINA_TRUE to put it in edition, @c EINA_FALSE to
9223 * put it back to "displaying only" mode
9225 * This function makes a clock's time to be editable or not <b>by
9226 * user interaction</b>. When in edition mode, clocks @b stop
9227 * ticking, until one brings them back to canonical mode. The
9228 * elm_clock_digit_edit_set() function will influence which digits
9229 * of the clock will be editable. By default, all of them will be
9230 * (#ELM_CLOCK_NONE).
9232 * @note am/pm sheets, if being shown, will @b always be editable
9233 * under edition mode.
9235 * @see elm_clock_edit_get()
9239 EAPI void elm_clock_edit_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
9242 * Retrieve whether a given clock widget is under <b>edition
9243 * mode</b> or under (default) displaying-only mode.
9245 * @param obj The clock object
9246 * @param edit @c EINA_TRUE, if it's in edition mode, @c EINA_FALSE
9249 * This function retrieves whether the clock's time can be edited
9250 * or not by user interaction.
9252 * @see elm_clock_edit_set() for more details
9256 EAPI Eina_Bool elm_clock_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9259 * Set what digits of the given clock widget should be editable
9260 * when in edition mode.
9262 * @param obj The clock object
9263 * @param digedit Bit mask indicating the digits to be editable
9264 * (values in #Elm_Clock_Digedit).
9266 * If the @p digedit param is #ELM_CLOCK_NONE, editing will be
9267 * disabled on @p obj (same effect as elm_clock_edit_set(), with @c
9270 * @see elm_clock_digit_edit_get()
9274 EAPI void elm_clock_digit_edit_set(Evas_Object *obj, Elm_Clock_Digedit digedit) EINA_ARG_NONNULL(1);
9277 * Retrieve what digits of the given clock widget should be
9278 * editable when in edition mode.
9280 * @param obj The clock object
9281 * @return Bit mask indicating the digits to be editable
9282 * (values in #Elm_Clock_Digedit).
9284 * @see elm_clock_digit_edit_set() for more details
9288 EAPI Elm_Clock_Digedit elm_clock_digit_edit_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9291 * Set if the given clock widget must show hours in military or
9294 * @param obj The clock object
9295 * @param am_pm @c EINA_TRUE to put it in am/pm mode, @c EINA_FALSE
9298 * This function sets if the clock must show hours in military or
9299 * am/pm mode. In some countries like Brazil the military mode
9300 * (00-24h-format) is used, in opposition to the USA, where the
9301 * am/pm mode is more commonly used.
9303 * @see elm_clock_show_am_pm_get()
9307 EAPI void elm_clock_show_am_pm_set(Evas_Object *obj, Eina_Bool am_pm) EINA_ARG_NONNULL(1);
9310 * Get if the given clock widget shows hours in military or am/pm
9313 * @param obj The clock object
9314 * @return @c EINA_TRUE, if in am/pm mode, @c EINA_FALSE if in
9317 * This function gets if the clock shows hours in military or am/pm
9320 * @see elm_clock_show_am_pm_set() for more details
9324 EAPI Eina_Bool elm_clock_show_am_pm_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9327 * Set if the given clock widget must show time with seconds or not
9329 * @param obj The clock object
9330 * @param seconds @c EINA_TRUE to show seconds, @c EINA_FALSE otherwise
9332 * This function sets if the given clock must show or not elapsed
9333 * seconds. By default, they are @b not shown.
9335 * @see elm_clock_show_seconds_get()
9339 EAPI void elm_clock_show_seconds_set(Evas_Object *obj, Eina_Bool seconds) EINA_ARG_NONNULL(1);
9342 * Get whether the given clock widget is showing time with seconds
9345 * @param obj The clock object
9346 * @return @c EINA_TRUE if it's showing seconds, @c EINA_FALSE otherwise
9348 * This function gets whether @p obj is showing or not the elapsed
9351 * @see elm_clock_show_seconds_set()
9355 EAPI Eina_Bool elm_clock_show_seconds_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9358 * Set the interval on time updates for an user mouse button hold
9359 * on clock widgets' time edition.
9361 * @param obj The clock object
9362 * @param interval The (first) interval value in seconds
9364 * This interval value is @b decreased while the user holds the
9365 * mouse pointer either incrementing or decrementing a given the
9366 * clock digit's value.
9368 * This helps the user to get to a given time distant from the
9369 * current one easier/faster, as it will start to flip quicker and
9370 * quicker on mouse button holds.
9372 * The calculation for the next flip interval value, starting from
9373 * the one set with this call, is the previous interval divided by
9374 * 1.05, so it decreases a little bit.
9376 * The default starting interval value for automatic flips is
9379 * @see elm_clock_interval_get()
9383 EAPI void elm_clock_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
9386 * Get the interval on time updates for an user mouse button hold
9387 * on clock widgets' time edition.
9389 * @param obj The clock object
9390 * @return The (first) interval value, in seconds, set on it
9392 * @see elm_clock_interval_set() for more details
9396 EAPI double elm_clock_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9403 * @defgroup Layout Layout
9405 * @image html img/widget/layout/preview-00.png
9406 * @image latex img/widget/layout/preview-00.eps width=\textwidth
9408 * @image html img/layout-predefined.png
9409 * @image latex img/layout-predefined.eps width=\textwidth
9411 * This is a container widget that takes a standard Edje design file and
9412 * wraps it very thinly in a widget.
9414 * An Edje design (theme) file has a very wide range of possibilities to
9415 * describe the behavior of elements added to the Layout. Check out the Edje
9416 * documentation and the EDC reference to get more information about what can
9417 * be done with Edje.
9419 * Just like @ref List, @ref Box, and other container widgets, any
9420 * object added to the Layout will become its child, meaning that it will be
9421 * deleted if the Layout is deleted, move if the Layout is moved, and so on.
9423 * The Layout widget can contain as many Contents, Boxes or Tables as
9424 * described in its theme file. For instance, objects can be added to
9425 * different Tables by specifying the respective Table part names. The same
9426 * is valid for Content and Box.
9428 * The objects added as child of the Layout will behave as described in the
9429 * part description where they were added. There are 3 possible types of
9430 * parts where a child can be added:
9432 * @section secContent Content (SWALLOW part)
9434 * Only one object can be added to the @c SWALLOW part (but you still can
9435 * have many @c SWALLOW parts and one object on each of them). Use the @c
9436 * elm_object_content_set/get/unset functions to set, retrieve and unset
9437 * objects as content of the @c SWALLOW. After being set to this part, the
9438 * object size, position, visibility, clipping and other description
9439 * properties will be totally controled by the description of the given part
9440 * (inside the Edje theme file).
9442 * One can use @c evas_object_size_hint_* functions on the child to have some
9443 * kind of control over its behavior, but the resulting behavior will still
9444 * depend heavily on the @c SWALLOW part description.
9446 * The Edje theme also can change the part description, based on signals or
9447 * scripts running inside the theme. This change can also be animated. All of
9448 * this will affect the child object set as content accordingly. The object
9449 * size will be changed if the part size is changed, it will animate move if
9450 * the part is moving, and so on.
9452 * The following picture demonstrates a Layout widget with a child object
9453 * added to its @c SWALLOW:
9455 * @image html layout_swallow.png
9456 * @image latex layout_swallow.eps width=\textwidth
9458 * @section secBox Box (BOX part)
9460 * An Edje @c BOX part is very similar to the Elementary @ref Box widget. It
9461 * allows one to add objects to the box and have them distributed along its
9462 * area, accordingly to the specified @a layout property (now by @a layout we
9463 * mean the chosen layouting design of the Box, not the Layout widget
9466 * A similar effect for having a box with its position, size and other things
9467 * controled by the Layout theme would be to create an Elementary @ref Box
9468 * widget and add it as a Content in the @c SWALLOW part.
9470 * The main difference of using the Layout Box is that its behavior, the box
9471 * properties like layouting format, padding, align, etc. will be all
9472 * controled by the theme. This means, for example, that a signal could be
9473 * sent to the Layout theme (with elm_object_signal_emit()) and the theme
9474 * handled the signal by changing the box padding, or align, or both. Using
9475 * the Elementary @ref Box widget is not necessarily harder or easier, it
9476 * just depends on the circunstances and requirements.
9478 * The Layout Box can be used through the @c elm_layout_box_* set of
9481 * The following picture demonstrates a Layout widget with many child objects
9482 * added to its @c BOX part:
9484 * @image html layout_box.png
9485 * @image latex layout_box.eps width=\textwidth
9487 * @section secTable Table (TABLE part)
9489 * Just like the @ref secBox, the Layout Table is very similar to the
9490 * Elementary @ref Table widget. It allows one to add objects to the Table
9491 * specifying the row and column where the object should be added, and any
9492 * column or row span if necessary.
9494 * Again, we could have this design by adding a @ref Table widget to the @c
9495 * SWALLOW part using elm_object_content_part_set(). The same difference happens
9496 * here when choosing to use the Layout Table (a @c TABLE part) instead of
9497 * the @ref Table plus @c SWALLOW part. It's just a matter of convenience.
9499 * The Layout Table can be used through the @c elm_layout_table_* set of
9502 * The following picture demonstrates a Layout widget with many child objects
9503 * added to its @c TABLE part:
9505 * @image html layout_table.png
9506 * @image latex layout_table.eps width=\textwidth
9508 * @section secPredef Predefined Layouts
9510 * Another interesting thing about the Layout widget is that it offers some
9511 * predefined themes that come with the default Elementary theme. These
9512 * themes can be set by the call elm_layout_theme_set(), and provide some
9513 * basic functionality depending on the theme used.
9515 * Most of them already send some signals, some already provide a toolbar or
9516 * back and next buttons.
9518 * These are available predefined theme layouts. All of them have class = @c
9519 * layout, group = @c application, and style = one of the following options:
9521 * @li @c toolbar-content - application with toolbar and main content area
9522 * @li @c toolbar-content-back - application with toolbar and main content
9523 * area with a back button and title area
9524 * @li @c toolbar-content-back-next - application with toolbar and main
9525 * content area with a back and next buttons and title area
9526 * @li @c content-back - application with a main content area with a back
9527 * button and title area
9528 * @li @c content-back-next - application with a main content area with a
9529 * back and next buttons and title area
9530 * @li @c toolbar-vbox - application with toolbar and main content area as a
9532 * @li @c toolbar-table - application with toolbar and main content area as a
9535 * @section secExamples Examples
9537 * Some examples of the Layout widget can be found here:
9538 * @li @ref layout_example_01
9539 * @li @ref layout_example_02
9540 * @li @ref layout_example_03
9541 * @li @ref layout_example_edc
9546 * Add a new layout to the parent
9548 * @param parent The parent object
9549 * @return The new object or NULL if it cannot be created
9551 * @see elm_layout_file_set()
9552 * @see elm_layout_theme_set()
9556 EAPI Evas_Object *elm_layout_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
9558 * Set the file that will be used as layout
9560 * @param obj The layout object
9561 * @param file The path to file (edj) that will be used as layout
9562 * @param group The group that the layout belongs in edje file
9564 * @return (1 = success, 0 = error)
9568 EAPI Eina_Bool elm_layout_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
9570 * Set the edje group from the elementary theme that will be used as layout
9572 * @param obj The layout object
9573 * @param clas the clas of the group
9574 * @param group the group
9575 * @param style the style to used
9577 * @return (1 = success, 0 = error)
9581 EAPI Eina_Bool elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, const char *style) EINA_ARG_NONNULL(1);
9583 * Set the layout content.
9585 * @param obj The layout object
9586 * @param swallow The swallow part name in the edje file
9587 * @param content The child that will be added in this layout object
9589 * Once the content object is set, a previously set one will be deleted.
9590 * If you want to keep that old content object, use the
9591 * elm_object_content_part_unset() function.
9593 * @note In an Edje theme, the part used as a content container is called @c
9594 * SWALLOW. This is why the parameter name is called @p swallow, but it is
9595 * expected to be a part name just like the second parameter of
9596 * elm_layout_box_append().
9598 * @see elm_layout_box_append()
9599 * @see elm_object_content_part_get()
9600 * @see elm_object_content_part_unset()
9605 EAPI void elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
9607 * Get the child object in the given content part.
9609 * @param obj The layout object
9610 * @param swallow The SWALLOW part to get its content
9612 * @return The swallowed object or NULL if none or an error occurred
9614 * @see elm_object_content_part_set()
9618 EAPI Evas_Object *elm_layout_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
9620 * Unset the layout content.
9622 * @param obj The layout object
9623 * @param swallow The swallow part name in the edje file
9624 * @return The content that was being used
9626 * Unparent and return the content object which was set for this part.
9628 * @see elm_object_content_part_set()
9632 EAPI Evas_Object *elm_layout_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
9634 * Set the text of the given part
9636 * @param obj The layout object
9637 * @param part The TEXT part where to set the text
9638 * @param text The text to set
9641 * @deprecated use elm_object_text_* instead.
9643 EINA_DEPRECATED EAPI void elm_layout_text_set(Evas_Object *obj, const char *part, const char *text) EINA_ARG_NONNULL(1);
9645 * Get the text set in the given part
9647 * @param obj The layout object
9648 * @param part The TEXT part to retrieve the text off
9650 * @return The text set in @p part
9653 * @deprecated use elm_object_text_* instead.
9655 EINA_DEPRECATED EAPI const char *elm_layout_text_get(const Evas_Object *obj, const char *part) EINA_ARG_NONNULL(1);
9657 * Append child to layout box part.
9659 * @param obj the layout object
9660 * @param part the box part to which the object will be appended.
9661 * @param child the child object to append to box.
9663 * Once the object is appended, it will become child of the layout. Its
9664 * lifetime will be bound to the layout, whenever the layout dies the child
9665 * will be deleted automatically. One should use elm_layout_box_remove() to
9666 * make this layout forget about the object.
9668 * @see elm_layout_box_prepend()
9669 * @see elm_layout_box_insert_before()
9670 * @see elm_layout_box_insert_at()
9671 * @see elm_layout_box_remove()
9675 EAPI void elm_layout_box_append(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
9677 * Prepend child to layout box part.
9679 * @param obj the layout object
9680 * @param part the box part to prepend.
9681 * @param child the child object to prepend to box.
9683 * Once the object is prepended, it will become child of the layout. Its
9684 * lifetime will be bound to the layout, whenever the layout dies the child
9685 * will be deleted automatically. One should use elm_layout_box_remove() to
9686 * make this layout forget about the object.
9688 * @see elm_layout_box_append()
9689 * @see elm_layout_box_insert_before()
9690 * @see elm_layout_box_insert_at()
9691 * @see elm_layout_box_remove()
9695 EAPI void elm_layout_box_prepend(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1);
9697 * Insert child to layout box part before a reference object.
9699 * @param obj the layout object
9700 * @param part the box part to insert.
9701 * @param child the child object to insert into box.
9702 * @param reference another reference object to insert before in box.
9704 * Once the object is inserted, it will become child of the layout. Its
9705 * lifetime will be bound to the layout, whenever the layout dies the child
9706 * will be deleted automatically. One should use elm_layout_box_remove() to
9707 * make this layout forget about the object.
9709 * @see elm_layout_box_append()
9710 * @see elm_layout_box_prepend()
9711 * @see elm_layout_box_insert_before()
9712 * @see elm_layout_box_remove()
9716 EAPI void elm_layout_box_insert_before(Evas_Object *obj, const char *part, Evas_Object *child, const Evas_Object *reference) EINA_ARG_NONNULL(1);
9718 * Insert child to layout box part at a given position.
9720 * @param obj the layout object
9721 * @param part the box part to insert.
9722 * @param child the child object to insert into box.
9723 * @param pos the numeric position >=0 to insert the child.
9725 * Once the object is inserted, it will become child of the layout. Its
9726 * lifetime will be bound to the layout, whenever the layout dies the child
9727 * will be deleted automatically. One should use elm_layout_box_remove() to
9728 * make this layout forget about the object.
9730 * @see elm_layout_box_append()
9731 * @see elm_layout_box_prepend()
9732 * @see elm_layout_box_insert_before()
9733 * @see elm_layout_box_remove()
9737 EAPI void elm_layout_box_insert_at(Evas_Object *obj, const char *part, Evas_Object *child, unsigned int pos) EINA_ARG_NONNULL(1);
9739 * Remove a child of the given part box.
9741 * @param obj The layout object
9742 * @param part The box part name to remove child.
9743 * @param child The object to remove from box.
9744 * @return The object that was being used, or NULL if not found.
9746 * The object will be removed from the box part and its lifetime will
9747 * not be handled by the layout anymore. This is equivalent to
9748 * elm_object_content_part_unset() for box.
9750 * @see elm_layout_box_append()
9751 * @see elm_layout_box_remove_all()
9755 EAPI Evas_Object *elm_layout_box_remove(Evas_Object *obj, const char *part, Evas_Object *child) EINA_ARG_NONNULL(1, 2, 3);
9757 * Remove all child of the given part box.
9759 * @param obj The layout object
9760 * @param part The box part name to remove child.
9761 * @param clear If EINA_TRUE, then all objects will be deleted as
9762 * well, otherwise they will just be removed and will be
9763 * dangling on the canvas.
9765 * The objects will be removed from the box part and their lifetime will
9766 * not be handled by the layout anymore. This is equivalent to
9767 * elm_layout_box_remove() for all box children.
9769 * @see elm_layout_box_append()
9770 * @see elm_layout_box_remove()
9774 EAPI void elm_layout_box_remove_all(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
9776 * Insert child to layout table part.
9778 * @param obj the layout object
9779 * @param part the box part to pack child.
9780 * @param child_obj the child object to pack into table.
9781 * @param col the column to which the child should be added. (>= 0)
9782 * @param row the row to which the child should be added. (>= 0)
9783 * @param colspan how many columns should be used to store this object. (>=
9785 * @param rowspan how many rows should be used to store this object. (>= 1)
9787 * Once the object is inserted, it will become child of the table. Its
9788 * lifetime will be bound to the layout, and whenever the layout dies the
9789 * child will be deleted automatically. One should use
9790 * elm_layout_table_remove() to make this layout forget about the object.
9792 * If @p colspan or @p rowspan are bigger than 1, that object will occupy
9793 * more space than a single cell. For instance, the following code:
9795 * elm_layout_table_pack(layout, "table_part", child, 0, 1, 3, 1);
9798 * Would result in an object being added like the following picture:
9800 * @image html layout_colspan.png
9801 * @image latex layout_colspan.eps width=\textwidth
9803 * @see elm_layout_table_unpack()
9804 * @see elm_layout_table_clear()
9808 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);
9810 * Unpack (remove) a child of the given part table.
9812 * @param obj The layout object
9813 * @param part The table part name to remove child.
9814 * @param child_obj The object to remove from table.
9815 * @return The object that was being used, or NULL if not found.
9817 * The object will be unpacked from the table part and its lifetime
9818 * will not be handled by the layout anymore. This is equivalent to
9819 * elm_object_content_part_unset() for table.
9821 * @see elm_layout_table_pack()
9822 * @see elm_layout_table_clear()
9826 EAPI Evas_Object *elm_layout_table_unpack(Evas_Object *obj, const char *part, Evas_Object *child_obj) EINA_ARG_NONNULL(1, 2, 3);
9828 * Remove all child of the given part table.
9830 * @param obj The layout object
9831 * @param part The table part name to remove child.
9832 * @param clear If EINA_TRUE, then all objects will be deleted as
9833 * well, otherwise they will just be removed and will be
9834 * dangling on the canvas.
9836 * The objects will be removed from the table part and their lifetime will
9837 * not be handled by the layout anymore. This is equivalent to
9838 * elm_layout_table_unpack() for all table children.
9840 * @see elm_layout_table_pack()
9841 * @see elm_layout_table_unpack()
9845 EAPI void elm_layout_table_clear(Evas_Object *obj, const char *part, Eina_Bool clear) EINA_ARG_NONNULL(1, 2);
9847 * Get the edje layout
9849 * @param obj The layout object
9851 * @return A Evas_Object with the edje layout settings loaded
9852 * with function elm_layout_file_set
9854 * This returns the edje object. It is not expected to be used to then
9855 * swallow objects via edje_object_part_swallow() for example. Use
9856 * elm_object_content_part_set() instead so child object handling and sizing is
9859 * @note This function should only be used if you really need to call some
9860 * low level Edje function on this edje object. All the common stuff (setting
9861 * text, emitting signals, hooking callbacks to signals, etc.) can be done
9862 * with proper elementary functions.
9864 * @see elm_object_signal_callback_add()
9865 * @see elm_object_signal_emit()
9866 * @see elm_object_text_part_set()
9867 * @see elm_object_content_part_set()
9868 * @see elm_layout_box_append()
9869 * @see elm_layout_table_pack()
9870 * @see elm_layout_data_get()
9874 EAPI Evas_Object *elm_layout_edje_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
9876 * Get the edje data from the given layout
9878 * @param obj The layout object
9879 * @param key The data key
9881 * @return The edje data string
9883 * This function fetches data specified inside the edje theme of this layout.
9884 * This function return NULL if data is not found.
9886 * In EDC this comes from a data block within the group block that @p
9887 * obj was loaded from. E.g.
9894 * item: "key1" "value1";
9895 * item: "key2" "value2";
9903 EAPI const char *elm_layout_data_get(const Evas_Object *obj, const char *key) EINA_ARG_NONNULL(1, 2);
9907 * @param obj The layout object
9909 * Manually forces a sizing re-evaluation. This is useful when the minimum
9910 * size required by the edje theme of this layout has changed. The change on
9911 * the minimum size required by the edje theme is not immediately reported to
9912 * the elementary layout, so one needs to call this function in order to tell
9913 * the widget (layout) that it needs to reevaluate its own size.
9915 * The minimum size of the theme is calculated based on minimum size of
9916 * parts, the size of elements inside containers like box and table, etc. All
9917 * of this can change due to state changes, and that's when this function
9920 * Also note that a standard signal of "size,eval" "elm" emitted from the
9921 * edje object will cause this to happen too.
9925 EAPI void elm_layout_sizing_eval(Evas_Object *obj) EINA_ARG_NONNULL(1);
9928 * Sets a specific cursor for an edje part.
9930 * @param obj The layout object.
9931 * @param part_name a part from loaded edje group.
9932 * @param cursor cursor name to use, see Elementary_Cursor.h
9934 * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
9935 * part not exists or it has "mouse_events: 0".
9939 EAPI Eina_Bool elm_layout_part_cursor_set(Evas_Object *obj, const char *part_name, const char *cursor) EINA_ARG_NONNULL(1, 2);
9942 * Get the cursor to be shown when mouse is over an edje part
9944 * @param obj The layout object.
9945 * @param part_name a part from loaded edje group.
9946 * @return the cursor name.
9950 EAPI const char *elm_layout_part_cursor_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
9953 * Unsets a cursor previously set with elm_layout_part_cursor_set().
9955 * @param obj The layout object.
9956 * @param part_name a part from loaded edje group, that had a cursor set
9957 * with elm_layout_part_cursor_set().
9961 EAPI void elm_layout_part_cursor_unset(Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
9964 * Sets a specific cursor style for an edje part.
9966 * @param obj The layout object.
9967 * @param part_name a part from loaded edje group.
9968 * @param style the theme style to use (default, transparent, ...)
9970 * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
9971 * part not exists or it did not had a cursor set.
9975 EAPI Eina_Bool elm_layout_part_cursor_style_set(Evas_Object *obj, const char *part_name, const char *style) EINA_ARG_NONNULL(1, 2);
9978 * Gets a specific cursor style for an edje part.
9980 * @param obj The layout object.
9981 * @param part_name a part from loaded edje group.
9983 * @return the theme style in use, defaults to "default". If the
9984 * object does not have a cursor set, then NULL is returned.
9988 EAPI const char *elm_layout_part_cursor_style_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
9991 * Sets if the cursor set should be searched on the theme or should use
9992 * the provided by the engine, only.
9994 * @note before you set if should look on theme you should define a
9995 * cursor with elm_layout_part_cursor_set(). By default it will only
9996 * look for cursors provided by the engine.
9998 * @param obj The layout object.
9999 * @param part_name a part from loaded edje group.
10000 * @param engine_only if cursors should be just provided by the engine
10001 * or should also search on widget's theme as well
10003 * @return EINA_TRUE on success or EINA_FALSE on failure, that may be
10004 * part not exists or it did not had a cursor set.
10008 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);
10011 * Gets a specific cursor engine_only for an edje part.
10013 * @param obj The layout object.
10014 * @param part_name a part from loaded edje group.
10016 * @return whenever the cursor is just provided by engine or also from theme.
10020 EAPI Eina_Bool elm_layout_part_cursor_engine_only_get(const Evas_Object *obj, const char *part_name) EINA_ARG_NONNULL(1, 2);
10023 * @def elm_layout_icon_set
10024 * Convienience macro to set the icon object in a layout that follows the
10025 * Elementary naming convention for its parts.
10029 #define elm_layout_icon_set(_ly, _obj) \
10032 elm_layout_content_set((_ly), "elm.swallow.icon", (_obj)); \
10033 if ((_obj)) sig = "elm,state,icon,visible"; \
10034 else sig = "elm,state,icon,hidden"; \
10035 elm_object_signal_emit((_ly), sig, "elm"); \
10039 * @def elm_layout_icon_get
10040 * Convienience macro to get the icon object from a layout that follows the
10041 * Elementary naming convention for its parts.
10045 #define elm_layout_icon_get(_ly) \
10046 elm_layout_content_get((_ly), "elm.swallow.icon")
10049 * @def elm_layout_end_set
10050 * Convienience macro to set the end object in a layout that follows the
10051 * Elementary naming convention for its parts.
10055 #define elm_layout_end_set(_ly, _obj) \
10058 elm_layout_content_set((_ly), "elm.swallow.end", (_obj)); \
10059 if ((_obj)) sig = "elm,state,end,visible"; \
10060 else sig = "elm,state,end,hidden"; \
10061 elm_object_signal_emit((_ly), sig, "elm"); \
10065 * @def elm_layout_end_get
10066 * Convienience macro to get the end object in a layout that follows the
10067 * Elementary naming convention for its parts.
10071 #define elm_layout_end_get(_ly) \
10072 elm_layout_content_get((_ly), "elm.swallow.end")
10075 * @def elm_layout_label_set
10076 * Convienience macro to set the label in a layout that follows the
10077 * Elementary naming convention for its parts.
10080 * @deprecated use elm_object_text_* instead.
10082 #define elm_layout_label_set(_ly, _txt) \
10083 elm_layout_text_set((_ly), "elm.text", (_txt))
10086 * @def elm_layout_label_get
10087 * Convenience macro to get the label in a layout that follows the
10088 * Elementary naming convention for its parts.
10091 * @deprecated use elm_object_text_* instead.
10093 #define elm_layout_label_get(_ly) \
10094 elm_layout_text_get((_ly), "elm.text")
10096 /* smart callbacks called:
10097 * "theme,changed" - when elm theme is changed.
10101 * @defgroup Notify Notify
10103 * @image html img/widget/notify/preview-00.png
10104 * @image latex img/widget/notify/preview-00.eps
10106 * Display a container in a particular region of the parent(top, bottom,
10107 * etc). A timeout can be set to automatically hide the notify. This is so
10108 * that, after an evas_object_show() on a notify object, if a timeout was set
10109 * on it, it will @b automatically get hidden after that time.
10111 * Signals that you can add callbacks for are:
10112 * @li "timeout" - when timeout happens on notify and it's hidden
10113 * @li "block,clicked" - when a click outside of the notify happens
10115 * Default contents parts of the notify widget that you can use for are:
10116 * @li "elm.swallow.content" - A content of the notify
10118 * @ref tutorial_notify show usage of the API.
10123 * @brief Possible orient values for notify.
10125 * This values should be used in conjunction to elm_notify_orient_set() to
10126 * set the position in which the notify should appear(relative to its parent)
10127 * and in conjunction with elm_notify_orient_get() to know where the notify
10130 typedef enum _Elm_Notify_Orient
10132 ELM_NOTIFY_ORIENT_TOP, /**< Notify should appear in the top of parent, default */
10133 ELM_NOTIFY_ORIENT_CENTER, /**< Notify should appear in the center of parent */
10134 ELM_NOTIFY_ORIENT_BOTTOM, /**< Notify should appear in the bottom of parent */
10135 ELM_NOTIFY_ORIENT_LEFT, /**< Notify should appear in the left of parent */
10136 ELM_NOTIFY_ORIENT_RIGHT, /**< Notify should appear in the right of parent */
10137 ELM_NOTIFY_ORIENT_TOP_LEFT, /**< Notify should appear in the top left of parent */
10138 ELM_NOTIFY_ORIENT_TOP_RIGHT, /**< Notify should appear in the top right of parent */
10139 ELM_NOTIFY_ORIENT_BOTTOM_LEFT, /**< Notify should appear in the bottom left of parent */
10140 ELM_NOTIFY_ORIENT_BOTTOM_RIGHT, /**< Notify should appear in the bottom right of parent */
10141 ELM_NOTIFY_ORIENT_LAST /**< Sentinel value, @b don't use */
10142 } Elm_Notify_Orient;
10144 * @brief Add a new notify to the parent
10146 * @param parent The parent object
10147 * @return The new object or NULL if it cannot be created
10149 EAPI Evas_Object *elm_notify_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10151 * @brief Set the content of the notify widget
10153 * @param obj The notify object
10154 * @param content The content will be filled in this notify object
10156 * Once the content object is set, a previously set one will be deleted. If
10157 * you want to keep that old content object, use the
10158 * elm_notify_content_unset() function.
10160 EAPI void elm_notify_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
10162 * @brief Unset the content of the notify widget
10164 * @param obj The notify object
10165 * @return The content that was being used
10167 * Unparent and return the content object which was set for this widget
10169 * @see elm_notify_content_set()
10171 EAPI Evas_Object *elm_notify_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
10173 * @brief Return the content of the notify widget
10175 * @param obj The notify object
10176 * @return The content that is being used
10178 * @see elm_notify_content_set()
10180 EAPI Evas_Object *elm_notify_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10182 * @brief Set the notify parent
10184 * @param obj The notify object
10185 * @param content The new parent
10187 * Once the parent object is set, a previously set one will be disconnected
10190 EAPI void elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10192 * @brief Get the notify parent
10194 * @param obj The notify object
10195 * @return The parent
10197 * @see elm_notify_parent_set()
10199 EAPI Evas_Object *elm_notify_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10201 * @brief Set the orientation
10203 * @param obj The notify object
10204 * @param orient The new orientation
10206 * Sets the position in which the notify will appear in its parent.
10208 * @see @ref Elm_Notify_Orient for possible values.
10210 EAPI void elm_notify_orient_set(Evas_Object *obj, Elm_Notify_Orient orient) EINA_ARG_NONNULL(1);
10212 * @brief Return the orientation
10213 * @param obj The notify object
10214 * @return The orientation of the notification
10216 * @see elm_notify_orient_set()
10217 * @see Elm_Notify_Orient
10219 EAPI Elm_Notify_Orient elm_notify_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10221 * @brief Set the time interval after which the notify window is going to be
10224 * @param obj The notify object
10225 * @param time The timeout in seconds
10227 * This function sets a timeout and starts the timer controlling when the
10228 * notify is hidden. Since calling evas_object_show() on a notify restarts
10229 * the timer controlling when the notify is hidden, setting this before the
10230 * notify is shown will in effect mean starting the timer when the notify is
10233 * @note Set a value <= 0.0 to disable a running timer.
10235 * @note If the value > 0.0 and the notify is previously visible, the
10236 * timer will be started with this value, canceling any running timer.
10238 EAPI void elm_notify_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
10240 * @brief Return the timeout value (in seconds)
10241 * @param obj the notify object
10243 * @see elm_notify_timeout_set()
10245 EAPI double elm_notify_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10247 * @brief Sets whether events should be passed to by a click outside
10250 * @param obj The notify object
10251 * @param repeats EINA_TRUE Events are repeats, else no
10253 * When true if the user clicks outside the window the events will be caught
10254 * by the others widgets, else the events are blocked.
10256 * @note The default value is EINA_TRUE.
10258 EAPI void elm_notify_repeat_events_set(Evas_Object *obj, Eina_Bool repeat) EINA_ARG_NONNULL(1);
10260 * @brief Return true if events are repeat below the notify object
10261 * @param obj the notify object
10263 * @see elm_notify_repeat_events_set()
10265 EAPI Eina_Bool elm_notify_repeat_events_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10271 * @defgroup Hover Hover
10273 * @image html img/widget/hover/preview-00.png
10274 * @image latex img/widget/hover/preview-00.eps
10276 * A Hover object will hover over its @p parent object at the @p target
10277 * location. Anything in the background will be given a darker coloring to
10278 * indicate that the hover object is on top (at the default theme). When the
10279 * hover is clicked it is dismissed(hidden), if the contents of the hover are
10280 * clicked that @b doesn't cause the hover to be dismissed.
10282 * A Hover object has two parents. One parent that owns it during creation
10283 * and the other parent being the one over which the hover object spans.
10286 * @note The hover object will take up the entire space of @p target
10289 * Elementary has the following styles for the hover widget:
10293 * @li hoversel_vertical
10295 * The following are the available position for content:
10307 * Signals that you can add callbacks for are:
10308 * @li "clicked" - the user clicked the empty space in the hover to dismiss
10309 * @li "smart,changed" - a content object placed under the "smart"
10310 * policy was replaced to a new slot direction.
10312 * See @ref tutorial_hover for more information.
10316 typedef enum _Elm_Hover_Axis
10318 ELM_HOVER_AXIS_NONE, /**< ELM_HOVER_AXIS_NONE -- no prefered orientation */
10319 ELM_HOVER_AXIS_HORIZONTAL, /**< ELM_HOVER_AXIS_HORIZONTAL -- horizontal */
10320 ELM_HOVER_AXIS_VERTICAL, /**< ELM_HOVER_AXIS_VERTICAL -- vertical */
10321 ELM_HOVER_AXIS_BOTH /**< ELM_HOVER_AXIS_BOTH -- both */
10324 * @brief Adds a hover object to @p parent
10326 * @param parent The parent object
10327 * @return The hover object or NULL if one could not be created
10329 EAPI Evas_Object *elm_hover_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10331 * @brief Sets the target object for the hover.
10333 * @param obj The hover object
10334 * @param target The object to center the hover onto. The hover
10336 * This function will cause the hover to be centered on the target object.
10338 EAPI void elm_hover_target_set(Evas_Object *obj, Evas_Object *target) EINA_ARG_NONNULL(1);
10340 * @brief Gets the target object for the hover.
10342 * @param obj The hover object
10343 * @param parent The object to locate the hover over.
10345 * @see elm_hover_target_set()
10347 EAPI Evas_Object *elm_hover_target_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10349 * @brief Sets the parent object for the hover.
10351 * @param obj The hover object
10352 * @param parent The object to locate the hover over.
10354 * This function will cause the hover to take up the entire space that the
10355 * parent object fills.
10357 EAPI void elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
10359 * @brief Gets the parent object for the hover.
10361 * @param obj The hover object
10362 * @return The parent object to locate the hover over.
10364 * @see elm_hover_parent_set()
10366 EAPI Evas_Object *elm_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10368 * @brief Sets the content of the hover object and the direction in which it
10371 * @param obj The hover object
10372 * @param swallow The direction that the object will be displayed
10373 * at. Accepted values are "left", "top-left", "top", "top-right",
10374 * "right", "bottom-right", "bottom", "bottom-left", "middle" and
10376 * @param content The content to place at @p swallow
10378 * Once the content object is set for a given direction, a previously
10379 * set one (on the same direction) will be deleted. If you want to
10380 * keep that old content object, use the elm_hover_content_unset()
10383 * All directions may have contents at the same time, except for
10384 * "smart". This is a special placement hint and its use case
10385 * independs of the calculations coming from
10386 * elm_hover_best_content_location_get(). Its use is for cases when
10387 * one desires only one hover content, but with a dinamic special
10388 * placement within the hover area. The content's geometry, whenever
10389 * it changes, will be used to decide on a best location not
10390 * extrapolating the hover's parent object view to show it in (still
10391 * being the hover's target determinant of its medium part -- move and
10392 * resize it to simulate finger sizes, for example). If one of the
10393 * directions other than "smart" are used, a previously content set
10394 * using it will be deleted, and vice-versa.
10396 EAPI void elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
10398 * @brief Get the content of the hover object, in a given direction.
10400 * Return the content object which was set for this widget in the
10401 * @p swallow direction.
10403 * @param obj The hover object
10404 * @param swallow The direction that the object was display at.
10405 * @return The content that was being used
10407 * @see elm_hover_content_set()
10409 EAPI Evas_Object *elm_hover_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10411 * @brief Unset the content of the hover object, in a given direction.
10413 * Unparent and return the content object set at @p swallow direction.
10415 * @param obj The hover object
10416 * @param swallow The direction that the object was display at.
10417 * @return The content that was being used.
10419 * @see elm_hover_content_set()
10421 EAPI Evas_Object *elm_hover_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
10423 * @brief Returns the best swallow location for content in the hover.
10425 * @param obj The hover object
10426 * @param pref_axis The preferred orientation axis for the hover object to use
10427 * @return The edje location to place content into the hover or @c
10430 * Best is defined here as the location at which there is the most available
10433 * @p pref_axis may be one of
10434 * - @c ELM_HOVER_AXIS_NONE -- no prefered orientation
10435 * - @c ELM_HOVER_AXIS_HORIZONTAL -- horizontal
10436 * - @c ELM_HOVER_AXIS_VERTICAL -- vertical
10437 * - @c ELM_HOVER_AXIS_BOTH -- both
10439 * If ELM_HOVER_AXIS_HORIZONTAL is choosen the returned position will
10440 * nescessarily be along the horizontal axis("left" or "right"). If
10441 * ELM_HOVER_AXIS_VERTICAL is choosen the returned position will nescessarily
10442 * be along the vertical axis("top" or "bottom"). Chossing
10443 * ELM_HOVER_AXIS_BOTH or ELM_HOVER_AXIS_NONE has the same effect and the
10444 * returned position may be in either axis.
10446 * @see elm_hover_content_set()
10448 EAPI const char *elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis) EINA_ARG_NONNULL(1);
10455 * @defgroup Entry Entry
10457 * @image html img/widget/entry/preview-00.png
10458 * @image latex img/widget/entry/preview-00.eps width=\textwidth
10459 * @image html img/widget/entry/preview-01.png
10460 * @image latex img/widget/entry/preview-01.eps width=\textwidth
10461 * @image html img/widget/entry/preview-02.png
10462 * @image latex img/widget/entry/preview-02.eps width=\textwidth
10463 * @image html img/widget/entry/preview-03.png
10464 * @image latex img/widget/entry/preview-03.eps width=\textwidth
10466 * An entry is a convenience widget which shows a box that the user can
10467 * enter text into. Entries by default don't scroll, so they grow to
10468 * accomodate the entire text, resizing the parent window as needed. This
10469 * can be changed with the elm_entry_scrollable_set() function.
10471 * They can also be single line or multi line (the default) and when set
10472 * to multi line mode they support text wrapping in any of the modes
10473 * indicated by #Elm_Wrap_Type.
10475 * Other features include password mode, filtering of inserted text with
10476 * elm_entry_text_filter_append() and related functions, inline "items" and
10477 * formatted markup text.
10479 * @section entry-markup Formatted text
10481 * The markup tags supported by the Entry are defined by the theme, but
10482 * even when writing new themes or extensions it's a good idea to stick to
10483 * a sane default, to maintain coherency and avoid application breakages.
10484 * Currently defined by the default theme are the following tags:
10485 * @li \<br\>: Inserts a line break.
10486 * @li \<ps\>: Inserts a paragraph separator. This is preferred over line
10488 * @li \<tab\>: Inserts a tab.
10489 * @li \<em\>...\</em\>: Emphasis. Sets the @em oblique style for the
10491 * @li \<b\>...\</b\>: Sets the @b bold style for the enclosed text.
10492 * @li \<link\>...\</link\>: Underlines the enclosed text.
10493 * @li \<hilight\>...\</hilight\>: Hilights the enclosed text.
10495 * @section entry-special Special markups
10497 * Besides those used to format text, entries support two special markup
10498 * tags used to insert clickable portions of text or items inlined within
10501 * @subsection entry-anchors Anchors
10503 * Anchors are similar to HTML anchors. Text can be surrounded by \<a\> and
10504 * \</a\> tags and an event will be generated when this text is clicked,
10508 * This text is outside <a href=anc-01>but this one is an anchor</a>
10511 * The @c href attribute in the opening tag gives the name that will be
10512 * used to identify the anchor and it can be any valid utf8 string.
10514 * When an anchor is clicked, an @c "anchor,clicked" signal is emitted with
10515 * an #Elm_Entry_Anchor_Info in the @c event_info parameter for the
10516 * callback function. The same applies for "anchor,in" (mouse in), "anchor,out"
10517 * (mouse out), "anchor,down" (mouse down), and "anchor,up" (mouse up) events on
10520 * @subsection entry-items Items
10522 * Inlined in the text, any other @c Evas_Object can be inserted by using
10523 * \<item\> tags this way:
10526 * <item size=16x16 vsize=full href=emoticon/haha></item>
10529 * Just like with anchors, the @c href identifies each item, but these need,
10530 * in addition, to indicate their size, which is done using any one of
10531 * @c size, @c absize or @c relsize attributes. These attributes take their
10532 * value in the WxH format, where W is the width and H the height of the
10535 * @li absize: Absolute pixel size for the item. Whatever value is set will
10536 * be the item's size regardless of any scale value the object may have
10537 * been set to. The final line height will be adjusted to fit larger items.
10538 * @li size: Similar to @c absize, but it's adjusted to the scale value set
10540 * @li relsize: Size is adjusted for the item to fit within the current
10543 * Besides their size, items are specificed a @c vsize value that affects
10544 * how their final size and position are calculated. The possible values
10546 * @li ascent: Item will be placed within the line's baseline and its
10547 * ascent. That is, the height between the line where all characters are
10548 * positioned and the highest point in the line. For @c size and @c absize
10549 * items, the descent value will be added to the total line height to make
10550 * them fit. @c relsize items will be adjusted to fit within this space.
10551 * @li full: Items will be placed between the descent and ascent, or the
10552 * lowest point in the line and its highest.
10554 * The next image shows different configurations of items and how they
10555 * are the previously mentioned options affect their sizes. In all cases,
10556 * the green line indicates the ascent, blue for the baseline and red for
10559 * @image html entry_item.png
10560 * @image latex entry_item.eps width=\textwidth
10562 * And another one to show how size differs from absize. In the first one,
10563 * the scale value is set to 1.0, while the second one is using one of 2.0.
10565 * @image html entry_item_scale.png
10566 * @image latex entry_item_scale.eps width=\textwidth
10568 * After the size for an item is calculated, the entry will request an
10569 * object to place in its space. For this, the functions set with
10570 * elm_entry_item_provider_append() and related functions will be called
10571 * in order until one of them returns a @c non-NULL value. If no providers
10572 * are available, or all of them return @c NULL, then the entry falls back
10573 * to one of the internal defaults, provided the name matches with one of
10576 * All of the following are currently supported:
10579 * - emoticon/angry-shout
10580 * - emoticon/crazy-laugh
10581 * - emoticon/evil-laugh
10583 * - emoticon/goggle-smile
10584 * - emoticon/grumpy
10585 * - emoticon/grumpy-smile
10586 * - emoticon/guilty
10587 * - emoticon/guilty-smile
10589 * - emoticon/half-smile
10590 * - emoticon/happy-panting
10592 * - emoticon/indifferent
10594 * - emoticon/knowing-grin
10596 * - emoticon/little-bit-sorry
10597 * - emoticon/love-lots
10599 * - emoticon/minimal-smile
10600 * - emoticon/not-happy
10601 * - emoticon/not-impressed
10603 * - emoticon/opensmile
10606 * - emoticon/squint-laugh
10607 * - emoticon/surprised
10608 * - emoticon/suspicious
10609 * - emoticon/tongue-dangling
10610 * - emoticon/tongue-poke
10612 * - emoticon/unhappy
10613 * - emoticon/very-sorry
10616 * - emoticon/worried
10619 * Alternatively, an item may reference an image by its path, using
10620 * the URI form @c file:///path/to/an/image.png and the entry will then
10621 * use that image for the item.
10623 * @section entry-files Loading and saving files
10625 * Entries have convinience functions to load text from a file and save
10626 * changes back to it after a short delay. The automatic saving is enabled
10627 * by default, but can be disabled with elm_entry_autosave_set() and files
10628 * can be loaded directly as plain text or have any markup in them
10629 * recognized. See elm_entry_file_set() for more details.
10631 * @section entry-signals Emitted signals
10633 * This widget emits the following signals:
10635 * @li "changed": The text within the entry was changed.
10636 * @li "changed,user": The text within the entry was changed because of user interaction.
10637 * @li "activated": The enter key was pressed on a single line entry.
10638 * @li "press": A mouse button has been pressed on the entry.
10639 * @li "longpressed": A mouse button has been pressed and held for a couple
10641 * @li "clicked": The entry has been clicked (mouse press and release).
10642 * @li "clicked,double": The entry has been double clicked.
10643 * @li "clicked,triple": The entry has been triple clicked.
10644 * @li "focused": The entry has received focus.
10645 * @li "unfocused": The entry has lost focus.
10646 * @li "selection,paste": A paste of the clipboard contents was requested.
10647 * @li "selection,copy": A copy of the selected text into the clipboard was
10649 * @li "selection,cut": A cut of the selected text into the clipboard was
10651 * @li "selection,start": A selection has begun and no previous selection
10653 * @li "selection,changed": The current selection has changed.
10654 * @li "selection,cleared": The current selection has been cleared.
10655 * @li "cursor,changed": The cursor has changed position.
10656 * @li "anchor,clicked": An anchor has been clicked. The event_info
10657 * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10658 * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
10659 * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10660 * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
10661 * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10662 * @li "anchor,up": Mouse button has been unpressed on an anchor. The event_info
10663 * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10664 * @li "anchor,down": Mouse button has been pressed on an anchor. The event_info
10665 * parameter for the callback will be an #Elm_Entry_Anchor_Info.
10666 * @li "preedit,changed": The preedit string has changed.
10667 * @li "language,changed": Program language changed.
10669 * @section entry-examples
10671 * An overview of the Entry API can be seen in @ref entry_example_01
10676 * @typedef Elm_Entry_Anchor_Info
10678 * The info sent in the callback for the "anchor,clicked" signals emitted
10681 typedef struct _Elm_Entry_Anchor_Info Elm_Entry_Anchor_Info;
10683 * @struct _Elm_Entry_Anchor_Info
10685 * The info sent in the callback for the "anchor,clicked" signals emitted
10688 struct _Elm_Entry_Anchor_Info
10690 const char *name; /**< The name of the anchor, as stated in its href */
10691 int button; /**< The mouse button used to click on it */
10692 Evas_Coord x, /**< Anchor geometry, relative to canvas */
10693 y, /**< Anchor geometry, relative to canvas */
10694 w, /**< Anchor geometry, relative to canvas */
10695 h; /**< Anchor geometry, relative to canvas */
10698 * @typedef Elm_Entry_Filter_Cb
10699 * This callback type is used by entry filters to modify text.
10700 * @param data The data specified as the last param when adding the filter
10701 * @param entry The entry object
10702 * @param text A pointer to the location of the text being filtered. This data can be modified,
10703 * but any additional allocations must be managed by the user.
10704 * @see elm_entry_text_filter_append
10705 * @see elm_entry_text_filter_prepend
10707 typedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text);
10710 * This adds an entry to @p parent object.
10712 * By default, entries are:
10716 * @li autosave is enabled
10718 * @param parent The parent object
10719 * @return The new object or NULL if it cannot be created
10721 EAPI Evas_Object *elm_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
10723 * Sets the entry to single line mode.
10725 * In single line mode, entries don't ever wrap when the text reaches the
10726 * edge, and instead they keep growing horizontally. Pressing the @c Enter
10727 * key will generate an @c "activate" event instead of adding a new line.
10729 * When @p single_line is @c EINA_FALSE, line wrapping takes effect again
10730 * and pressing enter will break the text into a different line
10731 * without generating any events.
10733 * @param obj The entry object
10734 * @param single_line If true, the text in the entry
10735 * will be on a single line.
10737 EAPI void elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
10739 * Gets whether the entry is set to be single line.
10741 * @param obj The entry object
10742 * @return single_line If true, the text in the entry is set to display
10743 * on a single line.
10745 * @see elm_entry_single_line_set()
10747 EAPI Eina_Bool elm_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10749 * Sets the entry to password mode.
10751 * In password mode, entries are implicitly single line and the display of
10752 * any text in them is replaced with asterisks (*).
10754 * @param obj The entry object
10755 * @param password If true, password mode is enabled.
10757 EAPI void elm_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
10759 * Gets whether the entry is set to password mode.
10761 * @param obj The entry object
10762 * @return If true, the entry is set to display all characters
10763 * as asterisks (*).
10765 * @see elm_entry_password_set()
10767 EAPI Eina_Bool elm_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10769 * This sets the text displayed within the entry to @p entry.
10771 * @param obj The entry object
10772 * @param entry The text to be displayed
10774 * @deprecated Use elm_object_text_set() instead.
10775 * @note Using this function bypasses text filters
10777 EAPI void elm_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
10779 * This returns the text currently shown in object @p entry.
10780 * See also elm_entry_entry_set().
10782 * @param obj The entry object
10783 * @return The currently displayed text or NULL on failure
10785 * @deprecated Use elm_object_text_get() instead.
10787 EAPI const char *elm_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10789 * Appends @p entry to the text of the entry.
10791 * Adds the text in @p entry to the end of any text already present in the
10794 * The appended text is subject to any filters set for the widget.
10796 * @param obj The entry object
10797 * @param entry The text to be displayed
10799 * @see elm_entry_text_filter_append()
10801 EAPI void elm_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
10803 * Gets whether the entry is empty.
10805 * Empty means no text at all. If there are any markup tags, like an item
10806 * tag for which no provider finds anything, and no text is displayed, this
10807 * function still returns EINA_FALSE.
10809 * @param obj The entry object
10810 * @return EINA_TRUE if the entry is empty, EINA_FALSE otherwise.
10812 EAPI Eina_Bool elm_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10814 * Gets any selected text within the entry.
10816 * If there's any selected text in the entry, this function returns it as
10817 * a string in markup format. NULL is returned if no selection exists or
10818 * if an error occurred.
10820 * The returned value points to an internal string and should not be freed
10821 * or modified in any way. If the @p entry object is deleted or its
10822 * contents are changed, the returned pointer should be considered invalid.
10824 * @param obj The entry object
10825 * @return The selected text within the entry or NULL on failure
10827 EAPI const char *elm_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10829 * Inserts the given text into the entry at the current cursor position.
10831 * This inserts text at the cursor position as if it was typed
10832 * by the user (note that this also allows markup which a user
10833 * can't just "type" as it would be converted to escaped text, so this
10834 * call can be used to insert things like emoticon items or bold push/pop
10835 * tags, other font and color change tags etc.)
10837 * If any selection exists, it will be replaced by the inserted text.
10839 * The inserted text is subject to any filters set for the widget.
10841 * @param obj The entry object
10842 * @param entry The text to insert
10844 * @see elm_entry_text_filter_append()
10846 EAPI void elm_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
10848 * Set the line wrap type to use on multi-line entries.
10850 * Sets the wrap type used by the entry to any of the specified in
10851 * #Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
10852 * line (without inserting a line break or paragraph separator) when it
10853 * reaches the far edge of the widget.
10855 * Note that this only makes sense for multi-line entries. A widget set
10856 * to be single line will never wrap.
10858 * @param obj The entry object
10859 * @param wrap The wrap mode to use. See #Elm_Wrap_Type for details on them
10861 EAPI void elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
10862 EINA_DEPRECATED EAPI void elm_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
10864 * Gets the wrap mode the entry was set to use.
10866 * @param obj The entry object
10867 * @return Wrap type
10869 * @see also elm_entry_line_wrap_set()
10871 EAPI Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10873 * Sets if the entry is to be editable or not.
10875 * By default, entries are editable and when focused, any text input by the
10876 * user will be inserted at the current cursor position. But calling this
10877 * function with @p editable as EINA_FALSE will prevent the user from
10878 * inputting text into the entry.
10880 * The only way to change the text of a non-editable entry is to use
10881 * elm_object_text_set(), elm_entry_entry_insert() and other related
10884 * @param obj The entry object
10885 * @param editable If EINA_TRUE, user input will be inserted in the entry,
10886 * if not, the entry is read-only and no user input is allowed.
10888 EAPI void elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
10890 * Gets whether the entry is editable or not.
10892 * @param obj The entry object
10893 * @return If true, the entry is editable by the user.
10894 * If false, it is not editable by the user
10896 * @see elm_entry_editable_set()
10898 EAPI Eina_Bool elm_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10900 * This drops any existing text selection within the entry.
10902 * @param obj The entry object
10904 EAPI void elm_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
10906 * This selects all text within the entry.
10908 * @param obj The entry object
10910 EAPI void elm_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
10912 * This moves the cursor one place to the right within the entry.
10914 * @param obj The entry object
10915 * @return EINA_TRUE upon success, EINA_FALSE upon failure
10917 EAPI Eina_Bool elm_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
10919 * This moves the cursor one place to the left within the entry.
10921 * @param obj The entry object
10922 * @return EINA_TRUE upon success, EINA_FALSE upon failure
10924 EAPI Eina_Bool elm_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
10926 * This moves the cursor one line up within the entry.
10928 * @param obj The entry object
10929 * @return EINA_TRUE upon success, EINA_FALSE upon failure
10931 EAPI Eina_Bool elm_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
10933 * This moves the cursor one line down within the entry.
10935 * @param obj The entry object
10936 * @return EINA_TRUE upon success, EINA_FALSE upon failure
10938 EAPI Eina_Bool elm_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
10940 * This moves the cursor to the beginning of the entry.
10942 * @param obj The entry object
10944 EAPI void elm_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10946 * This moves the cursor to the end of the entry.
10948 * @param obj The entry object
10950 EAPI void elm_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10952 * This moves the cursor to the beginning of the current line.
10954 * @param obj The entry object
10956 EAPI void elm_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10958 * This moves the cursor to the end of the current line.
10960 * @param obj The entry object
10962 EAPI void elm_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
10964 * This begins a selection within the entry as though
10965 * the user were holding down the mouse button to make a selection.
10967 * @param obj The entry object
10969 EAPI void elm_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
10971 * This ends a selection within the entry as though
10972 * the user had just released the mouse button while making a selection.
10974 * @param obj The entry object
10976 EAPI void elm_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
10978 * Gets whether a format node exists at the current cursor position.
10980 * A format node is anything that defines how the text is rendered. It can
10981 * be a visible format node, such as a line break or a paragraph separator,
10982 * or an invisible one, such as bold begin or end tag.
10983 * This function returns whether any format node exists at the current
10986 * @param obj The entry object
10987 * @return EINA_TRUE if the current cursor position contains a format node,
10988 * EINA_FALSE otherwise.
10990 * @see elm_entry_cursor_is_visible_format_get()
10992 EAPI Eina_Bool elm_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
10994 * Gets if the current cursor position holds a visible format node.
10996 * @param obj The entry object
10997 * @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
10998 * if it's an invisible one or no format exists.
11000 * @see elm_entry_cursor_is_format_get()
11002 EAPI Eina_Bool elm_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11004 * Gets the character pointed by the cursor at its current position.
11006 * This function returns a string with the utf8 character stored at the
11007 * current cursor position.
11008 * Only the text is returned, any format that may exist will not be part
11009 * of the return value.
11011 * @param obj The entry object
11012 * @return The text pointed by the cursors.
11014 EAPI const char *elm_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11016 * This function returns the geometry of the cursor.
11018 * It's useful if you want to draw something on the cursor (or where it is),
11019 * or for example in the case of scrolled entry where you want to show the
11022 * @param obj The entry object
11023 * @param x returned geometry
11024 * @param y returned geometry
11025 * @param w returned geometry
11026 * @param h returned geometry
11027 * @return EINA_TRUE upon success, EINA_FALSE upon failure
11029 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);
11031 * Sets the cursor position in the entry to the given value
11033 * The value in @p pos is the index of the character position within the
11034 * contents of the string as returned by elm_entry_cursor_pos_get().
11036 * @param obj The entry object
11037 * @param pos The position of the cursor
11039 EAPI void elm_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
11041 * Retrieves the current position of the cursor in the entry
11043 * @param obj The entry object
11044 * @return The cursor position
11046 EAPI int elm_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11048 * This executes a "cut" action on the selected text in the entry.
11050 * @param obj The entry object
11052 EAPI void elm_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
11054 * This executes a "copy" action on the selected text in the entry.
11056 * @param obj The entry object
11058 EAPI void elm_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
11060 * This executes a "paste" action in the entry.
11062 * @param obj The entry object
11064 EAPI void elm_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
11066 * This clears and frees the items in a entry's contextual (longpress)
11069 * @param obj The entry object
11071 * @see elm_entry_context_menu_item_add()
11073 EAPI void elm_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
11075 * This adds an item to the entry's contextual menu.
11077 * A longpress on an entry will make the contextual menu show up, if this
11078 * hasn't been disabled with elm_entry_context_menu_disabled_set().
11079 * By default, this menu provides a few options like enabling selection mode,
11080 * which is useful on embedded devices that need to be explicit about it,
11081 * and when a selection exists it also shows the copy and cut actions.
11083 * With this function, developers can add other options to this menu to
11084 * perform any action they deem necessary.
11086 * @param obj The entry object
11087 * @param label The item's text label
11088 * @param icon_file The item's icon file
11089 * @param icon_type The item's icon type
11090 * @param func The callback to execute when the item is clicked
11091 * @param data The data to associate with the item for related functions
11093 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);
11095 * This disables the entry's contextual (longpress) menu.
11097 * @param obj The entry object
11098 * @param disabled If true, the menu is disabled
11100 EAPI void elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
11102 * This returns whether the entry's contextual (longpress) menu is
11105 * @param obj The entry object
11106 * @return If true, the menu is disabled
11108 EAPI Eina_Bool elm_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11110 * This appends a custom item provider to the list for that entry
11112 * This appends the given callback. The list is walked from beginning to end
11113 * with each function called given the item href string in the text. If the
11114 * function returns an object handle other than NULL (it should create an
11115 * object to do this), then this object is used to replace that item. If
11116 * not the next provider is called until one provides an item object, or the
11117 * default provider in entry does.
11119 * @param obj The entry object
11120 * @param func The function called to provide the item object
11121 * @param data The data passed to @p func
11123 * @see @ref entry-items
11125 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);
11127 * This prepends a custom item provider to the list for that entry
11129 * This prepends the given callback. See elm_entry_item_provider_append() for
11132 * @param obj The entry object
11133 * @param func The function called to provide the item object
11134 * @param data The data passed to @p func
11136 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);
11138 * This removes a custom item provider to the list for that entry
11140 * This removes the given callback. See elm_entry_item_provider_append() for
11143 * @param obj The entry object
11144 * @param func The function called to provide the item object
11145 * @param data The data passed to @p func
11147 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);
11149 * Append a filter function for text inserted in the entry
11151 * Append the given callback to the list. This functions will be called
11152 * whenever any text is inserted into the entry, with the text to be inserted
11153 * as a parameter. The callback function is free to alter the text in any way
11154 * it wants, but it must remember to free the given pointer and update it.
11155 * If the new text is to be discarded, the function can free it and set its
11156 * text parameter to NULL. This will also prevent any following filters from
11159 * @param obj The entry object
11160 * @param func The function to use as text filter
11161 * @param data User data to pass to @p func
11163 EAPI void elm_entry_text_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11165 * Prepend a filter function for text insdrted in the entry
11167 * Prepend the given callback to the list. See elm_entry_text_filter_append()
11168 * for more information
11170 * @param obj The entry object
11171 * @param func The function to use as text filter
11172 * @param data User data to pass to @p func
11174 EAPI void elm_entry_text_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11176 * Remove a filter from the list
11178 * Removes the given callback from the filter list. See
11179 * elm_entry_text_filter_append() for more information.
11181 * @param obj The entry object
11182 * @param func The filter function to remove
11183 * @param data The user data passed when adding the function
11185 EAPI void elm_entry_text_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
11187 * This converts a markup (HTML-like) string into UTF-8.
11189 * The returned string is a malloc'ed buffer and it should be freed when
11190 * not needed anymore.
11192 * @param s The string (in markup) to be converted
11193 * @return The converted string (in UTF-8). It should be freed.
11195 EAPI char *elm_entry_markup_to_utf8(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11197 * This converts a UTF-8 string into markup (HTML-like).
11199 * The returned string is a malloc'ed buffer and it should be freed when
11200 * not needed anymore.
11202 * @param s The string (in UTF-8) to be converted
11203 * @return The converted string (in markup). It should be freed.
11205 EAPI char *elm_entry_utf8_to_markup(const char *s) EINA_MALLOC EINA_WARN_UNUSED_RESULT;
11207 * This sets the file (and implicitly loads it) for the text to display and
11208 * then edit. All changes are written back to the file after a short delay if
11209 * the entry object is set to autosave (which is the default).
11211 * If the entry had any other file set previously, any changes made to it
11212 * will be saved if the autosave feature is enabled, otherwise, the file
11213 * will be silently discarded and any non-saved changes will be lost.
11215 * @param obj The entry object
11216 * @param file The path to the file to load and save
11217 * @param format The file format
11219 EAPI void elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
11221 * Gets the file being edited by the entry.
11223 * This function can be used to retrieve any file set on the entry for
11224 * edition, along with the format used to load and save it.
11226 * @param obj The entry object
11227 * @param file The path to the file to load and save
11228 * @param format The file format
11230 EAPI void elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
11232 * This function writes any changes made to the file set with
11233 * elm_entry_file_set()
11235 * @param obj The entry object
11237 EAPI void elm_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
11239 * This sets the entry object to 'autosave' the loaded text file or not.
11241 * @param obj The entry object
11242 * @param autosave Autosave the loaded file or not
11244 * @see elm_entry_file_set()
11246 EAPI void elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
11248 * This gets the entry object's 'autosave' status.
11250 * @param obj The entry object
11251 * @return Autosave the loaded file or not
11253 * @see elm_entry_file_set()
11255 EAPI Eina_Bool elm_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11257 * Control pasting of text and images for the widget.
11259 * Normally the entry allows both text and images to be pasted. By setting
11260 * textonly to be true, this prevents images from being pasted.
11262 * Note this only changes the behaviour of text.
11264 * @param obj The entry object
11265 * @param textonly paste mode - EINA_TRUE is text only, EINA_FALSE is
11266 * text+image+other.
11268 EAPI void elm_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
11270 * Getting elm_entry text paste/drop mode.
11272 * In textonly mode, only text may be pasted or dropped into the widget.
11274 * @param obj The entry object
11275 * @return If the widget only accepts text from pastes.
11277 EAPI Eina_Bool elm_entry_cnp_textonly_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11279 * Enable or disable scrolling in entry
11281 * Normally the entry is not scrollable unless you enable it with this call.
11283 * @param obj The entry object
11284 * @param scroll EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise
11286 EAPI void elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scroll);
11288 * Get the scrollable state of the entry
11290 * Normally the entry is not scrollable. This gets the scrollable state
11291 * of the entry. See elm_entry_scrollable_set() for more information.
11293 * @param obj The entry object
11294 * @return The scrollable state
11296 EAPI Eina_Bool elm_entry_scrollable_get(const Evas_Object *obj);
11298 * This sets a widget to be displayed to the left of a scrolled entry.
11300 * @param obj The scrolled entry object
11301 * @param icon The widget to display on the left side of the scrolled
11304 * @note A previously set widget will be destroyed.
11305 * @note If the object being set does not have minimum size hints set,
11306 * it won't get properly displayed.
11308 * @see elm_entry_end_set()
11310 EAPI void elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
11312 * Gets the leftmost widget of the scrolled entry. This object is
11313 * owned by the scrolled entry and should not be modified.
11315 * @param obj The scrolled entry object
11316 * @return the left widget inside the scroller
11318 EAPI Evas_Object *elm_entry_icon_get(const Evas_Object *obj);
11320 * Unset the leftmost widget of the scrolled entry, unparenting and
11323 * @param obj The scrolled entry object
11324 * @return the previously set icon sub-object of this entry, on
11327 * @see elm_entry_icon_set()
11329 EAPI Evas_Object *elm_entry_icon_unset(Evas_Object *obj);
11331 * Sets the visibility of the left-side widget of the scrolled entry,
11332 * set by elm_entry_icon_set().
11334 * @param obj The scrolled entry object
11335 * @param setting EINA_TRUE if the object should be displayed,
11336 * EINA_FALSE if not.
11338 EAPI void elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting);
11340 * This sets a widget to be displayed to the end of a scrolled entry.
11342 * @param obj The scrolled entry object
11343 * @param end The widget to display on the right side of the scrolled
11346 * @note A previously set widget will be destroyed.
11347 * @note If the object being set does not have minimum size hints set,
11348 * it won't get properly displayed.
11350 * @see elm_entry_icon_set
11352 EAPI void elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
11354 * Gets the endmost widget of the scrolled entry. This object is owned
11355 * by the scrolled entry and should not be modified.
11357 * @param obj The scrolled entry object
11358 * @return the right widget inside the scroller
11360 EAPI Evas_Object *elm_entry_end_get(const Evas_Object *obj);
11362 * Unset the endmost widget of the scrolled entry, unparenting and
11365 * @param obj The scrolled entry object
11366 * @return the previously set icon sub-object of this entry, on
11369 * @see elm_entry_icon_set()
11371 EAPI Evas_Object *elm_entry_end_unset(Evas_Object *obj);
11373 * Sets the visibility of the end widget of the scrolled entry, set by
11374 * elm_entry_end_set().
11376 * @param obj The scrolled entry object
11377 * @param setting EINA_TRUE if the object should be displayed,
11378 * EINA_FALSE if not.
11380 EAPI void elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting);
11382 * This sets the scrolled entry's scrollbar policy (ie. enabling/disabling
11385 * Setting an entry to single-line mode with elm_entry_single_line_set()
11386 * will automatically disable the display of scrollbars when the entry
11387 * moves inside its scroller.
11389 * @param obj The scrolled entry object
11390 * @param h The horizontal scrollbar policy to apply
11391 * @param v The vertical scrollbar policy to apply
11393 EAPI void elm_entry_scrollbar_policy_set(Evas_Object *obj, Elm_Scroller_Policy h, Elm_Scroller_Policy v);
11395 * This enables/disables bouncing within the entry.
11397 * This function sets whether the entry will bounce when scrolling reaches
11398 * the end of the contained entry.
11400 * @param obj The scrolled entry object
11401 * @param h The horizontal bounce state
11402 * @param v The vertical bounce state
11404 EAPI void elm_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
11406 * Get the bounce mode
11408 * @param obj The Entry object
11409 * @param h_bounce Allow bounce horizontally
11410 * @param v_bounce Allow bounce vertically
11412 EAPI void elm_entry_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
11414 /* pre-made filters for entries */
11416 * @typedef Elm_Entry_Filter_Limit_Size
11418 * Data for the elm_entry_filter_limit_size() entry filter.
11420 typedef struct _Elm_Entry_Filter_Limit_Size Elm_Entry_Filter_Limit_Size;
11422 * @struct _Elm_Entry_Filter_Limit_Size
11424 * Data for the elm_entry_filter_limit_size() entry filter.
11426 struct _Elm_Entry_Filter_Limit_Size
11428 int max_char_count; /**< The maximum number of characters allowed. */
11429 int max_byte_count; /**< The maximum number of bytes allowed*/
11432 * Filter inserted text based on user defined character and byte limits
11434 * Add this filter to an entry to limit the characters that it will accept
11435 * based the the contents of the provided #Elm_Entry_Filter_Limit_Size.
11436 * The funtion works on the UTF-8 representation of the string, converting
11437 * it from the set markup, thus not accounting for any format in it.
11439 * The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
11440 * it as data when setting the filter. In it, it's possible to set limits
11441 * by character count or bytes (any of them is disabled if 0), and both can
11442 * be set at the same time. In that case, it first checks for characters,
11445 * The function will cut the inserted text in order to allow only the first
11446 * number of characters that are still allowed. The cut is made in
11447 * characters, even when limiting by bytes, in order to always contain
11448 * valid ones and avoid half unicode characters making it in.
11450 * This filter, like any others, does not apply when setting the entry text
11451 * directly with elm_object_text_set() (or the deprecated
11452 * elm_entry_entry_set()).
11454 EAPI void elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 2, 3);
11456 * @typedef Elm_Entry_Filter_Accept_Set
11458 * Data for the elm_entry_filter_accept_set() entry filter.
11460 typedef struct _Elm_Entry_Filter_Accept_Set Elm_Entry_Filter_Accept_Set;
11462 * @struct _Elm_Entry_Filter_Accept_Set
11464 * Data for the elm_entry_filter_accept_set() entry filter.
11466 struct _Elm_Entry_Filter_Accept_Set
11468 const char *accepted; /**< Set of characters accepted in the entry. */
11469 const char *rejected; /**< Set of characters rejected from the entry. */
11472 * Filter inserted text based on accepted or rejected sets of characters
11474 * Add this filter to an entry to restrict the set of accepted characters
11475 * based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
11476 * This structure contains both accepted and rejected sets, but they are
11477 * mutually exclusive.
11479 * The @c accepted set takes preference, so if it is set, the filter will
11480 * only work based on the accepted characters, ignoring anything in the
11481 * @c rejected value. If @c accepted is @c NULL, then @c rejected is used.
11483 * In both cases, the function filters by matching utf8 characters to the
11484 * raw markup text, so it can be used to remove formatting tags.
11486 * This filter, like any others, does not apply when setting the entry text
11487 * directly with elm_object_text_set() (or the deprecated
11488 * elm_entry_entry_set()).
11490 EAPI void elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 3);
11492 * Set the input panel layout of the entry
11494 * @param obj The entry object
11495 * @param layout layout type
11497 EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout) EINA_ARG_NONNULL(1);
11499 * Get the input panel layout of the entry
11501 * @param obj The entry object
11502 * @return layout type
11504 * @see elm_entry_input_panel_layout_set
11506 EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
11508 * Set the autocapitalization type on the immodule.
11510 * @param obj The entry object
11511 * @param autocapital_type The type of autocapitalization
11513 EAPI void elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type) EINA_ARG_NONNULL(1);
11515 * Retrieve the autocapitalization type on the immodule.
11517 * @param obj The entry object
11518 * @return autocapitalization type
11520 EAPI Elm_Autocapital_Type elm_entry_autocapital_type_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
11522 * Sets the attribute to show the input panel automatically.
11524 * @param obj The entry object
11525 * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
11527 EAPI void elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
11529 * Retrieve the attribute to show the input panel automatically.
11531 * @param obj The entry object
11532 * @return EINA_TRUE if input panel will be appeared when the entry is clicked or has a focus, EINA_FALSE otherwise
11534 EAPI Eina_Bool elm_entry_input_panel_enabled_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
11536 EAPI void elm_entry_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a);
11537 EAPI void elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap);
11538 EAPI void elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod);
11539 EAPI void elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on);
11540 EAPI Ecore_IMF_Context *elm_entry_imf_context_get(Evas_Object *obj);
11541 EAPI void elm_entry_matchlist_set(Evas_Object *obj, Eina_List *match_list, Eina_Bool case_sensitive);
11542 EAPI void elm_entry_magnifier_type_set(Evas_Object *obj, int type) EINA_ARG_NONNULL(1);
11544 EINA_DEPRECATED EAPI void elm_entry_wrap_width_set(Evas_Object *obj, Evas_Coord w);
11545 EINA_DEPRECATED EAPI Evas_Coord elm_entry_wrap_width_get(const Evas_Object *obj);
11546 EINA_DEPRECATED EAPI void elm_entry_fontsize_set(Evas_Object *obj, int fontsize);
11547 EINA_DEPRECATED EAPI void elm_entry_text_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a);
11548 EINA_DEPRECATED EAPI void elm_entry_text_align_set(Evas_Object *obj, const char *alignmode);
11556 * @defgroup Anchorview Anchorview
11558 * Anchorview is for displaying text that contains markup with anchors
11559 * like <c>\<a href=1234\>something\</\></c> in it.
11561 * Besides being styled differently, the anchorview widget provides the
11562 * necessary functionality so that clicking on these anchors brings up a
11563 * popup with user defined content such as "call", "add to contacts" or
11564 * "open web page". This popup is provided using the @ref Hover widget.
11566 * This widget is very similar to @ref Anchorblock, so refer to that
11567 * widget for an example. The only difference Anchorview has is that the
11568 * widget is already provided with scrolling functionality, so if the
11569 * text set to it is too large to fit in the given space, it will scroll,
11570 * whereas the @ref Anchorblock widget will keep growing to ensure all the
11571 * text can be displayed.
11573 * This widget emits the following signals:
11574 * @li "anchor,clicked": will be called when an anchor is clicked. The
11575 * @p event_info parameter on the callback will be a pointer of type
11576 * ::Elm_Entry_Anchorview_Info.
11578 * See @ref Anchorblock for an example on how to use both of them.
11587 * @typedef Elm_Entry_Anchorview_Info
11589 * The info sent in the callback for "anchor,clicked" signals emitted by
11590 * the Anchorview widget.
11592 typedef struct _Elm_Entry_Anchorview_Info Elm_Entry_Anchorview_Info;
11594 * @struct _Elm_Entry_Anchorview_Info
11596 * The info sent in the callback for "anchor,clicked" signals emitted by
11597 * the Anchorview widget.
11599 struct _Elm_Entry_Anchorview_Info
11601 const char *name; /**< Name of the anchor, as indicated in its href
11603 int button; /**< The mouse button used to click on it */
11604 Evas_Object *hover; /**< The hover object to use for the popup */
11606 Evas_Coord x, y, w, h;
11607 } anchor, /**< Geometry selection of text used as anchor */
11608 hover_parent; /**< Geometry of the object used as parent by the
11610 Eina_Bool hover_left : 1; /**< Hint indicating if there's space
11611 for content on the left side of
11612 the hover. Before calling the
11613 callback, the widget will make the
11614 necessary calculations to check
11615 which sides are fit to be set with
11616 content, based on the position the
11617 hover is activated and its distance
11618 to the edges of its parent object
11620 Eina_Bool hover_right : 1; /**< Hint indicating content fits on
11621 the right side of the hover.
11622 See @ref hover_left */
11623 Eina_Bool hover_top : 1; /**< Hint indicating content fits on top
11624 of the hover. See @ref hover_left */
11625 Eina_Bool hover_bottom : 1; /**< Hint indicating content fits
11626 below the hover. See @ref
11630 * Add a new Anchorview object
11632 * @param parent The parent object
11633 * @return The new object or NULL if it cannot be created
11635 EAPI Evas_Object *elm_anchorview_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11637 * Set the text to show in the anchorview
11639 * Sets the text of the anchorview to @p text. This text can include markup
11640 * format tags, including <c>\<a href=anchorname\></c> to begin a segment of
11641 * text that will be specially styled and react to click events, ended with
11642 * either of \</a\> or \</\>. When clicked, the anchor will emit an
11643 * "anchor,clicked" signal that you can attach a callback to with
11644 * evas_object_smart_callback_add(). The name of the anchor given in the
11645 * event info struct will be the one set in the href attribute, in this
11646 * case, anchorname.
11648 * Other markup can be used to style the text in different ways, but it's
11649 * up to the style defined in the theme which tags do what.
11650 * @deprecated use elm_object_text_set() instead.
11652 EINA_DEPRECATED EAPI void elm_anchorview_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
11654 * Get the markup text set for the anchorview
11656 * Retrieves the text set on the anchorview, with markup tags included.
11658 * @param obj The anchorview object
11659 * @return The markup text set or @c NULL if nothing was set or an error
11661 * @deprecated use elm_object_text_set() instead.
11663 EINA_DEPRECATED EAPI const char *elm_anchorview_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11665 * Set the parent of the hover popup
11667 * Sets the parent object to use by the hover created by the anchorview
11668 * when an anchor is clicked. See @ref Hover for more details on this.
11669 * If no parent is set, the same anchorview object will be used.
11671 * @param obj The anchorview object
11672 * @param parent The object to use as parent for the hover
11674 EAPI void elm_anchorview_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
11676 * Get the parent of the hover popup
11678 * Get the object used as parent for the hover created by the anchorview
11679 * widget. See @ref Hover for more details on this.
11681 * @param obj The anchorview object
11682 * @return The object used as parent for the hover, NULL if none is set.
11684 EAPI Evas_Object *elm_anchorview_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11686 * Set the style that the hover should use
11688 * When creating the popup hover, anchorview will request that it's
11689 * themed according to @p style.
11691 * @param obj The anchorview object
11692 * @param style The style to use for the underlying hover
11694 * @see elm_object_style_set()
11696 EAPI void elm_anchorview_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
11698 * Get the style that the hover should use
11700 * Get the style the hover created by anchorview will use.
11702 * @param obj The anchorview object
11703 * @return The style to use by the hover. NULL means the default is used.
11705 * @see elm_object_style_set()
11707 EAPI const char *elm_anchorview_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
11709 * Ends the hover popup in the anchorview
11711 * When an anchor is clicked, the anchorview widget will create a hover
11712 * object to use as a popup with user provided content. This function
11713 * terminates this popup, returning the anchorview to its normal state.
11715 * @param obj The anchorview object
11717 EAPI void elm_anchorview_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
11719 * Set bouncing behaviour when the scrolled content reaches an edge
11721 * Tell the internal scroller object whether it should bounce or not
11722 * when it reaches the respective edges for each axis.
11724 * @param obj The anchorview object
11725 * @param h_bounce Whether to bounce or not in the horizontal axis
11726 * @param v_bounce Whether to bounce or not in the vertical axis
11728 * @see elm_scroller_bounce_set()
11730 EAPI void elm_anchorview_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
11732 * Get the set bouncing behaviour of the internal scroller
11734 * Get whether the internal scroller should bounce when the edge of each
11735 * axis is reached scrolling.
11737 * @param obj The anchorview object
11738 * @param h_bounce Pointer where to store the bounce state of the horizontal
11740 * @param v_bounce Pointer where to store the bounce state of the vertical
11743 * @see elm_scroller_bounce_get()
11745 EAPI void elm_anchorview_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
11747 * Appends a custom item provider to the given anchorview
11749 * Appends the given function to the list of items providers. This list is
11750 * called, one function at a time, with the given @p data pointer, the
11751 * anchorview object and, in the @p item parameter, the item name as
11752 * referenced in its href string. Following functions in the list will be
11753 * called in order until one of them returns something different to NULL,
11754 * which should be an Evas_Object which will be used in place of the item
11757 * Items in the markup text take the form \<item relsize=16x16 vsize=full
11758 * href=item/name\>\</item\>
11760 * @param obj The anchorview object
11761 * @param func The function to add to the list of providers
11762 * @param data User data that will be passed to the callback function
11764 * @see elm_entry_item_provider_append()
11766 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);
11768 * Prepend a custom item provider to the given anchorview
11770 * Like elm_anchorview_item_provider_append(), but it adds the function
11771 * @p func to the beginning of the list, instead of the end.
11773 * @param obj The anchorview object
11774 * @param func The function to add to the list of providers
11775 * @param data User data that will be passed to the callback function
11777 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);
11779 * Remove a custom item provider from the list of the given anchorview
11781 * Removes the function and data pairing that matches @p func and @p data.
11782 * That is, unless the same function and same user data are given, the
11783 * function will not be removed from the list. This allows us to add the
11784 * same callback several times, with different @p data pointers and be
11785 * able to remove them later without conflicts.
11787 * @param obj The anchorview object
11788 * @param func The function to remove from the list
11789 * @param data The data matching the function to remove from the list
11791 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);
11798 * @defgroup Anchorblock Anchorblock
11800 * Anchorblock is for displaying text that contains markup with anchors
11801 * like <c>\<a href=1234\>something\</\></c> in it.
11803 * Besides being styled differently, the anchorblock widget provides the
11804 * necessary functionality so that clicking on these anchors brings up a
11805 * popup with user defined content such as "call", "add to contacts" or
11806 * "open web page". This popup is provided using the @ref Hover widget.
11808 * This widget emits the following signals:
11809 * @li "anchor,clicked": will be called when an anchor is clicked. The
11810 * @p event_info parameter on the callback will be a pointer of type
11811 * ::Elm_Entry_Anchorblock_Info.
11817 * Since examples are usually better than plain words, we might as well
11818 * try @ref tutorial_anchorblock_example "one".
11821 * @page tutorial_anchorblock_example Anchorblock/Anchorview example
11822 * This exampel will show both Anchorblock and @ref Anchorview,
11823 * since both are very similar and it's easier to show them once and side
11824 * by side, so the difference is more clear.
11826 * We'll show the relevant snippets of the code here, but the full example
11827 * can be found here... sorry, @ref anchorblock_example_01.c "here".
11829 * As for the actual example, it's just a simple window with an anchorblock
11830 * and an anchorview, both containing the same text. After including
11831 * Elementary.h and declaring some functions we'll need, we jump to our
11832 * elm_main (see ELM_MAIN) and create our window.
11833 * @dontinclude anchorblock_example_01.c
11835 * @until const char
11838 * With the needed variables declared, we'll create the window and a box to
11839 * hold our widgets, but we don't need to go through that here.
11841 * In order to make clear where the anchorblock ends and the anchorview
11842 * begins, they'll be each inside a @ref Frame. After creating the frame,
11843 * the anchorblock follows.
11844 * @skip elm_frame_add
11845 * @until elm_frame_content_set
11847 * Nothing out of the ordinary there. What's worth mentioning is the call
11848 * to elm_anchorblock_hover_parent_set(). We are telling our widget that
11849 * when an anchor is clicked, the hover for the popup will cover the entire
11850 * window. This affects the area that will be obscured by the hover and
11851 * where clicking will dismiss it, as well as the calculations it does to
11852 * inform the best locations where to insert the popups content.
11853 * Other than that, the code is pretty standard. We also need to set our
11854 * callback for when an anchor is clicked, since it's our task to populate
11855 * the popup. There's no default for it.
11857 * The anchorview is no different, we only change a few things so it looks
11859 * @until elm_frame_content_set
11861 * Then we run, so stuff works and close our main function in the usual way.
11864 * Now, a little note. Normally you would use either one of anchorblock or
11865 * anchorview, set your one callback to clicks and do your stuff in there.
11866 * In this example, however, there are a few tricks to make it easier to
11867 * show both widgets in one go (and to save me some typing). So we have
11868 * two callbacks, one per widget, that will call a common function to do
11869 * the rest. The trick is using ::Elm_Entry_Anchorblock_Info for the
11870 * anchorview too, since both are equal, and passing a callback to use
11871 * for our buttons to end the hover, because each widget has a different
11873 * @until _anchorview_clicked_cb
11876 * The meat of our popup is in the following function. We check what kind
11877 * of menu we need to show, based on the name set to the anchor in the
11878 * markup text. If there's no type (something went wrong, no valid contact
11879 * in the address list) we are just putting a button that does nothing, but
11880 * it's perfectly reasonable to just end the hover and call it quits.
11882 * Our popup will consist of one main button in the middle of our hover,
11883 * and possibly a secondary button and a list of other options. We'll create
11884 * first our main button and check what kind of popup we need afterwards.
11885 * @skip static void
11886 * @skip static void
11887 * @until eina_stringshare_add
11890 * Each button has two callbacks, one is our hack to close the hover
11891 * properly based on which widget it belongs to, the other a simple
11892 * printf that will show the action with the anchors own data. This is
11893 * not how you would usually do it. Instead, the common case is to have
11894 * one callback for the button that will know which function to call to end
11895 * things, but since we are doing it this way it's worth noting that
11896 * smart callbacks will be called in reverse in respect to the order they
11897 * were added, and since our @c btn_end_cb will close the hover, and thus
11898 * delete our buttons, the other callback wouldn't be called if we had
11901 * After our telephone popup, there are a few others that are practically
11902 * the same, so they won't be shown here.
11904 * Once we are done with that, it's time to place our actions into our
11905 * hover. Main button goes in the middle without much questioning, and then
11906 * we see if we have a secondary button and a box of extra options.
11907 * Because I said so, secondary button goes on either side and box of
11908 * options either on top or below the main one, but to choose which
11909 * exactly, we use the hints our callback info has, which saves us from
11910 * having to do the math and see which side has more space available, with
11911 * a little special case where we delete our extra stuff if there's nowhere
11915 * @skip evas_object_smart
11916 * @until evas_object_del(box)
11920 * The example will look like this:
11921 * @image html screenshots/anchorblock_01.png
11922 * @image latex screenshots/anchorblock_01.eps
11924 * @example anchorblock_example_01.c
11927 * @addtogroup Anchorblock
11931 * @typedef Elm_Entry_Anchorblock_Info
11933 * The info sent in the callback for "anchor,clicked" signals emitted by
11934 * the Anchorblock widget.
11936 typedef struct _Elm_Entry_Anchorblock_Info Elm_Entry_Anchorblock_Info;
11938 * @struct _Elm_Entry_Anchorblock_Info
11940 * The info sent in the callback for "anchor,clicked" signals emitted by
11941 * the Anchorblock widget.
11943 struct _Elm_Entry_Anchorblock_Info
11945 const char *name; /**< Name of the anchor, as indicated in its href
11947 int button; /**< The mouse button used to click on it */
11948 Evas_Object *hover; /**< The hover object to use for the popup */
11950 Evas_Coord x, y, w, h;
11951 } anchor, /**< Geometry selection of text used as anchor */
11952 hover_parent; /**< Geometry of the object used as parent by the
11954 Eina_Bool hover_left : 1; /**< Hint indicating if there's space
11955 for content on the left side of
11956 the hover. Before calling the
11957 callback, the widget will make the
11958 necessary calculations to check
11959 which sides are fit to be set with
11960 content, based on the position the
11961 hover is activated and its distance
11962 to the edges of its parent object
11964 Eina_Bool hover_right : 1; /**< Hint indicating content fits on
11965 the right side of the hover.
11966 See @ref hover_left */
11967 Eina_Bool hover_top : 1; /**< Hint indicating content fits on top
11968 of the hover. See @ref hover_left */
11969 Eina_Bool hover_bottom : 1; /**< Hint indicating content fits
11970 below the hover. See @ref
11974 * Add a new Anchorblock object
11976 * @param parent The parent object
11977 * @return The new object or NULL if it cannot be created
11979 EAPI Evas_Object *elm_anchorblock_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
11981 * Set the text to show in the anchorblock
11983 * Sets the text of the anchorblock to @p text. This text can include markup
11984 * format tags, including <c>\<a href=anchorname\></a></c> to begin a segment
11985 * of text that will be specially styled and react to click events, ended
11986 * with either of \</a\> or \</\>. When clicked, the anchor will emit an
11987 * "anchor,clicked" signal that you can attach a callback to with
11988 * evas_object_smart_callback_add(). The name of the anchor given in the
11989 * event info struct will be the one set in the href attribute, in this
11990 * case, anchorname.
11992 * Other markup can be used to style the text in different ways, but it's
11993 * up to the style defined in the theme which tags do what.
11994 * @deprecated use elm_object_text_set() instead.
11996 EINA_DEPRECATED EAPI void elm_anchorblock_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1);
11998 * Get the markup text set for the anchorblock
12000 * Retrieves the text set on the anchorblock, with markup tags included.
12002 * @param obj The anchorblock object
12003 * @return The markup text set or @c NULL if nothing was set or an error
12005 * @deprecated use elm_object_text_set() instead.
12007 EINA_DEPRECATED EAPI const char *elm_anchorblock_text_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12009 * Set the parent of the hover popup
12011 * Sets the parent object to use by the hover created by the anchorblock
12012 * when an anchor is clicked. See @ref Hover for more details on this.
12014 * @param obj The anchorblock object
12015 * @param parent The object to use as parent for the hover
12017 EAPI void elm_anchorblock_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12019 * Get the parent of the hover popup
12021 * Get the object used as parent for the hover created by the anchorblock
12022 * widget. See @ref Hover for more details on this.
12023 * If no parent is set, the same anchorblock object will be used.
12025 * @param obj The anchorblock object
12026 * @return The object used as parent for the hover, NULL if none is set.
12028 EAPI Evas_Object *elm_anchorblock_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12030 * Set the style that the hover should use
12032 * When creating the popup hover, anchorblock will request that it's
12033 * themed according to @p style.
12035 * @param obj The anchorblock object
12036 * @param style The style to use for the underlying hover
12038 * @see elm_object_style_set()
12040 EAPI void elm_anchorblock_hover_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12042 * Get the style that the hover should use
12044 * Get the style the hover created by anchorblock will use.
12046 * @param obj The anchorblock object
12047 * @return The style to use by the hover. NULL means the default is used.
12049 * @see elm_object_style_set()
12051 EAPI const char *elm_anchorblock_hover_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12053 * Ends the hover popup in the anchorblock
12055 * When an anchor is clicked, the anchorblock widget will create a hover
12056 * object to use as a popup with user provided content. This function
12057 * terminates this popup, returning the anchorblock to its normal state.
12059 * @param obj The anchorblock object
12061 EAPI void elm_anchorblock_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12063 * Appends a custom item provider to the given anchorblock
12065 * Appends the given function to the list of items providers. This list is
12066 * called, one function at a time, with the given @p data pointer, the
12067 * anchorblock object and, in the @p item parameter, the item name as
12068 * referenced in its href string. Following functions in the list will be
12069 * called in order until one of them returns something different to NULL,
12070 * which should be an Evas_Object which will be used in place of the item
12073 * Items in the markup text take the form \<item relsize=16x16 vsize=full
12074 * href=item/name\>\</item\>
12076 * @param obj The anchorblock object
12077 * @param func The function to add to the list of providers
12078 * @param data User data that will be passed to the callback function
12080 * @see elm_entry_item_provider_append()
12082 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);
12084 * Prepend a custom item provider to the given anchorblock
12086 * Like elm_anchorblock_item_provider_append(), but it adds the function
12087 * @p func to the beginning of the list, instead of the end.
12089 * @param obj The anchorblock object
12090 * @param func The function to add to the list of providers
12091 * @param data User data that will be passed to the callback function
12093 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);
12095 * Remove a custom item provider from the list of the given anchorblock
12097 * Removes the function and data pairing that matches @p func and @p data.
12098 * That is, unless the same function and same user data are given, the
12099 * function will not be removed from the list. This allows us to add the
12100 * same callback several times, with different @p data pointers and be
12101 * able to remove them later without conflicts.
12103 * @param obj The anchorblock object
12104 * @param func The function to remove from the list
12105 * @param data The data matching the function to remove from the list
12107 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);
12113 * @defgroup Bubble Bubble
12115 * @image html img/widget/bubble/preview-00.png
12116 * @image latex img/widget/bubble/preview-00.eps
12117 * @image html img/widget/bubble/preview-01.png
12118 * @image latex img/widget/bubble/preview-01.eps
12119 * @image html img/widget/bubble/preview-02.png
12120 * @image latex img/widget/bubble/preview-02.eps
12122 * @brief The Bubble is a widget to show text similar to how speech is
12123 * represented in comics.
12125 * The bubble widget contains 5 important visual elements:
12126 * @li The frame is a rectangle with rounded edjes and an "arrow".
12127 * @li The @p icon is an image to which the frame's arrow points to.
12128 * @li The @p label is a text which appears to the right of the icon if the
12129 * corner is "top_left" or "bottom_left" and is right aligned to the frame
12131 * @li The @p info is a text which appears to the right of the label. Info's
12132 * font is of a ligther color than label.
12133 * @li The @p content is an evas object that is shown inside the frame.
12135 * The position of the arrow, icon, label and info depends on which corner is
12136 * selected. The four available corners are:
12137 * @li "top_left" - Default
12139 * @li "bottom_left"
12140 * @li "bottom_right"
12142 * Signals that you can add callbacks for are:
12143 * @li "clicked" - This is called when a user has clicked the bubble.
12145 * For an example of using a buble see @ref bubble_01_example_page "this".
12150 * Add a new bubble to the parent
12152 * @param parent The parent object
12153 * @return The new object or NULL if it cannot be created
12155 * This function adds a text bubble to the given parent evas object.
12157 EAPI Evas_Object *elm_bubble_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12159 * Set the label of the bubble
12161 * @param obj The bubble object
12162 * @param label The string to set in the label
12164 * This function sets the title of the bubble. Where this appears depends on
12165 * the selected corner.
12166 * @deprecated use elm_object_text_set() instead.
12168 EINA_DEPRECATED EAPI void elm_bubble_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12170 * Get the label of the bubble
12172 * @param obj The bubble object
12173 * @return The string of set in the label
12175 * This function gets the title of the bubble.
12176 * @deprecated use elm_object_text_get() instead.
12178 EINA_DEPRECATED EAPI const char *elm_bubble_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12180 * Set the info of the bubble
12182 * @param obj The bubble object
12183 * @param info The given info about the bubble
12185 * This function sets the info of the bubble. Where this appears depends on
12186 * the selected corner.
12187 * @deprecated use elm_object_text_part_set() instead. (with "info" as the parameter).
12189 EINA_DEPRECATED EAPI void elm_bubble_info_set(Evas_Object *obj, const char *info) EINA_ARG_NONNULL(1);
12191 * Get the info of the bubble
12193 * @param obj The bubble object
12195 * @return The "info" string of the bubble
12197 * This function gets the info text.
12198 * @deprecated use elm_object_text_part_get() instead. (with "info" as the parameter).
12200 EINA_DEPRECATED EAPI const char *elm_bubble_info_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12202 * Set the content to be shown in the bubble
12204 * Once the content object is set, a previously set one will be deleted.
12205 * If you want to keep the old content object, use the
12206 * elm_bubble_content_unset() function.
12208 * @param obj The bubble object
12209 * @param content The given content of the bubble
12211 * This function sets the content shown on the middle of the bubble.
12213 EAPI void elm_bubble_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
12215 * Get the content shown in the bubble
12217 * Return the content object which is set for this widget.
12219 * @param obj The bubble object
12220 * @return The content that is being used
12222 EAPI Evas_Object *elm_bubble_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12224 * Unset the content shown in the bubble
12226 * Unparent and return the content object which was set for this widget.
12228 * @param obj The bubble object
12229 * @return The content that was being used
12231 EAPI Evas_Object *elm_bubble_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12233 * Set the icon of the bubble
12235 * Once the icon object is set, a previously set one will be deleted.
12236 * If you want to keep the old content object, use the
12237 * elm_icon_content_unset() function.
12239 * @param obj The bubble object
12240 * @param icon The given icon for the bubble
12242 EAPI void elm_bubble_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12244 * Get the icon of the bubble
12246 * @param obj The bubble object
12247 * @return The icon for the bubble
12249 * This function gets the icon shown on the top left of bubble.
12251 EAPI Evas_Object *elm_bubble_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12253 * Unset the icon of the bubble
12255 * Unparent and return the icon object which was set for this widget.
12257 * @param obj The bubble object
12258 * @return The icon that was being used
12260 EAPI Evas_Object *elm_bubble_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12262 * Set the corner of the bubble
12264 * @param obj The bubble object.
12265 * @param corner The given corner for the bubble.
12267 * This function sets the corner of the bubble. The corner will be used to
12268 * determine where the arrow in the frame points to and where label, icon and
12271 * Possible values for corner are:
12272 * @li "top_left" - Default
12274 * @li "bottom_left"
12275 * @li "bottom_right"
12277 EAPI void elm_bubble_corner_set(Evas_Object *obj, const char *corner) EINA_ARG_NONNULL(1, 2);
12279 * Get the corner of the bubble
12281 * @param obj The bubble object.
12282 * @return The given corner for the bubble.
12284 * This function gets the selected corner of the bubble.
12286 EAPI const char *elm_bubble_corner_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12288 EINA_DEPRECATED EAPI void elm_bubble_sweep_layout_set(Evas_Object *obj, Evas_Object *sweep) EINA_ARG_NONNULL(1);
12289 EINA_DEPRECATED EAPI Evas_Object *elm_bubble_sweep_layout_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12296 EAPI Evas_Object *elm_photo_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12297 EAPI Eina_Bool elm_photo_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
12298 EAPI void elm_photo_size_set(Evas_Object *obj, int size) EINA_ARG_NONNULL(1);
12299 EAPI void elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill) EINA_ARG_NONNULL(1);
12300 EAPI void elm_photo_editable_set(Evas_Object *obj, Eina_Bool set) EINA_ARG_NONNULL(1);
12301 /* smart callbacks called:
12302 * "clicked" - the user clicked the icon
12303 * "drag,start" - Someone started dragging the image out of the object
12304 * "drag,end" - Dragged item was dropped (somewhere)
12307 /* gesture layer */
12308 /** @defgroup Elm_Gesture_Layer Gesture Layer */
12310 * @enum _Elm_Gesture_Types
12311 * Emum of supported gesture types.
12312 * @ingroup Elm_Gesture_Layer
12314 enum _Elm_Gesture_Types
12316 ELM_GESTURE_FIRST = 0,
12318 ELM_GESTURE_N_TAPS, /**< N fingers single taps */
12319 ELM_GESTURE_N_LONG_TAPS, /**< N fingers single long-taps */
12320 ELM_GESTURE_N_DOUBLE_TAPS, /**< N fingers double-single taps */
12321 ELM_GESTURE_N_TRIPLE_TAPS, /**< N fingers triple-single taps */
12323 ELM_GESTURE_MOMENTUM, /**< Reports momentum in the dircetion of move */
12325 ELM_GESTURE_N_LINES, /**< N fingers line gesture */
12326 ELM_GESTURE_N_FLICKS, /**< N fingers flick gesture */
12328 ELM_GESTURE_ZOOM, /**< Zoom */
12329 ELM_GESTURE_ROTATE, /**< Rotate */
12335 * @typedef Elm_Gesture_Types
12336 * Type for Emum of supported gesture types.
12337 * @ingroup Elm_Gesture_Layer
12339 typedef enum _Elm_Gesture_Types Elm_Gesture_Types;
12342 * @enum _Elm_Gesture_State
12343 * Emum of gesture states.
12344 * @ingroup Elm_Gesture_Layer
12346 enum _Elm_Gesture_State
12348 ELM_GESTURE_STATE_UNDEFINED = -1, /**< Gesture not STARTed */
12349 ELM_GESTURE_STATE_START, /**< Gesture STARTed */
12350 ELM_GESTURE_STATE_MOVE, /**< Gesture is ongoing */
12351 ELM_GESTURE_STATE_END, /**< Gesture completed */
12352 ELM_GESTURE_STATE_ABORT /**< Onging gesture was ABORTed */
12355 * @typedef Elm_Gesture_State
12357 * @ingroup Elm_Gesture_Layer
12359 typedef enum _Elm_Gesture_State Elm_Gesture_State;
12362 * @struct _Elm_Gesture_Taps_Info
12363 * Struct holds taps info for user
12364 * @ingroup Elm_Gesture_Layer
12366 struct _Elm_Gesture_Taps_Info
12368 Evas_Coord x, y; /**< Holds center point between fingers */
12369 unsigned int n; /**< Number of fingers tapped */
12370 unsigned int timestamp; /**< event timestamp */
12374 * @typedef Elm_Gesture_Taps_Info
12375 * holds taps info for user
12376 * @ingroup Elm_Gesture_Layer
12378 typedef struct _Elm_Gesture_Taps_Info Elm_Gesture_Taps_Info;
12381 * @struct _Elm_Gesture_Momentum_Info
12382 * Struct holds momentum info for user
12383 * x1 and y1 are not necessarily in sync
12384 * x1 holds x value of x direction starting point
12385 * and same holds for y1.
12386 * This is noticeable when doing V-shape movement
12387 * @ingroup Elm_Gesture_Layer
12389 struct _Elm_Gesture_Momentum_Info
12390 { /* Report line ends, timestamps, and momentum computed */
12391 Evas_Coord x1; /**< Final-swipe direction starting point on X */
12392 Evas_Coord y1; /**< Final-swipe direction starting point on Y */
12393 Evas_Coord x2; /**< Final-swipe direction ending point on X */
12394 Evas_Coord y2; /**< Final-swipe direction ending point on Y */
12396 unsigned int tx; /**< Timestamp of start of final x-swipe */
12397 unsigned int ty; /**< Timestamp of start of final y-swipe */
12399 Evas_Coord mx; /**< Momentum on X */
12400 Evas_Coord my; /**< Momentum on Y */
12402 unsigned int n; /**< Number of fingers */
12406 * @typedef Elm_Gesture_Momentum_Info
12407 * holds momentum info for user
12408 * @ingroup Elm_Gesture_Layer
12410 typedef struct _Elm_Gesture_Momentum_Info Elm_Gesture_Momentum_Info;
12413 * @struct _Elm_Gesture_Line_Info
12414 * Struct holds line info for user
12415 * @ingroup Elm_Gesture_Layer
12417 struct _Elm_Gesture_Line_Info
12418 { /* Report line ends, timestamps, and momentum computed */
12419 Elm_Gesture_Momentum_Info momentum; /**< Line momentum info */
12420 /* FIXME should be radians, bot degrees */
12421 double angle; /**< Angle (direction) of lines */
12425 * @typedef _Elm_Gesture_Line_Info
12426 * Holds line info for user
12427 * @ingroup Elm_Gesture_Layer
12429 typedef struct _Elm_Gesture_Line_Info Elm_Gesture_Line_Info;
12432 * @struct _Elm_Gesture_Zoom_Info
12433 * Struct holds zoom info for user
12434 * @ingroup Elm_Gesture_Layer
12436 struct _Elm_Gesture_Zoom_Info
12438 Evas_Coord x, y; /**< Holds zoom center point reported to user */
12439 Evas_Coord radius; /**< Holds radius between fingers reported to user */
12440 double zoom; /**< Zoom value: 1.0 means no zoom */
12441 double momentum; /**< Zoom momentum: zoom growth per second (NOT YET SUPPORTED) */
12445 * @typedef Elm_Gesture_Zoom_Info
12446 * Holds zoom info for user
12447 * @ingroup Elm_Gesture_Layer
12449 typedef struct _Elm_Gesture_Zoom_Info Elm_Gesture_Zoom_Info;
12452 * @struct _Elm_Gesture_Rotate_Info
12453 * Struct holds rotation info for user
12454 * @ingroup Elm_Gesture_Layer
12456 struct _Elm_Gesture_Rotate_Info
12458 Evas_Coord x, y; /**< Holds zoom center point reported to user */
12459 Evas_Coord radius; /**< Holds radius between fingers reported to user */
12460 double base_angle; /**< Holds start-angle */
12461 double angle; /**< Rotation value: 0.0 means no rotation */
12462 double momentum; /**< Rotation momentum: rotation done per second (NOT YET SUPPORTED) */
12466 * @typedef Elm_Gesture_Rotate_Info
12467 * Holds rotation info for user
12468 * @ingroup Elm_Gesture_Layer
12470 typedef struct _Elm_Gesture_Rotate_Info Elm_Gesture_Rotate_Info;
12473 * @typedef Elm_Gesture_Event_Cb
12474 * User callback used to stream gesture info from gesture layer
12475 * @param data user data
12476 * @param event_info gesture report info
12477 * Returns a flag field to be applied on the causing event.
12478 * You should probably return EVAS_EVENT_FLAG_ON_HOLD if your widget acted
12479 * upon the event, in an irreversible way.
12481 * @ingroup Elm_Gesture_Layer
12483 typedef Evas_Event_Flags (*Elm_Gesture_Event_Cb) (void *data, void *event_info);
12486 * Use function to set callbacks to be notified about
12487 * change of state of gesture.
12488 * When a user registers a callback with this function
12489 * this means this gesture has to be tested.
12491 * When ALL callbacks for a gesture are set to NULL
12492 * it means user isn't interested in gesture-state
12493 * and it will not be tested.
12495 * @param obj Pointer to gesture-layer.
12496 * @param idx The gesture you would like to track its state.
12497 * @param cb callback function pointer.
12498 * @param cb_type what event this callback tracks: START, MOVE, END, ABORT.
12499 * @param data user info to be sent to callback (usually, Smart Data)
12501 * @ingroup Elm_Gesture_Layer
12503 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);
12506 * Call this function to get repeat-events settings.
12508 * @param obj Pointer to gesture-layer.
12510 * @return repeat events settings.
12511 * @see elm_gesture_layer_hold_events_set()
12512 * @ingroup Elm_Gesture_Layer
12514 EAPI Eina_Bool elm_gesture_layer_hold_events_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
12517 * This function called in order to make gesture-layer repeat events.
12518 * Set this of you like to get the raw events only if gestures were not detected.
12519 * Clear this if you like gesture layer to fwd events as testing gestures.
12521 * @param obj Pointer to gesture-layer.
12522 * @param r Repeat: TRUE/FALSE
12524 * @ingroup Elm_Gesture_Layer
12526 EAPI void elm_gesture_layer_hold_events_set(Evas_Object *obj, Eina_Bool r) EINA_ARG_NONNULL(1);
12529 * This function sets step-value for zoom action.
12530 * Set step to any positive value.
12531 * Cancel step setting by setting to 0.0
12533 * @param obj Pointer to gesture-layer.
12534 * @param s new zoom step value.
12536 * @ingroup Elm_Gesture_Layer
12538 EAPI void elm_gesture_layer_zoom_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
12541 * This function sets step-value for rotate action.
12542 * Set step to any positive value.
12543 * Cancel step setting by setting to 0.0
12545 * @param obj Pointer to gesture-layer.
12546 * @param s new roatate step value.
12548 * @ingroup Elm_Gesture_Layer
12550 EAPI void elm_gesture_layer_rotate_step_set(Evas_Object *obj, double s) EINA_ARG_NONNULL(1);
12553 * This function called to attach gesture-layer to an Evas_Object.
12554 * @param obj Pointer to gesture-layer.
12555 * @param t Pointer to underlying object (AKA Target)
12557 * @return TRUE, FALSE on success, failure.
12559 * @ingroup Elm_Gesture_Layer
12561 EAPI Eina_Bool elm_gesture_layer_attach(Evas_Object *obj, Evas_Object *t) EINA_ARG_NONNULL(1, 2);
12564 * Call this function to construct a new gesture-layer object.
12565 * This does not activate the gesture layer. You have to
12566 * call elm_gesture_layer_attach in order to 'activate' gesture-layer.
12568 * @param parent the parent object.
12570 * @return Pointer to new gesture-layer object.
12572 * @ingroup Elm_Gesture_Layer
12574 EAPI Evas_Object *elm_gesture_layer_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12577 typedef enum _Elm_Thumb_Animation_Setting
12579 ELM_THUMB_ANIMATION_START = 0, /* Play animation once */
12580 ELM_THUMB_ANIMATION_LOOP, /* Keep playing animation until stop is requested */
12581 ELM_THUMB_ANIMATION_STOP,
12582 ELM_THUMB_ANIMATION_LAST
12583 } Elm_Thumb_Animation_Setting;
12585 EAPI Evas_Object *elm_thumb_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12586 EAPI void elm_thumb_reload(Evas_Object *obj) EINA_ARG_NONNULL(1);
12587 EAPI void elm_thumb_file_set(Evas_Object *obj, const char *file, const char *key) EINA_ARG_NONNULL(1);
12588 EAPI void elm_thumb_file_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
12589 EAPI void elm_thumb_path_get(const Evas_Object *obj, const char **file, const char **key) EINA_ARG_NONNULL(1);
12590 EAPI void elm_thumb_animate_set(Evas_Object *obj, Elm_Thumb_Animation_Setting s) EINA_ARG_NONNULL(1);
12591 EAPI Elm_Thumb_Animation_Setting elm_thumb_animate_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12592 EAPI void *elm_thumb_ethumb_client_get(void);
12593 EAPI Eina_Bool elm_thumb_ethumb_client_connected(void);
12594 EAPI Eina_Bool elm_thumb_editable_set(Evas_Object *obj, Eina_Bool edit) EINA_ARG_NONNULL(1);
12595 EAPI Eina_Bool elm_thumb_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12596 /* available styles:
12600 /* smart callbacks called:
12601 * "clicked" - This is called when a user has clicked the thumb without dragging around.
12602 * "clicked,double" - This is called when a user has double-clicked the thumb.
12603 * "press" - This is called when a user has pressed down the thumb.
12604 * "generate,start" - The thumbnail generation started.
12605 * "generate,stop" - The generation process stopped.
12606 * "generate,error" - The generation failed.
12607 * "load,error" - The thumbnail image loading failed.
12611 typedef struct _Elm_Hoversel_Item Elm_Hoversel_Item; /**< Item of Elm_Hoversel. Sub-type of Elm_Widget_Item */
12613 EAPI Evas_Object *elm_hoversel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12614 EAPI void elm_hoversel_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
12615 EAPI Eina_Bool elm_hoversel_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12616 EAPI void elm_hoversel_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12617 EAPI Evas_Object *elm_hoversel_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12618 EINA_DEPRECATED EAPI void elm_hoversel_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12619 EINA_DEPRECATED EAPI const char *elm_hoversel_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12620 EAPI void elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12621 EAPI Evas_Object *elm_hoversel_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12622 EAPI Evas_Object *elm_hoversel_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12623 EAPI void elm_hoversel_hover_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
12624 EAPI void elm_hoversel_hover_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
12625 EAPI Eina_Bool elm_hoversel_expanded_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12626 EAPI void elm_hoversel_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
12627 EAPI const Eina_List *elm_hoversel_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12628 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);
12629 EAPI void elm_hoversel_item_del(Elm_Hoversel_Item *item) EINA_ARG_NONNULL(1);
12630 EAPI void elm_hoversel_item_del_cb_set(Elm_Hoversel_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
12631 EAPI void *elm_hoversel_item_data_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
12632 EAPI const char *elm_hoversel_item_label_get(const Elm_Hoversel_Item *it) EINA_ARG_NONNULL(1);
12633 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);
12634 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);
12635 /* smart callbacks called:
12636 * "clicked" - the user clicked the hoversel button and popped up the sel
12637 * "selected" - an item in the hoversel list is selected
12638 * "dismissed" - the hover is dismissed
12642 typedef enum _Elm_Toolbar_Shrink_Mode
12644 ELM_TOOLBAR_SHRINK_NONE, /**< set toolbar minimun size to fit all the items */
12645 ELM_TOOLBAR_SHRINK_HIDE, /**< hide excess items */
12646 ELM_TOOLBAR_SHRINK_SCROLL, /**< allow accessing excess items through a scroller */
12647 ELM_TOOLBAR_SHRINK_MENU /**< inserts a button to pop up a menu with excess items */
12648 } Elm_Toolbar_Shrink_Mode;
12650 typedef struct _Elm_Toolbar_Item Elm_Toolbar_Item; /**< Item of Elm_Toolbar. Sub-type of Elm_Widget_Item */
12651 typedef struct _Elm_Toolbar_Item_State Elm_Toolbar_Item_State; /** State of a Elm_Toolbar_Item */
12653 EAPI Evas_Object *elm_toolbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12654 EAPI void elm_toolbar_icon_size_set(Evas_Object *obj, int icon_size) EINA_ARG_NONNULL(1);
12655 EAPI int elm_toolbar_icon_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12656 EAPI void elm_toolbar_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order) EINA_ARG_NONNULL(1);
12657 EAPI Elm_Icon_Lookup_Order elm_toolbar_icon_order_lookup_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12658 EAPI void elm_toolbar_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
12659 EAPI Eina_Bool elm_toolbar_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12660 EAPI Elm_Toolbar_Item *elm_toolbar_item_append(Evas_Object *obj, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
12661 EAPI Elm_Toolbar_Item *elm_toolbar_item_prepend(Evas_Object *obj, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
12662 EAPI Elm_Toolbar_Item *elm_toolbar_item_insert_before(Evas_Object *obj, Elm_Toolbar_Item *before, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
12663 EAPI Elm_Toolbar_Item *elm_toolbar_item_insert_after(Evas_Object *obj, Elm_Toolbar_Item *after, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
12664 EAPI Elm_Toolbar_Item *elm_toolbar_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12665 EAPI Elm_Toolbar_Item *elm_toolbar_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12666 EAPI Elm_Toolbar_Item *elm_toolbar_item_next_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12667 EAPI Elm_Toolbar_Item *elm_toolbar_item_prev_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12668 EAPI Evas_Object *elm_toolbar_item_toolbar_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12669 EAPI void elm_toolbar_item_priority_set(Elm_Toolbar_Item *item, int priority) EINA_ARG_NONNULL(1);
12670 EAPI int elm_toolbar_item_priority_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12671 EAPI const char *elm_toolbar_item_icon_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12672 EAPI const char *elm_toolbar_item_label_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12673 EAPI void elm_toolbar_item_label_set(Elm_Toolbar_Item *item, const char *label) EINA_ARG_NONNULL(1);
12674 EAPI void *elm_toolbar_item_data_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12675 EAPI void elm_toolbar_item_data_set(Elm_Toolbar_Item *item, const void *data) EINA_ARG_NONNULL(1);
12676 EAPI Elm_Toolbar_Item *elm_toolbar_item_find_by_label(const Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12677 EAPI Eina_Bool elm_toolbar_item_selected_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12678 EAPI void elm_toolbar_item_selected_set(Elm_Toolbar_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
12679 EAPI Elm_Toolbar_Item *elm_toolbar_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12680 EAPI void elm_toolbar_item_icon_set(Elm_Toolbar_Item *item, const char *icon) EINA_ARG_NONNULL(1);
12681 EAPI void elm_toolbar_item_del(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12682 EAPI void elm_toolbar_item_del_cb_set(Elm_Toolbar_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
12683 EAPI Eina_Bool elm_toolbar_item_disabled_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12684 EAPI void elm_toolbar_item_disabled_set(Elm_Toolbar_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
12685 EAPI void elm_toolbar_item_separator_set(Elm_Toolbar_Item *item, Eina_Bool separator) EINA_ARG_NONNULL(1);
12686 EAPI Eina_Bool elm_toolbar_item_separator_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12687 EAPI void elm_toolbar_mode_shrink_set(Evas_Object *obj, Elm_Toolbar_Shrink_Mode shrink_mode) EINA_ARG_NONNULL(1);
12688 EAPI Elm_Toolbar_Shrink_Mode elm_toolbar_mode_shrink_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12689 EAPI void elm_toolbar_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
12690 EAPI Eina_Bool elm_toolbar_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12691 EINA_DEPRECATED EAPI void elm_toolbar_homogenous_set(Evas_Object *obj, Eina_Bool homogenous) EINA_ARG_NONNULL(1);
12692 EINA_DEPRECATED EAPI Eina_Bool elm_toolbar_homogenous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12693 EAPI void elm_toolbar_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12694 EAPI Evas_Object *elm_toolbar_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12695 EAPI void elm_toolbar_align_set(Evas_Object *obj, double align) EINA_ARG_NONNULL(1);
12696 EAPI double elm_toolbar_align_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12697 EAPI void elm_toolbar_item_menu_set(Elm_Toolbar_Item *item, Eina_Bool menu) EINA_ARG_NONNULL(1);
12698 EAPI Evas_Object *elm_toolbar_item_menu_get(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12699 EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_add(Elm_Toolbar_Item *item, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
12700 EAPI Eina_Bool elm_toolbar_item_state_del(Elm_Toolbar_Item *item, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
12701 EAPI Eina_Bool elm_toolbar_item_state_set(Elm_Toolbar_Item *it, Elm_Toolbar_Item_State *state) EINA_ARG_NONNULL(1);
12702 EAPI void elm_toolbar_item_state_unset(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
12703 EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_get(const Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
12704 EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_next(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
12705 EAPI Elm_Toolbar_Item_State *elm_toolbar_item_state_prev(Elm_Toolbar_Item *it) EINA_ARG_NONNULL(1);
12706 EAPI void elm_toolbar_item_tooltip_text_set(Elm_Toolbar_Item *item, const char *text) EINA_ARG_NONNULL(1);
12707 EAPI void elm_toolbar_item_tooltip_content_cb_set(Elm_Toolbar_Item *item, Elm_Tooltip_Item_Content_Cb func, const void *data, Evas_Smart_Cb del_cb) EINA_ARG_NONNULL(1);
12708 EAPI void elm_toolbar_item_tooltip_unset(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12709 EAPI void elm_toolbar_item_tooltip_style_set(Elm_Toolbar_Item *item, const char *style) EINA_ARG_NONNULL(1);
12710 EAPI const char *elm_toolbar_item_tooltip_style_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12711 EAPI void elm_toolbar_item_cursor_set(Elm_Toolbar_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
12712 EAPI const char *elm_toolbar_item_cursor_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12713 EAPI void elm_toolbar_item_cursor_unset(Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12714 EAPI void elm_toolbar_item_cursor_style_set(Elm_Toolbar_Item *item, const char *style) EINA_ARG_NONNULL(1);
12715 EAPI const char *elm_toolbar_item_cursor_style_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12716 EAPI void elm_toolbar_item_cursor_engine_only_set(Elm_Toolbar_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
12717 EAPI Eina_Bool elm_toolbar_item_cursor_engine_only_get(const Elm_Toolbar_Item *item) EINA_ARG_NONNULL(1);
12718 /* smart callbacks called:
12719 * "clicked" - when the user clicks on a toolbar item and becomes selected
12721 /* available styles:
12723 * transparent (no background or shadow, just show the provided content)
12727 EAPI double elm_tooltip_delay_get(void);
12728 EAPI Eina_Bool elm_tooltip_delay_set(double delay);
12729 EAPI void elm_object_tooltip_show(Evas_Object *obj) EINA_ARG_NONNULL(1);
12730 EAPI void elm_object_tooltip_hide(Evas_Object *obj) EINA_ARG_NONNULL(1);
12731 EAPI void elm_object_tooltip_text_set(Evas_Object *obj, const char *text) EINA_ARG_NONNULL(1, 2);
12732 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);
12733 EAPI void elm_object_tooltip_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12734 EAPI void elm_object_tooltip_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12735 EAPI const char *elm_object_tooltip_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12736 EAPI void elm_object_cursor_set(Evas_Object *obj, const char *cursor) EINA_ARG_NONNULL(1);
12737 EAPI const char *elm_object_cursor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12738 EAPI void elm_object_cursor_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12739 EAPI void elm_object_cursor_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
12740 EAPI const char *elm_object_cursor_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12741 EAPI void elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
12742 EAPI Eina_Bool elm_object_cursor_engine_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12745 EAPI int elm_cursor_engine_only_get(void);
12746 EAPI Eina_Bool elm_cursor_engine_only_set(int engine_only);
12749 typedef struct _Elm_Menu_Item Elm_Menu_Item; /**< Item of Elm_Menu. Sub-type of Elm_Widget_Item */
12750 EAPI Evas_Object *elm_menu_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12751 EAPI void elm_menu_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1);
12752 EAPI Evas_Object *elm_menu_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12753 EAPI void elm_menu_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
12754 EAPI void elm_menu_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
12755 EAPI const Eina_List *elm_menu_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12756 EAPI Evas_Object *elm_menu_item_object_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
12757 EAPI Elm_Menu_Item *elm_menu_item_add(Evas_Object *obj, Elm_Menu_Item *parent, const char *icon, const char *label, Evas_Smart_Cb func, const void *data) EINA_ARG_NONNULL(1);
12758 EAPI void elm_menu_item_label_set(Elm_Menu_Item *item, const char *label) EINA_ARG_NONNULL(1);
12759 EAPI const char *elm_menu_item_label_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12760 EAPI void elm_menu_item_icon_set(Elm_Menu_Item *item, const char *icon) EINA_ARG_NONNULL(1, 2);
12761 EAPI const char *elm_menu_item_icon_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12762 EAPI const Evas_Object *elm_menu_item_object_icon_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12763 EAPI void elm_menu_item_selected_set(Elm_Menu_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
12764 EAPI Eina_Bool elm_menu_item_selected_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12765 EAPI void elm_menu_item_disabled_set(Elm_Menu_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
12766 EAPI Eina_Bool elm_menu_item_disabled_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12767 EAPI Elm_Menu_Item *elm_menu_item_separator_add(Evas_Object *obj, Elm_Menu_Item *parent) EINA_ARG_NONNULL(1);
12768 EAPI Eina_Bool elm_menu_item_is_separator(Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12769 EAPI void elm_menu_item_del(Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12770 EAPI void elm_menu_item_del_cb_set(Elm_Menu_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
12771 EAPI void *elm_menu_item_data_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
12772 EAPI void elm_menu_item_data_set(Elm_Menu_Item *item, const void *data) EINA_ARG_NONNULL(1);
12773 EAPI const Eina_List *elm_menu_item_subitems_get(const Elm_Menu_Item *item) EINA_ARG_NONNULL(1);
12774 EAPI const Elm_Menu_Item *elm_menu_selected_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
12775 EAPI const Elm_Menu_Item *elm_menu_last_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
12776 EAPI const Elm_Menu_Item *elm_menu_first_item_get(const Evas_Object * obj) EINA_ARG_NONNULL(1);
12777 EAPI const Elm_Menu_Item *elm_menu_item_next_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
12778 EAPI const Elm_Menu_Item *elm_menu_item_prev_get(const Elm_Menu_Item *it) EINA_ARG_NONNULL(1);
12780 /* smart callbacks called:
12781 * "clicked" - the user clicked the empty space in the menu to dismiss. event_info is NULL.
12785 typedef enum _Elm_List_Mode
12787 ELM_LIST_COMPRESS = 0,
12793 typedef struct _Elm_List_Item Elm_List_Item; /**< Item of Elm_List. Sub-type of Elm_Widget_Item */
12794 EAPI Evas_Object *elm_list_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12795 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);
12796 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);
12797 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);
12798 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);
12799 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);
12800 EAPI void elm_list_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
12801 EAPI void elm_list_go(Evas_Object *obj) EINA_ARG_NONNULL(1);
12802 EAPI void elm_list_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
12803 EAPI Eina_Bool elm_list_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12804 EAPI void elm_list_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
12805 EAPI Elm_List_Mode elm_list_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12806 EAPI void elm_list_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
12807 EAPI Eina_Bool elm_list_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12808 EAPI void elm_list_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
12809 EAPI Eina_Bool elm_list_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12810 EAPI const Eina_List *elm_list_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12811 EAPI Elm_List_Item *elm_list_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12812 EAPI const Eina_List *elm_list_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12813 EAPI void elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting) EINA_ARG_NONNULL(1);
12814 EAPI Eina_Bool elm_list_item_separator_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
12815 EAPI void elm_list_item_selected_set(Elm_List_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
12816 EAPI Eina_Bool elm_list_item_selected_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12817 EAPI void elm_list_item_show(Elm_List_Item *item) EINA_ARG_NONNULL(1);
12818 EAPI void elm_list_item_bring_in(Elm_List_Item *item) EINA_ARG_NONNULL(1);
12819 EAPI void elm_list_item_del(Elm_List_Item *item) EINA_ARG_NONNULL(1);
12820 EAPI void elm_list_item_del_cb_set(Elm_List_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
12821 EAPI void *elm_list_item_data_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12822 EAPI Evas_Object *elm_list_item_icon_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12823 EAPI void elm_list_item_icon_set(Elm_List_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
12824 EAPI Evas_Object *elm_list_item_end_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12825 EAPI void elm_list_item_end_set(Elm_List_Item *item, Evas_Object *end) EINA_ARG_NONNULL(1);
12826 EAPI Evas_Object *elm_list_item_base_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12827 EAPI const char *elm_list_item_label_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12828 EAPI void elm_list_item_label_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
12829 EAPI Elm_List_Item *elm_list_item_prev(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
12830 EAPI Elm_List_Item *elm_list_item_next(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
12831 EAPI void elm_list_item_tooltip_text_set(Elm_List_Item *item, const char *text) EINA_ARG_NONNULL(1);
12832 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);
12833 EAPI void elm_list_item_tooltip_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
12834 EAPI void elm_list_item_tooltip_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
12835 EAPI const char *elm_list_item_tooltip_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12836 EAPI void elm_list_item_cursor_set(Elm_List_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
12837 EAPI const char *elm_list_item_cursor_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12838 EAPI void elm_list_item_cursor_unset(Elm_List_Item *item) EINA_ARG_NONNULL(1);
12839 EAPI void elm_list_item_cursor_style_set(Elm_List_Item *item, const char *style) EINA_ARG_NONNULL(1);
12840 EAPI const char *elm_list_item_cursor_style_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12841 EAPI void elm_list_item_cursor_engine_only_set(Elm_List_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
12842 EAPI Eina_Bool elm_list_item_cursor_engine_only_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
12843 EAPI void elm_list_item_disabled_set(Elm_List_Item *it, Eina_Bool disabled) EINA_ARG_NONNULL(1);
12844 EAPI Eina_Bool elm_list_item_disabled_get(const Elm_List_Item *it) EINA_ARG_NONNULL(1);
12845 EAPI void elm_list_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
12846 EAPI void elm_list_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
12847 EAPI void elm_list_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
12848 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);
12849 /* smart callbacks called:
12850 * "clicked,double" - when the user double-clicked an item
12851 * "selected" - when the user selected an item
12852 * "unselected" - when the user selected an item
12853 * "longpressed" - an item in the hoversel list is long-pressed
12854 * "scroll,edge,top" - the list is scrolled until the top edge
12855 * "scroll,edge,bottom" - the list is scrolled until the bottom edge
12856 * "scroll,edge,left" - the list is scrolled until the left edge
12857 * "scroll,edge,right" - the list is scrolled until the right edge
12861 EAPI Evas_Object *elm_slider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12862 EINA_DEPRECATED EAPI void elm_slider_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
12863 EINA_DEPRECATED EAPI const char *elm_slider_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12864 EAPI void elm_slider_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
12865 EAPI Evas_Object *elm_slider_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12866 EAPI Evas_Object *elm_slider_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12867 EAPI void elm_slider_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1);
12868 EAPI Evas_Object *elm_slider_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
12869 EAPI Evas_Object *elm_slider_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12870 EAPI void elm_slider_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
12871 EAPI Evas_Coord elm_slider_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12872 EAPI void elm_slider_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
12873 EAPI const char *elm_slider_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12874 EAPI void elm_slider_indicator_format_set(Evas_Object *obj, const char *indicator) EINA_ARG_NONNULL(1);
12875 EAPI const char *elm_slider_indicator_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12876 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);
12877 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);
12878 EAPI void elm_slider_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
12879 EAPI Eina_Bool elm_slider_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12880 EAPI void elm_slider_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
12881 EAPI void elm_slider_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
12882 EAPI void elm_slider_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
12883 EAPI double elm_slider_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12884 EAPI void elm_slider_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
12885 EAPI Eina_Bool elm_slider_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12886 EAPI void elm_slider_indicator_show_set(Evas_Object *obj, Eina_Bool show) EINA_ARG_NONNULL(1);
12887 EAPI Eina_Bool elm_slider_indicator_show_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12888 /* smart callbacks called:
12889 * "changed" - Whenever the slider value is changed by the user.
12890 * "slider,drag,start" - dragging the slider indicator around has started
12891 * "slider,drag,stop" - dragging the slider indicator around has stopped
12892 * "delay,changed" - A short time after the value is changed by the user.
12893 * This will be called only when the user stops dragging for a very short
12894 * period or when they release their finger/mouse, so it avoids possibly
12895 * expensive reactions to the value change.
12902 * @addtogroup Actionslider Actionslider
12904 * A actionslider is a switcher for 2 or 3 labels with customizable magnet
12905 * properties. The indicator is the element the user drags to choose a label.
12906 * When the position is set with magnet, when released the indicator will be
12907 * moved to it if it's nearest the magnetized position.
12909 * @note By default all positions are set as enabled.
12911 * Signals that you can add callbacks for are:
12913 * "selected" - when user selects an enabled position (the label is passed
12916 * "pos_changed" - when the indicator reaches any of the positions("left",
12917 * "right" or "center").
12919 * See an example of actionslider usage @ref actionslider_example_page "here"
12923 typedef enum _Elm_Actionslider_Indicator_Pos
12925 ELM_ACTIONSLIDER_INDICATOR_NONE,
12926 ELM_ACTIONSLIDER_INDICATOR_LEFT,
12927 ELM_ACTIONSLIDER_INDICATOR_RIGHT,
12928 ELM_ACTIONSLIDER_INDICATOR_CENTER
12929 } Elm_Actionslider_Indicator_Pos;
12931 typedef enum _Elm_Actionslider_Magnet_Pos
12933 ELM_ACTIONSLIDER_MAGNET_NONE = 0,
12934 ELM_ACTIONSLIDER_MAGNET_LEFT = 1 << 0,
12935 ELM_ACTIONSLIDER_MAGNET_CENTER = 1 << 1,
12936 ELM_ACTIONSLIDER_MAGNET_RIGHT= 1 << 2,
12937 ELM_ACTIONSLIDER_MAGNET_ALL = (1 << 3) -1,
12938 ELM_ACTIONSLIDER_MAGNET_BOTH = (1 << 3)
12939 } Elm_Actionslider_Magnet_Pos;
12941 typedef enum _Elm_Actionslider_Label_Pos
12943 ELM_ACTIONSLIDER_LABEL_LEFT,
12944 ELM_ACTIONSLIDER_LABEL_RIGHT,
12945 ELM_ACTIONSLIDER_LABEL_CENTER,
12946 ELM_ACTIONSLIDER_LABEL_BUTTON
12947 } Elm_Actionslider_Label_Pos;
12949 /* smart callbacks called:
12950 * "indicator,position" - when a button reaches to the special position like "left", "right" and "center".
12954 * Add a new actionslider to the parent.
12956 * @param parent The parent object
12957 * @return The new actionslider object or NULL if it cannot be created
12959 EAPI Evas_Object *elm_actionslider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
12962 * Set actionslider label.
12964 * @param[in] obj The actionslider object
12965 * @param[in] pos The position of the label.
12966 * (ELM_ACTIONSLIDER_LABEL_LEFT, ELM_ACTIONSLIDER_LABEL_RIGHT)
12967 * @param label The label which is going to be set.
12969 EAPI void elm_actionslider_label_set(Evas_Object *obj, Elm_Actionslider_Label_Pos pos, const char *label) EINA_ARG_NONNULL(1);
12971 * Get actionslider labels.
12973 * @param obj The actionslider object
12974 * @param left_label A char** to place the left_label of @p obj into.
12975 * @param center_label A char** to place the center_label of @p obj into.
12976 * @param right_label A char** to place the right_label of @p obj into.
12978 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);
12980 * Get actionslider selected label.
12982 * @param obj The actionslider object
12983 * @return The selected label
12985 EAPI const char *elm_actionslider_selected_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
12987 * Set actionslider indicator position.
12989 * @param obj The actionslider object.
12990 * @param pos The position of the indicator.
12992 EAPI void elm_actionslider_indicator_pos_set(Evas_Object *obj, Elm_Actionslider_Indicator_Pos pos) EINA_ARG_NONNULL(1);
12994 * Get actionslider indicator position.
12996 * @param obj The actionslider object.
12997 * @return The position of the indicator.
12999 EAPI Elm_Actionslider_Indicator_Pos elm_actionslider_indicator_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13001 * Set actionslider magnet position. To make multiple positions magnets @c or
13002 * them together(e.g.: ELM_ACTIONSLIDER_MAGNET_LEFT | ELM_ACTIONSLIDER_MAGNET_RIGHT)
13004 * @param obj The actionslider object.
13005 * @param pos Bit mask indicating the magnet positions.
13007 EAPI void elm_actionslider_magnet_pos_set(Evas_Object *obj, Elm_Actionslider_Magnet_Pos pos) EINA_ARG_NONNULL(1);
13009 * Get actionslider magnet position.
13011 * @param obj The actionslider object.
13012 * @return The positions with magnet property.
13014 EAPI Elm_Actionslider_Magnet_Pos elm_actionslider_magnet_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13016 * Set actionslider enabled position. To set multiple positions as enabled @c or
13017 * them together(e.g.: ELM_ACTIONSLIDER_MAGNET_LEFT | ELM_ACTIONSLIDER_MAGNET_RIGHT).
13019 * @note All the positions are enabled by default.
13021 * @param obj The actionslider object.
13022 * @param pos Bit mask indicating the enabled positions.
13024 EAPI void elm_actionslider_enabled_pos_set(Evas_Object *obj, Elm_Actionslider_Magnet_Pos pos) EINA_ARG_NONNULL(1);
13026 * Get actionslider enabled position.
13028 * @param obj The actionslider object.
13029 * @return The enabled positions.
13031 EAPI Elm_Actionslider_Magnet_Pos elm_actionslider_enabled_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13033 * Set the label used on the indicator.
13035 * @param obj The actionslider object
13036 * @param label The label to be set on the indicator.
13037 * @deprecated use elm_object_text_set() instead.
13039 EINA_DEPRECATED EAPI void elm_actionslider_indicator_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
13041 * Get the label used on the indicator object.
13043 * @param obj The actionslider object
13044 * @return The indicator label
13045 * @deprecated use elm_object_text_get() instead.
13047 EINA_DEPRECATED EAPI const char *elm_actionslider_indicator_label_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
13050 * Hold actionslider object movement.
13052 * @param[in] obj The actionslider object
13053 * @param[in] flag Actionslider hold/release
13054 * (EINA_TURE = hold/EIN_FALSE = release)
13056 * @ingroup Actionslider
13058 EAPI void elm_actionslider_hold(Evas_Object *obj, Eina_Bool flag) EINA_ARG_NONNULL(1);
13066 typedef enum _Elm_Genlist_Item_Flags
13068 ELM_GENLIST_ITEM_NONE = 0,
13069 ELM_GENLIST_ITEM_SUBITEMS = (1 << 0),
13070 ELM_GENLIST_ITEM_GROUP = (1 << 1)
13071 } Elm_Genlist_Item_Flags;
13072 typedef enum _Elm_Genlist_Item_Field_Flags
13074 ELM_GENLIST_ITEM_FIELD_ALL = 0,
13075 ELM_GENLIST_ITEM_FIELD_LABEL = (1 << 0),
13076 ELM_GENLIST_ITEM_FIELD_ICON = (1 << 1),
13077 ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
13078 } Elm_Genlist_Item_Field_Flags;
13079 typedef struct _Elm_Genlist_Item_Class Elm_Genlist_Item_Class;
13080 typedef struct _Elm_Genlist_Item Elm_Genlist_Item; /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
13081 typedef struct _Elm_Genlist_Item_Class_Func Elm_Genlist_Item_Class_Func;
13082 typedef char *(*GenlistItemLabelGetFunc) (void *data, Evas_Object *obj, const char *part);
13083 typedef Evas_Object *(*GenlistItemIconGetFunc) (void *data, Evas_Object *obj, const char *part);
13084 typedef Eina_Bool (*GenlistItemStateGetFunc) (void *data, Evas_Object *obj, const char *part);
13085 typedef void (*GenlistItemDelFunc) (void *data, Evas_Object *obj);
13086 typedef void (*GenlistItemMovedFunc) ( Evas_Object *genlist, Elm_Genlist_Item *item, Elm_Genlist_Item *rel_item, Eina_Bool move_after);
13088 struct _Elm_Genlist_Item_Class
13090 const char *item_style;
13092 GenlistItemLabelGetFunc label_get;
13093 GenlistItemIconGetFunc icon_get;
13094 GenlistItemStateGetFunc state_get;
13095 GenlistItemDelFunc del;
13096 GenlistItemMovedFunc moved;
13098 const char *edit_item_style;
13099 const char *mode_item_style;
13101 EAPI Evas_Object *elm_genlist_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13102 EAPI void elm_genlist_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
13103 EAPI void elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi) EINA_ARG_NONNULL(1);
13104 EAPI Eina_Bool elm_genlist_multi_select_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13105 EAPI void elm_genlist_horizontal_mode_set(Evas_Object *obj, Elm_List_Mode mode) EINA_ARG_NONNULL(1);
13106 EAPI Elm_List_Mode elm_genlist_horizontal_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13107 EAPI void elm_genlist_always_select_mode_set(Evas_Object *obj, Eina_Bool always_select) EINA_ARG_NONNULL(1);
13108 EAPI Eina_Bool elm_genlist_always_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13109 EAPI void elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select) EINA_ARG_NONNULL(1);
13110 EAPI Eina_Bool elm_genlist_no_select_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13111 EAPI void elm_genlist_compress_mode_set(Evas_Object *obj, Eina_Bool compress) EINA_ARG_NONNULL(1);
13112 EAPI Eina_Bool elm_genlist_compress_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13113 EAPI void elm_genlist_height_for_width_mode_set(Evas_Object *obj, Eina_Bool height_for_width) EINA_ARG_NONNULL(1);
13114 EAPI Eina_Bool elm_genlist_height_for_width_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13115 EAPI void elm_genlist_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
13116 EAPI void elm_genlist_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
13117 EAPI void elm_genlist_homogeneous_set(Evas_Object *obj, Eina_Bool homogeneous) EINA_ARG_NONNULL(1);
13118 EAPI Eina_Bool elm_genlist_homogeneous_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13119 EAPI void elm_genlist_block_count_set(Evas_Object *obj, int n) EINA_ARG_NONNULL(1);
13120 EAPI int elm_genlist_block_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13121 EAPI void elm_genlist_longpress_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
13122 EAPI double elm_genlist_longpress_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13123 /* operations to add items */
13124 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);
13125 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);
13126 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);
13127 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);
13128 /* operations to retrieve existing items */
13129 EAPI Elm_Genlist_Item *elm_genlist_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13130 EAPI const Eina_List *elm_genlist_selected_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13131 EAPI Eina_List *elm_genlist_realized_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13132 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);
13133 EAPI Elm_Genlist_Item *elm_genlist_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13134 EAPI Elm_Genlist_Item *elm_genlist_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13135 EAPI void elm_genlist_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
13136 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);
13137 /* available item styles:
13139 * default_style - The text part is a textblock
13141 * icon_top_text_bottom
13143 /* Genlist Item operation */
13144 EAPI Elm_Genlist_Item *elm_genlist_item_next_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13145 EAPI Elm_Genlist_Item *elm_genlist_item_prev_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13146 EAPI Evas_Object *elm_genlist_item_genlist_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13147 EAPI Elm_Genlist_Item *elm_genlist_item_parent_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13148 EAPI void elm_genlist_item_subitems_clear(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13149 EAPI void elm_genlist_item_selected_set(Elm_Genlist_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
13150 EAPI Eina_Bool elm_genlist_item_selected_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13151 EAPI void elm_genlist_item_expanded_set(Elm_Genlist_Item *item, Eina_Bool expanded) EINA_ARG_NONNULL(1);
13152 EAPI Eina_Bool elm_genlist_item_expanded_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13153 EAPI int elm_genlist_item_expanded_depth_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13154 EAPI void elm_genlist_item_disabled_set(Elm_Genlist_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
13155 EAPI Eina_Bool elm_genlist_item_disabled_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13156 EAPI void elm_genlist_item_display_only_set(Elm_Genlist_Item *it, Eina_Bool display_only) EINA_ARG_NONNULL(1);
13157 EAPI Eina_Bool elm_genlist_item_display_only_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13158 EAPI void elm_genlist_item_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13159 EAPI void elm_genlist_item_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13160 EAPI void elm_genlist_item_top_show(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13161 EAPI void elm_genlist_item_top_bring_in(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13162 EAPI void elm_genlist_item_middle_show(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13163 EAPI void elm_genlist_item_middle_bring_in(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13164 EAPI void elm_genlist_item_del(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13165 EAPI void *elm_genlist_item_data_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13166 EAPI void elm_genlist_item_data_set(Elm_Genlist_Item *it, const void *data) EINA_ARG_NONNULL(1);
13167 EAPI void elm_genlist_item_icons_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13168 EAPI const Evas_Object *elm_genlist_item_object_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13169 EAPI void elm_genlist_item_update(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13170 EAPI void elm_genlist_item_fields_update(Elm_Genlist_Item *it, const char *parts, Elm_Genlist_Item_Field_Flags itf) EINA_ARG_NONNULL(1);
13171 EAPI void elm_genlist_item_item_class_update(Elm_Genlist_Item *it, const Elm_Genlist_Item_Class *itc) EINA_ARG_NONNULL(1, 2);
13172 EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
13173 EAPI void elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item, const char *text) EINA_ARG_NONNULL(1);
13174 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);
13175 EAPI void elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13176 EAPI void elm_genlist_item_tooltip_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
13177 EAPI const char *elm_genlist_item_tooltip_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13178 EAPI void elm_genlist_item_cursor_set(Elm_Genlist_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
13179 EAPI const char *elm_genlist_item_cursor_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13180 EAPI void elm_genlist_item_cursor_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13181 EAPI void elm_genlist_item_cursor_style_set(Elm_Genlist_Item *item, const char *style) EINA_ARG_NONNULL(1);
13182 EAPI const char *elm_genlist_item_cursor_style_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13183 EAPI void elm_genlist_item_cursor_engine_only_set(Elm_Genlist_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
13184 EAPI Eina_Bool elm_genlist_item_cursor_engine_only_get(const Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13185 EAPI void elm_genlist_realized_items_update(Evas_Object *obj) EINA_ARG_NONNULL(1);
13186 EAPI void elm_genlist_item_mode_set(Elm_Genlist_Item *it, const char *mode_type, Eina_Bool mode_set) EINA_ARG_NONNULL(1, 2);
13187 EAPI const char *elm_genlist_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13188 EAPI const Elm_Genlist_Item *elm_genlist_mode_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13189 EAPI void elm_genlist_reorder_mode_set(Evas_Object *obj, Eina_Bool reorder_mode) EINA_ARG_NONNULL(1);
13190 EAPI Eina_Bool elm_genlist_reorder_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13191 /* Signals that you can add callbacks for are:
13192 * "clicked,double" - This is called when a user has double-clicked an item.
13193 * The event_info parameter is the genlist item that was
13195 * "selected" - This is called when a user has made an item selected. The
13196 * event_info parameter is the genlist item that was selected.
13197 * "unselected" - This is called when a user has made an item unselected. The
13198 * event_info parameter is the genlist item that was unselected.
13199 * "expanded" - This is called when elm_genlist_item_expanded_set() is called
13200 * and the item is now meant to be expanded. The event_info parameter is the
13201 * genlist item that was indicated to expand. It is the job of this callback
13202 * to then fill in the child items.
13203 * "contracted" - This is called when elm_genlist_item_expanded_set() is called
13204 * and the item is now meant to be contracted. The event_info parameter is
13205 * the genlist item that was indicated to contract. It is the job of this
13206 * callback to then delete the child items.
13207 * "expand,request" - This is called when a user has indicated they want to
13208 * expand a tree branch item. The callback should decide if the item can
13209 * expand (has any children) and then call elm_genlist_item_expanded_set()
13210 * appropriately to set the state. The event_info parameter is the genlist
13211 * item that was indicated to expand.
13212 * "contract,request" - This is called when a user has indicated they want to
13213 * contract a tree branch item. The callback should decide if the item can
13214 * contract (has any children) and then call elm_genlist_item_expanded_set()
13215 * appropriately to set the state. The event_info parameter is the genlist
13216 * item that was indicated to contract.
13217 * "realized" - This is called when the item in the list is created as a real
13218 * evas object. event_info parameter is the genlist item that was created.
13219 * The object may be deleted at any time, so it is up to the caller to
13220 * not use the object pointer from elm_genlist_item_object_get() in a way
13221 * where it may point to freed objects.
13222 * "unrealized" - This is called just before an item is unrealized. After
13223 * this call icon objects provided will be deleted and the item object
13224 * itself delete or be put into a floating cache.
13225 * "drag,start,up" - This is called when the item in the list has been dragged
13226 * (not scrolled) up.
13227 * "drag,start,down" - This is called when the item in the list has been dragged
13228 * (not scrolled) down.
13229 * "drag,start,left" - This is called when the item in the list has been dragged i
13230 * (not scrolled) left.
13231 * "drag,start,right" - This is called when the item in the list has been dragged
13232 * (not scrolled) right.
13233 * "drag,stop" - This is called when the item in the list has stopped being
13235 * "drag" - This is called when the item in the list is being dragged.
13236 * "longpressed" - This is called when the item is pressed for a certain amount
13237 * of time. By default it's 1 second.
13238 * "scroll,anim,start" - This is called when scrolling animation has started.
13239 * "scroll,anim,stop" - This is called when scrolling animation has stopped.
13240 * "scroll,drag,start" - This is called when dragging the content has started.
13241 * "scroll,drag,stop" - This is called when dragging the content has stopped.
13242 * "scroll,edge,top" - This is called when the genlist is scrolled until the
13244 * "scroll,edge,bottom" - This is called when the genlist is scrolled until the
13246 * "scroll,edge,left" - This is called when the genlist is scrolled until the
13248 * "scroll,edge,right" - This is called when the genlist is scrolled until the
13250 * "multi,swipe,left" - This is called when the genlist is multi-touch swiped
13252 * "multi,swipe,right" - This is called when the genlist is multi-touch swiped
13254 * "multi,swipe,up" - This is called when the genlist is multi-touch swiped up.
13255 * "multi,swipe,down" - This is called when the genlist is multi-touch swiped
13257 * "multi,pinch,out" - This is called when the genlist is multi-touch pinched
13259 * "multi,pinch,in" - This is called when the genlist is multi-touch pinched in.
13262 EAPI void elm_genlist_edit_mode_set(Evas_Object *obj, Eina_Bool edit_mode) EINA_ARG_NONNULL(1);
13263 EAPI Eina_Bool elm_genlist_edit_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13264 EAPI void elm_genlist_item_rename_mode_set(Elm_Genlist_Item *it, Eina_Bool renamed) EINA_ARG_NONNULL(1);
13265 EAPI Eina_Bool elm_genlist_item_rename_mode_get(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
13266 EAPI void elm_genlist_item_move_after(Elm_Genlist_Item *it, Elm_Genlist_Item *after ) EINA_ARG_NONNULL(1, 2);
13267 EAPI void elm_genlist_item_move_before(Elm_Genlist_Item *it, Elm_Genlist_Item *before) EINA_ARG_NONNULL(1, 2);
13268 EAPI void elm_genlist_effect_set(const Evas_Object *obj, Eina_Bool emode) EINA_ARG_NONNULL(1);
13269 EAPI void elm_genlist_pinch_zoom_set(Evas_Object *obj, Eina_Bool emode) EINA_ARG_NONNULL(1);
13270 EAPI void elm_genlist_pinch_zoom_mode_set(Evas_Object *obj, Eina_Bool emode) EINA_ARG_NONNULL(1);
13271 EAPI Eina_Bool elm_genlist_pinch_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13274 * @page tutorial_check Check example
13275 * @dontinclude check_example_01.c
13277 * This example will show 2 checkboxes, one with just a label and the second
13278 * one with both a label and an icon. This example also ilustrates how to
13279 * have the checkbox change the value of a variable and how to react to those
13282 * We will start with the usual setup code:
13285 * And now we create our first checkbox, set its label, tell it to change
13286 * the value of @p value when the checkbox stats is changed and ask to be
13287 * notified of state changes:
13290 * For our second checkbox we are going to set an icon so we need to create
13293 * @note For simplicity we are using a rectangle as icon, but any evas object
13296 * And for our second checkbox we set the label, icon and state to true:
13299 * We now do some more setup:
13302 * And finally implement the callback that will be called when the first
13303 * checkbox's state changes. This callback will use @p data to print a
13306 * @note This work because @p data is @p value(from the main function) and @p
13307 * value is changed when the checkbox is changed.
13309 * Our example will look like this:
13310 * @image html screenshots/check_example_01.png
13311 * @image latex screenshots/check_example_01.eps
13313 * @example check_example_01.c
13316 * @defgroup Check Check
13318 * @brief The check widget allows for toggling a value between true and
13321 * Check objects are a lot like radio objects in layout and functionality
13322 * except they do not work as a group, but independently and only toggle the
13323 * value of a boolean from false to true (0 or 1). elm_check_state_set() sets
13324 * the boolean state (1 for true, 0 for false), and elm_check_state_get()
13325 * returns the current state. For convenience, like the radio objects, you
13326 * can set a pointer to a boolean directly with elm_check_state_pointer_set()
13327 * for it to modify.
13329 * Signals that you can add callbacks for are:
13330 * "changed" - This is called whenever the user changes the state of one of
13331 * the check object(event_info is NULL).
13333 * @ref tutorial_check should give you a firm grasp of how to use this widget.
13337 * @brief Add a new Check object
13339 * @param parent The parent object
13340 * @return The new object or NULL if it cannot be created
13342 EAPI Evas_Object *elm_check_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13344 * @brief Set the text label of the check object
13346 * @param obj The check object
13347 * @param label The text label string in UTF-8
13349 * @deprecated use elm_object_text_set() instead.
13351 EINA_DEPRECATED EAPI void elm_check_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
13353 * @brief Get the text label of the check object
13355 * @param obj The check object
13356 * @return The text label string in UTF-8
13358 * @deprecated use elm_object_text_get() instead.
13360 EINA_DEPRECATED EAPI const char *elm_check_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13362 * @brief Set the icon object of the check object
13364 * @param obj The check object
13365 * @param icon The icon object
13367 * Once the icon object is set, a previously set one will be deleted.
13368 * If you want to keep that old content object, use the
13369 * elm_check_icon_unset() function.
13371 EAPI void elm_check_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
13373 * @brief Get the icon object of the check object
13375 * @param obj The check object
13376 * @return The icon object
13378 EAPI Evas_Object *elm_check_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13380 * @brief Unset the icon used for the check object
13382 * @param obj The check object
13383 * @return The icon object that was being used
13385 * Unparent and return the icon object which was set for this widget.
13387 EAPI Evas_Object *elm_check_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13389 * @brief Set the on/off state of the check object
13391 * @param obj The check object
13392 * @param state The state to use (1 == on, 0 == off)
13394 * This sets the state of the check. If set
13395 * with elm_check_state_pointer_set() the state of that variable is also
13396 * changed. Calling this @b doesn't cause the "changed" signal to be emited.
13398 EAPI void elm_check_state_set(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
13400 * @brief Get the state of the check object
13402 * @param obj The check object
13403 * @return The boolean state
13405 EAPI Eina_Bool elm_check_state_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13407 * @brief Set a convenience pointer to a boolean to change
13409 * @param obj The check object
13410 * @param statep Pointer to the boolean to modify
13412 * This sets a pointer to a boolean, that, in addition to the check objects
13413 * state will also be modified directly. To stop setting the object pointed
13414 * to simply use NULL as the @p statep parameter. If @p statep is not NULL,
13415 * then when this is called, the check objects state will also be modified to
13416 * reflect the value of the boolean @p statep points to, just like calling
13417 * elm_check_state_set().
13419 EAPI void elm_check_state_pointer_set(Evas_Object *obj, Eina_Bool *statep) EINA_ARG_NONNULL(1);
13425 EAPI Evas_Object *elm_radio_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13426 EINA_DEPRECATED EAPI void elm_radio_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
13427 EINA_DEPRECATED EAPI const char *elm_radio_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13428 EAPI void elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
13429 EAPI Evas_Object *elm_radio_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13430 EAPI Evas_Object *elm_radio_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13431 EAPI void elm_radio_group_add(Evas_Object *obj, Evas_Object *group) EINA_ARG_NONNULL(1);
13432 EAPI void elm_radio_state_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
13433 EAPI int elm_radio_state_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13434 EAPI void elm_radio_value_set(Evas_Object *obj, int value) EINA_ARG_NONNULL(1);
13435 EAPI int elm_radio_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13436 EAPI void elm_radio_value_pointer_set(Evas_Object *obj, int *valuep) EINA_ARG_NONNULL(1);
13437 /* smart callbacks called:
13438 * "changed" - when the radio status is changed
13442 EAPI Evas_Object *elm_pager_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13443 EAPI void elm_pager_content_push(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
13444 EAPI void elm_pager_content_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
13445 EAPI void elm_pager_content_promote(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
13446 EAPI Evas_Object *elm_pager_content_bottom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13447 EAPI Evas_Object *elm_pager_content_top_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13448 EAPI void elm_pager_to_content_pop(Evas_Object *obj, Evas_Object *content); EINA_ARG_NONNULL(1);
13449 EAPI void elm_pager_animation_disabled_set(Evas_Object *obj, Eina_Bool disable); EINA_ARG_NONNULL(1);
13451 /* available item styles:
13457 /* smart callbacks called:
13458 * "hide,finished" - when the previous page is hided
13461 typedef struct _Elm_Slideshow_Item_Class Elm_Slideshow_Item_Class;
13462 typedef struct _Elm_Slideshow_Item_Class_Func Elm_Slideshow_Item_Class_Func;
13463 typedef struct _Elm_Slideshow_Item Elm_Slideshow_Item; /**< Item of Elm_Slideshow. Sub-type of Elm_Widget_Item */
13464 typedef Evas_Object *(*SlideshowItemGetFunc) (void *data, Evas_Object *obj);
13465 typedef void (*SlideshowItemDelFunc) (void *data, Evas_Object *obj);
13467 struct _Elm_Slideshow_Item_Class
13469 struct _Elm_Slideshow_Item_Class_Func
13471 SlideshowItemGetFunc get;
13472 SlideshowItemDelFunc del;
13476 EAPI Evas_Object *elm_slideshow_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13477 EAPI Elm_Slideshow_Item *elm_slideshow_item_add(Evas_Object *obj, const Elm_Slideshow_Item_Class *itc, const void *data) EINA_ARG_NONNULL(1);
13478 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);
13479 EAPI void elm_slideshow_show(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
13480 EAPI void elm_slideshow_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
13481 EAPI void elm_slideshow_previous(Evas_Object *obj) EINA_ARG_NONNULL(1);
13482 EAPI const Eina_List *elm_slideshow_transitions_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13483 EAPI void elm_slideshow_transition_set(Evas_Object *obj, const char *transition) EINA_ARG_NONNULL(1);
13484 EAPI const char *elm_slideshow_transition_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13485 EAPI void elm_slideshow_timeout_set(Evas_Object *obj, double timeout) EINA_ARG_NONNULL(1);
13486 EAPI double elm_slideshow_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13487 EAPI void elm_slideshow_loop_set(Evas_Object *obj, Eina_Bool loop) EINA_ARG_NONNULL(1);
13488 EAPI Eina_Bool elm_slideshow_loop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13489 EAPI void elm_slideshow_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
13490 EAPI const Eina_List *elm_slideshow_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13491 EAPI void elm_slideshow_item_del(Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
13492 EAPI void *elm_slideshow_item_data_get(const Elm_Slideshow_Item *item) EINA_ARG_NONNULL(1);
13493 EAPI Elm_Slideshow_Item *elm_slideshow_item_current_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13494 EAPI Evas_Object* elm_slideshow_item_object_get(const Elm_Slideshow_Item* item) EINA_ARG_NONNULL(1);
13495 EAPI Elm_Slideshow_Item *elm_slideshow_item_nth_get(const Evas_Object *obj, unsigned int nth) EINA_ARG_NONNULL(1);
13496 EAPI const char *elm_slideshow_layout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13497 EAPI void elm_slideshow_layout_set(Evas_Object *obj, const char *layout) EINA_ARG_NONNULL(1);
13498 EAPI const Eina_List *elm_slideshow_layouts_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13499 EAPI void elm_slideshow_cache_before_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
13500 EAPI int elm_slideshow_cache_before_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13501 EAPI void elm_slideshow_cache_after_set(Evas_Object *obj, int count) EINA_ARG_NONNULL(1);
13502 EAPI int elm_slideshow_cache_after_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13503 EAPI unsigned int elm_slideshow_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13504 /* smart callbacks called:
13505 * "changed" - when the slideshow switch to another item
13508 /* file selector */
13509 typedef enum _Elm_Fileselector_Mode
13511 ELM_FILESELECTOR_LIST = 0,
13512 ELM_FILESELECTOR_GRID,
13513 ELM_FILESELECTOR_LAST
13514 } Elm_Fileselector_Mode;
13516 EAPI Evas_Object *elm_fileselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13517 EAPI void elm_fileselector_is_save_set(Evas_Object *obj, Eina_Bool is_save) EINA_ARG_NONNULL(1);
13518 EAPI Eina_Bool elm_fileselector_is_save_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13519 EAPI void elm_fileselector_folder_only_set(Evas_Object *obj, Eina_Bool only) EINA_ARG_NONNULL(1);
13520 EAPI Eina_Bool elm_fileselector_folder_only_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13521 EAPI void elm_fileselector_buttons_ok_cancel_set(Evas_Object *obj, Eina_Bool buttons) EINA_ARG_NONNULL(1);
13522 EAPI Eina_Bool elm_fileselector_buttons_ok_cancel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13523 EAPI Eina_Bool elm_fileselector_expandable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13524 EAPI void elm_fileselector_expandable_set(Evas_Object *obj, Eina_Bool expand) EINA_ARG_NONNULL(1);
13525 EAPI void elm_fileselector_path_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
13526 EAPI const char *elm_fileselector_path_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13527 EAPI const char *elm_fileselector_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13528 EAPI Eina_Bool elm_fileselector_selected_set(Evas_Object *obj, const char *path) EINA_ARG_NONNULL(1);
13529 EAPI void elm_fileselector_mode_set(Evas_Object *obj, Elm_Fileselector_Mode mode) EINA_ARG_NONNULL(1);
13530 EAPI Elm_Fileselector_Mode elm_fileselector_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13531 /* smart callbacks called:
13532 * "selected" - the user click on a file
13533 * "directory,open" - the list is populate with a new content. event_info is a directory.
13534 * "done" - the user click on the ok or cancel buttons
13538 EAPI Evas_Object *elm_progressbar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13539 EAPI void elm_progressbar_pulse_set(Evas_Object *obj, Eina_Bool pulse) EINA_ARG_NONNULL(1);
13540 EAPI Eina_Bool elm_progressbar_pulse_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13541 EAPI void elm_progressbar_pulse(Evas_Object *obj, Eina_Bool state) EINA_ARG_NONNULL(1);
13542 EAPI void elm_progressbar_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
13543 EAPI double elm_progressbar_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13544 EINA_DEPRECATED EAPI void elm_progressbar_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
13545 EINA_DEPRECATED EAPI const char *elm_progressbar_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13546 EAPI void elm_progressbar_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
13547 EAPI Evas_Object *elm_progressbar_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13548 EAPI Evas_Object *elm_progressbar_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13549 EAPI void elm_progressbar_span_size_set(Evas_Object *obj, Evas_Coord size) EINA_ARG_NONNULL(1);
13550 EAPI Evas_Coord elm_progressbar_span_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13551 EAPI void elm_progressbar_unit_format_set(Evas_Object *obj, const char *format) EINA_ARG_NONNULL(1);
13552 EAPI const char *elm_progressbar_unit_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13553 EAPI void elm_progressbar_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
13554 EAPI Eina_Bool elm_progressbar_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13555 EAPI void elm_progressbar_inverted_set(Evas_Object *obj, Eina_Bool inverted) EINA_ARG_NONNULL(1);
13556 EAPI Eina_Bool elm_progressbar_inverted_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13557 /* smart callbacks called:
13559 /* available item styles:
13561 * wheel (simple style, no text, no progression, only pulse is available)
13565 EAPI Evas_Object *elm_separator_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13566 EAPI void elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
13567 EAPI Eina_Bool elm_separator_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13568 /* smart callbacks called:
13572 EAPI Evas_Object *elm_spinner_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13573 EAPI void elm_spinner_label_format_set(Evas_Object *obj, const char *fmt) EINA_ARG_NONNULL(1);
13574 EAPI const char *elm_spinner_label_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13575 EAPI void elm_spinner_min_max_set(Evas_Object *obj, double min, double max) EINA_ARG_NONNULL(1);
13576 EAPI void elm_spinner_min_max_get(const Evas_Object *obj, double *min, double *max) EINA_ARG_NONNULL(1);
13577 EAPI void elm_spinner_step_set(Evas_Object *obj, double step) EINA_ARG_NONNULL(1);
13578 EAPI double elm_spinner_step_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13579 EAPI void elm_spinner_value_set(Evas_Object *obj, double val) EINA_ARG_NONNULL(1);
13580 EAPI double elm_spinner_value_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13581 EAPI void elm_spinner_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
13582 EAPI Eina_Bool elm_spinner_wrap_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13583 EAPI void elm_spinner_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
13584 EAPI Eina_Bool elm_spinner_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13585 EAPI void elm_spinner_special_value_add(Evas_Object *obj, double value, const char *label) EINA_ARG_NONNULL(1);
13586 EAPI void elm_spinner_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
13587 EAPI double elm_spinner_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13588 /* smart callbacks called:
13589 * "changed" - when the spinner value changes
13590 * "delay,changed" - when the spinner value changed, but a small time after a change (use this if you only want to respond to a change once the spinner is held still for a short while).
13592 /* available item styles:
13594 * vertical (two up/down buttons at the right side and text left aligned)
13598 typedef struct _Elm_Index_Item Elm_Index_Item; /**< Item of Elm_Index. Sub-type of Elm_Widget_Item */
13600 EAPI Evas_Object *elm_index_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13601 EAPI void elm_index_active_set(Evas_Object *obj, Eina_Bool active) EINA_ARG_NONNULL(1);
13602 EAPI Eina_Bool elm_index_active_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13603 EAPI void elm_index_item_level_set(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
13604 EAPI int elm_index_item_level_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13605 EAPI void *elm_index_item_selected_get(const Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
13606 EAPI void elm_index_item_append(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
13607 EAPI void elm_index_item_prepend(Evas_Object *obj, const char *letter, const void *item) EINA_ARG_NONNULL(1);
13608 EAPI void elm_index_item_append_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
13609 EAPI void elm_index_item_prepend_relative(Evas_Object *obj, const char *letter, const void *item, const void *relative) EINA_ARG_NONNULL(1);
13610 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);
13611 EAPI void elm_index_item_del(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
13612 EAPI Elm_Index_Item *elm_index_item_find(Evas_Object *obj, const void *item) EINA_ARG_NONNULL(1);
13613 EAPI void elm_index_item_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
13614 EAPI void elm_index_item_go(Evas_Object *obj, int level) EINA_ARG_NONNULL(1);
13615 EAPI void *elm_index_item_data_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
13616 EAPI void elm_index_item_data_set(Elm_Index_Item *it, const void *data) EINA_ARG_NONNULL(1);
13617 EAPI void elm_index_item_del_cb_set(Elm_Index_Item *it, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
13618 EAPI const char *elm_index_item_letter_get(const Elm_Index_Item *item) EINA_ARG_NONNULL(1);
13619 EAPI void elm_index_button_image_invisible_set(Evas_Object *obj, Eina_Bool invisible) EINA_ARG_NONNULL(1);
13620 /* smart callbacks called:
13621 * "changed" - when the selected index item changes
13622 * "delay,changed" - when the selected index item changes, but after some small idle period
13623 * "selected" - when the user releases a finger and selects an item
13624 * "level,up" - when the user moves a finger from the first level to the second level
13625 * "level,down" - when the user moves a finger from the second level to the first level
13629 typedef enum _Elm_Photocam_Zoom_Mode
13631 ELM_PHOTOCAM_ZOOM_MODE_MANUAL = 0,
13632 ELM_PHOTOCAM_ZOOM_MODE_AUTO_FIT,
13633 ELM_PHOTOCAM_ZOOM_MODE_AUTO_FILL,
13634 ELM_PHOTOCAM_ZOOM_MODE_LAST
13635 } Elm_Photocam_Zoom_Mode;
13637 EAPI Evas_Object *elm_photocam_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13638 EAPI Evas_Load_Error elm_photocam_file_set(Evas_Object *obj, const char *file) EINA_ARG_NONNULL(1);
13639 EAPI const char *elm_photocam_file_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13640 EAPI void elm_photocam_zoom_set(Evas_Object *obj, double zoom) EINA_ARG_NONNULL(1);
13641 EAPI double elm_photocam_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13642 EAPI void elm_photocam_zoom_mode_set(Evas_Object *obj, Elm_Photocam_Zoom_Mode mode) EINA_ARG_NONNULL(1);
13643 EAPI Elm_Photocam_Zoom_Mode elm_photocam_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13644 EAPI void elm_photocam_image_size_get(const Evas_Object *obj, int *w, int *h) EINA_ARG_NONNULL(1);
13645 EAPI void elm_photocam_region_get(const Evas_Object *obj, int *x, int *y, int *w, int *h) EINA_ARG_NONNULL(1);
13646 EAPI void elm_photocam_image_region_show(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
13647 EAPI void elm_photocam_image_region_bring_in(Evas_Object *obj, int x, int y, int w, int h) EINA_ARG_NONNULL(1);
13648 EAPI void elm_photocam_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
13649 EAPI Eina_Bool elm_photocam_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13650 EAPI Evas_Object *elm_photocam_internal_image_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13651 EAPI void elm_photocam_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
13652 EAPI void elm_photocam_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
13653 /* smart callbacks called:
13654 * "clicked" - when image clicked
13655 * "press" - when mouse/finger held down initially on image
13656 * "longpressed" - when mouse/finger held for long time on image
13657 * "clicked,double" - when mouse/finger double-clicked
13658 * "load" - when photo load begins
13659 * "loaded" - when photo load done
13660 * "load,detail" - when detailed image load begins
13661 * "loaded,detail" - when detailed image load done
13662 * "zoom,start" - when zooming started
13663 * "zoom,stop" - when zooming stopped
13664 * "zoom,change" - when auto zoom mode changed zoom level
13665 * "scroll - the content has been scrolled (moved)
13666 * "scroll,anim,start" - scrolling animation has started
13667 * "scroll,anim,stop" - scrolling animation has stopped
13668 * "scroll,drag,start" - dragging the contents around has started
13669 * "scroll,drag,stop" - dragging the contents around has stopped
13673 typedef enum _Elm_Map_Zoom_Mode
13675 ELM_MAP_ZOOM_MODE_MANUAL,
13676 ELM_MAP_ZOOM_MODE_AUTO_FIT,
13677 ELM_MAP_ZOOM_MODE_AUTO_FILL,
13678 ELM_MAP_ZOOM_MODE_LAST
13679 } Elm_Map_Zoom_Mode;
13681 typedef enum _Elm_Map_Route_Sources
13683 ELM_MAP_ROUTE_SOURCE_YOURS,
13684 ELM_MAP_ROUTE_SOURCE_MONAV,
13685 ELM_MAP_ROUTE_SOURCE_ORS,
13686 ELM_MAP_ROUTE_SOURCE_LAST
13687 } Elm_Map_Route_Sources;
13689 typedef enum _Elm_Map_Name_Sources
13691 ELM_MAP_NAME_SOURCE_NOMINATIM,
13692 ELM_MAP_NAME_SOURCE_LAST
13693 } Elm_Map_Name_Sources;
13695 typedef enum _Elm_Map_Route_Type
13697 ELM_MAP_ROUTE_TYPE_MOTOCAR,
13698 ELM_MAP_ROUTE_TYPE_BICYCLE,
13699 ELM_MAP_ROUTE_TYPE_FOOT,
13700 ELM_MAP_ROUTE_TYPE_LAST
13701 } Elm_Map_Route_Type;
13703 typedef enum _Elm_Map_Route_Method
13705 ELM_MAP_ROUTE_METHOD_FASTEST,
13706 ELM_MAP_ROUTE_METHOD_SHORTEST,
13707 ELM_MAP_ROUTE_METHOD_LAST
13708 } Elm_Map_Route_Method;
13710 typedef enum _Elm_Map_Name_Method
13712 ELM_MAP_NAME_METHOD_SEARCH,
13713 ELM_MAP_NAME_METHOD_REVERSE,
13714 ELM_MAP_NAME_METHOD_LAST
13715 } Elm_Map_Name_Method;
13717 typedef struct _Elm_Map_Marker Elm_Map_Marker;
13718 typedef struct _Elm_Map_Marker_Class Elm_Map_Marker_Class;
13719 typedef struct _Elm_Map_Group_Class Elm_Map_Group_Class;
13720 typedef struct _Elm_Map_Route Elm_Map_Route;
13721 typedef struct _Elm_Map_Name Elm_Map_Name;
13722 typedef struct _Elm_Map_Track Elm_Map_Track;
13724 typedef Evas_Object *(*ElmMapMarkerGetFunc) (Evas_Object *obj, Elm_Map_Marker *marker, void *data);
13725 typedef void (*ElmMapMarkerDelFunc) (Evas_Object *obj, Elm_Map_Marker *marker, void *data, Evas_Object *o);
13726 typedef Evas_Object *(*ElmMapMarkerIconGetFunc) (Evas_Object *obj, Elm_Map_Marker *marker, void *data);
13727 typedef Evas_Object *(*ElmMapGroupIconGetFunc) (Evas_Object *obj, void *data);
13729 typedef char *(*ElmMapModuleSourceFunc) (void);
13730 typedef int (*ElmMapModuleZoomMinFunc) (void);
13731 typedef int (*ElmMapModuleZoomMaxFunc) (void);
13732 typedef char *(*ElmMapModuleUrlFunc) (Evas_Object *obj, int x, int y, int zoom);
13733 typedef int (*ElmMapModuleRouteSourceFunc) (void);
13734 typedef char *(*ElmMapModuleRouteUrlFunc) (Evas_Object *obj, char *type_name, int method, double flon, double flat, double tlon, double tlat);
13735 typedef char *(*ElmMapModuleNameUrlFunc) (Evas_Object *obj, int method, char *name, double lon, double lat);
13736 typedef Eina_Bool (*ElmMapModuleGeoIntoCoordFunc) (const Evas_Object *obj, int zoom, double lon, double lat, int size, int *x, int *y);
13737 typedef Eina_Bool (*ElmMapModuleCoordIntoGeoFunc) (const Evas_Object *obj, int zoom, int x, int y, int size, double *lon, double *lat);
13739 EAPI Evas_Object *elm_map_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13740 EAPI void elm_map_zoom_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
13741 EAPI int elm_map_zoom_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13742 EAPI void elm_map_zoom_mode_set(Evas_Object *obj, Elm_Map_Zoom_Mode mode) EINA_ARG_NONNULL(1);
13743 EAPI Elm_Map_Zoom_Mode elm_map_zoom_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13744 EAPI void elm_map_geo_region_get(const Evas_Object *obj, double *lon, double *lat) EINA_ARG_NONNULL(1);
13745 EAPI void elm_map_geo_region_bring_in(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
13746 EAPI void elm_map_geo_region_show(Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
13747 EAPI void elm_map_paused_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
13748 EAPI Eina_Bool elm_map_paused_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13749 EAPI void elm_map_paused_markers_set(Evas_Object *obj, Eina_Bool paused) EINA_ARG_NONNULL(1);
13750 EAPI Eina_Bool elm_map_paused_markers_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13751 EAPI void elm_map_utils_downloading_status_get(const Evas_Object *obj, int *try_num, int *finish_num) EINA_ARG_NONNULL(1, 2, 3);
13752 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);
13753 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);
13754 EAPI Elm_Map_Name *elm_map_utils_convert_coord_into_name(const Evas_Object *obj, double lon, double lat) EINA_ARG_NONNULL(1);
13755 EAPI Elm_Map_Name *elm_map_utils_convert_name_into_coord(const Evas_Object *obj, char *address) EINA_ARG_NONNULL(1, 2);
13756 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);
13757 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);
13758 EAPI void elm_map_max_marker_per_group_set(Evas_Object *obj, int max) EINA_ARG_NONNULL(1);
13759 EAPI void elm_map_marker_remove(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
13760 EAPI void elm_map_marker_region_get(const Elm_Map_Marker *marker, double *lon, double *lat) EINA_ARG_NONNULL(1);
13761 EAPI void elm_map_marker_bring_in(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
13762 EAPI void elm_map_marker_show(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
13763 EAPI void elm_map_markers_list_show(Eina_List *markers) EINA_ARG_NONNULL(1);
13764 EAPI Evas_Object *elm_map_marker_object_get(const Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
13765 EAPI void elm_map_marker_update(Elm_Map_Marker *marker) EINA_ARG_NONNULL(1);
13766 EAPI void elm_map_bubbles_close(Evas_Object *obj) EINA_ARG_NONNULL(1);
13767 EAPI Elm_Map_Group_Class *elm_map_group_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
13768 EAPI void elm_map_group_class_style_set(Elm_Map_Group_Class *clas, const char *style) EINA_ARG_NONNULL(1);
13769 EAPI void elm_map_group_class_icon_cb_set(Elm_Map_Group_Class *clas, ElmMapGroupIconGetFunc icon_get) EINA_ARG_NONNULL(1);
13770 EAPI void elm_map_group_class_data_set(Elm_Map_Group_Class *clas, void *data) EINA_ARG_NONNULL(1);
13771 EAPI void elm_map_group_class_zoom_displayed_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
13772 EAPI void elm_map_group_class_zoom_grouped_set(Elm_Map_Group_Class *clas, int zoom) EINA_ARG_NONNULL(1);
13773 EAPI void elm_map_group_class_hide_set(Evas_Object *obj, Elm_Map_Group_Class *clas, Eina_Bool hide) EINA_ARG_NONNULL(1, 2);
13774 EAPI Elm_Map_Marker_Class *elm_map_marker_class_new(Evas_Object *obj) EINA_ARG_NONNULL(1);
13775 EAPI void elm_map_marker_class_style_set(Elm_Map_Marker_Class *clas, const char *style) EINA_ARG_NONNULL(1);
13776 EAPI void elm_map_marker_class_icon_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerIconGetFunc icon_get) EINA_ARG_NONNULL(1);
13777 EAPI void elm_map_marker_class_get_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerGetFunc get) EINA_ARG_NONNULL(1);
13778 EAPI void elm_map_marker_class_del_cb_set(Elm_Map_Marker_Class *clas, ElmMapMarkerDelFunc del) EINA_ARG_NONNULL(1);
13779 EAPI const char **elm_map_source_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13780 EAPI void elm_map_source_name_set(Evas_Object *obj, const char *source_name) EINA_ARG_NONNULL(1);
13781 EAPI const char *elm_map_source_name_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13782 EAPI void elm_map_route_source_set(Evas_Object *obj, Elm_Map_Route_Sources source) EINA_ARG_NONNULL(1);
13783 EAPI Elm_Map_Route_Sources elm_map_route_source_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13784 EAPI void elm_map_source_zoom_min_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
13785 EAPI int elm_map_source_zoom_min_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13786 EAPI void elm_map_source_zoom_max_set(Evas_Object *obj, int zoom) EINA_ARG_NONNULL(1);
13787 EAPI int elm_map_source_zoom_max_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13788 EAPI void elm_map_user_agent_set(Evas_Object *obj, const char *user_agent) EINA_ARG_NONNULL(1, 2);
13789 EAPI const char *elm_map_user_agent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13790 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);
13791 EAPI void elm_map_route_remove(Elm_Map_Route *route) EINA_ARG_NONNULL(1);
13792 EAPI void elm_map_route_color_set(Elm_Map_Route *route, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
13793 EAPI void elm_map_route_color_get(const Elm_Map_Route *route, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
13794 EAPI double elm_map_route_distance_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
13795 EAPI const char *elm_map_route_node_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
13796 EAPI const char *elm_map_route_waypoint_get(const Elm_Map_Route *route) EINA_ARG_NONNULL(1);
13797 EAPI const char *elm_map_name_address_get(const Elm_Map_Name *name) EINA_ARG_NONNULL(1);
13798 EAPI void elm_map_name_region_get(const Elm_Map_Name *name, double *lon, double *lat) EINA_ARG_NONNULL(1);
13799 EAPI void elm_map_name_remove(Elm_Map_Name *name) EINA_ARG_NONNULL(1);
13800 EAPI void elm_map_rotate_set(Evas_Object *obj, double degree, Evas_Coord cx, Evas_Coord cy) EINA_ARG_NONNULL(1);
13801 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);
13802 EAPI void elm_map_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
13803 EAPI Eina_Bool elm_map_wheel_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13805 EAPI Evas_Object *elm_map_track_add(Evas_Object *obj, EMap_Route *emap) EINA_ARG_NONNULL(1);
13807 EAPI void elm_map_track_remove(Evas_Object *obj, Evas_Object *route) EINA_ARG_NONNULL(1);
13809 /* smart callbacks called:
13810 * "clicked" - when image clicked
13811 * "press" - when mouse/finger held down initially on image
13812 * "longpressed" - when mouse/finger held for long time on image
13813 * "clicked,double" - when mouse/finger double-clicked
13814 * "load,details" - when detailed image load begins
13815 * "loaded,details" - when detailed image load done
13816 * "zoom,start" - when zooming started
13817 * "zoom,stop" - when zooming stopped
13818 * "zoom,change" - when auto zoom mode changed zoom level
13819 * "scroll - the content has been scrolled (moved)
13820 * "scroll,anim,start" - scrolling animation has started
13821 * "scroll,anim,stop" - scrolling animation has stopped
13822 * "scroll,drag,start" - dragging the contents around has started
13823 * "scroll,drag,stop" - dragging the contents around has stopped
13827 EAPI Evas_Object *elm_route_add(Evas_Object *parent);
13829 EAPI void elm_route_emap_set(Evas_Object *obj, EMap_Route *emap);
13831 EAPI double elm_route_lon_min_get(Evas_Object *obj);
13832 EAPI double elm_route_lat_min_get(Evas_Object *obj);
13833 EAPI double elm_route_lon_max_get(Evas_Object *obj);
13834 EAPI double elm_route_lat_max_get(Evas_Object *obj);
13838 typedef enum _Elm_Panel_Orient
13840 ELM_PANEL_ORIENT_TOP,
13841 ELM_PANEL_ORIENT_BOTTOM,
13842 ELM_PANEL_ORIENT_LEFT,
13843 ELM_PANEL_ORIENT_RIGHT,
13844 } Elm_Panel_Orient;
13846 EAPI Evas_Object *elm_panel_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13847 EAPI void elm_panel_orient_set(Evas_Object *obj, Elm_Panel_Orient orient) EINA_ARG_NONNULL(1);
13848 EAPI Elm_Panel_Orient elm_panel_orient_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13849 EAPI void elm_panel_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
13850 EAPI Evas_Object *elm_panel_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13851 EAPI Evas_Object *elm_panel_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13852 EAPI void elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden) EINA_ARG_NONNULL(1);
13853 EAPI Eina_Bool elm_panel_hidden_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13854 EAPI void elm_panel_toggle(Evas_Object *obj) EINA_ARG_NONNULL(1);
13860 * Update the minimun height of the bar in the theme. No minimun should be set in the vertical theme
13861 * Add events (move, start ...)
13863 EAPI Evas_Object *elm_panes_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13864 EAPI void elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
13865 EAPI void elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
13866 EAPI Evas_Object *elm_panes_content_left_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13867 EAPI Evas_Object *elm_panes_content_right_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13868 EAPI Evas_Object *elm_panes_content_left_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13869 EAPI Evas_Object *elm_panes_content_right_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13870 EAPI double elm_panes_content_left_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13871 EAPI void elm_panes_content_left_size_set(Evas_Object *obj, double size) EINA_ARG_NONNULL(1);
13872 EAPI void elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
13873 EAPI Eina_Bool elm_panes_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13874 EAPI void elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed) EINA_ARG_NONNULL(1);
13875 EAPI Eina_Bool elm_panes_fixed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13878 typedef enum _Elm_Flip_Mode
13880 ELM_FLIP_ROTATE_Y_CENTER_AXIS,
13881 ELM_FLIP_ROTATE_X_CENTER_AXIS,
13882 ELM_FLIP_ROTATE_XZ_CENTER_AXIS,
13883 ELM_FLIP_ROTATE_YZ_CENTER_AXIS,
13884 ELM_FLIP_CUBE_LEFT,
13885 ELM_FLIP_CUBE_RIGHT,
13887 ELM_FLIP_CUBE_DOWN,
13888 ELM_FLIP_PAGE_LEFT,
13889 ELM_FLIP_PAGE_RIGHT,
13893 typedef enum _Elm_Flip_Interaction
13895 ELM_FLIP_INTERACTION_NONE,
13896 ELM_FLIP_INTERACTION_ROTATE,
13897 ELM_FLIP_INTERACTION_CUBE,
13898 ELM_FLIP_INTERACTION_PAGE
13899 } Elm_Flip_Interaction;
13900 typedef enum _Elm_Flip_Direction
13902 ELM_FLIP_DIRECTION_UP,
13903 ELM_FLIP_DIRECTION_DOWN,
13904 ELM_FLIP_DIRECTION_LEFT,
13905 ELM_FLIP_DIRECTION_RIGHT
13906 } Elm_Flip_Direction;
13908 EAPI Evas_Object *elm_flip_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13909 EAPI void elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
13910 EAPI void elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
13911 EAPI Evas_Object *elm_flip_content_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13912 EAPI Evas_Object *elm_flip_content_back_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13913 EAPI Evas_Object *elm_flip_content_front_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13914 EAPI Evas_Object *elm_flip_content_back_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13915 EAPI Eina_Bool elm_flip_front_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13916 EAPI void elm_flip_perspective_set(Evas_Object *obj, Evas_Coord foc, Evas_Coord x, Evas_Coord y) EINA_ARG_NONNULL(1);
13917 EAPI void elm_flip_go(Evas_Object *obj, Elm_Flip_Mode mode) EINA_ARG_NONNULL(1);
13918 EAPI void elm_flip_interaction_set(Evas_Object *obj, Elm_Flip_Interaction mode);
13919 EAPI Elm_Flip_Interaction elm_flip_interaction_get(const Evas_Object *obj);
13920 EAPI void elm_flip_interacton_direction_enabled_set(Evas_Object *obj, Elm_Flip_Direction dir, Eina_Bool enabled);
13921 EAPI Eina_Bool elm_flip_interacton_direction_enabled_get(Evas_Object *obj, Elm_Flip_Direction dir);
13922 EAPI void elm_flip_interacton_direction_hitsize_set(Evas_Object *obj, Elm_Flip_Direction dir, double hitsize);
13923 EAPI double elm_flip_interacton_direction_hitsize_get(Evas_Object *obj, Elm_Flip_Direction dir);
13924 /* smart callbacks called:
13925 * "animate,begin" - when a flip animation was started
13926 * "animate,done" - when a flip animation is finished
13929 /* scrolledentry */
13930 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
13931 EINA_DEPRECATED EAPI void elm_scrolled_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line) EINA_ARG_NONNULL(1);
13932 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_single_line_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13933 EINA_DEPRECATED EAPI void elm_scrolled_entry_password_set(Evas_Object *obj, Eina_Bool password) EINA_ARG_NONNULL(1);
13934 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_password_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13935 EINA_DEPRECATED EAPI void elm_scrolled_entry_entry_set(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
13936 EINA_DEPRECATED EAPI const char *elm_scrolled_entry_entry_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13937 EINA_DEPRECATED EAPI void elm_scrolled_entry_entry_append(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
13938 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_is_empty(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13939 EINA_DEPRECATED EAPI const char *elm_scrolled_entry_selection_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13940 EINA_DEPRECATED EAPI void elm_scrolled_entry_entry_insert(Evas_Object *obj, const char *entry) EINA_ARG_NONNULL(1);
13941 EINA_DEPRECATED EAPI void elm_scrolled_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap) EINA_ARG_NONNULL(1);
13942 EINA_DEPRECATED EAPI void elm_scrolled_entry_editable_set(Evas_Object *obj, Eina_Bool editable) EINA_ARG_NONNULL(1);
13943 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_editable_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13944 EINA_DEPRECATED EAPI void elm_scrolled_entry_select_none(Evas_Object *obj) EINA_ARG_NONNULL(1);
13945 EINA_DEPRECATED EAPI void elm_scrolled_entry_select_all(Evas_Object *obj) EINA_ARG_NONNULL(1);
13946 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cursor_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
13947 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cursor_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
13948 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cursor_up(Evas_Object *obj) EINA_ARG_NONNULL(1);
13949 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cursor_down(Evas_Object *obj) EINA_ARG_NONNULL(1);
13950 EINA_DEPRECATED EAPI void elm_scrolled_entry_cursor_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
13951 EINA_DEPRECATED EAPI void elm_scrolled_entry_cursor_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
13952 EINA_DEPRECATED EAPI void elm_scrolled_entry_cursor_line_begin_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
13953 EINA_DEPRECATED EAPI void elm_scrolled_entry_cursor_line_end_set(Evas_Object *obj) EINA_ARG_NONNULL(1);
13954 EINA_DEPRECATED EAPI void elm_scrolled_entry_cursor_selection_begin(Evas_Object *obj) EINA_ARG_NONNULL(1);
13955 EINA_DEPRECATED EAPI void elm_scrolled_entry_cursor_selection_end(Evas_Object *obj) EINA_ARG_NONNULL(1);
13956 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cursor_is_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13957 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cursor_is_visible_format_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13958 EINA_DEPRECATED EAPI const char *elm_scrolled_entry_cursor_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13959 EINA_DEPRECATED EAPI void elm_scrolled_entry_cursor_pos_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
13960 EINA_DEPRECATED EAPI int elm_scrolled_entry_cursor_pos_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13961 EINA_DEPRECATED EAPI void elm_scrolled_entry_selection_cut(Evas_Object *obj) EINA_ARG_NONNULL(1);
13962 EINA_DEPRECATED EAPI void elm_scrolled_entry_selection_copy(Evas_Object *obj) EINA_ARG_NONNULL(1);
13963 EINA_DEPRECATED EAPI void elm_scrolled_entry_selection_paste(Evas_Object *obj) EINA_ARG_NONNULL(1);
13964 EINA_DEPRECATED EAPI void elm_scrolled_entry_context_menu_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
13965 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);
13966 EINA_DEPRECATED EAPI void elm_scrolled_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled) EINA_ARG_NONNULL(1);
13967 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_context_menu_disabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13968 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);
13969 EINA_DEPRECATED EAPI void elm_scrolled_entry_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
13970 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);
13971 EINA_DEPRECATED EAPI void elm_scrolled_entry_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1, 2);
13972 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13973 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13974 EINA_DEPRECATED EAPI void elm_scrolled_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
13975 EINA_DEPRECATED EAPI void elm_scrolled_entry_end_set(Evas_Object *obj, Evas_Object *end) EINA_ARG_NONNULL(1, 2);
13976 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13977 EINA_DEPRECATED EAPI Evas_Object *elm_scrolled_entry_end_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
13978 EINA_DEPRECATED EAPI void elm_scrolled_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting) EINA_ARG_NONNULL(1);
13979 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);
13980 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);
13981 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);
13982 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);
13983 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);
13984 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);
13985 EINA_DEPRECATED EAPI void elm_scrolled_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format) EINA_ARG_NONNULL(1);
13986 EINA_DEPRECATED EAPI void elm_scrolled_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format) EINA_ARG_NONNULL(1);
13987 EINA_DEPRECATED EAPI void elm_scrolled_entry_file_save(Evas_Object *obj) EINA_ARG_NONNULL(1);
13988 EINA_DEPRECATED EAPI void elm_scrolled_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave) EINA_ARG_NONNULL(1);
13989 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_autosave_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
13990 EINA_DEPRECATED EAPI void elm_scrolled_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly) EINA_ARG_NONNULL(1);
13991 EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cnp_textonly_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
13992 EINA_DEPRECATED EAPI void elm_scrolled_entry_line_char_wrap_set(Evas_Object *obj, Eina_Bool wrap) EINA_ARG_NONNULL(1);
13993 EINA_DEPRECATED EAPI void elm_scrolled_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled);
13994 EINA_DEPRECATED EAPI void elm_scrolled_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout);
13995 EINA_DEPRECATED EAPI Ecore_IMF_Context *elm_scrolled_entry_imf_context_get(Evas_Object *obj);
13996 EINA_DEPRECATED EAPI void elm_scrolled_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap);
13997 EINA_DEPRECATED EAPI void elm_scrolled_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod);
14000 EAPI Evas_Object *elm_conformant_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14001 EAPI void elm_conformant_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
14002 EAPI Evas_Object *elm_conformant_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14003 EAPI Evas_Object *elm_conformant_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14004 EAPI Evas_Object *elm_conformant_content_area_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14007 EAPI Evas_Object *elm_mapbuf_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14008 EAPI void elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
14009 EAPI Evas_Object *elm_mapbuf_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14010 EAPI Evas_Object *elm_mapbuf_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14011 EAPI void elm_mapbuf_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
14012 EAPI Eina_Bool elm_mapbuf_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14013 EAPI void elm_mapbuf_smooth_set(Evas_Object *obj, Eina_Bool smooth) EINA_ARG_NONNULL(1);
14014 EAPI Eina_Bool elm_mapbuf_smooth_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14015 EAPI void elm_mapbuf_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
14016 EAPI Eina_Bool elm_mapbuf_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14019 * @defgroup Flipselector Flip Selector
14021 * A flip selector is a widget to show a set of @b text items, one
14022 * at a time, with the same sheet switching style as the @ref Clock
14023 * "clock" widget, when one changes the current displaying sheet
14024 * (thus, the "flip" in the name).
14026 * User clicks to flip sheets which are @b held for some time will
14027 * make the flip selector to flip continuosly and automatically for
14028 * the user. The interval between flips will keep growing in time,
14029 * so that it helps the user to reach an item which is distant from
14030 * the current selection.
14032 * Smart callbacks one can register to:
14033 * - @c "selected" - when the widget's selected text item is changed
14034 * - @c "overflowed" - when the widget's current selection is changed
14035 * from the first item in its list to the last
14036 * - @c "underflowed" - when the widget's current selection is changed
14037 * from the last item in its list to the first
14039 * Available styles for it:
14042 * Here is an example on its usage:
14043 * @li @ref flipselector_example
14047 * @addtogroup Flipselector
14051 typedef struct _Elm_Flipselector_Item Elm_Flipselector_Item; /**< Item handle for a flip selector widget. */
14054 * Add a new flip selector widget to the given parent Elementary
14055 * (container) widget
14057 * @param parent The parent object
14058 * @return a new flip selector widget handle or @c NULL, on errors
14060 * This function inserts a new flip selector widget on the canvas.
14062 * @ingroup Flipselector
14064 EAPI Evas_Object *elm_flipselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14067 * Programmatically select the next item of a flip selector widget
14069 * @param obj The flipselector object
14071 * @note The selection will be animated. Also, if it reaches the
14072 * end of its list of member items, it will continue with the first
14075 * @ingroup Flipselector
14077 EAPI void elm_flipselector_flip_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
14080 * Programmatically select the previous item of a flip selector
14083 * @param obj The flipselector object
14085 * @note The selection will be animated. Also, if it reaches the
14086 * beginning of its list of member items, it will continue with the
14087 * last one backwards.
14089 * @ingroup Flipselector
14091 EAPI void elm_flipselector_flip_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
14094 * Append a (text) item to a flip selector widget
14096 * @param obj The flipselector object
14097 * @param label The (text) label of the new item
14098 * @param func Convenience callback function to take place when
14100 * @param data Data passed to @p func, above
14101 * @return A handle to the item added or @c NULL, on errors
14103 * The widget's list of labels to show will be appended with the
14104 * given value. If the user wishes so, a callback function pointer
14105 * can be passed, which will get called when this same item is
14108 * @note The current selection @b won't be modified by appending an
14109 * element to the list.
14111 * @note The maximum length of the text label is going to be
14112 * determined <b>by the widget's theme</b>. Strings larger than
14113 * that value are going to be @b truncated.
14115 * @ingroup Flipselector
14117 EAPI Elm_Flipselector_Item *elm_flipselector_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
14120 * Prepend a (text) item to a flip selector widget
14122 * @param obj The flipselector object
14123 * @param label The (text) label of the new item
14124 * @param func Convenience callback function to take place when
14126 * @param data Data passed to @p func, above
14127 * @return A handle to the item added or @c NULL, on errors
14129 * The widget's list of labels to show will be prepended with the
14130 * given value. If the user wishes so, a callback function pointer
14131 * can be passed, which will get called when this same item is
14134 * @note The current selection @b won't be modified by prepending
14135 * an element to the list.
14137 * @note The maximum length of the text label is going to be
14138 * determined <b>by the widget's theme</b>. Strings larger than
14139 * that value are going to be @b truncated.
14141 * @ingroup Flipselector
14143 EAPI Elm_Flipselector_Item *elm_flipselector_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data) EINA_ARG_NONNULL(1);
14146 * Get the internal list of items in a given flip selector widget.
14148 * @param obj The flipselector object
14149 * @return The list of items (#Elm_Flipselector_Item as data) or @c
14152 * This list is @b not to be modified in any way and must not be
14153 * freed. Use the list members with functions like
14154 * elm_flipselector_item_label_set(),
14155 * elm_flipselector_item_label_get(), elm_flipselector_item_del(),
14156 * elm_flipselector_item_del(),
14157 * elm_flipselector_item_selected_get(),
14158 * elm_flipselector_item_selected_set().
14160 * @warning This list is only valid until @p obj object's internal
14161 * items list is changed. It should be fetched again with another
14162 * call to this function when changes happen.
14164 * @ingroup Flipselector
14166 EAPI const Eina_List *elm_flipselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14169 * Get the first item in the given flip selector widget's list of
14172 * @param obj The flipselector object
14173 * @return The first item or @c NULL, if it has no items (and on
14176 * @see elm_flipselector_item_append()
14177 * @see elm_flipselector_last_item_get()
14179 * @ingroup Flipselector
14181 EAPI Elm_Flipselector_Item *elm_flipselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14184 * Get the last item in the given flip selector widget's list of
14187 * @param obj The flipselector object
14188 * @return The last item or @c NULL, if it has no items (and on
14191 * @see elm_flipselector_item_prepend()
14192 * @see elm_flipselector_first_item_get()
14194 * @ingroup Flipselector
14196 EAPI Elm_Flipselector_Item *elm_flipselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14199 * Get the currently selected item in a flip selector widget.
14201 * @param obj The flipselector object
14202 * @return The selected item or @c NULL, if the widget has no items
14205 * @ingroup Flipselector
14207 EAPI Elm_Flipselector_Item *elm_flipselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14210 * Set whether a given flip selector widget's item should be the
14211 * currently selected one.
14213 * @param item The flip selector item
14214 * @param selected @c EINA_TRUE to select it, @c EINA_FALSE to unselect.
14216 * This sets whether @p item is or not the selected (thus, under
14217 * display) one. If @p item is different than one under display,
14218 * the latter will be unselected. If the @p item is set to be
14219 * unselected, on the other hand, the @b first item in the widget's
14220 * internal members list will be the new selected one.
14222 * @see elm_flipselector_item_selected_get()
14224 * @ingroup Flipselector
14226 EAPI void elm_flipselector_item_selected_set(Elm_Flipselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
14229 * Get whether a given flip selector widget's item is the currently
14232 * @param item The flip selector item
14233 * @return @c EINA_TRUE, if it's selected, @c EINA_FALSE otherwise
14236 * @see elm_flipselector_item_selected_set()
14238 * @ingroup Flipselector
14240 EAPI Eina_Bool elm_flipselector_item_selected_get(const Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
14243 * Delete a given item from a flip selector widget.
14245 * @param item The item to delete
14247 * @ingroup Flipselector
14249 EAPI void elm_flipselector_item_del(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
14252 * Get the label of a given flip selector widget's item.
14254 * @param item The item to get label from
14255 * @return The text label of @p item or @c NULL, on errors
14257 * @see elm_flipselector_item_label_set()
14259 * @ingroup Flipselector
14261 EAPI const char *elm_flipselector_item_label_get(const Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
14264 * Set the label of a given flip selector widget's item.
14266 * @param item The item to set label on
14267 * @param label The text label string, in UTF-8 encoding
14269 * @see elm_flipselector_item_label_get()
14271 * @ingroup Flipselector
14273 EAPI void elm_flipselector_item_label_set(Elm_Flipselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
14276 * Gets the item before @p item in a flip selector widget's
14277 * internal list of items.
14279 * @param item The item to fetch previous from
14280 * @return The item before the @p item, in its parent's list. If
14281 * there is no previous item for @p item or there's an
14282 * error, @c NULL is returned.
14284 * @see elm_flipselector_item_next_get()
14286 * @ingroup Flipselector
14288 EAPI Elm_Flipselector_Item *elm_flipselector_item_prev_get(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
14291 * Gets the item after @p item in a flip selector widget's
14292 * internal list of items.
14294 * @param item The item to fetch next from
14295 * @return The item after the @p item, in its parent's list. If
14296 * there is no next item for @p item or there's an
14297 * error, @c NULL is returned.
14299 * @see elm_flipselector_item_next_get()
14301 * @ingroup Flipselector
14303 EAPI Elm_Flipselector_Item *elm_flipselector_item_next_get(Elm_Flipselector_Item *item) EINA_ARG_NONNULL(1);
14306 * Set the interval on time updates for an user mouse button hold
14307 * on a flip selector widget.
14309 * @param obj The flip selector object
14310 * @param interval The (first) interval value in seconds
14312 * This interval value is @b decreased while the user holds the
14313 * mouse pointer either flipping up or flipping doww a given flip
14316 * This helps the user to get to a given item distant from the
14317 * current one easier/faster, as it will start to flip quicker and
14318 * quicker on mouse button holds.
14320 * The calculation for the next flip interval value, starting from
14321 * the one set with this call, is the previous interval divided by
14322 * 1.05, so it decreases a little bit.
14324 * The default starting interval value for automatic flips is
14327 * @see elm_flipselector_interval_get()
14329 * @ingroup Flipselector
14331 EAPI void elm_flipselector_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
14334 * Get the interval on time updates for an user mouse button hold
14335 * on a flip selector widget.
14337 * @param obj The flip selector object
14338 * @return The (first) interval value, in seconds, set on it
14340 * @see elm_flipselector_interval_set() for more details
14342 * @ingroup Flipselector
14344 EAPI double elm_flipselector_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14351 * @addtogroup Animator Animator
14352 * @ingroup Elementary
14354 * @brief Functions to ease creation of animations.
14356 * elm_animator is designed to provide an easy way to create animations.
14357 * Creating an animation with elm_animator is as simple as setting a
14358 * duration, an operating callback and telling it to run the animation.
14359 * However that is not the full extent of elm_animator's ability, animations
14360 * can be paused and resumed, reversed and the animation need not be linear.
14362 * To run an animation you must specify at least a duration and operation
14363 * callback, not setting any other properties will create a linear animation
14364 * that runs once and is not reversed.
14366 * @ref elm_animator_example_page_01 "This" example should make all of that
14369 * @warning elm_animator is @b not a widget.
14373 * @brief Type of curve desired for animation.
14375 * The speed in which an animation happens doesn't have to be linear, some
14376 * animations will look better if they're accelerating or decelerating, so
14377 * elm_animator provides four options in this regard:
14378 * @image html elm_animator_curve_style.png
14379 * @image latex elm_animator_curve_style.eps width=\textwidth
14380 * As can be seen in the image the speed of the animation will be:
14381 * @li ELM_ANIMATOR_CURVE_LINEAR constant
14382 * @li ELM_ANIMATOR_CURVE_IN_OUT start slow, speed up and then slow down
14383 * @li ELM_ANIMATOR_CURVE_IN start slow and then speed up
14384 * @li ELM_ANIMATOR_CURVE_OUT start fast and then slow down
14388 ELM_ANIMATOR_CURVE_LINEAR,
14389 ELM_ANIMATOR_CURVE_IN_OUT,
14390 ELM_ANIMATOR_CURVE_IN,
14391 ELM_ANIMATOR_CURVE_OUT
14392 } Elm_Animator_Curve_Style;
14393 typedef struct _Elm_Animator Elm_Animator;
14395 * Called back per loop of an elementary animators cycle
14396 * @param data user-data given to elm_animator_operation_callback_set()
14397 * @param animator the animator being run
14398 * @param double the position in the animation
14400 typedef void (*Elm_Animator_Operation_Cb) (void *data, Elm_Animator *animator, double frame);
14402 * Called back when an elementary animator finishes
14403 * @param data user-data given to elm_animator_completion_callback_set()
14405 typedef void (*Elm_Animator_Completion_Cb) (void *data);
14408 * @brief Create a new animator.
14410 * @param[in] parent Parent object
14412 * The @a parent argument can be set to NULL for no parent. If a parent is set
14413 * there is no need to call elm_animator_del(), when the parent is deleted it
14414 * will delete the animator.
14415 * @deprecated Use @ref Transit instead.
14418 EINA_DEPRECATED EAPI Elm_Animator* elm_animator_add(Evas_Object *parent);
14420 * Deletes the animator freeing any resources it used. If the animator was
14421 * created with a NULL parent this must be called, otherwise it will be
14422 * automatically called when the parent is deleted.
14424 * @param[in] animator Animator object
14425 * @deprecated Use @ref Transit instead.
14427 EINA_DEPRECATED EAPI void elm_animator_del(Elm_Animator *animator) EINA_ARG_NONNULL(1);
14429 * Set the duration of the animation.
14431 * @param[in] animator Animator object
14432 * @param[in] duration Duration in second
14433 * @deprecated Use @ref Transit instead.
14435 EINA_DEPRECATED EAPI void elm_animator_duration_set(Elm_Animator *animator, double duration) EINA_ARG_NONNULL(1);
14437 * @brief Set the callback function for animator operation.
14439 * @param[in] animator Animator object
14440 * @param[in] func @ref Elm_Animator_Operation_Cb "Callback" function pointer
14441 * @param[in] data Callback function user argument
14443 * The @p func callback will be called with a frame value in range [0, 1] which
14444 * indicates how far along the animation should be. It is the job of @p func to
14445 * actually change the state of any object(or objects) that are being animated.
14446 * @deprecated Use @ref Transit instead.
14448 EINA_DEPRECATED EAPI void elm_animator_operation_callback_set(Elm_Animator *animator, Elm_Animator_Operation_Cb func, void *data) EINA_ARG_NONNULL(1);
14450 * Set the callback function for the when the animation ends.
14452 * @param[in] animator Animator object
14453 * @param[in] func Callback function pointe
14454 * @param[in] data Callback function user argument
14456 * @warning @a func will not be executed if elm_animator_stop() is called.
14457 * @deprecated Use @ref Transit instead.
14459 EINA_DEPRECATED EAPI void elm_animator_completion_callback_set(Elm_Animator *animator, Elm_Animator_Completion_Cb func, void *data) EINA_ARG_NONNULL(1);
14461 * @brief Stop animator.
14463 * @param[in] animator Animator object
14465 * If called before elm_animator_animate() it does nothing. If there is an
14466 * animation in progress the animation will be stopped(the operation callback
14467 * will not be executed again) and it can't be restarted using
14468 * elm_animator_resume().
14469 * @deprecated Use @ref Transit instead.
14471 EINA_DEPRECATED EAPI void elm_animator_stop(Elm_Animator *animator) EINA_ARG_NONNULL(1);
14473 * Set the animator repeat count.
14475 * @param[in] animator Animator object
14476 * @param[in] repeat_cnt Repeat count
14477 * @deprecated Use @ref Transit instead.
14479 EINA_DEPRECATED EAPI void elm_animator_repeat_set(Elm_Animator *animator, unsigned int repeat_cnt) EINA_ARG_NONNULL(1);
14481 * @brief Start animation.
14483 * @param[in] animator Animator object
14485 * This function starts the animation if the nescessary properties(duration
14486 * and operation callback) have been set. Once started the animation will
14487 * run until complete or elm_animator_stop() is called.
14488 * @deprecated Use @ref Transit instead.
14490 EINA_DEPRECATED EAPI void elm_animator_animate(Elm_Animator *animator) EINA_ARG_NONNULL(1);
14492 * Sets the animation @ref Elm_Animator_Curve_Style "acceleration style".
14494 * @param[in] animator Animator object
14495 * @param[in] cs Curve style. Default is ELM_ANIMATOR_CURVE_LINEAR
14496 * @deprecated Use @ref Transit instead.
14498 EINA_DEPRECATED EAPI void elm_animator_curve_style_set(Elm_Animator *animator, Elm_Animator_Curve_Style cs) EINA_ARG_NONNULL(1);
14500 * Gets the animation @ref Elm_Animator_Curve_Style "acceleration style".
14502 * @param[in] animator Animator object
14503 * @param[in] cs Curve style. Default is ELM_ANIMATOR_CURVE_LINEAR
14504 * @deprecated Use @ref Transit instead.
14506 EINA_DEPRECATED EAPI Elm_Animator_Curve_Style elm_animator_curve_style_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
14508 * @brief Sets wether the animation should be automatically reversed.
14510 * @param[in] animator Animator object
14511 * @param[in] reverse Reverse or not
14513 * This controls wether the animation will be run on reverse imediately after
14514 * running forward. When this is set together with repetition the animation
14515 * will run in reverse once for each time it ran forward.@n
14516 * Runnin an animation in reverse is accomplished by calling the operation
14517 * callback with a frame value starting at 1 and diminshing until 0.
14518 * @deprecated Use @ref Transit instead.
14520 EINA_DEPRECATED EAPI void elm_animator_auto_reverse_set(Elm_Animator *animator, Eina_Bool reverse) EINA_ARG_NONNULL(1);
14522 * Gets wether the animation will automatically reversed
14524 * @param[in] animator Animator object
14525 * @deprecated Use @ref Transit instead.
14527 EINA_DEPRECATED EAPI Eina_Bool elm_animator_auto_reverse_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
14529 * Gets the status for the animator operation. The status of the animator @b
14530 * doesn't take in to account elm_animator_pause() or elm_animator_resume(), it
14531 * only informs if the animation was started and has not ended(either normally
14532 * or through elm_animator_stop()).
14534 * @param[in] animator Animator object
14535 * @deprecated Use @ref Transit instead.
14537 EINA_DEPRECATED EAPI Eina_Bool elm_animator_operating_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
14539 * Gets how many times the animation will be repeated
14541 * @param[in] animator Animator object
14542 * @deprecated Use @ref Transit instead.
14544 EINA_DEPRECATED EAPI unsigned int elm_animator_repeat_get(const Elm_Animator *animator) EINA_ARG_NONNULL(1);
14546 * Pause the animator.
14548 * @param[in] animator Animator object
14550 * This causes the animation to be temporarily stopped(the operation callback
14551 * will not be called). If the animation is not yet running this is a no-op.
14552 * Once an animation has been paused with this function it can be resumed
14553 * using elm_animator_resume().
14554 * @deprecated Use @ref Transit instead.
14556 EINA_DEPRECATED EAPI void elm_animator_pause(Elm_Animator *animator) EINA_ARG_NONNULL(1);
14558 * @brief Resumes the animator.
14560 * @param[in] animator Animator object
14562 * Resumes an animation that was paused using elm_animator_pause(), after
14563 * calling this function calls to the operation callback will happen
14564 * normally. If an animation is stopped by means of elm_animator_stop it
14565 * @b can't be restarted with this function.@n
14567 * @warning When an animation is resumed it doesn't start from where it was paused, it
14568 * will go to where it would have been if it had not been paused. If an
14569 * animation with a duration of 3 seconds is paused after 1 second for 1 second
14570 * it will resume as if it had ben animating for 2 seconds, the operating
14571 * callback will be called with a frame value of aproximately 2/3.
14572 * @deprecated Use @ref Transit instead.
14574 EINA_DEPRECATED EAPI void elm_animator_resume(Elm_Animator *animator) EINA_ARG_NONNULL(1);
14582 ELM_CALENDAR_UNIQUE,
14583 ELM_CALENDAR_DAILY,
14584 ELM_CALENDAR_WEEKLY,
14585 ELM_CALENDAR_MONTHLY,
14586 ELM_CALENDAR_ANNUALLY
14587 } Elm_Calendar_Mark_Repeat;
14588 typedef struct _Elm_Calendar_Mark Elm_Calendar_Mark;
14590 EAPI Evas_Object *elm_calendar_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14591 EAPI const char **elm_calendar_weekdays_names_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14592 EAPI void elm_calendar_weekdays_names_set(Evas_Object *obj, const char *weekdays[]) EINA_ARG_NONNULL(1, 2);
14593 EAPI double elm_calendar_interval_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14594 EAPI void elm_calendar_interval_set(Evas_Object *obj, double interval) EINA_ARG_NONNULL(1);
14595 EAPI void elm_calendar_min_max_year_get(const Evas_Object *obj, int *min, int *max) EINA_ARG_NONNULL(1);
14596 EAPI void elm_calendar_min_max_year_set(Evas_Object *obj, int min, int max) EINA_ARG_NONNULL(1);
14597 EAPI Eina_Bool elm_calendar_day_selection_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14598 EAPI void elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
14599 EAPI Eina_Bool elm_calendar_selected_time_get(const Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1, 2);
14600 EAPI void elm_calendar_selected_time_set(Evas_Object *obj, struct tm *selected_time) EINA_ARG_NONNULL(1);
14601 EAPI void elm_calendar_format_function_set(Evas_Object *obj, char * (*format_function) (struct tm *stime)) EINA_ARG_NONNULL(1);
14602 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);
14603 EAPI void elm_calendar_mark_del(Elm_Calendar_Mark *mark) EINA_ARG_NONNULL(1);
14604 EAPI void elm_calendar_marks_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
14605 EAPI const Eina_List *elm_calendar_marks_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14606 EAPI void elm_calendar_marks_draw(Evas_Object *obj) EINA_ARG_NONNULL(1);
14607 EINA_DEPRECATED EAPI void elm_calendar_text_saturday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
14608 EINA_DEPRECATED EAPI void elm_calendar_text_sunday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
14609 EINA_DEPRECATED EAPI void elm_calendar_text_weekday_color_set(Evas_Object *obj, int pos) EINA_ARG_NONNULL(1);
14610 /* smart callbacks called:
14611 * changed - emitted when the user select a day or change the displayed
14616 typedef struct _Elm_Diskselector_Item Elm_Diskselector_Item;
14618 EAPI Evas_Object *elm_diskselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14619 EAPI Eina_Bool elm_diskselector_round_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14620 EAPI void elm_diskselector_round_set(Evas_Object *obj, Eina_Bool round) EINA_ARG_NONNULL(1);
14621 EINA_DEPRECATED EAPI int elm_diskselector_side_label_lenght_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14622 EINA_DEPRECATED EAPI void elm_diskselector_side_label_lenght_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
14623 EAPI int elm_diskselector_side_label_length_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14624 EAPI void elm_diskselector_side_label_length_set(Evas_Object *obj, int len) EINA_ARG_NONNULL(1);
14625 EAPI void elm_diskselector_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce) EINA_ARG_NONNULL(1);
14626 EAPI void elm_diskselector_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce) EINA_ARG_NONNULL(1);
14627 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);
14628 EAPI void elm_diskselector_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v) EINA_ARG_NONNULL(1);
14629 EAPI void elm_diskselector_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
14630 EAPI const Eina_List *elm_diskselector_items_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14631 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);
14632 EAPI void elm_diskselector_item_del(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14633 EAPI void elm_diskselector_item_del_cb_set(Elm_Diskselector_Item *item, Evas_Smart_Cb func) EINA_ARG_NONNULL(1);
14634 EAPI void *elm_diskselector_item_data_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14635 EAPI Evas_Object *elm_diskselector_item_icon_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14636 EAPI void elm_diskselector_item_icon_set(Elm_Diskselector_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
14637 EAPI const char *elm_diskselector_item_label_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14638 EAPI void elm_diskselector_item_label_set(Elm_Diskselector_Item *item, const char *label) EINA_ARG_NONNULL(1);
14639 EAPI Elm_Diskselector_Item *elm_diskselector_selected_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14640 EAPI void elm_diskselector_item_selected_set(Elm_Diskselector_Item *item, Eina_Bool selected) EINA_ARG_NONNULL(1);
14641 EAPI Eina_Bool elm_diskselector_item_selected_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14642 EAPI Elm_Diskselector_Item *elm_diskselector_first_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14643 EAPI Elm_Diskselector_Item *elm_diskselector_last_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14644 EAPI Elm_Diskselector_Item *elm_diskselector_item_prev_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14645 EAPI Elm_Diskselector_Item *elm_diskselector_item_next_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14646 EAPI void elm_diskselector_item_tooltip_text_set(Elm_Diskselector_Item *item, const char *text) EINA_ARG_NONNULL(1);
14647 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);
14648 EAPI void elm_diskselector_item_tooltip_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14649 EAPI void elm_diskselector_item_tooltip_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
14650 EAPI const char *elm_diskselector_item_tooltip_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14651 EAPI void elm_diskselector_item_cursor_set(Elm_Diskselector_Item *item, const char *cursor) EINA_ARG_NONNULL(1);
14652 EAPI const char *elm_diskselector_item_cursor_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14653 EAPI void elm_diskselector_item_cursor_unset(Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14654 EAPI void elm_diskselector_item_cursor_style_set(Elm_Diskselector_Item *item, const char *style) EINA_ARG_NONNULL(1);
14655 EAPI const char *elm_diskselector_item_cursor_style_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14656 EAPI void elm_diskselector_item_cursor_engine_only_set(Elm_Diskselector_Item *item, Eina_Bool engine_only) EINA_ARG_NONNULL(1);
14657 EAPI Eina_Bool elm_diskselector_item_cursor_engine_only_get(const Elm_Diskselector_Item *item) EINA_ARG_NONNULL(1);
14658 EAPI void elm_diskselector_display_item_num_set(Evas_Object *obj, int num) EINA_ARG_NONNULL(1);
14659 /* smart callbacks called:
14660 * "selected" - when item is selected (scroller stops)
14664 * @page tutorial_colorselector Color selector example
14665 * @dontinclude colorselector_example_01.c
14667 * This example shows how to change the color of a rectangle using a color
14668 * selector. We aren't going to explain a lot of the code since it's the
14669 * usual setup code:
14670 * @until show(rect)
14672 * Now that we have a window with background and a rectangle we can create
14673 * our color_selector and set it's initial color to fully opaque blue:
14676 * Next we tell ask to be notified whenever the color changes:
14679 * We follow that we some more run of the mill setup code:
14680 * @until ELM_MAIN()
14682 * And now get to the callback that sets the color of the rectangle:
14685 * This example will look like this:
14686 * @image html screenshots/colorselector_example_01.png
14687 * @image latex screenshots/colorselector_example_01.eps
14689 * @example colorselector_example_01.c
14692 * @defgroup Colorselector Colorselector
14696 * @brief Widget for user to select a color.
14698 * Signals that you can add callbacks for are:
14699 * "changed" - When the color value changes(event_info is NULL).
14701 * See @ref tutorial_colorselector.
14704 * @brief Add a new colorselector to the parent
14706 * @param parent The parent object
14707 * @return The new object or NULL if it cannot be created
14709 * @ingroup Colorselector
14711 EAPI Evas_Object *elm_colorselector_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14713 * Set a color for the colorselector
14715 * @param obj Colorselector object
14716 * @param r r-value of color
14717 * @param g g-value of color
14718 * @param b b-value of color
14719 * @param a a-value of color
14721 * @ingroup Colorselector
14723 EAPI void elm_colorselector_color_set(Evas_Object *obj, int r, int g , int b, int a) EINA_ARG_NONNULL(1);
14725 * Get a color from the colorselector
14727 * @param obj Colorselector object
14728 * @param r integer pointer for r-value of color
14729 * @param g integer pointer for g-value of color
14730 * @param b integer pointer for b-value of color
14731 * @param a integer pointer for a-value of color
14733 * @ingroup Colorselector
14735 EAPI void elm_colorselector_color_get(const Evas_Object *obj, int *r, int *g , int *b, int *a) EINA_ARG_NONNULL(1);
14740 /* Contextual Popup */
14741 typedef struct _Elm_Ctxpopup_Item Elm_Ctxpopup_Item;
14743 typedef enum _Elm_Ctxpopup_Direction
14745 ELM_CTXPOPUP_DIRECTION_DOWN,
14746 ELM_CTXPOPUP_DIRECTION_RIGHT,
14747 ELM_CTXPOPUP_DIRECTION_LEFT,
14748 ELM_CTXPOPUP_DIRECTION_UP,
14749 ELM_CTXPOPUP_DIRECTION_UNKNOWN, /**< ctxpopup does not determine it's direction yet*/
14750 } Elm_Ctxpopup_Direction;
14752 EAPI Evas_Object *elm_ctxpopup_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
14753 EAPI Evas_Object *elm_ctxpopup_item_icon_get(const Elm_Ctxpopup_Item *item) EINA_ARG_NONNULL(1);
14754 EAPI void elm_ctxpopup_item_icon_set(Elm_Ctxpopup_Item *item, Evas_Object *icon) EINA_ARG_NONNULL(1);
14755 EAPI const char *elm_ctxpopup_item_label_get(const Elm_Ctxpopup_Item *item) EINA_ARG_NONNULL(1);
14756 EAPI void elm_ctxpopup_item_label_set(Elm_Ctxpopup_Item *item, const char *label) EINA_ARG_NONNULL(1);
14757 EAPI void elm_ctxpopup_hover_parent_set(Evas_Object *obj, Evas_Object *parent) EINA_ARG_NONNULL(1, 2);
14758 EAPI Evas_Object *elm_ctxpopup_hover_parent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14759 EAPI void elm_ctxpopup_clear(Evas_Object *obj) EINA_ARG_NONNULL(1);
14760 EAPI void elm_ctxpopup_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
14761 EAPI Eina_Bool elm_ctxpopup_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14762 Elm_Ctxpopup_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);
14763 EAPI void elm_ctxpopup_item_del(Elm_Ctxpopup_Item *item) EINA_ARG_NONNULL(1);
14764 EAPI void elm_ctxpopup_item_disabled_set(Elm_Ctxpopup_Item *item, Eina_Bool disabled) EINA_ARG_NONNULL(1);
14765 EAPI Eina_Bool elm_ctxpopup_item_disabled_get(const Elm_Ctxpopup_Item *item) EINA_ARG_NONNULL(1);
14766 EAPI void elm_ctxpopup_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1, 2);
14767 EAPI Evas_Object *elm_ctxpopup_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
14768 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);
14769 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);
14770 EAPI Elm_Ctxpopup_Direction elm_ctxpopup_direction_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
14771 /* smart callbacks called:
14772 * "dismissed" - the ctxpopup was dismissed
14778 * @defgroup Transit Transit
14779 * @ingroup Elementary
14781 * Transit is designed to apply various animated transition effects to @c
14782 * Evas_Object, such like translation, rotation, etc. For using these
14783 * effects, create an @ref Elm_Transit and add the desired transition effects.
14785 * Once the effects are added into transit, they will be automatically
14786 * managed (their callback will be called until the duration is ended, and
14787 * they will be deleted on completion).
14791 * Elm_Transit *trans = elm_transit_add();
14792 * elm_transit_object_add(trans, obj);
14793 * elm_transit_effect_translation_add(trans, 0, 0, 280, 280
14794 * elm_transit_duration_set(transit, 1);
14795 * elm_transit_auto_reverse_set(transit, EINA_TRUE);
14796 * elm_transit_tween_mode_set(transit, ELM_TRANSIT_TWEEN_MODE_DECELERATE);
14797 * elm_transit_repeat_times_set(transit, 3);
14800 * Some transition effects are used to change the properties of objects. They
14802 * @li @ref elm_transit_effect_translation_add
14803 * @li @ref elm_transit_effect_color_add
14804 * @li @ref elm_transit_effect_rotation_add
14805 * @li @ref elm_transit_effect_wipe_add
14806 * @li @ref elm_transit_effect_zoom_add
14807 * @li @ref elm_transit_effect_resizing_add
14809 * Other transition effects are used to make one object disappear and another
14810 * object appear on its old place. These effects are:
14812 * @li @ref elm_transit_effect_flip_add
14813 * @li @ref elm_transit_effect_resizable_flip_add
14814 * @li @ref elm_transit_effect_fade_add
14815 * @li @ref elm_transit_effect_blend_add
14817 * It's also possible to make a transition chain with @ref
14818 * elm_transit_chain_transit_add.
14820 * @warning We strongly recommend to use elm_transit just when edje can not do
14821 * the trick. Edje has more advantage than Elm_Transit, it has more flexibility and
14822 * animations can be manipulated inside the theme.
14824 * List of examples:
14825 * @li @ref transit_example_01_explained
14826 * @li @ref transit_example_02_explained
14827 * @li @ref transit_example_03_c
14828 * @li @ref transit_example_04_c
14834 * @enum Elm_Transit_Tween_Mode
14836 * The type of acceleration used in the transition.
14840 ELM_TRANSIT_TWEEN_MODE_LINEAR, /**< Constant speed */
14841 ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL, /**< Starts slow, increase speed
14842 over time, then decrease again
14844 ELM_TRANSIT_TWEEN_MODE_DECELERATE, /**< Starts fast and decrease
14846 ELM_TRANSIT_TWEEN_MODE_ACCELERATE /**< Starts slow and increase speed
14848 } Elm_Transit_Tween_Mode;
14851 * @enum Elm_Transit_Effect_Flip_Axis
14853 * The axis where flip effect should be applied.
14857 ELM_TRANSIT_EFFECT_FLIP_AXIS_X, /**< Flip on X axis */
14858 ELM_TRANSIT_EFFECT_FLIP_AXIS_Y /**< Flip on Y axis */
14859 } Elm_Transit_Effect_Flip_Axis;
14861 * @enum Elm_Transit_Effect_Wipe_Dir
14863 * The direction where the wipe effect should occur.
14867 ELM_TRANSIT_EFFECT_WIPE_DIR_LEFT, /**< Wipe to the left */
14868 ELM_TRANSIT_EFFECT_WIPE_DIR_RIGHT, /**< Wipe to the right */
14869 ELM_TRANSIT_EFFECT_WIPE_DIR_UP, /**< Wipe up */
14870 ELM_TRANSIT_EFFECT_WIPE_DIR_DOWN /**< Wipe down */
14871 } Elm_Transit_Effect_Wipe_Dir;
14872 /** @enum Elm_Transit_Effect_Wipe_Type
14874 * Whether the wipe effect should show or hide the object.
14878 ELM_TRANSIT_EFFECT_WIPE_TYPE_HIDE, /**< Hide the object during the
14880 ELM_TRANSIT_EFFECT_WIPE_TYPE_SHOW /**< Show the object during the
14882 } Elm_Transit_Effect_Wipe_Type;
14885 * @typedef Elm_Transit
14887 * The Transit created with elm_transit_add(). This type has the information
14888 * about the objects which the transition will be applied, and the
14889 * transition effects that will be used. It also contains info about
14890 * duration, number of repetitions, auto-reverse, etc.
14892 typedef struct _Elm_Transit Elm_Transit;
14893 typedef void Elm_Transit_Effect;
14895 * @typedef Elm_Transit_Effect_Transition_Cb
14897 * Transition callback called for this effect on each transition iteration.
14899 typedef void (*Elm_Transit_Effect_Transition_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit, double progress);
14901 * Elm_Transit_Effect_End_Cb
14903 * Transition callback called for this effect when the transition is over.
14905 typedef void (*Elm_Transit_Effect_End_Cb) (Elm_Transit_Effect *effect, Elm_Transit *transit);
14908 * Elm_Transit_Del_Cb
14910 * A callback called when the transit is deleted.
14912 typedef void (*Elm_Transit_Del_Cb) (void *data, Elm_Transit *transit);
14917 * @note Is not necessary to delete the transit object, it will be deleted at
14918 * the end of its operation.
14919 * @note The transit will start playing when the program enter in the main loop, is not
14920 * necessary to give a start to the transit.
14922 * @return The transit object.
14926 EAPI Elm_Transit *elm_transit_add(void);
14929 * Stops the animation and delete the @p transit object.
14931 * Call this function if you wants to stop the animation before the duration
14932 * time. Make sure the @p transit object is still alive with
14933 * elm_transit_del_cb_set() function.
14934 * All added effects will be deleted, calling its repective data_free_cb
14935 * functions. The function setted by elm_transit_del_cb_set() will be called.
14937 * @see elm_transit_del_cb_set()
14939 * @param transit The transit object to be deleted.
14942 * @warning Just call this function if you are sure the transit is alive.
14944 EAPI void elm_transit_del(Elm_Transit *transit) EINA_ARG_NONNULL(1);
14947 * Add a new effect to the transit.
14949 * @note The cb function and the data are the key to the effect. If you try to
14950 * add an already added effect, nothing is done.
14951 * @note After the first addition of an effect in @p transit, if its
14952 * effect list become empty again, the @p transit will be killed by
14953 * elm_transit_del(transit) function.
14957 * Elm_Transit *transit = elm_transit_add();
14958 * elm_transit_effect_add(transit,
14959 * elm_transit_effect_blend_op,
14960 * elm_transit_effect_blend_context_new(),
14961 * elm_transit_effect_blend_context_free);
14964 * @param transit The transit object.
14965 * @param transition_cb The operation function. It is called when the
14966 * animation begins, it is the function that actually performs the animation.
14967 * It is called with the @p data, @p transit and the time progression of the
14968 * animation (a double value between 0.0 and 1.0).
14969 * @param effect The context data of the effect.
14970 * @param end_cb The function to free the context data, it will be called
14971 * at the end of the effect, it must finalize the animation and free the
14975 * @warning The transit free the context data at the and of the transition with
14976 * the data_free_cb function, do not use the context data in another transit.
14978 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);
14981 * Delete an added effect.
14983 * This function will remove the effect from the @p transit, calling the
14984 * data_free_cb to free the @p data.
14986 * @see elm_transit_effect_add()
14988 * @note If the effect is not found, nothing is done.
14989 * @note If the effect list become empty, this function will call
14990 * elm_transit_del(transit), that is, it will kill the @p transit.
14992 * @param transit The transit object.
14993 * @param transition_cb The operation function.
14994 * @param effect The context data of the effect.
14998 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);
15001 * Add new object to apply the effects.
15003 * @note After the first addition of an object in @p transit, if its
15004 * object list become empty again, the @p transit will be killed by
15005 * elm_transit_del(transit) function.
15006 * @note If the @p obj belongs to another transit, the @p obj will be
15007 * removed from it and it will only belong to the @p transit. If the old
15008 * transit stays without objects, it will die.
15009 * @note When you add an object into the @p transit, its state from
15010 * evas_object_pass_events_get(obj) is saved, and it is applied when the
15011 * transit ends, if you change this state whith evas_object_pass_events_set()
15012 * after add the object, this state will change again when @p transit stops to
15015 * @param transit The transit object.
15016 * @param obj Object to be animated.
15019 * @warning It is not allowed to add a new object after transit begins to go.
15021 EAPI void elm_transit_object_add(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
15024 * Removes an added object from the transit.
15026 * @note If the @p obj is not in the @p transit, nothing is done.
15027 * @note If the list become empty, this function will call
15028 * elm_transit_del(transit), that is, it will kill the @p transit.
15030 * @param transit The transit object.
15031 * @param obj Object to be removed from @p transit.
15034 * @warning It is not allowed to remove objects after transit begins to go.
15036 EAPI void elm_transit_object_remove(Elm_Transit *transit, Evas_Object *obj) EINA_ARG_NONNULL(1, 2);
15039 * Get the objects of the transit.
15041 * @param transit The transit object.
15042 * @return a Eina_List with the objects from the transit.
15046 EAPI const Eina_List *elm_transit_objects_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15049 * Enable/disable keeping up the objects states.
15050 * If it is not kept, the objects states will be reset when transition ends.
15052 * @note @p transit can not be NULL.
15053 * @note One state includes geometry, color, map data.
15055 * @param transit The transit object.
15056 * @param state_keep Keeping or Non Keeping.
15060 EAPI void elm_transit_objects_final_state_keep_set(Elm_Transit *transit, Eina_Bool state_keep) EINA_ARG_NONNULL(1);
15063 * Get a value whether the objects states will be reset or not.
15065 * @note @p transit can not be NULL
15067 * @see elm_transit_objects_final_state_keep_set()
15069 * @param transit The transit object.
15070 * @return EINA_TRUE means the states of the objects will be reset.
15071 * If @p transit is NULL, EINA_FALSE is returned
15075 EAPI Eina_Bool elm_transit_objects_final_state_keep_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15078 * Set the event enabled when transit is operating.
15080 * If @p enabled is EINA_TRUE, the objects of the transit will receives
15081 * events from mouse and keyboard during the animation.
15082 * @note When you add an object with elm_transit_object_add(), its state from
15083 * evas_object_pass_events_get(obj) is saved, and it is applied when the
15084 * transit ends, if you change this state with evas_object_pass_events_set()
15085 * after adding the object, this state will change again when @p transit stops
15088 * @param transit The transit object.
15089 * @param enabled Events are received when enabled is @c EINA_TRUE, and
15090 * ignored otherwise.
15094 EAPI void elm_transit_event_enabled_set(Elm_Transit *transit, Eina_Bool enabled) EINA_ARG_NONNULL(1);
15097 * Get the value of event enabled status.
15099 * @see elm_transit_event_enabled_set()
15101 * @param transit The Transit object
15102 * @return EINA_TRUE, when event is enabled. If @p transit is NULL
15103 * EINA_FALSE is returned
15107 EAPI Eina_Bool elm_transit_event_enabled_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15110 * Set the user-callback function when the transit is deleted.
15112 * @note Using this function twice will overwrite the first function setted.
15113 * @note the @p transit object will be deleted after call @p cb function.
15115 * @param transit The transit object.
15116 * @param cb Callback function pointer. This function will be called before
15117 * the deletion of the transit.
15118 * @param data Callback funtion user data. It is the @p op parameter.
15122 EAPI void elm_transit_del_cb_set(Elm_Transit *transit, Elm_Transit_Del_Cb cb, void *data) EINA_ARG_NONNULL(1);
15125 * Set reverse effect automatically.
15127 * If auto reverse is setted, after running the effects with the progress
15128 * parameter from 0 to 1, it will call the effecs again with the progress
15129 * from 1 to 0. The transit will last for a time iqual to (2 * duration * repeat),
15130 * where the duration was setted with the function elm_transit_add and
15131 * the repeat with the function elm_transit_repeat_times_set().
15133 * @param transit The transit object.
15134 * @param reverse EINA_TRUE means the auto_reverse is on.
15138 EAPI void elm_transit_auto_reverse_set(Elm_Transit *transit, Eina_Bool reverse) EINA_ARG_NONNULL(1);
15141 * Get if the auto reverse is on.
15143 * @see elm_transit_auto_reverse_set()
15145 * @param transit The transit object.
15146 * @return EINA_TRUE means auto reverse is on. If @p transit is NULL
15147 * EINA_FALSE is returned
15151 EAPI Eina_Bool elm_transit_auto_reverse_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15154 * Set the transit repeat count. Effect will be repeated by repeat count.
15156 * This function sets the number of repetition the transit will run after
15157 * the first one, that is, if @p repeat is 1, the transit will run 2 times.
15158 * If the @p repeat is a negative number, it will repeat infinite times.
15160 * @note If this function is called during the transit execution, the transit
15161 * will run @p repeat times, ignoring the times it already performed.
15163 * @param transit The transit object
15164 * @param repeat Repeat count
15168 EAPI void elm_transit_repeat_times_set(Elm_Transit *transit, int repeat) EINA_ARG_NONNULL(1);
15171 * Get the transit repeat count.
15173 * @see elm_transit_repeat_times_set()
15175 * @param transit The Transit object.
15176 * @return The repeat count. If @p transit is NULL
15181 EAPI int elm_transit_repeat_times_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15184 * Set the transit animation acceleration type.
15186 * This function sets the tween mode of the transit that can be:
15187 * ELM_TRANSIT_TWEEN_MODE_LINEAR - The default mode.
15188 * ELM_TRANSIT_TWEEN_MODE_SINUSOIDAL - Starts in accelerate mode and ends decelerating.
15189 * ELM_TRANSIT_TWEEN_MODE_DECELERATE - The animation will be slowed over time.
15190 * ELM_TRANSIT_TWEEN_MODE_ACCELERATE - The animation will accelerate over time.
15192 * @param transit The transit object.
15193 * @param tween_mode The tween type.
15197 EAPI void elm_transit_tween_mode_set(Elm_Transit *transit, Elm_Transit_Tween_Mode tween_mode) EINA_ARG_NONNULL(1);
15200 * Get the transit animation acceleration type.
15202 * @note @p transit can not be NULL
15204 * @param transit The transit object.
15205 * @return The tween type. If @p transit is NULL
15206 * ELM_TRANSIT_TWEEN_MODE_LINEAR is returned.
15210 EAPI Elm_Transit_Tween_Mode elm_transit_tween_mode_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15213 * Set the transit animation time
15215 * @note @p transit can not be NULL
15217 * @param transit The transit object.
15218 * @param duration The animation time.
15222 EAPI void elm_transit_duration_set(Elm_Transit *transit, double duration) EINA_ARG_NONNULL(1);
15225 * Get the transit animation time
15227 * @note @p transit can not be NULL
15229 * @param transit The transit object.
15231 * @return The transit animation time.
15235 EAPI double elm_transit_duration_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15238 * Starts the transition.
15239 * Once this API is called, the transit begins to measure the time.
15241 * @note @p transit can not be NULL
15243 * @param transit The transit object.
15247 EAPI void elm_transit_go(Elm_Transit *transit) EINA_ARG_NONNULL(1);
15250 * Pause/Resume the transition.
15252 * If you call elm_transit_go again, the transit will be started from the
15253 * beginning, and will be unpaused.
15255 * @note @p transit can not be NULL
15257 * @param transit The transit object.
15258 * @param paused Whether the transition should be paused or not.
15262 EAPI void elm_transit_paused_set(Elm_Transit *transit, Eina_Bool paused) EINA_ARG_NONNULL(1);
15265 * Get the value of paused status.
15267 * @see elm_transit_paused_set()
15269 * @note @p transit can not be NULL
15271 * @param transit The transit object.
15272 * @return EINA_TRUE means transition is paused. If @p transit is NULL
15273 * EINA_FALSE is returned
15277 EAPI Eina_Bool elm_transit_paused_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15280 * Get the time progression of the animation (a double value between 0.0 and 1.0).
15282 * The value returned is a fraction (current time / total time). It
15283 * represents the progression position relative to the total.
15285 * @note @p transit can not be NULL
15287 * @param transit The transit object.
15289 * @return The time progression value. If @p transit is NULL
15294 EAPI double elm_transit_progress_value_get(const Elm_Transit *transit) EINA_ARG_NONNULL(1);
15297 * Makes the chain relationship between two transits.
15299 * @note @p transit can not be NULL. Transit would have multiple chain transits.
15300 * @note @p chain_transit can not be NULL. Chain transits could be chained to the only one transit.
15302 * @param transit The transit object.
15303 * @param chain_transit The chain transit object. This transit will be operated
15304 * after transit is done.
15306 * This function adds @p chain_transit transition to a chain after the @p
15307 * transit, and will be started as soon as @p transit ends. See @ref
15308 * transit_example_02_explained for a full example.
15312 EAPI void elm_transit_chain_transit_add(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1, 2);
15315 * Cut off the chain relationship between two transits.
15317 * @note @p transit can not be NULL. Transit would have the chain relationship with @p chain transit.
15318 * @note @p chain_transit can not be NULL. Chain transits should be chained to the @p transit.
15320 * @param transit The transit object.
15321 * @param chain_transit The chain transit object.
15323 * This function remove the @p chain_transit transition from the @p transit.
15327 EAPI void elm_transit_chain_transit_del(Elm_Transit *transit, Elm_Transit *chain_transit) EINA_ARG_NONNULL(1,2);
15330 * Get the current chain transit list.
15332 * @note @p transit can not be NULL.
15334 * @param transit The transit object.
15335 * @return chain transit list.
15339 EAPI Eina_List *elm_transit_chain_transits_get(const Elm_Transit *transit);
15342 * Add the Resizing Effect to Elm_Transit.
15344 * @note This API is one of the facades. It creates resizing effect context
15345 * and add it's required APIs to elm_transit_effect_add.
15347 * @see elm_transit_effect_add()
15349 * @param transit Transit object.
15350 * @param from_w Object width size when effect begins.
15351 * @param from_h Object height size when effect begins.
15352 * @param to_w Object width size when effect ends.
15353 * @param to_h Object height size when effect ends.
15354 * @return Resizing effect context data.
15358 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);
15361 * Add the Translation Effect to Elm_Transit.
15363 * @note This API is one of the facades. It creates translation effect context
15364 * and add it's required APIs to elm_transit_effect_add.
15366 * @see elm_transit_effect_add()
15368 * @param transit Transit object.
15369 * @param from_dx X Position variation when effect begins.
15370 * @param from_dy Y Position variation when effect begins.
15371 * @param to_dx X Position variation when effect ends.
15372 * @param to_dy Y Position variation when effect ends.
15373 * @return Translation effect context data.
15376 * @warning It is highly recommended just create a transit with this effect when
15377 * the window that the objects of the transit belongs has already been created.
15378 * This is because this effect needs the geometry information about the objects,
15379 * and if the window was not created yet, it can get a wrong information.
15381 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);
15384 * Add the Zoom Effect to Elm_Transit.
15386 * @note This API is one of the facades. It creates zoom effect context
15387 * and add it's required APIs to elm_transit_effect_add.
15389 * @see elm_transit_effect_add()
15391 * @param transit Transit object.
15392 * @param from_rate Scale rate when effect begins (1 is current rate).
15393 * @param to_rate Scale rate when effect ends.
15394 * @return Zoom effect context data.
15397 * @warning It is highly recommended just create a transit with this effect when
15398 * the window that the objects of the transit belongs has already been created.
15399 * This is because this effect needs the geometry information about the objects,
15400 * and if the window was not created yet, it can get a wrong information.
15402 EAPI Elm_Transit_Effect *elm_transit_effect_zoom_add(Elm_Transit *transit, float from_rate, float to_rate);
15405 * Add the Flip Effect to Elm_Transit.
15407 * @note This API is one of the facades. It creates flip effect context
15408 * and add it's required APIs to elm_transit_effect_add.
15409 * @note This effect is applied to each pair of objects in the order they are listed
15410 * in the transit list of objects. The first object in the pair will be the
15411 * "front" object and the second will be the "back" object.
15413 * @see elm_transit_effect_add()
15415 * @param transit Transit object.
15416 * @param axis Flipping Axis(X or Y).
15417 * @param cw Flipping Direction. EINA_TRUE is clock-wise.
15418 * @return Flip effect context data.
15421 * @warning It is highly recommended just create a transit with this effect when
15422 * the window that the objects of the transit belongs has already been created.
15423 * This is because this effect needs the geometry information about the objects,
15424 * and if the window was not created yet, it can get a wrong information.
15426 EAPI Elm_Transit_Effect *elm_transit_effect_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
15429 * Add the Resizable Flip Effect to Elm_Transit.
15431 * @note This API is one of the facades. It creates resizable flip effect context
15432 * and add it's required APIs to elm_transit_effect_add.
15433 * @note This effect is applied to each pair of objects in the order they are listed
15434 * in the transit list of objects. The first object in the pair will be the
15435 * "front" object and the second will be the "back" object.
15437 * @see elm_transit_effect_add()
15439 * @param transit Transit object.
15440 * @param axis Flipping Axis(X or Y).
15441 * @param cw Flipping Direction. EINA_TRUE is clock-wise.
15442 * @return Resizable flip effect context data.
15445 * @warning It is highly recommended just create a transit with this effect when
15446 * the window that the objects of the transit belongs has already been created.
15447 * This is because this effect needs the geometry information about the objects,
15448 * and if the window was not created yet, it can get a wrong information.
15450 EAPI Elm_Transit_Effect *elm_transit_effect_resizable_flip_add(Elm_Transit *transit, Elm_Transit_Effect_Flip_Axis axis, Eina_Bool cw);
15453 * Add the Wipe Effect to Elm_Transit.
15455 * @note This API is one of the facades. It creates wipe effect context
15456 * and add it's required APIs to elm_transit_effect_add.
15458 * @see elm_transit_effect_add()
15460 * @param transit Transit object.
15461 * @param type Wipe type. Hide or show.
15462 * @param dir Wipe Direction.
15463 * @return Wipe effect context data.
15466 * @warning It is highly recommended just create a transit with this effect when
15467 * the window that the objects of the transit belongs has already been created.
15468 * This is because this effect needs the geometry information about the objects,
15469 * and if the window was not created yet, it can get a wrong information.
15471 EAPI Elm_Transit_Effect *elm_transit_effect_wipe_add(Elm_Transit *transit, Elm_Transit_Effect_Wipe_Type type, Elm_Transit_Effect_Wipe_Dir dir);
15474 * Add the Color Effect to Elm_Transit.
15476 * @note This API is one of the facades. It creates color effect context
15477 * and add it's required APIs to elm_transit_effect_add.
15479 * @see elm_transit_effect_add()
15481 * @param transit Transit object.
15482 * @param from_r RGB R when effect begins.
15483 * @param from_g RGB G when effect begins.
15484 * @param from_b RGB B when effect begins.
15485 * @param from_a RGB A when effect begins.
15486 * @param to_r RGB R when effect ends.
15487 * @param to_g RGB G when effect ends.
15488 * @param to_b RGB B when effect ends.
15489 * @param to_a RGB A when effect ends.
15490 * @return Color effect context data.
15494 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);
15497 * Add the Fade Effect to Elm_Transit.
15499 * @note This API is one of the facades. It creates fade effect context
15500 * and add it's required APIs to elm_transit_effect_add.
15501 * @note This effect is applied to each pair of objects in the order they are listed
15502 * in the transit list of objects. The first object in the pair will be the
15503 * "before" object and the second will be the "after" object.
15505 * @see elm_transit_effect_add()
15507 * @param transit Transit object.
15508 * @return Fade effect context data.
15511 * @warning It is highly recommended just create a transit with this effect when
15512 * the window that the objects of the transit belongs has already been created.
15513 * This is because this effect needs the color information about the objects,
15514 * and if the window was not created yet, it can get a wrong information.
15516 EAPI Elm_Transit_Effect *elm_transit_effect_fade_add(Elm_Transit *transit);
15519 * Add the Blend Effect to Elm_Transit.
15521 * @note This API is one of the facades. It creates blend effect context
15522 * and add it's required APIs to elm_transit_effect_add.
15523 * @note This effect is applied to each pair of objects in the order they are listed
15524 * in the transit list of objects. The first object in the pair will be the
15525 * "before" object and the second will be the "after" object.
15527 * @see elm_transit_effect_add()
15529 * @param transit Transit object.
15530 * @return Blend effect context data.
15533 * @warning It is highly recommended just create a transit with this effect when
15534 * the window that the objects of the transit belongs has already been created.
15535 * This is because this effect needs the color information about the objects,
15536 * and if the window was not created yet, it can get a wrong information.
15538 EAPI Elm_Transit_Effect *elm_transit_effect_blend_add(Elm_Transit *transit);
15541 * Add the Rotation Effect to Elm_Transit.
15543 * @note This API is one of the facades. It creates rotation effect context
15544 * and add it's required APIs to elm_transit_effect_add.
15546 * @see elm_transit_effect_add()
15548 * @param transit Transit object.
15549 * @param from_degree Degree when effect begins.
15550 * @param to_degree Degree when effect is ends.
15551 * @return Rotation effect context data.
15554 * @warning It is highly recommended just create a transit with this effect when
15555 * the window that the objects of the transit belongs has already been created.
15556 * This is because this effect needs the geometry information about the objects,
15557 * and if the window was not created yet, it can get a wrong information.
15559 EAPI Elm_Transit_Effect *elm_transit_effect_rotation_add(Elm_Transit *transit, float from_degree, float to_degree);
15562 * Add the ImageAnimation Effect to Elm_Transit.
15564 * @note This API is one of the facades. It creates image animation effect context
15565 * and add it's required APIs to elm_transit_effect_add.
15566 * The @p images parameter is a list images paths. This list and
15567 * its contents will be deleted at the end of the effect by
15568 * elm_transit_effect_image_animation_context_free() function.
15572 * char buf[PATH_MAX];
15573 * Eina_List *images = NULL;
15574 * Elm_Transit *transi = elm_transit_add();
15576 * snprintf(buf, sizeof(buf), "%s/images/icon_11.png", PACKAGE_DATA_DIR);
15577 * images = eina_list_append(images, eina_stringshare_add(buf));
15579 * snprintf(buf, sizeof(buf), "%s/images/logo_small.png", PACKAGE_DATA_DIR);
15580 * images = eina_list_append(images, eina_stringshare_add(buf));
15581 * elm_transit_effect_image_animation_add(transi, images);
15585 * @see elm_transit_effect_add()
15587 * @param transit Transit object.
15588 * @param images Eina_List of images file paths. This list and
15589 * its contents will be deleted at the end of the effect by
15590 * elm_transit_effect_image_animation_context_free() function.
15591 * @return Image Animation effect context data.
15595 EAPI Elm_Transit_Effect *elm_transit_effect_image_animation_add(Elm_Transit *transit, Eina_List *images);
15601 typedef struct _Elm_Store Elm_Store;
15602 typedef struct _Elm_Store_DBsystem Elm_Store_DBsystem;
15603 typedef struct _Elm_Store_Filesystem Elm_Store_Filesystem;
15604 typedef struct _Elm_Store_Item Elm_Store_Item;
15605 typedef struct _Elm_Store_Item_DBsystem Elm_Store_Item_DBsystem;
15606 typedef struct _Elm_Store_Item_Filesystem Elm_Store_Item_Filesystem;
15607 typedef struct _Elm_Store_Item_Info Elm_Store_Item_Info;
15608 typedef struct _Elm_Store_Item_Info_Filesystem Elm_Store_Item_Info_Filesystem;
15609 typedef struct _Elm_Store_Item_Mapping Elm_Store_Item_Mapping;
15610 typedef struct _Elm_Store_Item_Mapping_Empty Elm_Store_Item_Mapping_Empty;
15611 typedef struct _Elm_Store_Item_Mapping_Icon Elm_Store_Item_Mapping_Icon;
15612 typedef struct _Elm_Store_Item_Mapping_Photo Elm_Store_Item_Mapping_Photo;
15613 typedef struct _Elm_Store_Item_Mapping_Custom Elm_Store_Item_Mapping_Custom;
15615 typedef Eina_Bool (*Elm_Store_Item_List_Cb) (void *data, Elm_Store_Item_Info *info);
15616 typedef void (*Elm_Store_Item_Fetch_Cb) (void *data, Elm_Store_Item *sti, Elm_Store_Item_Info *info);
15617 typedef void (*Elm_Store_Item_Unfetch_Cb) (void *data, Elm_Store_Item *sti, Elm_Store_Item_Info *info);
15618 typedef void (*Elm_Store_Item_Select_Cb) (void *data, Elm_Store_Item *sti);
15619 typedef int (*Elm_Store_Item_Sort_Cb) (void *data, Elm_Store_Item_Info *info1, Elm_Store_Item_Info *info2);
15620 typedef void (*Elm_Store_Item_Free_Cb) (void *data, Elm_Store_Item_Info *info);
15621 typedef void *(*Elm_Store_Item_Mapping_Cb) (void *data, Elm_Store_Item *sti, const char *part);
15625 ELM_STORE_ITEM_MAPPING_NONE = 0,
15626 ELM_STORE_ITEM_MAPPING_LABEL, // const char * -> label
15627 ELM_STORE_ITEM_MAPPING_STATE, // Eina_Bool -> state
15628 ELM_STORE_ITEM_MAPPING_ICON, // char * -> icon path
15629 ELM_STORE_ITEM_MAPPING_PHOTO, // char * -> photo path
15630 ELM_STORE_ITEM_MAPPING_CUSTOM, // item->custom(it->data, it, part) -> void * (-> any)
15631 // can add more here as needed by common apps
15632 ELM_STORE_ITEM_MAPPING_LAST
15633 } Elm_Store_Item_Mapping_Type;
15635 struct _Elm_Store_Item_Mapping_Icon
15637 // FIXME: allow edje file icons
15639 Elm_Icon_Lookup_Order lookup_order;
15640 Eina_Bool standard_name : 1;
15641 Eina_Bool no_scale : 1;
15642 Eina_Bool smooth : 1;
15643 Eina_Bool scale_up : 1;
15644 Eina_Bool scale_down : 1;
15647 struct _Elm_Store_Item_Mapping_Empty
15652 struct _Elm_Store_Item_Mapping_Photo
15657 struct _Elm_Store_Item_Mapping_Custom
15659 Elm_Store_Item_Mapping_Cb func;
15662 struct _Elm_Store_Item_Mapping
15664 Elm_Store_Item_Mapping_Type type;
15669 Elm_Store_Item_Mapping_Empty empty;
15670 Elm_Store_Item_Mapping_Icon icon;
15671 Elm_Store_Item_Mapping_Photo photo;
15672 Elm_Store_Item_Mapping_Custom custom;
15673 // add more types here
15677 struct _Elm_Store_Item_Info
15682 Eina_Bool rec_item;
15683 int pre_group_index;
15685 Elm_Genlist_Item_Class *item_class;
15686 const Elm_Store_Item_Mapping *mapping;
15691 struct _Elm_Store_Item_Info_Filesystem
15693 Elm_Store_Item_Info base;
15697 #define ELM_STORE_ITEM_MAPPING_END { ELM_STORE_ITEM_MAPPING_NONE, NULL, 0, { .empty = { EINA_TRUE } } }
15698 #define ELM_STORE_ITEM_MAPPING_OFFSET(st, it) offsetof(st, it)
15700 EAPI Elm_Store *elm_store_dbsystem_new(void);
15701 EAPI void elm_store_item_count_set(Elm_Store *st, int count) EINA_ARG_NONNULL(1);
15702 EAPI void elm_store_item_select_func_set(Elm_Store *st, Elm_Store_Item_Select_Cb func, const void *data) EINA_ARG_NONNULL(1);
15703 EAPI void elm_store_item_sort_func_set(Elm_Store *st, Elm_Store_Item_Sort_Cb func, const void *data) EINA_ARG_NONNULL(1);
15704 EAPI void elm_store_item_free_func_set(Elm_Store *st, Elm_Store_Item_Free_Cb func, const void *data) EINA_ARG_NONNULL(1);
15705 EAPI int elm_store_item_data_index_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15706 EAPI void *elm_store_dbsystem_db_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15707 EAPI void elm_store_dbsystem_db_set(Elm_Store *store, void *pDB) EINA_ARG_NONNULL(1);
15708 EAPI int elm_store_item_index_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15709 EAPI Elm_Store_Item *elm_store_item_add(Elm_Store *st, Elm_Store_Item_Info *info) EINA_ARG_NONNULL(1);
15710 EAPI void elm_store_item_update(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15711 EAPI void elm_store_visible_items_update(Elm_Store *st) EINA_ARG_NONNULL(1);
15712 EAPI void elm_store_item_del(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15713 EAPI void elm_store_free(Elm_Store *st);
15714 EAPI Elm_Store *elm_store_filesystem_new(void);
15715 EAPI void elm_store_filesystem_directory_set(Elm_Store *st, const char *dir) EINA_ARG_NONNULL(1);
15716 EAPI const char *elm_store_filesystem_directory_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
15717 EAPI const char *elm_store_item_filesystem_path_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15718 EAPI void elm_store_target_genlist_set(Elm_Store *st, Evas_Object *obj) EINA_ARG_NONNULL(1);
15719 EAPI void elm_store_cache_set(Elm_Store *st, int max) EINA_ARG_NONNULL(1);
15720 EAPI int elm_store_cache_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
15721 EAPI void elm_store_list_func_set(Elm_Store *st, Elm_Store_Item_List_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
15722 EAPI void elm_store_fetch_func_set(Elm_Store *st, Elm_Store_Item_Fetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
15723 EAPI void elm_store_fetch_thread_set(Elm_Store *st, Eina_Bool use_thread) EINA_ARG_NONNULL(1);
15724 EAPI Eina_Bool elm_store_fetch_thread_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
15725 EAPI void elm_store_unfetch_func_set(Elm_Store *st, Elm_Store_Item_Unfetch_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
15726 EAPI void elm_store_sorted_set(Elm_Store *st, Eina_Bool sorted) EINA_ARG_NONNULL(1);
15727 EAPI Eina_Bool elm_store_sorted_get(const Elm_Store *st) EINA_ARG_NONNULL(1);
15728 EAPI void elm_store_item_data_set(Elm_Store_Item *sti, void *data) EINA_ARG_NONNULL(1);
15729 EAPI void *elm_store_item_data_get(Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15730 EAPI const Elm_Store *elm_store_item_store_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15731 EAPI const Elm_Genlist_Item *elm_store_item_genlist_item_get(const Elm_Store_Item *sti) EINA_ARG_NONNULL(1);
15733 /* SegmentControl */
15734 typedef struct _Elm_Segment_Item Elm_Segment_Item;
15735 EAPI Evas_Object *elm_segment_control_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
15736 EAPI Elm_Segment_Item *elm_segment_control_item_add(Evas_Object *obj, Evas_Object *icon, const char *label) EINA_ARG_NONNULL(1);
15737 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);
15738 EAPI void elm_segment_control_item_del(Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
15739 EAPI void elm_segment_control_item_del_at(Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
15740 EAPI int elm_segment_control_item_count_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15741 EAPI Elm_Segment_Item *elm_segment_control_item_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
15742 EAPI const char *elm_segment_control_item_label_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
15743 EAPI void elm_segment_control_item_label_set(Elm_Segment_Item* it, const char* label) EINA_ARG_NONNULL(1);
15744 EAPI Evas_Object *elm_segment_control_item_icon_get(const Evas_Object *obj, int index) EINA_ARG_NONNULL(1);
15745 EAPI void elm_segment_control_item_icon_set(Elm_Segment_Item *it, Evas_Object *icon) EINA_ARG_NONNULL(1);
15746 EAPI int elm_segment_control_item_index_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
15747 EAPI Evas_Object *elm_segment_control_item_object_get(const Elm_Segment_Item *it) EINA_ARG_NONNULL(1);
15748 EAPI Elm_Segment_Item *elm_segment_control_item_selected_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
15749 EAPI void elm_segment_control_item_selected_set(Elm_Segment_Item *it, Eina_Bool select) EINA_ARG_NONNULL(1);
15750 /* smart callbacks called:
15751 * "changed" -when the user clicks on a segment item which is not previously
15752 * selected and get selected. The event_info parameter is the
15753 * segment item index.
15756 EAPI Evas_Object *elm_grid_add(Evas_Object *parent);
15757 EAPI void elm_grid_size_set(Evas_Object *obj, int w, int h);
15758 EAPI void elm_grid_size_get(Evas_Object *obj, int *w, int *h);
15759 EAPI void elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h);
15760 EAPI void elm_grid_unpack(Evas_Object *obj, Evas_Object *subobj);
15761 EAPI void elm_grid_clear(Evas_Object *obj, Eina_Bool clear);
15762 EAPI void elm_grid_pack_set(Evas_Object *subobj, int x, int y, int w, int h);
15763 EAPI void elm_grid_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h);
15765 EAPI Evas_Object *elm_genscroller_add(Evas_Object *parent);
15766 EAPI void elm_genscroller_world_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h);
15768 EAPI Evas_Object *elm_video_add(Evas_Object *parent);
15769 EAPI void elm_video_file_set(Evas_Object *video, const char *filename);
15770 EAPI void elm_video_uri_set(Evas_Object *video, const char *uri);
15771 EAPI Evas_Object *elm_video_emotion_get(Evas_Object *video);
15772 EAPI void elm_video_play(Evas_Object *video);
15773 EAPI void elm_video_pause(Evas_Object *video);
15774 EAPI void elm_video_stop(Evas_Object *video);
15775 EAPI Eina_Bool elm_video_is_playing(Evas_Object *video);
15776 EAPI Eina_Bool elm_video_is_seekable(Evas_Object *video);
15777 EAPI Eina_Bool elm_video_audio_mute_get(Evas_Object *video);
15778 EAPI void elm_video_audio_mute_set(Evas_Object *video, Eina_Bool mute);
15779 EAPI double elm_video_audio_level_get(Evas_Object *video);
15780 EAPI void elm_video_audio_level_set(Evas_Object *video, double volume);
15781 EAPI double elm_video_play_position_get(Evas_Object *video);
15782 EAPI void elm_video_play_position_set(Evas_Object *video, double position);
15783 EAPI double elm_video_play_length_get(Evas_Object *video);
15784 EAPI void elm_video_remember_position_set(Evas_Object *video, Eina_Bool remember);
15785 EAPI Eina_Bool elm_video_remember_position_get(Evas_Object *video);
15786 EAPI const char *elm_video_title_get(Evas_Object *video);
15788 EAPI Evas_Object *elm_player_add(Evas_Object *parent);
15789 EAPI void elm_player_video_set(Evas_Object *player, Evas_Object *video);
15791 // FIXME: incomplete - carousel. don't use this until this comment is removed
15792 typedef struct _Elm_Carousel_Item Elm_Carousel_Item;
15793 EAPI Evas_Object *elm_carousel_add(Evas_Object *parent);
15794 EAPI Elm_Carousel_Item *elm_carousel_item_add(Evas_Object *obj, Evas_Object *icon, const char *label, Evas_Smart_Cb func, const void *data);
15795 EAPI void elm_carousel_item_del(Elm_Carousel_Item *item);
15796 EAPI void elm_carousel_item_select(Elm_Carousel_Item *item);
15797 /* smart callbacks called:
15798 * "clicked" - when the user clicks on a carousel item and becomes selected
15803 typedef enum _Elm_Datefield_ItemType
15805 ELM_DATEFIELD_YEAR = 0,
15806 ELM_DATEFIELD_MONTH,
15807 ELM_DATEFIELD_DATE,
15808 ELM_DATEFIELD_HOUR,
15809 ELM_DATEFIELD_MINUTE,
15811 } Elm_Datefield_ItemType;
15813 EAPI Evas_Object *elm_datefield_add(Evas_Object *parent);
15814 EAPI void elm_datefield_format_set(Evas_Object *obj, const char *fmt);
15815 EAPI char *elm_datefield_format_get(const Evas_Object *obj);
15816 EAPI void elm_datefield_item_enabled_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, Eina_Bool enable);
15817 EAPI Eina_Bool elm_datefield_item_enabled_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
15818 EAPI void elm_datefield_item_value_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, int value);
15819 EAPI int elm_datefield_item_value_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
15820 EAPI void elm_datefield_item_min_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, int value, Eina_Bool abs_limit);
15821 EAPI int elm_datefield_item_min_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
15822 EAPI Eina_Bool elm_datefield_item_min_is_absolute(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
15823 EAPI void elm_datefield_item_max_set(Evas_Object *obj, Elm_Datefield_ItemType itemtype, int value, Eina_Bool abs_limit);
15824 EAPI int elm_datefield_item_max_get(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
15825 EAPI Eina_Bool elm_datefield_item_max_is_absolute(const Evas_Object *obj, Elm_Datefield_ItemType itemtype);
15827 /* smart callbacks called:
15828 * "changed" - when datefield value is changed, this signal is sent.
15831 ////////////////////// DEPRECATED ///////////////////////////////////
15833 typedef enum _Elm_Datefield_Layout
15835 ELM_DATEFIELD_LAYOUT_TIME,
15836 ELM_DATEFIELD_LAYOUT_DATE,
15837 ELM_DATEFIELD_LAYOUT_DATEANDTIME
15838 } Elm_Datefield_Layout;
15840 EINA_DEPRECATED EAPI void elm_datefield_layout_set(Evas_Object *obj, Elm_Datefield_Layout layout);
15841 EINA_DEPRECATED EAPI Elm_Datefield_Layout elm_datefield_layout_get(const Evas_Object *obj);
15842 EINA_DEPRECATED EAPI void elm_datefield_date_format_set(Evas_Object *obj, const char *fmt);
15843 EINA_DEPRECATED EAPI const char *elm_datefield_date_format_get(const Evas_Object *obj);
15844 EINA_DEPRECATED EAPI void elm_datefield_time_mode_set(Evas_Object *obj, Eina_Bool mode);
15845 EINA_DEPRECATED EAPI Eina_Bool elm_datefield_time_mode_get(const Evas_Object *obj);
15846 EINA_DEPRECATED EAPI void elm_datefield_date_set(Evas_Object *obj, int year, int month, int day, int hour, int min);
15847 EINA_DEPRECATED EAPI void elm_datefield_date_get(const Evas_Object *obj, int *year, int *month, int *day, int *hour, int *min);
15848 EINA_DEPRECATED EAPI Eina_Bool elm_datefield_date_max_set(Evas_Object *obj, int year, int month, int day);
15849 EINA_DEPRECATED EAPI void elm_datefield_date_max_get(const Evas_Object *obj, int *year, int *month, int *day);
15850 EINA_DEPRECATED EAPI Eina_Bool elm_datefield_date_min_set(Evas_Object *obj, int year, int month, int day);
15851 EINA_DEPRECATED EAPI void elm_datefield_date_min_get(const Evas_Object *obj, int *year, int *month, int *day);
15852 EINA_DEPRECATED EAPI void elm_datefield_input_panel_state_callback_add(Evas_Object *obj, void (*pEventCallbackFunc) (void *data, Evas_Object *obj, int value), void *data);
15853 EINA_DEPRECATED EAPI void elm_datefield_input_panel_state_callback_del(Evas_Object *obj, void (*pEventCallbackFunc) (void *data, Evas_Object *obj, int value));
15854 /////////////////////////////////////////////////////////////////////
15857 typedef enum _Elm_Popup_Response
15859 ELM_POPUP_RESPONSE_NONE = -1,
15860 ELM_POPUP_RESPONSE_TIMEOUT = -2,
15861 ELM_POPUP_RESPONSE_OK = -3,
15862 ELM_POPUP_RESPONSE_CANCEL = -4,
15863 ELM_POPUP_RESPONSE_CLOSE = -5
15864 } Elm_Popup_Response;
15866 typedef enum _Elm_Popup_Mode
15868 ELM_POPUP_TYPE_NONE = 0,
15869 ELM_POPUP_TYPE_ALERT = (1 << 0)
15872 typedef enum _Elm_Popup_Orient
15874 ELM_POPUP_ORIENT_TOP,
15875 ELM_POPUP_ORIENT_CENTER,
15876 ELM_POPUP_ORIENT_BOTTOM,
15877 ELM_POPUP_ORIENT_LEFT,
15878 ELM_POPUP_ORIENT_RIGHT,
15879 ELM_POPUP_ORIENT_TOP_LEFT,
15880 ELM_POPUP_ORIENT_TOP_RIGHT,
15881 ELM_POPUP_ORIENT_BOTTOM_LEFT,
15882 ELM_POPUP_ORIENT_BOTTOM_RIGHT
15883 } Elm_Popup_Orient;
15885 /* smart callbacks called:
15886 * "response" - when ever popup is closed, this signal is sent with appropriate response id.".
15889 EAPI Evas_Object *elm_popup_add(Evas_Object *parent);
15890 EAPI void elm_popup_desc_set(Evas_Object *obj, const char *text);
15891 EAPI const char *elm_popup_desc_get(Evas_Object *obj);
15892 EAPI void elm_popup_title_label_set(Evas_Object *obj, const char *text);
15893 EAPI const char *elm_popup_title_label_get(Evas_Object *obj);
15894 EAPI void elm_popup_title_icon_set(Evas_Object *obj, Evas_Object *icon);
15895 EAPI Evas_Object *elm_popup_title_icon_get(Evas_Object *obj);
15896 EAPI void elm_popup_content_set(Evas_Object *obj, Evas_Object *content);
15897 EAPI Evas_Object *elm_popup_content_get(Evas_Object *obj);
15898 EAPI void elm_popup_buttons_add(Evas_Object *obj,int no_of_buttons, const char *first_button_text, ...);
15899 EAPI Evas_Object *elm_popup_with_buttons_add(Evas_Object *parent, const char *title, const char *desc_text,int no_of_buttons, const char *first_button_text, ... );
15900 EAPI void elm_popup_timeout_set(Evas_Object *obj, double timeout);
15901 EAPI void elm_popup_mode_set(Evas_Object *obj, Elm_Popup_Mode mode);
15902 EAPI void elm_popup_response(Evas_Object *obj, int response_id);
15903 EAPI void elm_popup_orient_set(Evas_Object *obj, Elm_Popup_Orient orient);
15904 EAPI int elm_popup_run(Evas_Object *obj);
15906 /* NavigationBar */
15907 #define NAVIBAR_TITLEOBJ_INSTANT_HIDE "elm,state,hide,noanimate,title", "elm"
15908 #define NAVIBAR_TITLEOBJ_INSTANT_SHOW "elm,state,show,noanimate,title", "elm"
15912 ELM_NAVIGATIONBAR_FUNCTION_BUTTON1,
15913 ELM_NAVIGATIONBAR_FUNCTION_BUTTON2,
15914 ELM_NAVIGATIONBAR_FUNCTION_BUTTON3,
15915 ELM_NAVIGATIONBAR_BACK_BUTTON
15916 } Elm_Navi_Button_Type;
15918 EAPI Evas_Object *elm_navigationbar_add(Evas_Object *parent);
15919 EAPI void elm_navigationbar_push(Evas_Object *obj, const char *title, Evas_Object *fn_btn1, Evas_Object *fn_btn2, Evas_Object *fn_btn3, Evas_Object *content);
15920 EAPI void elm_navigationbar_pop(Evas_Object *obj);
15921 EAPI void elm_navigationbar_to_content_pop(Evas_Object *obj, Evas_Object *content);
15922 EAPI void elm_navigationbar_title_label_set(Evas_Object *obj, Evas_Object *content, const char *title);
15923 EAPI const char *elm_navigationbar_title_label_get(Evas_Object *obj, Evas_Object *content);
15924 EAPI void elm_navigationbar_title_object_add(Evas_Object *obj, Evas_Object *content, Evas_Object *title_obj);
15925 EAPI Evas_Object *elm_navigationbar_title_object_get(Evas_Object *obj, Evas_Object *content);
15926 EAPI Eina_List *elm_navigationbar_title_object_list_get(Evas_Object *obj, Evas_Object *content);
15927 EAPI Evas_Object *elm_navigationbar_content_top_get(Evas_Object *obj);
15928 EAPI Evas_Object *elm_navigationbar_content_bottom_get(Evas_Object *obj);
15929 EAPI void elm_navigationbar_hidden_set(Evas_Object *obj, Eina_Bool hidden);
15930 EAPI void elm_navigationbar_title_button_set(Evas_Object *obj, Evas_Object *content, Evas_Object *button, Elm_Navi_Button_Type button_type);
15931 EAPI Evas_Object *elm_navigationbar_title_button_get(Evas_Object *obj, Evas_Object *content, Elm_Navi_Button_Type button_type);
15932 EAPI const char *elm_navigationbar_subtitle_label_get(Evas_Object *obj, Evas_Object *content);
15933 EAPI void elm_navigationbar_subtitle_label_set(Evas_Object *obj, Evas_Object *content, const char *subtitle);
15934 EAPI void elm_navigationbar_title_object_list_unset(Evas_Object *obj, Evas_Object *content, Eina_List **list);
15935 EAPI void elm_navigationbar_animation_disabled_set(Evas_Object *obj, Eina_Bool disable);
15936 EAPI void elm_navigationbar_title_object_visible_set(Evas_Object *obj, Evas_Object *content, Eina_Bool visible);
15937 Eina_Bool elm_navigationbar_title_object_visible_get(Evas_Object *obj, Evas_Object *content);
15938 EAPI void elm_navigationbar_title_icon_set(Evas_Object *obj, Evas_Object *content, Evas_Object *icon);
15939 EAPI Evas_Object *elm_navigationbar_title_icon_get(Evas_Object *obj, Evas_Object *content);
15941 /* NavigationBar */
15942 #define NAVIBAR_EX_TITLEOBJ_INSTANT_HIDE "elm,state,hide,noanimate,title", "elm"
15943 #define NAVIBAR_EX_TITLEOBJ_INSTANT_SHOW "elm,state,show,noanimate,title", "elm"
15947 ELM_NAVIGATIONBAR_EX_BACK_BUTTON,
15948 ELM_NAVIGATIONBAR_EX_FUNCTION_BUTTON1,
15949 ELM_NAVIGATIONBAR_EX_FUNCTION_BUTTON2,
15950 ELM_NAVIGATIONBAR_EX_FUNCTION_BUTTON3,
15951 ELM_NAVIGATIONBAR_EX_MAX
15952 } Elm_Navi_ex_Button_Type;
15953 typedef struct _Elm_Navigationbar_ex_Item Elm_Navigationbar_ex_Item;
15955 EAPI Evas_Object *elm_navigationbar_ex_add(Evas_Object *parent);
15956 EAPI Elm_Navigationbar_ex_Item *elm_navigationbar_ex_item_push(Evas_Object *obj, Evas_Object *content, const char *item_style);
15957 EAPI void elm_navigationbar_ex_item_pop(Evas_Object *obj);
15958 EAPI void elm_navigationbar_ex_item_promote(Elm_Navigationbar_ex_Item* item);
15959 EAPI void elm_navigationbar_ex_to_item_pop(Elm_Navigationbar_ex_Item* item);
15960 EAPI void elm_navigationbar_ex_item_title_label_set(Elm_Navigationbar_ex_Item *item, const char *title);
15961 EAPI const char *elm_navigationbar_ex_item_title_label_get(Elm_Navigationbar_ex_Item* item);
15962 EAPI Elm_Navigationbar_ex_Item *elm_navigationbar_ex_item_top_get(const Evas_Object *obj);
15963 EAPI Elm_Navigationbar_ex_Item *elm_navigationbar_ex_item_bottom_get(const Evas_Object *obj);
15964 EAPI void elm_navigationbar_ex_item_title_button_set(Elm_Navigationbar_ex_Item* item, char *btn_label, Evas_Object *icon, int button_type, Evas_Smart_Cb func, const void *data);
15965 EAPI Evas_Object *elm_navigationbar_ex_item_title_button_get(Elm_Navigationbar_ex_Item* item, int button_type);
15966 EAPI void elm_navigationbar_ex_item_title_object_set(Elm_Navigationbar_ex_Item* item, Evas_Object *title_obj);
15967 EAPI Evas_Object *elm_navigationbar_ex_item_title_object_unset(Elm_Navigationbar_ex_Item* item);
15968 EAPI void elm_navigationbar_ex_item_title_hidden_set(Elm_Navigationbar_ex_Item* item, Eina_Bool hidden);
15969 EAPI Evas_Object *elm_navigationbar_ex_item_title_object_get(Elm_Navigationbar_ex_Item* item);
15970 EAPI const char *elm_navigationbar_ex_item_subtitle_label_get(Elm_Navigationbar_ex_Item* item);
15971 EAPI void elm_navigationbar_ex_item_subtitle_label_set( Elm_Navigationbar_ex_Item* item, const char *subtitle);
15972 EAPI void elm_navigationbar_ex_item_style_set(Elm_Navigationbar_ex_Item* item, const char* item_style);
15973 EAPI const char *elm_navigationbar_ex_item_style_get(Elm_Navigationbar_ex_Item* item);
15974 EAPI Evas_Object *elm_navigationbar_ex_item_content_unset(Elm_Navigationbar_ex_Item* item);
15975 EAPI Evas_Object *elm_navigationbar_ex_item_content_get(Elm_Navigationbar_ex_Item* item);
15976 EAPI void elm_navigationbar_ex_delete_on_pop_set(Evas_Object *obj, Eina_Bool del_on_pop);
15977 EAPI Evas_Object *elm_navigationbar_ex_item_icon_get(Elm_Navigationbar_ex_Item* item);
15978 EAPI void elm_navigationbar_ex_item_icon_set(Elm_Navigationbar_ex_Item* item, Evas_Object *icon);
15979 EAPI Evas_Object *elm_navigationbar_ex_item_title_button_unset(Elm_Navigationbar_ex_Item* item, int button_type);
15980 EAPI void elm_navigationbar_ex_animation_disable_set(Evas_Object *obj, Eina_Bool disable);
15981 EAPI void elm_navigationbar_ex_title_object_visible_set(Elm_Navigationbar_ex_Item* item, Eina_Bool visible);
15982 Eina_Bool elm_navigationbar_ex_title_object_visible_get(Elm_Navigationbar_ex_Item* item);
15985 #define ELM_NAVIFRAME_ITEM_CONTENT "elm.swallow.content"
15986 #define ELM_NAVIFRAME_ITEM_ICON "elm.swallow.icon"
15987 #define ELM_NAVIFRAME_ITEM_OPTIONHEADER "elm.swallow.optionheader"
15988 #define ELM_NAVIFRAME_ITEM_OPTIONHEADER2 "elm.swallow.optionheader2"
15989 #define ELM_NAVIFRAME_ITEM_TITLE_LABEL "elm.text.title"
15990 #define ELM_NAVIFRAME_ITEM_PREV_BTN "elm.swallow.prev_btn"
15991 #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_CLOSE "elm,state,optionheader,close", ""
15992 #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_OPEN "elm,state,optionheader,open", ""
15993 #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_INSTANT_CLOSE "elm,state,optionheader,instant_close", ""
15994 #define ELM_NAVIFRAME_ITEM_SIGNAL_OPTIONHEADER_INSTANT_OPEN "elm,state,optionheader,instant_open", ""
15997 * @defgroup Naviframe Naviframe
15999 * @brief Naviframe is a kind of view manager for the applications.
16001 * Naviframe provides functions to switch different pages with stack
16002 * mechanism. It means if one page(item) needs to be changed to the new one,
16003 * then naviframe would push the new page to it's internal stack. Of course,
16004 * it can be back to the previous page by popping the top page. Naviframe
16005 * provides some transition effect while the pages are switching (same as
16008 * Since each item could keep the different styles, users could keep the
16009 * same look & feel for the pages or different styles for the items in it's
16012 * Signals that you can add callback for are:
16014 * @li "transition,finished" - When the transition is finished in changing
16016 * @li "title,clicked" - User clicked title area
16018 * Default contents parts for the naviframe items that you can use for are:
16020 * @li "elm.swallow.content" - The main content of the page
16021 * @li "elm.swallow.prev_btn" - The button to go to the previous page
16022 * @li "elm.swallow.next_btn" - The button to go to the next page
16024 * Default text parts of naviframe items that you can be used are:
16026 * @li "elm.text.title" - The title label in the title area
16028 * @ref tutorial_naviframe gives a good overview of the usage of the API.
16032 * @brief Add a new Naviframe object to the parent.
16034 * @param parent Parent object
16035 * @return New object or @c NULL, if it cannot be created
16037 EAPI Evas_Object *elm_naviframe_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16039 * @brief Push a new item to the top of the naviframe stack (and show it).
16041 * @param obj The naviframe object
16042 * @param title_label The label in the title area. The name of the title
16043 * label part is "elm.text.title"
16044 * @param prev_btn The button to go to the previous item. If it is NULL,
16045 * then naviframe will create a back button automatically. The name of
16046 * the prev_btn part is "elm.swallow.prev_btn"
16047 * @param next_btn The button to go to the next item. Or It could be just an
16048 * extra function button. The name of the next_btn part is
16049 * "elm.swallow.next_btn"
16050 * @param content The main content object. The name of content part is
16051 * "elm.swallow.content"
16052 * @param item_style The current item style name. @c NULL would be default.
16053 * @return The created item or @c NULL upon failure.
16055 * The item pushed becomes one page of the naviframe, this item will be
16056 * deleted when it is popped.
16058 * @see also elm_naviframe_item_style_set()
16060 * The following styles are available for this item:
16063 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);
16065 * @brief Pop an item that is on top of the stack
16067 * @param obj The naviframe object
16068 * @return @c NULL or the content object(if the
16069 * elm_naviframe_content_preserve_on_pop_get is true).
16071 * This pops an item that is on the top(visible) of the naviframe, makes it
16072 * disappear, then deletes the item. The item that was underneath it on the
16073 * stack will become visible.
16075 * @see also elm_naviframe_content_preserve_on_pop_get()
16077 * @ingroup Naviframe
16079 EAPI Evas_Object *elm_naviframe_item_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
16081 * @brief Pop the items between the top and the above one on the given item.
16083 * @param it The naviframe item
16085 * @ingroup Naviframe
16087 EAPI void elm_naviframe_item_pop_to(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16089 * Promote an item already in the naviframe stack to the top of the stack
16091 * @param it The naviframe item
16093 * This will take the indicated item and promote it to the top of the stack
16094 * as if it had been pushed there. The item must already be inside the
16095 * naviframe stack to work.
16098 EAPI void elm_naviframe_item_promote(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16100 * @brief Delete the given item instantly.
16102 * @param it The naviframe item
16104 * This just deletes the given item from the naviframe item list instantly.
16105 * So this would not emit any signals for view transitions but just change
16106 * the current view if the given item is a top one.
16108 * @ingroup Naviframe
16110 EAPI void elm_naviframe_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16112 * @brief preserve the content objects when items are popped.
16114 * @param obj The naviframe object
16115 * @param preserve Enable the preserve mode if EINA_TRUE, disable otherwise
16117 * @see also elm_naviframe_content_preserve_on_pop_get()
16119 * @ingroup Naviframe
16121 EAPI void elm_naviframe_content_preserve_on_pop_set(Evas_Object *obj, Eina_Bool preserve) EINA_ARG_NONNULL(1);
16123 * @brief Get a value whether preserve mode is enabled or not.
16125 * @param obj The naviframe object
16126 * @return If @c EINA_TRUE, preserve mode is enabled
16128 * @see also elm_naviframe_content_preserve_on_pop_set()
16130 * @ingroup Naviframe
16132 EAPI Eina_Bool elm_naviframe_content_preserve_on_pop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16134 * @brief Get a top item on the naviframe stack
16136 * @param obj The naviframe object
16137 * @return The top item on the naviframe stack or @c NULL, if the stack is
16140 * @ingroup Naviframe
16142 EAPI Elm_Object_Item *elm_naviframe_top_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16144 * @brief Get a bottom item on the naviframe stack
16146 * @param obj The naviframe object
16147 * @return The bottom item on the naviframe stack or @c NULL, if the stack is
16150 * @ingroup Naviframe
16152 EAPI Elm_Object_Item *elm_naviframe_bottom_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
16154 * @brief Set an item style
16156 * @param obj The naviframe item
16157 * @param item_style The current item style name. @c NULL would be default
16159 * The following styles are available for this item:
16162 * @see also elm_naviframe_item_style_get()
16164 * @ingroup Naviframe
16166 EAPI void elm_naviframe_item_style_set(Elm_Object_Item *it, const char *item_style) EINA_ARG_NONNULL(1);
16168 * @brief Get an item style
16170 * @param obj The naviframe item
16171 * @return The current item style name
16173 * @see also elm_naviframe_item_style_set()
16175 * @ingroup Naviframe
16177 EAPI const char *elm_naviframe_item_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16179 * @brief Show/Hide the title area
16181 * @param it The naviframe item
16182 * @param visible If @c EINA_TRUE, title area will be visible, hidden
16185 * When the title area is invisible, then the controls would be hidden so as * to expand the content area to full-size.
16187 * @see also elm_naviframe_item_title_visible_get()
16189 * @ingroup Naviframe
16191 EAPI void elm_naviframe_item_title_visible_set(Elm_Object_Item *it, Eina_Bool visible) EINA_ARG_NONNULL(1);
16193 * @brief Get a value whether title area is visible or not.
16195 * @param it The naviframe item
16196 * @return If @c EINA_TRUE, title area is visible
16198 * @see also elm_naviframe_item_title_visible_set()
16200 * @ingroup Naviframe
16202 EAPI Eina_Bool elm_naviframe_item_title_visible_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
16205 * @brief Set creating prev button automatically or not
16207 * @param obj The naviframe object
16208 * @param auto_pushed If @c EINA_TRUE, the previous button(back button) will
16209 * be created internally when you pass the @c NULL to the prev_btn
16210 * parameter in elm_naviframe_item_push
16212 * @see also elm_naviframe_item_push()
16214 EAPI void elm_naviframe_prev_btn_auto_pushed_set(Evas_Object *obj, Eina_Bool auto_pushed) EINA_ARG_NONNULL(1);
16216 * @brief Get a value whether prev button(back button) will be auto pushed or
16219 * @param obj The naviframe object
16220 * @return If @c EINA_TRUE, prev button will be auto pushed.
16222 * @see also elm_naviframe_item_push()
16223 * elm_naviframe_prev_btn_auto_pushed_set()
16225 EAPI Eina_Bool elm_naviframe_prev_btn_auto_pushed_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
16228 #define CONTROLBAR_SYSTEM_ICON_ALBUMS "controlbar_albums"
16229 #define CONTROLBAR_SYSTEM_ICON_ARTISTS "controlbar_artists"
16230 #define CONTROLBAR_SYSTEM_ICON_SONGS "controlbar_songs"
16231 #define CONTROLBAR_SYSTEM_ICON_PLAYLIST "controlbar_playlist"
16232 #define CONTROLBAR_SYSTEM_ICON_MORE "controlbar_more"
16233 #define CONTROLBAR_SYSTEM_ICON_CONTACTS "controlbar_contacts"
16234 #define CONTROLBAR_SYSTEM_ICON_DIALER "controlbar_dialer"
16235 #define CONTROLBAR_SYSTEM_ICON_FAVORITES "controlbar_favorites"
16236 #define CONTROLBAR_SYSTEM_ICON_LOGS "controlbar_logs"
16238 typedef enum _Elm_Controlbar_Mode_Type
16240 ELM_CONTROLBAR_MODE_DEFAULT = 0,
16241 ELM_CONTROLBAR_MODE_TRANSLUCENCE,
16242 ELM_CONTROLBAR_MODE_TRANSPARENCY,
16243 ELM_CONTROLBAR_MODE_LARGE,
16244 ELM_CONTROLBAR_MODE_SMALL,
16245 ELM_CONTROLBAR_MODE_LEFT,
16246 ELM_CONTROLBAR_MODE_RIGHT
16247 } Elm_Controlbar_Mode_Type;
16249 typedef struct _Elm_Controlbar_Item Elm_Controlbar_Item;
16250 EAPI Evas_Object *elm_controlbar_add(Evas_Object *parent);
16251 EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_append(Evas_Object *obj, const char *icon_path, const char *label, Evas_Object *view);
16252 EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_prepend(Evas_Object *obj, const char *icon_path, const char *label, Evas_Object *view);
16253 EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_insert_before(Evas_Object *obj, Elm_Controlbar_Item *before, const char *icon_path, const char *label, Evas_Object *view);
16254 EAPI Elm_Controlbar_Item *elm_controlbar_tab_item_insert_after(Evas_Object *obj, Elm_Controlbar_Item *after, const char *icon_path, const char *label, Evas_Object *view);
16255 EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_append(Evas_Object *obj, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
16256 EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_prepend(Evas_Object *obj, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
16257 EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_insert_before(Evas_Object *obj, Elm_Controlbar_Item *before, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
16258 EAPI Elm_Controlbar_Item *elm_controlbar_tool_item_insert_after(Evas_Object *obj, Elm_Controlbar_Item *after, const char *icon_path, const char *label, void (*func) (void *data, Evas_Object *obj, void *event_info), void *data);
16259 EAPI Elm_Controlbar_Item *elm_controlbar_object_item_append(Evas_Object *obj, Evas_Object *obj_item, const int sel);
16260 EAPI Elm_Controlbar_Item *elm_controlbar_object_item_prepend(Evas_Object *obj, Evas_Object *obj_item, const int sel);
16261 EAPI Elm_Controlbar_Item *elm_controlbar_object_item_insert_before(Evas_Object *obj, Elm_Controlbar_Item *before, Evas_Object *obj_item, const int sel);
16262 EAPI Elm_Controlbar_Item *elm_controlbar_object_item_insert_after(Evas_Object *obj, Elm_Controlbar_Item *after, Evas_Object *obj_item, const int sel);
16263 EAPI Evas_Object *elm_controlbar_object_item_object_get(const Elm_Controlbar_Item *it);
16264 EAPI void elm_controlbar_item_del(Elm_Controlbar_Item *it);
16265 EAPI void elm_controlbar_item_select(Elm_Controlbar_Item *it);
16266 EAPI void elm_controlbar_item_visible_set(Elm_Controlbar_Item *it, Eina_Bool bar);
16267 EAPI Eina_Bool elm_controlbar_item_visible_get(const Elm_Controlbar_Item * it);
16268 EAPI void elm_controlbar_item_disabled_set(Elm_Controlbar_Item * it, Eina_Bool disabled);
16269 EAPI Eina_Bool elm_controlbar_item_disabled_get(const Elm_Controlbar_Item * it);
16270 EAPI void elm_controlbar_item_icon_set(Elm_Controlbar_Item *it, const char *icon_path);
16271 EAPI Evas_Object *elm_controlbar_item_icon_get(const Elm_Controlbar_Item *it);
16272 EAPI void elm_controlbar_item_label_set(Elm_Controlbar_Item *it, const char *label);
16273 EAPI const char *elm_controlbar_item_label_get(const Elm_Controlbar_Item *it);
16274 EAPI Elm_Controlbar_Item *elm_controlbar_selected_item_get(const Evas_Object *obj);
16275 EAPI Elm_Controlbar_Item *elm_controlbar_first_item_get(const Evas_Object *obj);
16276 EAPI Elm_Controlbar_Item *elm_controlbar_last_item_get(const Evas_Object *obj);
16277 EAPI const Eina_List *elm_controlbar_items_get(const Evas_Object *obj);
16278 EAPI Elm_Controlbar_Item *elm_controlbar_item_prev(Elm_Controlbar_Item *it);
16279 EAPI Elm_Controlbar_Item *elm_controlbar_item_next(Elm_Controlbar_Item *it);
16280 EAPI void elm_controlbar_item_view_set(Elm_Controlbar_Item *it, Evas_Object * view);
16281 EAPI Evas_Object *elm_controlbar_item_view_get(const Elm_Controlbar_Item *it);
16282 EAPI Evas_Object *elm_controlbar_item_view_unset(Elm_Controlbar_Item *it);
16283 EAPI Evas_Object *elm_controlbar_item_button_get(const Elm_Controlbar_Item *it);
16284 EAPI void elm_controlbar_mode_set(Evas_Object *obj, int mode);
16285 EAPI void elm_controlbar_alpha_set(Evas_Object *obj, int alpha);
16286 EAPI void elm_controlbar_item_auto_align_set(Evas_Object *obj, Eina_Bool auto_align);
16287 EAPI void elm_controlbar_vertical_set(Evas_Object *obj, Eina_Bool vertical);
16290 EAPI Evas_Object *elm_searchbar_add(Evas_Object *parent);
16291 EAPI void elm_searchbar_text_set(Evas_Object *obj, const char *entry);
16292 EAPI const char *elm_searchbar_text_get(Evas_Object *obj);
16293 EAPI Evas_Object *elm_searchbar_entry_get(Evas_Object *obj);
16294 EAPI Evas_Object *elm_searchbar_editfield_get(Evas_Object *obj);
16295 EAPI void elm_searchbar_cancel_button_animation_set(Evas_Object *obj, Eina_Bool cancel_btn_ani_flag);
16296 EAPI void elm_searchbar_cancel_button_set(Evas_Object *obj, Eina_Bool visible);
16297 EAPI void elm_searchbar_clear(Evas_Object *obj);
16298 EAPI void elm_searchbar_boundary_rect_set(Evas_Object *obj, Eina_Bool boundary);
16300 EAPI Evas_Object *elm_page_control_add(Evas_Object *parent);
16301 EAPI void elm_page_control_page_count_set(Evas_Object *obj, unsigned int page_count);
16302 EAPI void elm_page_control_page_id_set(Evas_Object *obj, unsigned int page_id);
16303 EAPI unsigned int elm_page_control_page_id_get(Evas_Object *obj);
16306 EAPI Evas_Object *elm_nocontents_add(Evas_Object *parent);
16307 EAPI void elm_nocontents_label_set(Evas_Object *obj, const char *label);
16308 EAPI const char *elm_nocontents_label_get(const Evas_Object *obj);
16309 EAPI void elm_nocontents_custom_set(const Evas_Object *obj, Evas_Object *custom);
16310 EAPI Evas_Object *elm_nocontents_custom_get(const Evas_Object *obj);
16315 ELM_TICKERNOTI_ORIENT_TOP = 0,
16316 ELM_TICKERNOTI_ORIENT_BOTTOM,
16317 ELM_TICKERNOTI_ORIENT_LAST
16318 } Elm_Tickernoti_Orient;
16320 EAPI Evas_Object *elm_tickernoti_add (Evas_Object *parent);
16321 EAPI void elm_tickernoti_orient_set (Evas_Object *obj, Elm_Tickernoti_Orient orient) EINA_ARG_NONNULL(1);
16322 EAPI Elm_Tickernoti_Orient elm_tickernoti_orient_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16323 EAPI int elm_tickernoti_rotation_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16324 EAPI void elm_tickernoti_rotation_set (Evas_Object *obj, int angle) EINA_ARG_NONNULL(1);
16325 EAPI Evas_Object *elm_tickernoti_win_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16326 /* #### Below APIs and data structures are going to be deprecated, announcment will be made soon ####*/
16329 ELM_TICKERNOTI_DEFAULT,
16330 ELM_TICKERNOTI_DETAILVIEW
16331 } Elm_Tickernoti_Mode;
16332 EAPI void elm_tickernoti_detailview_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
16333 EAPI const char *elm_tickernoti_detailview_label_get (const Evas_Object *obj)EINA_ARG_NONNULL(1);
16334 EAPI void elm_tickernoti_detailview_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(2);
16335 EAPI Evas_Object *elm_tickernoti_detailview_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16336 EAPI void elm_tickernoti_detailview_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
16337 EAPI Evas_Object *elm_tickernoti_detailview_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16338 EAPI Evas_Object *elm_tickernoti_detailview_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16339 EAPI void elm_tickernoti_mode_set (Evas_Object *obj, Elm_Tickernoti_Mode mode) EINA_ARG_NONNULL(1);
16340 EAPI Elm_Tickernoti_Mode elm_tickernoti_mode_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16341 EAPI void elm_tickernoti_orientation_set (Evas_Object *obj, Elm_Tickernoti_Orient orient) EINA_ARG_NONNULL(1);
16342 EAPI Elm_Tickernoti_Orient elm_tickernoti_orientation_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16343 EAPI void elm_tickernoti_label_set (Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
16344 EAPI const char *elm_tickernoti_label_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16345 EAPI void elm_tickernoti_icon_set (Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
16346 EAPI Evas_Object *elm_tickernoti_icon_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16347 EAPI void elm_tickernoti_button_set (Evas_Object *obj, Evas_Object *button) EINA_ARG_NONNULL(1);
16348 EAPI Evas_Object *elm_tickernoti_button_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
16349 /* ############################################################################### */
16351 * Parts which can be used with elm_object_text_part_set() and
16352 * elm_object_text_part_get():
16354 * @li NULL/"default" - Operates on tickernoti content-text
16356 * Parts which can be used with elm_object_content_part_set() and
16357 * elm_object_content_part_get():
16359 * @li "icon" - Operates on tickernoti's icon
16360 * @li "button" - Operates on tickernoti's button
16362 * smart callbacks called:
16363 * @li "clicked" - emitted when tickernoti is clicked, except at the
16364 * swallow/button region, if any.
16365 * @li "hide" - emitted when the tickernoti is completely hidden. In case of
16366 * any hide animation, this signal is emitted after the animation.
16370 typedef struct _Colorpalette_Color Elm_Colorpalette_Color;
16372 struct _Colorpalette_Color
16374 unsigned int r, g, b;
16377 EAPI Evas_Object *elm_colorpalette_add(Evas_Object *parent);
16378 EAPI void elm_colorpalette_color_set(Evas_Object *obj, int color_num, Elm_Colorpalette_Color *color);
16379 EAPI void elm_colorpalette_row_column_set(Evas_Object *obj, int row, int col);
16380 /* smart callbacks called:
16381 * "clicked" - when image clicked
16385 EAPI Evas_Object *elm_editfield_add(Evas_Object *parent);
16386 EAPI void elm_editfield_label_set(Evas_Object *obj, const char *label);
16387 EAPI const char *elm_editfield_label_get(Evas_Object *obj);
16388 EAPI void elm_editfield_guide_text_set(Evas_Object *obj, const char *text);
16389 EAPI const char *elm_editfield_guide_text_get(Evas_Object *obj);
16390 EAPI Evas_Object *elm_editfield_entry_get(Evas_Object *obj);
16391 // EAPI Evas_Object *elm_editfield_clear_button_show(Evas_Object *obj, Eina_Bool show);
16392 EAPI void elm_editfield_right_icon_set(Evas_Object *obj, Evas_Object *icon);
16393 EAPI Evas_Object *elm_editfield_right_icon_get(Evas_Object *obj);
16394 EAPI void elm_editfield_left_icon_set(Evas_Object *obj, Evas_Object *icon);
16395 EAPI Evas_Object *elm_editfield_left_icon_get(Evas_Object *obj);
16396 EAPI void elm_editfield_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line);
16397 EAPI Eina_Bool elm_editfield_entry_single_line_get(Evas_Object *obj);
16398 EAPI void elm_editfield_eraser_set(Evas_Object *obj, Eina_Bool visible);
16399 EAPI Eina_Bool elm_editfield_eraser_get(Evas_Object *obj);
16400 /* smart callbacks called:
16401 * "clicked" - when an editfield is clicked
16402 * "unfocused" - when an editfield is unfocused
16406 /* Sliding Drawer */
16407 typedef enum _Elm_SlidingDrawer_Pos
16409 ELM_SLIDINGDRAWER_BOTTOM,
16410 ELM_SLIDINGDRAWER_LEFT,
16411 ELM_SLIDINGDRAWER_RIGHT,
16412 ELM_SLIDINGDRAWER_TOP
16413 } Elm_SlidingDrawer_Pos;
16415 typedef struct _Elm_SlidingDrawer_Drag_Value
16418 } Elm_SlidingDrawer_Drag_Value;
16420 EINA_DEPRECATED EAPI Evas_Object *elm_slidingdrawer_add(Evas_Object *parent);
16421 EINA_DEPRECATED EAPI void elm_slidingdrawer_content_set (Evas_Object *obj, Evas_Object *content);
16422 EINA_DEPRECATED EAPI Evas_Object *elm_slidingdrawer_content_unset(Evas_Object *obj);
16423 EINA_DEPRECATED EAPI void elm_slidingdrawer_pos_set(Evas_Object *obj, Elm_SlidingDrawer_Pos pos);
16424 EINA_DEPRECATED EAPI void elm_slidingdrawer_max_drag_value_set(Evas_Object *obj, double dw, double dh);
16425 EINA_DEPRECATED EAPI void elm_slidingdrawer_drag_value_set(Evas_Object *obj, double dx, double dy);
16427 /* multibuttonentry */
16428 typedef struct _Multibuttonentry_Item Elm_Multibuttonentry_Item;
16429 typedef Eina_Bool (*Elm_Multibuttonentry_Item_Verify_Callback) (Evas_Object *obj, const char *item_label, void *item_data, void *data);
16430 EAPI Evas_Object *elm_multibuttonentry_add(Evas_Object *parent);
16431 EAPI const char *elm_multibuttonentry_label_get(Evas_Object *obj);
16432 EAPI void elm_multibuttonentry_label_set(Evas_Object *obj, const char *label);
16433 EAPI Evas_Object *elm_multibuttonentry_entry_get(Evas_Object *obj);
16434 EAPI const char * elm_multibuttonentry_guide_text_get(Evas_Object *obj);
16435 EAPI void elm_multibuttonentry_guide_text_set(Evas_Object *obj, const char *guidetext);
16436 EAPI int elm_multibuttonentry_contracted_state_get(Evas_Object *obj);
16437 EAPI void elm_multibuttonentry_contracted_state_set(Evas_Object *obj, int contracted);
16438 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_start(Evas_Object *obj, const char *label, void *data);
16439 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_end(Evas_Object *obj, const char *label, void *data);
16440 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_before(Evas_Object *obj, const char *label, Elm_Multibuttonentry_Item *before, void *data);
16441 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_add_after(Evas_Object *obj, const char *label, Elm_Multibuttonentry_Item *after, void *data);
16442 EAPI const Eina_List *elm_multibuttonentry_items_get(Evas_Object *obj);
16443 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_first_get(Evas_Object *obj);
16444 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_last_get(Evas_Object *obj);
16445 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_selected_get(Evas_Object *obj);
16446 EAPI void elm_multibuttonentry_item_selected_set(Elm_Multibuttonentry_Item *item);
16447 EAPI void elm_multibuttonentry_item_unselect_all(Evas_Object *obj);
16448 EAPI void elm_multibuttonentry_item_del(Elm_Multibuttonentry_Item *item);
16449 EAPI void elm_multibuttonentry_items_del(Evas_Object *obj);
16450 EAPI const char *elm_multibuttonentry_item_label_get(Elm_Multibuttonentry_Item *item);
16451 EAPI void elm_multibuttonentry_item_label_set(Elm_Multibuttonentry_Item *item, const char *str);
16452 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_prev(Elm_Multibuttonentry_Item *item);
16453 EAPI Elm_Multibuttonentry_Item *elm_multibuttonentry_item_next(Elm_Multibuttonentry_Item *item);
16454 EAPI void *elm_multibuttonentry_item_data_get(Elm_Multibuttonentry_Item *item);
16455 EAPI void elm_multibuttonentry_item_data_set(Elm_Multibuttonentry_Item *item, void *data);
16456 EAPI void elm_multibuttonentry_item_verify_callback_set(Evas_Object *obj, Elm_Multibuttonentry_Item_Verify_Callback func, void *data);
16457 /* smart callback called:
16458 * "selected" - This signal is emitted when the selected item of multibuttonentry is changed.
16459 * "added" - This signal is emitted when a new multibuttonentry item is added.
16460 * "deleted" - This signal is emitted when a multibuttonentry item is deleted.
16461 * "expanded" - This signal is emitted when a multibuttonentry is expanded.
16462 * "contracted" - This signal is emitted when a multibuttonentry is contracted.
16463 * "contracted,state,changed" - This signal is emitted when the contracted state of multibuttonentry is changed.
16464 * "item,selected" - This signal is emitted when the selected item of multibuttonentry is changed.
16465 * "item,added" - This signal is emitted when a new multibuttonentry item is added.
16466 * "item,deleted" - This signal is emitted when a multibuttonentry item is deleted.
16467 * "item,clicked" - This signal is emitted when a multibuttonentry item is clicked.
16468 * "clicked" - This signal is emitted when a multibuttonentry is clicked.
16469 * "unfocused" - This signal is emitted when a multibuttonentry is unfocused.
16471 /* available styles:
16476 typedef struct _Stackedicon_Item Elm_Stackedicon_Item;
16477 EAPI Evas_Object *elm_stackedicon_add(Evas_Object *parent);
16478 EAPI Elm_Stackedicon_Item *elm_stackedicon_item_append(Evas_Object *obj, const char *path);
16479 EAPI Elm_Stackedicon_Item *elm_stackedicon_item_prepend(Evas_Object *obj, const char *path);
16480 EAPI void elm_stackedicon_item_del(Elm_Stackedicon_Item *it);
16481 EAPI Eina_List *elm_stackedicon_item_list_get(Evas_Object *obj);
16482 /* smart callback called:
16483 * "expanded" - This signal is emitted when a stackedicon is expanded.
16484 * "clicked" - This signal is emitted when a stackedicon is clicked.
16486 /* available styles:
16490 /* dialoguegroup */
16491 typedef struct _Dialogue_Item Dialogue_Item;
16493 typedef enum _Elm_Dialoguegourp_Item_Style
16495 ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT = 0,
16496 ELM_DIALOGUEGROUP_ITEM_STYLE_EDITFIELD = (1 << 0),
16497 ELM_DIALOGUEGROUP_ITEM_STYLE_EDITFIELD_WITH_TITLE = (1 << 1),
16498 ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT_TITLE = (1 << 2),
16499 ELM_DIALOGUEGROUP_ITEM_STYLE_HIDDEN = (1 << 3),
16500 ELM_DIALOGUEGROUP_ITEM_STYLE_DATAVIEW = (1 << 4),
16501 ELM_DIALOGUEGROUP_ITEM_STYLE_NO_BG = (1 << 5),
16502 ELM_DIALOGUEGROUP_ITEM_STYLE_SUB = (1 << 6),
16503 ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT = (1 << 7),
16504 ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT_MERGE = (1 << 8),
16505 ELM_DIALOGUEGROUP_ITEM_STYLE_LAST = (1 << 9)
16506 } Elm_Dialoguegroup_Item_Style;
16508 EINA_DEPRECATED EAPI Evas_Object *elm_dialoguegroup_add(Evas_Object *parent);
16509 EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_append(Evas_Object *obj, Evas_Object *subobj, Elm_Dialoguegroup_Item_Style style);
16510 EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_prepend(Evas_Object *obj, Evas_Object *subobj, Elm_Dialoguegroup_Item_Style style);
16511 EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_insert_after(Evas_Object *obj, Evas_Object *subobj, Dialogue_Item *after, Elm_Dialoguegroup_Item_Style style);
16512 EINA_DEPRECATED EAPI Dialogue_Item *elm_dialoguegroup_insert_before(Evas_Object *obj, Evas_Object *subobj, Dialogue_Item *before, Elm_Dialoguegroup_Item_Style style);
16513 EINA_DEPRECATED EAPI void elm_dialoguegroup_remove(Dialogue_Item *item);
16514 EINA_DEPRECATED EAPI void elm_dialoguegroup_remove_all(Evas_Object *obj);
16515 EINA_DEPRECATED EAPI void elm_dialoguegroup_title_set(Evas_Object *obj, const char *title);
16516 EINA_DEPRECATED EAPI const char *elm_dialoguegroup_title_get(Evas_Object *obj);
16517 EINA_DEPRECATED EAPI void elm_dialoguegroup_press_effect_set(Dialogue_Item *item, Eina_Bool press);
16518 EINA_DEPRECATED EAPI Eina_Bool elm_dialoguegroup_press_effect_get(Dialogue_Item *item);
16519 EINA_DEPRECATED EAPI Evas_Object *elm_dialoguegroup_item_content_get(Dialogue_Item *item);
16520 EINA_DEPRECATED EAPI void elm_dialoguegroup_item_style_set(Dialogue_Item *item, Elm_Dialoguegroup_Item_Style style);
16521 EINA_DEPRECATED EAPI Elm_Dialoguegroup_Item_Style elm_dialoguegroup_item_style_get(Dialogue_Item *item);
16522 EINA_DEPRECATED EAPI void elm_dialoguegroup_item_disabled_set(Dialogue_Item *item, Eina_Bool disabled);
16523 EINA_DEPRECATED EAPI Eina_Bool elm_dialoguegroup_item_disabled_get(Dialogue_Item *item);
16528 ELM_DAYSELECTOR_SUN,
16529 ELM_DAYSELECTOR_MON,
16530 ELM_DAYSELECTOR_TUE,
16531 ELM_DAYSELECTOR_WED,
16532 ELM_DAYSELECTOR_THU,
16533 ELM_DAYSELECTOR_FRI,
16534 ELM_DAYSELECTOR_SAT
16535 } Elm_DaySelector_Day;
16537 EAPI Evas_Object *elm_dayselector_add(Evas_Object *parent);
16538 EAPI Eina_Bool elm_dayselector_check_state_get(Evas_Object *obj, Elm_DaySelector_Day day);
16539 EAPI void elm_dayselector_check_state_set(Evas_Object *obj, Elm_DaySelector_Day day, Eina_Bool checked);
16542 typedef struct _Imageslider_Item Elm_Imageslider_Item;
16543 typedef void (*Elm_Imageslider_Cb)(void *data, Evas_Object *obj, void *event_info);
16544 EAPI Evas_Object *elm_imageslider_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
16545 EAPI Elm_Imageslider_Item *elm_imageslider_item_append(Evas_Object *obj, const char *photo_file, Elm_Imageslider_Cb func, void *data) EINA_ARG_NONNULL(1);
16546 EAPI Elm_Imageslider_Item *elm_imageslider_item_append_relative(Evas_Object *obj, const char *photo_file, Elm_Imageslider_Cb func, unsigned int index, void *data) EINA_ARG_NONNULL(1);
16547 EAPI Elm_Imageslider_Item *elm_imageslider_item_prepend(Evas_Object *obj, const char *photo_file, Elm_Imageslider_Cb func, void *data) EINA_ARG_NONNULL(1);
16548 EAPI void elm_imageslider_item_del(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
16549 EAPI Elm_Imageslider_Item *elm_imageslider_selected_item_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
16550 EAPI Eina_Bool elm_imageslider_item_selected_get(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
16551 EAPI void elm_imageslider_item_selected_set(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
16552 EAPI const char *elm_imageslider_item_photo_file_get(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
16553 EAPI Elm_Imageslider_Item *elm_imageslider_item_prev(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
16554 EAPI Elm_Imageslider_Item *elm_imageslider_item_next(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);
16555 EAPI void elm_imageslider_prev(Evas_Object *obj) EINA_ARG_NONNULL(1);
16556 EAPI void elm_imageslider_next(Evas_Object *obj) EINA_ARG_NONNULL(1);
16557 EAPI void elm_imageslider_item_photo_file_set(Elm_Imageslider_Item *it, const char *photo_file) EINA_ARG_NONNULL(1,2);
16558 EAPI void elm_imageslider_item_update(Elm_Imageslider_Item *it) EINA_ARG_NONNULL(1);