[Elementary.h] Merge more documentation
[framework/uifw/elementary.git] / src / lib / Elementary.h.in
index f749661..bc88ae1 100644 (file)
 /**
 @mainpage Elementary
 @image html  elementary.png
-@version @PACKAGE_VERSION@
+@version 0.8.0
+@date 2008-2011
+
+@section intro What is Elementary?
+
+This is a VERY SIMPLE toolkit. It is not meant for writing extensive desktop
+applications (yet). Small simple ones with simple needs.
+
+It is meant to make the programmers work almost brainless but give them lots
+of flexibility.
+
+@li @ref Start - Go here to quickly get started with writing Apps
+
+@section organization Organization
+
+One can divide Elemementary into three main groups:
+@li @ref infralist - These are modules that deal with Elementary as a whole.
+@li @ref widgetslist - These are the widgets you'll compose your UI out of.
+@li @ref containerslist - These are the containers which hold the widgets.
+
+@section license License
+
+LGPL v2 (see COPYING in the base of Elementary's source). This applies to
+all files in the source tree.
+
+@section ack Acknowledgements
+There is a lot that goes into making a widget set, and they don't happen out of
+nothing. It's like trying to make everyone everywhere happy, regardless of age,
+gender, race or nationality - and that is really tough. So thanks to people and
+organisations behind this, as listed in the @ref authors page.
+*/
+
+
+/**
+ * @defgroup Start Getting Started
+ *
+ * To write an Elementary app, you can get started with the following:
+ *
+@code
+#include <Elementary.h>
+EAPI_MAIN int
+elm_main(int argc, char **argv)
+{
+   // create window(s) here and do any application init
+   elm_run(); // run main loop
+   elm_shutdown(); // after mainloop finishes running, shutdown
+   return 0; // exit 0 for exit code
+}
+ELM_MAIN()
+@endcode
+ *
+ * To use autotools (which helps in many ways in the long run, like being able
+ * to immediately create releases of your software directly from your tree
+ * and ensure everything needed to build it is there) you will need a
+ * configure.ac, Makefile.am and autogen.sh file.
+ *
+ * configure.ac:
+ *
+@verbatim
+AC_INIT(myapp, 0.0.0, myname@mydomain.com)
+AC_PREREQ(2.52)
+AC_CONFIG_SRCDIR(configure.ac)
+AM_CONFIG_HEADER(config.h)
+AC_PROG_CC
+AM_INIT_AUTOMAKE(1.6 dist-bzip2)
+PKG_CHECK_MODULES([ELEMENTARY], elementary)
+AC_OUTPUT(Makefile)
+@endverbatim
+ *
+ * Makefile.am:
+ *
+@verbatim
+AUTOMAKE_OPTIONS = 1.4 foreign
+MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in configure depcomp install-sh missing
+
+INCLUDES = -I$(top_srcdir)
+
+bin_PROGRAMS = myapp
+
+myapp_SOURCES = main.c
+myapp_LDADD = @ELEMENTARY_LIBS@
+myapp_CFLAGS = @ELEMENTARY_CFLAGS@
+@endverbatim
+ *
+ * autogen.sh:
+ *
+@verbatim
+#!/bin/sh
+echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS || exit 1
+echo "Running autoheader..." ; autoheader || exit 1
+echo "Running autoconf..." ; autoconf || exit 1
+echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
+./configure "$@"
+@endverbatim
+ *
+ * To generate all the things needed to bootstrap just run:
+ *
+@verbatim
+./autogen.sh
+@endverbatim
+ *
+ * This will generate Makefile.in's, the confgure script and everything else.
+ * After this it works like all normal autotools projects:
+@verbatim
+./configure
+make
+sudo make install
+@endverbatim
+ *
+ * Note sudo was assumed to get root permissions, as this would install in
+ * /usr/local which is system-owned. Use any way you like to gain root, or
+ * specify a different prefix with configure:
+ *
+@verbatim
+./confiugre --prefix=$HOME/mysoftware
+@endverbatim
+ *
+ * Also remember that autotools buys you some useful commands like:
+@verbatim
+make uninstall
+@endverbatim
+ *
+ * This uninstalls the software after it was installed with "make install".
+ * It is very useful to clear up what you built if you wish to clean the
+ * system.
+ *
+@verbatim
+make distcheck
+@endverbatim
+ *
+ * This firstly checks if your build tree is "clean" and ready for
+ * distribution. It also builds a tarball (myapp-0.0.0.tar.gz) that is
+ * ready to upload and distribute to the world, that contains the generated
+ * Makefile.in's and configure script. The users do not need to run
+ * autogen.sh - just configure and on. They don't need autotools installed.
+ * This tarball also builds cleanly, has all the sources it needs to build
+ * included (that is sources for your application, not libraries it depends
+ * on like Elementary). It builds cleanly in a buildroot and does not
+ * contain any files that are temporarily generated like binaries and other
+ * build-generated files, so the tarball is clean, and no need to worry
+ * about cleaning up your tree before packaging.
+ *
+@verbatim
+make clean
+@endverbatim
+ *
+ * This cleans up all build files (binaries, objects etc.) from the tree.
+ *
+@verbatim
+make distclean
+@endverbatim
+ *
+ * This cleans out all files from the build and from configure's output too.
+ *
+@verbatim
+make maintainer-clean
+@endverbatim
+ *
+ * This deletes all the files autogen.sh will produce so the tree is clean
+ * to be put into a revision-control system (like CVS, SVN or GIT for example).
+ *
+ * There is a more advanced way of making use of the quicklaunch infrastructure
+ * in Elementary (which will not be covered here due to its more advanced
+ * nature).
+ *
+ * Now let's actually create an interactive "Hello World" gui that you can
+ * click the ok button to exit. It's more code because this now does something
+ * much more significant, but it's still very simple:
+ *
+@code
+#include <Elementary.h>
+
+static void
+on_done(void *data, Evas_Object *obj, void *event_info)
+{
+   // quit the mainloop (elm_run function will return)
+   elm_exit();
+}
+
+EAPI_MAIN int
+elm_main(int argc, char **argv)
+{
+   Evas_Object *win, *bg, *box, *lab, *btn;
+
+   // new window - do the usual and give it a name (hello) and title (Hello)
+   win = elm_win_util_standard_add("hello", "Hello");
+   // when the user clicks "close" on a window there is a request to delete
+   evas_object_smart_callback_add(win, "delete,request", on_done, NULL);
+
+   // add a box object - default is vertical. a box holds children in a row,
+   // either horizontally or vertically. nothing more.
+   box = elm_box_add(win);
+   // make the box hotizontal
+   elm_box_horizontal_set(box, EINA_TRUE);
+   // add object as a resize object for the window (controls window minimum
+   // size as well as gets resized if window is resized)
+   elm_win_resize_object_add(win, box);
+   evas_object_show(box);
+
+   // add a label widget, set the text and put it in the pad frame
+   lab = elm_label_add(win);
+   // set default text of the label
+   elm_object_text_set(lab, "Hello out there world!");
+   // pack the label at the end of the box
+   elm_box_pack_end(box, lab);
+   evas_object_show(lab);
+
+   // add an ok button
+   btn = elm_button_add(win);
+   // set default text of button to "OK"
+   elm_object_text_set(btn, "OK");
+   // pack the button at the end of the box
+   elm_box_pack_end(box, btn);
+   evas_object_show(btn);
+   // call on_done when button is clicked
+   evas_object_smart_callback_add(btn, "clicked", on_done, NULL);
+
+   // now we are done, show the window
+   evas_object_show(win);
+
+   // run the mainloop and process events and callbacks
+   elm_run();
+   return 0;
+}
+ELM_MAIN()
+@endcode
+   *
+   */
+
+/**
+@page authors Authors
 @author Carsten Haitzler <raster@@rasterman.com>
 @author Gustavo Sverzut Barbieri <barbieri@@profusion.mobi>
 @author Cedric Bail <cedric.bail@@free.fr>
 @author Shinwoo Kim <kimcinoo@@gmail.com>
 @author Govindaraju SM <govi.sm@@samsung.com> <govism@@gmail.com>
 @author Prince Kumar Dubey <prince.dubey@@samsung.com> <prince.dubey@@gmail.com>
-@date 2008-2011
-
-@section intro What is Elementary?
-
-This is a VERY SIMPLE toolkit. It is not meant for writing extensive desktop
-applications (yet). Small simple ones with simple needs.
-
-It is meant to make the programmers work almost brainless but give them lots
-of flexibility.
-
-License: LGPL v2 (see COPYING in the base of Elementary's source). This
-applies to all files in the source here.
-
-Acknowledgements: There is a lot that goes into making a widget set, and
-they don't happen out of nothing. It's like trying to make everyone
-everywhere happy, regardless of age, gender, race or nationality - and
-that is really tough. So thanks to people and organisations behind this,
-aslisted in the Authors section above.
-
-@verbatim
-Pants
-@endverbatim
-*/
+@author Sung W. Park <sungwoo@gmail.com>
+@author Thierry el Borgi <thierry@substantiel.fr>
+@author Shilpa Singh <shilpa.singh@samsung.com> <shilpasingh.o@gmail.com>
+@author Chanwook Jung <joey.jung@samsung.com>
+@author Hyoyoung Chang <hyoyoung.chang@samsung.com>
+@author Guillaume "Kuri" Friloux <guillaume.friloux@asp64.com>
+@author Kim Yunhan <spbear@gmail.com>
+
+Please contact <enlightenment-devel@lists.sourceforge.net> to get in
+contact with the developers and maintainers.
+ */
 
 #ifndef ELEMENTARY_H
 #define ELEMENTARY_H
