python-efl/efl/elementary/actionslider_cdef.pxi

21 lines
1016 B
Cython

cdef extern from "Elementary.h":
cpdef enum Elm_Actionslider_Pos:
ELM_ACTIONSLIDER_NONE
ELM_ACTIONSLIDER_LEFT
ELM_ACTIONSLIDER_CENTER
ELM_ACTIONSLIDER_RIGHT
ELM_ACTIONSLIDER_ALL
ctypedef enum Elm_Actionslider_Pos:
pass
Evas_Object *elm_actionslider_add(Evas_Object *parent)
const char *elm_actionslider_selected_label_get(const Evas_Object *obj)
void elm_actionslider_indicator_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos)
Elm_Actionslider_Pos elm_actionslider_indicator_pos_get(const Evas_Object *obj)
void elm_actionslider_magnet_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos)
Elm_Actionslider_Pos elm_actionslider_magnet_pos_get(const Evas_Object *obj)
void elm_actionslider_enabled_pos_set(Evas_Object *obj, Elm_Actionslider_Pos pos)
Elm_Actionslider_Pos elm_actionslider_enabled_pos_get(const Evas_Object *obj)