elementary - trivial change.

This commit is contained in:
ChunEon Park 2013-03-06 21:50:14 +09:00
parent 0f4de7563d
commit b3fe605189
3 changed files with 11 additions and 9 deletions

View File

@ -115,13 +115,6 @@ typedef enum
ELM_OBJECT_SELECT_MODE_MAX
} Elm_Object_Select_Mode;
/**
* @typedef Elm_Object_Item
* An Elementary Object item handle.
* @ingroup General
*/
typedef struct _Elm_Object_Item Elm_Object_Item;
typedef Eina_Bool (*Elm_Event_Cb)(void *data, Evas_Object *obj, Evas_Object *src, Evas_Callback_Type type, void *event_info); /**< Function prototype definition for callbacks on input events happening on Elementary widgets. @a data will receive the user data pointer passed to elm_object_event_callback_add(). @a src will be a pointer to the widget on which the input event took place. @a type will get the type of this event and @a event_info, the struct with details on this event. */
#ifndef ELM_LIB_QUICKLAUNCH

View File

@ -234,7 +234,7 @@ EAPI const char *elm_object_style_get(const Evas_Object *obj);
* This sets the state for the widget, either disabling it or
* enabling it back.
*
* @ingroup Styles
* @ingroup General
*/
EAPI void elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled);
@ -247,7 +247,7 @@ EAPI void elm_object_disabled_set(Evas_Object *obj, Eina_Bool disabled);
*
* This gets the state of the widget, which might be enabled or disabled.
*
* @ingroup Styles
* @ingroup General
*/
EAPI Eina_Bool elm_object_disabled_get(const Evas_Object *obj);

View File

@ -1,3 +1,10 @@
/**
* @typedef Elm_Object_Item
* An Elementary Object item handle.
* @ingroup General
*/
typedef struct _Elm_Object_Item Elm_Object_Item;
/**
* @typedef Elm_Object_Item_Signal_Cb
*
@ -9,6 +16,8 @@
*
* @see elm_object_item_signal_callback_add()
* @since 1.8
*
* @ingroup General
*/
typedef void (*Elm_Object_Item_Signal_Cb)(void *data, Elm_Object_Item *it, const char *emission, const char *source);