@@ -286,7 +504,7 @@ extern "C" {
     */
     typedef enum _Elm_Policy
     {
-        ELM_POLICY_QUIT, /**< under which circunstances the application
+        ELM_POLICY_QUIT, /**< under which circumstances the application
                           * should quit automatically. @see
                           * Elm_Policy_Quit.
                           */
@@ -321,12 +539,32 @@ extern "C" {
    typedef enum _Elm_Wrap_Type
      {
         ELM_WRAP_NONE = 0, /**< No wrap - value is zero */
-        ELM_WRAP_CHAR, /**< Char wrap - wrap between graphmes */
+        ELM_WRAP_CHAR, /**< Char wrap - wrap between characters */
         ELM_WRAP_WORD, /**< Word wrap - wrap in allowed wrapping points (as defined in the unicode standard) */
         ELM_WRAP_MIXED, /**< Mixed wrap - Word wrap, and if that fails, char wrap. */
         ELM_WRAP_LAST
      } Elm_Wrap_Type;
 
+   typedef enum
+     {
+        ELM_INPUT_PANEL_LAYOUT_NORMAL,          /**< Default layout */
+        ELM_INPUT_PANEL_LAYOUT_NUMBER,          /**< Number layout */
+        ELM_INPUT_PANEL_LAYOUT_EMAIL,           /**< Email layout */
+        ELM_INPUT_PANEL_LAYOUT_URL,             /**< URL layout */
+        ELM_INPUT_PANEL_LAYOUT_PHONENUMBER,     /**< Phone Number layout */
+        ELM_INPUT_PANEL_LAYOUT_IP,              /**< IP layout */
+        ELM_INPUT_PANEL_LAYOUT_MONTH,           /**< Month layout */
+        ELM_INPUT_PANEL_LAYOUT_NUMBERONLY,      /**< Number Only layout */
+        ELM_INPUT_PANEL_LAYOUT_INVALID
+     } Elm_Input_Panel_Layout;
+
+   typedef enum
+     {
+        ELM_AUTOCAPITAL_TYPE_NONE,
+        ELM_AUTOCAPITAL_TYPE_WORD,
+        ELM_AUTOCAPITAL_TYPE_SENTENCE,
+        ELM_AUTOCAPITAL_TYPE_ALLCHARACTER,
+     } Elm_Autocapital_Type;
 
    /**
     * @typedef Elm_Object_Item
@@ -371,7 +609,7 @@ extern "C" {
     * @return The init counter value.
     *
     * This function initializes Elementary and increments a counter of
-    * the number of calls to it. It returs the new counter's value.
+    * the number of calls to it. It returns the new counter's value.
     *
     * @warning This call is exported only for use by the @c ELM_MAIN()
     * macro. There is no need to use this if you use this macro (which
@@ -433,8 +671,8 @@ extern "C" {
     * @see elm_init() for an example. There, just after a request to
     * close the window comes, the main loop will be left.
     *
-    * @note By using the #ELM_POLICY_QUIT on your Elementary
-    * applications, you'll this function called automatically for you.
+    * @note By using the appropriate #ELM_POLICY_QUIT on your Elementary
+    * applications, you'll be able to get this function called automatically for you.
     *
     * @ingroup General
     */
@@ -496,7 +734,7 @@ extern "C" {
     * shared data directory for data files. For example, if the system
     * directory is @c /usr/local/share, then this directory name is
     * appended, creating @c /usr/local/share/myapp, if it @p was @c
-    * "myapp". It is expected the application installs data files in
+    * "myapp". It is expected that the application installs data files in
     * this directory.
     *
     * The @p checkfile is a file name or path of something inside the
@@ -520,7 +758,7 @@ extern "C" {
 
    /**
     * Provide information on the @b fallback application's binaries
-    * directory, on scenarios where they get overriden by
+    * directory, in scenarios where they get overriden by
     * elm_app_info_set().
     *
     * @param dir The path to the default binaries directory (compile time
@@ -590,7 +828,7 @@ extern "C" {
     * elm_app_info_set() and the way (environment) the application was
     * run from.
     *
-    * @return The directory prefix the application is actually using
+    * @return The directory prefix the application is actually using.
     */
    EAPI const char  *elm_app_prefix_dir_get(void);
 
@@ -600,7 +838,7 @@ extern "C" {
     * was run from.
     *
     * @return The binaries directory prefix the application is actually
-    * using
+    * using.
     */
    EAPI const char  *elm_app_bin_dir_get(void);
 
@@ -610,7 +848,7 @@ extern "C" {
     * was run from.
     *
     * @return The libraries directory prefix the application is actually
-    * using
+    * using.
     */
    EAPI const char  *elm_app_lib_dir_get(void);
 
@@ -620,7 +858,7 @@ extern "C" {
     * was run from.
     *
     * @return The data directory prefix the application is actually
-    * using
+    * using.
     */
    EAPI const char  *elm_app_data_dir_get(void);
 
@@ -630,7 +868,7 @@ extern "C" {
     * was run from.
     *
     * @return The locale directory prefix the application is actually
-    * using
+    * using.
     */
    EAPI const char  *elm_app_locale_dir_get(void);
 
@@ -674,7 +912,7 @@ extern "C" {
    EAPI Eina_Bool    elm_policy_set(unsigned int policy, int value);
 
    /**
-    * Gets the policy value set for given policy identifier.
+    * Gets the policy value for given policy identifier.
     *
     * @param policy policy identifier, as in #Elm_Policy.
     * @return The currently set policy value, for that
@@ -685,6 +923,27 @@ extern "C" {
    EAPI int          elm_policy_get(unsigned int policy);
 
    /**
+    * Change the language of the current application
+    *
+    * The @p lang passed must be the full name of the locale to use, for
+    * example "en_US.utf8" or "es_ES@euro".
+    *
+    * Changing language with this function will make Elementary run through
+    * all its widgets, translating strings set with
+    * elm_object_domain_translatable_text_part_set(). This way, an entire
+    * UI can have its language changed without having to restart the program.
+    *
+    * For more complex cases, like having formatted strings that need
+    * translation, widgets will also emit a "language,changed" signal that
+    * the user can listen to to manually translate the text.
+    *
+    * @param lang Language to set, must be the full name of the locale
+    *
+    * @ingroup General
+    */
+   EAPI void         elm_language_set(const char *lang);
+
+   /**
     * Set a label of an object
     *
     * @param obj The Elementary object
@@ -784,7 +1043,7 @@ extern "C" {
     *
     * @ingroup General
     */
-   EAPI Evas_Object *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *item);
+   EAPI Evas_Object *elm_object_item_content_part_get(const Elm_Object_Item *it, const char *part);
 
 #define elm_object_item_content_get(it) elm_object_item_content_part_get((it), NULL)
 
@@ -803,7 +1062,7 @@ extern "C" {
 #define elm_object_item_content_unset(it, content) elm_object_item_content_part_unset((it), (content))
 
    /**
-    * Set a label of an objec itemt
+    * Set a label of an object item
     *
     * @param it The Elementary object item
     * @param part The text part name to set (NULL for the default label)
@@ -818,7 +1077,7 @@ extern "C" {
 #define elm_object_item_text_set(it, label) elm_object_item_text_part_set((it), NULL, (label))
 
    /**
-    * Get a label of an object
+    * Get a label of an object item
     *
     * @param it The Elementary object item
     * @param part The text part name to get (NULL for the default label)
@@ -830,6 +1089,8 @@ extern "C" {
     */
    EAPI const char *elm_object_item_text_part_get(const Elm_Object_Item *it, const char *part);
 
+#define elm_object_item_text_get(it) elm_object_item_text_part_get((it), NULL)
+
    /**
     * Set the text to read out when in accessibility mode
     *
@@ -850,9 +1111,6 @@ extern "C" {
     */
    EAPI void elm_object_item_access_info_set(Elm_Object_Item *it, const char *txt);
 
-
-#define elm_object_item_text_get(it) elm_object_item_text_part_get((it), NULL)
-
    /**
     * Get the data associated with an object item
     * @param it The object item
@@ -889,28 +1147,250 @@ extern "C" {
     * @}
     */
 
+   /**
+    * @defgroup Caches Caches
+    *
+    * These are functions which let one fine-tune some cache values for
+    * Elementary applications, thus allowing for performance adjustments.
+    *
+    * @{
+    */
+
+   /**
+    * @brief Flush all caches.
+    *
+    * Frees all data that was in cache and is not currently being used to reduce
+    * memory usage. This frees Edje's, Evas' and Eet's cache. This is equivalent
+    * to calling all of the following functions:
+    * @li edje_file_cache_flush()
+    * @li edje_collection_cache_flush()
+    * @li eet_clearcache()
+    * @li evas_image_cache_flush()
+    * @li evas_font_cache_flush()
+    * @li evas_render_dump()
+    * @note Evas caches are flushed for every canvas associated with a window.
+    *
+    * @ingroup Caches
+    */
    EAPI void         elm_all_flush(void);
+
+   /**
+    * Get the configured cache flush interval time
+    *
+    * This gets the globally configured cache flush interval time, in
+    * ticks
+    *
+    * @return The cache flush interval time
+    * @ingroup Caches
+    *
+    * @see elm_all_flush()
+    */
    EAPI int          elm_cache_flush_interval_get(void);
+
+   /**
+    * Set the configured cache flush interval time
+    *
+    * This sets the globally configured cache flush interval time, in ticks
+    *
+    * @param size The cache flush interval time
+    * @ingroup Caches
+    *
+    * @see elm_all_flush()
+    */
    EAPI void         elm_cache_flush_interval_set(int size);
+
+   /**
+    * Set the configured cache flush interval time for all applications on the
+    * display
+    *
+    * This sets the globally configured cache flush interval time -- in ticks
+    * -- for all applications on the display.
+    *
+    * @param size The cache flush interval time
+    * @ingroup Caches
+    */
    EAPI void         elm_cache_flush_interval_all_set(int size);
+
+   /**
+    * Get the configured cache flush enabled state
+    *
+    * This gets the globally configured cache flush state - if it is enabled
+    * or not. When cache flushing is enabled, elementary will regularly
+    * (see elm_cache_flush_interval_get() ) flush caches and dump data out of
+    * memory and allow usage to re-seed caches and data in memory where it
+    * can do so. An idle application will thus minimise its memory usage as
+    * data will be freed from memory and not be re-loaded as it is idle and
+    * not rendering or doing anything graphically right now.
+    *
+    * @return The cache flush state
+    * @ingroup Caches
+    *
+    * @see elm_all_flush()
+    */
    EAPI Eina_Bool    elm_cache_flush_enabled_get(void);
+
+   /**
+    * Set the configured cache flush enabled state
+    *
+    * This sets the globally configured cache flush enabled state.
+    *
+    * @param size The cache flush enabled state
+    * @ingroup Caches
+    *
+    * @see elm_all_flush()
+    */
    EAPI void         elm_cache_flush_enabled_set(Eina_Bool enabled);
+
+   /**
+    * Set the configured cache flush enabled state for all applications on the
+    * display
+    *
+    * This sets the globally configured cache flush enabled state for all
+    * applications on the display.
+    *
+    * @param size The cache flush enabled state
+    * @ingroup Caches
+    */
    EAPI void         elm_cache_flush_enabled_all_set(Eina_Bool enabled);
+
+   /**
+    * Get the configured font cache size
+    *
+    * This gets the globally configured font cache size, in bytes.
+    *
+    * @return The font cache size
+    * @ingroup Caches
+    */
    EAPI int          elm_font_cache_get(void);
+
+   /**
+    * Set the configured font cache size
+    *
+    * This sets the globally configured font cache size, in bytes
+    *
+    * @param size The font cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_font_cache_set(int size);
+
+   /**
+    * Set the configured font cache size for all applications on the
+    * display
+    *
+    * This sets the globally configured font cache size -- in bytes
+    * -- for all applications on the display.
+    *
+    * @param size The font cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_font_cache_all_set(int size);
+
+   /**
+    * Get the configured image cache size
+    *
+    * This gets the globally configured image cache size, in bytes
+    *
+    * @return The image cache size
+    * @ingroup Caches
+    */
    EAPI int          elm_image_cache_get(void);
+
+   /**
+    * Set the configured image cache size
+    *
+    * This sets the globally configured image cache size, in bytes
+    *
+    * @param size The image cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_image_cache_set(int size);
+
+   /**
+    * Set the configured image cache size for all applications on the
+    * display
+    *
+    * This sets the globally configured image cache size -- in bytes
+    * -- for all applications on the display.
+    *
+    * @param size The image cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_image_cache_all_set(int size);
+
+   /**
+    * Get the configured edje file cache size.
+    *
+    * This gets the globally configured edje file cache size, in number
+    * of files.
+    *
+    * @return The edje file cache size
+    * @ingroup Caches
+    */
    EAPI int          elm_edje_file_cache_get(void);
+
+   /**
+    * Set the configured edje file cache size
+    *
+    * This sets the globally configured edje file cache size, in number
+    * of files.
+    *
+    * @param size The edje file cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_edje_file_cache_set(int size);
+
+   /**
+    * Set the configured edje file cache size for all applications on the
+    * display
+    *
+    * This sets the globally configured edje file cache size -- in number
+    * of files -- for all applications on the display.
+    *
+    * @param size The edje file cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_edje_file_cache_all_set(int size);
+
+   /**
+    * Get the configured edje collections (groups) cache size.
+    *
+    * This gets the globally configured edje collections cache size, in
+    * number of collections.
+    *
+    * @return The edje collections cache size
+    * @ingroup Caches
+    */
    EAPI int          elm_edje_collection_cache_get(void);
+
+   /**
+    * Set the configured edje collections (groups) cache size
+    *
+    * This sets the globally configured edje collections cache size, in
+    * number of collections.
+    *
+    * @param size The edje collections cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_edje_collection_cache_set(int size);
+
+   /**
+    * Set the configured edje collections (groups) cache size for all
+    * applications on the display
+    *
+    * This sets the globally configured edje collections cache size -- in
+    * number of collections -- for all applications on the display.
+    *
+    * @param size The edje collections cache size
+    * @ingroup Caches
+    */
    EAPI void         elm_edje_collection_cache_all_set(int size);
 
    /**
-    * @defgroup Scaling Selective Widget Scaling
+    * @}
+    */
+
+   /**
+    * @defgroup Scaling Widget Scaling
     *
     * Different widgets can be scaled independently. These functions
     * allow you to manipulate this scaling on a per-widget basis. The
@@ -951,7 +1431,7 @@ extern "C" {
     * Last show feature of password mode enables user to view
     * the last input entered for few seconds before masking it.
     * These functions allow to set this feature in password mode
-    * of entry widget and also allow to manipulate the duration 
+    * of entry widget and also allow to manipulate the duration
     * for which the input has to be visible.
     *
     * @{
@@ -960,7 +1440,7 @@ extern "C" {
    /**
     * Get show last setting of password mode.
     *
-    * This gets the show last input setting of password mode which might be 
+    * This gets the show last input setting of password mode which might be
     * enabled or disabled.
     *
     * @return @c EINA_TRUE, if the last input show setting is enabled, @c EINA_FALSE
@@ -1007,28 +1487,78 @@ extern "C" {
     * @}
     */
 
-   EAPI Eina_Bool    elm_object_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI void         elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
-   EAPI Eina_Bool    elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI void         elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
    /**
-    * Set the style to use by a widget
+    * @defgroup UI-Mirroring Selective Widget mirroring
     *
-    * Sets the style name that will define the appearance of a widget. Styles
-    * vary from widget to widget and may also be defined by other themes
-    * by means of extensions and overlays.
+    * These functions allow you to set ui-mirroring on specific
+    * widgets or the whole interface. Widgets can be in one of two
+    * modes, automatic and manual.  Automatic means they'll be changed
+    * according to the system mirroring mode and manual means only
+    * explicit changes will matter. You are not supposed to change
+    * mirroring state of a widget set to automatic, will mostly work,
+    * but the behavior is not really defined.
     *
-    * @param obj The Elementary widget to style
-    * @param style The style name to use
+    * @{
+    */
+
+   /**
+    * Get the system mirrored mode. This determines the default mirrored mode
+    * of widgets.
     *
-    * @see elm_theme_extension_add()
-    * @see elm_theme_overlay_add()
+    * @return EINA_TRUE if mirrored is set, EINA_FALSE otherwise
+    */
+   EAPI Eina_Bool    elm_object_mirrored_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Set the system mirrored mode. This determines the default mirrored mode
+    * of widgets.
     *
-    * @ingroup Theme
+    * @param mirrored EINA_TRUE to set mirrored mode, EINA_FALSE to unset it.
     */
-   EAPI void         elm_object_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
+   EAPI void         elm_object_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) EINA_ARG_NONNULL(1);
+
    /**
-    * Get the style used by the widget
+    * Returns the widget's mirrored mode setting.
+    *
+    * @param obj The widget.
+    * @return mirrored mode setting of the object.
+    *
+    **/
+   EAPI Eina_Bool    elm_object_mirrored_automatic_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Sets the widget's mirrored mode setting.
+    * When widget in automatic mode, it follows the system mirrored mode set by
+    * elm_mirrored_set().
+    * @param obj The widget.
+    * @param automatic EINA_TRUE for auto mirrored mode. EINA_FALSE for manual.
+    */
+   EAPI void         elm_object_mirrored_automatic_set(Evas_Object *obj, Eina_Bool automatic) EINA_ARG_NONNULL(1);
+
+   /**
+    * @}
+    */
+
+   /**
+    * Set the style to use by a widget
+    *
+    * Sets the style name that will define the appearance of a widget. Styles
+    * vary from widget to widget and may also be defined by other themes
+    * by means of extensions and overlays.
+    *
+    * @param obj The Elementary widget to style
+    * @param style The style name to use
+    *
+    * @see elm_theme_extension_add()
+    * @see elm_theme_extension_del()
+    * @see elm_theme_overlay_add()
+    * @see elm_theme_overlay_del()
+    *
+    * @ingroup Styles
+    */
+   EAPI void         elm_object_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
+   /**
+    * Get the style used by the widget
     *
     * This gets the style being used for that widget. Note that the string
     * pointer is only valid as longas the object is valid and the style doesn't
@@ -1039,7 +1569,7 @@ extern "C" {
     *
     * @see elm_object_style_set()
     *
-    * @ingroup Theme
+    * @ingroup Styles
     */
    EAPI const char  *elm_object_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
 
@@ -1098,6 +1628,14 @@ extern "C" {
     * some of these functions.
     */
 
+   /**
+    * Check if the given Evas Object is an Elementary widget.
+    *
+    * @param obj the object to query.
+    * @return @c EINA_TRUE if it is an elementary widget variant,
+    *         @c EINA_FALSE otherwise
+    * @ingroup WidgetNavigation
+    */
    EAPI Eina_Bool    elm_object_widget_check(const Evas_Object *obj) EINA_ARG_NONNULL(1);
 
    /**
@@ -1119,30 +1657,249 @@ extern "C" {
     * @ingroup WidgetNavigation
     */
    EAPI Evas_Object *elm_object_parent_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Get the top level parent of an Elementary widget.
+    *
+    * @param obj The object to query.
+    * @return The top level Elementary widget, or @c NULL if parent cannot be
+    * found.
+    * @ingroup WidgetNavigation
+    */
    EAPI Evas_Object *elm_object_top_widget_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Get the string that represents this Elementary widget.
+    *
+    * @note Elementary is weird and exposes itself as a single
+    *       Evas_Object_Smart_Class of type "elm_widget", so
+    *       evas_object_type_get() always return that, making debug and
+    *       language bindings hard. This function tries to mitigate this
+    *       problem, but the solution is to change Elementary to use
+    *       proper inheritance.
+    *
+    * @param obj the object to query.
+    * @return Elementary widget name, or @c NULL if not a valid widget.
+    * @ingroup WidgetNavigation
+    */
    EAPI const char  *elm_object_widget_type_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
 
+   /**
+    * @defgroup Config Elementary Config
+    *
+    * Elementary configuration is formed by a set options bounded to a
+    * given @ref Profile profile, like @ref Theme theme, @ref Fingers
+    * "finger size", etc. These are functions with which one syncronizes
+    * changes made to those values to the configuration storing files, de
+    * facto. You most probably don't want to use the functions in this
+    * group unlees you're writing an elementary configuration manager.
+    *
+    * @{
+    */
    EAPI double       elm_scale_get(void);
    EAPI void         elm_scale_set(double scale);
    EAPI void         elm_scale_all_set(double scale);
 
+   /**
+    * Save back Elementary's configuration, so that it will persist on
+    * future sessions.
+    *
+    * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
+    * @ingroup Config
+    *
+    * This function will take effect -- thus, do I/O -- immediately. Use
+    * it when you want to apply all configuration changes at once. The
+    * current configuration set will get saved onto the current profile
+    * configuration file.
+    *
+    */
    EAPI Eina_Bool    elm_mirrored_get(void);
    EAPI void         elm_mirrored_set(Eina_Bool mirrored);
 
+   /**
+    * Reload Elementary's configuration, bounded to current selected
+    * profile.
+    *
+    * @return @c EINA_TRUE, when sucessful. @c EINA_FALSE, otherwise.
+    * @ingroup Config
+    *
+    * Useful when you want to force reloading of configuration values for
+    * a profile. If one removes user custom configuration directories,
+    * for example, it will force a reload with system values insted.
+    *
+    */
    EAPI Eina_Bool    elm_config_save(void);
    EAPI void         elm_config_reload(void);
 
+   /**
+    * @}
+    */
+
+   /**
+    * @defgroup Profile Elementary Profile
+    *
+    * Profiles are pre-set options that affect the whole look-and-feel of
+    * Elementary-based applications. There are, for example, profiles
+    * aimed at desktop computer applications and others aimed at mobile,
+    * touchscreen-based ones. You most probably don't want to use the
+    * functions in this group unlees you're writing an elementary
+    * configuration manager.
+    *
+    * @{
+    */
+
+   /**
+    * Get Elementary's profile in use.
+    *
+    * This gets the global profile that is applied to all Elementary
+    * applications.
+    *
+    * @return The profile's name
+    * @ingroup Profile
+    */
    EAPI const char  *elm_profile_current_get(void);
+
+   /**
+    * Get an Elementary's profile directory path in the filesystem. One
+    * may want to fetch a system profile's dir or an user one (fetched
+    * inside $HOME).
+    *
+    * @param profile The profile's name
+    * @param is_user Whether to lookup for an user profile (@c EINA_TRUE)
+    *                or a system one (@c EINA_FALSE)
+    * @return The profile's directory path.
+    * @ingroup Profile
+    *
+    * @note You must free it with elm_profile_dir_free().
+    */
    EAPI const char  *elm_profile_dir_get(const char *profile, Eina_Bool is_user);
+
+   /**
+    * Free an Elementary's profile directory path, as returned by
+    * elm_profile_dir_get().
+    *
+    * @param p_dir The profile's path
+    * @ingroup Profile
+    *
+    */
    EAPI void         elm_profile_dir_free(const char *p_dir);
+
+   /**
+    * Get Elementary's list of available profiles.
+    *
+    * @return The profiles list. List node data are the profile name
+    *         strings.
+    * @ingroup Profile
+    *
+    * @note One must free this list, after usage, with the function
+    *       elm_profile_list_free().
+    */
    EAPI Eina_List   *elm_profile_list_get(void);
+
+   /**
+    * Free Elementary's list of available profiles.
+    *
+    * @param l The profiles list, as returned by elm_profile_list_get().
+    * @ingroup Profile
+    *
+    */
    EAPI void         elm_profile_list_free(Eina_List *l);
+
+   /**
+    * Set Elementary's profile.
+    *
+    * This sets the global profile that is applied to Elementary
+    * applications. Just the process the call comes from will be
+    * affected.
+    *
+    * @param profile The profile's name
+    * @ingroup Profile
+    *
+    */
    EAPI void         elm_profile_set(const char *profile);
+
+   /**
+    * Set Elementary's profile.
+    *
+    * This sets the global profile that is applied to all Elementary
+    * applications. All running Elementary windows will be affected.
+    *
+    * @param profile The profile's name
+    * @ingroup Profile
+    *
+    */
    EAPI void         elm_profile_all_set(const char *profile);
 
+   /**
+    * @}
+    */
+
+   /**
+    * @defgroup Engine Elementary Engine
+    *
+    * These are functions setting and querying which rendering engine
+    * Elementary will use for drawing its windows' pixels.
+    *
+    * The following are the available engines:
+    * @li "software_x11"
+    * @li "fb"
+    * @li "directfb"
+    * @li "software_16_x11"
+    * @li "software_8_x11"
+    * @li "xrender_x11"
+    * @li "opengl_x11"
+    * @li "software_gdi"
+    * @li "software_16_wince_gdi"
+    * @li "sdl"
+    * @li "software_16_sdl"
+    * @li "opengl_sdl"
+    * @li "buffer"
+    * @li "ews"
+    *
+    * @{
+    */
+
+   /**
+    * @brief Get Elementary's rendering engine in use.
+    *
+    * @return The rendering engine's name
+    * @note there's no need to free the returned string, here.
+    *
+    * This gets the global rendering engine that is applied to all Elementary
+    * applications.
+    *
+    * @see elm_engine_set()
+    */
    EAPI const char  *elm_engine_current_get(void);
+
+   /**
+    * @brief Set Elementary's rendering engine for use.
+    *
+    * @param engine The rendering engine's name
+    *
+    * This sets global rendering engine that is applied to all Elementary
+    * applications. Note that it will take effect only to Elementary windows
+    * created after this is called.
+    *
+    * @see elm_win_add()
+    */
    EAPI void         elm_engine_set(const char *engine);
 
+   /**
+    * @}
+    */
+
+   /**
+    * @defgroup Fonts Elementary Fonts
+    *
+    * These are functions dealing with font rendering, selection and the
+    * like for Elementary applications. One might fetch which system
+    * fonts are there to use and set custom fonts for individual classes
+    * of UI items containing text (text classes).
+    *
+    * @{
+    */
+
   typedef struct _Elm_Text_Class
     {
        const char *name;
@@ -1162,23 +1919,172 @@ extern "C" {
        Eina_List  *styles;
     } Elm_Font_Properties;
 
+   /**
+    * Get Elementary's list of supported text classes.
+    *
+    * @return The text classes list, with @c Elm_Text_Class blobs as data.
+    * @ingroup Fonts
+    *
+    * Release the list with elm_text_classes_list_free().
+    */
    EAPI const Eina_List     *elm_text_classes_list_get(void);
+
+   /**
+    * Free Elementary's list of supported text classes.
+    *
+    * @ingroup Fonts
+    *
+    * @see elm_text_classes_list_get().
+    */
    EAPI void                 elm_text_classes_list_free(const Eina_List *list);
 
+   /**
+    * Get Elementary's list of font overlays, set with
+    * elm_font_overlay_set().
+    *
+    * @return The font overlays list, with @c Elm_Font_Overlay blobs as
+    * data.
+    *
+    * @ingroup Fonts
+    *
+    * For each text class, one can set a <b>font overlay</b> for it,
+    * overriding the default font properties for that class coming from
+    * the theme in use. There is no need to free this list.
+    *
+    * @see elm_font_overlay_set() and elm_font_overlay_unset().
+    */
    EAPI const Eina_List     *elm_font_overlay_list_get(void);
+
+   /**
+    * Set a font overlay for a given Elementary text class.
+    *
+    * @param text_class Text class name
+    * @param font Font name and style string
+    * @param size Font size
+    *
+    * @ingroup Fonts
+    *
+    * @p font has to be in the format returned by
+    * elm_font_fontconfig_name_get(). @see elm_font_overlay_list_get()
+    * and elm_font_overlay_unset().
+    */
    EAPI void                 elm_font_overlay_set(const char *text_class, const char *font, Evas_Font_Size size);
+
+   /**
+    * Unset a font overlay for a given Elementary text class.
+    *
+    * @param text_class Text class name
+    *
+    * @ingroup Fonts
+    *
+    * This will bring back text elements belonging to text class
+    * @p text_class back to their default font settings.
+    */
    EAPI void                 elm_font_overlay_unset(const char *text_class);
+
+   /**
+    * Apply the changes made with elm_font_overlay_set() and
+    * elm_font_overlay_unset() on the current Elementary window.
+    *
+    * @ingroup Fonts
+    *
+    * This applies all font overlays set to all objects in the UI.
+    */
    EAPI void                 elm_font_overlay_apply(void);
+
+   /**
+    * Apply the changes made with elm_font_overlay_set() and
+    * elm_font_overlay_unset() on all Elementary application windows.
+    *
+    * @ingroup Fonts
+    *
+    * This applies all font overlays set to all objects in the UI.
+    */
    EAPI void                 elm_font_overlay_all_apply(void);
 
+   /**
+    * Translate a font (family) name string in fontconfig's font names
+    * syntax into an @c Elm_Font_Properties struct.
+    *
+    * @param font The font name and styles string
+    * @return the font properties struct
+    *
+    * @ingroup Fonts
+    *
+    * @note The reverse translation can be achived with
+    * elm_font_fontconfig_name_get(), for one style only (single font
+    * instance, not family).
+    */
    EAPI Elm_Font_Properties *elm_font_properties_get(const char *font) EINA_ARG_NONNULL(1);
+
+   /**
+    * Free font properties return by elm_font_properties_get().
+    *
+    * @param efp the font properties struct
+    *
+    * @ingroup Fonts
+    */
    EAPI void                 elm_font_properties_free(Elm_Font_Properties *efp) EINA_ARG_NONNULL(1);
+
+   /**
+    * Translate a font name, bound to a style, into fontconfig's font names
+    * syntax.
+    *
+    * @param name The font (family) name
+    * @param style The given style (may be @c NULL)
+    *
+    * @return the font name and style string
+    *
+    * @ingroup Fonts
+    *
+    * @note The reverse translation can be achived with
+    * elm_font_properties_get(), for one style only (single font
+    * instance, not family).
+    */
    EAPI const char          *elm_font_fontconfig_name_get(const char *name, const char *style) EINA_ARG_NONNULL(1);
+
+   /**
+    * Free the font string return by elm_font_fontconfig_name_get().
+    *
+    * @param efp the font properties struct
+    *
+    * @ingroup Fonts
+    */
    EAPI void                 elm_font_fontconfig_name_free(const char *name) EINA_ARG_NONNULL(1);
+
+   /**
+    * Create a font hash table of available system fonts.
+    *
+    * One must call it with @p list being the return value of
+    * evas_font_available_list(). The hash will be indexed by font
+    * (family) names, being its values @c Elm_Font_Properties blobs.
+    *
+    * @param list The list of available system fonts, as returned by
+    * evas_font_available_list().
+    * @return the font hash.
+    *
+    * @ingroup Fonts
+    *
+    * @note The user is supposed to get it populated at least with 3
+    * default font families (Sans, Serif, Monospace), which should be
+    * present on most systems.
+    */
    EAPI Eina_Hash           *elm_font_available_hash_add(Eina_List *list);
+
+   /**
+    * Free the hash return by elm_font_available_hash_add().
+    *
+    * @param hash the hash to be freed.
+    *
+    * @ingroup Fonts
+    */
    EAPI void                 elm_font_available_hash_del(Eina_Hash *hash);
 
    /**
+    * @}
+    */
+
+   /**
     * @defgroup Fingers Fingers
     *
     * Elementary is designed to be finger-friendly for touchscreens,
@@ -1191,6 +2097,8 @@ extern "C" {
     *
     * @ref general_functions_example_page "This" example contemplates
     * some of these functions.
+    *
+    * @{
     */
 
    /**
@@ -1203,10 +2111,33 @@ extern "C" {
     * @ingroup Fingers
     */
    EAPI Evas_Coord       elm_finger_size_get(void);
+
+   /**
+    * Set the configured finger size
+    *
+    * This sets the globally configured finger size in pixels
+    *
+    * @param size The finger size
+    * @ingroup Fingers
+    */
    EAPI void             elm_finger_size_set(Evas_Coord size);
+
+   /**
+    * Set the configured finger size for all applications on the display
+    *
+    * This sets the globally configured finger size in pixels for all
+    * applications on the display
+    *
+    * @param size The finger size
+    * @ingroup Fingers
+    */
    EAPI void             elm_finger_size_all_set(Evas_Coord size);
 
    /**
+    * @}
+    */
+
+   /**
     * @defgroup Focus Focus
     *
     * An Elementary application has, at all times, one (and only one)
@@ -1240,9 +2171,40 @@ extern "C" {
     * some of these functions.
     */
 
+   /**
+    * Get the enable status of the focus highlight
+    *
+    * This gets whether the highlight on focused objects is enabled or not
+    * @ingroup Focus
+    */
    EAPI Eina_Bool        elm_focus_highlight_enabled_get(void);
+
+   /**
+    * Set the enable status of the focus highlight
+    *
+    * Set whether to show or not the highlight on focused objects
+    * @param enable Enable highlight if EINA_TRUE, disable otherwise
+    * @ingroup Focus
+    */
    EAPI void             elm_focus_highlight_enabled_set(Eina_Bool enable);
+
+   /**
+    * Get the enable status of the highlight animation
+    *
+    * Get whether the focus highlight, if enabled, will animate its switch from
+    * one object to the next
+    * @ingroup Focus
+    */
    EAPI Eina_Bool        elm_focus_highlight_animate_get(void);
+
+   /**
+    * Set the enable status of the highlight animation
+    *
+    * Set whether the focus highlight, if enabled, will animate its switch from
+    * one object to the next
+    * @param animate Enable animation if EINA_TRUE, disable otherwise
+    * @ingroup Focus
+    */
    EAPI void             elm_focus_highlight_animate_set(Eina_Bool animate);
 
    /**
@@ -1252,7 +2214,7 @@ extern "C" {
     * @return @c EINA_TRUE, if the object is focused, @c EINA_FALSE if
     *            not (and on errors).
     *
-    * @see elm_object_focus()
+    * @see elm_object_focus_set()
     *
     * @ingroup Focus
     */
@@ -1281,132 +2243,804 @@ extern "C" {
     * This removes the focus from @p obj, passing it back to the
     * previous element in the focus chain list.
     *
-    * @see elm_object_focus() and elm_object_focus_custom_chain_get()
+    * @see elm_object_focus() and elm_object_focus_custom_chain_get()
+    *
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_unfocus(Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Set the ability for an Element object to be focused
+    *
+    * @param obj The Elementary object to operate on
+    * @param enable @c EINA_TRUE if the object can be focused, @c
+    *        EINA_FALSE if not (and on errors)
+    *
+    * This sets whether the object @p obj is able to take focus or
+    * not. Unfocusable objects do nothing when programmatically
+    * focused, being the nearest focusable parent object the one
+    * really getting focus. Also, when they receive mouse input, they
+    * will get the event, but not take away the focus from where it
+    * was previously.
+    *
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_focus_allow_set(Evas_Object *obj, Eina_Bool enable) EINA_ARG_NONNULL(1);
+
+   /**
+    * Get whether an Elementary object is focusable or not
+    *
+    * @param obj The Elementary object to operate on
+    * @return @c EINA_TRUE if the object is allowed to be focused, @c
+    *             EINA_FALSE if not (and on errors)
+    *
+    * @note Objects which are meant to be interacted with by input
+    * events are created able to be focused, by default. All the
+    * others are not.
+    *
+    * @ingroup Focus
+    */
+   EAPI Eina_Bool        elm_object_focus_allow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Set custom focus chain.
+    *
+    * This function overwrites any previous custom focus chain within
+    * the list of objects. The previous list will be deleted and this list
+    * will be managed by elementary. After it is set, don't modify it.
+    *
+    * @note On focus cycle, only will be evaluated children of this container.
+    *
+    * @param obj The container object
+    * @param objs Chain of objects to pass focus
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
+
+   /**
+    * Unset a custom focus chain on a given Elementary widget
+    *
+    * @param obj The container object to remove focus chain from
+    *
+    * Any focus chain previously set on @p obj (for its child objects)
+    * is removed entirely after this call.
+    *
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Get custom focus chain
+    *
+    * @param obj The container object
+    * @ingroup Focus
+    */
+   EAPI const Eina_List *elm_object_focus_custom_chain_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Append object to custom focus chain.
+    *
+    * @note If relative_child equal to NULL or not in custom chain, the object
+    * will be added in end.
+    *
+    * @note On focus cycle, only will be evaluated children of this container.
+    *
+    * @param obj The container object
+    * @param child The child to be added in custom chain
+    * @param relative_child The relative object to position the child
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
+
+   /**
+    * Prepend object to custom focus chain.
+    *
+    * @note If relative_child equal to NULL or not in custom chain, the object
+    * will be added in begin.
+    *
+    * @note On focus cycle, only will be evaluated children of this container.
+    *
+    * @param obj The container object
+    * @param child The child to be added in custom chain
+    * @param relative_child The relative object to position the child
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
+
+   /**
+    * Give focus to next object in object tree.
+    *
+    * Give focus to next object in focus chain of one object sub-tree.
+    * If the last object of chain already have focus, the focus will go to the
+    * first object of chain.
+    *
+    * @param obj The object root of sub-tree
+    * @param dir Direction to cycle the focus
+    *
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir) EINA_ARG_NONNULL(1);
+
+   /**
+    * Give focus to near object in one direction.
+    *
+    * Give focus to near object in direction of one object.
+    * If none focusable object in given direction, the focus will not change.
+    *
+    * @param obj The reference object
+    * @param x Horizontal component of direction to focus
+    * @param y Vertical component of direction to focus
+    *
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_focus_direction_go(Evas_Object *obj, int x, int y) EINA_ARG_NONNULL(1);
+
+   /**
+    * Make the elementary object and its children to be unfocusable
+    * (or focusable).
+    *
+    * @param obj The Elementary object to operate on
+    * @param tree_unfocusable @c EINA_TRUE for unfocusable,
+    *        @c EINA_FALSE for focusable.
+    *
+    * This sets whether the object @p obj and its children objects
+    * are able to take focus or not. If the tree is set as unfocusable,
+    * newest focused object which is not in this tree will get focus.
+    * This API can be helpful for an object to be deleted.
+    * When an object will be deleted soon, it and its children may not
+    * want to get focus (by focus reverting or by other focus controls).
+    * Then, just use this API before deleting.
+    *
+    * @see elm_object_tree_unfocusable_get()
+    *
+    * @ingroup Focus
+    */
+   EAPI void             elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable); EINA_ARG_NONNULL(1);
+
+   /**
+    * Get whether an Elementary object and its children are unfocusable or not.
+    *
+    * @param obj The Elementary object to get the information from
+    * @return @c EINA_TRUE, if the tree is unfocussable,
+    *         @c EINA_FALSE if not (and on errors).
+    *
+    * @see elm_object_tree_unfocusable_set()
+    *
+    * @ingroup Focus
+    */
+   EAPI Eina_Bool        elm_object_tree_unfocusable_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
+
+   /**
+    * @defgroup Scrolling Scrolling
+    *
+    * These are functions setting how scrollable views in Elementary
+    * widgets should behave on user interaction.
+    *
+    * @{
+    */
+
+   /**
+    * Get whether scrollers should bounce when they reach their
+    * viewport's edge during a scroll.
+    *
+    * @return the thumb scroll bouncing state
+    *
+    * This is the default behavior for touch screens, in general.
+    * @ingroup Scrolling
+    */
+   EAPI Eina_Bool        elm_scroll_bounce_enabled_get(void);
+
+   /**
+    * Set whether scrollers should bounce when they reach their
+    * viewport's edge during a scroll.
+    *
+    * @param enabled the thumb scroll bouncing state
+    *
+    * @see elm_thumbscroll_bounce_enabled_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_bounce_enabled_set(Eina_Bool enabled);
+
+   /**
+    * Set whether scrollers should bounce when they reach their
+    * viewport's edge during a scroll, for all Elementary application
+    * windows.
+    *
+    * @param enabled the thumb scroll bouncing state
+    *
+    * @see elm_thumbscroll_bounce_enabled_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
+
+   /**
+    * Get the amount of inertia a scroller will impose at bounce
+    * animations.
+    *
+    * @return the thumb scroll bounce friction
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_bounce_friction_get(void);
+
+   /**
+    * Set the amount of inertia a scroller will impose at bounce
+    * animations.
+    *
+    * @param friction the thumb scroll bounce friction
+    *
+    * @see elm_thumbscroll_bounce_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_bounce_friction_set(double friction);
+
+   /**
+    * Set the amount of inertia a scroller will impose at bounce
+    * animations, for all Elementary application windows.
+    *
+    * @param friction the thumb scroll bounce friction
+    *
+    * @see elm_thumbscroll_bounce_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_bounce_friction_all_set(double friction);
+
+   /**
+    * Get the amount of inertia a <b>paged</b> scroller will impose at
+    * page fitting animations.
+    *
+    * @return the page scroll friction
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_page_scroll_friction_get(void);
+
+   /**
+    * Set the amount of inertia a <b>paged</b> scroller will impose at
+    * page fitting animations.
+    *
+    * @param friction the page scroll friction
+    *
+    * @see elm_thumbscroll_page_scroll_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_page_scroll_friction_set(double friction);
+
+   /**
+    * Set the amount of inertia a <b>paged</b> scroller will impose at
+    * page fitting animations, for all Elementary application windows.
+    *
+    * @param friction the page scroll friction
+    *
+    * @see elm_thumbscroll_page_scroll_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_page_scroll_friction_all_set(double friction);
+
+   /**
+    * Get the amount of inertia a scroller will impose at region bring
+    * animations.
+    *
+    * @return the bring in scroll friction
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_bring_in_scroll_friction_get(void);
+
+   /**
+    * Set the amount of inertia a scroller will impose at region bring
+    * animations.
+    *
+    * @param friction the bring in scroll friction
+    *
+    * @see elm_thumbscroll_bring_in_scroll_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_bring_in_scroll_friction_set(double friction);
+
+   /**
+    * Set the amount of inertia a scroller will impose at region bring
+    * animations, for all Elementary application windows.
+    *
+    * @param friction the bring in scroll friction
+    *
+    * @see elm_thumbscroll_bring_in_scroll_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_bring_in_scroll_friction_all_set(double friction);
+
+   /**
+    * Get the amount of inertia scrollers will impose at animations
+    * triggered by Elementary widgets' zooming API.
+    *
+    * @return the zoom friction
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_zoom_friction_get(void);
+
+   /**
+    * Set the amount of inertia scrollers will impose at animations
+    * triggered by Elementary widgets' zooming API.
+    *
+    * @param friction the zoom friction
+    *
+    * @see elm_thumbscroll_zoom_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_zoom_friction_set(double friction);
+
+   /**
+    * Set the amount of inertia scrollers will impose at animations
+    * triggered by Elementary widgets' zooming API, for all Elementary
+    * application windows.
+    *
+    * @param friction the zoom friction
+    *
+    * @see elm_thumbscroll_zoom_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_zoom_friction_all_set(double friction);
+
+   /**
+    * Get whether scrollers should be draggable from any point in their
+    * views.
+    *
+    * @return the thumb scroll state
+    *
+    * @note This is the default behavior for touch screens, in general.
+    * @note All other functions namespaced with "thumbscroll" will only
+    *       have effect if this mode is enabled.
+    *
+    * @ingroup Scrolling
+    */
+   EAPI Eina_Bool        elm_scroll_thumbscroll_enabled_get(void);
+
+   /**
+    * Set whether scrollers should be draggable from any point in their
+    * views.
+    *
+    * @param enabled the thumb scroll state
+    *
+    * @see elm_thumbscroll_enabled_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_enabled_set(Eina_Bool enabled);
+
+   /**
+    * Set whether scrollers should be draggable from any point in their
+    * views, for all Elementary application windows.
+    *
+    * @param enabled the thumb scroll state
+    *
+    * @see elm_thumbscroll_enabled_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
+
+   /**
+    * Get the number of pixels one should travel while dragging a
+    * scroller's view to actually trigger scrolling.
+    *
+    * @return the thumb scroll threshould
+    *
+    * One would use higher values for touch screens, in general, because
+    * of their inherent imprecision.
+    * @ingroup Scrolling
+    */
+   EAPI unsigned int     elm_scroll_thumbscroll_threshold_get(void);
+
+   /**
+    * Set the number of pixels one should travel while dragging a
+    * scroller's view to actually trigger scrolling.
+    *
+    * @param threshold the thumb scroll threshould
+    *
+    * @see elm_thumbscroll_threshould_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_threshold_set(unsigned int threshold);
+
+   /**
+    * Set the number of pixels one should travel while dragging a
+    * scroller's view to actually trigger scrolling, for all Elementary
+    * application windows.
+    *
+    * @param threshold the thumb scroll threshould
+    *
+    * @see elm_thumbscroll_threshould_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
+
+   /**
+    * Get the minimum speed of mouse cursor movement which will trigger
+    * list self scrolling animation after a mouse up event
+    * (pixels/second).
+    *
+    * @return the thumb scroll momentum threshould
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_thumbscroll_momentum_threshold_get(void);
+
+   /**
+    * Set the minimum speed of mouse cursor movement which will trigger
+    * list self scrolling animation after a mouse up event
+    * (pixels/second).
+    *
+    * @param threshold the thumb scroll momentum threshould
+    *
+    * @see elm_thumbscroll_momentum_threshould_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_momentum_threshold_set(double threshold);
+
+   /**
+    * Set the minimum speed of mouse cursor movement which will trigger
+    * list self scrolling animation after a mouse up event
+    * (pixels/second), for all Elementary application windows.
+    *
+    * @param threshold the thumb scroll momentum threshould
+    *
+    * @see elm_thumbscroll_momentum_threshould_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
+
+   /**
+    * Get the amount of inertia a scroller will impose at self scrolling
+    * animations.
+    *
+    * @return the thumb scroll friction
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_thumbscroll_friction_get(void);
+
+   /**
+    * Set the amount of inertia a scroller will impose at self scrolling
+    * animations.
+    *
+    * @param friction the thumb scroll friction
+    *
+    * @see elm_thumbscroll_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_friction_set(double friction);
+
+   /**
+    * Set the amount of inertia a scroller will impose at self scrolling
+    * animations, for all Elementary application windows.
+    *
+    * @param friction the thumb scroll friction
+    *
+    * @see elm_thumbscroll_friction_get()
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_friction_all_set(double friction);
+
+   /**
+    * Get the amount of lag between your actual mouse cursor dragging
+    * movement and a scroller's view movement itself, while pushing it
+    * into bounce state manually.
+    *
+    * @return the thumb scroll border friction
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_thumbscroll_border_friction_get(void);
+
+   /**
+    * Set the amount of lag between your actual mouse cursor dragging
+    * movement and a scroller's view movement itself, while pushing it
+    * into bounce state manually.
+    *
+    * @param friction the thumb scroll border friction. @c 0.0 for
+    *        perfect synchrony between two movements, @c 1.0 for maximum
+    *        lag.
+    *
+    * @see elm_thumbscroll_border_friction_get()
+    * @note parameter value will get bound to 0.0 - 1.0 interval, always
+    *
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_border_friction_set(double friction);
+
+   /**
+    * Set the amount of lag between your actual mouse cursor dragging
+    * movement and a scroller's view movement itself, while pushing it
+    * into bounce state manually, for all Elementary application windows.
+    *
+    * @param friction the thumb scroll border friction. @c 0.0 for
+    *        perfect synchrony between two movements, @c 1.0 for maximum
+    *        lag.
+    *
+    * @see elm_thumbscroll_border_friction_get()
+    * @note parameter value will get bound to 0.0 - 1.0 interval, always
+    *
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_border_friction_all_set(double friction);
+
+   /**
+    * Get the sensitivity amount which is be multiplied by the length of
+    * mouse dragging.
+    *
+    * @return the thumb scroll sensitivity friction
+    *
+    * @ingroup Scrolling
+    */
+   EAPI double           elm_scroll_thumbscroll_sensitivity_friction_get(void);
+
+   /**
+    * Set the sensitivity amount which is be multiplied by the length of
+    * mouse dragging.
+    *
+    * @param friction the thumb scroll sensitivity friction. @c 0.1 for
+    *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
+    *        is proper.
+    *
+    * @see elm_thumbscroll_sensitivity_friction_get()
+    * @note parameter value will get bound to 0.1 - 1.0 interval, always
+    *
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_sensitivity_friction_set(double friction);
+
+   /**
+    * Set the sensitivity amount which is be multiplied by the length of
+    * mouse dragging, for all Elementary application windows.
+    *
+    * @param friction the thumb scroll sensitivity friction. @c 0.1 for
+    *        minimun sensitivity, @c 1.0 for maximum sensitivity. 0.25
+    *        is proper.
+    *
+    * @see elm_thumbscroll_sensitivity_friction_get()
+    * @note parameter value will get bound to 0.1 - 1.0 interval, always
+    *
+    * @ingroup Scrolling
+    */
+   EAPI void             elm_scroll_thumbscroll_sensitivity_friction_all_set(double friction);
+
+   /**
+    * @}
+    */
+
+   /**
+    * @defgroup Scrollhints Scrollhints
+    *
+    * Objects when inside a scroller can scroll, but this may not always be
+    * desirable in certain situations. This allows an object to hint to itself
+    * and parents to "not scroll" in one of 2 ways. If any child object of a
+    * scroller has pushed a scroll freeze or hold then it affects all parent
+    * scrollers until all children have released them.
+    *
+    * 1. To hold on scrolling. This means just flicking and dragging may no
+    * longer scroll, but pressing/dragging near an edge of the scroller will
+    * still scroll. This is automatically used by the entry object when
+    * selecting text.
+    *
+    * 2. To totally freeze scrolling. This means it stops. until
+    * popped/released.
+    *
+    * @{
+    */
+
+   /**
+    * Push the scroll hold by 1
+    *
+    * This increments the scroll hold count by one. If it is more than 0 it will
+    * take effect on the parents of the indicated object.
+    *
+    * @param obj The object
+    * @ingroup Scrollhints
+    */
+   EAPI void             elm_object_scroll_hold_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Pop the scroll hold by 1
+    *
+    * This decrements the scroll hold count by one. If it is more than 0 it will
+    * take effect on the parents of the indicated object.
+    *
+    * @param obj The object
+    * @ingroup Scrollhints
+    */
+   EAPI void             elm_object_scroll_hold_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Push the scroll freeze by 1
+    *
+    * This increments the scroll freeze count by one. If it is more
+    * than 0 it will take effect on the parents of the indicated
+    * object.
+    *
+    * @param obj The object
+    * @ingroup Scrollhints
+    */
+   EAPI void             elm_object_scroll_freeze_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Pop the scroll freeze by 1
+    *
+    * This decrements the scroll freeze count by one. If it is more
+    * than 0 it will take effect on the parents of the indicated
+    * object.
+    *
+    * @param obj The object
+    * @ingroup Scrollhints
+    */
+   EAPI void             elm_object_scroll_freeze_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Lock the scrolling of the given widget (and thus all parents)
+    *
+    * This locks the given object from scrolling in the X axis (and implicitly
+    * also locks all parent scrollers too from doing the same).
+    *
+    * @param obj The object
+    * @param lock The lock state (1 == locked, 0 == unlocked)
+    * @ingroup Scrollhints
+    */
+   EAPI void             elm_object_scroll_lock_x_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
+
+   /**
+    * Lock the scrolling of the given widget (and thus all parents)
+    *
+    * This locks the given object from scrolling in the Y axis (and implicitly
+    * also locks all parent scrollers too from doing the same).
+    *
+    * @param obj The object
+    * @param lock The lock state (1 == locked, 0 == unlocked)
+    * @ingroup Scrollhints
+    */
+   EAPI void             elm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
+
+   /**
+    * Get the scrolling lock of the given widget
+    *
+    * This gets the lock for X axis scrolling.
+    *
+    * @param obj The object
+    * @ingroup Scrollhints
+    */
+   EAPI Eina_Bool        elm_object_scroll_lock_x_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Get the scrolling lock of the given widget
+    *
+    * This gets the lock for X axis scrolling.
+    *
+    * @param obj The object
+    * @ingroup Scrollhints
+    */
+   EAPI Eina_Bool        elm_object_scroll_lock_y_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * @}
+    */
+
+   /**
+    * Send a signal to the widget edje object.
+    *
+    * This function sends a signal to the edje object of the obj. An
+    * edje program can respond to a signal by specifying matching
+    * 'signal' and 'source' fields.
+    *
+    * @param obj The object
+    * @param emission The signal's name.
+    * @param source The signal's source.
+    * @ingroup General
+    */
+   EAPI void             elm_object_signal_emit(Evas_Object *obj, const char *emission, const char *source) EINA_ARG_NONNULL(1);
+   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);
+   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);
+
+   /**
+    * Add a callback for a signal emitted by widget edje object.
+    *
+    * This function connects a callback function to a signal emitted by the
+    * edje object of the obj.
+    * Globs can occur in either the emission or source name.
     *
-    * @ingroup Focus
+    * @param obj The object
+    * @param emission The signal's name.
+    * @param source The signal's source.
+    * @param func The callback function to be executed when the signal is
+    * emitted.
+    * @param data A pointer to data to pass in to the callback function.
+    * @ingroup General
     */
-   EAPI void             elm_object_unfocus(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   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);
 
    /**
-    * Set the ability for an Element object to be focused
+    * Remove a signal-triggered callback from a widget edje object.
     *
-    * @param obj The Elementary object to operate on
-    * @param enable @c EINA_TRUE if the object can be focused, @c
-    *        EINA_FALSE if not (and on errors)
-    *
-    * This sets whether the object @p obj is able to take focus or
-    * not. Unfocusable objects do nothing when programmatically
-    * focused, being the nearest focusable parent object the one
-    * really getting focus. Also, when they receive mouse input, they
-    * will get the event, but not take away the focus from where it
-    * was previously.
+    * This function removes a callback, previoulsy attached to a
+    * signal emitted by the edje object of the obj.  The parameters
+    * emission, source and func must match exactly those passed to a
+    * previous call to elm_object_signal_callback_add(). The data
+    * pointer that was passed to this call will be returned.
     *
-    * @ingroup Focus
+    * @param obj The object
+    * @param emission The signal's name.
+    * @param source The signal's source.
+    * @param func The callback function to be executed when the signal is
+    * emitted.
+    * @return The data pointer
+    * @ingroup General
     */
-   EAPI void             elm_object_focus_allow_set(Evas_Object *obj, Eina_Bool enable) EINA_ARG_NONNULL(1);
+   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);
 
    /**
-    * Get whether an Elementary object is focusable or not
+    * Add a callback for input events (key up, key down, mouse wheel)
+    * on a given Elementary widget
     *
-    * @param obj The Elementary object to operate on
-    * @return @c EINA_TRUE if the object is allowed to be focused, @c
-    *             EINA_FALSE if not (and on errors)
+    * @param obj The widget to add an event callback on
+    * @param func The callback function to be executed when the event
+    * happens
+    * @param data Data to pass in to @p func
     *
-    * @note Objects which are meant to be interacted with by input
-    * events are created able to be focused, by default. All the
-    * others are not.
+    * Every widget in an Elementary interface set to receive focus,
+    * with elm_object_focus_allow_set(), will propagate @b all of its
+    * key up, key down and mouse wheel input events up to its parent
+    * object, and so on. All of the focusable ones in this chain which
+    * had an event callback set, with this call, will be able to treat
+    * those events. There are two ways of making the propagation of
+    * these event upwards in the tree of widgets to @b cease:
+    * - Just return @c EINA_TRUE on @p func. @c EINA_FALSE will mean
+    *   the event was @b not processed, so the propagation will go on.
+    * - The @c event_info pointer passed to @p func will contain the
+    *   event's structure and, if you OR its @c event_flags inner
+    *   value to @c EVAS_EVENT_FLAG_ON_HOLD, you're telling Elementary
+    *   one has already handled it, thus killing the event's
+    *   propagation, too.
     *
-    * @ingroup Focus
-    */
-   EAPI Eina_Bool        elm_object_focus_allow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-
-   EAPI void             elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI const Eina_List *elm_object_focus_custom_chain_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_focus_custom_chain_append(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
-   EAPI void             elm_object_focus_custom_chain_prepend(Evas_Object *obj, Evas_Object *child, Evas_Object *relative_child) EINA_ARG_NONNULL(1, 2);
-   EAPI void             elm_object_focus_cycle(Evas_Object *obj, Elm_Focus_Direction dir) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_focus_direction_go(Evas_Object *obj, int x, int y) EINA_ARG_NONNULL(1);
-
-   /**
-    * Make the elementary object and its children to be unfocusable (or focusable).
+    * @note Your event callback will be issued on those events taking
+    * place only if no other child widget of @obj has consumed the
+    * event already.
     *
-    * @param obj The Elementary object to operate on
-    * @param tree_unfocusable @c EINA_TRUE for unfocusable,
-    *        @c EINA_FALSE for focusable.
+    * @note Not to be confused with @c
+    * evas_object_event_callback_add(), which will add event callbacks
+    * per type on general Evas objects (no event propagation
+    * infrastructure taken in account).
     *
-    * This sets whether the object @p obj and its children objects
-    * able to take focus or not. If the tree is unfocusable,
-    * newest focused object which is not in this tree will get focus.
-    * This API can be helpful for an object to be deleted.
-    * When an object will be deleted soon, it and its children may not
-    * want to get focus (by focus reverting or by other focus controls).
-    * Then, just use this API before deleting.
+    * @note Not to be confused with @c
+    * elm_object_signal_callback_add(), which will add callbacks to @b
+    * signals coming from a widget's theme, not input events.
     *
-    * @see elm_object_tree_unfocusable_get()
+    * @note Not to be confused with @c
+    * edje_object_signal_callback_add(), which does the same as
+    * elm_object_signal_callback_add(), but directly on an Edje
+    * object.
     *
-    * @ingroup Focus
+    * @note Not to be confused with @c
+    * evas_object_smart_callback_add(), which adds callbacks to smart
+    * objects' <b>smart events</b>, and not input events.
+    *
+    * @see elm_object_event_callback_del()
+    *
+    * @ingroup General
     */
-   EAPI void             elm_object_tree_unfocusable_set(Evas_Object *obj, Eina_Bool tree_unfocusable); EINA_ARG_NONNULL(1);
+   EAPI void             elm_object_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
 
    /**
-    * Get whether an Elementary object and its children are unfocusable or not.
-    *
-    * @param obj The Elementary object to get the information from
-    * @return @c EINA_TRUE, if the tree is unfocussable,
-    *         @c EINA_FALSE if not (and on errors).
+    * Remove an event callback from a widget.
     *
-    * @see elm_object_tree_unfocusable_set()
+    * This function removes a callback, previoulsy attached to event emission
+    * by the @p obj.
+    * The parameters func and data must match exactly those passed to
+    * a previous call to elm_object_event_callback_add(). The data pointer that
+    * was passed to this call will be returned.
     *
-    * @ingroup Focus
+    * @param obj The object
+    * @param func The callback function to be executed when the event is
+    * emitted.
+    * @param data Data to pass in to the callback function.
+    * @return The data pointer
+    * @ingroup General
     */
-   EAPI Eina_Bool        elm_object_tree_unfocusable_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
-
-   EAPI Eina_Bool        elm_scroll_bounce_enabled_get(void);
-   EAPI void             elm_scroll_bounce_enabled_set(Eina_Bool enabled);
-   EAPI void             elm_scroll_bounce_enabled_all_set(Eina_Bool enabled);
-   EAPI double           elm_scroll_bounce_friction_get(void);
-   EAPI void             elm_scroll_bounce_friction_set(double friction);
-   EAPI void             elm_scroll_bounce_friction_all_set(double friction);
-   EAPI double           elm_scroll_page_scroll_friction_get(void);
-   EAPI void             elm_scroll_page_scroll_friction_set(double friction);
-   EAPI void             elm_scroll_page_scroll_friction_all_set(double friction);
-   EAPI double           elm_scroll_bring_in_scroll_friction_get(void);
-   EAPI void             elm_scroll_bring_in_scroll_friction_set(double friction);
-   EAPI void             elm_scroll_bring_in_scroll_friction_all_set(double friction);
-   EAPI double           elm_scroll_zoom_friction_get(void);
-   EAPI void             elm_scroll_zoom_friction_set(double friction);
-   EAPI void             elm_scroll_zoom_friction_all_set(double friction);
-   EAPI Eina_Bool        elm_scroll_thumbscroll_enabled_get(void);
-   EAPI void             elm_scroll_thumbscroll_enabled_set(Eina_Bool enabled);
-   EAPI void             elm_scroll_thumbscroll_enabled_all_set(Eina_Bool enabled);
-   EAPI unsigned int     elm_scroll_thumbscroll_threshold_get(void);
-   EAPI void             elm_scroll_thumbscroll_threshold_set(unsigned int threshold);
-   EAPI void             elm_scroll_thumbscroll_threshold_all_set(unsigned int threshold);
-   EAPI double           elm_scroll_thumbscroll_momentum_threshold_get(void);
-   EAPI void             elm_scroll_thumbscroll_momentum_threshold_set(double threshold);
-   EAPI void             elm_scroll_thumbscroll_momentum_threshold_all_set(double threshold);
-   EAPI double           elm_scroll_thumbscroll_friction_get(void);
-   EAPI void             elm_scroll_thumbscroll_friction_set(double friction);
-   EAPI void             elm_scroll_thumbscroll_friction_all_set(double friction);
-   EAPI double           elm_scroll_thumbscroll_border_friction_get(void);
-   EAPI void             elm_scroll_thumbscroll_border_friction_set(double friction);
-   EAPI void             elm_scroll_thumbscroll_border_friction_all_set(double friction);
-
-   EAPI void             elm_object_scroll_hold_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_scroll_hold_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_scroll_freeze_push(Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_scroll_freeze_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_scroll_lock_x_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
-   EAPI void             elm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) EINA_ARG_NONNULL(1);
-   EAPI Eina_Bool        elm_object_scroll_lock_x_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-   EAPI Eina_Bool        elm_object_scroll_lock_y_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-
-   EAPI void             elm_object_signal_emit(Evas_Object *obj, const char *emission, const char *source) EINA_ARG_NONNULL(1);
-   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);
-   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);
-
-   EAPI void             elm_object_event_callback_add(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
    EAPI void            *elm_object_event_callback_del(Evas_Object *obj, Elm_Event_Cb func, const void *data) EINA_ARG_NONNULL(1, 2);
 
    /**
@@ -1433,20 +3067,53 @@ extern "C" {
     */
    EAPI void             elm_coords_finger_size_adjust(int times_w, Evas_Coord *w, int times_h, Evas_Coord *h);
 
+   /**
+    * Get the duration for occuring long press event.
+    *
+    * @return Timeout for long press event
+    * @ingroup Longpress
+    */
    EAPI double           elm_longpress_timeout_get(void);
+
+   /**
+    * Set the duration for occuring long press event.
+    *
+    * @param lonpress_timeout Timeout for long press event
+    * @ingroup Longpress
+    */
    EAPI void             elm_longpress_timeout_set(double longpress_timeout);
 
-   /* debug
+   /**
+    * @defgroup Debug Debug
     * don't use it unless you are sure
+    *
+    * @{
+    */
+
+   /**
+    * Print Tree object hierarchy in stdout
+    *
+    * @param obj The root object
+    * @ingroup Debug
     */
    EAPI void             elm_object_tree_dump(const Evas_Object *top);
    EAPI void             elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
 
    EAPI void             elm_autocapitalization_allow_all_set(Eina_Bool autocap);
    EAPI void             elm_autoperiod_allow_all_set(Eina_Bool autoperiod);
+   /**
+    * Print Elm Objects tree hierarchy in file as dot(graphviz) syntax.
+    *
+    * @param obj The root object
+    * @param file The path of output file
+    * @ingroup Debug
+    */
+   EAPI void             elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
 
+   /**
+    * @}
+    */
 
-   /* theme */
    /**
     * @defgroup Theme Theme
     *
@@ -1570,7 +3237,7 @@ extern "C" {
     *
     * This clears @p th to be empty and then sets it to refer to @p thref
     * so @p th acts as an override to @p thref, but where its overrides
-    * don't apply, it will fall through to @pthref for configuration.
+    * don't apply, it will fall through to @p thref for configuration.
     */
    EAPI void             elm_theme_ref_set(Elm_Theme *th, Elm_Theme *thref);
    /**
@@ -1788,107 +3455,722 @@ extern "C" {
     * for more information.
     */
    EAPI Elm_Theme       *elm_object_theme_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
+   /**
+    * Get a data item from a theme
+    *
+    * @param th The theme, or NULL for default theme
+    * @param key The data key to search with
+    * @return The data value, or NULL on failure
+    *
+    * This function is used to return data items from edc in @p th, an overlay, or an extension.
+    * It works the same way as edje_file_data_get() except that the return is stringshared.
+    */
+   EAPI const char      *elm_theme_data_get(Elm_Theme *th, const char *key) EINA_ARG_NONNULL(2);
    /**
     * @}
     */
 
    /* win */
+   /** @defgroup Win Win
+    *
+    * @image html img/widget/win/preview-00.png
+    * @image latex img/widget/win/preview-00.eps
+    *
+    * The window class of Elementary.  Contains functions to manipulate
+    * windows. The Evas engine used to render the window contents is specified
+    * in the system or user elementary config files (whichever is found last),
+    * and can be overridden with the ELM_ENGINE environment variable for
+    * testing.  Engines that may be supported (depending on Evas and Ecore-Evas
+    * compilation setup and modules actually installed at runtime) are (listed
+    * in order of best supported and most likely to be complete and work to
+    * lowest quality).
+    *
+    * @li "x11", "x", "software-x11", "software_x11" (Software rendering in X11)
+    * @li "gl", "opengl", "opengl-x11", "opengl_x11" (OpenGL or OpenGL-ES2
+    * rendering in X11)
+    * @li "shot:..." (Virtual screenshot renderer - renders to output file and
+    * exits)
+    * @li "fb", "software-fb", "software_fb" (Linux framebuffer direct software
+    * rendering)
+    * @li "sdl", "software-sdl", "software_sdl" (SDL software rendering to SDL
+    * buffer)
+    * @li "gl-sdl", "gl_sdl", "opengl-sdl", "opengl_sdl" (OpenGL or OpenGL-ES2
+    * rendering using SDL as the buffer)
+    * @li "gdi", "software-gdi", "software_gdi" (Windows WIN32 rendering via
+    * GDI with software)
+    * @li "dfb", "directfb" (Rendering to a DirectFB window)
+    * @li "x11-8", "x8", "software-8-x11", "software_8_x11" (Rendering in
+    * grayscale using dedicated 8bit software engine in X11)
+    * @li "x11-16", "x16", "software-16-x11", "software_16_x11" (Rendering in
+    * X11 using 16bit software engine)
+    * @li "wince-gdi", "software-16-wince-gdi", "software_16_wince_gdi"
+    * (Windows CE rendering via GDI with 16bit software renderer)
+    * @li "sdl-16", "software-16-sdl", "software_16_sdl" (Rendering to SDL
+    * buffer with 16bit software renderer)
+    * @li "ews" (rendering to EWS - Ecore + Evas Single Process Windowing System)
+    *
+    * All engines use a simple string to select the engine to render, EXCEPT
+    * the "shot" engine. This actually encodes the output of the virtual
+    * screenshot and how long to delay in the engine string. The engine string
+    * is encoded in the following way:
+    *
+    *   "shot:[delay=XX][:][repeat=DDD][:][file=XX]"
+    *
+    * Where options are separated by a ":" char if more than one option is
+    * given, with delay, if provided being the first option and file the last
+    * (order is important). The delay specifies how long to wait after the
+    * window is shown before doing the virtual "in memory" rendering and then
+    * save the output to the file specified by the file option (and then exit).
+    * If no delay is given, the default is 0.5 seconds. If no file is given the
+    * default output file is "out.png". Repeat option is for continous
+    * capturing screenshots. Repeat range is from 1 to 999 and filename is
+    * fixed to "out001.png" Some examples of using the shot engine:
+    *
+    *   ELM_ENGINE="shot:delay=1.0:repeat=5:file=elm_test.png" elementary_test
+    *   ELM_ENGINE="shot:delay=1.0:file=elm_test.png" elementary_test
+    *   ELM_ENGINE="shot:file=elm_test2.png" elementary_test
+    *   ELM_ENGINE="shot:delay=2.0" elementary_test
+    *   ELM_ENGINE="shot:" elementary_test
+    *
+    * Signals that you can add callbacks for are:
+    *
+    * @li "delete,request": the user requested to close the window. See
+    * elm_win_autodel_set().
+    * @li "focus,in": window got focus
+    * @li "focus,out": window lost focus
+    * @li "moved": window that holds the canvas was moved
+    *
+    * Examples:
+    * @li @ref win_example_01
+    *
+    * @{
+    */
+   /**
+    * Defines the types of window that can be created
+    *
+    * These are hints set on the window so that a running Window Manager knows
+    * how the window should be handled and/or what kind of decorations it
+    * should have.
+    *
+    * Currently, only the X11 backed engines use them.
+    */
    typedef enum _Elm_Win_Type
      {
-        ELM_WIN_BASIC,
-        ELM_WIN_DIALOG_BASIC,
-        ELM_WIN_DESKTOP,
-        ELM_WIN_DOCK,
-        ELM_WIN_TOOLBAR,
-        ELM_WIN_MENU,
-        ELM_WIN_UTILITY,
-        ELM_WIN_SPLASH,
-        ELM_WIN_DROPDOWN_MENU,
-        ELM_WIN_POPUP_MENU,
-        ELM_WIN_TOOLTIP,
-        ELM_WIN_NOTIFICATION,
-        ELM_WIN_COMBO,
-        ELM_WIN_DND,
-        ELM_WIN_INLINED_IMAGE,
+        ELM_WIN_BASIC, /**< A normal window. Indicates a normal, top-level
+                         window. Almost every window will be created with this
+                         type. */
+        ELM_WIN_DIALOG_BASIC, /**< Used for simple dialog windows/ */
+        ELM_WIN_DESKTOP, /**< For special desktop windows, like a background
+                           window holding desktop icons. */
+        ELM_WIN_DOCK, /**< The window is used as a dock or panel. Usually would
+                        be kept on top of any other window by the Window
+                        Manager. */
+        ELM_WIN_TOOLBAR, /**< The window is used to hold a floating toolbar, or
+                           similar. */
+        ELM_WIN_MENU, /**< Similar to #ELM_WIN_TOOLBAR. */
+        ELM_WIN_UTILITY, /**< A persistent utility window, like a toolbox or
+                           pallete. */
+        ELM_WIN_SPLASH, /**< Splash window for a starting up application. */
+        ELM_WIN_DROPDOWN_MENU, /**< The window is a dropdown menu, as when an
+                                 entry in a menubar is clicked. Typically used
+                                 with elm_win_override_set(). This hint exists
+                                 for completion only, as the EFL way of
+                                 implementing a menu would not normally use a
+                                 separate window for its contents. */
+        ELM_WIN_POPUP_MENU, /**< Like #ELM_WIN_DROPDOWN_MENU, but for the menu
+                              triggered by right-clicking an object. */
+        ELM_WIN_TOOLTIP, /**< The window is a tooltip. A short piece of
+                           explanatory text that typically appear after the
+                           mouse cursor hovers over an object for a while.
+                           Typically used with elm_win_override_set() and also
+                           not very commonly used in the EFL. */
+        ELM_WIN_NOTIFICATION, /**< A notification window, like a warning about
+                                battery life or a new E-Mail received. */
+        ELM_WIN_COMBO, /**< A window holding the contents of a combo box. Not
+                         usually used in the EFL. */
+        ELM_WIN_DND, /**< Used to indicate the window is a representation of an
+                       object being dragged across different windows, or even
+                       applications. Typically used with
+                       elm_win_override_set(). */
+        ELM_WIN_INLINED_IMAGE, /**< The window is rendered onto an image
+                                 buffer. No actual window is created for this
+                                 type, instead the window and all of its
+                                 contents will be rendered to an image buffer.
+                                 This allows to have children window inside a
+                                 parent one just like any other object would
+                                 be, and do other things like applying @c
+                                 Evas_Map effects to it. This is the only type
+                                 of window that requires the @c parent
+                                 parameter of elm_win_add() to be a valid @c
+                                 Evas_Object. */
      } Elm_Win_Type;
 
+   /**
+    * The differents layouts that can be requested for the virtual keyboard.
+    *
+    * When the application window is being managed by Illume, it may request
+    * any of the following layouts for the virtual keyboard.
+    */
    typedef enum _Elm_Win_Keyboard_Mode
      {
-        ELM_WIN_KEYBOARD_UNKNOWN,
-        ELM_WIN_KEYBOARD_OFF,
-        ELM_WIN_KEYBOARD_ON,
-        ELM_WIN_KEYBOARD_ALPHA,
-        ELM_WIN_KEYBOARD_NUMERIC,
-        ELM_WIN_KEYBOARD_PIN,
-        ELM_WIN_KEYBOARD_PHONE_NUMBER,
-        ELM_WIN_KEYBOARD_HEX,
-        ELM_WIN_KEYBOARD_TERMINAL,
-        ELM_WIN_KEYBOARD_PASSWORD,
-        ELM_WIN_KEYBOARD_IP,
-        ELM_WIN_KEYBOARD_HOST,
-        ELM_WIN_KEYBOARD_FILE,
-        ELM_WIN_KEYBOARD_URL,
-        ELM_WIN_KEYBOARD_KEYPAD,
-        ELM_WIN_KEYBOARD_J2ME
+        ELM_WIN_KEYBOARD_UNKNOWN, /**< Unknown keyboard state */
+        ELM_WIN_KEYBOARD_OFF, /**< Request to deactivate the keyboard */
+        ELM_WIN_KEYBOARD_ON, /**< Enable keyboard with default layout */
+        ELM_WIN_KEYBOARD_ALPHA, /**< Alpha (a-z) keyboard layout */
+        ELM_WIN_KEYBOARD_NUMERIC, /**< Numeric keyboard layout */
+        ELM_WIN_KEYBOARD_PIN, /**< PIN keyboard layout */
+        ELM_WIN_KEYBOARD_PHONE_NUMBER, /**< Phone keyboard layout */
+        ELM_WIN_KEYBOARD_HEX, /**< Hexadecimal numeric keyboard layout */
+        ELM_WIN_KEYBOARD_TERMINAL, /**< Full (QUERTY) keyboard layout */
+        ELM_WIN_KEYBOARD_PASSWORD, /**< Password keyboard layout */
+        ELM_WIN_KEYBOARD_IP, /**< IP keyboard layout */
+        ELM_WIN_KEYBOARD_HOST, /**< Host keyboard layout */
+        ELM_WIN_KEYBOARD_FILE, /**< File keyboard layout */
+        ELM_WIN_KEYBOARD_URL, /**< URL keyboard layout */
+        ELM_WIN_KEYBOARD_KEYPAD, /**< Keypad layout */
+        ELM_WIN_KEYBOARD_J2ME /**< J2ME keyboard layout */
      } Elm_Win_Keyboard_Mode;
 
+   /**
+    * Available commands that can be sent to the Illume manager.
+    *
+    * When running under an Illume session, a window may send commands to the
+    * Illume manager to perform different actions.
+    */
    typedef enum _Elm_Illume_Command
      {
-        ELM_ILLUME_COMMAND_FOCUS_BACK,
-        ELM_ILLUME_COMMAND_FOCUS_FORWARD,
-        ELM_ILLUME_COMMAND_FOCUS_HOME,
-        ELM_ILLUME_COMMAND_CLOSE
+        ELM_ILLUME_COMMAND_FOCUS_BACK, /**< Reverts focus to the previous
+                                         window */
+        ELM_ILLUME_COMMAND_FOCUS_FORWARD, /**< Sends focus to the next window\
+                                            in the list */
+        ELM_ILLUME_COMMAND_FOCUS_HOME, /**< Hides all windows to show the Home
+                                         screen */
+        ELM_ILLUME_COMMAND_CLOSE /**< Closes the currently active window */
      } Elm_Illume_Command;
 
+   /**
+    * Adds a window object. If this is the first window created, pass NULL as
+    * @p parent.
+    *
+    * @param parent Parent object to add the window to, or NULL
+    * @param name The name of the window
+    * @param type The window type, one of #Elm_Win_Type.
+    *
+    * The @p parent paramter can be @c NULL for every window @p type except
+    * #ELM_WIN_INLINED_IMAGE, which needs a parent to retrieve the canvas on
+    * which the image object will be created.
+    *
+    * @return The created object, or NULL on failure
+    */
    EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type);
+   /**
+    * Add @p subobj as a resize object of window @p obj.
+    *
+    *
+    * Setting an object as a resize object of the window means that the
+    * @p subobj child's size and position will be controlled by the window
+    * directly. That is, the object will be resized to match the window size
+    * and should never be moved or resized manually by the developer.
+    *
+    * In addition, resize objects of the window control what the minimum size
+    * of it will be, as well as whether it can or not be resized by the user.
+    *
+    * For the end user to be able to resize a window by dragging the handles
+    * or borders provided by the Window Manager, or using any other similar
+    * mechanism, all of the resize objects in the window should have their
+    * evas_object_size_hint_weight_set() set to EVAS_HINT_EXPAND.
+    *
+    * @param obj The window object
+    * @param subobj The resize object to add
+    */
    EAPI void         elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
+   /**
+    * Delete @p subobj as a resize object of window @p obj.
+    *
+    * This function removes the object @p subobj from the resize objects of
+    * the window @p obj. It will not delete the object itself, which will be
+    * left unmanaged and should be deleted by the developer, manually handled
+    * or set as child of some other container.
+    *
+    * @param obj The window object
+    * @param subobj The resize object to add
+    */
    EAPI void         elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the title of the window
+    *
+    * @param obj The window object
+    * @param title The title to set
+    */
    EAPI void         elm_win_title_set(Evas_Object *obj, const char *title) EINA_ARG_NONNULL(1);
+   /**
+    * Get the title of the window
+    *
+    * The returned string is an internal one and should not be freed or
+    * modified. It will also be rendered invalid if a new title is set or if
+    * the window is destroyed.
+    *
+    * @param obj The window object
+    * @return The title
+    */
    EAPI const char  *elm_win_title_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the window's autodel state.
+    *
+    * When closing the window in any way outside of the program control, like
+    * pressing the X button in the titlebar or using a command from the
+    * Window Manager, a "delete,request" signal is emitted to indicate that
+    * this event occurred and the developer can take any action, which may
+    * include, or not, destroying the window object.
+    *
+    * When the @p autodel parameter is set, the window will be automatically
+    * destroyed when this event occurs, after the signal is emitted.
+    * If @p autodel is @c EINA_FALSE, then the window will not be destroyed
+    * and is up to the program to do so when it's required.
+    *
+    * @param obj The window object
+    * @param autodel If true, the window will automatically delete itself when
+    * closed
+    */
    EAPI void         elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel) EINA_ARG_NONNULL(1);
+   /**
+    * Get the window's autodel state.
+    *
+    * @param obj The window object
+    * @return If the window will automatically delete itself when closed
+    *
+    * @see elm_win_autodel_set()
+    */
    EAPI Eina_Bool    elm_win_autodel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Activate a window object.
+    *
+    * This function sends a request to the Window Manager to activate the
+    * window pointed by @p obj. If honored by the WM, the window will receive
+    * the keyboard focus.
+    *
+    * @note This is just a request that a Window Manager may ignore, so calling
+    * this function does not ensure in any way that the window will be the
+    * active one after it.
+    *
+    * @param obj The window object
+    */
    EAPI void         elm_win_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Lower a window object.
+    *
+    * Places the window pointed by @p obj at the bottom of the stack, so that
+    * no other window is covered by it.
+    *
+    * If elm_win_override_set() is not set, the Window Manager may ignore this
+    * request.
+    *
+    * @param obj The window object
+    */
    EAPI void         elm_win_lower(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Raise a window object.
+    *
+    * Places the window pointed by @p obj at the top of the stack, so that it's
+    * not covered by any other window.
+    *
+    * If elm_win_override_set() is not set, the Window Manager may ignore this
+    * request.
+    *
+    * @param obj The window object
+    */
    EAPI void         elm_win_raise(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the borderless state of a window.
+    *
+    * This function requests the Window Manager to not draw any decoration
+    * around the window.
+    *
+    * @param obj The window object
+    * @param borderless If true, the window is borderless
+    */
    EAPI void         elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless) EINA_ARG_NONNULL(1);
+   /**
+    * Get the borderless state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window is borderless
+    */
    EAPI Eina_Bool    elm_win_borderless_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the shaped state of a window.
+    *
+    * Shaped windows, when supported, will render the parts of the window that
+    * has no content, transparent.
+    *
+    * If @p shaped is EINA_FALSE, then it is strongly adviced to have some
+    * background object or cover the entire window in any other way, or the
+    * parts of the canvas that have no data will show framebuffer artifacts.
+    *
+    * @param obj The window object
+    * @param shaped If true, the window is shaped
+    *
+    * @see elm_win_alpha_set()
+    */
    EAPI void         elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped) EINA_ARG_NONNULL(1);
+   /**
+    * Get the shaped state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window is shaped
+    *
+    * @see elm_win_shaped_set()
+    */
    EAPI Eina_Bool    elm_win_shaped_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the alpha channel state of a window.
+    *
+    * If @p alpha is EINA_TRUE, the alpha channel of the canvas will be enabled
+    * possibly making parts of the window completely or partially transparent.
+    * This is also subject to the underlying system supporting it, like for
+    * example, running under a compositing manager. If no compositing is
+    * available, enabling this option will instead fallback to using shaped
+    * windows, with elm_win_shaped_set().
+    *
+    * @param obj The window object
+    * @param alpha If true, the window has an alpha channel
+    *
+    * @see elm_win_alpha_set()
+    */
    EAPI void         elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha) EINA_ARG_NONNULL(1);
+   /**
+    * Get the transparency state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window is transparent
+    *
+    * @see elm_win_transparent_set()
+    */
    EAPI Eina_Bool    elm_win_transparent_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the transparency state of a window.
+    *
+    * Use elm_win_alpha_set() instead.
+    *
+    * @param obj The window object
+    * @param transparent If true, the window is transparent
+    *
+    * @see elm_win_alpha_set()
+    */
    EAPI void         elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent) EINA_ARG_NONNULL(1);
+   /**
+    * Get the alpha channel state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window has an alpha channel
+    */
    EAPI Eina_Bool    elm_win_alpha_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the override state of a window.
+    *
+    * A window with @p override set to EINA_TRUE will not be managed by the
+    * Window Manager. This means that no decorations of any kind will be shown
+    * for it, moving and resizing must be handled by the application, as well
+    * as the window visibility.
+    *
+    * This should not be used for normal windows, and even for not so normal
+    * ones, it should only be used when there's a good reason and with a lot
+    * of care. Mishandling override windows may result situations that
+    * disrupt the normal workflow of the end user.
+    *
+    * @param obj The window object
+    * @param override If true, the window is overridden
+    */
    EAPI void         elm_win_override_set(Evas_Object *obj, Eina_Bool override) EINA_ARG_NONNULL(1);
+   /**
+    * Get the override state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window is overridden
+    *
+    * @see elm_win_override_set()
+    */
    EAPI Eina_Bool    elm_win_override_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the fullscreen state of a window.
+    *
+    * @param obj The window object
+    * @param fullscreen If true, the window is fullscreen
+    */
    EAPI void         elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen) EINA_ARG_NONNULL(1);
+   /**
+    * Get the fullscreen state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window is fullscreen
+    */
    EAPI Eina_Bool    elm_win_fullscreen_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the maximized state of a window.
+    *
+    * @param obj The window object
+    * @param maximized If true, the window is maximized
+    */
    EAPI void         elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized) EINA_ARG_NONNULL(1);
+   /**
+    * Get the maximized state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window is maximized
+    */
    EAPI Eina_Bool    elm_win_maximized_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the iconified state of a window.
+    *
+    * @param obj The window object
+    * @param iconified If true, the window is iconified
+    */
    EAPI void         elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified) EINA_ARG_NONNULL(1);
+   /**
+    * Get the iconified state of a window.
+    *
+    * @param obj The window object
+    * @return If true, the window is iconified
+    */
    EAPI Eina_Bool    elm_win_iconified_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the layer of the window.
+    *
+    * What this means exactly will depend on the underlying engine used.
+    *
+    * In the case of X11 backed engines, the value in @p layer has the
+    * following meanings:
+    * @li < 3: The window will be placed below all others.
+    * @li > 5: The window will be placed above all others.
+    * @li other: The window will be placed in the default layer.
+    *
+    * @param obj The window object
+    * @param layer The layer of the window
+    */
    EAPI void         elm_win_layer_set(Evas_Object *obj, int layer) EINA_ARG_NONNULL(1);
+   /**
+    * Get the layer of the window.
+    *
+    * @param obj The window object
+    * @return The layer of the window
+    *
+    * @see elm_win_layer_set()
+    */
    EAPI int          elm_win_layer_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the rotation of the window.
+    *
+    * Most engines only work with multiples of 90.
+    *
+    * This function is used to set the orientation of the window @p obj to
+    * match that of the screen. The window itself will be resized to adjust
+    * to the new geometry of its contents. If you want to keep the window size,
+    * see elm_win_rotation_with_resize_set().
+    *
+    * @param obj The window object
+    * @param rotation The rotation of the window, in degrees (0-360),
+    * counter-clockwise.
+    */
    EAPI void         elm_win_rotation_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
+   /**
+    * Rotates the window and resizes it.
+    *
+    * Like elm_win_rotation_set(), but it also resizes the window's contents so
+    * that they fit inside the current window geometry.
+    *
+    * @param obj The window object
+    * @param layer The rotation of the window in degrees (0-360),
+    * counter-clockwise.
+    */
    EAPI void         elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation) EINA_ARG_NONNULL(1);
