doc: Add missing "Elm_" prefix to doxygen group name 16/130616/2
authorJeeyong Um <conr2d@gmail.com>
Tue, 23 May 2017 06:25:36 +0000 (15:25 +0900)
committerJeeyong Um <conr2d@gmail.com>
Tue, 23 May 2017 06:47:58 +0000 (15:47 +0900)
Signed-Off-By: Jeeyong Um <jc9.um@samsung.com>
Change-Id: I85ded32ebf97cd02ce2d85a104dccc9c4b395daa

118 files changed:
src/lib/Elementary_GL_Helpers.h
src/lib/elc_ctxpopup.h
src/lib/elc_fileselector.h
src/lib/elc_fileselector_button.h
src/lib/elc_fileselector_entry.h
src/lib/elc_hoversel.h
src/lib/elc_multibuttonentry.h
src/lib/elc_naviframe.h
src/lib/elc_popup.h
src/lib/elm_actionslider.h
src/lib/elm_actionslider_legacy.h
src/lib/elm_bg.h
src/lib/elm_bubble.h
src/lib/elm_button.h
src/lib/elm_calendar.h
src/lib/elm_check.h
src/lib/elm_clock.h
src/lib/elm_colorselector.h
src/lib/elm_config.h
src/lib/elm_conform.h
src/lib/elm_datetime.h
src/lib/elm_dayselector.h
src/lib/elm_deprecated.h
src/lib/elm_diskselector.h
src/lib/elm_entry.h
src/lib/elm_flipselector.h
src/lib/elm_frame.h
src/lib/elm_gengrid.h
src/lib/elm_genlist.h
src/lib/elm_gesture_layer.h
src/lib/elm_getting_started.h
src/lib/elm_glview.h
src/lib/elm_hover.h
src/lib/elm_icon.h
src/lib/elm_index.h
src/lib/elm_inwin.h
src/lib/elm_inwin_legacy.h
src/lib/elm_label.h
src/lib/elm_layout.h
src/lib/elm_list.h
src/lib/elm_panel.h
src/lib/elm_panes.h
src/lib/elm_photo.h
src/lib/elm_prefs.h
src/lib/elm_prefs_common.h
src/lib/elm_prefs_eo.h
src/lib/elm_prefs_legacy.h
src/lib/elm_progressbar.h
src/lib/elm_radio.h
src/lib/elm_scroller.h
src/lib/elm_segment_control.h
src/lib/elm_separator.h
src/lib/elm_slider.h
src/lib/elm_slideshow.h
src/lib/elm_slideshow_common.h
src/lib/elm_spinner.h
src/lib/elm_toolbar.h
src/lib/elm_video.h
src/lib/elm_widget_actionslider.h
src/lib/elm_widget_bg.h
src/lib/elm_widget_box.h
src/lib/elm_widget_bubble.h
src/lib/elm_widget_button.h
src/lib/elm_widget_calendar.h
src/lib/elm_widget_check.h
src/lib/elm_widget_clock.h
src/lib/elm_widget_colorselector.h
src/lib/elm_widget_conform.h
src/lib/elm_widget_ctxpopup.h
src/lib/elm_widget_datetime.h
src/lib/elm_widget_dayselector.h
src/lib/elm_widget_diskselector.h
src/lib/elm_widget_entry.h
src/lib/elm_widget_fileselector.h
src/lib/elm_widget_fileselector_button.h
src/lib/elm_widget_fileselector_entry.h
src/lib/elm_widget_flip.h
src/lib/elm_widget_flipselector.h
src/lib/elm_widget_frame.h
src/lib/elm_widget_gengrid.h
src/lib/elm_widget_genlist.h
src/lib/elm_widget_grid.h
src/lib/elm_widget_hover.h
src/lib/elm_widget_hoversel.h
src/lib/elm_widget_index.h
src/lib/elm_widget_inwin.h
src/lib/elm_widget_layout.h
src/lib/elm_widget_list.h
src/lib/elm_widget_map.h
src/lib/elm_widget_mapbuf.h
src/lib/elm_widget_menu.h
src/lib/elm_widget_naviframe.h
src/lib/elm_widget_notify.h
src/lib/elm_widget_panel.h
src/lib/elm_widget_panes.h
src/lib/elm_widget_photo.h
src/lib/elm_widget_photocam.h
src/lib/elm_widget_popup.h
src/lib/elm_widget_prefs.h
src/lib/elm_widget_progressbar.h
src/lib/elm_widget_radio.h
src/lib/elm_widget_route.h
src/lib/elm_widget_scroller.h
src/lib/elm_widget_segment_control.h
src/lib/elm_widget_separator.h
src/lib/elm_widget_slider.h
src/lib/elm_widget_slideshow.h
src/lib/elm_widget_spinner.h
src/lib/elm_widget_table.h
src/lib/elm_widget_thumb.h
src/lib/elm_widget_toolbar.h
src/lib/elm_widget_video.h
src/lib/elm_widget_web.h
src/mobile_lib/elc_ctxpopup.h
src/mobile_lib/elm_genlist.h
src/mobile_lib/elm_genlist_legacy.h
src/mobile_lib/elm_widget_ctxpopup.h
src/mobile_lib/elm_widget_genlist.h

index f45fbd688af92d8b4643ca7bb05c780cc0b16d49..b7f3791f37ecd6209f7aba0034bb60b217edc703 100644 (file)
@@ -23,7 +23,7 @@
  * @file Elementary_GL_Helpers.h
  * @brief Convenience functions and definitions to use OpenGL with EFL.
  *
- * Applications can combine OpenGL and Elementary using the @ref GLView widget.
+ * Applications can combine OpenGL and Elementary using the @ref Elm_GLView widget.
  * Because of the design and specific features of EFL's OpenGL support, porting
  * an application from OpenGL-ES+EGL to EFL can be a bit tedious. In order to
  * ease the transition, this file provides a set of convenience functions and
