1 
2 EAPI void
elm_colorselector_color_set(Elm_Colorselector * obj,int r,int g,int b,int a)3 elm_colorselector_color_set(Elm_Colorselector *obj, int r, int g, int b, int a)
4 {
5    elm_obj_colorselector_picked_color_set(obj, r, g, b, a);
6 }
7 
8 EAPI void
elm_colorselector_color_get(const Elm_Colorselector * obj,int * r,int * g,int * b,int * a)9 elm_colorselector_color_get(const Elm_Colorselector *obj, int *r, int *g, int *b, int *a)
10 {
11    elm_obj_colorselector_picked_color_get(obj, r, g, b, a);
12 }
13 
14 EAPI void
elm_colorselector_palette_name_set(Elm_Colorselector * obj,const char * palette_name)15 elm_colorselector_palette_name_set(Elm_Colorselector *obj, const char *palette_name)
16 {
17    elm_obj_colorselector_palette_name_set(obj, palette_name);
18 }
19 
20 EAPI const char *
elm_colorselector_palette_name_get(const Elm_Colorselector * obj)21 elm_colorselector_palette_name_get(const Elm_Colorselector *obj)
22 {
23    return elm_obj_colorselector_palette_name_get(obj);
24 }
25 
26 EAPI void
elm_colorselector_mode_set(Elm_Colorselector * obj,Elm_Colorselector_Mode mode)27 elm_colorselector_mode_set(Elm_Colorselector *obj, Elm_Colorselector_Mode mode)
28 {
29    elm_obj_colorselector_mode_set(obj, mode);
30 }
31 
32 EAPI Elm_Colorselector_Mode
elm_colorselector_mode_get(const Elm_Colorselector * obj)33 elm_colorselector_mode_get(const Elm_Colorselector *obj)
34 {
35    return elm_obj_colorselector_mode_get(obj);
36 }
37 
38 EAPI const Eina_List *
elm_colorselector_palette_items_get(const Elm_Colorselector * obj)39 elm_colorselector_palette_items_get(const Elm_Colorselector *obj)
40 {
41    return elm_obj_colorselector_palette_items_get(obj);
42 }
43 
44 EAPI Elm_Widget_Item *
elm_colorselector_palette_selected_item_get(const Elm_Colorselector * obj)45 elm_colorselector_palette_selected_item_get(const Elm_Colorselector *obj)
46 {
47    return elm_obj_colorselector_palette_selected_item_get(obj);
48 }
49 
50 EAPI Elm_Widget_Item *
elm_colorselector_palette_color_add(Elm_Colorselector * obj,int r,int g,int b,int a)51 elm_colorselector_palette_color_add(Elm_Colorselector *obj, int r, int g, int b, int a)
52 {
53    return elm_obj_colorselector_palette_color_add(obj, r, g, b, a);
54 }
55 
56 EAPI void
elm_colorselector_palette_clear(Elm_Colorselector * obj)57 elm_colorselector_palette_clear(Elm_Colorselector *obj)
58 {
59    elm_obj_colorselector_palette_clear(obj);
60 }
61