+   /**
+    * Get the rotation of the window.
+    *
+    * @param obj The window object
+    * @return The rotation of the window in degrees (0-360)
+    *
+    * @see elm_win_rotation_set()
+    * @see elm_win_rotation_with_resize_set()
+    */
    EAPI int          elm_win_rotation_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the sticky state of the window.
+    *
+    * Hints the Window Manager that the window in @p obj should be left fixed
+    * at its position even when the virtual desktop it's on moves or changes.
+    *
+    * @param obj The window object
+    * @param sticky If true, the window's sticky state is enabled
+    */
    EAPI void         elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky) EINA_ARG_NONNULL(1);
+   /**
+    * Get the sticky state of the window.
+    *
+    * @param obj The window object
+    * @return If true, the window's sticky state is enabled
+    *
+    * @see elm_win_sticky_set()
+    */
    EAPI Eina_Bool    elm_win_sticky_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set if this window is an illume conformant window
+    *
+    * @param obj The window object
+    * @param conformant The conformant flag (1 = conformant, 0 = non-conformant)
+    */
    EAPI void         elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant) EINA_ARG_NONNULL(1);
+   /**
+    * Get if this window is an illume conformant window
+    *
+    * @param obj The window object
+    * @return A boolean if this window is illume conformant or not
+    */
    EAPI Eina_Bool    elm_win_conformant_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set a window to be an illume quickpanel window