@@ -38,7 +38,7 @@
  */
 
 /**
- * @brief Convenience macro to insert at the beginning of every function calling OpenGL with @ref GLView.
+ * @brief Convenience macro to insert at the beginning of every function calling OpenGL with @ref Elm_GLView.
  * @param[in]  glview   Elementary GLView object in use
  *
  * Here's a very simple code example:
@@ -65,7 +65,7 @@ static void _draw_gl(Evas_Object *obj)
  *
  * @note This macro should be used in every function that calls OpenGL from the
  *       Elementary. This indeed means that each function must have access to
- *       the @ref GLView widget. Although this might require some changes in
+ *       the @ref Elm_GLView widget. Although this might require some changes in
  *       existing GL codebases, this is the recommended way to use the GL API.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
@@ -74,9 +74,9 @@ static void _draw_gl(Evas_Object *obj)
    Evas_GL_API *__evas_gl_glapi = elm_glview_gl_api_get(glview);
 
 /**
- * @brief Convenience macro to insert at the beginning of every function calling OpenGL with @ref GLView.
+ * @brief Convenience macro to insert at the beginning of every function calling OpenGL with @ref Elm_GLView.
  *
- * @param[in]  glview   Elementary @ref GLView object in use
+ * @param[in]  glview   Elementary @ref Elm_GLView object in use
  * @param[in]  retval   A value to return in case of failure (GL API was not found), can be empty
  *
  * This is similar to @ref ELEMENTARY_GLVIEW_USE except that it will return from
@@ -143,7 +143,7 @@ ELEMENTARY_GLVIEW_GLOBAL_DECLARE()
  * @brief Convenience macro to use the GL helpers in simple applications: define
  *
  * @c ELEMENTARY_GLVIEW_GLOBAL_DEFINE should be used at the top of a file
- * creating the @ref GLView widget.
+ * creating the @ref Elm_GLView widget.
  *
  * Example of a file @c glview.c:
  *
@@ -190,7 +190,7 @@ glview_create(Evas_Object *parent)
  * This macro will set the global variable holding the GL API so that it's
  * available to the application.
  *
- * It should be used right after setting up the @ref GLView object.
+ * It should be used right after setting up the @ref Elm_GLView object.
  *
  * @see @ref ELEMENTARY_GLVIEW_GLOBAL_DECLARE
  * @see @ref ELEMENTARY_GLVIEW_GLOBAL_DEFINE
@@ -244,7 +244,7 @@ glview_create(Evas_Object *parent)
  *
  * While Evas and Ecore provide all the required functions to build a whole
  * application based on EFL and using OpenGL, it is recommended to use
- * @ref GLView instead. Elementary @ref GLView will create a drawable GL
+ * @ref Elm_GLView instead. Elementary @ref Elm_GLView will create a drawable GL
  * surface for the application, and set up all the required callbacks so that
  * the complexity of Evas GL is hidden.
  *
@@ -274,7 +274,7 @@ glview_create(Evas_Object *parent)
  *
  * @subsection elm_opengl_evasglexample Evas GL initialiation with GLView
  *
- * When using @ref GLView, EFL will take care of the tedious creation of all
+ * When using @ref Elm_GLView, EFL will take care of the tedious creation of all
  * the surfaces and contexts. Also, EFL hides the underlying display system
  * so there is no way to get a direct handle to
  *
@@ -367,7 +367,7 @@ ELM_MAIN()
  * @li The user application is responsible for handling screen rotation when
  *     using direct rendering, which is why applications should set the
  *     flag @ref EVAS_GL_OPTIONS_CLIENT_SIDE_ROTATION on the GL surface (or
- *     @ref ELM_GLVIEW_CLIENT_SIDE_ROTATION for @ref GLView). Please also see
+ *     @ref ELM_GLVIEW_CLIENT_SIDE_ROTATION for @ref Elm_GLView). Please also see
  *     @ref evas_gl_rotation_get.
  *
  * @note Direct rendering is an option that can drastically improve the
@@ -380,7 +380,7 @@ ELM_MAIN()
  * Since Tizen 2.3, Evas GL supports the OpenGL-ES 1.1 set of rendering APIs on
  * top of the normal OpenGL-ES 2.0 APIs, if the drivers supports it.
  *
- * With @ref GLView, it is easy to create a 1.1 capable surface:
+ * With @ref Elm_GLView, it is easy to create a 1.1 capable surface:
  * @code
 Evas_Object *glview;
 glview = elm_glview_version_add(win, EVAS_GL_GLES_1_X);
@@ -391,7 +391,7 @@ glview = elm_glview_version_add(win, EVAS_GL_GLES_1_X);
  * Since Tizen 2.4, Evas GL supports the OpenGL-ES 3.0 set of rendering APIs on
  * top of the normal OpenGL-ES 2.0 APIs, if the drivers supports it.
  *
- * With @ref GLView, it is easy to create a 3.0 capable surface:
+ * With @ref Elm_GLView, it is easy to create a 3.0 capable surface:
  * @code
 Evas_Object *glview;
 glview = elm_glview_version_add(win, EVAS_GL_GLES_3_X);
@@ -406,7 +406,7 @@ glview = elm_glview_version_add(win, EVAS_GL_GLES_3_X);
  * a GLES 2.0 API, and the 1.1 and 2.0 APIs are not compatible. Also, the application
  * will then be responsible for calling @c evas_gl_make_current.
  *
- * @remarks Always use @ref GLView unless there is a very good reason not to.
+ * @remarks Always use @ref Elm_GLView unless there is a very good reason not to.
  *
  * @subsection elm_opengl_otheregl Other uses of EGL and their Evas GL equivalents
  *
@@ -419,7 +419,7 @@ glview = elm_glview_version_add(win, EVAS_GL_GLES_3_X);
  * @li @ref elm_opengl_pbuffer "PBuffer surfaces for multithread rendering"
  *
  * These features usually require to use @ref Evas_GL directly rather than just
- * @ref GLView.
+ * @ref Elm_GLView.
  *
  *
  * @anchor elm_opengl_evasglvsegl
@@ -445,14 +445,14 @@ glview = elm_glview_version_add(win, EVAS_GL_GLES_3_X);
  *    <tr> <td> @c eglGetConfigs </td> <td> N/A </td> <td> Not required </td> </tr>
  *    <tr> <td> @c eglGetConfigAttrib </td> <td> N/A </td> <td> - </td> </tr>
  *    <tr> <td> @c eglChooseConfig </td> <td> @ref evas_gl_config_new and @ref Evas_GL_Config </td> <td> - </td> </tr>
- *    <tr> <td> @c eglCreateWindowSurface </td> <td> @ref GLView or @ref evas_gl_surface_create </td> <td> @ref GLView provides @ref elm_glview_add </td> </tr>
+ *    <tr> <td> @c eglCreateWindowSurface </td> <td> @ref Elm_GLView or @ref evas_gl_surface_create </td> <td> @ref Elm_GLView provides @ref elm_glview_add </td> </tr>
  *    <tr> <td> @c eglCreatePixmapSurface </td> <td> N/A </td> <td> Not available because it is platform dependent </td> </tr>
  *    <tr> <td> @c eglCreatePbufferSurface </td> <td> @ref evas_gl_pbuffer_surface_create </td> <td> - </td> </tr>
  *    <tr> <td> @c eglCreatePbufferFromClientBuffer </td> <td> N/A </td> <td> - </td> </tr>
  *    <tr> <td> @c eglDestroySurface </td> <td> @ref evas_gl_surface_destroy </td> <td> - </td> </tr>
  *    <tr> <td> @c eglSurfaceAttrib </td> <td> N/A </td> <td> Surfaces can't be changed </td> </tr>
  *    <tr> <td> @c eglQuerySurface </td> <td> @ref evas_gl_surface_query </td> <td> Subset of features only </td> </tr>
- *    <tr> <td> @c eglCreateContext </td> <td> @ref evas_gl_context_create and @ref evas_gl_context_version_create </td> <td> @ref GLView provides @ref elm_glview_add </td> </tr>
+ *    <tr> <td> @c eglCreateContext </td> <td> @ref evas_gl_context_create and @ref evas_gl_context_version_create </td> <td> @ref Elm_GLView provides @ref elm_glview_add </td> </tr>
  *    <tr> <td> @c eglDestroyContext </td> <td> @ref evas_gl_context_destroy </td> <td> - </td> </tr>
  *    <tr> <td> @c eglMakeCurrent </td> <td> @ref evas_gl_make_current </td> <td> - </td> </tr>
  *    <tr> <td> @c eglWaitGL </td> <td> N/A </td> <td> Use a fence sync if available </td> </tr>
index bd083ffad8b3367d57e2a9551ebcb59fbeef42b5..f69b7be5a661f1f44e46016c04eaa1d6a48e1d2a 100644 (file)
@@ -19,7 +19,7 @@
  * functions acting on it also work for context popup objects (since 1.8).
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "dismissed" - This is called when 1. the outside of ctxpopup was clicked
  * or 2. its parent area is changed or 3. the language is changed and also when
  * 4. the parent object is resized due to the window rotation. Then ctxpopup is
index ab8c75c86966558113810be01f15277b20371fe0..8f5337d2eefc60e603878a8bb58aa0ee7708cef2 100644 (file)
@@ -36,7 +36,7 @@
  * functions acting on it also work for file selector objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "activated" - the user activated a file. This can happen by
  *      double-clicking or pressing Enter key. (@p event_info is a
  *      pointer to the activated file path)
index 210d3464b1901de73ecc497fbc9551f7d21f8518..87526e342a0a3bb648b27ca91dd9e16b167dcdce 100644 (file)
@@ -7,7 +7,7 @@
  * @image latex fileselector_button_inheritance_tree.eps
  *
  * This is a button that, when clicked, creates an Elementary
- * window (or inner window) <b> with a @ref Fileselector "file
+ * window (or inner window) <b> with a @ref Elm_Fileselector "file
  * selector widget" within</b>. When a file is chosen, the (inner)
  * window is closed and the button emits a signal having the
  * selected file as it's @p event_info.
  * @li @c "hoversel_vertical"
  * @li @c "hoversel_vertical_entry"
  *
- * This widget inherits from the @ref Button one, so that all the
+ * This widget inherits from the @ref Elm_Button one, so that all the
  * functions acting on it also work for file selector button objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Button:
+ * @ref Elm_Button:
  * - @c "file,chosen" - the user has selected a path, whose string
  *   pointer comes as the @p event_info data (a stringshared
  *   string)
@@ -51,7 +51,7 @@
  * @li @ref elm_object_disabled_set
  * @li @ref elm_object_disabled_get
  *
- * @see @ref File_Selector_Entry for a similar widget.
+ * @see @ref Elm_File_Selector_Entry for a similar widget.
  * @{
  */
 
index bfdef4f3e1e55e9869bcec54a581999b1c7d0e45..3873b0588c5381071daf69ee84e6b50e8f74781c 100644 (file)
@@ -8,8 +8,8 @@
  *
  * This is an entry made to be filled with or display a <b>file
  * system path string</b>. Besides the entry itself, the widget has
- * a @ref File_Selector_Button "file selector button" on its side,
- * which will raise an internal @ref Fileselector "file selector widget",
+ * a @ref Elm_File_Selector_Button "file selector button" on its side,
+ * which will raise an internal @ref Elm_Fileselector "file selector widget",
  * when clicked, for path selection aided by file system
  * navigation.
  *
@@ -18,7 +18,7 @@
  * is closed and the selected file's path string is exposed both as
  * a smart event and as the new text on the entry.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for file selector entry objects (since 1.8).
  *
  * This widget encapsulates operations on its internal file
@@ -65,7 +65,7 @@
  * @li @ref elm_object_disabled_get
  *
  *
