add docs.

SVN revision: 48779
This commit is contained in:
Carsten Haitzler 2010-05-12 16:37:33 +00:00
parent 1c2f713799
commit 5d79733553
1 changed files with 16 additions and 0 deletions

View File

@ -400,6 +400,14 @@ elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content)
_configure(obj);
}
/**
* Get the flip front content
*
* @param obj The flip object
* @return The content to be used in this flip object front
*
* @ingroup Flip
*/
EAPI Evas_Object *
elm_flip_content_front_get(const Evas_Object *obj)
{
@ -408,6 +416,14 @@ elm_flip_content_front_get(const Evas_Object *obj)
return wd->front.content;
}
/**
* Get the flip back content
*
* @param obj The flip object
* @return The content to be used in this flip object back
*
* @ingroup Flip
*/
EAPI Evas_Object *
elm_flip_content_back_get(const Evas_Object *obj)
{