+    *
+    * By default window objects are not quickpanel windows.
+    *
+    * @param obj The window object
+    * @param quickpanel The quickpanel flag (1 = quickpanel, 0 = normal window)
+    */
    EAPI void         elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel) EINA_ARG_NONNULL(1);
+   /**
+    * Get if this window is a quickpanel or not
+    *
+    * @param obj The window object
+    * @return A boolean if this window is a quickpanel or not
+    */
    EAPI Eina_Bool    elm_win_quickpanel_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the major priority of a quickpanel window
+    *
+    * @param obj The window object
+    * @param priority The major priority for this quickpanel
+    */
    EAPI void         elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
+   /**
+    * Get the major priority of a quickpanel window
+    *
+    * @param obj The window object
+    * @return The major priority of this quickpanel
+    */
    EAPI int          elm_win_quickpanel_priority_major_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the minor priority of a quickpanel window
+    *
+    * @param obj The window object
+    * @param priority The minor priority for this quickpanel
+    */
    EAPI void         elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority) EINA_ARG_NONNULL(1);
+   /**
+    * Get the minor priority of a quickpanel window
+    *
+    * @param obj The window object
+    * @return The minor priority of this quickpanel
+    */
    EAPI int          elm_win_quickpanel_priority_minor_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set which zone this quickpanel should appear in
