* put evas_object stack functions in the Evas_Object_Group

SVN revision: 37385
This commit is contained in:
Davide Andreoli 2008-11-01 21:13:21 +00:00
parent 6637117c95
commit 08ca0e43c0
1 changed files with 8 additions and 0 deletions

View 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)