efl/src/lib/eo/eo_base.eo

412 lines
14 KiB
Plaintext

import eina_types;
struct Eo.Event.Description {
[[This struct holds the description of a specific event.]]
name: const(char) *; [[name of the event.]]
unfreezable: bool; [[Eina_True if the event cannot be frozen.]]
legacy_is: bool; [[Internal use: if is a legacy event.]]
restart: bool; [[Eina_True if when the event is triggered again from a callback, it should start from where it was]]
}
struct Eo.Event {
[[Parameter passed in event callbacks holding extra event parameters]]
obj: Eo.Base *; [[The object the event was called on.]]
desc: const(Eo.Event.Description) *; [[The event description.]]
info: void *; [[Extra event information passed by the event caller.]]
}
type Eo.Event_Cb: __builtin_event_cb; [[An event callback prototype.
return $EO_CALLBACK_STOP to stop calling additional callbacks for the event, $EO_CALLBACK_CONTINUE to continue.]]
struct Eo.Callback_Array_Item {
[[An item in an array of callback desc/func.
See also \@ref eo_event_callback_array_add.
]]
desc: const(Eo.Event.Description) *; [[The event description.]]
func: Eo.Event_Cb; [[The callback function.]]
}
struct Eo.Dbg_Info {
[[The structure for the debug info used by Eo.]]
name: Eina.Stringshare *; [[The name of the part (stringshare).]]
value: generic_value; [[The value.]]
}
type Eo.Callback_Priority: short; [[Callback priority value. Range is -32k - 32k.
The lower the number, the higher the priority.
See \@ref EO_CALLBACK_PRIORITY_AFTER,
\@ref EO_CALLBACK_PRIORITY_BEFORE
\@ref EO_CALLBACK_PRIORITY_DEFAULT
]]
abstract Eo.Base ()
{
eo_prefix: eo;
methods {
@property parent {
[[The parent of an object.
Parents keep references to their children so in order to
delete objects that have parents you need to set parent to
NULL or use eo_del() that does that for you (and also unrefs
the object).
The Eo parent is conceptually user set. That means that a parent
should not be changed behind the scenes in a surprising manner.
For example:
if you have a widget that has a box internally, and
when you swallow into that widget the object you swallow ends up in
the box, the parent should be the widget, and not the box.
]]
set {
}
get {
}
values {
parent: Eo.Base * @nullable; [[the new parent]]
}
}
@property name {
[[ The name of the object.
Every object can have a string name. Names may not contain
the following charactors:
/ ? * [ ] ! \ :
They are illegal. Using it in a name will result in undefined
behavior later on. An empty string is considered the same as a
NULL string or no string for the name at all.
]]
set {
}
get {
}
values {
name: const(char)* @nullable; [[the name]]
}
}
@property comment {
[[ A human readable comment for the object
Every object can have a string comment intended for developers
and debugging. An empty string is considered the same as a NULL
string or no string for the comment at all.
]]
set {
}
get {
}
values {
comment: const(char)* @nullable; [[the comment]]
}
}
@property event_global_freeze_count @class {
get {
[[Return freeze events of object.
Return event freeze count.
]]
}
values {
fcount: int; [[The event freeze count of the object]]
}
}
@property event_freeze_count {
get {
[[Return freeze events of object.
Return event freeze count.
]]
}
values {
fcount: int; [[The event freeze count of the object]]
}
}
@property finalized {
[[True if the object is already finalized, false otherwise.]]
get {
}
values {
finalized: bool;
}
}
provider_find {
[[Searches up in the object tree for a provider which knows the given class/interface.
The object from the provider will then be returned.
The base implementation calls the provider_find function on the object parent,
and returnes its result. If no parent is present NULL is returned.
Each implementation has to support this function by overriding
it and returning itself if the interface matches the parameter.
If this is not done the class cannot be found up in the object tree.
]]
params {
klass : const(Eo.Base)*; [[The class identifier to search for]]
}
return : Eo.Base*;
}
constructor {
[[Call the object's constructor.
Should not be used with #eo_do. Only use it with #eo_do_super.
]]
return: Eo.Base *; [[The new object created, can be NULL if aborting]]
}
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.Base *; [[The new object created, can be NULL if aborting]]
}
name_find {
[[Find a child object with the given name and return it.
The search string can be a glob (shell style). It can also
specify class name in the format of "class:name" where ":"
separates class and name. Both class and name can be globs.
If class is specified, and name is empty like "class:" then
the search will match any object of that class.
]]
params {
@in search: const(char)*; [[the name search string]]
}
return: Eo.Base *; [[the first object found]]
}
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 {
@out wref: Eo.Base *;
}
}
wref_del {
[[Delete the weak reference passed.]]
params {
@in wref: Eo.Base **;
}
}
@property key_data {
[[Generic data with string key on an object.
The user is in charge of freeing the data.
]]
keys {
key: const(char) *; [[the key associated with the data]]
}
set {
values {
data: const(void) *; [[the data to set]]
}
}
get {
values {
data: void *; [[the data to set]]
}
}
}
@property key_obj {
[[Generic object reference with string key to object.
The object will be automatically ref'd when set and unref'd
when replaced or deleted or referring object is deleted. If
the referenced object is deleted then the key is deleted
automatically.
This is the same key store used by key_data and key_value so keys
are shared and can store only one thing
]]
keys {
key: const(char) *; [[the key associated with the object ref]]
}
set {
values {
objdata: const(Eo.Base) *; [[the object to set]]
}
}
get {
values {
objdata: Eo.Base *; [[the object to set]]
}
}
}
@property key_value {
[[Value on with string key on the object.
This stores the value with the given string key on the object
and it will be freed when replaced or deleted or the referring
object is deleted.
This is the same key store used by key_data and key_obj so keys
are shared and can store only one thing
]]
keys {
key: const(char)*; [[the key associated with the value]]
}
values {
value: Eina.Value *; [[the value to set]]
}
}
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.
]]
}
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.
]]
return: bool; [[Return true when the callback has been successfully added.]]
params {
@in desc: const(Eo.Event.Description)*; [[The description of the event to listen to]]
@in priority: Eo.Callback_Priority; [[The priority of the callback]]
@in cb: Eo.Event_Cb; [[the callback to call]]
@in data: const(void)*; [[additional data to pass to the callback]]
}
}
event_callback_del {
[[Del a callback with a specific data associated to it for an event.]]
return: bool; [[Return true when the callback has been successfully removed.]]
params {
@in desc: const(Eo.Event.Description)*; [[The description of the event to listen to]]
@in func: Eo.Event_Cb; [[the callback to delete]]
@in user_data: const(void)*; [[The data to compare]]
}
}
event_callback_array_priority_add {
[[Add a callback array for an event with a specific priority.
callbacks of the same priority are called in reverse order of
creation.
]]
return: bool; [[Return true when the callback has been successfully added.]]
params {
@in array: const(Eo.Callback_Array_Item)*; [[an #Eo_Callback_Array_Item of events to listen to]]
@in priority: Eo.Callback_Priority; [[The priority of the callback]]
@in data: const(void)*; [[additional data to pass to the callback]]
}
}
event_callback_array_del {
[[Del a callback array with a specific data associated to it for an
event.
]]
return: bool; [[Return true when the callback has been successfully removed.]]
params {
@in array: const(Eo.Callback_Array_Item)*; [[an #Eo_Callback_Array_Item of events to listen to]]
@in user_data: const(void)*; [[The data to compare]]
}
}
event_callback_call {
[[Call the callbacks for an event of an object.]]
params {
@in desc: const(Eo.Event.Description)*; [[The description of the event to call]]
@in event_info: void *; [[Extra event info to pass to the callbacks]]
}
return: bool; [[$true if one of the callbacks aborted the call,
$false otherwise
]]
}
event_callback_forwarder_add {
[[Add an event callback forwarder for an event and an object.]]
params {
@in desc: const(Eo.Event.Description)*; [[The description of the event to listen to]]
@in new_obj: Eo.Base *; [[The object to emit events from]]
}
}
event_callback_forwarder_del {
[[Remove an event callback forwarder for an event and an object.]]
params {
@in desc: const(Eo.Event.Description)*; [[The description of the event to listen to]]
@in new_obj: Eo.Base *; [[The object to emit events from]]
}
}
dbg_info_get {
[[Get dbg information from the object.]]
params {
@in root_node: Eo.Dbg_Info*; [[node of the tree]]
}
}
children_iterator_new {
[[Get an iterator on all childrens]]
return: free(own(iterator<Eo.Base *> *), eina_iterator_free) @warn_unused;
}
composite_attach @beta {
[[Make an object a composite object of another.
The class of comp_obj must be part of the extensions of the class of the parent.
It is not possible to attach more then 1 composite of the same class.
This functions also sets the parent of comp_obj to parent.
See @.composite_detach, @.composite_part_is.
]]
params {
@in comp_obj: Eo.Base *; [[the object that will be used to composite the parent.]]
}
return: bool; [[$true if successful. $false otherwise.]]
}
composite_detach @beta {
[[Detach a composite object from another object.
This functions also sets the parent of comp_obj to $null.
See @.composite_attach, @.composite_part_is.
]]
params {
@in comp_obj: Eo.Base *; [[the object that will be removed from the parent.]]
}
return: bool; [[$true if successful. $false otherwise.]]
}
composite_part_is @beta {
[[Check if an object is part of a composite object.
See @.composite_attach, @.composite_part_is.
]]
return: bool; [[$true if it is. $false otherwise.]]
}
}
implements {
class.constructor;
class.destructor;
}
events {
callback,add @hot; [[A callback was added.]]
callback,del @hot; [[A callback was deleted.]]
del @hot; [[Obj is being deleted.]]
}
}