+    *
+    * @param obj The window object
+    * @param zone The requested zone for this quickpanel
+    */
    EAPI void         elm_win_quickpanel_zone_set(Evas_Object *obj, int zone) EINA_ARG_NONNULL(1);
+   /**
+    * Get which zone this quickpanel should appear in
+    *
+    * @param obj The window object
+    * @return The requested zone for this quickpanel
+    */
    EAPI int          elm_win_quickpanel_zone_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the window to be skipped by keyboard focus
+    *
+    * This sets the window to be skipped by normal keyboard input. This means
+    * a window manager will be asked to not focus this window as well as omit
+    * it from things like the taskbar, pager, "alt-tab" list etc. etc.
+    *
+    * Call this and enable it on a window BEFORE you show it for the first time,
+    * otherwise it may have no effect.
+    *
+    * Use this for windows that have only output information or might only be
+    * interacted with by the mouse or fingers, and never for typing input.
+    * Be careful that this may have side-effects like making the window
+    * non-accessible in some cases unless the window is specially handled. Use
+    * this with care.
+    *
+    * @param obj The window object
+    * @param skip The skip flag state (EINA_TRUE if it is to be skipped)
+    */
    EAPI void         elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip) EINA_ARG_NONNULL(1);
+   /**
+    * Send a command to the windowing environment
+    *
+    * This is intended to work in touchscreen or small screen device
+    * environments where there is a more simplistic window management policy in
+    * place. This uses the window object indicated to select which part of the
+    * environment to control (the part that this window lives in), and provides
+    * a command and an optional parameter structure (use NULL for this if not
+    * needed).
+    *
+    * @param obj The window object that lives in the environment to control
+    * @param command The command to send
+    * @param params Optional parameters for the command
+    */
    EAPI void         elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params) EINA_ARG_NONNULL(1);
