python-efl/efl/elementary/notify_cdef.pxi

14 lines
1.0 KiB
Cython
Raw Normal View History

cdef extern from "Elementary.h":
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)
2016-01-23 07:40:49 -08:00
void elm_notify_dismiss(const Evas_Object *obj)