summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_slideshow_item.eo
blob: ed4f2648944059ba659626bff1bac5698c48c0b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class Elm.Slideshow.Item(Elm.Widget.Item)
{
   eo_prefix: elm_obj_slideshow_item;
   methods {
      show {
           [[Display a given slideshow widget's item, programmatically.

             The change between the current item and $item will use the
             transition $obj is set to use.

             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.

             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.]]

           return: Evas.Object*;
        }
   }
   implements {
        Eo.Base.constructor;
        Eo.Base.destructor;
   }
}