+   /**
+    * Get the inlined image object handle
+    *
+    * When you create a window with elm_win_add() of type ELM_WIN_INLINED_IMAGE,
+    * then the window is in fact an evas image object inlined in the parent
+    * canvas. You can get this object (be careful to not manipulate it as it
+    * is under control of elementary), and use it to do things like get pixel
+    * data, save the image to a file, etc.
+    *
+    * @param obj The window object to get the inlined image from
+    * @return The inlined image object, or NULL if none exists
+    */
    EAPI Evas_Object *elm_win_inlined_image_object_get(Evas_Object *obj);
+   /**
+    * Set the enabled status for the focus highlight in a window
+    *
+    * This function will enable or disable the focus highlight only for the
+    * given window, regardless of the global setting for it
+    *
+    * @param obj The window where to enable the highlight
+    * @param enabled The enabled value for the highlight
+    */
    EAPI void         elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
+   /**
+    * Get the enabled value of the focus highlight for this window
+    *
+    * @param obj The window in which to check if the focus highlight is enabled
+    *
+    * @return EINA_TRUE if enabled, EINA_FALSE otherwise
+    */
    EAPI Eina_Bool    elm_win_focus_highlight_enabled_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the style for the focus highlight on this window
+    *
+    * Sets the style to use for theming the highlight of focused objects on
+    * the given window. If @p style is NULL, the default will be used.
+    *
+    * @param obj The window where to set the style
+    * @param style The style to set
+    */
    EAPI void         elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style) EINA_ARG_NONNULL(1);
