* put evas_object stack functions in the Evas_Object_Group
authordavemds <davemds@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 1 Nov 2008 21:13:21 +0000 (21:13 +0000)
committerdavemds <davemds@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 1 Nov 2008 21:13:21 +0000 (21:13 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@37385 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_stack.c

index aa1ee9e..21c5fd9 100644 (file)
@@ -42,6 +42,7 @@ evas_object_below_get_internal(const Evas_Object *obj)
  *
  * @param obj the object to raise
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI void
 evas_object_raise(Evas_Object *obj)
@@ -97,6 +98,7 @@ evas_object_raise(Evas_Object *obj)
  *
  * @param obj the object to lower
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI void
 evas_object_lower(Evas_Object *obj)
@@ -159,6 +161,7 @@ evas_object_lower(Evas_Object *obj)
  * @param obj the object to stack
  * @param above the object above which to stack
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI void
 evas_object_stack_above(Evas_Object *obj, Evas_Object *above)
@@ -246,6 +249,7 @@ evas_object_stack_above(Evas_Object *obj, Evas_Object *above)
  * @param obj the object to stack
  * @param below the object below which to stack
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI void
 evas_object_stack_below(Evas_Object *obj, Evas_Object *below)
@@ -327,6 +331,7 @@ evas_object_stack_below(Evas_Object *obj, Evas_Object *below)
  * @param obj an Evas_Object
  * @return the Evas_Object directly above
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI Evas_Object *
 evas_object_above_get(const Evas_Object *obj)
@@ -359,6 +364,7 @@ evas_object_above_get(const Evas_Object *obj)
  * @param obj an Evas_Object
  * @return the Evas_Object directly below
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI Evas_Object *
 evas_object_below_get(const Evas_Object *obj)
@@ -391,6 +397,7 @@ evas_object_below_get(const Evas_Object *obj)
  * @param e an Evas
  * @return the lowest object
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI Evas_Object *
 evas_object_bottom_get(const Evas *e)
@@ -418,6 +425,7 @@ evas_object_bottom_get(const Evas *e)
  * @param e an Evas
  * @return the highest object
  *
+ * @ingroup Evas_Object_Group
  */
 EAPI Evas_Object *
 evas_object_top_get(const Evas *e)