stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=55cd2a339ec45e7fc0a113900a5e775f73eddcd4
commit 55cd2a339ec45e7fc0a113900a5e775f73eddcd4 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Tue Nov 1 14:15:30 2016 +0100 docs: efl_image: add missing docs for efl_image_* interfaces --- src/lib/efl/interfaces/efl_image_animated.eo | 3 ++- src/lib/efl/interfaces/efl_image_load.eo | 12 ++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/lib/efl/interfaces/efl_image_animated.eo b/src/lib/efl/interfaces/efl_image_animated.eo index 7799c90..6d2bc37 100644 --- a/src/lib/efl/interfaces/efl_image_animated.eo +++ b/src/lib/efl/interfaces/efl_image_animated.eo @@ -12,6 +12,7 @@ enum Efl.Image.Animated.Loop_Hint { interface Efl.Image.Animated () { + [[Efl animated image interface]] eo_prefix: efl_image; methods { @@ -113,7 +114,7 @@ interface Efl.Image.Animated () frame_num: int; [[Number of frames in the sequence, starts from 0.]] } values { - duration: double; + duration: double; [[Duration in seconds]] } } } diff --git a/src/lib/efl/interfaces/efl_image_load.eo b/src/lib/efl/interfaces/efl_image_load.eo index b373551..f575b57 100644 --- a/src/lib/efl/interfaces/efl_image_load.eo +++ b/src/lib/efl/interfaces/efl_image_load.eo @@ -43,7 +43,7 @@ interface Efl.Image.Load () ]] } values { - state: Efl.Image.Load.State; + state: Efl.Image.Load.State; [[Image loading status]] } } */ @@ -60,7 +60,7 @@ interface Efl.Image.Load () [[Requests the canvas to load the image at the given size. EFL will try to load the image at the requested size, but does - not garantee an exact match between the request and the loaded + not guarantee an exact match between the request and the loaded image dimensions. ]] } @@ -99,7 +99,7 @@ interface Efl.Image.Load () ]] get {} values { - support: bool; + support: bool; [[$true if region load of the image is supported, $false otherwise]] } } @property load_region { @@ -184,8 +184,8 @@ interface Efl.Image.Load () } } events { - load,done; - load,error: Efl.Image.Load.Error; - load,cancelled; + load,done; [[Called when he image was loaded]] + load,error: Efl.Image.Load.Error; [[Called when an error happened during image loading]] + load,cancelled; [[Called when the image loading was cancelled]] } } --