1 #ifndef _ELM_SLIDER_PART_INDICATOR_EO_H_
2 #define _ELM_SLIDER_PART_INDICATOR_EO_H_
3 
4 #ifndef _ELM_SLIDER_PART_INDICATOR_EO_CLASS_TYPE
5 #define _ELM_SLIDER_PART_INDICATOR_EO_CLASS_TYPE
6 
7 typedef Eo Elm_Slider_Part_Indicator;
8 
9 #endif
10 
11 #ifndef _ELM_SLIDER_PART_INDICATOR_EO_TYPES
12 #define _ELM_SLIDER_PART_INDICATOR_EO_TYPES
13 
14 
15 #endif
16 /** Elementary slider internal part class
17  *
18  * @ingroup Elm_Slider_Part_Indicator
19  */
20 #define ELM_SLIDER_PART_INDICATOR_CLASS elm_slider_part_indicator_class_get()
21 
22 EWAPI const Efl_Class *elm_slider_part_indicator_class_get(void) EINA_CONST;
23 
24 /**
25  * @brief Set/Get the visible mode of indicator.
26  *
27  * @param[in] obj The object.
28  * @param[in] mode The indicator visible mode.
29  *
30  * @ingroup Elm_Slider_Part_Indicator
31  */
32 EOAPI void elm_slider_part_indicator_visible_mode_set(Eo *obj, Elm_Slider_Indicator_Visible_Mode mode);
33 
34 /**
35  * @brief Set/Get the visible mode of indicator.
36  *
37  * @param[in] obj The object.
38  *
39  * @return The indicator visible mode.
40  *
41  * @ingroup Elm_Slider_Part_Indicator
42  */
43 EOAPI Elm_Slider_Indicator_Visible_Mode elm_slider_part_indicator_visible_mode_get(const Eo *obj);
44 
45 #endif
46