From: Jeeyong Um Date: Tue, 23 May 2017 06:25:36 +0000 (+0900) Subject: doc: Add missing "Elm_" prefix to doxygen group name X-Git-Tag: submit/tizen_3.0/20170626.041320~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59249ff518fad7e00defe95d70634b912340fd3c;p=platform%2Fupstream%2Felementary.git doc: Add missing "Elm_" prefix to doxygen group name Signed-Off-By: Jeeyong Um Change-Id: I85ded32ebf97cd02ce2d85a104dccc9c4b395daa --- diff --git a/src/lib/Elementary_GL_Helpers.h b/src/lib/Elementary_GL_Helpers.h index f45fbd688..b7f3791f3 100644 --- a/src/lib/Elementary_GL_Helpers.h +++ b/src/lib/Elementary_GL_Helpers.h @@ -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); * @c eglGetConfigs N/A Not required * @c eglGetConfigAttrib N/A - * @c eglChooseConfig @ref evas_gl_config_new and @ref Evas_GL_Config - - * @c eglCreateWindowSurface @ref GLView or @ref evas_gl_surface_create @ref GLView provides @ref elm_glview_add + * @c eglCreateWindowSurface @ref Elm_GLView or @ref evas_gl_surface_create @ref Elm_GLView provides @ref elm_glview_add * @c eglCreatePixmapSurface N/A Not available because it is platform dependent * @c eglCreatePbufferSurface @ref evas_gl_pbuffer_surface_create - * @c eglCreatePbufferFromClientBuffer N/A - * @c eglDestroySurface @ref evas_gl_surface_destroy - * @c eglSurfaceAttrib N/A Surfaces can't be changed * @c eglQuerySurface @ref evas_gl_surface_query Subset of features only - * @c eglCreateContext @ref evas_gl_context_create and @ref evas_gl_context_version_create @ref GLView provides @ref elm_glview_add + * @c eglCreateContext @ref evas_gl_context_create and @ref evas_gl_context_version_create @ref Elm_GLView provides @ref elm_glview_add * @c eglDestroyContext @ref evas_gl_context_destroy - * @c eglMakeCurrent @ref evas_gl_make_current - * @c eglWaitGL N/A Use a fence sync if available diff --git a/src/lib/elc_ctxpopup.h b/src/lib/elc_ctxpopup.h index bd083ffad..f69b7be5a 100644 --- a/src/lib/elc_ctxpopup.h +++ b/src/lib/elc_ctxpopup.h @@ -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 diff --git a/src/lib/elc_fileselector.h b/src/lib/elc_fileselector.h index ab8c75c86..8f5337d2e 100644 --- a/src/lib/elc_fileselector.h +++ b/src/lib/elc_fileselector.h @@ -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) diff --git a/src/lib/elc_fileselector_button.h b/src/lib/elc_fileselector_button.h index 210d3464b..87526e342 100644 --- a/src/lib/elc_fileselector_button.h +++ b/src/lib/elc_fileselector_button.h @@ -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) with a @ref Fileselector "file + * window (or inner window) with a @ref Elm_Fileselector "file * selector widget" within. 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. @@ -22,11 +22,11 @@ * @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. * @{ */ diff --git a/src/lib/elc_fileselector_entry.h b/src/lib/elc_fileselector_entry.h index bfdef4f3e..3873b0588 100644 --- a/src/lib/elc_fileselector_entry.h +++ b/src/lib/elc_fileselector_entry.h @@ -8,8 +8,8 @@ * * This is an entry made to be filled with or display a file * system path string. 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. * @{ */ diff --git a/src/lib/elc_hoversel.h b/src/lib/elc_hoversel.h index e436ec64e..b32b50746 100644 --- a/src/lib/elc_hoversel.h +++ b/src/lib/elc_hoversel.h @@ -12,11 +12,11 @@ * 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 diff --git a/src/lib/elc_multibuttonentry.h b/src/lib/elc_multibuttonentry.h index 9bad6ea2f..190779357 100644 --- a/src/lib/elc_multibuttonentry.h +++ b/src/lib/elc_multibuttonentry.h @@ -17,11 +17,11 @@ * 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 diff --git a/src/lib/elc_naviframe.h b/src/lib/elc_naviframe.h index 125b35f51..08da4bf3c 100644 --- a/src/lib/elc_naviframe.h +++ b/src/lib/elc_naviframe.h @@ -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 diff --git a/src/lib/elc_popup.h b/src/lib/elc_popup.h index b87579616..188f74903 100644 --- a/src/lib/elc_popup.h +++ b/src/lib/elc_popup.h @@ -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. * @@ -68,11 +68,11 @@ * 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. diff --git a/src/lib/elm_actionslider.h b/src/lib/elm_actionslider.h index 476818881..7ebbd8048 100644 --- a/src/lib/elm_actionslider.h +++ b/src/lib/elm_actionslider.h @@ -1,6 +1,6 @@ /** * @internal - * @addtogroup Actionslider Actionslider + * @addtogroup Elm_Actionslider Actionslider * @ingroup Elementary * * @image html actionslider_inheritance_tree.png @@ -23,11 +23,11 @@ * * @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 diff --git a/src/lib/elm_actionslider_legacy.h b/src/lib/elm_actionslider_legacy.h index 22a257d83..05db08294 100644 --- a/src/lib/elm_actionslider_legacy.h +++ b/src/lib/elm_actionslider_legacy.h @@ -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); diff --git a/src/lib/elm_bg.h b/src/lib/elm_bg.h index 1007ae5f4..bb13ac566 100644 --- a/src/lib/elm_bg.h +++ b/src/lib/elm_bg.h @@ -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: diff --git a/src/lib/elm_bubble.h b/src/lib/elm_bubble.h index ff85e6bb5..c81d0d4f1 100644 --- a/src/lib/elm_bubble.h +++ b/src/lib/elm_bubble.h @@ -26,11 +26,11 @@ * @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) diff --git a/src/lib/elm_button.h b/src/lib/elm_button.h index 9e1920d26..8d3be9006 100644 --- a/src/lib/elm_button.h +++ b/src/lib/elm_button.h @@ -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. @@ -27,11 +27,11 @@ * @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: diff --git a/src/lib/elm_calendar.h b/src/lib/elm_calendar.h index 65c6470c7..fec2f4ba1 100644 --- a/src/lib/elm_calendar.h +++ b/src/lib/elm_calendar.h @@ -17,11 +17,11 @@ * - 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. diff --git a/src/lib/elm_check.h b/src/lib/elm_check.h index 85f70d904..308902c37 100644 --- a/src/lib/elm_check.h +++ b/src/lib/elm_check.h @@ -16,11 +16,11 @@ * 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) diff --git a/src/lib/elm_clock.h b/src/lib/elm_clock.h index 9fe5e4bb3..b6287fe45 100644 --- a/src/lib/elm_clock.h +++ b/src/lib/elm_clock.h @@ -31,11 +31,11 @@ * 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) diff --git a/src/lib/elm_colorselector.h b/src/lib/elm_colorselector.h index 7c30f974d..81e858337 100644 --- a/src/lib/elm_colorselector.h +++ b/src/lib/elm_colorselector.h @@ -12,11 +12,11 @@ * 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 diff --git a/src/lib/elm_config.h b/src/lib/elm_config.h index ba70c6e27..ffae6aaaf 100644 --- a/src/lib/elm_config.h +++ b/src/lib/elm_config.h @@ -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 diff --git a/src/lib/elm_conform.h b/src/lib/elm_conform.h index eb4180d2f..025ee0d79 100644 --- a/src/lib/elm_conform.h +++ b/src/lib/elm_conform.h @@ -16,11 +16,11 @@ * 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". diff --git a/src/lib/elm_datetime.h b/src/lib/elm_datetime.h index 09b9b4c23..ad5c39c39 100644 --- a/src/lib/elm_datetime.h +++ b/src/lib/elm_datetime.h @@ -165,11 +165,11 @@ * * export ELM_MODULES="datetime_input_ctxpopup>datetime/api" * - * 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 diff --git a/src/lib/elm_dayselector.h b/src/lib/elm_dayselector.h index 321c13b8b..da185e97b 100644 --- a/src/lib/elm_dayselector.h +++ b/src/lib/elm_dayselector.h @@ -52,11 +52,11 @@ * 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 * diff --git a/src/lib/elm_deprecated.h b/src/lib/elm_deprecated.h index c9b85c964..85d1e5817 100644 --- a/src/lib/elm_deprecated.h +++ b/src/lib/elm_deprecated.h @@ -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. * diff --git a/src/lib/elm_diskselector.h b/src/lib/elm_diskselector.h index 8c1178170..9f1f280ff 100644 --- a/src/lib/elm_diskselector.h +++ b/src/lib/elm_diskselector.h @@ -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 diff --git a/src/lib/elm_entry.h b/src/lib/elm_entry.h index 353fa29d6..4c40378a9 100644 --- a/src/lib/elm_entry.h +++ b/src/lib/elm_entry.h @@ -18,12 +18,12 @@ * 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 @@ -208,7 +208,7 @@ * @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 diff --git a/src/lib/elm_flipselector.h b/src/lib/elm_flipselector.h index 5cc11bda8..ab514cf14 100644 --- a/src/lib/elm_flipselector.h +++ b/src/lib/elm_flipselector.h @@ -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). * @@ -16,11 +16,11 @@ * 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 diff --git a/src/lib/elm_frame.h b/src/lib/elm_frame.h index e3428b96c..50a23b338 100644 --- a/src/lib/elm_frame.h +++ b/src/lib/elm_frame.h @@ -20,11 +20,11 @@ * * 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) * diff --git a/src/lib/elm_gengrid.h b/src/lib/elm_gengrid.h index e001323fa..fb1ca73d6 100644 --- a/src/lib/elm_gengrid.h +++ b/src/lib/elm_gengrid.h @@ -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 * @@ -162,7 +162,7 @@ * @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. diff --git a/src/lib/elm_genlist.h b/src/lib/elm_genlist.h index 2f157f3e6..a7c5b3779 100644 --- a/src/lib/elm_genlist.h +++ b/src/lib/elm_genlist.h @@ -10,13 +10,13 @@ * 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 @@ -124,7 +124,7 @@ * * 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 @@ -255,7 +255,7 @@ * @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. diff --git a/src/lib/elm_gesture_layer.h b/src/lib/elm_gesture_layer.h index 930b00aec..d8600fe03 100644 --- a/src/lib/elm_gesture_layer.h +++ b/src/lib/elm_gesture_layer.h @@ -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). * diff --git a/src/lib/elm_getting_started.h b/src/lib/elm_getting_started.h index 684f26277..1f0167114 100644 --- a/src/lib/elm_getting_started.h +++ b/src/lib/elm_getting_started.h @@ -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: diff --git a/src/lib/elm_glview.h b/src/lib/elm_glview.h index 8e81a1d9f..8f24db47c 100644 --- a/src/lib/elm_glview.h +++ b/src/lib/elm_glview.h @@ -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 diff --git a/src/lib/elm_hover.h b/src/lib/elm_hover.h index 8293c4087..fbc7b45d6 100644 --- a/src/lib/elm_hover.h +++ b/src/lib/elm_hover.h @@ -25,11 +25,11 @@ * @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" diff --git a/src/lib/elm_icon.h b/src/lib/elm_icon.h index da489d966..4546387ca 100644 --- a/src/lib/elm_icon.h +++ b/src/lib/elm_icon.h @@ -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 @@ -122,7 +122,7 @@ * @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) diff --git a/src/lib/elm_index.h b/src/lib/elm_index.h index fd8a6e70f..8cbd11777 100644 --- a/src/lib/elm_index.h +++ b/src/lib/elm_index.h @@ -11,21 +11,21 @@ * * 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 diff --git a/src/lib/elm_inwin.h b/src/lib/elm_inwin.h index 9bfa82fb4..00fd7178d 100644 --- a/src/lib/elm_inwin.h +++ b/src/lib/elm_inwin.h @@ -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 diff --git a/src/lib/elm_inwin_legacy.h b/src/lib/elm_inwin_legacy.h index 46144f234..ef0c7e27b 100644 --- a/src/lib/elm_inwin_legacy.h +++ b/src/lib/elm_inwin_legacy.h @@ -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. * diff --git a/src/lib/elm_label.h b/src/lib/elm_label.h index 628356eb4..948f58ef7 100644 --- a/src/lib/elm_label.h +++ b/src/lib/elm_label.h @@ -25,11 +25,11 @@ * 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. * diff --git a/src/lib/elm_layout.h b/src/lib/elm_layout.h index bba527b05..d941c90e1 100644 --- a/src/lib/elm_layout.h +++ b/src/lib/elm_layout.h @@ -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 @@ -73,14 +73,14 @@ * * 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 all be controlled by the theme. 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. * diff --git a/src/lib/elm_list.h b/src/lib/elm_list.h index c633f7113..269522568 100644 --- a/src/lib/elm_list.h +++ b/src/lib/elm_list.h @@ -14,13 +14,13 @@ * 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. diff --git a/src/lib/elm_panel.h b/src/lib/elm_panel.h index fc55bc611..393b26327 100644 --- a/src/lib/elm_panel.h +++ b/src/lib/elm_panel.h @@ -15,11 +15,11 @@ * @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. diff --git a/src/lib/elm_panes.h b/src/lib/elm_panes.h index 0dec35602..74953c205 100644 --- a/src/lib/elm_panes.h +++ b/src/lib/elm_panes.h @@ -14,11 +14,11 @@ * 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> diff --git a/src/lib/elm_photo.h b/src/lib/elm_photo.h index e2ca29066..fec24c7e6 100644 --- a/src/lib/elm_photo.h +++ b/src/lib/elm_photo.h @@ -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). * diff --git a/src/lib/elm_prefs.h b/src/lib/elm_prefs.h index d7500ceb6..ec4e3f491 100644 --- a/src/lib/elm_prefs.h +++ b/src/lib/elm_prefs.h @@ -3,7 +3,7 @@ /** * @internal - * @addtogroup Prefs + * @addtogroup Elm_Prefs * @{ * * @section elm-prefs-widget Prefs diff --git a/src/lib/elm_prefs_common.h b/src/lib/elm_prefs_common.h index d76496f39..49892c629 100644 --- a/src/lib/elm_prefs_common.h +++ b/src/lib/elm_prefs_common.h @@ -1,6 +1,6 @@ /** * @internal - * @addtogroup Prefs + * @addtogroup Elm_Prefs * * @{ */ diff --git a/src/lib/elm_prefs_eo.h b/src/lib/elm_prefs_eo.h index c3e1612ac..657fbd3fd 100644 --- a/src/lib/elm_prefs_eo.h +++ b/src/lib/elm_prefs_eo.h @@ -1,5 +1,5 @@ /** - * @ingroup Prefs + * @ingroup Elm_Prefs * * @{ */ diff --git a/src/lib/elm_prefs_legacy.h b/src/lib/elm_prefs_legacy.h index 582e3d7be..164350453 100644 --- a/src/lib/elm_prefs_legacy.h +++ b/src/lib/elm_prefs_legacy.h @@ -1,7 +1,7 @@ /** * @internal * - * @ingroup Prefs + * @ingroup Elm_Prefs * * @{ */ diff --git a/src/lib/elm_progressbar.h b/src/lib/elm_progressbar.h index 2cf91e56c..99b685f1f 100644 --- a/src/lib/elm_progressbar.h +++ b/src/lib/elm_progressbar.h @@ -30,11 +30,11 @@ * 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) diff --git a/src/lib/elm_radio.h b/src/lib/elm_radio.h index bdd1d1146..bbab252dc 100644 --- a/src/lib/elm_radio.h +++ b/src/lib/elm_radio.h @@ -30,11 +30,11 @@ * 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. diff --git a/src/lib/elm_scroller.h b/src/lib/elm_scroller.h index dedd6c293..4208c602a 100644 --- a/src/lib/elm_scroller.h +++ b/src/lib/elm_scroller.h @@ -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 diff --git a/src/lib/elm_segment_control.h b/src/lib/elm_segment_control.h index be056bdb2..f918bee3c 100644 --- a/src/lib/elm_segment_control.h +++ b/src/lib/elm_segment_control.h @@ -18,11 +18,11 @@ * 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. diff --git a/src/lib/elm_separator.h b/src/lib/elm_separator.h index 443e6b168..c4b62a919 100644 --- a/src/lib/elm_separator.h +++ b/src/lib/elm_separator.h @@ -10,10 +10,10 @@ * * 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. * * @{ */ diff --git a/src/lib/elm_slider.h b/src/lib/elm_slider.h index 70f7bdba9..785902c8a 100644 --- a/src/lib/elm_slider.h +++ b/src/lib/elm_slider.h @@ -26,11 +26,11 @@ * 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. diff --git a/src/lib/elm_slideshow.h b/src/lib/elm_slideshow.h index 1f8683b3e..280ae3093 100644 --- a/src/lib/elm_slideshow.h +++ b/src/lib/elm_slideshow.h @@ -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 @@ -46,11 +46,11 @@ * 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 diff --git a/src/lib/elm_slideshow_common.h b/src/lib/elm_slideshow_common.h index 7d0f72938..635d162f0 100644 --- a/src/lib/elm_slideshow_common.h +++ b/src/lib/elm_slideshow_common.h @@ -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 diff --git a/src/lib/elm_spinner.h b/src/lib/elm_spinner.h index 2fef0c9cd..563cd1c09 100644 --- a/src/lib/elm_spinner.h +++ b/src/lib/elm_spinner.h @@ -18,11 +18,11 @@ * * 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 diff --git a/src/lib/elm_toolbar.h b/src/lib/elm_toolbar.h index e42171601..a2693d3fb 100644 --- a/src/lib/elm_toolbar.h +++ b/src/lib/elm_toolbar.h @@ -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 diff --git a/src/lib/elm_video.h b/src/lib/elm_video.h index b8dc5cd10..e29193afc 100644 --- a/src/lib/elm_video.h +++ b/src/lib/elm_video.h @@ -27,16 +27,16 @@ * 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. diff --git a/src/lib/elm_widget_actionslider.h b/src/lib/elm_widget_actionslider.h index e2ba86e4b..bbb0e67d5 100644 --- a/src/lib/elm_widget_actionslider.h +++ b/src/lib/elm_widget_actionslider.h @@ -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. */ diff --git a/src/lib/elm_widget_bg.h b/src/lib/elm_widget_bg.h index 1a2c1b379..eebb634d5 100644 --- a/src/lib/elm_widget_bg.h +++ b/src/lib/elm_widget_bg.h @@ -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. */ diff --git a/src/lib/elm_widget_box.h b/src/lib/elm_widget_box.h index dbb323500..3868dc74e 100644 --- a/src/lib/elm_widget_box.h +++ b/src/lib/elm_widget_box.h @@ -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. */ diff --git a/src/lib/elm_widget_bubble.h b/src/lib/elm_widget_bubble.h index 25689b635..4042d9d2c 100644 --- a/src/lib/elm_widget_bubble.h +++ b/src/lib/elm_widget_bubble.h @@ -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. */ diff --git a/src/lib/elm_widget_button.h b/src/lib/elm_widget_button.h index ca306b8f2..1496f7d10 100644 --- a/src/lib/elm_widget_button.h +++ b/src/lib/elm_widget_button.h @@ -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. diff --git a/src/lib/elm_widget_calendar.h b/src/lib/elm_widget_calendar.h index 9b61d24cf..8634d38ba 100644 --- a/src/lib/elm_widget_calendar.h +++ b/src/lib/elm_widget_calendar.h @@ -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. */ diff --git a/src/lib/elm_widget_check.h b/src/lib/elm_widget_check.h index 69f40256e..39585409f 100644 --- a/src/lib/elm_widget_check.h +++ b/src/lib/elm_widget_check.h @@ -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. */ diff --git a/src/lib/elm_widget_clock.h b/src/lib/elm_widget_clock.h index 1c19743b5..00fe59fd6 100644 --- a/src/lib/elm_widget_clock.h +++ b/src/lib/elm_widget_clock.h @@ -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. */ diff --git a/src/lib/elm_widget_colorselector.h b/src/lib/elm_widget_colorselector.h index 249884a80..5c10cb203 100644 --- a/src/lib/elm_widget_colorselector.h +++ b/src/lib/elm_widget_colorselector.h @@ -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. */ diff --git a/src/lib/elm_widget_conform.h b/src/lib/elm_widget_conform.h index 6f61eb679..6b50b5b7d 100644 --- a/src/lib/elm_widget_conform.h +++ b/src/lib/elm_widget_conform.h @@ -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. */ diff --git a/src/lib/elm_widget_ctxpopup.h b/src/lib/elm_widget_ctxpopup.h index 125316a4d..394bde0c4 100644 --- a/src/lib/elm_widget_ctxpopup.h +++ b/src/lib/elm_widget_ctxpopup.h @@ -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. */ diff --git a/src/lib/elm_widget_datetime.h b/src/lib/elm_widget_datetime.h index ba23ac06b..376392f61 100644 --- a/src/lib/elm_widget_datetime.h +++ b/src/lib/elm_widget_datetime.h @@ -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. */ diff --git a/src/lib/elm_widget_dayselector.h b/src/lib/elm_widget_dayselector.h index 95301619f..a737b74cc 100644 --- a/src/lib/elm_widget_dayselector.h +++ b/src/lib/elm_widget_dayselector.h @@ -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. */ diff --git a/src/lib/elm_widget_diskselector.h b/src/lib/elm_widget_diskselector.h index 734ba1690..2be565917 100644 --- a/src/lib/elm_widget_diskselector.h +++ b/src/lib/elm_widget_diskselector.h @@ -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. */ diff --git a/src/lib/elm_widget_entry.h b/src/lib/elm_widget_entry.h index b960b4dbd..8cb13bafb 100644 --- a/src/lib/elm_widget_entry.h +++ b/src/lib/elm_widget_entry.h @@ -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. */ diff --git a/src/lib/elm_widget_fileselector.h b/src/lib/elm_widget_fileselector.h index 700a5c296..594da902b 100644 --- a/src/lib/elm_widget_fileselector.h +++ b/src/lib/elm_widget_fileselector.h @@ -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. */ diff --git a/src/lib/elm_widget_fileselector_button.h b/src/lib/elm_widget_fileselector_button.h index 2cbf6e289..2cb4f3d7c 100644 --- a/src/lib/elm_widget_fileselector_button.h +++ b/src/lib/elm_widget_fileselector_button.h @@ -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. diff --git a/src/lib/elm_widget_fileselector_entry.h b/src/lib/elm_widget_fileselector_entry.h index 4cd254493..111c0e2b9 100644 --- a/src/lib/elm_widget_fileselector_entry.h +++ b/src/lib/elm_widget_fileselector_entry.h @@ -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. diff --git a/src/lib/elm_widget_flip.h b/src/lib/elm_widget_flip.h index c30a4efdd..87c84ed00 100644 --- a/src/lib/elm_widget_flip.h +++ b/src/lib/elm_widget_flip.h @@ -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. */ diff --git a/src/lib/elm_widget_flipselector.h b/src/lib/elm_widget_flipselector.h index f5a5244c7..95145937f 100644 --- a/src/lib/elm_widget_flipselector.h +++ b/src/lib/elm_widget_flipselector.h @@ -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. */ diff --git a/src/lib/elm_widget_frame.h b/src/lib/elm_widget_frame.h index 6fa5c6968..26d8ac0db 100644 --- a/src/lib/elm_widget_frame.h +++ b/src/lib/elm_widget_frame.h @@ -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. */ diff --git a/src/lib/elm_widget_gengrid.h b/src/lib/elm_widget_gengrid.h index 417e8822f..18b7f8062 100644 --- a/src/lib/elm_widget_gengrid.h +++ b/src/lib/elm_widget_gengrid.h @@ -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. */ diff --git a/src/lib/elm_widget_genlist.h b/src/lib/elm_widget_genlist.h index 87f16c489..cbe9058b3 100644 --- a/src/lib/elm_widget_genlist.h +++ b/src/lib/elm_widget_genlist.h @@ -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. */ diff --git a/src/lib/elm_widget_grid.h b/src/lib/elm_widget_grid.h index 67aeb7259..90f236d85 100644 --- a/src/lib/elm_widget_grid.h +++ b/src/lib/elm_widget_grid.h @@ -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. */ diff --git a/src/lib/elm_widget_hover.h b/src/lib/elm_widget_hover.h index 50425fc90..e2c0dc8b6 100644 --- a/src/lib/elm_widget_hover.h +++ b/src/lib/elm_widget_hover.h @@ -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. */ diff --git a/src/lib/elm_widget_hoversel.h b/src/lib/elm_widget_hoversel.h index 97b43990f..914b5da6c 100644 --- a/src/lib/elm_widget_hoversel.h +++ b/src/lib/elm_widget_hoversel.h @@ -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. */ diff --git a/src/lib/elm_widget_index.h b/src/lib/elm_widget_index.h index 61ff85bd2..13a601c6a 100644 --- a/src/lib/elm_widget_index.h +++ b/src/lib/elm_widget_index.h @@ -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. */ diff --git a/src/lib/elm_widget_inwin.h b/src/lib/elm_widget_inwin.h index 3554240e8..cdc09500e 100644 --- a/src/lib/elm_widget_inwin.h +++ b/src/lib/elm_widget_inwin.h @@ -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. */ diff --git a/src/lib/elm_widget_layout.h b/src/lib/elm_widget_layout.h index 2f270b896..8b4bbcac1 100644 --- a/src/lib/elm_widget_layout.h +++ b/src/lib/elm_widget_layout.h @@ -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. diff --git a/src/lib/elm_widget_list.h b/src/lib/elm_widget_list.h index a20b218f3..8838bda8e 100644 --- a/src/lib/elm_widget_list.h +++ b/src/lib/elm_widget_list.h @@ -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. */ diff --git a/src/lib/elm_widget_map.h b/src/lib/elm_widget_map.h index f7af3cbb0..cf6b5476a 100644 --- a/src/lib/elm_widget_map.h +++ b/src/lib/elm_widget_map.h @@ -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. */ diff --git a/src/lib/elm_widget_mapbuf.h b/src/lib/elm_widget_mapbuf.h index 0240b761f..3963fc921 100644 --- a/src/lib/elm_widget_mapbuf.h +++ b/src/lib/elm_widget_mapbuf.h @@ -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. */ diff --git a/src/lib/elm_widget_menu.h b/src/lib/elm_widget_menu.h index 3c6b81e12..064a8e776 100644 --- a/src/lib/elm_widget_menu.h +++ b/src/lib/elm_widget_menu.h @@ -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. */ diff --git a/src/lib/elm_widget_naviframe.h b/src/lib/elm_widget_naviframe.h index 4fb916491..374152af8 100644 --- a/src/lib/elm_widget_naviframe.h +++ b/src/lib/elm_widget_naviframe.h @@ -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. */ diff --git a/src/lib/elm_widget_notify.h b/src/lib/elm_widget_notify.h index 7b9a2556e..0a942dc06 100644 --- a/src/lib/elm_widget_notify.h +++ b/src/lib/elm_widget_notify.h @@ -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. */ diff --git a/src/lib/elm_widget_panel.h b/src/lib/elm_widget_panel.h index daf25f937..7ea6b9415 100644 --- a/src/lib/elm_widget_panel.h +++ b/src/lib/elm_widget_panel.h @@ -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. */ diff --git a/src/lib/elm_widget_panes.h b/src/lib/elm_widget_panes.h index aaf8f705f..f4d1632ca 100644 --- a/src/lib/elm_widget_panes.h +++ b/src/lib/elm_widget_panes.h @@ -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. */ diff --git a/src/lib/elm_widget_photo.h b/src/lib/elm_widget_photo.h index 5a1d91fd1..1c128e078 100644 --- a/src/lib/elm_widget_photo.h +++ b/src/lib/elm_widget_photo.h @@ -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. */ diff --git a/src/lib/elm_widget_photocam.h b/src/lib/elm_widget_photocam.h index ff6f79a14..154e58a39 100644 --- a/src/lib/elm_widget_photocam.h +++ b/src/lib/elm_widget_photocam.h @@ -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. */ diff --git a/src/lib/elm_widget_popup.h b/src/lib/elm_widget_popup.h index 6dbea1375..b6a6abd23 100644 --- a/src/lib/elm_widget_popup.h +++ b/src/lib/elm_widget_popup.h @@ -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. */ diff --git a/src/lib/elm_widget_prefs.h b/src/lib/elm_widget_prefs.h index b36967209..1ece3dcb1 100644 --- a/src/lib/elm_widget_prefs.h +++ b/src/lib/elm_widget_prefs.h @@ -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. */ diff --git a/src/lib/elm_widget_progressbar.h b/src/lib/elm_widget_progressbar.h index 03c663f9a..f7c48d220 100644 --- a/src/lib/elm_widget_progressbar.h +++ b/src/lib/elm_widget_progressbar.h @@ -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. */ diff --git a/src/lib/elm_widget_radio.h b/src/lib/elm_widget_radio.h index 53a86abfa..e18bad5ff 100644 --- a/src/lib/elm_widget_radio.h +++ b/src/lib/elm_widget_radio.h @@ -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. */ diff --git a/src/lib/elm_widget_route.h b/src/lib/elm_widget_route.h index 22e001a02..e8c8031d5 100644 --- a/src/lib/elm_widget_route.h +++ b/src/lib/elm_widget_route.h @@ -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. */ diff --git a/src/lib/elm_widget_scroller.h b/src/lib/elm_widget_scroller.h index 24fee89e2..a9f9ebdb6 100644 --- a/src/lib/elm_widget_scroller.h +++ b/src/lib/elm_widget_scroller.h @@ -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. */ diff --git a/src/lib/elm_widget_segment_control.h b/src/lib/elm_widget_segment_control.h index 01a750280..967db10eb 100644 --- a/src/lib/elm_widget_segment_control.h +++ b/src/lib/elm_widget_segment_control.h @@ -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. diff --git a/src/lib/elm_widget_separator.h b/src/lib/elm_widget_separator.h index 6ac955bfe..6d1cbd465 100644 --- a/src/lib/elm_widget_separator.h +++ b/src/lib/elm_widget_separator.h @@ -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. */ diff --git a/src/lib/elm_widget_slider.h b/src/lib/elm_widget_slider.h index eed9f5c1c..9615612dd 100644 --- a/src/lib/elm_widget_slider.h +++ b/src/lib/elm_widget_slider.h @@ -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. */ diff --git a/src/lib/elm_widget_slideshow.h b/src/lib/elm_widget_slideshow.h index 0c0b81348..4523fa190 100644 --- a/src/lib/elm_widget_slideshow.h +++ b/src/lib/elm_widget_slideshow.h @@ -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. */ diff --git a/src/lib/elm_widget_spinner.h b/src/lib/elm_widget_spinner.h index 1dc7a799e..4643b937d 100644 --- a/src/lib/elm_widget_spinner.h +++ b/src/lib/elm_widget_spinner.h @@ -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. */ diff --git a/src/lib/elm_widget_table.h b/src/lib/elm_widget_table.h index 929c0fd9b..d282de541 100644 --- a/src/lib/elm_widget_table.h +++ b/src/lib/elm_widget_table.h @@ -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. */ diff --git a/src/lib/elm_widget_thumb.h b/src/lib/elm_widget_thumb.h index 5a56f8cf4..7adfef6c8 100644 --- a/src/lib/elm_widget_thumb.h +++ b/src/lib/elm_widget_thumb.h @@ -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. */ diff --git a/src/lib/elm_widget_toolbar.h b/src/lib/elm_widget_toolbar.h index a29a05881..d512567b8 100644 --- a/src/lib/elm_widget_toolbar.h +++ b/src/lib/elm_widget_toolbar.h @@ -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. */ diff --git a/src/lib/elm_widget_video.h b/src/lib/elm_widget_video.h index 36349c9b8..d3e32830f 100644 --- a/src/lib/elm_widget_video.h +++ b/src/lib/elm_widget_video.h @@ -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. */ diff --git a/src/lib/elm_widget_web.h b/src/lib/elm_widget_web.h index 6088b27ca..6878ede2d 100644 --- a/src/lib/elm_widget_web.h +++ b/src/lib/elm_widget_web.h @@ -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. */ diff --git a/src/mobile_lib/elc_ctxpopup.h b/src/mobile_lib/elc_ctxpopup.h index 7031a5403..ab19d2952 100644 --- a/src/mobile_lib/elc_ctxpopup.h +++ b/src/mobile_lib/elc_ctxpopup.h @@ -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 diff --git a/src/mobile_lib/elm_genlist.h b/src/mobile_lib/elm_genlist.h index 7bd1b5249..1b527acdc 100644 --- a/src/mobile_lib/elm_genlist.h +++ b/src/mobile_lib/elm_genlist.h @@ -10,13 +10,13 @@ * 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 @@ -116,7 +116,7 @@ * * 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 @@ -247,7 +247,7 @@ * @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. diff --git a/src/mobile_lib/elm_genlist_legacy.h b/src/mobile_lib/elm_genlist_legacy.h index 10a8a5463..9872fde79 100644 --- a/src/mobile_lib/elm_genlist_legacy.h +++ b/src/mobile_lib/elm_genlist_legacy.h @@ -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 */ diff --git a/src/mobile_lib/elm_widget_ctxpopup.h b/src/mobile_lib/elm_widget_ctxpopup.h index 480fce408..42fe6ccff 100644 --- a/src/mobile_lib/elm_widget_ctxpopup.h +++ b/src/mobile_lib/elm_widget_ctxpopup.h @@ -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. */ diff --git a/src/mobile_lib/elm_widget_genlist.h b/src/mobile_lib/elm_widget_genlist.h index f75b7491e..041b7e959 100644 --- a/src/mobile_lib/elm_widget_genlist.h +++ b/src/mobile_lib/elm_widget_genlist.h @@ -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. */