+   /**
+    * Get the style set for the focus highlight object
+    *
+    * Gets the style set for this windows highilght object, or NULL if none
+    * is set.
+    *
+    * @param obj The window to retrieve the highlights style from
+    *
+    * @return The style set or NULL if none was. Default is used in that case.
+    */
    EAPI const char  *elm_win_focus_highlight_style_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
    EAPI void         elm_win_indicator_state_set(Evas_Object *obj, int show_state);
    EAPI int          elm_win_indicator_state_get(Evas_Object *obj);
@@ -1905,25 +4187,164 @@ extern "C" {
     * (blank mouse, private mouse obj, defaultmouse)
     *
     */
+   /**
+    * Sets the keyboard mode of the window.
+    *
+    * @param obj The window object
+    * @param mode The mode to set, one of #Elm_Win_Keyboard_Mode
+    */
    EAPI void                  elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode) EINA_ARG_NONNULL(1);
+   /**
+    * Gets the keyboard mode of the window.
+    *
+    * @param obj The window object
+    * @return The mode, one of #Elm_Win_Keyboard_Mode
+    */
    EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Sets whether the window is a keyboard.
+    *
+    * @param obj The window object
+    * @param is_keyboard If true, the window is a virtual keyboard
+    */
    EAPI void                  elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard) EINA_ARG_NONNULL(1);
+   /**
+    * Gets whether the window is a keyboard.
+    *
+    * @param obj The window object
+    * @return If the window is a virtual keyboard
+    */
    EAPI Eina_Bool             elm_win_keyboard_win_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
 
+   /**
+    * Get the screen position of a window.
+    *
+    * @param obj The window object
+    * @param x The int to store the x coordinate to
+    * @param y The int to store the y coordinate to
+    */
    EAPI void                  elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y) EINA_ARG_NONNULL(1);
+   /**
+    * @}
+    */
 
+   /**
+    * @defgroup Inwin Inwin
+    *
+    * @image html img/widget/inwin/preview-00.png
+    * @image latex img/widget/inwin/preview-00.eps
+    * @image html img/widget/inwin/preview-01.png
+    * @image latex img/widget/inwin/preview-01.eps
+    * @image html img/widget/inwin/preview-02.png
+    * @image latex img/widget/inwin/preview-02.eps
+    *
+    * An inwin is a window inside a window that is useful for a quick popup.
+    * It does not hover.
+    *
+    * It works by creating an object that will occupy the entire window, so it
+    * must be created using an @ref Win "elm_win" as parent only. The inwin
+    * object can be hidden or restacked below every other object if it's
+    * needed to show what's behind it without destroying it. If this is done,
+    * the elm_win_inwin_activate() function can be used to bring it back to
+    * full visibility again.
+    *
+    * There are three styles available in the default theme. These are:
+    * @li default: The inwin is sized to take over most of the window it's
+    * placed in.
+    * @li minimal: The size of the inwin will be the minimum necessary to show
+    * its contents.
+    * @li minimal_vertical: Horizontally, the inwin takes as much space as
+    * possible, but it's sized vertically the most it needs to fit its\
+    * contents.
+    *
+    * Some examples of Inwin can be found in the following:
+    * @li @ref inwin_example_01
+    *
+    * @{
+    */
+   /**
+    * Adds an inwin to the current window
+    *
+    * The @p obj used as parent @b MUST be an @ref Win "Elementary Window".
+    * Never call this function with anything other than the top-most window
+    * as its parameter, unless you are fond of undefined behavior.
+    *
+    * After creating the object, the widget will set itself as resize object
+    * for the window with elm_win_resize_object_add(), so when shown it will
+    * appear to cover almost the entire window (how much of it depends on its
+    * content and the style used). It must not be added into other container
+    * objects and it needs not be moved or resized manually.
+    *
+    * @param parent The parent object
+    * @return The new object or NULL if it cannot be created
+    */
    EAPI Evas_Object          *elm_win_inwin_add(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Activates an inwin object, ensuring its visibility
+    *
+    * This function will make sure that the inwin @p obj is completely visible
+    * by calling evas_object_show() and evas_object_raise() on it, to bring it
+    * to the front. It also sets the keyboard focus to it, which will be passed
+    * onto its content.
+    *
+    * The object's theme will also receive the signal "elm,action,show" with
+    * source "elm".
+    *
+    * @param obj The inwin to activate
+    */
    EAPI void                  elm_win_inwin_activate(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the content of an inwin object.
+    *
+    * Once the content object is set, a previously set one will be deleted.
+    * If you want to keep that old content object, use the
+    * elm_win_inwin_content_unset() function.
+    *
+    * @param obj The inwin object
+    * @param content The object to set as content
+    */
    EAPI void                  elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
+   /**
+    * Get the content of an inwin object.
+    *
+    * Return the content object which is set for this widget.
+    *
+    * The returned object is valid as long as the inwin is still alive and no
+    * other content is set on it. Deleting the object will notify the inwin
+    * about it and this one will be left empty.
+    *
+    * If you need to remove an inwin's content to be reused somewhere else,
+    * see elm_win_inwin_content_unset().
+    *
+    * @param obj The inwin object
+    * @return The content that is being used
+    */
    EAPI Evas_Object          *elm_win_inwin_content_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Unset the content of an inwin object.
+    *
+    * Unparent and return the content object which was set for this widget.
+    *
+    * @param obj The inwin object
+    * @return The content that was being used
+    */
    EAPI Evas_Object          *elm_win_inwin_content_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
-   /* available styles:
-    * default
-    * minimal
-    * minimal_vertical
+   /**
+    * @}
     */
    /* X specific calls - won't work on non-x engines (return 0) */
+
+   /**
+    * Get the Ecore_X_Window of an Evas_Object
+    *
+    * @param obj The object
+    *
+    * @return The Ecore_X_Window of @p obj
+    *
+    * @ingroup Win
+    */
    EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+
    /* smart callbacks called:
     * "delete,request" - the user requested to delete the window
     * "focus,in" - window got focus
@@ -1934,6 +4355,9 @@ extern "C" {
    /**
     * @defgroup Bg Bg
     *
+    * @image html img/widget/bg/preview-00.png
+    * @image latex img/widget/bg/preview-00.eps
+    *
     * @brief Background object, used for setting a solid color, image or Edje
     * group as background to a window or any container object.
     *
@@ -1941,6 +4365,9 @@ extern "C" {
     * packing into any container object. It works just like an image, but has
     * some properties useful to a background, like setting it to tiled,
     * centered, scaled or stretched.
+    * 
+    * Default contents parts of the bg widget that you can use for are:
+    * @li "elm.swallow.content" - overlay of the bg
     *
     * Here is some sample code using it:
     * @li @ref bg_01_example_page
@@ -2107,7 +4534,95 @@ extern "C" {
    /* smart callbacks called:
     */
 
-   /* icon */
+   /**
+    * @defgroup Icon Icon
+    *
+    * @image html img/widget/icon/preview-00.png
+    * @image latex img/widget/icon/preview-00.eps
+    *
+    * An object that provides standard icon images (delete, edit, arrows, etc.)
+    * or a custom file (PNG, JPG, EDJE, etc.) used for an icon.
+    *
+    * The icon image requested can be in the elementary theme, or in the
+    * freedesktop.org paths. It's possible to set the order of preference from
+    * where the image will be used.
+    *
+    * This API is very similar to @ref Image, but with ready to use images.
+    *
+    * Default images provided by the theme are described below.
+    *
+    * The first list contains icons that were first intended to be used in
+    * toolbars, but can be used in many other places too:
+    * @li home
+    * @li close
+    * @li apps
+    * @li arrow_up
+    * @li arrow_down
+    * @li arrow_left
+    * @li arrow_right
+    * @li chat
+    * @li clock
+    * @li delete
+    * @li edit
+    * @li refresh
+    * @li folder
+    * @li file
+    *
+    * Now some icons that were designed to be used in menus (but again, you can
+    * use them anywhere else):
+    * @li menu/home
+    * @li menu/close
+    * @li menu/apps
+    * @li menu/arrow_up
+    * @li menu/arrow_down
+    * @li menu/arrow_left
+    * @li menu/arrow_right
+    * @li menu/chat
+    * @li menu/clock
+    * @li menu/delete
+    * @li menu/edit
+    * @li menu/refresh
+    * @li menu/folder
+    * @li menu/file
+    *
+    * And here we have some media player specific icons:
+    * @li media_player/forward
+    * @li media_player/info
+    * @li media_player/next
+    * @li media_player/pause
+    * @li media_player/play
+    * @li media_player/prev
+    * @li media_player/rewind
+    * @li media_player/stop
+    *
+    * Signals that you can add callbacks for are:
+    *
+    * "clicked" - This is called when a user has clicked the icon
+    *
+    * An example of usage for this API follows:
+    * @li @ref tutorial_icon
+    */
+
+   /**
+    * @addtogroup Icon
+    * @{
+    */
+
+   typedef enum _Elm_Icon_Type
+     {
+        ELM_ICON_NONE,
+        ELM_ICON_FILE,
+        ELM_ICON_STANDARD
+     } Elm_Icon_Type;
+   /**
+    * @enum _Elm_Icon_Lookup_Order
+    * @typedef Elm_Icon_Lookup_Order
+    *
+    * Lookup order used by elm_icon_standard_set(). Should look for icons in the
+    * theme, FDO paths, or both?
+    *
+    * @ingroup Icon
+    */
    typedef enum _Elm_Icon_Lookup_Order
      {
         ELM_ICON_LOOKUP_FDO_THEME, /**< icon look up order: freedesktop, theme */
@@ -2932,6 +5447,8 @@ extern "C" {
    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);
    EAPI void         elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation);
    EAPI Eina_Bool    elm_scroller_propagate_events_get(const Evas_Object *obj);
+   EAPI void         elm_scroller_gravity_set(Evas_Object *obj, double x, double y) EINA_ARG_NONNULL(1);
+   EAPI void         elm_scroller_gravity_get(const Evas_Object *obj, double *x, double *y) EINA_ARG_NONNULL(1);
    EINA_DEPRECATED EAPI void         elm_scroller_page_move_set(Evas_Object *obj, Eina_Bool set);
    /* smart callbacks called:
     * "edge,left" - the left edge of the content has been reached
@@ -3234,6 +5751,8 @@ extern "C" {
     * changed - An item has been added, removed, resized or moved,
     * or gengrid has been resized or horizontal property has been changed.
     * scroll - the content has been scrolled (moved).
+    * "scroll,anim,start" - This is called when scrolling animation has started.
+    * "scroll,anim,stop" - This is called when scrolling animation has stopped.
     * "scroll,drag,start" - dragging the contents around has started.
     * "scroll,drag,stop" - dragging the contents around has stopped.
     * drag - Gengrid is being dragged.
@@ -3725,28 +6244,6 @@ extern "C" {
         ELM_ICON_STANDARD
      } Elm_Icon_Type;
 
-   typedef enum _Elm_Input_Panel_Layout
-     {
-        ELM_INPUT_PANEL_LAYOUT_NORMAL,          /**< Default 4x4 layout */
-        ELM_INPUT_PANEL_LAYOUT_NUMBER,          /**< Number layout */
-        ELM_INPUT_PANEL_LAYOUT_EMAIL,           /**< Email layout */
-        ELM_INPUT_PANEL_LAYOUT_URL,             /**< URL layout */
-        ELM_INPUT_PANEL_LAYOUT_PHONENUMBER,     /**< Phone Number layout */
-        ELM_INPUT_PANEL_LAYOUT_IP,              /**< IP layout */
-        ELM_INPUT_PANEL_LAYOUT_MONTH,           /**< Month layout */
-        ELM_INPUT_PANEL_LAYOUT_NUMBERONLY,      /**< Number Only layout */
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_1 = 100,  /* Reserved for future use */
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_2,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_3,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_4,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_5,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_6,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_7,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_8,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_9,
-        ELM_INPUT_PANEL_LAYOUT_CUSTOM_10
-     } Elm_Input_Panel_Layout;
-
    typedef struct _Elm_Hoversel_Item Elm_Hoversel_Item; /**< Item of Elm_Hoversel. Sub-type of Elm_Widget_Item */
 
    EAPI Evas_Object *elm_entry_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
@@ -3834,12 +6331,55 @@ extern "C" {
         const char *rejected;
      };
    EAPI void         elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text) EINA_ARG_NONNULL(1, 3);
