summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/efl_animation_object_rotate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/evas/canvas/efl_animation_object_rotate.c')
-rw-r--r--src/lib/evas/canvas/efl_animation_object_rotate.c243
1 files changed, 0 insertions, 243 deletions
diff --git a/src/lib/evas/canvas/efl_animation_object_rotate.c b/src/lib/evas/canvas/efl_animation_object_rotate.c
deleted file mode 100644
index 65972d090d..0000000000
--- a/src/lib/evas/canvas/efl_animation_object_rotate.c
+++ /dev/null
@@ -1,243 +0,0 @@
-#include "efl_animation_object_rotate_private.h"
-
-EOLIAN static void
-_efl_animation_object_rotate_rotate_set(Eo *eo_obj,
- Efl_Animation_Object_Rotate_Data *pd,
- double from_degree,
- double to_degree,
- Efl_Canvas_Object *pivot,
- double cx,
- double cy)
-{
- pd->from.degree = from_degree;
- pd->to.degree = to_degree;
-
- pd->rel_pivot.obj = pivot;
- pd->rel_pivot.cx = cx;
- pd->rel_pivot.cy = cy;
-
- //Update absolute pivot based on relative pivot
- Evas_Coord x = 0;
- Evas_Coord y = 0;
- Evas_Coord w = 0;
- Evas_Coord h = 0;
-
- if (pivot)
- evas_object_geometry_get(pivot, &x, &y, &w, &h);
- else
- {
- Efl_Canvas_Object *target = efl_animation_object_target_get(eo_obj);
- if (target)
- evas_object_geometry_get(target, &x, &y, &w, &h);
- }
-
- pd->abs_pivot.cx = x + (w * cx);
- pd->abs_pivot.cy = y + (h * cy);
-
- pd->use_rel_pivot = EINA_TRUE;
-}
-
-EOLIAN static void
-_efl_animation_object_rotate_rotate_get(Eo *eo_obj,
- Efl_Animation_Object_Rotate_Data *pd,
- double *from_degree,
- double *to_degree,
- Efl_Canvas_Object **pivot,
- double *cx,
- double *cy)
-{
- //Update relative pivot based on absolute pivot
- if (!pd->use_rel_pivot)
- {
- Evas_Coord x = 0;
- Evas_Coord y = 0;
- Evas_Coord w = 0;
- Evas_Coord h = 0;
-
- Efl_Canvas_Object *target = efl_animation_object_target_get(eo_obj);
- if (target)
- evas_object_geometry_get(target, &x, &y, &w, &h);
-
- if (w != 0)
- pd->rel_pivot.cx = (double)(pd->abs_pivot.cx - x) / w;
- else
- pd->rel_pivot.cx = 0.0;
-
- if (h != 0)
- pd->rel_pivot.cy = (double)(pd->abs_pivot.cy - y) / h;
- else
- pd->rel_pivot.cy = 0.0;
- }
-
- if (from_degree)
- *from_degree = pd->from.degree;
-
- if (to_degree)
- *to_degree = pd->to.degree;
-
- if (pivot)
- *pivot = pd->rel_pivot.obj;
-
- if (cx)
- *cx = pd->rel_pivot.cx;
-
- if (cy)
- *cy = pd->rel_pivot.cy;
-}
-
-EOLIAN static void
-_efl_animation_object_rotate_rotate_absolute_set(Eo *eo_obj,
- Efl_Animation_Object_Rotate_Data *pd,
- double from_degree,
- double to_degree,
- Evas_Coord cx,
- Evas_Coord cy)
-{
- pd->from.degree = from_degree;
- pd->to.degree = to_degree;
-
- pd->abs_pivot.cx = cx;
- pd->abs_pivot.cy = cy;
-
- //Update relative pivot based on absolute pivot
- Evas_Coord x = 0;
- Evas_Coord y = 0;
- Evas_Coord w = 0;
- Evas_Coord h = 0;
-
- Efl_Canvas_Object *target = efl_animation_object_target_get(eo_obj);
- if (target)
- evas_object_geometry_get(target, &x, &y, &w, &h);
-
- pd->rel_pivot.obj = NULL;
-
- if (w != 0)
- pd->rel_pivot.cx = (double)(cx - x) / w;
- else
- pd->rel_pivot.cx = 0.0;
-
- if (h != 0)
- pd->rel_pivot.cy = (double)(cy - y) / h;
- else
- pd->rel_pivot.cy = 0.0;
-
- pd->use_rel_pivot = EINA_FALSE;
-}
-
-EOLIAN static void
-_efl_animation_object_rotate_rotate_absolute_get(Eo *eo_obj,
- Efl_Animation_Object_Rotate_Data *pd,
- double *from_degree,
- double *to_degree,
- Evas_Coord *cx,
- Evas_Coord *cy)
-{
- //Update absolute pivot based on relative pivot
- if (pd->use_rel_pivot)
- {
- Evas_Coord x = 0;
- Evas_Coord y = 0;
- Evas_Coord w = 0;
- Evas_Coord h = 0;
-
- if (pd->rel_pivot.obj)
- evas_object_geometry_get(pd->rel_pivot.obj, &x, &y, &w, &h);
- else
- {
- Efl_Canvas_Object *target
- = efl_animation_object_target_get(eo_obj);
- if (target)
- evas_object_geometry_get(target, &x, &y, &w, &h);
- }
-
- pd->abs_pivot.cx = x + (w * pd->rel_pivot.cx);
- pd->abs_pivot.cy = y + (h * pd->rel_pivot.cy);
- }
-
- if (from_degree)
- *from_degree = pd->from.degree;
-
- if (to_degree)
- *to_degree = pd->to.degree;
-
- if (cx)
- *cx = pd->abs_pivot.cx;
-
- if (cy)
- *cy = pd->abs_pivot.cy;
-}
-
-static void
-_progress_set(Eo *eo_obj, double progress)
-{
- EFL_ANIMATION_OBJECT_ROTATE_DATA_GET(eo_obj, pd);
-
- Efl_Canvas_Object *target = efl_animation_object_target_get(eo_obj);
- if (!target) return;
-
- double degree =
- (pd->from.degree * (1.0 - progress)) + (pd->to.degree * progress);
-
- if (pd->use_rel_pivot)
- {
- efl_gfx_map_rotate(target,
- degree,
- pd->rel_pivot.obj,
- pd->rel_pivot.cx, pd->rel_pivot.cy);
- }
- else
- {
- efl_gfx_map_rotate_absolute(target,
- degree,
- pd->abs_pivot.cx, pd->abs_pivot.cy);
- }
-}
-
-EOLIAN static void
-_efl_animation_object_rotate_efl_animation_object_progress_set(Eo *eo_obj,
- Efl_Animation_Object_Rotate_Data *pd EINA_UNUSED,
- double progress)
-{
- if ((progress < 0.0) || (progress > 1.0)) return;
-
- _progress_set(eo_obj, progress);
-
- efl_animation_object_progress_set(efl_super(eo_obj, MY_CLASS), progress);
-}
-
-EOLIAN static Efl_Object *
-_efl_animation_object_rotate_efl_object_constructor(Eo *eo_obj,
- Efl_Animation_Object_Rotate_Data *pd)
-{
- eo_obj = efl_constructor(efl_super(eo_obj, MY_CLASS));
-
- pd->from.degree = 0.0;
- pd->to.degree = 0.0;
-
- pd->rel_pivot.obj = NULL;
- pd->rel_pivot.cx = 0.5;
- pd->rel_pivot.cy = 0.5;
-
- pd->abs_pivot.cx = 0;
- pd->abs_pivot.cy = 0;
-
- pd->use_rel_pivot = EINA_TRUE;
-
- return eo_obj;
-}
-
-/* Internal EO APIs */
-
-EOAPI EFL_VOID_FUNC_BODYV(efl_animation_object_rotate_set, EFL_FUNC_CALL(from_degree, to_degree, pivot, cx, cy), double from_degree, double to_degree, Efl_Canvas_Object *pivot, double cx, double cy);
-EOAPI EFL_VOID_FUNC_BODYV_CONST(efl_animation_object_rotate_get, EFL_FUNC_CALL(from_degree, to_degree, pivot, cx, cy), double *from_degree, double *to_degree, Efl_Canvas_Object **pivot, double *cx, double *cy);
-
-EOAPI EFL_VOID_FUNC_BODYV(efl_animation_object_rotate_absolute_set, EFL_FUNC_CALL(from_degree, to_degree, cx, cy), double from_degree, double to_degree, int cx, int cy);
-EOAPI EFL_VOID_FUNC_BODYV_CONST(efl_animation_object_rotate_absolute_get, EFL_FUNC_CALL(from_degree, to_degree, cx, cy), double *from_degree, double *to_degree, int *cx, int *cy);
-
-#define EFL_ANIMATION_OBJECT_ROTATE_EXTRA_OPS \
- EFL_OBJECT_OP_FUNC(efl_animation_object_rotate_set, _efl_animation_object_rotate_rotate_set), \
- EFL_OBJECT_OP_FUNC(efl_animation_object_rotate_get, _efl_animation_object_rotate_rotate_get), \
- EFL_OBJECT_OP_FUNC(efl_animation_object_rotate_absolute_set, _efl_animation_object_rotate_rotate_absolute_set), \
- EFL_OBJECT_OP_FUNC(efl_animation_object_rotate_absolute_get, _efl_animation_object_rotate_rotate_absolute_get)
-
-#include "efl_animation_object_rotate.eo.c"