From eaeaf8831c139880a5e179cdbab8873320a62476 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Wed, 28 Jun 2017 14:42:28 -0700 Subject: [PATCH] evas: expose evas_map_coords_get. --- src/lib/evas/Evas_Legacy.h | 14 ++++++++++++++ src/lib/evas/canvas/evas_map.c | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h index c07cecd058..72eaa6adb9 100644 --- a/src/lib/evas/Evas_Legacy.h +++ b/src/lib/evas/Evas_Legacy.h @@ -7533,6 +7533,20 @@ EAPI void evas_map_free(Evas_Map *m); */ EAPI int evas_map_count_get(const Evas_Map *m) EINA_CONST; +/** + * Apply a map transformation on given coordinate + * + * @param m map to use to transform x and y + * @param x point x source coordinate + * @param y point y source coordinate + * @param mx point x after transformation by m + * @param my point y after transformation by m + * @param grab + * @return #EINA_TRUE on success interpolation, @EINA_FALSE otherwise + */ +EAPI Eina_Bool evas_map_coords_get(const Evas_Map *m, double x, double y, + double *mx, double *my, int grab); + /** * Change the map point's coordinate. * diff --git a/src/lib/evas/canvas/evas_map.c b/src/lib/evas/canvas/evas_map.c index 6e81c771eb..0283762e2d 100644 --- a/src/lib/evas/canvas/evas_map.c +++ b/src/lib/evas/canvas/evas_map.c @@ -239,7 +239,7 @@ _evas_map_free(Evas_Object *eo_obj, Evas_Map *m) free(m); } -Eina_Bool +EAPI Eina_Bool evas_map_coords_get(const Evas_Map *m, double x, double y, double *mx, double *my, int grab) {