python-efl/efl/elementary/colorselector_cdef.pxi

19 lines
1.5 KiB
Cython
Raw Permalink Normal View History

from efl.elementary.enums cimport Elm_Colorselector_Mode
2015-01-04 16:16:03 -08:00
cdef extern from "Elementary.h":
Evas_Object * elm_colorselector_add(Evas_Object *parent)
void elm_colorselector_color_set(Evas_Object *obj, int r, int g, int b, int a)
2014-04-09 08:21:03 -07:00
void elm_colorselector_color_get(const Evas_Object *obj, int *r, int *g, int *b, int *a)
void elm_colorselector_mode_set(Evas_Object *obj, Elm_Colorselector_Mode mode)
2014-04-09 08:21:03 -07:00
Elm_Colorselector_Mode elm_colorselector_mode_get(const Evas_Object *obj)
void elm_colorselector_palette_item_color_get(const Elm_Object_Item *it, int *r, int *g, int *b, int *a)
void elm_colorselector_palette_item_color_set(Elm_Object_Item *it, int r, int g, int b, int a)
Elm_Object_Item * elm_colorselector_palette_color_add(Evas_Object *obj, int r, int g, int b, int a)
void elm_colorselector_palette_clear(Evas_Object *obj)
void elm_colorselector_palette_name_set(Evas_Object *obj, const char *palette_name)
2014-04-09 08:21:03 -07:00
const char * elm_colorselector_palette_name_get(const Evas_Object *obj)
const Eina_List * elm_colorselector_palette_items_get(const Evas_Object *obj)
Eina_Bool elm_colorselector_palette_item_selected_get(const Elm_Object_Item *it)
2014-02-27 11:52:10 -08:00
void elm_colorselector_palette_item_selected_set(Elm_Object_Item *it, Eina_Bool selected)
Elm_Object_Item * elm_colorselector_palette_selected_item_get(const Evas_Object *obj)