Evas generic object group documentation improvement.

SVN revision: 68425
This commit is contained in:
Jonas M. Gastal 2012-02-24 17:05:44 +00:00
parent 4573b902e4
commit 058d798bb8
1 changed files with 14 additions and 7 deletions

View File

@ -2940,14 +2940,21 @@ EAPI const Eina_List *evas_font_path_list (const Evas *e) EINA_WA
/**
* @defgroup Evas_Object_Group_Basic Basic Object Manipulation
*
* Methods that are broadly used, like those that change the color,
* clippers and geometry of an Evas object.
* Almost every evas object created will have some generic function used to
* manipulate it. That's because there are a number of basic actions to be done
* to objects that are irrespective of the object's type, things like:
* @li Showing/Hiding
* @li Setting(and getting) geometry
* @li Bring up or down a layer
* @li Color management
* @li Handling focus
* @li Clipping
* @li Reference counting
*
* An example on the most used functions in this group can be seen @ref
* Example_Evas_Object_Manipulation "here".
*
* For function dealing with stacking, the examples are gathered @ref
* Example_Evas_Stacking "here".
* All of this issues are handled through the functions here grouped. Examples
* of these function can be seen in @ref Example_Evas_Object_Manipulation(which
* deals with the most common ones) and in @ref Example_Evas_Stacking(which
* deals with stacking functions).
*
* @ingroup Evas_Object_Group
*/