efl_gfx_view: convert docs

This commit is contained in:
Daniel Kolesa 2015-06-19 15:01:31 +01:00
parent c25900428d
commit 9f8f6c2b53
1 changed files with 12 additions and 12 deletions

View File

@ -3,24 +3,24 @@ interface Efl.Gfx.View {
methods {
@property size {
set {
/*@
Sets the size of the given image object.
[[Sets the size of the given image object.
This function will scale down or crop the image so that it is
treated as if it were at the given size. If the size given is
smaller than the image, it will be cropped. If the size given is
larger, then the image will be treated as if it were in the upper
left hand corner of a larger image that is otherwise transparent. */
This function will scale down or crop the image so that it is
treated as if it were at the given size. If the size given is
smaller than the image, it will be cropped. If the size given is
larger, then the image will be treated as if it were in the upper
left hand corner of a larger image that is otherwise transparent.
]]
}
get {
/*@
Retrieves the size of the given image object.
[[Retrieves the size of the given image object.
See @ref evas_object_image_size_set() for more details. */
See @evas_object_image_size_set for more details.
]]
}
values {
w: int; /*@ The new width of the image. */
h: int; /*@ The new height of the image. */
w: int; [[The new width of the image.]]
h: int; [[The new height of the image.]]
}
}
}