efl: rename Efl.Event.Description -> Efl.Event_Description

This commit is contained in:
Xavi Artigas 2018-05-22 17:24:06 +02:00 committed by Daniel Kolesa
parent 7a427b3bfc
commit 029f0769a5
5 changed files with 8 additions and 8 deletions

View File

@ -376,7 +376,7 @@ mixin Efl.Access.Object (Efl.Interface, Efl.Object)
[[Emit event]]
params {
@in accessible: Efl.Access.Object; [[Accessibility object.]]
@cref event: Efl.Event.Description; [[Accessibility event type.]]
@cref event: Efl.Event_Description; [[Accessibility event type.]]
@in event_info: void_ptr; [[Accessibility event details.]]
}
}

View File

@ -1,6 +1,6 @@
import eina_types;
struct Efl.Event.Description {
struct Efl.Event_Description {
[[This struct holds the description of a specific event.]]
name: string; [[name of the event.]]
unfreezable: bool; [[$true if the event cannot be frozen.]]
@ -230,14 +230,14 @@ abstract Efl.Object ()
event_callback_forwarder_add {
[[Add an event callback forwarder for an event and an object.]]
params {
@cref desc: Efl.Event.Description; [[The description of the event to listen to]]
@cref desc: Efl.Event_Description; [[The description of the event to listen to]]
@in new_obj: Efl.Object; [[The object to emit events from]]
}
}
event_callback_forwarder_del {
[[Remove an event callback forwarder for an event and an object.]]
params {
@cref desc: Efl.Event.Description; [[The description of the event to listen to]]
@cref desc: Efl.Event_Description; [[The description of the event to listen to]]
@in new_obj: Efl.Object; [[The object to emit events from]]
}
}
@ -318,6 +318,6 @@ struct Efl.Event {
This is the full event information passed to callbacks in C.
]]
object: Efl.Object; [[The object the callback was called on.]]
desc: const(ptr(Efl.Event.Description)); [[The event description.]]
desc: const(ptr(Efl.Event_Description)); [[The event description.]]
info: void_ptr; [[Extra event information passed by the event caller]]
}

View File

@ -581,7 +581,7 @@ abstract Efl.Canvas.Object (Efl.Object, Efl.Gfx.Entity, Efl.Gfx.Color, Efl.Gfx.S
get { legacy: null; }
set { legacy: null; }
keys {
@cref desc: Efl.Event.Description;
@cref desc: Efl.Event_Description;
[[The event description for which the given $animation is set.]]
}
values {

View File

@ -10,7 +10,7 @@ abstract Efl.Canvas.Gesture(Efl.Object)
get {
}
values {
@cref type: Efl.Event.Description; [[gesture type]]
@cref type: Efl.Event_Description; [[gesture type]]
}
}
@property state {

View File

@ -8,7 +8,7 @@ class Efl.Canvas.Gesture_Manager (Efl.Object)
params {
@in recognizer: Efl.Canvas.Gesture_Recognizer; [[The gesture recognizer object]]
}
return: ptr(const(Efl.Event.Description)); [[Returns the Efl.Event.Description type the recognizer supports]]
return: ptr(const(Efl.Event_Description)); [[Returns the Efl.Event_Description type the recognizer supports]]
}
recognizer_unregister {
[[This function is called to unregister a Efl.Canvas.Gesture_Recognizer]]