Elm slideshow item: migrate docs.

This commit is contained in:
Tom Hacohen 2015-08-06 14:56:47 +01:00
parent 46fc75210b
commit 7dbbbca898
1 changed files with 15 additions and 23 deletions

View File

@ -3,35 +3,27 @@ class Elm.Slideshow_Item(Elm.Widget_Item)
eo_prefix: elm_obj_slideshow_item;
methods {
show {
/*@
Display a given slideshow widget's item, programmatically.
[[Display a given slideshow widget's item, programmatically.
The change between the current item and @p item will use the
transition @p obj is set to use (@see
elm_slideshow_transition_set()).
The change between the current item and $item will use the
transition $obj is set to use.
@ingroup Slideshow
*/
See: Elm.Slidshow.transition.get]]
/* FIXME Make a proper ref ^ */
}
object_get @const {
/*@
Get the real Evas object created to implement the view of a
given slideshow item
[[Get the real Evas object created to implement the view of a given slideshow item.
This returns the actual Evas object used to implement the
specified slideshow item's view. This may be @c NULL, as it may
not have been created or may have been deleted, at any time, by
the slideshow. <b>Do not modify this object</b> (move, resize,
show, hide, etc.), as the slideshow is controlling it. This
function is for querying, emitting custom signals or hooking
lower level callbacks for events on that object. Do not delete
this object under any circumstances.
This returns the actual Evas object used to implement the
specified slideshow item's view. This may be $null, as it may
not have been created or may have been deleted, at any time, by
the slideshow. **Do not modify this object** (move, resize,
show, hide, etc.), as the slideshow is controlling it. This
function is for querying, emitting custom signals or hooking
lower level callbacks for events on that object. Do not delete
this object under any circumstances.]]
@see elm_object_item_data_get()
@ingroup Slideshow
*/
return: Evas.Object*;
return: Evas.Object*;
}
}
implements {