python-efl/efl/elementary/notify_cdef.pxi

30 lines
1.4 KiB
Cython
Raw Normal View History

cdef extern from "Elementary.h":
2015-01-04 16:16:03 -08:00
cpdef enum Elm_Notify_Orient:
ELM_NOTIFY_ORIENT_TOP
ELM_NOTIFY_ORIENT_CENTER
ELM_NOTIFY_ORIENT_BOTTOM
ELM_NOTIFY_ORIENT_LEFT
ELM_NOTIFY_ORIENT_RIGHT
ELM_NOTIFY_ORIENT_TOP_LEFT
ELM_NOTIFY_ORIENT_TOP_RIGHT
ELM_NOTIFY_ORIENT_BOTTOM_LEFT
ELM_NOTIFY_ORIENT_BOTTOM_RIGHT
ELM_NOTIFY_ORIENT_LAST
ctypedef enum Elm_Notify_Orient:
pass
Evas_Object *elm_notify_add(Evas_Object *parent)
void elm_notify_parent_set(Evas_Object *obj, Evas_Object *parent)
2014-04-09 08:21:03 -07:00
Evas_Object *elm_notify_parent_get(const Evas_Object *obj)
void elm_notify_orient_set(Evas_Object *obj, int orient)
2014-04-09 08:21:03 -07:00
int elm_notify_orient_get(const Evas_Object *obj)
void elm_notify_timeout_set(Evas_Object *obj, double timeout)
2014-04-09 08:21:03 -07:00
double elm_notify_timeout_get(const Evas_Object *obj)
void elm_notify_allow_events_set(Evas_Object *obj, Eina_Bool repeat)
2014-04-09 08:21:03 -07:00
Eina_Bool elm_notify_allow_events_get(const Evas_Object *obj)
void elm_notify_align_set(Evas_Object *obj, double horizontal, double vertical)
void elm_notify_align_get(const Evas_Object *obj, double *horizontal, double *vertical)