diff options
author | Dave Andreoli <dave@gurumeditation.it> | 2016-01-23 14:33:01 +0100 |
---|---|---|
committer | Dave Andreoli <dave@gurumeditation.it> | 2016-01-23 14:33:01 +0100 |
commit | 86aa8c51383999a424d58bdc322fe231c53e39ea (patch) | |
tree | adb771ac653f34f25289cb94a2dbaecd1122218a /include | |
parent | 9809eb2739b64b11f0072a353308106dd5a4ece2 (diff) |
New 1.17 API: elm.Ctxpopup "geometry,update" smart cb
Diffstat (limited to '')
-rw-r--r-- | include/efl.evas.pxd | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/include/efl.evas.pxd b/include/efl.evas.pxd index 6eac7ba..d6f7350 100644 --- a/include/efl.evas.pxd +++ b/include/efl.evas.pxd | |||
@@ -347,11 +347,21 @@ cdef extern from "Evas.h": | |||
347 | int x | 347 | int x |
348 | int y | 348 | int y |
349 | 349 | ||
350 | ctypedef struct Evas_Coord_Point: # Evas_Coord is int now | 350 | ctypedef struct Evas_Coord_Point: |
351 | Evas_Coord x | 351 | Evas_Coord x |
352 | Evas_Coord y | 352 | Evas_Coord y |
353 | 353 | ||
354 | ctypedef struct Evas_Coord_Precision_Point: # Evas_Coord is int now | 354 | ctypedef struct Evas_Coord_Size: |
355 | Evas_Coord w | ||
356 | Evas_Coord h | ||
357 | |||
358 | ctypedef struct Evas_Coord_Rectangle: | ||
359 | Evas_Coord x | ||
360 | Evas_Coord y | ||
361 | Evas_Coord w | ||
362 | Evas_Coord h | ||
363 | |||
364 | ctypedef struct Evas_Coord_Precision_Point: | ||
355 | Evas_Coord x | 365 | Evas_Coord x |
356 | Evas_Coord y | 366 | Evas_Coord y |
357 | double xsub | 367 | double xsub |