- * @see @ref File_Selector_Button for a similar widget.
+ * @see @ref Elm_File_Selector_Button for a similar widget.
  * @{
  */
 
index e436ec64e88c6a844920988f796f06e7fbe23c10..b32b50746d487eeb3d0d29da81667858acd9607e 100644 (file)
  * items in the hoversel menu (no more than 8), though is capable of many
  * more.
  *
- * This widget inherits from the @ref Button one, so that all the
+ * This widget inherits from the @ref Elm_Button one, so that all the
  * functions acting on it also work for hoversel objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Button:
+ * @ref Elm_Button:
  * - @c "clicked" - the user clicked the hoversel button and popped up
  *   the sel
  * - @c "selected" - an item in the hoversel list is selected. event_info
index 9bad6ea2f4bb81de9c4f8dd82ab77acce1b31572..19077935716d02bb629605fa312b7e5cb7534838 100644 (file)
  * emails/messages to a group of addresses, each of which is an item
  * that can be clicked for further actions.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for multi-button entry objects (since 1.8).
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "item,selected" - this is called when an item is selected by
  *       api, user interaction, and etc. this is also called when a
  *       user press back space while cursor is on the first field of
index 125b35f512154344686fa6365818552102de0b76..08da4bf3c92fe95ef5e639dcf4b4e551eee28903 100644 (file)
@@ -55,7 +55,7 @@
  *
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "transition,finished" - When the transition is finished in
  *                                changing the item
  * @li @c "title,transition,finished" - When the title area's transition
index b875796164f059201e88a7da2e901bbb18a05cdf..188f74903adea87418cb524b2b98e8293b142ca4 100644 (file)
@@ -5,7 +5,7 @@
  * @image html popup_inheritance_tree.png
  * @image latex popup_inheritance_tree.eps
  *
- * This widget is an enhancement of @ref Notify. In addition to
+ * This widget is an enhancement of @ref Elm_Notify. In addition to
  * content area, there are two optional sections, namely title area and
  * action area.
  *
  * evas_object_show on popup should be called after setting all the contents
  * and buttons of popup.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for popup objects (since 1.8).
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "timeout" - whenever popup is closed as a result of timeout.
  * @li @c "block,clicked" - whenever user taps on Blocked Event area.
  * @li @c "dismissed" - The popup is dismissed with a hide effect.
index 476818881cd3d165bf27901cd980bda35166592a..7ebbd80482eb2179fbbb91b144e324c661b126db 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * @internal
- * @addtogroup Actionslider Actionslider
+ * @addtogroup Elm_Actionslider Actionslider
  * @ingroup Elementary
  *
  * @image html actionslider_inheritance_tree.png
  *
  * @note By default all positions are set as enabled.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for actionslider objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "selected" - when user selects an enabled position (the
  *              label is passed as event info).
  * @li @c "pos_changed" - when the indicator reaches any of the
index 22a257d83e622e9cc630e4b5abf7bf2a56854a6f..05db08294ea7785dbc74ef618020c79d7c0e04d9 100644 (file)
@@ -6,7 +6,7 @@
  * @param parent The parent object
  * @return The new actionslider object or NULL if it cannot be created
  *
- * @ingroup Actionslider
+ * @ingroup Elm_Actionslider
  */
 EAPI Evas_Object                *elm_actionslider_add(Evas_Object *parent);
 
index 1007ae5f49b5dc323bf0364f181e31b5b2f16ac7..bb13ac566c5db2a2e4f573162f76475a35786e33 100644 (file)
@@ -14,7 +14,7 @@
  * properties useful to a background, like setting it to tiled,
  * centered, scaled or stretched.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for background objects.
  *
  * Default content parts of the bg widget that you can use for are:
index ff85e6bb5cece55210f00b77fe809ef0c205681a..c81d0d4f198aca0f5b23a0b8884ac6c0f9150327 100644 (file)
  * @li "bottom_left"
  * @li "bottom_right"
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for bubble objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "clicked" - This is called when a user has clicked the bubble.
  * @li @c "focused" - When the bubble has received focus. (since 1.8)
  * @li @c "unfocused" - When the bubble has lost focus. (since 1.8)
index 9e1920d263dc2ac65f89364779514eed4acf7c18..8d3be9006e907f33d5924ad0b881921049c3b2cd 100644 (file)
@@ -8,11 +8,11 @@
  * This is a push-button. Press it and run some function. It can contain
  * a simple label and icon object and it also has an autorepeat feature.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for button objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li "clicked": the user clicked the button (press/release).
  * @li "repeated": the user pressed the button without releasing it.
  * @li "pressed": button was pressed.
  * @li default: a normal button.
  * @li anchor: Like default, but the button fades away when the mouse is not
  * over it, leaving only the text or icon.
- * @li hoversel_vertical: Internally used by @ref Hoversel to give a
+ * @li hoversel_vertical: Internally used by @ref Elm_Hoversel to give a
  * continuous look across its options.
- * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
- * @li naviframe: Internally used by @ref Naviframe for its back button.
- * @li colorselector: Internally used by @ref Colorselector
+ * @li hoversel_vertical_entry: Another internal for @ref Elm_Hoversel.
+ * @li naviframe: Internally used by @ref Elm_Naviframe for its back button.
+ * @li colorselector: Internally used by @ref Elm_Colorselector
  * for its left and right buttons.
  *
  * Default content parts of the button widget that you can use for are:
index 65c6470c74ef4c2d54f132b89af8001b2a25f1ab..fec2f4ba1273bb42ee5c57665bc0005c3c3e9bd7 100644 (file)
  * - setting the day names of the week (e.g. "Thu" or "Thursday")
  * - setting the year and month format.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for calendar objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - emitted when the date in the calendar is changed.
  * - @c "display,changed" - emitted when the current month displayed in the
  * calendar is changed.
index 85f70d9041198128a45776b3dbed5cee20820bc1..308902c37c036f84178a91a845db2e04ecfcae17 100644 (file)
  * like the radio objects, you can set a pointer to a boolean directly
  * with elm_check_state_pointer_set() for it to modify.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for check objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - This is called whenever the user changes the state of
  *             the check objects (@p event_info is always @c NULL).
  * - @c "focused" - When the check has received focus. (since 1.8)
index 9fe5e4bb3e09b3ef999cf766f190c737b3273bc1..b6287fe45a258e8e11f78b5a540ea71f228cf334 100644 (file)
  * am/pm indicator may be optionally shown, too, when it will
  * switch to 12h.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for clock objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - the clock's user changed the time
  * - @c "focused" - When the clock ehas received focus. (since 1.8)
  * - @c "unfocused" - When the clock has lost focus. (since 1.8)
index 7c30f974d16957796acc415da1fb0a2801bb7b2d..81e858337c5401ae1954271547f4f4b2e4571b7c 100644 (file)
  * can be picked by user from the color set by clicking on individual
  * color item on the palette or by selecting it from selector.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for check objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - When the color value changes on selector
  *   event_info is NULL.
  * - @c "color,item,selected" - When user clicks on color item. The
index ba70c6e275ec2ff851b7e90b74cf82b1ca21b438..ffae6aaafe6c9e7730c513bdb802ab2a52247251 100644 (file)
@@ -3,7 +3,7 @@
  * @ingroup elm_infra_group
  *
  * Elementary configuration is formed by a set options bounded to a
- * given @ref Profile profile, like @ref Theme theme, @ref Fingers
+ * given @ref Elm_Profile profile, like @ref Elm_Theme theme, @ref Elm_Fingers
  * "finger size", etc. These are functions with which one synchronizes
  * changes made to those values to the configuration storing files, de
  * facto. You most probably don't want to use the functions in this
index eb4180d2f7770954b072ce8f7753d5cedc7afa0f..025ee0d79cf658ef50240af9a726550494cb232c 100644 (file)
  * space required for such stuff, and when they popup, as a keyboard
  * shows when an entry is selected, conformant content won't change.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for conformant objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li "virtualkeypad,state,on": if virtualkeypad state is switched to "on".
  * (since 1.8)
  * @li "virtualkeypad,state,off": if virtualkeypad state is switched to "off".
index 09b9b4c23e0845c2f0f46beaf26fc9b4ebc1d14f..ad5c39c39e6a8d56decd712dd590c713ddf01143 100644 (file)
  *
  * <b>export ELM_MODULES="datetime_input_ctxpopup>datetime/api"</b>
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for datetime objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @b "changed" - whenever Datetime field value is changed, this
  * signal is sent.
  * @li @b "language,changed" - whenever system locale changes, this
index 321c13b8b869c999b1a5535b1d0503645a88de00..da185e97bb2ac893fd64a5fd75d659fa2432ec1e 100644 (file)
  * the elm_object_part_content_set/get APIs thus providing a way to handle
  * the different check styles for individual days.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for dayselector objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "dayselector,changed" - when the user changes the state of a day.
  * @li @c "language,changed" - the program's language changed
  *
index c9b85c964da363a2206345e4d4db92ac0d8d0973..85d1e581788ea5b66200c8b8915267c77c286ecc 100644 (file)
@@ -1280,7 +1280,7 @@ EINA_DEPRECATED EAPI void                  elm_icon_size_get(const Evas_Object *
  * of the object, and the icon will fill the entire object (@p fill_outside
  * is @c EINA_TRUE).
  *
- * @note Unlike @ref Image, there's no option in icon to set the aspect ratio
+ * @note Unlike @ref Elm_Image, there's no option in icon to set the aspect ratio
  * retain property to false. Thus, the icon image will always keep its
  * original aspect ratio.
  *
index 8c1178170975a4cc20196f7971e289d2d830802f..9f1f280fff09a9396bd7d42f6bfa09b60a9560dd 100644 (file)
@@ -24,7 +24,7 @@
  * major release).
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "selected" - when item is selected, i.e. scroller stops.
  * @li @c "clicked" - This is called when a user clicks an item (since 1.8)
  * @li @c "scroll,anim,start" - scrolling animation has started
index 353fa29d6de6cdea8576d9faae5e940f0003f6e6..4c40378a970d4419228f732f1b93748f57cec00f 100644 (file)
  * elm_entry_markup_filter_append() and related functions, inline "items" and
  * formatted markup text.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for entry objects (since 1.8).
  *
  * This widget implements the @b @ref elm-scrollable-interface
  * interface, so that all (non-deprecated) functions for the base
- * @ref Scroller widget also work for entries (since 1.8).
+ * @ref Elm_Scroller widget also work for entries (since 1.8).
  *
  * Some calls on the entry's API are marked as @b deprecated, as they
  * just wrap the scrollable widgets counterpart functions. Use the
  * @section entry-signals Emitted signals
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li "aborted": The escape key was pressed on a single line entry. (since 1.7)
  * @li "activated": The enter key was pressed on a single line entry.
  * @li "anchor,clicked": An anchor has been clicked. The event_info
index 5cc11bda8bb53a9f18f9c2208004a8715f349f1f..ab514cf14327facaa35bec6c0925951dad97ca91 100644 (file)
@@ -6,7 +6,7 @@
  * @image latex flipselector_inheritance_tree.eps
  *
  * A flip selector is a widget to show a set of @b text items, one
- * at a time, with the same sheet switching style as the @ref Clock
+ * at a time, with the same sheet switching style as the @ref Elm_Clock
  * "clock" widget, when one changes the current displaying sheet
  * (thus, the "flip" in the name).
  *
  * so that it helps the user to reach an item which is distant from
  * the current selection.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for flip selector objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "selected" - when the widget's selected text item is changed. The @c
  *   event_info parameter is the item that was selected.
  * - @c "overflowed" - when the widget's current selection is changed
index e3428b96c543a2e8c347b037c370663ed6928eed..50a23b338efe1719c1681e8c49ae57c2e3f34559 100644 (file)
  *
  * Of all this styles only default shows the title.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for frame objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "clicked" - The user has clicked the frame's label
  * - @c "language,changed" - the program's language changed (since 1.9)
  *
index e001323fa99b0551be04f2e87e867b05bc1b5e48..fb1ca73d68ab8b9da0b685904af5d5f89bba985e 100644 (file)
@@ -7,7 +7,7 @@
  *
  * This widget aims to position objects in a grid layout while
  * actually creating and rendering only the visible ones, using the
- * same idea as the @ref Genlist "genlist": the user defines a @b
+ * same idea as the @ref Elm_Genlist "genlist": the user defines a @b
  * class for each item, specifying functions that will be called at
  * object creation, deletion, etc. When those items are selected by
  * the user, a callback function is issued. Users may interact with
@@ -16,7 +16,7 @@
  * view) or via the keyboard, navigating through item with the
  * arrow keys.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for gengrid objects.
  *
  * This widget implements the @b @ref elm-scrollable-interface
