[elm] Small fixes on class headers.

SVN revision: 71428
This commit is contained in:
Gustavo Lima Chaves 2012-05-25 19:53:51 +00:00
parent 26c943b3de
commit 87b422c93a
4 changed files with 9 additions and 12 deletions

View File

@ -8,6 +8,8 @@
* @image html img/layout-predefined.png * @image html img/layout-predefined.png
* @image latex img/layout-predefined.eps width=\textwidth * @image latex img/layout-predefined.eps width=\textwidth
* *
* A Layout is a direct realization of @ref elm-layout-class.
*
* This is a container widget that takes a standard Edje design file and * This is a container widget that takes a standard Edje design file and
* wraps it very thinly in a widget. * wraps it very thinly in a widget.
* *

View File

@ -21,7 +21,7 @@
* Use this macro to cast whichever subclass of * Use this macro to cast whichever subclass of
* #Elm_Button_Smart_Class into it, so to acess its fields. * #Elm_Button_Smart_Class into it, so to acess its fields.
* *
* @ingroup Button * @ingroup Widget
*/ */
#define ELM_BUTTON_CLASS(x) ((Elm_Button_Smart_Class *) x) #define ELM_BUTTON_CLASS(x) ((Elm_Button_Smart_Class *) x)
@ -31,7 +31,7 @@
* Use this macro to cast whichever subdata of * Use this macro to cast whichever subdata of
* #Elm_Button_Smart_Data into it, so to acess its fields. * #Elm_Button_Smart_Data into it, so to acess its fields.
* *
* @ingroup Button * @ingroup Widget
*/ */
#define ELM_BUTTON_DATA(x) ((Elm_Button_Smart_Data *) x) #define ELM_BUTTON_DATA(x) ((Elm_Button_Smart_Data *) x)
@ -118,7 +118,7 @@ typedef struct _Elm_Button_Smart_Class
} Elm_Button_Smart_Class; } Elm_Button_Smart_Class;
/** /**
* Base widget smart data extended with button widget data. * Base widget smart data extended with button instance data.
*/ */
typedef struct _Elm_Button_Smart_Data typedef struct _Elm_Button_Smart_Data
{ {

View File

@ -31,7 +31,7 @@
* Use this macro to cast whichever subclass of * Use this macro to cast whichever subclass of
* #Elm_Container_Smart_Class into it, so to acess its fields. * #Elm_Container_Smart_Class into it, so to acess its fields.
* *
* @ingroup Container * @ingroup Widget
*/ */
#define ELM_CONTAINER_CLASS(x) ((Elm_Container_Smart_Class *) x) #define ELM_CONTAINER_CLASS(x) ((Elm_Container_Smart_Class *) x)
@ -102,13 +102,8 @@
/** /**
* Elementary container base smart class. This inherits directly from * Elementary container base smart class. This inherits directly from
* #Elm_Widget_Smart_Class and is meant to build widgets relying on an * #Elm_Widget_Smart_Class and is meant to build widgets exposing
* Edje container as a building block of its visuals. * "parts" to hold child elements at.
*
* For instance, the elm_container @b widget itself is just a realization
* of this smart class (see the code for elm_container_add()). All of the
* functions listed on @ref Container namespace will work for objects
* deriving from #Elm_Container_Smart_Class.
*/ */
typedef struct _Elm_Container_Smart_Class typedef struct _Elm_Container_Smart_Class

View File

@ -234,7 +234,7 @@ typedef struct _Elm_Layout_Smart_Class
} Elm_Layout_Smart_Class; } Elm_Layout_Smart_Class;
/** /**
* Base widget smart data extended with layout widget data. * Base widget smart data extended with layout instance data.
*/ */
typedef struct _Elm_Layout_Smart_Data typedef struct _Elm_Layout_Smart_Data
{ {