+   /**
+    * Set the input panel layout of the entry
+    *
+    * @param obj The entry object
+    * @param layout layout type
+    */
+   EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout) EINA_ARG_NONNULL(1);
+   /**
+    * Get the input panel layout of the entry
+    *
+    * @param obj The entry object
+    * @return layout type
+    *
+    * @see elm_entry_input_panel_layout_set
+    */
+   EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Set the autocapitalization type on the immodule.
+    *
+    * @param obj The entry object
+    * @param autocapital_type The type of autocapitalization
+    */
+   EAPI void         elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type) EINA_ARG_NONNULL(1);
+   /**
+    * Retrieve the autocapitalization type on the immodule.
+    *
+    * @param obj The entry object
+    * @return autocapitalization type
+    */
+   EAPI Elm_Autocapital_Type elm_entry_autocapital_type_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
+   /**
+    * Sets the attribute to show the input panel automatically.
+    *
+    * @param obj The entry object
+    * @param enabled If true, the input panel is appeared when entry is clicked or has a focus
+    */
+   EAPI void elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled) EINA_ARG_NONNULL(1);
+   /**
+    * Retrieve the attribute to show the input panel automatically.
+    *
+    * @param obj The entry object
+    * @return EINA_TRUE if input panel will be appeared when the entry is clicked or has a focus, EINA_FALSE otherwise
+    */
+   EAPI Eina_Bool elm_entry_input_panel_enabled_get(Evas_Object *obj) EINA_ARG_NONNULL(1);
+
    EAPI void         elm_entry_background_color_set(Evas_Object *obj, unsigned int r, unsigned int g, unsigned int b, unsigned int a);
    EAPI void         elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap);
    EAPI void         elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod);
    EAPI void         elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on);
-   EAPI void         elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled);
-   EAPI void         elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout);
    EAPI Ecore_IMF_Context *elm_entry_imf_context_get(Evas_Object *obj);
    EAPI void         elm_entry_matchlist_set(Evas_Object *obj, Eina_List *match_list, Eina_Bool case_sensitive);
    EAPI void         elm_entry_magnifier_type_set(Evas_Object *obj, int type) EINA_ARG_NONNULL(1);
@@ -4630,6 +7170,7 @@ extern "C" {
         ELM_GESTURE_FIRST = 0,
 
         ELM_GESTURE_N_TAPS, /**< N fingers single taps */
+        ELM_GESTURE_N_LONG_TAPS, /**< N fingers single long-taps */
         ELM_GESTURE_N_DOUBLE_TAPS, /**< N fingers double-single taps */
         ELM_GESTURE_N_TRIPLE_TAPS, /**< N fingers triple-single taps */
 
@@ -4711,6 +7252,8 @@ extern "C" {
 
         Evas_Coord mx; /**< Momentum on X */
         Evas_Coord my; /**< Momentum on Y */
+
+        unsigned int n;  /**< Number of fingers */
      };
 
    /**
@@ -4728,7 +7271,6 @@ extern "C" {
    struct _Elm_Gesture_Line_Info
      {  /* Report line ends, timestamps, and momentum computed      */
         Elm_Gesture_Momentum_Info momentum; /**< Line momentum info */
-        unsigned int n;            /**< Number of fingers (lines)   */
         /* FIXME should be radians, bot degrees */
         double angle;              /**< Angle (direction) of lines  */
      };
@@ -4749,8 +7291,8 @@ extern "C" {
      {
         Evas_Coord x, y;       /**< Holds zoom center point reported to user  */
         Evas_Coord radius; /**< Holds radius between fingers reported to user */
-        float zoom;            /**< Zoom value: 1.0 means no zoom             */
-        float momentum;        /**< Zoom momentum: zoom growth per second (NOT YET SUPPORTED) */
+        double zoom;            /**< Zoom value: 1.0 means no zoom             */
+        double momentum;        /**< Zoom momentum: zoom growth per second (NOT YET SUPPORTED) */
      };
 
    /**
@@ -5379,6 +7921,13 @@ extern "C" {
         ELM_GENLIST_ITEM_SUBITEMS = (1 << 0),
         ELM_GENLIST_ITEM_GROUP = (1 << 1)
      } Elm_Genlist_Item_Flags;
+   typedef enum _Elm_Genlist_Item_Field_Flags
+     {
+        ELM_GENLIST_ITEM_FIELD_ALL = 0,
+        ELM_GENLIST_ITEM_FIELD_LABEL = (1 << 0),
+        ELM_GENLIST_ITEM_FIELD_ICON = (1 << 1),
+        ELM_GENLIST_ITEM_FIELD_STATE = (1 << 2)
+     } Elm_Genlist_Item_Field_Flags;
    typedef struct _Elm_Genlist_Item_Class Elm_Genlist_Item_Class;
    typedef struct _Elm_Genlist_Item       Elm_Genlist_Item; /**< Item of Elm_Genlist. Sub-type of Elm_Widget_Item */
    typedef struct _Elm_Genlist_Item_Class_Func Elm_Genlist_Item_Class_Func;
@@ -5470,7 +8019,9 @@ extern "C" {
    EAPI void               elm_genlist_item_icons_orphan(Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
    EAPI const Evas_Object *elm_genlist_item_object_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
    EAPI void               elm_genlist_item_update(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
+   EAPI void               elm_genlist_item_fields_update(Elm_Genlist_Item *it, const char *parts, Elm_Genlist_Item_Field_Flags itf) EINA_ARG_NONNULL(1);
    EAPI void               elm_genlist_item_item_class_update(Elm_Genlist_Item *it, const Elm_Genlist_Item_Class *itc) EINA_ARG_NONNULL(1, 2);
+   EAPI const Elm_Genlist_Item_Class *elm_genlist_item_item_class_get(const Elm_Genlist_Item *it) EINA_ARG_NONNULL(1);
    EAPI void               elm_genlist_item_tooltip_text_set(Elm_Genlist_Item *item, const char *text) EINA_ARG_NONNULL(1);
    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);
    EAPI void               elm_genlist_item_tooltip_unset(Elm_Genlist_Item *item) EINA_ARG_NONNULL(1);
@@ -5536,6 +8087,10 @@ extern "C" {
     * "drag" - This is called when the item in the list is being dragged.
     * "longpressed" - This is called when the item is pressed for a certain amount
     *                 of time. By default it's 1 second.
+    * "scroll,anim,start" - This is called when scrolling animation has started.
+    * "scroll,anim,stop" - This is called when scrolling animation has stopped.
+    * "scroll,drag,start" - This is called when dragging the content has started.
+    * "scroll,drag,stop" - This is called when dragging the content has stopped.
     * "scroll,edge,top" - This is called when the genlist is scrolled until the
     *                     top edge.
     * "scroll,edge,bottom" - This is called when the genlist is scrolled until the
@@ -8369,18 +10924,39 @@ extern "C" {
     * stack will become visible.
     *
     * @see also elm_naviframe_content_preserve_on_pop_get()
+    *
+    * @ingroup Naviframe
     */
    EAPI Evas_Object        *elm_naviframe_item_pop(Evas_Object *obj) EINA_ARG_NONNULL(1);
    /**
     * @brief Pop the items between the top and the above one on the given item.
     *
     * @param it The naviframe item
+    *
+    * @ingroup Naviframe
     */
    EAPI void                elm_naviframe_item_pop_to(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
    /**
-    * @brief Delete's the given item.
+   * Promote an item already in the naviframe stack to the top of the stack
+   *
+   * @param it The naviframe item
+   *
+   * This will take the indicated item and promote it to the top of the stack
+   * as if it had been pushed there. The item must already be inside the
+   * naviframe stack to work.
+   *
+   */
+   EAPI void                elm_naviframe_item_promote(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
+   /**
+    * @brief Delete the given item instantly.
     *
     * @param it The naviframe item
+    *
+    * This just deletes the given item from the naviframe item list instantly.
+    * So this would not emit any signals for view transitions but just change
+    * the current view if the given item is a top one.
+    *
+    * @ingroup Naviframe
     */
    EAPI void                elm_naviframe_item_del(Elm_Object_Item *it) EINA_ARG_NONNULL(1);
    /**
@@ -8390,6 +10966,8 @@ extern "C" {
     * @param preserve Enable the preserve mode if EINA_TRUE, disable otherwise
     *
     * @see also elm_naviframe_content_preserve_on_pop_get()
+    *
+    * @ingroup Naviframe
     */
    EAPI void                elm_naviframe_content_preserve_on_pop_set(Evas_Object *obj, Eina_Bool preserve) EINA_ARG_NONNULL(1);
    /**
@@ -8399,6 +10977,8 @@ extern "C" {
     * @return If @c EINA_TRUE, preserve mode is enabled
     *
     * @see also elm_naviframe_content_preserve_on_pop_set()
+    *
+    * @ingroup Naviframe
     */
    EAPI Eina_Bool           elm_naviframe_content_preserve_on_pop_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
    /**
@@ -8407,6 +10987,8 @@ extern "C" {
     * @param obj The naviframe object
     * @return The top item on the naviframe stack or @c NULL, if the stack is
     *         empty
+    *
+    * @ingroup Naviframe
     */
    EAPI Elm_Object_Item    *elm_naviframe_top_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
    /**
@@ -8415,6 +10997,8 @@ extern "C" {
     * @param obj The naviframe object
     * @return The bottom item on the naviframe stack or @c NULL, if the stack is
     *         empty
+    *
+    * @ingroup Naviframe
     */
    EAPI Elm_Object_Item    *elm_naviframe_bottom_item_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
    /**
@@ -8427,6 +11011,8 @@ extern "C" {
     * @li @c "default"
     *
     * @see also elm_naviframe_item_style_get()
+    *
+    * @ingroup Naviframe
     */
    EAPI void                elm_naviframe_item_style_set(Elm_Object_Item *it, const char *item_style) EINA_ARG_NONNULL(1);
    /**
@@ -8436,6 +11022,8 @@ extern "C" {
     * @return The current item style name
     *
     * @see also elm_naviframe_item_style_set()
+    *
+    * @ingroup Naviframe
     */
    EAPI const char         *elm_naviframe_item_style_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
    /**
@@ -8448,6 +11036,8 @@ extern "C" {
     * When the title area is invisible, then the controls would be hidden so as     * to expand the content area to full-size.
     *
     * @see also elm_naviframe_item_title_visible_get()
+    *
+    * @ingroup Naviframe
     */
    EAPI void                elm_naviframe_item_title_visible_set(Elm_Object_Item *it, Eina_Bool visible) EINA_ARG_NONNULL(1);
    /**
@@ -8457,9 +11047,34 @@ extern "C" {
     * @return If @c EINA_TRUE, title area is visible
     *
     * @see also elm_naviframe_item_title_visible_set()
+    *
+    * @ingroup Naviframe
     */
    EAPI Eina_Bool           elm_naviframe_item_title_visible_get(const Elm_Object_Item *it) EINA_ARG_NONNULL(1);
 
+   /**
+    * @brief Set creating prev button automatically or not
+    *
+    * @param obj The naviframe object
+    * @param auto_pushed If @c EINA_TRUE, the previous button(back button) will
+    *        be created internally when you pass the @c NULL to the prev_btn
+    *        parameter in elm_naviframe_item_push
+    *
+    * @see also elm_naviframe_item_push()
+    */
+   EAPI void                elm_naviframe_prev_btn_auto_pushed_set(Evas_Object *obj, Eina_Bool auto_pushed) EINA_ARG_NONNULL(1);
+   /**
+    * @brief Get a value whether prev button(back button) will be auto pushed or
+    *        not.
+    *
+    * @param obj The naviframe object
+    * @return If @c EINA_TRUE, prev button will be auto pushed.
+    *
+    * @see also elm_naviframe_item_push()
+    *           elm_naviframe_prev_btn_auto_pushed_set()
+    */
+   EAPI Eina_Bool           elm_naviframe_prev_btn_auto_pushed_get(const Evas_Object *obj); EINA_ARG_NONNULL(1);
+
    /* Control Bar */
    #define CONTROLBAR_SYSTEM_ICON_ALBUMS "controlbar_albums"
    #define CONTROLBAR_SYSTEM_ICON_ARTISTS "controlbar_artists"