@@ -64,7 +64,7 @@
  * A gengrid item may be at one of several styles. Elementary
  * provides one by default - "default", but this can be extended by
  * system or application custom themes/overlays/extensions (see
- * @ref Theme "themes" for more details).
+ * @ref Elm_Theme "themes" for more details).
  *
  * @section Gengrid_Item_Class Gengrid item classes
  *
  * @section Gengrid_Smart_Events Gengrid smart events
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "activated" - The user has double-clicked or pressed
  *   (enter|return|spacebar) on an item. The @p event_info parameter
  *   is the gengrid item that was activated.
index 2f157f3e65d76fee480922c8b29aff6e59428eca..a7c5b3779afd3821d5728dfe7e87dbf189c56b3d 100644 (file)
  * while still being fast and low on memory usage. At the same time it was
  * also made to be able to do tree structures. But the price to pay is more
  * complexity when it comes to usage. If all you want is a simple list with
- * icons and a single text, use the normal @ref List object.
+ * icons and a single text, use the normal @ref Elm_List object.
  *
  * Genlist has a fairly large API, mostly because it's relatively complex,
  * trying to be both expansive, powerful and efficient. First we will begin
  * an overview on the theory behind genlist.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for genlist objects.
  *
  * This widget implements the @b @ref elm-scrollable-interface
  *
  * A genlist item may be at one of several styles. Elementary provides one
  * by default - "default", but this can be extended by system or application
