eo: move all event doc comments to new syntax

This commit is contained in:
Daniel Kolesa 2015-06-11 17:09:02 +01:00
parent cd12f938af
commit 27237976ad
8 changed files with 47 additions and 43 deletions

View File

@ -180,8 +180,8 @@ class Ecore_Audio_In (Ecore_Audio)
@virtual .length.set;
}
events {
in,looped; /*@ Called when an input has looped. */
in,stopped; /*@ Called when an input has stopped playing. */
in,samplerate,changed; /*@ Called when the input samplerate has changed. */
in,looped; [[Called when an input has looped.]]
in,stopped; [[Called when an input has stopped playing.]]
in,samplerate,changed; [[Called when the input samplerate has changed.]]
}
}

View File

@ -9,7 +9,7 @@ class Ecore_Audio_Out_Pulse (Ecore_Audio_Out)
Ecore_Audio_Out.input_detach;
}
events {
context,ready; /*@ Called when the output is ready for playback. */
context,fail; /*@ Called when context fails. */
context,ready; [[Called when the output is ready for playback.]]
context,fail; [[Called when context fails.]]
}
}

View File

@ -22,9 +22,9 @@ class Efl.Network.Url (Eo.Base) {
Eo.Base.finalize;
}
events {
data; /*@ Triggered when data arrives at the socket. */
progress; /*@ Triggered when progress is made in upload/download. */
complete; /*@ Triggered when the operation is complete. */
data; [[Triggered when data arrives at the socket.]]
progress; [[Triggered when progress is made in upload/download.]]
complete; [[Triggered when the operation is complete.]]
}
}

View File

@ -2402,6 +2402,6 @@ class Edje.Object (Evas.Smart_Clipped, Efl.File)
Efl.File.mmap.get;
}
events {
recalc; /*@ Edje re-calculated the object. */
recalc; [[Edje re-calculated the object.]]
}
}

View File

@ -141,7 +141,7 @@ interface Efl.File {
}
}
events {
async,opened; /*@ The file was successfully opened asynchronously */
async,error; /*@ Error occured in asynchronous file operation */
async,opened; [[The file was successfully opened asynchronously]]
async,error; [[Error occured in asynchronous file operation]]
}
}

View File

@ -311,10 +311,13 @@ interface Efl.Model.Base ()
}
events {
load,status: Efl.Model.Load_Status; /*@ Event dispatch when load status changes */
properties,changed: Efl.Model.Property_Event; /*@ Event dispatched when properties list is available. */
child,added; /*@ Event dispatched when new child is added. */
child,removed; /*@ Event dispatched when child is removed. */
children,count,changed; /*@ Event dispatched when children count is finished. */
load,status: Efl.Model.Load_Status; [[Event dispatch when load status
changes]]
properties,changed: Efl.Model.Property_Event; [[Event dispatched when
properties list is
available.]]
child,added; [[Event dispatched when new child is added.]]
child,removed; [[Event dispatched when child is removed.]]
children,count,changed; [[Event dispatched when children count is finished.]]
}
}

View File

@ -90,7 +90,7 @@ class Evas_3D_Object (Eo.Base, Evas.Common_Interface)
@virtual .callback_unregister;
}
events {
clicked; /*@ Clicked Event */
collision; /*@ Collision Event */
clicked; [[Clicked Event]]
collision; [[Collision Event]]
}
}

View File

@ -1306,30 +1306,31 @@ abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx.Base, Efl.Gfx.Stac
Efl.Gfx.Stack.lower;
}
events {
mouse,in; /*@ Mouse In Event */
mouse,out; /*@ Mouse Out Event */
mouse,down; /*@ Mouse Button Down Event */
mouse,up; /*@ Mouse Button Up Event */
mouse,move; /*@ Mouse Move Event */
mouse,wheel; /*@ Mouse Wheel Event */
multi,down; /*@ Mouse-touch Down Event */
multi,up; /*@ Mouse-touch Up Event */
multi,move; /*@ Multi-touch Move Event */
free; /*@ Object Being Freed (Called after Del) */
key,down; /*@ Key Press Event */
key,up; /*@ Key Release Event */
focus,in; /*@ Focus In Event */
focus,out; /*@ Focus Out Event */
show; /*@ Show Event */
hide; /*@ Hide Event */
move; /*@ Move Event */
resize; /*@ Resize Event */
restack; /*@ Restack Event */
del; /*@ Object Being Deleted (called before Free) */
hold; /*@ Events go on/off hold */
changed,size,hints; /*@ Size hints changed event */
image,preloaded; /*@ Image has been preloaded */
image,resize; /*@ Image resize */
image,unloaded; /*@ Image data has been unloaded (by some mechanism in Evas that throw out original image data) */
mouse,in; [[Mouse In Event ]]
mouse,out; [[Mouse Out Event ]]
mouse,down; [[Mouse Button Down Event ]]
mouse,up; [[Mouse Button Up Event ]]
mouse,move; [[Mouse Move Event ]]
mouse,wheel; [[Mouse Wheel Event ]]
multi,down; [[Mouse-touch Down Event ]]
multi,up; [[Mouse-touch Up Event ]]
multi,move; [[Multi-touch Move Event ]]
free; [[Object Being Freed (Called after Del) ]]
key,down; [[Key Press Event ]]
key,up; [[Key Release Event ]]
focus,in; [[Focus In Event ]]
focus,out; [[Focus Out Event ]]
show; [[Show Event ]]
hide; [[Hide Event ]]
move; [[Move Event ]]
resize; [[Resize Event ]]
restack; [[Restack Event ]]
del; [[Object Being Deleted (called before Free) ]]
hold; [[Events go on/off hold ]]
changed,size,hints; [[Size hints changed event ]]
image,preloaded; [[Image has been preloaded ]]
image,resize; [[Image resize ]]
image,unloaded; [[Image data has been unloaded (by some mechanism in
Evas that throw out original image data)]]
}
}