eo: move all event doc comments to new syntax
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Thu, 11 Jun 2015 16:09:02 +0000 (17:09 +0100)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Thu, 11 Jun 2015 16:09:02 +0000 (17:09 +0100)
src/lib/ecore_audio/ecore_audio_in.eo
src/lib/ecore_audio/ecore_audio_out_pulse.eo
src/lib/ecore_con/efl_network_url.eo
src/lib/edje/edje_object.eo
src/lib/efl/interfaces/efl_file.eo
src/lib/efl/interfaces/efl_model_base.eo
src/lib/evas/canvas/evas_3d_object.eo
src/lib/evas/canvas/evas_object.eo

index 16bae3a..c1e0133 100644 (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.]]
    }
 }
index 0f4ebb2..e955dfb 100644 (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.]]
    }
 }
index 4c199cd..4f6f02d 100644 (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.]]
    }
 }
 
index 76355e7..c1e18cd 100755 (executable)
@@ -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.]]
    }
 }
index 4baa7f6..8e0a1a6 100644 (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]]
    }
 }
index a7c6160..40abf00 100644 (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.]]
    }
 }
index b40c22b..4b60ff5 100644 (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]]
    }
 }
index 0536536..809a450 100644 (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)]]
    }
 }