docs: efl_image: add missing docs for efl_image_* interfaces

This commit is contained in:
Stefan Schmidt 2016-11-01 14:15:30 +01:00
parent f2a6167c30
commit 55cd2a339e
2 changed files with 8 additions and 7 deletions

View File

@ -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]]
}
}
}

View File

@ -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]]
}
}