summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_slideshow_item_eo.h
blob: 131e572dc6deb947a2219527053c660722e502e3 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef _ELM_SLIDESHOW_ITEM_EO_H_
#define _ELM_SLIDESHOW_ITEM_EO_H_

#ifndef _ELM_SLIDESHOW_ITEM_EO_CLASS_TYPE
#define _ELM_SLIDESHOW_ITEM_EO_CLASS_TYPE

typedef Eo Elm_Slideshow_Item;

#endif

#ifndef _ELM_SLIDESHOW_ITEM_EO_TYPES
#define _ELM_SLIDESHOW_ITEM_EO_TYPES


#endif
/** Elementary slideshow class
 *
 * @ingroup Elm_Slideshow_Item
 */
#define ELM_SLIDESHOW_ITEM_CLASS elm_slideshow_item_class_get()

EWAPI const Efl_Class *elm_slideshow_item_class_get(void) EINA_CONST;

/**
 * @brief Display a given slideshow widget's item, programmatically.
 *
 * The change between the current item and @c item will use the transition
 * @c obj is set to use.
 *
 * See: Elm.Slidshow.transition.get
 * @param[in] obj The object.
 *
 * @ingroup Elm_Slideshow_Item
 */
EOAPI void elm_obj_slideshow_item_show(Eo *obj);

/**
 * @brief 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. **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.
 *
 * @param[in] obj The object.
 *
 * @return Real evas object
 *
 * @ingroup Elm_Slideshow_Item
 */
EOAPI Efl_Canvas_Object *elm_obj_slideshow_item_object_get(const Eo *obj);

#endif