/*@ Call the object's constructor.
Should not be used with #eo_do. Only use it with #eo_do_super. */
}
- event_callback_forwarder_del {
- /*@ Remove an event callback forwarder for an event and an object. */
- params {
- @in const(Eo_Event_Description)* desc; /*@ The description of the event to listen to */
- @in Eo* new_obj; /*@ The object to emit events from */
- }
- }
- event_thaw {
- /*@ thaw events of object.
-Lets event callbacks be called for the object. */
- }
- event_freeze {
- /*@ freeze events of object.
-Prevents event callbacks from being called for the object. */
+ destructor {
+ /*@ Call the object's destructor.
+Should not be used with #eo_do. Only use it with #eo_do_super. */
}
- event_global_freeze @class {
- /*@ freeze events of object.
-Prevents event callbacks from being called for the object. */
+ finalize {
+ /*@ Called at the end of #eo_add. Should not be called, just overridden. */
+ return: Eo *; /*@ The new object created, can be NULL if the finalize func decided to abort (though it should free the created object on it's own). */
}
- event_callback_array_del {
- /*@ Del a callback array with a specific data associated to it for an event. */
+ wref_add {
+ /*@ Add a new weak reference to obj.
+This function registers the object handle pointed by wref to obj so when obj is deleted it'll be updated to NULL. This functions should be used when you want to keep track of an object in a safe way, but you don't want to prevent it from being freed. */
params {
- @in const(Eo_Callback_Array_Item)* array; /*@ an #Eo_Callback_Array_Item of events to listen to */
- @in const(void)* user_data; /*@ The data to compare */
+ @out Eo* wref;
}
}
wref_del {
@in Eo** wref;
}
}
- destructor {
- /*@ Call the object's destructor.
-Should not be used with #eo_do. Only use it with #eo_do_super. */
- }
- finalize {
- /*@ Called at the end of #eo_add. Should not be called, just overridden. */
- return: Eo *; /*@ The new object created, can be NULL if the finalize func decided to abort (though it should free the created object on it's own). */
- }
key_data_set {
/*@ Set generic data to object. */
params {
}
return: void *; /* the data for the key */
}
- event_callback_del {
- /*@ Del a callback with a specific data associated to it for an event. */
+ key_data_del {
+ /*@ Del generic data from object. */
params {
- @in const(Eo_Event_Description)* desc; /*@ The description of the event to listen to */
- @in Eo_Event_Cb func; /*@ the callback to delete */
- @in const(void)* user_data; /*@ The data to compare */
+ @in const(char)* key; /*@ the key associated with the data */
}
}
+ event_thaw {
+ /*@ thaw events of object.
+Lets event callbacks be called for the object. */
+ }
+ event_freeze {
+ /*@ freeze events of object.
+Prevents event callbacks from being called for the object. */
+ }
event_global_thaw @class {
/*@ thaw events of object.
Lets event callbacks be called for the object. */
}
- key_data_del {
- /*@ Del generic data from object. */
+ event_global_freeze @class {
+ /*@ freeze events of object.
+Prevents event callbacks from being called for the object. */
+ }
+ event_callback_priority_add {
+ /*@ Add a callback for an event with a specific priority.
+callbacks of the same priority are called in reverse order of creation. */
params {
- @in const(char)* key; /*@ the key associated with the data */
+ @in const(Eo_Event_Description)* desc; /*@ The description of the event to listen to */
+ @in Eo_Callback_Priority priority; /*@ The priority of the callback */
+ @in Eo_Event_Cb cb; /*@ the callback to call */
+ @in const(void)* data; /*@ additional data to pass to the callback */
+ }
+ }
+ event_callback_del {
+ /*@ Del a callback with a specific data associated to it for an event. */
+ params {
+ @in const(Eo_Event_Description)* desc; /*@ The description of the event to listen to */
+ @in Eo_Event_Cb func; /*@ the callback to delete */
+ @in const(void)* user_data; /*@ The data to compare */
}
}
event_callback_array_priority_add {
@in const(void)* data; /*@ additional data to pass to the callback */
}
}
- wref_add {
- /*@ Add a new weak reference to obj.
-This function registers the object handle pointed by wref to obj so when obj is deleted it'll be updated to NULL. This functions should be used when you want to keep track of an object in a safe way, but you don't want to prevent it from being freed. */
+ event_callback_array_del {
+ /*@ Del a callback array with a specific data associated to it for an event. */
params {
- @out Eo* wref;
+ @in const(Eo_Callback_Array_Item)* array; /*@ an #Eo_Callback_Array_Item of events to listen to */
+ @in const(void)* user_data; /*@ The data to compare */
}
}
- dbg_info_get {
- /*@ Get dbg information from the object. */
+ event_callback_call {
+ /*@ Call the callbacks for an event of an object. */
params {
- @in Eo_Dbg_Info* root_node; /*@ node of the tree */
+ @in const(Eo_Event_Description)* desc; /*@ The description of the event to call */
+ @in void *event_info; /*@ Extra event info to pass to the callbacks */
}
+ return: bool; /* @c EINA_TRUE if one of the callbacks aborted the call, @c EINA_FALSE otherwise */
}
event_callback_forwarder_add {
/*@ Add an event callback forwarder for an event and an object. */
@in Eo* new_obj; /*@ The object to emit events from */
}
}
- event_callback_call {
- /*@ Call the callbacks for an event of an object. */
+ event_callback_forwarder_del {
+ /*@ Remove an event callback forwarder for an event and an object. */
params {
- @in const(Eo_Event_Description)* desc; /*@ The description of the event to call */
- @in void *event_info; /*@ Extra event info to pass to the callbacks */
+ @in const(Eo_Event_Description)* desc; /*@ The description of the event to listen to */
+ @in Eo* new_obj; /*@ The object to emit events from */
}
- return: bool; /* @c EINA_TRUE if one of the callbacks aborted the call, @c EINA_FALSE otherwise */
}
- event_callback_priority_add {
- /*@ Add a callback for an event with a specific priority.
-callbacks of the same priority are called in reverse order of creation. */
+ dbg_info_get {
+ /*@ Get dbg information from the object. */
params {
- @in const(Eo_Event_Description)* desc; /*@ The description of the event to listen to */
- @in Eo_Callback_Priority priority; /*@ The priority of the callback */
- @in Eo_Event_Cb cb; /*@ the callback to call */
- @in const(void)* data; /*@ additional data to pass to the callback */
+ @in Eo_Dbg_Info* root_node; /*@ node of the tree */
}
}
children_iterator_new {