summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyoungwoon Roy, Kim <myoungwoon.kim@samsung.com>2020-07-09 10:24:09 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-07-09 10:24:09 +0100
commitcf884dccdab331ae671b094e8448e877a3862faa (patch)
treed73de6a5a537fb78a804feb385c005f70542a501
parent86b5b6128c310a51aa38a4217c6be71424210062 (diff)
downloadefl-cf884dccdab331ae671b094e8448e877a3862faa.tar.gz
docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas
Summary: I had found broken URL address for SGI free software license B v2.0 and changed valid URL address In addition, I found wrong group name in glview, grid, index, label, list, map, mapbuf, naviframe, notify, panel, photocam, plug, popup, radio, scroller, spinner, table, win, atspi, frame, access, textpath, elm_object, color_class and fixed them. Test Plan: API reference documentation modification only Reviewers: segfaultxavi, stefan_schmidt, raster Reviewed By: raster Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12049
-rw-r--r--src/lib/elementary/Elementary.h5
-rw-r--r--src/lib/elementary/efl_ui_frame_legacy.h2
-rw-r--r--src/lib/elementary/elc_naviframe.h4
-rw-r--r--src/lib/elementary/elc_naviframe_common.h2
-rw-r--r--src/lib/elementary/elc_naviframe_legacy.h4
-rw-r--r--src/lib/elementary/elc_popup.h2
-rw-r--r--src/lib/elementary/elc_popup_legacy.h4
-rw-r--r--src/lib/elementary/elm_frame.h2
-rw-r--r--src/lib/elementary/elm_glview.h5
-rw-r--r--src/lib/elementary/elm_glview_common.h2
-rw-r--r--src/lib/elementary/elm_glview_eo.legacy.h2
-rw-r--r--src/lib/elementary/elm_glview_legacy.h14
-rw-r--r--src/lib/elementary/elm_grid.h2
-rw-r--r--src/lib/elementary/elm_grid_legacy.h8
-rw-r--r--src/lib/elementary/elm_index.h4
-rw-r--r--src/lib/elementary/elm_index_item_eo.legacy.h5
-rw-r--r--src/lib/elementary/elm_index_legacy.h6
-rw-r--r--src/lib/elementary/elm_inwin.h2
-rw-r--r--src/lib/elementary/elm_inwin_legacy.h8
-rw-r--r--src/lib/elementary/elm_label.h2
-rw-r--r--src/lib/elementary/elm_label_eo.legacy.h2
-rw-r--r--src/lib/elementary/elm_label_legacy.h2
-rw-r--r--src/lib/elementary/elm_list.h4
-rw-r--r--src/lib/elementary/elm_list_legacy.h2
-rw-r--r--src/lib/elementary/elm_map.h2
-rw-r--r--src/lib/elementary/elm_map_common.h2
-rw-r--r--src/lib/elementary/elm_map_eo.legacy.h6
-rw-r--r--src/lib/elementary/elm_map_legacy.h16
-rw-r--r--src/lib/elementary/elm_mapbuf.h4
-rw-r--r--src/lib/elementary/elm_mapbuf_legacy.h4
-rw-r--r--src/lib/elementary/elm_notify.h2
-rw-r--r--src/lib/elementary/elm_notify_legacy.h8
-rw-r--r--src/lib/elementary/elm_panel.h2
-rw-r--r--src/lib/elementary/elm_panel_common.h2
-rw-r--r--src/lib/elementary/elm_panel_eo.legacy.h2
-rw-r--r--src/lib/elementary/elm_panel_legacy.h4
-rw-r--r--src/lib/elementary/elm_photocam.h2
-rw-r--r--src/lib/elementary/elm_photocam_legacy.h30
-rw-r--r--src/lib/elementary/elm_plug.h4
-rw-r--r--src/lib/elementary/elm_plug_legacy.h4
-rw-r--r--src/lib/elementary/elm_popup_eo.legacy.h2
-rw-r--r--src/lib/elementary/elm_radio.h2
-rw-r--r--src/lib/elementary/elm_radio_legacy.h6
-rw-r--r--src/lib/elementary/elm_scroller.h2
-rw-r--r--src/lib/elementary/elm_scroller_legacy.h74
-rw-r--r--src/lib/elementary/elm_spinner.h4
-rw-r--r--src/lib/elementary/elm_spinner_legacy.h18
-rw-r--r--src/lib/elementary/elm_table.h2
-rw-r--r--src/lib/elementary/elm_table_legacy.h8
-rw-r--r--src/lib/elementary/elm_textpath_legacy.h4
-rw-r--r--src/lib/elementary/elm_win.h2
-rw-r--r--src/lib/elementary/elm_win_common.h2
-rw-r--r--src/lib/elementary/elm_win_eo.h2
-rw-r--r--src/lib/elementary/elm_win_legacy.h186
-rw-r--r--src/lib/evas/Evas_GL.h2
55 files changed, 258 insertions, 247 deletions
diff --git a/src/lib/elementary/Elementary.h b/src/lib/elementary/Elementary.h
index c83481a9fd..8e8c198829 100644
--- a/src/lib/elementary/Elementary.h
+++ b/src/lib/elementary/Elementary.h
@@ -138,6 +138,11 @@ typedef struct _Elm_Version
int revision;
} Elm_Version;
+/**
+ * Elementary Version Information
+ *
+ * @ingroup Elm_General
+ */
EAPI extern Elm_Version *elm_version;
diff --git a/src/lib/elementary/efl_ui_frame_legacy.h b/src/lib/elementary/efl_ui_frame_legacy.h
index 8d225885ae..c6328ce935 100644
--- a/src/lib/elementary/efl_ui_frame_legacy.h
+++ b/src/lib/elementary/efl_ui_frame_legacy.h
@@ -6,7 +6,7 @@ typedef Eo Elm_Frame;
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Frame
+ * @ingroup Elm_Frame_Group
*/
EAPI Evas_Object *elm_frame_add(Evas_Object *parent);
diff --git a/src/lib/elementary/elc_naviframe.h b/src/lib/elementary/elc_naviframe.h
index a07688ff33..02b1bced23 100644
--- a/src/lib/elementary/elc_naviframe.h
+++ b/src/lib/elementary/elc_naviframe.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Naviframe Naviframe
+ * @defgroup Elm_Naviframe_Group Naviframe
* @ingroup Elementary
*
* @image html naviframe_inheritance_tree.png
@@ -85,7 +85,7 @@
*/
/**
- * @addtogroup Elm_Naviframe
+ * @addtogroup Elm_Naviframe_Group
* @{
*/
diff --git a/src/lib/elementary/elc_naviframe_common.h b/src/lib/elementary/elc_naviframe_common.h
index 453587e048..23174ffd9f 100644
--- a/src/lib/elementary/elc_naviframe_common.h
+++ b/src/lib/elementary/elc_naviframe_common.h
@@ -17,7 +17,7 @@ typedef Eina_Bool (*Elm_Naviframe_Item_Pop_Cb)(void *data, Elm_Object_Item *it);
* @param parent Parent object
* @return New object or @c NULL, if it cannot be created
*
- * @ingroup Elm_Naviframe
+ * @ingroup Elm_Naviframe_Group
*/
EAPI Evas_Object *elm_naviframe_add(Evas_Object *parent);
diff --git a/src/lib/elementary/elc_naviframe_legacy.h b/src/lib/elementary/elc_naviframe_legacy.h
index 38f06ca186..31c9f216e2 100644
--- a/src/lib/elementary/elc_naviframe_legacy.h
+++ b/src/lib/elementary/elc_naviframe_legacy.h
@@ -4,7 +4,7 @@
* @param[in] obj The object.
* @param[in] style The current item style name. @c null would be default
*
- * @ingroup Elm_Naviframe_Item
+ * @ingroup Elm_Naviframe_Item_Group
*/
EAPI void elm_naviframe_item_style_set(Elm_Object_Item *obj, const char *style);
@@ -15,7 +15,7 @@ EAPI void elm_naviframe_item_style_set(Elm_Object_Item *obj, const char *style);
*
* @return The current item style name. @c null would be default
*
- * @ingroup Elm_Naviframe_Item
+ * @ingroup Elm_Naviframe_Item_Group
*/
EAPI const char *elm_naviframe_item_style_get(const Elm_Object_Item *obj);
diff --git a/src/lib/elementary/elc_popup.h b/src/lib/elementary/elc_popup.h
index 15f27b26bc..25b5a08eb4 100644
--- a/src/lib/elementary/elc_popup.h
+++ b/src/lib/elementary/elc_popup.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Popup Popup
+ * @defgroup Elm_Popup_Group Popup
* @ingroup Elementary
*
* @image html popup_inheritance_tree.png
diff --git a/src/lib/elementary/elc_popup_legacy.h b/src/lib/elementary/elc_popup_legacy.h
index 3312928593..dded76eefa 100644
--- a/src/lib/elementary/elc_popup_legacy.h
+++ b/src/lib/elementary/elc_popup_legacy.h
@@ -4,8 +4,8 @@
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Popup
+ * @ingroup Elm_Popup_Group
*/
EAPI Evas_Object *elm_popup_add(Evas_Object *parent) EINA_ARG_NONNULL(1);
-#include "elm_popup_eo.legacy.h" \ No newline at end of file
+#include "elm_popup_eo.legacy.h"
diff --git a/src/lib/elementary/elm_frame.h b/src/lib/elementary/elm_frame.h
index 053dacdbef..a5c3c921c0 100644
--- a/src/lib/elementary/elm_frame.h
+++ b/src/lib/elementary/elm_frame.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Frame Frame
+ * @defgroup Elm_Frame_Group Frame
* @ingroup Elementary
*
* @image html frame_inheritance_tree.png
diff --git a/src/lib/elementary/elm_glview.h b/src/lib/elementary/elm_glview.h
index 5829354760..227d3aac16 100644
--- a/src/lib/elementary/elm_glview.h
+++ b/src/lib/elementary/elm_glview.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_GLView GLView
+ * @defgroup Elm_Glview_Group GLView
* @ingroup Elementary
*
* @image html glview_inheritance_tree.png
@@ -23,7 +23,8 @@
*/
/**
- * @ingroup Elm_GLView
+ * @addtogroup Elm_Glview_Group
+ * @{
*/
#include "elm_glview_common.h"
diff --git a/src/lib/elementary/elm_glview_common.h b/src/lib/elementary/elm_glview_common.h
index c84d49bef4..6ebea9054f 100644
--- a/src/lib/elementary/elm_glview_common.h
+++ b/src/lib/elementary/elm_glview_common.h
@@ -1,5 +1,5 @@
/**
- * @addtogroup Elm_GLView
+ * @addtogroup Elm_Glview_Group
*
* @{
*/
diff --git a/src/lib/elementary/elm_glview_eo.legacy.h b/src/lib/elementary/elm_glview_eo.legacy.h
index 562b31207d..e3ac066d5c 100644
--- a/src/lib/elementary/elm_glview_eo.legacy.h
+++ b/src/lib/elementary/elm_glview_eo.legacy.h
@@ -26,7 +26,7 @@ typedef Eo Elm_Glview;
*
* See @ref elm_glview_mode_set See elm_opengl_page
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
typedef enum
{
diff --git a/src/lib/elementary/elm_glview_legacy.h b/src/lib/elementary/elm_glview_legacy.h
index 84e148c511..a5f66aaa65 100644
--- a/src/lib/elementary/elm_glview_legacy.h
+++ b/src/lib/elementary/elm_glview_legacy.h
@@ -4,7 +4,7 @@
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
EAPI Evas_Object *elm_glview_add(Evas_Object *parent);
@@ -25,7 +25,7 @@ EAPI Evas_Object *elm_glview_version_add(Evas_Object *parent, Evas_GL_Context_Ve
*
* @param obj The GLView object
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
EAPI void elm_glview_changed_set(Evas_Object *obj);
@@ -36,7 +36,7 @@ EAPI void elm_glview_changed_set(Evas_Object *obj);
* @param w pointer of int width
* @param h pointer of int height
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
EAPI void elm_glview_size_get(const Evas_Object *obj, int *w, int *h);
@@ -47,7 +47,7 @@ EAPI void elm_glview_size_get(const Evas_Object *obj, int *w, int *h);
* @param w width of GLView
* @param h height of GLView
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
EAPI void elm_glview_size_set(Evas_Object *obj, int w, int h);
@@ -66,7 +66,7 @@ EAPI void elm_glview_init_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func);
* @param obj The GLView object
* @param func The callback function
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
EAPI void elm_glview_del_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func);
@@ -76,7 +76,7 @@ EAPI void elm_glview_del_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func);
* @param obj The GLView object
* @param func The callback function
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
EAPI void elm_glview_resize_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func);
@@ -86,7 +86,7 @@ EAPI void elm_glview_resize_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func);
* @param obj The GLView object
* @param func The callback function
*
- * @ingroup Elm_GLView
+ * @ingroup Elm_Glview_Group
*/
EAPI void elm_glview_render_func_set(Evas_Object *obj, Elm_GLView_Func_Cb func);
#include "elm_glview_eo.legacy.h"
diff --git a/src/lib/elementary/elm_grid.h b/src/lib/elementary/elm_grid.h
index 0888ac4dff..f928c586af 100644
--- a/src/lib/elementary/elm_grid.h
+++ b/src/lib/elementary/elm_grid.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Grid Grid
+ * @defgroup Elm_Grid_Group Grid
* @ingroup Elementary
*
* @image html grid_inheritance_tree.png
diff --git a/src/lib/elementary/elm_grid_legacy.h b/src/lib/elementary/elm_grid_legacy.h
index 6884fb1c06..f3ded0dffc 100644
--- a/src/lib/elementary/elm_grid_legacy.h
+++ b/src/lib/elementary/elm_grid_legacy.h
@@ -4,7 +4,7 @@
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Grid
+ * @ingroup Elm_Grid_Group
*/
EAPI Evas_Object *elm_grid_add(Evas_Object *parent);
@@ -17,7 +17,7 @@ EAPI Evas_Object *elm_grid_add(Evas_Object *parent);
* @param w The virtual width at which to pack it
* @param h The virtual height at which to pack it
*
- * @ingroup Elm_Grid
+ * @ingroup Elm_Grid_Group
*/
EAPI void elm_grid_pack_set(Evas_Object *subobj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
@@ -30,8 +30,8 @@ EAPI void elm_grid_pack_set(Evas_Object *subobj, Evas_Coord x, Evas_Coor
* @param w Pointer to integer to store the virtual width
* @param h Pointer to integer to store the virtual height
*
- * @ingroup Elm_Grid
+ * @ingroup Elm_Grid_Group
*/
EAPI void elm_grid_pack_get(Evas_Object *subobj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
-#include "elm_grid_eo.legacy.h" \ No newline at end of file
+#include "elm_grid_eo.legacy.h"
diff --git a/src/lib/elementary/elm_index.h b/src/lib/elementary/elm_index.h
index 6ede67b8d5..69f2b9a719 100644
--- a/src/lib/elementary/elm_index.h
+++ b/src/lib/elementary/elm_index.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Index Index
+ * @defgroup Elm_Index_Group Index
* @ingroup Elementary
*
* @image html index_inheritance_tree.png
@@ -55,7 +55,7 @@
*/
/**
- * @addtogroup Elm_Index
+ * @addtogroup Elm_Index_Group
* @{
*/
diff --git a/src/lib/elementary/elm_index_item_eo.legacy.h b/src/lib/elementary/elm_index_item_eo.legacy.h
index d4286f7cef..4b9c42daa6 100644
--- a/src/lib/elementary/elm_index_item_eo.legacy.h
+++ b/src/lib/elementary/elm_index_item_eo.legacy.h
@@ -15,6 +15,11 @@ typedef Eo Elm_Index_Item;
#endif
/**
+ * @defgroup Elm_Index_Item_Group
+ * @ingroup Elm_Index_Group
+ */
+
+/**
* @brief Set the selected state of an item.
*
* This sets the selected state of the given item @c it. @c true for selected,
diff --git a/src/lib/elementary/elm_index_legacy.h b/src/lib/elementary/elm_index_legacy.h
index 7f8e7df2eb..d570262f0c 100644
--- a/src/lib/elementary/elm_index_legacy.h
+++ b/src/lib/elementary/elm_index_legacy.h
@@ -7,7 +7,7 @@
*
* This function inserts a new index widget on the canvas.
*
- * @ingroup Elm_Index
+ * @ingroup Elm_Index_Group
*/
EAPI Evas_Object *elm_index_add(Evas_Object *parent);
@@ -23,7 +23,7 @@ EAPI Evas_Object *elm_index_add(Evas_Object *parent);
* it, i.e., to enable vertical mode. it's an area one Fingers "finger" wide on
* the bottom side of the index widget's container.
*
- * @ingroup Elm_Index
+ * @ingroup Elm_Index_Group
*/
EAPI void elm_index_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
@@ -39,7 +39,7 @@ EAPI void elm_index_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
* @return Current status of horizontal mode on index object.
* @c true if horizontal mode is enabled or @c false if disabled.
*
- * @ingroup Elm_Index
+ * @ingroup Elm_Index_Group
*/
EAPI Eina_Bool elm_index_horizontal_get(const Evas_Object *obj);
diff --git a/src/lib/elementary/elm_inwin.h b/src/lib/elementary/elm_inwin.h
index a461094899..e154e08b0c 100644
--- a/src/lib/elementary/elm_inwin.h
+++ b/src/lib/elementary/elm_inwin.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Inwin Inwin
+ * @defgroup Elm_Inwin_Group Inwin
* @ingroup Elm_Win
*
* @image html inwin_inheritance_tree.png
diff --git a/src/lib/elementary/elm_inwin_legacy.h b/src/lib/elementary/elm_inwin_legacy.h
index 0f672e9886..50a7653770 100644
--- a/src/lib/elementary/elm_inwin_legacy.h
+++ b/src/lib/elementary/elm_inwin_legacy.h
@@ -14,7 +14,7 @@
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Inwin
+ * @ingroup Elm_Inwin_Group
*/
EAPI Evas_Object *elm_win_inwin_add(Evas_Object *parent);
@@ -28,7 +28,7 @@ EAPI Evas_Object *elm_win_inwin_add(Evas_Object *parent);
* @param obj The inwin object
* @param content The object to set as content
*
- * @ingroup Elm_Inwin
+ * @ingroup Elm_Inwin_Group
*/
EAPI void elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content);
@@ -47,7 +47,7 @@ EAPI void elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *conte
* @param obj The inwin object
* @return The content that is being used
*
- * @ingroup Elm_Inwin
+ * @ingroup Elm_Inwin_Group
*/
EAPI Evas_Object *elm_win_inwin_content_get(const Evas_Object *obj);
@@ -59,7 +59,7 @@ EAPI Evas_Object *elm_win_inwin_content_get(const Evas_Object *obj);
* @param obj The inwin object
* @return The content that was being used
*
- * @ingroup Elm_Inwin
+ * @ingroup Elm_Inwin_Group
*/
EAPI Evas_Object *elm_win_inwin_content_unset(Evas_Object *obj);
diff --git a/src/lib/elementary/elm_label.h b/src/lib/elementary/elm_label.h
index 7bfa3db11f..4157a27af4 100644
--- a/src/lib/elementary/elm_label.h
+++ b/src/lib/elementary/elm_label.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Label Label
+ * @defgroup Elm_Label_Group Label
* @ingroup Elementary
*
* @image html label_inheritance_tree.png
diff --git a/src/lib/elementary/elm_label_eo.legacy.h b/src/lib/elementary/elm_label_eo.legacy.h
index 126207a228..524e8f2ac9 100644
--- a/src/lib/elementary/elm_label_eo.legacy.h
+++ b/src/lib/elementary/elm_label_eo.legacy.h
@@ -13,7 +13,7 @@ typedef Eo Elm_Label;
/** Slide mode of a label widget
*
- * @ingroup Elm_Label
+ * @ingroup Elm_Label_Group
*/
typedef enum
{
diff --git a/src/lib/elementary/elm_label_legacy.h b/src/lib/elementary/elm_label_legacy.h
index afd0927945..abc7248615 100644
--- a/src/lib/elementary/elm_label_legacy.h
+++ b/src/lib/elementary/elm_label_legacy.h
@@ -4,7 +4,7 @@
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Label
+ * @ingroup Elm_Label_Group
*/
EAPI Evas_Object *elm_label_add(Evas_Object *parent);
diff --git a/src/lib/elementary/elm_list.h b/src/lib/elementary/elm_list.h
index 83bb09cdd3..e98b336001 100644
--- a/src/lib/elementary/elm_list.h
+++ b/src/lib/elementary/elm_list.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_List List
+ * @defgroup Elm_List_Group List
* @ingroup Elementary
*
* @image html list_inheritance_tree.png
@@ -92,7 +92,7 @@
*/
/**
- * @addtogroup Elm_List
+ * @addtogroup Elm_List_Group
* @{
*/
diff --git a/src/lib/elementary/elm_list_legacy.h b/src/lib/elementary/elm_list_legacy.h
index 0cdb591984..1bb601541d 100644
--- a/src/lib/elementary/elm_list_legacy.h
+++ b/src/lib/elementary/elm_list_legacy.h
@@ -7,7 +7,7 @@
*
* This function inserts a new list widget on the canvas.
*
- * @ingroup Elm_List
+ * @ingroup Elm_List_Group
*/
EAPI Evas_Object *elm_list_add(Evas_Object *parent);
diff --git a/src/lib/elementary/elm_map.h b/src/lib/elementary/elm_map.h
index 011e84182f..dd766b0049 100644
--- a/src/lib/elementary/elm_map.h
+++ b/src/lib/elementary/elm_map.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Map Map
+ * @defgroup Elm_Map_Group Map
* @ingroup Elementary
*
* @image html map_inheritance_tree.png
diff --git a/src/lib/elementary/elm_map_common.h b/src/lib/elementary/elm_map_common.h
index 72443e7dc9..3fa3dcc34b 100644
--- a/src/lib/elementary/elm_map_common.h
+++ b/src/lib/elementary/elm_map_common.h
@@ -1,5 +1,5 @@
/**
- * @addtogroup Elm_Map
+ * @addtogroup Elm_Map_Group
*
* @{
*/
diff --git a/src/lib/elementary/elm_map_eo.legacy.h b/src/lib/elementary/elm_map_eo.legacy.h
index e94405c7c9..4e8968a578 100644
--- a/src/lib/elementary/elm_map_eo.legacy.h
+++ b/src/lib/elementary/elm_map_eo.legacy.h
@@ -17,7 +17,7 @@ typedef Eo Elm_Map;
* See @ref elm_map_sources_get() See @ref elm_map_source_get() See
* @ref elm_map_source_set()
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
typedef enum
{
@@ -33,7 +33,7 @@ typedef enum
*
* See @ref elm_map_route_add()
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
typedef enum
{
@@ -51,7 +51,7 @@ typedef enum
*
* See @ref elm_map_route_add()
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
typedef enum
{
diff --git a/src/lib/elementary/elm_map_legacy.h b/src/lib/elementary/elm_map_legacy.h
index 37fffcb737..309b56076b 100644
--- a/src/lib/elementary/elm_map_legacy.h
+++ b/src/lib/elementary/elm_map_legacy.h
@@ -11,7 +11,7 @@
*
* See @ref elm_map_zoom_mode_set() See @ref elm_map_zoom_mode_get()
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
typedef enum
{
@@ -33,7 +33,7 @@ typedef enum
*
* This function inserts a new map widget on the canvas.
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
EAPI Evas_Object *elm_map_add(Evas_Object *parent);
@@ -55,7 +55,7 @@ EAPI Evas_Object *elm_map_add(Evas_Object *parent);
* @param[in] obj The object.
* @param[in] zoom The zoom level.
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
EAPI void elm_map_zoom_set(Evas_Object *obj, int zoom);
@@ -72,7 +72,7 @@ EAPI void elm_map_zoom_set(Evas_Object *obj, int zoom);
*
* @return The zoom level.
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
EAPI int elm_map_zoom_get(const Evas_Object *obj);
@@ -97,7 +97,7 @@ EAPI int elm_map_zoom_get(const Evas_Object *obj);
* #ELM_MAP_ZOOM_MODE_MANUAL (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT, or
* #ELM_MAP_ZOOM_MODE_AUTO_FILL.
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
EAPI void elm_map_zoom_mode_set(Evas_Object *obj, Elm_Map_Zoom_Mode mode);
@@ -111,7 +111,7 @@ EAPI void elm_map_zoom_mode_set(Evas_Object *obj, Elm_Map_Zoom_Mode mode);
* @return The zoom mode of the map, being it one of #ELM_MAP_ZOOM_MODE_MANUAL
* (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT, or #ELM_MAP_ZOOM_MODE_AUTO_FILL.
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
EAPI Elm_Map_Zoom_Mode elm_map_zoom_mode_get(const Evas_Object *obj);
@@ -124,7 +124,7 @@ EAPI Elm_Map_Zoom_Mode elm_map_zoom_mode_get(const Evas_Object *obj);
* @param[in] disabled Use @c true to disable mouse wheel or @c false to enable
* it.
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
EAPI void elm_map_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled);
@@ -137,7 +137,7 @@ EAPI void elm_map_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled);
*
* @return Use @c true to disable mouse wheel or @c false to enable it.
*
- * @ingroup Elm_Map
+ * @ingroup Elm_Map_Group
*/
EAPI Eina_Bool elm_map_wheel_disabled_get(const Evas_Object *obj);
diff --git a/src/lib/elementary/elm_mapbuf.h b/src/lib/elementary/elm_mapbuf.h
index 2eed3a1fc4..9870211ef7 100644
--- a/src/lib/elementary/elm_mapbuf.h
+++ b/src/lib/elementary/elm_mapbuf.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Mapbuf Mapbuf
+ * @defgroup Elm_Mapbuf_Group Mapbu
* @ingroup Elementary
*
* @image html mapbuf_inheritance_tree.png
@@ -32,7 +32,7 @@
*/
/**
- * @addtogroup Elm_Mapbuf
+ * @addtogroup Elm_Mapbuf_Group
* @{
*/
diff --git a/src/lib/elementary/elm_mapbuf_legacy.h b/src/lib/elementary/elm_mapbuf_legacy.h
index 5c659a8951..69ce7aab20 100644
--- a/src/lib/elementary/elm_mapbuf_legacy.h
+++ b/src/lib/elementary/elm_mapbuf_legacy.h
@@ -7,8 +7,8 @@
*
* This function inserts a new mapbuf widget on the canvas.
*
- * @ingroup Elm_Mapbuf
+ * @ingroup Elm_Mapbuf_Group
*/
EAPI Evas_Object *elm_mapbuf_add(Evas_Object *parent);
-#include "elm_mapbuf_eo.legacy.h" \ No newline at end of file
+#include "elm_mapbuf_eo.legacy.h"
diff --git a/src/lib/elementary/elm_notify.h b/src/lib/elementary/elm_notify.h
index 88a2c5cfd3..660cd17233 100644
--- a/src/lib/elementary/elm_notify.h
+++ b/src/lib/elementary/elm_notify.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Notify Notify
+ * @defgroup Elm_Notify_Group Notify
* @ingroup Elementary
*
* @image html notify_inheritance_tree.png
diff --git a/src/lib/elementary/elm_notify_legacy.h b/src/lib/elementary/elm_notify_legacy.h
index ceb39a9dfe..b1d67ad430 100644
--- a/src/lib/elementary/elm_notify_legacy.h
+++ b/src/lib/elementary/elm_notify_legacy.h
@@ -4,7 +4,7 @@
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Notify
+ * @ingroup Elm_Notify_Group
*/
EAPI Evas_Object *elm_notify_add(Evas_Object *parent);
@@ -17,7 +17,7 @@ EAPI Evas_Object *elm_notify_add(Evas_Object *parent);
* Once the parent object is set, a previously set one will be disconnected
* and replaced.
*
- * @ingroup Elm_Notify
+ * @ingroup Elm_Notify_Group
*/
EAPI void elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent);
@@ -29,8 +29,8 @@ EAPI void elm_notify_parent_set(Evas_Object *obj, Evas_O
*
* @see elm_notify_parent_set()
*
- * @ingroup Elm_Notify
+ * @ingroup Elm_Notify_Group
*/
EAPI Evas_Object *elm_notify_parent_get(const Evas_Object *obj);
-#include "elm_notify_eo.legacy.h" \ No newline at end of file
+#include "elm_notify_eo.legacy.h"
diff --git a/src/lib/elementary/elm_panel.h b/src/lib/elementary/elm_panel.h
index 5dbdcbddac..12bd651240 100644
--- a/src/lib/elementary/elm_panel.h
+++ b/src/lib/elementary/elm_panel.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Panel Panel
+ * @defgroup Elm_Panel_Group Panel
* @ingroup Elementary
*
* @image html panel_inheritance_tree.png
diff --git a/src/lib/elementary/elm_panel_common.h b/src/lib/elementary/elm_panel_common.h
index 236c83dab7..82ec280d7e 100644
--- a/src/lib/elementary/elm_panel_common.h
+++ b/src/lib/elementary/elm_panel_common.h
@@ -1,5 +1,5 @@
/**
- * @addtogroup Elm_Panel
+ * @addtogroup Elm_Panel_Group
*
* @{
*/
diff --git a/src/lib/elementary/elm_panel_eo.legacy.h b/src/lib/elementary/elm_panel_eo.legacy.h
index d6b8b49d7a..ae99939681 100644
--- a/src/lib/elementary/elm_panel_eo.legacy.h
+++ b/src/lib/elementary/elm_panel_eo.legacy.h
@@ -13,7 +13,7 @@ typedef Eo Elm_Panel;
/** Panel orientation mode
*
- * @ingroup Elm_Panel
+ * @ingroup Elm_Panel_Group
*/
typedef enum
{
diff --git a/src/lib/elementary/elm_panel_legacy.h b/src/lib/elementary/elm_panel_legacy.h
index a95c31046f..6d23e336d7 100644
--- a/src/lib/elementary/elm_panel_legacy.h
+++ b/src/lib/elementary/elm_panel_legacy.h
@@ -5,8 +5,8 @@
*
* @return The panel object, or NULL on failure
*
- * @ingroup Elm_Panel
+ * @ingroup Elm_Panel_Group
*/
EAPI Evas_Object *elm_panel_add(Evas_Object *parent);
-#include "elm_panel_eo.legacy.h" \ No newline at end of file
+#include "elm_panel_eo.legacy.h"
diff --git a/src/lib/elementary/elm_photocam.h b/src/lib/elementary/elm_photocam.h
index 8e8df2ea3b..fed819a9af 100644
--- a/src/lib/elementary/elm_photocam.h
+++ b/src/lib/elementary/elm_photocam.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Photocam Photocam
+ * @defgroup Elm_Photocam_Group Photocam
* @ingroup Elementary
*
* @image html photocam_inheritance_tree.png
diff --git a/src/lib/elementary/elm_photocam_legacy.h b/src/lib/elementary/elm_photocam_legacy.h
index f80d8ac49b..9719c30166 100644
--- a/src/lib/elementary/elm_photocam_legacy.h
+++ b/src/lib/elementary/elm_photocam_legacy.h
@@ -6,7 +6,7 @@ typedef Eo Elm_Photocam;
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI Evas_Object *elm_photocam_add(Evas_Object *parent);
@@ -21,7 +21,7 @@ EAPI Evas_Object *elm_photocam_add(Evas_Object *parent);
*
* This shows the region of the image using animation.
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI void elm_photocam_image_region_bring_in(Evas_Object *obj, int x, int y, int w, int h);
@@ -38,7 +38,7 @@ EAPI void elm_photocam_image_region_bring_in(Evas_Object *obj,
* photo that at some time in the future will be displayed at the full
* quality needed.
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*
* @param[in] file The photo file
*/
@@ -52,7 +52,7 @@ EAPI Evas_Load_Error elm_photocam_file_set(Evas_Object *obj, const char *file);
*
* @see elm_photocam_file_set()
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*
*/
EAPI const char *elm_photocam_file_get(const Evas_Object *obj);
@@ -67,7 +67,7 @@ EAPI const char *elm_photocam_file_get(const Evas_Object *obj);
*
* @since 1.14
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI void elm_photocam_image_orient_set(Evas_Object *obj, Evas_Image_Orient orient);
@@ -79,7 +79,7 @@ EAPI void elm_photocam_image_orient_set(Evas_Object *obj, Evas_Image_Orient orie
*
* @since 1.14
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI Evas_Image_Orient elm_photocam_image_orient_get(const Evas_Object *obj);
@@ -92,7 +92,7 @@ EAPI Evas_Image_Orient elm_photocam_image_orient_get(const Evas_Object *obj);
*
* @return The internal image object handle or @c null
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI Evas_Object* elm_photocam_internal_image_get(const Evas_Object *obj);
@@ -106,7 +106,7 @@ EAPI Evas_Object* elm_photocam_internal_image_get(const Evas_Object *obj);
* @param[in] w Width of region in image original pixels
* @param[in] h Height of region in image original pixels
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI void elm_photocam_image_region_show(Evas_Object *obj, int x, int y, int w, int h);
@@ -119,7 +119,7 @@ EAPI void elm_photocam_image_region_show(Evas_Object *obj, int x, i
* @param[out] w A pointer to the width return
* @param[out] h A pointer to the height return
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI void elm_photocam_image_size_get(const Evas_Object *obj, int *w, int *h);
@@ -130,7 +130,7 @@ EAPI void elm_photocam_image_size_get(const Evas_Object *obj, int *
*
* @return The pause state.
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI Eina_Bool elm_photocam_paused_get(const Evas_Object *obj);
@@ -143,7 +143,7 @@ EAPI Eina_Bool elm_photocam_paused_get(const Evas_Object *obj);
*
* @param[in] paused The pause state.
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI void elm_photocam_paused_set(Evas_Object *obj, Eina_Bool paused);
@@ -160,7 +160,7 @@ EAPI void elm_photocam_paused_set(Evas_Object *obj, Eina_Bool paused
*
* @param[in] zoom The zoom level to set
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI void elm_photocam_zoom_set(Evas_Object *obj, double zoom);
@@ -174,7 +174,7 @@ EAPI void elm_photocam_zoom_set(Evas_Object *obj, double zoom);
*
* @return The zoom level to set
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI double elm_photocam_zoom_get(const Evas_Object *obj);
@@ -207,7 +207,7 @@ typedef enum
*
* @param[in] mode The zoom mode.
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI void elm_photocam_zoom_mode_set(Evas_Object *obj, Elm_Photocam_Zoom_Mode mode);
@@ -218,7 +218,7 @@ EAPI void elm_photocam_zoom_mode_set(Evas_Object *obj, Elm_Photoca
*
* @return The zoom mode.
*
- * @ingroup Elm_Photocam
+ * @ingroup Elm_Photocam_Group
*/
EAPI Elm_Photocam_Zoom_Mode elm_photocam_zoom_mode_get(const Evas_Object *obj);
diff --git a/src/lib/elementary/elm_plug.h b/src/lib/elementary/elm_plug.h
index 88ff450217..d57883d5d4 100644
--- a/src/lib/elementary/elm_plug.h
+++ b/src/lib/elementary/elm_plug.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Plug Plug
+ * @defgroup Elm_Plug_Group Plug
* @ingroup Elementary
*
* @image html plug_inheritance_tree.png
@@ -27,7 +27,7 @@
/**
- * @addtogroup Plug
+ * @addtogroup Elm_Plug_Group
* @{
*/
diff --git a/src/lib/elementary/elm_plug_legacy.h b/src/lib/elementary/elm_plug_legacy.h
index 58bc85424b..fae24d3a4e 100644
--- a/src/lib/elementary/elm_plug_legacy.h
+++ b/src/lib/elementary/elm_plug_legacy.h
@@ -4,8 +4,8 @@
* @param parent The parent object
* @return The new plug image object or NULL if it cannot be created
*
- * @ingroup Plug
+ * @ingroup Elm_Plug_Group
*/
EAPI Evas_Object *elm_plug_add(Evas_Object *parent);
-#include "elm_plug_eo.legacy.h" \ No newline at end of file
+#include "elm_plug_eo.legacy.h"
diff --git a/src/lib/elementary/elm_popup_eo.legacy.h b/src/lib/elementary/elm_popup_eo.legacy.h
index debf944357..a02e667cfe 100644
--- a/src/lib/elementary/elm_popup_eo.legacy.h
+++ b/src/lib/elementary/elm_popup_eo.legacy.h
@@ -19,7 +19,7 @@ typedef Eo Elm_Popup;
* conjunction with elm_popup_orient_get() to know where the popup is
* appearing.
*
- * @ingroup Elm_Popup
+ * @ingroup Elm_Popup_Group
*/
typedef enum
{
diff --git a/src/lib/elementary/elm_radio.h b/src/lib/elementary/elm_radio.h
index e3edae0f11..87903d60f7 100644
--- a/src/lib/elementary/elm_radio.h
+++ b/src/lib/elementary/elm_radio.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Radio Radio
+ * @defgroup Elm_Radio_Group Radio
* @ingroup Elementary
*
* @image html radio_inheritance_tree.png
diff --git a/src/lib/elementary/elm_radio_legacy.h b/src/lib/elementary/elm_radio_legacy.h
index 35a4741ad1..39e1613537 100644
--- a/src/lib/elementary/elm_radio_legacy.h
+++ b/src/lib/elementary/elm_radio_legacy.h
@@ -6,7 +6,7 @@ typedef Eo Elm_Radio;
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Radio
+ * @ingroup Elm_Radio_Group
*/
EAPI Evas_Object *elm_radio_add(Evas_Object *parent);
@@ -18,7 +18,7 @@ EAPI Evas_Object *elm_radio_add(Evas_Object *parent);
*
* @param[in] value The value to use for the group
*
- * @ingroup Elm_Radio
+ * @ingroup Elm_Radio_Group
*/
EAPI void elm_radio_value_set(Evas_Object *obj, int value);
@@ -27,7 +27,7 @@ EAPI void elm_radio_value_set(Evas_Object *obj, int value)
*
* @return The value to use for the group
*
- * @ingroup Elm_Radio
+ * @ingroup Elm_Radio_Group
*/
EAPI int elm_radio_value_get(const Evas_Object *obj);
diff --git a/src/lib/elementary/elm_scroller.h b/src/lib/elementary/elm_scroller.h
index fe44c2254c..1dc44075db 100644
--- a/src/lib/elementary/elm_scroller.h
+++ b/src/lib/elementary/elm_scroller.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Scroller Scroller
+ * @defgroup Elm_Scroller_Group Scroller
* @ingroup Elementary
*
* @image html scroller_inheritance_tree.png
diff --git a/src/lib/elementary/elm_scroller_legacy.h b/src/lib/elementary/elm_scroller_legacy.h
index 8d50f4a62a..2ecfd05f3e 100644
--- a/src/lib/elementary/elm_scroller_legacy.h
+++ b/src/lib/elementary/elm_scroller_legacy.h
@@ -8,7 +8,7 @@
*
* See also @ref elm_interface_scrollable_policy_set.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
typedef enum
{
@@ -24,7 +24,7 @@ typedef enum
*
* See also @ref elm_interface_scrollable_single_direction_set.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
typedef enum
{
@@ -46,7 +46,7 @@ typedef enum
*
* @since 1.8
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
typedef enum
{
@@ -61,7 +61,7 @@ typedef enum
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI Evas_Object *elm_scroller_add(Evas_Object *parent);
@@ -77,7 +77,7 @@ EAPI Evas_Object *elm_scroller_add(Evas_Object *parent);
* right size horizontally and/or vertically to perfectly fit its content in
* that direction.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_content_min_limit(Evas_Object *obj, Eina_Bool w, Eina_Bool h);
@@ -94,7 +94,7 @@ EAPI void elm_scroller_content_min_limit(Evas_Object *o
* region in the virtual content object (0, 0 starting at the top-left of the
* virtual content object) is shown within the scroller.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_region_show(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
@@ -111,7 +111,7 @@ EAPI void elm_scroller_region_show(Evas_Object *obj, Ev
* the time, and #ELM_SCROLLER_POLICY_OFF always keeps it off. This applies
* respectively for the horizontal and vertical scrollbars.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v);
@@ -124,7 +124,7 @@ EAPI void elm_scroller_policy_set(Evas_Object *obj, Elm
*
* @see elm_scroller_policy_set()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_policy_get(const Evas_Object *obj, Elm_Scroller_Policy *policy_h, Elm_Scroller_Policy *policy_v);
@@ -138,7 +138,7 @@ EAPI void elm_scroller_policy_get(const Evas_Object *ob
*
* @since 1.8
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_single_direction_set(Evas_Object *obj, Elm_Scroller_Single_Direction single_dir);
@@ -152,7 +152,7 @@ EAPI void elm_scroller_single_direction_set(Evas_Object
*
* @since 1.8
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI Elm_Scroller_Single_Direction elm_scroller_single_direction_get(const Evas_Object *obj);
@@ -173,7 +173,7 @@ EAPI Elm_Scroller_Single_Direction elm_scroller_single_direction_get(const Evas_
*
* @see elm_scroller_region_show()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
@@ -186,7 +186,7 @@ EAPI void elm_scroller_region_get(const Evas_Object *ob
*
* This gets the size of the content object of the scroller.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_child_size_get(const Evas_Object *obj, Evas_Coord *w, Evas_Coord *h);
@@ -209,7 +209,7 @@ EAPI void elm_scroller_child_size_get(const Evas_Object
*
* @since 1.8
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_snap_set(Evas_Object *obj, Eina_Bool page_h_snap, Eina_Bool page_v_snap);
@@ -224,7 +224,7 @@ EAPI void elm_scroller_page_snap_set(Evas_Object *obj,
*
* @since 1.8
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_snap_get(const Evas_Object *obj, Eina_Bool *page_h_snap, Eina_Bool *page_v_snap);
@@ -240,7 +240,7 @@ EAPI void elm_scroller_page_snap_get(const Evas_Object
* This is enabled by default for both axis. This API will set if it is enabled
* for the given axis with the boolean parameters for each axis.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);
@@ -253,7 +253,7 @@ EAPI void elm_scroller_bounce_set(Evas_Object *obj, Ein
*
* @see elm_scroller_bounce_set()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce);
@@ -275,7 +275,7 @@ EAPI void elm_scroller_bounce_get(const Evas_Object *ob
* including 1.0. If you only want 1 axis to be page "limited", use 0.0 for
* the other axis.
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_relative_set(Evas_Object *obj, double h_pagerel, double v_pagerel);
@@ -293,7 +293,7 @@ EAPI void elm_scroller_page_relative_set(Evas_Object *o
*
* @since 1.7
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_relative_get(const Evas_Object *obj, double *h_pagerel, double *v_pagerel);
@@ -310,7 +310,7 @@ EAPI void elm_scroller_page_relative_get(const Evas_Obj
* @see elm_scroller_page_relative_set()
* @see elm_scroller_page_size_get()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_size_set(Evas_Object *obj, Evas_Coord h_pagesize, Evas_Coord v_pagesize);
@@ -326,7 +326,7 @@ EAPI void elm_scroller_page_size_set(Evas_Object *obj,
*
* @since 1.7
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_size_get(const Evas_Object *obj, Evas_Coord *h_pagesize, Evas_Coord *v_pagesize);
@@ -346,7 +346,7 @@ EAPI void elm_scroller_page_size_get(const Evas_Object
* @see elm_scroller_page_show()
* @see elm_scroller_page_bring_in()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_current_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
@@ -364,7 +364,7 @@ EAPI void elm_scroller_current_page_get(const Evas_Obje
* @see elm_scroller_page_show()
* @see elm_scroller_page_bring_in()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_last_page_get(const Evas_Object *obj, int *h_pagenumber, int *v_pagenumber);
@@ -390,7 +390,7 @@ EAPI void elm_scroller_last_page_get(const Evas_Object
*
* @see elm_scroller_page_bring_in()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_show(Evas_Object *obj, int h_pagenumber, int v_pagenumber);
@@ -416,7 +416,7 @@ EAPI void elm_scroller_page_show(Evas_Object *obj, int
*
* @see elm_scroller_page_show()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_page_bring_in(Evas_Object *obj, int h_pagenumber, int v_pagenumber);
@@ -439,7 +439,7 @@ EAPI void elm_scroller_page_bring_in(Evas_Object *obj,
*
* @see elm_scroller_region_show()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_region_bring_in(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
@@ -462,7 +462,7 @@ EAPI void elm_scroller_region_bring_in(Evas_Object *obj
*
* Default values for x and y are 0.0
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_gravity_set(Evas_Object *obj, double x, double y);
@@ -477,7 +477,7 @@ EAPI void elm_scroller_gravity_set(Evas_Object *obj, do
*
* @see elm_scroller_gravity_set()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_gravity_get(const Evas_Object *obj, double *x, double *y);
@@ -501,7 +501,7 @@ EAPI void elm_scroller_gravity_get(const Evas_Object *o
*
* @since 1.8
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_movement_block_set(Evas_Object *obj, Elm_Scroller_Movement_Block block);
@@ -515,7 +515,7 @@ EAPI void elm_scroller_movement_block_set(Evas_Object *o
*
* @see elm_scroller_movement_block_set() for more details
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI Elm_Scroller_Movement_Block elm_scroller_movement_block_get(const Evas_Object *obj);
@@ -532,7 +532,7 @@ EAPI Elm_Scroller_Movement_Block elm_scroller_movement_block_get(const Evas_Obj
*
* @since 1.13
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_step_size_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y);
@@ -547,7 +547,7 @@ EAPI void elm_scroller_step_size_set(Evas_Object *obj,
*
* @since 1.13
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_step_size_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y);
@@ -563,7 +563,7 @@ EAPI void elm_scroller_step_size_get(const Evas_Object
*
* @since 1.14
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_loop_set(Evas_Object *obj, Eina_Bool loop_h, Eina_Bool loop_v);
@@ -578,7 +578,7 @@ EAPI void elm_scroller_loop_set(Evas_Object *obj, Eina_
*
* @see elm_scroller_loop_set() for more details
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_loop_get(const Evas_Object *obj, Eina_Bool *loop_h, Eina_Bool *loop_v);
@@ -595,7 +595,7 @@ EAPI void elm_scroller_loop_get(const Evas_Object *obj,
*
* @see elm_scroller_wheel_disabled_get()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_wheel_disabled_set(Evas_Object *obj, Eina_Bool disabled);
@@ -611,7 +611,7 @@ EAPI void elm_scroller_wheel_disabled_set(Evas_Object *
*
* @see elm_scroller_wheel_disabled_set()
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI Eina_Bool elm_scroller_wheel_disabled_get(const Evas_Object *obj);
@@ -624,7 +624,7 @@ EAPI Eina_Bool elm_scroller_wheel_disabled_get(const Evas_Ob
* @param[in] obj The scroller object
* @param[in] propagation The propagation state
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI void elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagation);
@@ -636,7 +636,7 @@ EAPI void elm_scroller_propagate_events_set(Evas_Object *obj, Eina_Bool propagat
* @param[in] obj The scroller object
* @return The propagation state
*
- * @ingroup Elm_Scroller
+ * @ingroup Elm_Scroller_Group
*/
EAPI Eina_Bool elm_scroller_propagate_events_get(const Evas_Object *obj);
#endif
diff --git a/src/lib/elementary/elm_spinner.h b/src/lib/elementary/elm_spinner.h
index 36433c3994..689183fbc1 100644
--- a/src/lib/elementary/elm_spinner.h
+++ b/src/lib/elementary/elm_spinner.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Spinner Spinner
+ * @defgroup Elm_Spinner_Group Spinner
* @ingroup Elementary
*
* @image html spinner_inheritance_tree.png
@@ -53,7 +53,7 @@
*/
/**
- * @addtogroup Elm_Spinner
+ * @addtogroup Elm_Spinner_Group
* @{
*/
diff --git a/src/lib/elementary/elm_spinner_legacy.h b/src/lib/elementary/elm_spinner_legacy.h
index 1b4e241c0c..0774983451 100644
--- a/src/lib/elementary/elm_spinner_legacy.h
+++ b/src/lib/elementary/elm_spinner_legacy.h
@@ -7,7 +7,7 @@
*
* This function inserts a new spinner widget on the canvas.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
*
*/
EAPI Evas_Object *elm_spinner_add(Evas_Object *parent);
@@ -23,7 +23,7 @@ EAPI Evas_Object *elm_spinner_add(Evas_Object *parent);
*
* @see elm_spinner_special_value_add() for more details.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
* @since 1.8
*/
EAPI void elm_spinner_special_value_del(Evas_Object *obj, double value);
@@ -37,7 +37,7 @@ EAPI void elm_spinner_special_value_del(Evas_Object *obj, double value);
*
* @see elm_spinner_special_value_add() for more details.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
* @since 1.8
*/
EAPI const char *elm_spinner_special_value_get(Evas_Object *obj, double value);
@@ -58,7 +58,7 @@ EAPI const char *elm_spinner_special_value_get(Evas_Object *obj, double value);
* @param[in] min The minimum value.
* @param[in] max The maximum value.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
*/
EAPI void elm_spinner_min_max_set(Evas_Object *obj, double min, double max);
@@ -78,7 +78,7 @@ EAPI void elm_spinner_min_max_set(Evas_Object *obj, double min, double max);
* @param[out] min The minimum value.
* @param[out] max The maximum value.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
*/
EAPI void elm_spinner_min_max_get(const Evas_Object *obj, double *min, double *max);
@@ -96,7 +96,7 @@ EAPI void elm_spinner_min_max_get(const Evas_Object *obj, double *min, double *m
*
* @param[in] step The step value.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
*/
EAPI void elm_spinner_step_set(Evas_Object *obj, double step);
@@ -114,7 +114,7 @@ EAPI void elm_spinner_step_set(Evas_Object *obj, double step);
*
* @return The step value.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
*/
EAPI double elm_spinner_step_get(const Evas_Object *obj);
@@ -129,7 +129,7 @@ EAPI double elm_spinner_step_get(const Evas_Object *obj);
*
* @param[in] val The value to be displayed.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
*/
EAPI void elm_spinner_value_set(Evas_Object *obj, double val);
@@ -144,7 +144,7 @@ EAPI void elm_spinner_value_set(Evas_Object *obj, double val);
*
* @return The value to be displayed.
*
- * @ingroup Elm_Spinner
+ * @ingroup Elm_Spinner_Group
*/
EAPI double elm_spinner_value_get(const Evas_Object *obj);
diff --git a/src/lib/elementary/elm_table.h b/src/lib/elementary/elm_table.h
index ec9266e786..7cabd06bcd 100644
--- a/src/lib/elementary/elm_table.h
+++ b/src/lib/elementary/elm_table.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Table Table
+ * @defgroup Elm_Table_Group Table
* @ingroup Elementary
*
* @image html table_inheritance_tree.png
diff --git a/src/lib/elementary/elm_table_legacy.h b/src/lib/elementary/elm_table_legacy.h
index 314cf0ef39..b9b955a499 100644
--- a/src/lib/elementary/elm_table_legacy.h
+++ b/src/lib/elementary/elm_table_legacy.h
@@ -4,7 +4,7 @@
* @param parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Table
+ * @ingroup Elm_Table_Group
*/
EAPI Evas_Object *elm_table_add(Evas_Object *parent);
@@ -23,7 +23,7 @@ EAPI Evas_Object *elm_table_add(Evas_Object *parent);
* a value of 0 for col and row, means the top left cell of the table, and a
* value of 1 for colspan and rowspan means @p subobj only takes that 1 cell.
*
- * @ingroup Elm_Table
+ * @ingroup Elm_Table_Group
*/
EAPI void elm_table_pack_set(Evas_Object *subobj, int col, int row, int colspan, int rowspan);
@@ -38,8 +38,8 @@ EAPI void elm_table_pack_set(Evas_Object *subobj, int col, int row, int col
*
* @see elm_table_pack_set()
*
- * @ingroup Elm_Table
+ * @ingroup Elm_Table_Group
*/
EAPI void elm_table_pack_get(Evas_Object *subobj, int *col, int *row, int *colspan, int *rowspan);
-#include "elm_table_eo.legacy.h" \ No newline at end of file
+#include "elm_table_eo.legacy.h"
diff --git a/src/lib/elementary/elm_textpath_legacy.h b/src/lib/elementary/elm_textpath_legacy.h
index 95aca9b1db..633dca328b 100644
--- a/src/lib/elementary/elm_textpath_legacy.h
+++ b/src/lib/elementary/elm_textpath_legacy.h
@@ -6,7 +6,7 @@ typedef Eo Elm_Textpath;
* @param[in] parent The parent object
* @return The new object or NULL if it cannot be created
*
- * @ingroup Elm_Textpath
+ * @ingroup Elm_Textpath_Group
*
* @since 1.22
*/
@@ -21,7 +21,7 @@ EAPI Evas_Object *elm_textpath_add(Evas_Object *parent);
* @note ellipsis in the style will be ignored since textpath supports ellipsis API.
* @see elm_textpath_ellipsis_set()
*
- * @ingroup Elm_Textpath
+ * @ingroup Elm_Textpath_Group
*
* @since 1.25
*/
diff --git a/src/lib/elementary/elm_win.h b/src/lib/elementary/elm_win.h
index 3e45dd15ff..5e272edebc 100644
--- a/src/lib/elementary/elm_win.h
+++ b/src/lib/elementary/elm_win.h
@@ -1,5 +1,5 @@
/**
- * @defgroup Elm_Win Win
+ * @defgroup Elm_Win_Group Win
* @ingroup Elementary
*
* @image html win_inheritance_tree.png
diff --git a/src/lib/elementary/elm_win_common.h b/src/lib/elementary/elm_win_common.h
index a0d4fef44b..9f337f3758 100644
--- a/src/lib/elementary/elm_win_common.h
+++ b/src/lib/elementary/elm_win_common.h
@@ -1,5 +1,5 @@
/**
- * @addtogroup Elm_Win
+ * @addtogroup Elm_Win_Group
*
* @{
*/
diff --git a/src/lib/elementary/elm_win_eo.h b/src/lib/elementary/elm_win_eo.h
index 6643fc59bb..d6d4ed5fa3 100644
--- a/src/lib/elementary/elm_win_eo.h
+++ b/src/lib/elementary/elm_win_eo.h
@@ -2,7 +2,7 @@
# define ELM_WIN_EO_H
/**
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*
* @{
*/
diff --git a/src/lib/elementary/elm_win_legacy.h b/src/lib/elementary/elm_win_legacy.h
index 78f5477edd..39bb0929bc 100644
--- a/src/lib/elementary/elm_win_legacy.h
+++ b/src/lib/elementary/elm_win_legacy.h
@@ -8,7 +8,7 @@
* phones, default is to have the indicator shown. But like TV, default is to
* have the indicator hidden.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
typedef enum
{
@@ -19,7 +19,7 @@ typedef enum
/** Defines the opacity modes of indicator that can be shown
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
typedef enum
{
@@ -57,7 +57,7 @@ typedef enum
*
* Currently, only the X11 backed engines use them.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
typedef enum
{
@@ -113,7 +113,7 @@ typedef enum
* When the application window is being managed by Illume it may request any of
* the following layouts for the virtual keyboard.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
typedef enum
{
@@ -138,7 +138,7 @@ typedef enum
/** Define the keygrab modes of window. A window may send commands to the
* Keyrouter according this mode, and perform different actions.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
typedef enum
{
@@ -172,7 +172,7 @@ typedef enum
*
* @since 1.19
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
typedef enum
{
@@ -202,7 +202,7 @@ typedef enum
*
* @return The created object, or @c NULL on failure
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type);
@@ -221,7 +221,7 @@ typedef Evas_Object Elm_Win;
*
* @return The created object, or @c NULL on failure
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*
* @since 1.13
*/
@@ -242,7 +242,7 @@ EAPI Evas_Object *elm_win_fake_add(Ecore_Evas *ee);
*
* @see elm_win_add()
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Evas_Object *elm_win_util_standard_add(const char *name, const char *title);
@@ -263,7 +263,7 @@ EAPI Evas_Object *elm_win_util_standard_add(const char *name, const cha
*
* @see elm_win_add()
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @since 1.13
*/
EAPI Evas_Object *elm_win_util_dialog_add(Evas_Object *parent, const char *name, const char *title);
@@ -286,7 +286,7 @@ EAPI Evas_Object *elm_win_util_dialog_add(Evas_Object *parent, const ch
* @param[in] autodel If @c true, the window will automatically delete itself
* when closed.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel);
@@ -297,7 +297,7 @@ EAPI void elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel);
*
* @return If @c true, the window will automatically delete itself when closed.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_autodel_get(const Evas_Object *obj);
@@ -313,7 +313,7 @@ EAPI Eina_Bool elm_win_autodel_get(const Evas_Object *obj);
* a multi window concept in a mobile phone. The way of handling floating mode
* window is decided by enlightenment window manager.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @see elm_win_floating_mode_get()
* @since 1.8
*/
@@ -325,7 +325,7 @@ EAPI void elm_win_floating_mode_set(Evas_Object *obj, Eina_Bool
* @param obj The window object
* @return If true, the window is floating mode
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @see elm_win_floating_mode_set()
* @since 1.8
*/
@@ -352,7 +352,7 @@ EAPI Eina_Bool elm_win_floating_mode_get(const Evas_Object *obj);
* @see elm_win_norender_pop()
* @see elm_win_norender_get()
* @see elm_win_render()
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @since 1.7
*/
EAPI void elm_win_norender_push(Evas_Object *obj);
@@ -368,7 +368,7 @@ EAPI void elm_win_norender_push(Evas_Object *obj);
* @see elm_win_norender_push()
* @see elm_win_norender_get()
* @see elm_win_render()
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @since 1.7
*/
EAPI void elm_win_norender_pop(Evas_Object *obj);
@@ -381,7 +381,7 @@ EAPI void elm_win_norender_pop(Evas_Object *obj);
* @see elm_win_norender_push()
* @see elm_win_norender_pop()
* @see elm_win_render()
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @since 1.7
*/
EAPI int elm_win_norender_get(const Evas_Object *obj);
@@ -400,7 +400,7 @@ EAPI int elm_win_norender_get(const Evas_Object *obj);
* @see elm_win_norender_push()
* @see elm_win_norender_pop()
* @see elm_win_norender_get()
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @since 1.7
*/
EAPI void elm_win_render(Evas_Object *obj);
@@ -416,7 +416,7 @@ EAPI void elm_win_render(Evas_Object *obj);
*
* @return The Ecore_Wl_Window of @p obj
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Ecore_Wl2_Window *elm_win_wl_window_get(const Evas_Object *obj);
@@ -431,7 +431,7 @@ EAPI Ecore_Wl2_Window *elm_win_wl_window_get(const Evas_Object *obj);
*
* @return The Ecore_Win32_Window of @p obj
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*
* @since 1.16
*/
@@ -477,7 +477,7 @@ EAPI void elm_win_wm_rotation_preferred_rotation_set(Evas_Objec
*
* @param[in] subobj The resize object to add.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj);
@@ -491,13 +491,13 @@ EAPI void elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj);
*
* @param[in] subobj The resize object to add.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj);
/** Get the Ecore_X_Window of an Evas_Object.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj);
@@ -506,7 +506,7 @@ EAPI Ecore_X_Window elm_win_xwindow_get(const Evas_Object *obj);
*
* @return The Ecore_Wl2_Window of @c obj.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Ecore_Wl2_Window *elm_win_wl_window_get(const Evas_Object *obj);
@@ -518,7 +518,7 @@ EAPI Ecore_Wl2_Window *elm_win_wl_window_get(const Evas_Object *obj);
*
* @since 1.17
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Ecore_Win32_Window *elm_win_win32_window_get(const Evas_Object *obj);
@@ -529,7 +529,7 @@ EAPI Ecore_Win32_Window *elm_win_win32_window_get(const Evas_Object *obj);
*
* @since 1.17
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Ecore_Cocoa_Window *elm_win_cocoa_window_get(const Evas_Object *obj);
@@ -540,7 +540,7 @@ EAPI Ecore_Cocoa_Window *elm_win_cocoa_window_get(const Evas_Object *obj);
*
* @since 1.12
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void *elm_win_trap_data_get(const Evas_Object *obj);
@@ -559,7 +559,7 @@ EAPI void *elm_win_trap_data_get(const Evas_Object *obj);
*
* @param[in] override If true, the window is overridden.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_override_set(Evas_Object *obj, Eina_Bool override);
@@ -568,7 +568,7 @@ EAPI void elm_win_override_set(Evas_Object *obj, Eina_Bool override);
*
* @return If true, the window is overridden.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_override_get(const Evas_Object *obj);
@@ -581,7 +581,7 @@ EAPI Eina_Bool elm_win_override_get(const Evas_Object *obj);
* If @ref elm_win_override_set is not set, the Window Manager may ignore this
* request.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_lower(Evas_Object *obj);
@@ -592,7 +592,7 @@ EAPI void elm_win_lower(Evas_Object *obj);
*
* @param[in] quickpanel The quickpanel flag.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel);
@@ -601,7 +601,7 @@ EAPI void elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel);
*
* @return The quickpanel flag.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_quickpanel_get(const Evas_Object *obj);
/**
@@ -609,7 +609,7 @@ EAPI Eina_Bool elm_win_quickpanel_get(const Evas_Object *obj);
*
* @param[in] zone The requested zone for this quickpanel.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_quickpanel_zone_set(Evas_Object *obj, int zone);
@@ -618,7 +618,7 @@ EAPI void elm_win_quickpanel_zone_set(Evas_Object *obj, int zone);
*
* @return The requested zone for this quickpanel.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI int elm_win_quickpanel_zone_get(const Evas_Object *obj);
/**
@@ -626,7 +626,7 @@ EAPI int elm_win_quickpanel_zone_get(const Evas_Object *obj);
*
* @param[in] priority The major priority for this quickpanel or -1.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority);
@@ -635,7 +635,7 @@ EAPI void elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority);
*
* @return The major priority for this quickpanel or -1.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI int elm_win_quickpanel_priority_major_get(const Evas_Object *obj);
@@ -644,7 +644,7 @@ EAPI int elm_win_quickpanel_priority_major_get(const Evas_Object *obj);
*
* @param[in] priority The minor priority for this quickpanel.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority);
@@ -653,7 +653,7 @@ EAPI void elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority);
*
* @return The minor priority for this quickpanel.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI int elm_win_quickpanel_priority_minor_get(const Evas_Object *obj);
@@ -662,7 +662,7 @@ EAPI int elm_win_quickpanel_priority_minor_get(const Evas_Object *obj);
*
* @param[in] mode The mode, one of #Elm_Win_Indicator_Mode.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode);
@@ -671,7 +671,7 @@ EAPI void elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mo
*
* @return The mode, one of #Elm_Win_Indicator_Mode.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Elm_Win_Indicator_Mode elm_win_indicator_mode_get(const Evas_Object *obj);
@@ -680,7 +680,7 @@ EAPI Elm_Win_Indicator_Mode elm_win_indicator_mode_get(const Evas_Object *obj);
*
* @param[in] mode The mode, one of #Elm_Win_Indicator_Opacity_Mode.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_indicator_opacity_set(Evas_Object *obj, Elm_Win_Indicator_Opacity_Mode mode);
@@ -689,7 +689,7 @@ EAPI void elm_win_indicator_opacity_set(Evas_Object *obj, Elm_Win_Indicator_Opac
*
* @return The mode, one of #Elm_Win_Indicator_Opacity_Mode.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Elm_Win_Indicator_Opacity_Mode elm_win_indicator_opacity_get(const Evas_Object *obj);
@@ -698,7 +698,7 @@ EAPI Elm_Win_Indicator_Opacity_Mode elm_win_indicator_opacity_get(const Evas_Obj
*
* @param[in] is_keyboard If true, the window is a virtual keyboard..
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard);
@@ -707,7 +707,7 @@ EAPI void elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard);
*
* @return The mode, If true, the window is a virtual keyboard..
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_keyboard_win_get(const Evas_Object *obj);
@@ -716,7 +716,7 @@ EAPI Eina_Bool elm_win_keyboard_win_get(const Evas_Object *obj);
*
* @param[in] conformant The conformant flag.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant);
@@ -725,7 +725,7 @@ EAPI void elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant);
*
* @return The conformant flag.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_conformant_get(const Evas_Object *obj);
@@ -741,7 +741,7 @@ EAPI Eina_Bool elm_win_conformant_get(const Evas_Object *obj);
*
* @since 1.9
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_wm_rotation_manual_rotation_done_set(Evas_Object *obj, Eina_Bool set);
@@ -754,7 +754,7 @@ EAPI void elm_win_wm_rotation_manual_rotation_done_set(Evas_Object *obj, Eina_Bo
*
* @since 1.9
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_wm_rotation_manual_rotation_done_get(const Evas_Object *obj);
@@ -765,7 +765,7 @@ EAPI Eina_Bool elm_win_wm_rotation_manual_rotation_done_get(const Evas_Object *o
*
* @since 1.9
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_wm_rotation_manual_rotation_done(Evas_Object *obj);
@@ -782,7 +782,7 @@ EAPI void elm_win_wm_rotation_manual_rotation_done(Evas_Object *obj);
* @param[in] rotation The rotation of the window, in degrees (0-360),
* counter-clockwise.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_rotation_set(Evas_Object *obj, int rotation);
@@ -791,7 +791,7 @@ EAPI void elm_win_rotation_set(Evas_Object *obj, int rotation);
*
* @return The rotation of the window, in degrees (0-360), counter-clockwise.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI int elm_win_rotation_get(const Evas_Object *obj);
@@ -804,7 +804,7 @@ EAPI int elm_win_rotation_get(const Evas_Object *obj);
* @param[in] rotation The rotation of the window in degrees (0-360),
* counter-clockwise.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation);
@@ -820,7 +820,7 @@ EAPI void elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation);
*
* @since 1.9
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_wm_rotation_supported_get(const Evas_Object *obj);
@@ -834,7 +834,7 @@ EAPI Eina_Bool elm_win_wm_rotation_supported_get(const Evas_Object *obj);
*
* @since 1.9
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI int elm_win_wm_rotation_preferred_rotation_get(const Evas_Object *obj);
@@ -845,7 +845,7 @@ EAPI int elm_win_wm_rotation_preferred_rotation_get(const Evas_Object *obj);
* @param[out] x The int to store the x coordinate to.
* @param[out] y The int to store the y coordinate to.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y);
@@ -857,7 +857,7 @@ EAPI void elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y);
* @param[out] w Where to return the width value. May be @c null.
* @param[out] h Where to return the height value. May be @c null.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_screen_size_get(const Evas_Object *obj, int *x, int *y, int *w, int *h);
@@ -871,7 +871,7 @@ EAPI void elm_win_screen_size_get(const Evas_Object *obj, int *x, int *y, int *w
*
* @since 1.7
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_screen_dpi_get(const Evas_Object *obj, int *xdpi, int *ydpi);
@@ -880,7 +880,7 @@ EAPI void elm_win_screen_dpi_get(const Evas_Object *obj, int *xdpi, int *ydpi);
*
* @param[in] icon_name The icon name to set.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_icon_name_set(Evas_Object *obj, const char *icon_name);
@@ -893,7 +893,7 @@ EAPI void elm_win_icon_name_set(Evas_Object *obj, const char *icon_name);
*
* @return The icon name to set.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI const char *elm_win_icon_name_get(const Evas_Object *obj);
@@ -902,7 +902,7 @@ EAPI const char *elm_win_icon_name_get(const Evas_Object *obj);
*
* @param[in] withdrawn If true, the window is withdrawn.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_withdrawn_set(Evas_Object *obj, Eina_Bool withdrawn);
@@ -911,7 +911,7 @@ EAPI void elm_win_withdrawn_set(Evas_Object *obj, Eina_Bool withdrawn);
*
* @return If true, the window is withdrawn.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_withdrawn_get(const Evas_Object *obj);
@@ -920,7 +920,7 @@ EAPI Eina_Bool elm_win_withdrawn_get(const Evas_Object *obj);
*
* @param[in] urgent If true, the window is urgent.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_urgent_set(Evas_Object *obj, Eina_Bool urgent);
@@ -929,7 +929,7 @@ EAPI void elm_win_urgent_set(Evas_Object *obj, Eina_Bool urgent);
*
* @return If true, the window is urgent.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_urgent_get(const Evas_Object *obj);
@@ -938,7 +938,7 @@ EAPI Eina_Bool elm_win_urgent_get(const Evas_Object *obj);
*
* @param[in] demand_attention If true, the window is demand_attention.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_demand_attention_set(Evas_Object *obj, Eina_Bool demand_attention);
@@ -947,7 +947,7 @@ EAPI void elm_win_demand_attention_set(Evas_Object *obj, Eina_Bool demand_attent
*
* @return If true, the window is demand_attention.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_demand_attention_get(const Evas_Object *obj);
@@ -956,7 +956,7 @@ EAPI Eina_Bool elm_win_demand_attention_get(const Evas_Object *obj);
*
* @param[in] modal If true, the window is modal.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_modal_set(Evas_Object *obj, Eina_Bool modal);
@@ -965,7 +965,7 @@ EAPI void elm_win_modal_set(Evas_Object *obj, Eina_Bool modal);
*
* @return If true, the window is modal.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_modal_get(const Evas_Object *obj);
@@ -981,7 +981,7 @@ EAPI Eina_Bool elm_win_modal_get(const Evas_Object *obj);
*
* @param[in] shaped If @c true, the window is shaped.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped);
@@ -990,7 +990,7 @@ EAPI void elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped);
*
* @return If @c true, the window is shaped.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_shaped_get(const Evas_Object *obj);
@@ -999,7 +999,7 @@ EAPI Eina_Bool elm_win_shaped_get(const Evas_Object *obj);
*
* @param[in] title The title.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_title_set(Evas_Object *obj, const char *title);
@@ -1011,7 +1011,7 @@ EAPI void elm_win_title_set(Evas_Object *obj, const char *title);
*
* @return The title.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI const char *elm_win_title_get(const Evas_Object *obj);
@@ -1025,7 +1025,7 @@ EAPI const char *elm_win_title_get(const Evas_Object *obj);
*
* @since 1.7
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_size_base_set(Evas_Object *obj, int w, int h);
@@ -1037,7 +1037,7 @@ EAPI void elm_win_size_base_set(Evas_Object *obj, int w, int h);
*
* @since 1.7
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_size_base_get(const Evas_Object *obj, int *w, int *h);
@@ -1051,7 +1051,7 @@ EAPI void elm_win_size_base_get(const Evas_Object *obj, int *w, int *h);
*
* @since 1.7
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_size_step_set(Evas_Object *obj, int w, int h);
@@ -1063,7 +1063,7 @@ EAPI void elm_win_size_step_set(Evas_Object *obj, int w, int h);
*
* @since 1.7
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_size_step_get(const Evas_Object *obj, int *w, int *h);
@@ -1078,7 +1078,7 @@ EAPI void elm_win_size_step_get(const Evas_Object *obj, int *w, int *h);
*
* @param[in] params Optional parameters for the command.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params);
@@ -1089,7 +1089,7 @@ EAPI void elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command comma
*
* @since 1.8
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_profile_set(Evas_Object *obj, const char *profile);
@@ -1100,7 +1100,7 @@ EAPI void elm_win_profile_set(Evas_Object *obj, const char *profile);
*
* @since 1.8
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI const char *elm_win_profile_get(const Evas_Object *obj);
@@ -1116,7 +1116,7 @@ EAPI const char *elm_win_profile_get(const Evas_Object *obj);
*
* @param[in] layer The layer of the window.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_layer_set(Evas_Object *obj, int layer);
@@ -1125,7 +1125,7 @@ EAPI void elm_win_layer_set(Evas_Object *obj, int layer);
*
* @return The layer of the window.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI int elm_win_layer_get(const Evas_Object *obj);
@@ -1140,7 +1140,7 @@ EAPI int elm_win_layer_get(const Evas_Object *obj);
*
* @return The inlined image object or @c null if none exists.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Evas_Object *elm_win_inlined_image_object_get(const Evas_Object *obj);
@@ -1149,7 +1149,7 @@ EAPI Evas_Object *elm_win_inlined_image_object_get(const Evas_Object *obj);
*
* @param[in] oee
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*
* @deprecated
*/
@@ -1163,7 +1163,7 @@ EAPI void elm_win_fake_canvas_set(Evas_Object *obj, Ecore_Evas *oee) EINA_DEPREC
* @param obj The window object
* @return The Ecore_Window of an Evas_Object
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
* @since 1.8
* @note Unless you are getting the window id for the purpose of communicating between client<->compositor over dbus,
* this is definitely not the function you are looking for.
@@ -1175,7 +1175,7 @@ EAPI Ecore_Window elm_win_window_id_get(const Evas_Object *obj);
*
* @return The Main Menu of the window ($null on error).
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Evas_Object *elm_win_main_menu_get(Evas_Object *obj);
@@ -1184,7 +1184,7 @@ EAPI Evas_Object *elm_win_main_menu_get(Evas_Object *obj);
*
* @param[in] mode The mode, one of #Elm_Win_Keyboard_Mode.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_keyboard_mode_set(Elm_Win *obj, Elm_Win_Keyboard_Mode mode);
@@ -1193,7 +1193,7 @@ EAPI void elm_win_keyboard_mode_set(Elm_Win *obj, Elm_Win_Keyboard_Mode mode);
*
* @return The mode, one of #Elm_Win_Keyboard_Mode.
*
- * @ingroup Elm_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Elm_Win *obj);
@@ -1267,7 +1267,7 @@ EAPI Evas_Object *elm_win_get(Evas_Object *obj);
*
* @return @c true on success, @c false otherwise
*
- * @ingroup Efl_Ui_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_socket_listen(Elm_Win *obj, const char *svcname, int svcnum, Eina_Bool svcsys);
@@ -1276,7 +1276,7 @@ EAPI Eina_Bool elm_win_socket_listen(Elm_Win *obj, const char *svcname, int svcn
*
* @return @c true if window has focus, @c false otherwise
*
- * @ingroup Efl_Ui_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_focus_get(const Elm_Win *obj);
@@ -1286,7 +1286,7 @@ EAPI Eina_Bool elm_win_focus_get(const Elm_Win *obj);
* Places the window pointed by @c obj at the top of the stack, so that it's
* not covered by any other window.
*
- * @ingroup Efl_Ui_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_raise(Elm_Win *obj);
@@ -1298,7 +1298,7 @@ EAPI void elm_win_raise(Elm_Win *obj);
*
* @since 1.8
*
- * @ingroup Efl_Ui_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_available_profiles_set(Elm_Win *obj, const char **profiles, unsigned int count);
@@ -1312,7 +1312,7 @@ EAPI void elm_win_available_profiles_set(Elm_Win *obj, const char **profiles, un
*
* @since 1.8
*
- * @ingroup Efl_Ui_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_available_profiles_get(const Elm_Win *obj, char ***profiles, unsigned int *count);
@@ -1328,7 +1328,7 @@ EAPI Eina_Bool elm_win_available_profiles_get(const Elm_Win *obj, char ***profil
*
* @since 1.9
*
- * @ingroup Efl_Ui_Win
+ * @ingroup Elm_Win_Group
*/
EAPI void elm_win_wm_rotation_available_rotations_set(Elm_Win *obj, const int *rotations, unsigned int count);
@@ -1345,7 +1345,7 @@ EAPI void elm_win_wm_rotation_available_rotations_set(Elm_Win *obj, const int *r
*
* @since 1.9
*
- * @ingroup Efl_Ui_Win
+ * @ingroup Elm_Win_Group
*/
EAPI Eina_Bool elm_win_wm_rotation_available_rotations_get(const Elm_Win *obj, int **rotations, unsigned int *count);
diff --git a/src/lib/evas/Evas_GL.h b/src/lib/evas/Evas_GL.h
index 0a96f7e13c..98b2440ff2 100644
--- a/src/lib/evas/Evas_GL.h
+++ b/src/lib/evas/Evas_GL.h
@@ -950,7 +950,7 @@ EAPI Evas_GL *evas_gl_current_evas_gl_get (Evas_GL_Context **con
/*
* This document is licensed under the SGI Free Software B License Version
- * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
+ * 2.0. For details, see https://spdx.org/licenses/SGI-B-2.0.html .
*/
/*-------------------------------------------------------------------------