diff options
author | davemds <dave@gurumeditation.it> | 2013-08-19 20:49:18 +0200 |
---|---|---|
committer | davemds <dave@gurumeditation.it> | 2013-08-19 20:49:18 +0200 |
commit | 6873820e957c38d0749e772b38767e992d7eb418 (patch) | |
tree | c060ab029da5e148a2d463f895051171008b5af5 /include/efl.edje.pxd | |
parent | 7fefb7beef6b12fb0dbb6b1bb16d38b1af858909 (diff) |
PythonEFL: implemented some missed apis in edje
Diffstat (limited to 'include/efl.edje.pxd')
-rw-r--r-- | include/efl.edje.pxd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/efl.edje.pxd b/include/efl.edje.pxd index 242c396..9c170fd 100644 --- a/include/efl.edje.pxd +++ b/include/efl.edje.pxd | |||
@@ -189,6 +189,12 @@ cdef extern from "Edje.h": | |||
189 | void edje_text_class_del(char *text_class) | 189 | void edje_text_class_del(char *text_class) |
190 | Eina_List * edje_text_class_list() | 190 | Eina_List * edje_text_class_list() |
191 | 191 | ||
192 | void edje_scale_set(double scale) | ||
193 | double edje_scale_get() | ||
194 | |||
195 | void edje_password_show_last_set(Eina_Bool password_show_last) | ||
196 | void edje_password_show_last_timeout_set(double password_show_last_timeout) | ||
197 | |||
192 | void edje_extern_object_min_size_set(Evas_Object *obj, Evas_Coord minw, Evas_Coord minh) | 198 | void edje_extern_object_min_size_set(Evas_Object *obj, Evas_Coord minw, Evas_Coord minh) |
193 | void edje_extern_object_max_size_set(Evas_Object *obj, Evas_Coord maxw, Evas_Coord maxh) | 199 | void edje_extern_object_max_size_set(Evas_Object *obj, Evas_Coord maxw, Evas_Coord maxh) |
194 | void edje_extern_object_aspect_set(Evas_Object *obj, Edje_Aspect_Control aspect, Evas_Coord aw, Evas_Coord ah) | 200 | void edje_extern_object_aspect_set(Evas_Object *obj, Edje_Aspect_Control aspect, Evas_Coord aw, Evas_Coord ah) |
@@ -213,6 +219,16 @@ cdef extern from "Edje.h": | |||
213 | int edje_object_freeze(Evas_Object *obj) | 219 | int edje_object_freeze(Evas_Object *obj) |
214 | int edje_object_thaw(Evas_Object *obj) | 220 | int edje_object_thaw(Evas_Object *obj) |
215 | 221 | ||
222 | Eina_Bool edje_object_preload(Evas_Object *obj, Eina_Bool cancel) | ||
223 | Eina_Bool edje_object_scale_set(Evas_Object *obj, double scale) | ||
224 | double edje_object_scale_get(Evas_Object *obj) | ||
225 | |||
226 | void edje_object_mirrored_set(Evas_Object *obj, Eina_Bool rtl) | ||
227 | Eina_Bool edje_object_mirrored_get(Evas_Object *obj) | ||
228 | |||
229 | void edje_object_update_hints_set(Evas_Object *obj, Eina_Bool update) | ||
230 | Eina_Bool edje_object_update_hints_get(Evas_Object *obj) | ||
231 | |||
216 | void edje_object_color_class_set(Evas_Object *obj, char *color_class, int r, int g, int b, int a, int r2, int g2, int b2, int a2, int r3, int g3, int b3, int a3) | 232 | void edje_object_color_class_set(Evas_Object *obj, char *color_class, int r, int g, int b, int a, int r2, int g2, int b2, int a2, int r3, int g3, int b3, int a3) |
217 | void edje_object_color_class_get(Evas_Object *obj, char *color_class, int *r, int *g, int *b, int *a, int *r2, int *g2, int *b2, int *a2, int *r3, int *g3, int *b3, int *a3) | 233 | void edje_object_color_class_get(Evas_Object *obj, char *color_class, int *r, int *g, int *b, int *a, int *r2, int *g2, int *b2, int *a2, int *r3, int *g3, int *b3, int *a3) |
218 | void edje_object_color_class_del(Evas_Object *obj, char *color_class) | 234 | void edje_object_color_class_del(Evas_Object *obj, char *color_class) |
@@ -222,6 +238,7 @@ cdef extern from "Edje.h": | |||
222 | void edje_object_size_max_get(Evas_Object *obj, Evas_Coord *maxw, Evas_Coord *maxh) | 238 | void edje_object_size_max_get(Evas_Object *obj, Evas_Coord *maxw, Evas_Coord *maxh) |
223 | void edje_object_calc_force(Evas_Object *obj) | 239 | void edje_object_calc_force(Evas_Object *obj) |
224 | void edje_object_size_min_calc(Evas_Object *obj, Evas_Coord *minw, Evas_Coord *minh) | 240 | void edje_object_size_min_calc(Evas_Object *obj, Evas_Coord *minw, Evas_Coord *minh) |
241 | void edje_object_size_min_restricted_calc(Evas_Object *obj, Evas_Coord *minw, Evas_Coord *minh, Evas_Coord restrictedw, Evas_Coord restrictedh) | ||
225 | Eina_Bool edje_object_parts_extends_calc(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) | 242 | Eina_Bool edje_object_parts_extends_calc(Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) |
226 | 243 | ||
227 | int edje_object_part_exists(Evas_Object *obj, char *part) | 244 | int edje_object_part_exists(Evas_Object *obj, char *part) |