- * custom themes/overlays/extensions (see @ref Theme "themes" for more
+ * custom themes/overlays/extensions (see @ref Elm_Theme "themes" for more
  * details).
  *
  * @section Genlist_Manipulation Editing and Navigating
  * @section Genlist_Smart_Events Genlist smart events
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "activated" - The user has double-clicked or pressed
  *   (enter|return|spacebar) on an item. The @p event_info parameter is the
  *   item that was activated.
index 930b00aecdad3b4cee568853381ab7ebec0fca8d..d8600fe0330b6b7cc2e38114b71f4be1eb5a67f5 100644 (file)
@@ -43,7 +43,7 @@
  * (this also contains @ref Elm_Gesture_Momentum_Info internal structure)
  * @ref ELM_GESTURE_N_LINES, @ref ELM_GESTURE_N_FLICKS.
  * Note that we consider a flick as a line-gesture that should be completed
- * in flick-time-limit as defined in @ref Config.
+ * in flick-time-limit as defined in @ref Elm_Config.
  *
  * @ref Elm_Gesture_Zoom_Info is the info reported for @ref ELM_GESTURE_ZOOM gesture.
  *
@@ -55,7 +55,7 @@
  * Note that line, flick, gestures can start without the need to remove fingers from surface.
  * When user fingers rests on same-spot gesture is ended and starts again when fingers moved.
  *
- * Setting glayer_continues_enable to false in @ref Config will change this behavior
+ * Setting glayer_continues_enable to false in @ref Elm_Config will change this behavior
  * so gesture starts when user touches (a *DOWN event) touch-surface
  * and ends when no fingers touches surface (a *UP event).
  *
index 684f262776f8c8411c78017255113dc9dd95f70e..1f016711463c0c918aa1d3a6df6c8009df7490ea 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * @internal
- * @defgroup Start Getting Started
+ * @defgroup Elm_Start Getting Started
  * @ingroup Elementary
  *
  * To write an Elementary app, you can get started with the following:
index 8e81a1d9f065e2078d5851bdee1be8ef09072c05..8f24db47ca198fdcd6c9fa55bfb3e3ded393728a 100644 (file)
@@ -11,7 +11,7 @@
  * to a surface using OpenGL APIs.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref GLView:
+ * @ref Elm_GLView:
  * - @c "focused" - when glview has received focus.
  * - @c "unfocused" - when glview has lost focus.
  * - @c "language,changed" - the program's language changed
index 8293c40876f8ae070da3912062a5c8a8de0fcd71..fbc7b45d628051cc4c3f419ce61165dd43dcc1e6 100644 (file)
  * @li menu
  * @li hoversel_vertical
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for hover objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "clicked" - the user clicked the empty space in the hover to dismiss
  * @li @c "dismissed" - the user clicked the empty space in the hover to dismiss (since 1.8)
  * @li @c "smart,changed" - a content object placed under the "smart"
index da489d966d1235ae52dd51251ff7664de91835c6..4546387ca6c4a3defaa9e70880f845e9a6823c40 100644 (file)
@@ -13,7 +13,7 @@
  * in the @c freedesktop.org theme paths. It's possible to set the
  * order of preference from where an image will be fetched.
  *
- * This widget inherits from the @ref Image one, so that all the
+ * This widget inherits from the @ref Elm_Image one, so that all the
  * functions acting on it also work for icon objects.
  *
  * You should be using an icon, instead of an image, whenever one of
  * @li @c "media_player/stop"
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Image:
+ * @ref Elm_Image:
  * - @c "thumb,done" - elm_icon_thumb_set() has completed with success
  *                     (since 1.7)
  * - @c "thumb,error" - elm_icon_thumb_set() has failed (since 1.7)
index fd8a6e70f9aed3f99993abd994e1777b06885c39..8cbd11777e743890e0f082f552378be7968df4a8 100644 (file)
  *
  * Index widgets are by default hidden and just appear when the
  * user clicks over it's reserved area in the canvas. In its
- * default theme, it's an area one @ref Fingers "finger" wide on
+ * default theme, it's an area one @ref Elm_Fingers "finger" wide on
  * the right side of the index widget's container.
  *
  * When items on the index are selected, smart callbacks get
  * called, so that its user can make other container objects to
  * show a given area or child object depending on the index item
  * selected. You'd probably be using an index together with @ref
- * List "lists", @ref Genlist "generic lists" or @ref Gengrid
+ * List "lists", @ref Elm_Genlist "generic lists" or @ref Elm_Gengrid
  * "general grids".
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for index objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - When the selected index item changes. @c
  *      event_info is the selected item's data pointer.
  * - @c "delay,changed" - When the selected index item changes, but
index 9bfa82fb42d2f47b7cc347aa4a8256af65b573b1..00fd7178d8eb10e29e9d000c9ef592f96ea3a882 100644 (file)
@@ -9,7 +9,7 @@
  * 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
+ * must be created using an @ref Elm_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
@@ -24,9 +24,9 @@
  * possible, but it's sized vertically the most it needs to fit its\
  * contents.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for inner windown objects. It also
- * emits the signals inherited from @ref Layout.
+ * emits the signals inherited from @ref Elm_Layout.
  *
  * Default content parts of the inwin that you can use for are:
  * @li "default" A content of the inwin
index 46144f2345e11e0fe5c6deb7d1dca8f7cef031e7..ef0c7e27bf4c759910f2281f96311d207c6d89d4 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Adds an inwin to the current window
  *
- * The @p obj used as parent @b MUST be an @ref Win "Elementary Window".
+ * The @p obj used as parent @b MUST be an @ref Elm_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.
  *
index 628356eb458654c0a044b67b2759d8882929cbe9..948f58ef7fa0a61a4cd8729b6f9bc41f9c47fcf5 100644 (file)
  * Custom themes can of course invent new markup tags and style them any way
  * they like.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for label objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "language,changed": The program's language changed.
  * @li @c "slide,end": The slide is end.
  *
index bba527b051f49072efb8a02879343f6743439da4..d941c90e1376510dea6d3624345d040f28203959 100644 (file)
@@ -18,7 +18,7 @@
  * the Edje documentation and the EDC reference to get more
  * information about what can be done with Edje.
  *
- * Just like @ref List, @ref Box, and other container widgets, any
+ * Just like @ref Elm_List, @ref Elm_Box, and other container widgets, any
  * object added to the Layout will become its child, meaning that it
  * will be deleted if the Layout is deleted, moved if the Layout is
  * moved, and so on.
@@ -65,7 +65,7 @@
  *
  * @section secBox Box (@c BOX part)
  *
- * An Edje @c BOX part is very similar to the Elementary @ref Box
+ * An Edje @c BOX part is very similar to the Elementary @ref Elm_Box
  * widget. It allows one to add objects to the box and have them
  * distributed along its area, accordingly to the specified @c layout
  * property (now by @c layout we mean the chosen layouting design of
  *
  * A similar effect for having a box with its position, size and other
  * things controlled by the layout theme would be to create an
- * Elementary @ref Box widget and add it as content in a @c SWALLOW part.
+ * Elementary @ref Elm_Box widget and add it as content in a @c SWALLOW part.
  *
  * The main difference to that, by using the layout box instead, is
  * that its behavior, like layouting format, padding, align, etc.,
  * will <b>all be controlled by the theme</b>. This means, for
  * example, that a signal could be sent to the layout's theme (with
  * elm_layout_signal_emit()) and the signal be handled by changing the
- * box's padding, or alignment, or both. Using the Elementary @ref Box
+ * box's padding, or alignment, or both. Using the Elementary @ref Elm_Box
  * widget is not necessarily harder or easier, it just depends on the
  * circumstances and requirements.
  *
@@ -96,7 +96,7 @@
  * @section secTable Table (@c TABLE part)
  *
  * Just like the @ref secBox, the layout table is very similar to the
- * Elementary @ref Table widget. It allows one to add objects to the
+ * Elementary @ref Elm_Table widget. It allows one to add objects to the
  * table by specifying the row and column where the object should be
  * added, and any column or row span, if necessary.
  *
index c633f711347bd046a0bda970a9d9cb8429e2b31c..269522568c58956db613592e599131c3e2247eca 100644 (file)
  * modes of items displaying.
  *
  * A list is a very simple type of list widget. For more robust lists,
- * @ref Genlist should probably be used.
+ * @ref Elm_Genlist should probably be used.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for list objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "activated" - The user has double-clicked or pressed
  *   (enter|return|spacebar) on an item. The @p event_info parameter
  *   is the item that was activated.
index fc55bc61136294875b42fd6700105279bcd13fcd..393b263279c7569a738a369a46585913b9da61dd 100644 (file)
  * @li #ELM_PANEL_ORIENT_RIGHT
  * @li #ELM_PANEL_ORIENT_BOTTOM
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for panel objects (since 1.8).
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "toggled" : When the panel has been toggled. (since 1.18)
  * @li @c "scroll" : When the content has been scrolled (moved). (since 1.10)
  *        This signal is emitted only when the panel is scrollable.
index 0dec356022760161ffb18a9ff2beb280242ae998..74953c205c92001b5dde680e0ec034ebe71383aa 100644 (file)
  * Panes can be split vertically or horizontally, and contents
  * size proportion can be customized (homogeneous by default).
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for panes objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "press" - The panes has been pressed (button wasn't released yet).
  * - @c "unpress" - The panes was released after being pressed.
  * - @c "clicked" - The panes has been clicked>
index e2ca2906606add5f2c704231e23345de08ee4d25..fec24c7e6b5eeac551fd911548a1a4a3f638f207 100644 (file)
@@ -12,7 +12,7 @@
  * on the default theme. If and while no photo is set on it, it
  * displays a person icon, indicating it's a photo placeholder.
  *
- * This widget relies on an internal @ref Icon, so that the APIs of
+ * This widget relies on an internal @ref Elm_Icon, so that the APIs of
  * these two widgets are similar (drag and drop is also possible here,
  * for example).
  *
index d7500ceb6d938efb039ce310550e42ec90389b09..ec4e3f491ba1426f5e828a85bebebcd3228025df 100644 (file)
@@ -3,7 +3,7 @@
 
 /**
  * @internal
- * @addtogroup Prefs
+ * @addtogroup Elm_Prefs
  * @{
  *
  * @section elm-prefs-widget Prefs
index d76496f39a720f70dc6a456ec019297cfc7451c8..49892c6294c9fdd06d8c430b4c17bfb79ed27e26 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * @internal
- * @addtogroup Prefs
+ * @addtogroup Elm_Prefs
  *
  * @{
  */
index c3e1612ac3c5f22317787ee4680a8ce5d745d4d5..657fbd3fd37dafa126efcc2252c558807e12eccc 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * @ingroup Prefs
+ * @ingroup Elm_Prefs
  *
  * @{
  */
index 582e3d7beababb09230c68447d194395fea486bf..16435045323cdfdfa761ff925e2f2472458dc97d 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * @internal
  *
- * @ingroup Prefs
+ * @ingroup Elm_Prefs
  *
  * @{
  */
index 2cf91e56c5e9d325400ef840146548f7beb8cfd3..99b685f1f2b83b1d0371e7f0f849c16d4ce99d18 100644 (file)
  * Applications can query the progress bar for its value with
  * elm_progressbar_value_get().
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for progress bar objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "changed" - when the value is changed (since 1.7)
  * @li @c "focused" - When the progressbar has received focus. (since 1.8)
  * @li @c "unfocused" - When the progressbar has lost focus. (since 1.8)
index bdd1d1146ca6defebf2314214f75ed13ed7e7007..bbab252dcd70d9427cb601eb9ddceaff7b1ca238 100644 (file)
  * The radio objects will modify this directly. That implies the pointer must
  * point to valid memory for as long as the radio objects exist.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for radio objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "changed" - This is called when the radio object is selected. If you
  * want to trace the state change of a radio group, you should add this callback
  * to all the radio objects in that group.
index dedd6c2939965194dc595812b4ff3083e1c1e285..4208c602a2212b42180a7a69eb05746a47a94e96 100644 (file)
@@ -12,7 +12,7 @@
  * always have a small minimum size by default as it won't be limited
  * by the contents of the scroller.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for scroller objects.
  *
  * This widget emits the following signals, besides the ones sent from
index be056bdb2aeb6506569a6684dfbfdc6ac6049762..f918bee3c4f64523d39637c376821994580f53c1 100644 (file)
  * Only one segment item can be at selected state. A segment item can display
  * combination of Text and any Evas_Object like Images or other widget.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for segment control objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - When the user clicks on a segment item which is not
  *   previously selected and get selected. The event_info parameter is the
  *   segment item pointer.
index 443e6b168e1e1fa4fa693be9485b3abeecfb7d38..c4b62a9195f7f054694de67742582d6b98992508 100644 (file)
  *
  * A separator can be vertical or horizontal.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for separator objects.
  *
- * This widget emits the signals coming from @ref Layout.
+ * This widget emits the signals coming from @ref Elm_Layout.
  *
  * @{
  */
index 70f7bdba919c8efacda091479f8d6f9d4bd9795b..785902c8a2d0c4f26c85c20f6bcd31acc39314f7 100644 (file)
  * the object or applications scaling factor. At any point code can query the
  * slider for its value with elm_slider_value_get().
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for slider objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - Whenever the slider value is changed by the user.
  * - @c "slider,drag,start" - dragging the slider indicator around has started.
  * - @c "slider,drag,stop" - dragging the slider indicator around has stopped.
index 1f8683b3e48bbadddb62e94acdad746174edb11a..280ae309389c96c31e086eab2ec552c01c6f3dcd 100644 (file)
@@ -20,7 +20,7 @@
  *
  * @section Slideshow_Items Slideshow items
  *
- * For slideshow items, just like for @ref Genlist "genlist" ones,
+ * For slideshow items, just like for @ref Elm_Genlist "genlist" ones,
  * the user defines a @b classes, specifying functions that will be
  * called on the item's creation and deletion times.
  *
@@ -30,7 +30,7 @@
  * - @c func.get - When an item is displayed, this function is
  *   called, and it's where one should create the item object, de
  *   facto. For example, the object can be a pure Evas image object
- *   or an Elementary @ref Photocam "photocam" widget.
+ *   or an Elementary @ref Elm_Photocam "photocam" widget.
  *   See #SlideshowItemGetFunc.
  * - @c func.del - When an item is no more displayed, this function
  *   is called, where the user must delete any data associated to
  * cached @b before and @b after the current item, in the widget's
  * item list.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for slideshow objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - when the slideshow switches its view to a new
  *   item. event_info parameter in callback contains the current visible item
  * - @c "transition,end" - when a slide transition ends. event_info parameter
index 7d0f7293846a16f247ef88d31e5dfa6969f4411a..635d162f0f71015724d20716ba38886b2146bcb1 100644 (file)
@@ -20,7 +20,7 @@ typedef struct _Elm_Slideshow_Item_Class_Func Elm_Slideshow_Item_Class_Func;
 /**
  * @struct _Elm_Slideshow_Item_Class
  *
- * Slideshow item class definition. See @ref Slideshow_Items for
+ * Slideshow item class definition. See @ref Elm_Slideshow_Items for
  * field details.
  */
 struct _Elm_Slideshow_Item_Class
index 2fef0c9cd9ed0a285192bad0e23f74dc28a860b4..563cd1c09753196045f09c64a5e54965039a2b62 100644 (file)
  *
  * It also allows specific values to be replaced by pre-defined labels.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for spinner objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "changed" - Whenever the spinner value is changed.
  * - @c "delay,changed" - A short time after the value is changed by
  *    the user.  This will be called only when the user stops dragging
index e421716014c181e1deba26d02852abd967b342a2..a2693d3fbbb0940578d4704a6c1ab5c65154dda6 100644 (file)
@@ -18,7 +18,7 @@
  *
  * This widget implements the @b @ref elm-scrollable-interface
  * interface, so that all (non-deprecated) functions for the base
- * @ref Scroller widget also work for toolbars (since 1.8)
+ * @ref Elm_Scroller widget also work for toolbars (since 1.8)
  *
  * Smart callbacks one can listen to:
  * - @c "clicked" - when the user clicks on a toolbar item and becomes
index b8dc5cd106a44e548b1c01321904ee6ac684664a..e29193afc5ed5de97b2f741be14f67a6d5bc9ab3 100644 (file)
  * linked Elm_Video so it will use the video decoder, if available. It also
  * activates the "remember" function on the linked Elm_Video object.
  *
- * Both widgets inherit from the @ref Layout one, so that all the
+ * Both widgets inherit from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for video objects.
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * @li @c "focused" : When the video has received focus. (since 1.8)
  * @li @c "unfocused" : When the video has lost focus. (since 1.8)
  *
  * The player widget emits the following signals, besides the ones
- * sent from @ref Layout:
+ * sent from @ref Elm_Layout:
  *  - @c "forward,clicked" - the user clicked the forward button.
  *  - @c "info,clicked" - the user clicked the info button.
  *  - @c "next,clicked" - the user clicked the next button.
index e2ba86e4bddd4fd63a3f536a116e340ce3343ef7..bbb0e67d55b21ab81f034bbc5db6a9bc26982bb8 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-actionslider-class The Elementary Actionslider Class
  *
- * Elementary, besides having the @ref Actionslider widget, exposes its
+ * Elementary, besides having the @ref Elm_Actionslider widget, exposes its
  * foundation -- the Elementary Actionslider Class -- in order to create other
  * widgets which are a actionslider with some more logic on top.
  */
index 1a2c1b379ac24c069018da67c62f35636d073e63..eebb634d5b0035787033e01da381d740ad7172df 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-bg-class The Elementary Bg Class
  *
- * Elementary, besides having the @ref Bg widget, exposes its
+ * Elementary, besides having the @ref Elm_Bg widget, exposes its
  * foundation -- the Elementary Bg Class -- in order to create other
  * widgets which are a bg with some more logic on top.
  */
index dbb323500664c23159f67efcd68b56258473ec7f..3868dc74e233d305b9ab614745b47ef9064a4716 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-box-class The Elementary Box Class
  *
- * Elementary, besides having the @ref Box widget, exposes its
+ * Elementary, besides having the @ref Elm_Box widget, exposes its
  * foundation -- the Elementary Box Class -- in order to create
  * other widgets which are a box with some more logic on top.
  */
index 25689b635698a7d02329145ce9a8ad5e6ef4c30e..4042d9d2cbe9ce05dad621baea9c4819af77e924 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-bubble-class The Elementary Bubble Class
  *
- * Elementary, besides having the @ref Bubble widget, exposes its
+ * Elementary, besides having the @ref Elm_Bubble widget, exposes its
  * foundation -- the Elementary Bubble Class -- in order to create other
  * widgets which are a bubble with some more logic on top.
  */
index ca306b8f25cc33c7ce7ff457760fedcb1851286d..1496f7d10bfc1f514b7ff58237a46982773ac97a 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-button-class The Elementary Button Class
  *
- * Elementary, besides having the @ref Button widget, exposes its
+ * Elementary, besides having the @ref Elm_Button widget, exposes its
  * foundation -- the Elementary Button Class -- in order to create
  * other widgets which are, basically, a button with some more logic
  * on top.
index 9b61d24cf437c6dc3d1350d620c1bac511b2cb91..8634d38ba851721bdbcd9c98ac2f656a84f46f51 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-calendar-class The Elementary Calendar Class
  *
- * Elementary, besides having the @ref Calendar widget, exposes its
+ * Elementary, besides having the @ref Elm_Calendar widget, exposes its
  * foundation -- the Elementary Calendar Class -- in order to create other
  * widgets which are a calendar with some more logic on top.
  */
index 69f40256e4d86deb7aa7c1f84c060129b69d86e7..39585409fa47611f4cb4327b1e361db3f8d479a7 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-check-class The Elementary Check Class
  *
- * Elementary, besides having the @ref Check widget, exposes its
+ * Elementary, besides having the @ref Elm_Check widget, exposes its
  * foundation -- the Elementary Check Class -- in order to create other
  * widgets which are a check with some more logic on top.
  */
index 1c19743b5de44a1a6f062c947ec48a2f8a7a7eab..00fe59fd6dc535bbc8e2fb81f4b6546a19337256 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-clock-class The Elementary Clock Class
  *
- * Elementary, besides having the @ref Clock widget, exposes its
+ * Elementary, besides having the @ref Elm_Clock widget, exposes its
  * foundation -- the Elementary Clock Class -- in order to create other
  * widgets which are a clock with some more logic on top.
  */
index 249884a801c9ff9a6f31b1e523e4308ba60cd57c..5c10cb203183c0f2d89609858e37508aefa2a37d 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-colorselector-class The Elementary Colorselector Class
  *
- * Elementary, besides having the @ref Colorselector widget, exposes its
+ * Elementary, besides having the @ref Elm_Colorselector widget, exposes its
  * foundation -- the Elementary Colorselector Class -- in order to create other
  * widgets which are a colorselector with some more logic on top.
  */
index 6f61eb679c82c2d435b7ffa86b8ca9cc1dc3db23..6b50b5b7da040aab05937b2800805ceddf7dbba7 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-conformant-class The Elementary Conformant Class
  *
- * Elementary, besides having the @ref Conformant widget, exposes its
+ * Elementary, besides having the @ref Elm_Conformant widget, exposes its
  * foundation -- the Elementary Conformant Class -- in order to create other
  * widgets which are a conformant with some more logic on top.
  */
index 125316a4dbb3fa68c6645d863f62740d68657c74..394bde0c41299dba0f7c09ff8b0eda274c93865f 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-ctxpopup-class The Elementary Ctxpopup Class
  *
- * Elementary, besides having the @ref Ctxpopup widget, exposes its
+ * Elementary, besides having the @ref Elm_Ctxpopup widget, exposes its
  * foundation -- the Elementary Ctxpopup Class -- in order to create other
  * widgets which are a ctxpopup with some more logic on top.
  */
index ba23ac06b19874f46f3d95a2f83c027fbb80c296..376392f61fabfcef0afd3736f90cc2d44f08fd31 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-datetime-class The Elementary Datetime Class
  *
- * Elementary, besides having the @ref Datetime widget, exposes its
+ * Elementary, besides having the @ref Elm_Datetime widget, exposes its
  * foundation -- the Elementary Datetime Class -- in order to create other
  * widgets which are a datetime with some more logic on top.
  */
index 95301619fa961e5d212d6865b09adc047ab25ee8..a737b74cc3787b14a8d40a050d10a495831394f9 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-dayselector-class The Elementary Dayselector Class
  *
- * Elementary, besides having the @ref Dayselector widget, exposes its
+ * Elementary, besides having the @ref Elm_Dayselector widget, exposes its
  * foundation -- the Elementary Dayselector Class -- in order to create other
  * widgets which are a dayselector with some more logic on top.
  */
index 734ba169014358be185a2c970e1cfa99ca952139..2be5659173e2f66db16606b536f5e916e373a57f 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-diskselector-class The Elementary Diskselector Class
  *
- * Elementary, besides having the @ref Diskselector widget, exposes its
+ * Elementary, besides having the @ref Elm_Diskselector widget, exposes its
  * foundation -- the Elementary Diskselector Class -- in order to create other
  * widgets which are a diskselector with some more logic on top.
  */
index b960b4dbdb399da70f9451704e3b1d81ab3e1817..8cb13bafb66523ce95a81e29cbe4d54f7fd58aee 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-entry-class The Elementary Entry Class
  *
- * Elementary, besides having the @ref Entry widget, exposes its
+ * Elementary, besides having the @ref Elm_Entry widget, exposes its
  * foundation -- the Elementary Entry Class -- in order to create
  * other widgets which are a entry with some more logic on top.
  */
index 700a5c296081db7d6498313a239a822214f2842d..594da902b858263f8c9b800b214989cbb1985223 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-fileselector-class The Elementary Fileselector Class
  *
- * Elementary, besides having the @ref Fileselector widget, exposes its
+ * Elementary, besides having the @ref Elm_Fileselector widget, exposes its
  * foundation -- the Elementary Fileselector Class -- in order to create other
  * widgets which are a fileselector with some more logic on top.
  */
index 2cbf6e28982b4f54e49faeef7eb4a1369930120a..2cb4f3d7c69e1807c1b319e01b0b28054bb44ac5 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-fileselector-button-class The Elementary Fileselector Button Class
  *
- * Elementary, besides having the @ref Fileselector_Button widget,
+ * Elementary, besides having the @ref Elm_Fileselector_Button widget,
  * exposes its foundation -- the Elementary Fileselector Button Class
  * -- in order to create other widgets which are a fileselector_button
  * with some more logic on top.
index 4cd254493c82ceef814eeaee0a4a2d8f3bf88baa..111c0e2b9e1df5a84df049b56a9a323f79149a48 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-fileselector-entry-class The Elementary Fileselector Entry Class
  *
- * Elementary, besides having the @ref Fileselector_Entry widget,
+ * Elementary, besides having the @ref Elm_Fileselector_Entry widget,
  * exposes its foundation -- the Elementary Fileselector Entry Class
  * -- in order to create other widgets which are a fileselector_entry
  * with some more logic on top.
index c30a4efdd5943c0d795615860fe0e67dc7ecfbd6..87c84ed008e6513e1dadfc04f38cb453cee9f8a5 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-flip-class The Elementary Flip Class
  *
- * Elementary, besides having the @ref Flip widget, exposes its
+ * Elementary, besides having the @ref Elm_Flip widget, exposes its
  * foundation -- the Elementary Flip Class -- in order to create other
  * widgets which are a flip with some more logic on top.
  */
index f5a5244c7dd37bcf282cd95023883e9d5ce17f1b..95145937f281239cc592fba4b5ba8d54cf665e27 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-flipselector-class The Elementary Flipselector Class
  *
- * Elementary, besides having the @ref Flipselector widget, exposes its
+ * Elementary, besides having the @ref Elm_Flipselector widget, exposes its
  * foundation -- the Elementary Flipselector Class -- in order to create other
  * widgets which are a flipselector with some more logic on top.
  */
index 6fa5c6968143f407f1aa230a71a9a9e50a310571..26d8ac0db8535535b5186245dc35b0e12a47b4a9 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-frame-class The Elementary Frame Class
  *
- * Elementary, besides having the @ref Frame widget, exposes its
+ * Elementary, besides having the @ref Elm_Frame widget, exposes its
  * foundation -- the Elementary Frame Class -- in order to create other
  * widgets which are a frame with some more logic on top.
  */
index 417e8822f7db1a6896036bbbff3452dc448089b1..18b7f80621af5f448984267fcc30a592da582df4 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-gengrid-class The Elementary Gengrid Class
  *
- * Elementary, besides having the @ref Gengrid widget, exposes its
+ * Elementary, besides having the @ref Elm_Gengrid widget, exposes its
  * foundation -- the Elementary Gengrid Class -- in order to create
  * other widgets which are a gengrid with some more logic on top.
  */
index 87f16c489a30827cdb330d8f83a1b54e1f3af8ff..cbe9058b32fadf3ee0917140568d8a69d5d53f73 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-genlist-class The Elementary Genlist Class
  *
- * Elementary, besides having the @ref Genlist widget, exposes its
+ * Elementary, besides having the @ref Elm_Genlist widget, exposes its
  * foundation -- the Elementary Genlist Class -- in order to create
  * other widgets which are a genlist with some more logic on top.
  */
index 67aeb7259bee82d1d02fd1ff935d38cc45ef7efb..90f236d8598558ba048e8312c244c29625230082 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-grid-class The Elementary Grid Class
  *
- * Elementary, besides having the @ref Grid widget, exposes its
+ * Elementary, besides having the @ref Elm_Grid widget, exposes its
  * foundation -- the Elementary Grid Class -- in order to create other
  * widgets which are a grid with some more logic on top.
  */
index 50425fc90bd9d2c8b439c98d206ce38a8b876b06..e2c0dc8b6bdd088f2b8816ff005041bc1256184d 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-hover-class The Elementary Hover Class
  *
- * Elementary, besides having the @ref Hover widget, exposes its
+ * Elementary, besides having the @ref Elm_Hover widget, exposes its
  * foundation -- the Elementary Hover Class -- in order to create other
  * widgets which are a hover with some more logic on top.
  */
index 97b43990f6c235c7dbf80397dea19f1ec829c494..914b5da6cf5f92e7b16c36800f51658648034792 100644 (file)
@@ -19,7 +19,7 @@
  *
  * @section elm-hoversel-class The Elementary Hoversel Class
  *
- * Elementary, besides having the @ref Hoversel widget, exposes its
+ * Elementary, besides having the @ref Elm_Hoversel widget, exposes its
  * foundation -- the Elementary Hoversel Class -- in order to create other
  * widgets which are a hoversel with some more logic on top.
  */
index 61ff85bd25cdc841bfa3de36a8eaebc62ca82939..13a601c6ac25830b6a7c73f592d8245e5fe1a220 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-index-class The Elementary Index Class
  *
- * Elementary, besides having the @ref Index widget, exposes its
+ * Elementary, besides having the @ref Elm_Index widget, exposes its
  * foundation -- the Elementary Index Class -- in order to create other
  * widgets which are a index with some more logic on top.
  */
index 3554240e8898039b29df942ef8fc5ee9d1e2cd75..cdc09500e60bd9cdffa60ff6bcf3afc76de0e412 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-inwin-class The Elementary Inwin Class
  *
- * Elementary, besides having the @ref Inwin widget, exposes its
+ * Elementary, besides having the @ref Elm_Inwin widget, exposes its
  * foundation -- the Elementary Inwin Class -- in order to create other
  * widgets which are a inwin with some more logic on top.
  */
index 2f270b896946e2575dbcce8a5f44e0e1a9e7fe97..8b4bbcac1dc5f8f20c8e8d4c547ad3b672cd21be 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-layout-class The Elementary Layout Class
  *
- * Elementary, besides having the @ref Layout widget, exposes its
+ * Elementary, besides having the @ref Elm_Layout widget, exposes its
  * foundation -- the Elementary Layout Class -- in order to create
  * other widgets which are, basically, a certain layout with some more
  * logic on top.
index a20b218f33b18f0b58f122be6dd6e61527a545c1..8838bda8e681703f44c22e95540a0535543c3483 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-list-class The Elementary List Class
  *
- * Elementary, besides having the @ref List widget, exposes its
+ * Elementary, besides having the @ref Elm_List widget, exposes its
  * foundation -- the Elementary List Class -- in order to create
  * other widgets which are a list with some more logic on top.
  */
index f7af3cbb0330b076ec0afce43cda2d6322ce030f..cf6b5476abddde6f0931070ff066bb125f3f81f3 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-map-class The Elementary Map Class
  *
- * Elementary, besides having the @ref Map widget, exposes its
+ * Elementary, besides having the @ref Elm_Map widget, exposes its
  * foundation -- the Elementary Map Class -- in order to create
  * other widgets which are a map with some more logic on top.
  */
index 0240b761f631bed4ea973b8731f5a0f772524841..3963fc92103ae8ab79ed57e268d2fb1a58eb8fbd 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-mapbuf-class The Elementary Mapbuf Class
  *
- * Elementary, besides having the @ref Mapbuf widget, exposes its
+ * Elementary, besides having the @ref Elm_Mapbuf widget, exposes its
  * foundation -- the Elementary Mapbuf Class -- in order to create other
  * widgets which are a mapbuf with some more logic on top.
  */
index 3c6b81e120ac79b93e4e0986f17f2c37c5f281f2..064a8e776da5f884d2ae08d15c5bbd8ff61f7721 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-menu-class The Elementary Menu Class
  *
- * Elementary, besides having the @ref Menu widget, exposes its
+ * Elementary, besides having the @ref Elm_Menu widget, exposes its
  * foundation -- the Elementary Menu Class -- in order to create
  * other widgets which are a menu with some more logic on top.
  */
index 4fb91649126dcd20c55711fa9d36fbbde320897d..374152af868b6dd8dd615ba7303270eca09f09fc 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-naviframe-class The Elementary Naviframe Class
  *
- * Elementary, besides having the @ref Naviframe widget, exposes its
+ * Elementary, besides having the @ref Elm_Naviframe widget, exposes its
  * foundation -- the Elementary Naviframe Class -- in order to create other
  * widgets which are a naviframe with some more logic on top.
  */
index 7b9a2556e9f5a897ecfc18c966fc430266dee114..0a942dc06999f3a22feb4c6771a1f0ecb31f5ea3 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-notify-class The Elementary Notify Class
  *
- * Elementary, besides having the @ref Notify widget, exposes its
+ * Elementary, besides having the @ref Elm_Notify widget, exposes its
  * foundation -- the Elementary Notify Class -- in order to create other
  * widgets which are a notify with some more logic on top.
  */
index daf25f93744e75b22dfe2f096fe191fb627aab22..7ea6b9415820c1c8d3e962caa9fd2f613a7d0623 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-panel-class The Elementary Panel Class
  *
- * Elementary, besides having the @ref Panel widget, exposes its
+ * Elementary, besides having the @ref Elm_Panel widget, exposes its
  * foundation -- the Elementary Panel Class -- in order to create other
  * widgets which are a panel with some more logic on top.
  */
index aaf8f705f3a516842dae9748e03ade089dce258e..f4d1632ca6e2af68b38dc3af5dc40bc3a12785c9 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-panes-class The Elementary Panes Class
  *
- * Elementary, besides having the @ref Panes widget, exposes its
+ * Elementary, besides having the @ref Elm_Panes widget, exposes its
  * foundation -- the Elementary Panes Class -- in order to create other
  * widgets which are a panes with some more logic on top.
  */
index 5a1d91fd1aeea5d5648088da6e8b22c4058fdc9e..1c128e07820e16ea86aa6cefc5419523d84c934e 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-photo-class The Elementary Photo Class
  *
- * Elementary, besides having the @ref Photo widget, exposes its
+ * Elementary, besides having the @ref Elm_Photo widget, exposes its
  * foundation -- the Elementary Photo Class -- in order to create
  * other widgets which are a photo with some more logic on top.
  */
index ff6f79a1456ad98ddacb941fb6b3182c867a9846..154e58a3943eb33141ea54f309b2d88e7b25a62a 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-photocam-class The Elementary Photocam Class
  *
- * Elementary, besides having the @ref Photocam widget, exposes its
+ * Elementary, besides having the @ref Elm_Photocam widget, exposes its
  * foundation -- the Elementary Photocam Class -- in order to create
  * other widgets which are a photocam with some more logic on top.
  */
index 6dbea1375e4551d8edbf5f5ee70de6026f792a1c..b6a6abd230b83bc0ccda838ae1955a3680e6fd57 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-popup-class The Elementary Popup Class
  *
- * Elementary, besides having the @ref Popup widget, exposes its
+ * Elementary, besides having the @ref Elm_Popup widget, exposes its
  * foundation -- the Elementary Popup Class -- in order to create other
  * widgets which are a popup with some more logic on top.
  */
index b36967209bc898b4b3c2976721a6029f6d191313..1ece3dcb1db02074ba06d45f2ab4da724b9ea975 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-prefs-class The Elementary Prefs Class
  *
- * Elementary, besides having the @ref Prefs widget, exposes its
+ * Elementary, besides having the @ref Elm_Prefs widget, exposes its
  * foundation -- the Elementary Prefs Class -- in order to create
  * other widgets which are a prefs with some more logic on top.
  */
index 03c663f9ab02c2d36e8347bebbc8163dc767b4ac..f7c48d2204f322ea6150dad18b418840f82c5b16 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-progressbar-class The Elementary Progressbar Class
  *
- * Elementary, besides having the @ref Progressbar widget, exposes its
+ * Elementary, besides having the @ref Elm_Progressbar widget, exposes its
  * foundation -- the Elementary Progressbar Class -- in order to create other
  * widgets which are a progressbar with some more logic on top.
  */
index 53a86abfab944ffe16950ace0062294cdd6e75c5..e18bad5ff1d7ebfe2c50158b925360662c0d1061 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-radio-class The Elementary Radio Class
  *
- * Elementary, besides having the @ref Radio widget, exposes its
+ * Elementary, besides having the @ref Elm_Radio widget, exposes its
  * foundation -- the Elementary Radio Class -- in order to create other
  * widgets which are a radio with some more logic on top.
  */
index 22e001a02d2f53b988f35d03cb74297c56fbc8e6..e8c8031d5d5a721853284a5388b210ecc5e7d15a 100644 (file)
@@ -14,7 +14,7 @@
  *
  * @section elm-route-class The Elementary Route Class
  *
- * Elementary, besides having the @ref Route widget, exposes its
+ * Elementary, besides having the @ref Elm_Route widget, exposes its
  * foundation -- the Elementary Route Class -- in order to create other
  * widgets which are a route with some more logic on top.
  */
index 24fee89e287ed7746a5a0f9beba425cd0fee6a58..a9f9ebdb6dd10f05170a68f4f71e28b4ab77c5d0 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-scroller-class The Elementary Scroller Class
  *
- * Elementary, besides having the @ref Scroller widget, exposes its
+ * Elementary, besides having the @ref Elm_Scroller widget, exposes its
  * foundation -- the Elementary Scroller Class -- in order to create
  * other widgets which are a scroller with some more logic on top.
  */
index 01a7502801b0fb4aa0f90fe886515afd11cf6abc..967db10eb5889fdcbf60b10b84e774ac20e6bd03 100644 (file)
@@ -17,7 +17,7 @@
  *
  * @section elm-segment-control-class The Elementary Segment control Class
  *
- * Elementary, besides having the @ref SegmentControl widget, exposes
+ * Elementary, besides having the @ref Elm_SegmentControl widget, exposes
  * its foundation -- the Elementary Segment control Class -- in order
  * to create other widgets which are a segment control with some more
  * logic on top.
index 6ac955bfe32be18d4b19199190bfc830de24a123..6d1cbd4655ef54b4a4838a5a5ad615b83c8a418f 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-separator-class The Elementary Separator Class
  *
- * Elementary, besides having the @ref Separator widget, exposes its
+ * Elementary, besides having the @ref Elm_Separator widget, exposes its
  * foundation -- the Elementary Separator Class -- in order to create other
  * widgets which are a separator with some more logic on top.
  */
index eed9f5c1cf7a5ed2ef4b9fb37c1069eac6dcfe06..9615612ddf43cba3536a10440ff9b2740c3eeb57 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-slider-class The Elementary Slider Class
  *
- * Elementary, besides having the @ref Slider widget, exposes its
+ * Elementary, besides having the @ref Elm_Slider widget, exposes its
  * foundation -- the Elementary Slider Class -- in order to create other
  * widgets which are a slider with some more logic on top.
  */
index 0c0b81348899c2a8d43d9694aa3d9dafc4a4331d..4523fa190fe7ad784a69d52ce5f9e44f108dba59 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-slideshow-class The Elementary Slideshow Class
  *
- * Elementary, besides having the @ref Slideshow widget, exposes its
+ * Elementary, besides having the @ref Elm_Slideshow widget, exposes its
  * foundation -- the Elementary Slideshow Class -- in order to create other
  * widgets which are a slideshow with some more logic on top.
  */
index 1dc7a799eb4836529d041890542ac46c978e02f1..4643b937d71b19a264fbe067175f1df98cd38b0e 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-spinner-class The Elementary Spinner Class
  *
- * Elementary, besides having the @ref Spinner widget, exposes its
+ * Elementary, besides having the @ref Elm_Spinner widget, exposes its
  * foundation -- the Elementary Spinner Class -- in order to create other
  * widgets which are a spinner with some more logic on top.
  */
index 929c0fd9b6c0ba0e15e444cd5db37d7582111da8..d282de5410565b4fe1195266bcc02d2dc406a431 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-table-class The Elementary Table Class
  *
- * Elementary, besides having the @ref Table widget, exposes its
+ * Elementary, besides having the @ref Elm_Table widget, exposes its
  * foundation -- the Elementary Table Class -- in order to create
  * other widgets which are a table with some more logic on top.
  */
index 5a56f8cf4bb35bf112ff696a66b7002cd4f0568e..7adfef6c883880bc29ced11d1d77b77532dcbf61 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-thumb-class The Elementary Thumb Class
  *
- * Elementary, besides having the @ref Thumb widget, exposes its
+ * Elementary, besides having the @ref Elm_Thumb widget, exposes its
  * foundation -- the Elementary Thumb Class -- in order to create
  * other widgets which are a thumb with some more logic on top.
  */
index a29a05881a722b0544321416122857a9eb19ec16..d512567b8eadd0a0fdaa2ef7e50f38a23d95ed63 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-toolbar-class The Elementary Toolbar Class
  *
- * Elementary, besides having the @ref Toolbar widget, exposes its
+ * Elementary, besides having the @ref Elm_Toolbar widget, exposes its
  * foundation -- the Elementary Toolbar Class -- in order to create other
  * widgets which are a toolbar with some more logic on top.
  */
index 36349c9b87fb9aa60651f64839c73fc0948e51dd..d3e32830f511ec8542bd73e9a9d59f39cce0a573 100644 (file)
@@ -16,7 +16,7 @@
  *
  * @section elm-video-class The Elementary Video Class
  *
- * Elementary, besides having the @ref Video widget, exposes its
+ * Elementary, besides having the @ref Elm_Video widget, exposes its
  * foundation -- the Elementary Video Class -- in order to create other
  * widgets which are a video with some more logic on top.
  */
index 6088b27ca5c3df9e8c1ca6f27456dd99ebc66ba3..6878ede2d1ff44217d77e0bd1f71fb50fc28fcb7 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-web-class The Elementary Web Class
  *
- * Elementary, besides having the @ref Web widget, exposes its
+ * Elementary, besides having the @ref Elm_Web widget, exposes its
  * foundation -- the Elementary Web Class -- in order to create other
  * widgets which are a web view with some more logic on top.
  */
index 7031a54038b30b85c2147aca09bbe1472395f222..ab19d2952d0e99e9cd4037216cfb3f7904cdfaab 100644 (file)
@@ -20,7 +20,7 @@
  * functions acting on it also work for context popup objects (since 1.8).
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "dismissed" - This is called when 1. the outside of ctxpopup was clicked
  * or 2. its parent area is changed or 3. the language is changed and also when
  * 4. the parent object is resized due to the window rotation. Then ctxpopup is
index 7bd1b524998ca11138679597ab8f161847d5a8a4..1b527acdcdf0fb843575626c1db6e0af437768b6 100644 (file)
  * while still being fast and low on memory usage. At the same time it was
  * also made to be able to do tree structures. But the price to pay is more
  * complexity when it comes to usage. If all you want is a simple list with
- * icons and a single text, use the normal @ref List object.
+ * icons and a single text, use the normal @ref Elm_List object.
  *
  * Genlist has a fairly large API, mostly because it's relatively complex,
  * trying to be both expansive, powerful and efficient. First we will begin
  * an overview on the theory behind genlist.
  *
- * This widget inherits from the @ref Layout one, so that all the
+ * This widget inherits from the @ref Elm_Layout one, so that all the
  * functions acting on it also work for genlist objects.
  *
  * This widget implements the @b @ref elm-scrollable-interface
  *
  * A genlist item may be at one of several styles. Elementary provides one
  * by default - "default", but this can be extended by system or application
- * custom themes/overlays/extensions (see @ref Theme "themes" for more
+ * custom themes/overlays/extensions (see @ref Elm_Theme "themes" for more
  * details).
  *
  * @section Genlist_Manipulation Editing and Navigating
  * @section Genlist_Smart_Events Genlist smart events
  *
  * This widget emits the following signals, besides the ones sent from
- * @ref Layout:
+ * @ref Elm_Layout:
  * - @c "activated" - The user has double-clicked or pressed
  *   (enter|return|spacebar) on an item. The @p event_info parameter is the
  *   item that was activated.
index 10a8a5463e32e30112f494fcbb41b53f34e9d877..9872fde791cf5397f26c48b5556088e7fb0018e5 100644 (file)
@@ -570,7 +570,7 @@ EAPI Eina_Bool                     elm_genlist_homogeneous_get(const Evas_Object
  *              Default is @c 32.
  *
  * @see elm_genlist_block_count_get()
- * @see @ref Genlist_Implementation
+ * @see @ref Elm_Genlist_Implementation
  *
  * @ingroup Elm_Genlist
  */
index 480fce408d6389d46b484d9a1306c1acc2118c06..42fe6ccff5746d8e10866cbf4be1046f030995ec 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-ctxpopup-class The Elementary Ctxpopup Class
  *
- * Elementary, besides having the @ref Ctxpopup widget, exposes its
+ * Elementary, besides having the @ref Elm_Ctxpopup widget, exposes its
  * foundation -- the Elementary Ctxpopup Class -- in order to create other
  * widgets which are a ctxpopup with some more logic on top.
  */
index f75b7491ed3e4af15b41f5c19c3ef146c1b22f81..041b7e9599e85859c9c8d274734267b4eb246fcc 100644 (file)
@@ -18,7 +18,7 @@
  *
  * @section elm-genlist-class The Elementary Genlist Class
  *
- * Elementary, besides having the @ref Genlist widget, exposes its
+ * Elementary, besides having the @ref Elm_Genlist widget, exposes its
  * foundation -- the Elementary Genlist Class -- in order to create
  * other widgets which are a genlist with some more logic on top.
  */