diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2016-10-24 17:02:23 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2016-10-24 17:02:23 +0200 |
commit | f8ef2fec5858debb8dca2766f76747de0a938a70 (patch) | |
tree | e177b9370d06dcf377ae9910e8e0903be63298de /src/lib/emotion/efl_canvas_video.eo | |
parent | ea7c0ca516fae86bc99c6328accda259bd0d5de2 (diff) |
docs: emotion: add missing docs for efl canvas video events
Also make use of $true keyword while being there.
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/efl_canvas_video.eo | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/lib/emotion/efl_canvas_video.eo b/src/lib/emotion/efl_canvas_video.eo index 9715347def..b7be0705db 100644 --- a/src/lib/emotion/efl_canvas_video.eo +++ b/src/lib/emotion/efl_canvas_video.eo | |||
@@ -40,8 +40,8 @@ class Efl.Canvas.Video (Efl.Canvas.Group, Efl.File, Efl.Player, Efl.Image, Efl.I | |||
40 | \@ref emotion_object_file_set. | 40 | \@ref emotion_object_file_set. |
41 | ]] | 41 | ]] |
42 | legacy: emotion_object_init; | 42 | legacy: emotion_object_init; |
43 | return: bool; [[true if the specified module was successfully | 43 | return: bool; [[$true if the specified module was successfully |
44 | initialized for this object, false otherwise.]] | 44 | initialized for this object, $false otherwise.]] |
45 | } | 45 | } |
46 | values { | 46 | values { |
47 | module_filename: string; [[The name of the module to be | 47 | module_filename: string; [[The name of the module to be |
@@ -77,24 +77,24 @@ class Efl.Canvas.Video (Efl.Canvas.Group, Efl.File, Efl.Player, Efl.Image, Efl.I | |||
77 | Efl.Image.smooth_scale.get; | 77 | Efl.Image.smooth_scale.get; |
78 | } | 78 | } |
79 | events { | 79 | events { |
80 | frame,decode; | 80 | frame,decode; [[Called when the frame was decoded]] |
81 | position,change; | 81 | position,change; [[Called when the position changed]] |
82 | length,change; | 82 | length,change; [[Called when the length changed]] |
83 | frame,resize; | 83 | frame,resize; [[Called when the frame was resized]] |
84 | playback,start; | 84 | playback,start; [[Called when playback started]] |
85 | playback,stop; | 85 | playback,stop; [[Called when playback stopped]] |
86 | volume,change; | 86 | volume,change; [[Called when volume changed]] |
87 | channels,change; | 87 | channels,change; [[Called when the channels changed]] |
88 | title,change; | 88 | title,change; [[Called when the title changed]] |
89 | progress,change; | 89 | progress,change; [[Called when the progress changed]] |
90 | ref,change; | 90 | ref,change; [[Called when ref changed]] |
91 | button,num,change; | 91 | button,num,change; [[Called when button number changed]] |
92 | button,change; | 92 | button,change; [[Called when button changed]] |
93 | open,done; | 93 | open,done; [[Called when the files was opened]] |
94 | position,save,done; | 94 | position,save,done; [[Called when the position was saved]] |
95 | position,save,fail; | 95 | position,save,fail; [[Called when saving the position failed]] |
96 | position,load,done; | 96 | position,load,done; [[Called when the position loaded]] |
97 | position,load,fail; | 97 | position,load,fail; [[Called when loading the position failed]] |
98 | } | 98 | } |
99 | } | 99 | } |
100 | 100 | ||