Elm Glayer: Changed start-time of zoom-momentum
[framework/uifw/elementary.git] / src / lib / elm_gesture_layer.c
1 #include <Elementary.h>
2 #include "elm_priv.h"
3 /** @defgroup Elm_Gesture_Layer Gesture Layer */
4
5 /* Some defaults */
6 #define ELM_MOUSE_DEVICE 0
7 /* ELM_GESTURE_NEGATIVE_ANGLE - magic number says we didn't compute this yet */
8 #define ELM_GESTURE_NEGATIVE_ANGLE (-1.0) /* Magic number */
9 #define ELM_GESTURE_MOMENTUM_DELAY 25
10 #define ELM_GESTURE_MOMENTUM_TIMEOUT 50
11 #define ELM_GESTURE_MULTI_TIMEOUT 50
12 #define ELM_GESTURE_MINIMUM_MOMENTUM 0.001
13
14 /* Some Trigo values */
15 #define RAD_90DEG  M_PI_2
16 #define RAD_180DEG M_PI
17 #define RAD_270DEG (M_PI_2 * 3)
18 #define RAD_360DEG (M_PI * 2)
19 /* #define DEBUG_GESTURE_LAYER 1 */
20
21 #define RAD2DEG(x) ((x) * 57.295779513)
22 #define DEG2RAD(x) ((x) / 57.295779513)
23
24 static void *
25 _glayer_bufdup(void *buf, size_t size)
26 {
27    void *p;
28    p = malloc(size);
29    memcpy(p, buf, size);
30    return p;
31 }
32 #define COPY_EVENT_INFO(EV) _glayer_bufdup(EV, sizeof(*EV))
33
34
35 #define SET_TEST_BIT(P) do { \
36    P->test = P->fn[ELM_GESTURE_STATE_START].cb || P->fn[ELM_GESTURE_STATE_MOVE].cb || P->fn[ELM_GESTURE_STATE_END].cb || P->fn[ELM_GESTURE_STATE_ABORT].cb; \
37 } while (0)
38
39 #define IS_TESTED(T) ((wd->gesture[T]) ? wd->gesture[T]->test : EINA_FALSE)
40
41 /**
42  * @internal
43  *
44  * @struct _Func_Data
45  * Struct holds callback information.
46  *
47  * @ingroup Elm_Gesture_Layer
48  */
49 struct _Func_Data
50 {
51    void *user_data; /**< Holds user data to CB (like sd) */
52    Elm_Gesture_Event_Cb cb;
53 };
54
55 /**
56  * @internal
57  *
58  * @typedef Func_Data
59  * type for callback information
60  *
61  * @ingroup Elm_Gesture_Layer
62  */
63 typedef struct _Func_Data Func_Data;
64
65 /**
66  * @internal
67  *
68  * @struct _Gesture_Info
69  * Struct holds gesture info
70  *
71  * @ingroup Elm_Gesture_Layer
72  */
73 struct _Gesture_Info
74 {
75   Evas_Object *obj;
76   void *data; /**< Holds gesture intemidiate processing data */
77   Func_Data fn[ELM_GESTURE_STATE_ABORT + 1]; /**< Callback info for states */
78   Elm_Gesture_Types g_type;  /**< gesture type */
79   Elm_Gesture_State state;  /**< gesture state */
80   void *info;                        /**< Data for the state callback */
81   Eina_Bool test; /**< if true this gesture should be tested on input */
82 };
83
84 /**
85  * @internal
86  *
87  * @typedef Gesture_Info
88  * Type for _Gesture_Info
89  *
90  * @ingroup Elm_Gesture_Layer
91  */
92 typedef struct _Gesture_Info Gesture_Info;
93
94 /**
95  * @internal
96  *
97  * @struct _Event_History
98  * Struct holds event history.
99  * These events are repeated if no gesture found.
100  *
101  * @ingroup Elm_Gesture_Layer
102  */
103 struct _Event_History
104 {
105    EINA_INLIST;
106    void *event;
107    Evas_Callback_Type event_type;
108 };
109
110 /**
111  * @internal
112  *
113  * @typedef Event_History
114  * Type for _Event_History
115  *
116  * @ingroup Elm_Gesture_Layer
117  */
118 typedef struct _Event_History Event_History;
119
120 /**
121  * @internal
122  *
123  * @struct _Pointer_Event
124  * Struct holds pointer-event info
125  * This is a generic pointer event structure
126  *
127  * @ingroup Elm_Gesture_Layer
128  */
129 struct _Pointer_Event
130 {
131    Evas_Coord x, y;
132    unsigned int timestamp;
133    int device;
134    Evas_Callback_Type event_type;
135 };
136
137 /**
138  * @internal
139  *
140  * @typedef Pointer_Event
141  * Type for generic pointer event structure
142  *
143  * @ingroup Elm_Gesture_Layer
144  */
145 typedef struct _Pointer_Event Pointer_Event;
146
147 /* All *Type structs hold result for the user in 'info' field
148  * The rest is gesture processing intermediate data.
149  * NOTE: info field must be FIRST in the struct.
150  * This is used when reporting ABORT in event_history_clear() */
151 struct _Taps_Type
152 {
153    Elm_Gesture_Taps_Info info;
154    unsigned int sum_x;
155    unsigned int sum_y;
156    unsigned int n_taps_needed;
157    unsigned int n_taps;
158    Eina_List *l;
159 };
160 typedef struct _Taps_Type Taps_Type;
161
162 struct _Long_Tap_Type
163 {
164    Elm_Gesture_Taps_Info info;
165    Evas_Coord center_x;
166    Evas_Coord center_y;
167    unsigned int max_touched;
168    Ecore_Timer *timeout; /* When this expires, long tap STARTed */
169    Eina_List *touched;
170 };
171 typedef struct _Long_Tap_Type Long_Tap_Type;
172
173 struct _Momentum_Type
174 {  /* Fields used by _line_test() */
175    Elm_Gesture_Momentum_Info info;
176    Evas_Coord_Point line_st;
177    Evas_Coord_Point line_end;
178    unsigned int t_st_x;  /* Time start on X */
179    unsigned int t_st_y;  /* Time start on Y */
180    unsigned int t_end;   /* Time end        */
181    unsigned int t_up; /* Recent up event time */
182    int xdir, ydir;
183 };
184 typedef struct _Momentum_Type Momentum_Type;
185
186 struct _Line_Data
187 {
188    Evas_Coord_Point line_st;
189    Evas_Coord_Point line_end;
190    Evas_Coord line_length;
191    unsigned int t_st;  /* Time start */
192    unsigned int t_end; /* Time end   */
193    int device;
194    double line_angle;  /* Current angle of line */
195 };
196 typedef struct _Line_Data Line_Data;
197
198 struct _Line_Type
199 {  /* Fields used by _line_test() */
200    Elm_Gesture_Line_Info info;
201    Eina_List *list; /* List of Line_Data */
202 };
203 typedef struct _Line_Type Line_Type;
204
205 struct _Zoom_Type
206 {  /* Fields used by _zoom_test() */
207    Elm_Gesture_Zoom_Info info;
208    Pointer_Event zoom_st;
209    Pointer_Event zoom_mv;
210    Pointer_Event zoom_st1;
211    Pointer_Event zoom_mv1;
212    Evas_Event_Mouse_Wheel *zoom_wheel;
213    Evas_Coord zoom_base;  /* Holds gap between fingers on zoom-start  */
214    Evas_Coord zoom_distance_tolerance;
215    unsigned int m_st_tm;      /* momentum start time */
216    unsigned int m_prev_tm;    /* momentum prev time  */
217    int dir;   /* Direction: 1=zoom-in, (-1)=zoom-out */
218    double m_base; /* zoom value when momentum starts */
219    double next_step;
220 };
221 typedef struct _Zoom_Type Zoom_Type;
222
223 struct _Rotate_Type
224 {  /* Fields used by _rotation_test() */
225    Elm_Gesture_Rotate_Info info;
226    Pointer_Event rotate_st;
227    Pointer_Event rotate_mv;
228    Pointer_Event rotate_st1;
229    Pointer_Event rotate_mv1;
230    unsigned int prev_momentum_tm; /* timestamp of prev_momentum */
231    double prev_momentum;   /* Snapshot of momentum 0.01 sec ago */
232    double accum_momentum;
233    double rotate_angular_tolerance;
234    double next_step;
235 };
236 typedef struct _Rotate_Type Rotate_Type;
237
238 struct _Widget_Data
239 {
240    Evas_Object *target;  /* Target Widget */
241    Event_History *event_history_list;
242
243    int line_min_length;
244    Evas_Coord zoom_distance_tolerance;
245    Evas_Coord line_distance_tolerance;
246    double line_angular_tolerance;
247    double zoom_wheel_factor; /* mouse wheel zoom steps */
248    double zoom_finger_factor; /* used for zoom factor */
249    double rotate_angular_tolerance;
250    unsigned int flick_time_limit_ms;
251    double long_tap_start_timeout;
252    Eina_Bool glayer_continues_enable;
253
254    double zoom_step;
255    double rotate_step;
256
257    Gesture_Info *gesture[ELM_GESTURE_LAST];
258    Ecore_Timer *dbl_timeout; /* When this expires, dbl click/taps ABORTed  */
259    Eina_List *pending; /* List of devices need to refeed *UP event */
260    Eina_List *touched;  /* Information  of touched devices   */
261
262    Eina_Bool repeat_events : 1;
263 };
264 typedef struct _Widget_Data Widget_Data;
265
266 static const char *widtype = NULL;
267 static void _del_hook(Evas_Object *obj);
268
269 static Eina_Bool _event_history_clear(Evas_Object *obj);
270 static void _reset_states(Widget_Data *wd);
271 static void _key_down_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info);
272 static void _key_up_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info);
273 static void _zoom_with_wheel_test(Evas_Object *obj, void *event_info, Evas_Callback_Type event_type, Elm_Gesture_Types g_type);
274 static void _mouse_wheel(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info);
275 static void _mouse_down(void *data, Evas *e, Evas_Object *obj, void *event_info);
276 static void _mouse_move(void *data, Evas *e, Evas_Object *obj, void *event_info);
277 static void _mouse_up(void *data, Evas *e, Evas_Object *obj, void *event_info);
278
279 static void _multi_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info);
280 static void _multi_move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info);
281 static void _multi_up(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info);
282
283 /* START - Functions to manage touched-device list */
284 /**
285  * @internal
286  * This function is used to find if device is touched
287  *
288  * @ingroup Elm_Gesture_Layer
289  */
290 static int
291 compare_device(const void *data1, const void *data2)
292 {  /* Compare the two device numbers */
293    return (((Pointer_Event *) data1)->device -((Pointer_Event *) data2)->device);
294 }
295
296 /**
297  * @internal
298  *
299  * Remove Pointer Event from touched device list
300  * @param list Pointer to touched device list.
301  * @param Pointer_Event Pointer to PE.
302  *
303  * @ingroup Elm_Gesture_Layer
304  */
305 static Eina_List *
306 _remove_touched_device(Eina_List *list, Pointer_Event *pe)
307 {
308    Eina_List *lst = NULL;
309    Pointer_Event *p = eina_list_search_unsorted(list, compare_device, pe);
310    if (p)
311      {
312         lst = eina_list_remove(list, p);
313         free(p);
314         return lst;
315      }
316
317    return list;
318 }
319
320 /**
321  * @internal
322  *
323  * Recoed Pointer Event in touched device list
324  * Note: This fuction allocates memory for PE event
325  * This memory is released in _remove_touched_device()
326  * @param list Pointer to touched device list.
327  * @param Pointer_Event Pointer to PE.
328  *
329  * @ingroup Elm_Gesture_Layer
330  */
331 static Eina_List *
332 _add_touched_device(Eina_List *list, Pointer_Event *pe)
333 {
334    Pointer_Event *p = eina_list_search_unsorted(list, compare_device, pe);
335    if (p)
336      {  /* We like to track device touch-position, overwrite info */
337         memcpy(p, pe, sizeof(Pointer_Event));
338         return list;
339      }
340
341    if ((pe->event_type == EVAS_CALLBACK_MOUSE_DOWN) ||
342          (pe->event_type == EVAS_CALLBACK_MULTI_DOWN))
343      {  /* Add touched device on DOWN event only */
344         p = malloc(sizeof(Pointer_Event));
345         /* Freed in _remove_touched_device()    */
346         memcpy(p, pe, sizeof(Pointer_Event));
347         return eina_list_append(list, p);
348      }
349
350    return list;
351 }
352 /* END   - Functions to manage touched-device list */
353
354 /**
355  * @internal
356  *
357  * Get event flag
358  * @param event_info pointer to event.
359  *
360  * @ingroup Elm_Gesture_Layer
361  */
362 static Evas_Event_Flags
363 _get_event_flag(void *event_info, Evas_Callback_Type event_type)
364 {
365    switch(event_type)
366      {
367       case EVAS_CALLBACK_MOUSE_IN:
368          return ((Evas_Event_Mouse_In *) event_info)->event_flags;
369       case EVAS_CALLBACK_MOUSE_OUT:
370          return ((Evas_Event_Mouse_Out *) event_info)->event_flags;
371       case EVAS_CALLBACK_MOUSE_DOWN:
372          return ((Evas_Event_Mouse_Down *) event_info)->event_flags;
373       case EVAS_CALLBACK_MOUSE_MOVE:
374          return ((Evas_Event_Mouse_Move *) event_info)->event_flags;
375       case EVAS_CALLBACK_MOUSE_UP:
376          return ((Evas_Event_Mouse_Up *) event_info)->event_flags;
377       case EVAS_CALLBACK_MOUSE_WHEEL:
378          return ((Evas_Event_Mouse_Wheel *) event_info)->event_flags;
379       case EVAS_CALLBACK_MULTI_DOWN:
380          return ((Evas_Event_Multi_Down *) event_info)->event_flags;
381       case EVAS_CALLBACK_MULTI_MOVE:
382          return ((Evas_Event_Multi_Move *) event_info)->event_flags;
383       case EVAS_CALLBACK_MULTI_UP:
384          return ((Evas_Event_Multi_Up *) event_info)->event_flags;
385       case EVAS_CALLBACK_KEY_DOWN:
386          return ((Evas_Event_Key_Down *) event_info)->event_flags;
387       case EVAS_CALLBACK_KEY_UP:
388          return ((Evas_Event_Key_Up *) event_info)->event_flags;
389       default:
390          return EVAS_EVENT_FLAG_NONE;
391      }
392 }
393
394 /**
395  * @internal
396  *
397  * Sets event flag to value returned from user callback
398  * @param wd Widget Data
399  * @param event_info pointer to event.
400  * @param event_type what type was ev (mouse down, etc...)
401  * @param ev_flags event flags
402  *
403  * @ingroup Elm_Gesture_Layer
404  */
405 static void
406 consume_event(Widget_Data *wd, void *event_info,
407       Evas_Callback_Type event_type, Evas_Event_Flags ev_flags)
408 {  /* Mark EVAS_EVENT_FLAG_ON_HOLD on events that are used by gesture layer */
409    /* ev_flags != EVAS_EVENT_FLAG_NONE means target used event and g-layer  */
410    /* should not refeed this event.                                         */
411    if(!event_info)
412      return;  /* This happens when restarting gestures  */
413
414    if ((ev_flags) || (!wd->repeat_events))
415      {
416         switch(event_type)
417           {
418            case EVAS_CALLBACK_MOUSE_DOWN:
419               ((Evas_Event_Mouse_Down *) event_info)->event_flags |= ev_flags;
420               break;
421            case EVAS_CALLBACK_MOUSE_MOVE:
422               ((Evas_Event_Mouse_Move *) event_info)->event_flags |= ev_flags;
423               break;
424            case EVAS_CALLBACK_MOUSE_UP:
425               ((Evas_Event_Mouse_Up *) event_info)->event_flags |= ev_flags;
426               break;
427            case EVAS_CALLBACK_MOUSE_WHEEL:
428               ((Evas_Event_Mouse_Wheel *) event_info)->event_flags |= ev_flags;
429               break;
430            case EVAS_CALLBACK_MULTI_DOWN:
431               ((Evas_Event_Multi_Down *) event_info)->event_flags |= ev_flags;
432               break;
433            case EVAS_CALLBACK_MULTI_MOVE:
434               ((Evas_Event_Multi_Move *) event_info)->event_flags |= ev_flags;
435               break;
436            case EVAS_CALLBACK_MULTI_UP:
437               ((Evas_Event_Multi_Up *) event_info)->event_flags |= ev_flags;
438               break;
439            case EVAS_CALLBACK_KEY_DOWN:
440               ((Evas_Event_Key_Down *) event_info)->event_flags |= ev_flags;
441               break;
442            case EVAS_CALLBACK_KEY_UP:
443               ((Evas_Event_Key_Up *) event_info)->event_flags |= ev_flags;
444               break;
445            default:
446               return;
447           }
448      }
449 }
450
451 /**
452  * @internal
453  *
454  * Report current state of a gesture by calling user callback.
455  * @param gesture what gesture state we report.
456  * @param info inforamtion for user callback
457  *
458  * @ingroup Elm_Gesture_Layer
459  */
460 static Evas_Event_Flags
461 _report_state(Gesture_Info *gesture, void *info)
462 {  /* We report current state (START, MOVE, END, ABORT), once */
463 #if defined(DEBUG_GESTURE_LAYER)
464    printf("%s reporting gesture=<%d> state=<%d>\n" , __func__, gesture->g_type,
465          gesture->state);
466 #endif
467    if ((gesture->state != ELM_GESTURE_STATE_UNDEFINED) &&
468          (gesture->fn[gesture->state].cb))
469      {  /* Fill state-info struct and send ptr to user callback */
470         return gesture->fn[gesture->state].cb(
471               gesture->fn[gesture->state].user_data, info);
472      }
473
474    return EVAS_EVENT_FLAG_NONE;
475 }
476
477 /**
478  * @internal
479  *
480  * Update state for a given gesture.
481  * We may update gesture state to:
482  * UNDEFINED - current input did not start gesure yet.
483  * START - gesture started according to input.
484  * MOVE - gusture in progress.
485  * END - gesture completed according to input.
486  * ABORT - input does not matches gesure.
487  * note that we may move from UNDEFINED to ABORT
488  * because we may detect that gesture will not START
489  * with a given input.
490  *
491  * @param g given gesture to change state.
492  * @param s gesure new state.
493  * @param info buffer to be sent to user callback on report_state.
494  * @param force makes report_state to report the new-state even
495  * if its same as current state. Works for MOVE - gesture in progress.
496  *
497  * @ingroup Elm_Gesture_Layer
498  */
499 static Evas_Event_Flags
500 _set_state(Gesture_Info *g, Elm_Gesture_State s,
501       void *info, Eina_Bool force)
502 {
503    Elm_Gesture_State old_state;
504    if ((g->state == s) && (!force))
505      return EVAS_EVENT_FLAG_NONE;
506
507    old_state = g->state;
508
509    g->state = s;
510    g->info = info;  /* Information for user callback */
511    if ((g->state == ELM_GESTURE_STATE_ABORT) ||
512          (g->state == ELM_GESTURE_STATE_END))
513      g->test = EINA_FALSE;
514
515    if ((g->state != ELM_GESTURE_STATE_UNDEFINED) &&
516          (!((old_state == ELM_GESTURE_STATE_UNDEFINED) &&
517             (s == ELM_GESTURE_STATE_ABORT))))
518      return _report_state(g, g->info);
519
520    return EVAS_EVENT_FLAG_NONE;
521 }
522
523 /**
524  * @internal
525  *
526  * This resets all gesture states and sets test-bit.
527  * this is used for restarting gestures to listen to input.
528  * happens after we complete a gesture or no gesture was detected.
529  * @param wd Widget data of the gesture-layer object.
530  *
531  * @ingroup Elm_Gesture_Layer
532  */
533 static void
534 _reset_states(Widget_Data *wd)
535 {
536    int i;
537    Gesture_Info *p;
538    for (i = ELM_GESTURE_FIRST; i < ELM_GESTURE_LAST; i++)
539      {
540         p = wd->gesture[i];
541         if (p)
542           {
543              _set_state(p, ELM_GESTURE_STATE_UNDEFINED, NULL, EINA_FALSE);
544              SET_TEST_BIT(p);
545           }
546      }
547 }
548
549 /**
550  * @internal
551  *
552  * if gesture was NOT detected AND we only have gestures in ABORT state
553  * we clear history immediately to be ready for input.
554  *
555  * @param obj The gesture-layer object.
556  * @return TRUE on event history_clear
557  *
558  * @ingroup Elm_Gesture_Layer
559  */
560 static Eina_Bool
561 _clear_if_finished(Evas_Object *obj)
562 {
563    Widget_Data *wd = elm_widget_data_get(obj);
564    if (!wd) return EINA_FALSE;
565    int i;
566
567    /* Clear history if all we have aborted gestures */
568    Eina_Bool reset_s = EINA_TRUE, all_undefined = EINA_TRUE;
569    for (i = ELM_GESTURE_FIRST; i < ELM_GESTURE_LAST; i++)
570      {  /* If no gesture started and all we have aborted gestures, reset all */
571         Gesture_Info *p = wd->gesture[i];
572         if ((p) && (p->state != ELM_GESTURE_STATE_UNDEFINED))
573           {
574              if ((p->state == ELM_GESTURE_STATE_START) ||
575                    (p->state == ELM_GESTURE_STATE_MOVE))
576                reset_s = EINA_FALSE;
577
578              all_undefined = EINA_FALSE;
579           }
580      }
581
582    if (reset_s && (!all_undefined))
583      return _event_history_clear(obj);
584
585    return EINA_FALSE;
586 }
587
588 static Eina_Bool
589 _inside(Evas_Coord x1, Evas_Coord y1, Evas_Coord x2, Evas_Coord y2)
590 {
591    int w = elm_finger_size_get() >> 1; /* Finger size devided by 2 */
592    if (x1 < (x2 - w))
593      return EINA_FALSE;
594
595    if (x1 > (x2 + w))
596      return EINA_FALSE;
597
598    if (y1 < (y2 - w))
599      return EINA_FALSE;
600
601    if (y1 > (y2 + w))
602      return EINA_FALSE;
603
604    return EINA_TRUE;
605 }
606
607 /* All *test_reset() funcs are called to clear
608  * gesture intermediate data.
609  * This happens when we need to reset our tests.
610  * for example when gesture is detected or all ABORTed. */
611 static void
612 _tap_gestures_test_reset(Gesture_Info *gesture)
613 {
614    if (!gesture)
615      return;
616
617    Widget_Data *wd = elm_widget_data_get(gesture->obj);
618    wd->dbl_timeout = NULL;
619    Eina_List *data;
620    Pointer_Event *pe;
621
622    if (!gesture->data)
623      return;
624
625    EINA_LIST_FREE(((Taps_Type *) gesture->data)->l, data)
626       EINA_LIST_FREE(data, pe)
627          free(pe);
628
629   memset(gesture->data, 0, sizeof(Taps_Type));
630 }
631
632 /* All *test_reset() funcs are called to clear
633  * gesture intermediate data.
634  * This happens when we need to reset our tests.
635  * for example when gesture is detected or all ABORTed. */
636 static void
637 _n_long_tap_test_reset(Gesture_Info *gesture)
638 {
639    if (!gesture)
640      return;
641
642    if (!gesture->data)
643      return;
644
645    Long_Tap_Type *st = gesture->data;
646    Eina_List *l;
647    Pointer_Event *p;
648    EINA_LIST_FOREACH(st->touched, l, p)
649       free(p);
650
651    eina_list_free(st->touched);
652    if (st->timeout) ecore_timer_del(st->timeout);
653    memset(gesture->data, 0, sizeof(Long_Tap_Type));
654 }
655
656 static void
657 _momentum_test_reset(Gesture_Info *gesture)
658 {
659    if (!gesture)
660      return;
661
662    if (!gesture->data)
663      return;
664
665    memset(gesture->data, 0, sizeof(Momentum_Type));
666 }
667
668 static void
669 _line_data_reset(Line_Data *st)
670 {
671    if (!st)
672      return;
673
674    memset(st, 0, sizeof(Line_Data));
675    st->line_angle = ELM_GESTURE_NEGATIVE_ANGLE;
676 }
677
678 static void
679 _line_test_reset(Gesture_Info *gesture)
680 {
681    if (!gesture)
682      return;
683
684    if (!gesture->data)
685      return;
686
687    Line_Type *st = gesture->data;
688    Eina_List *list = st->list;
689    Eina_List *l;
690    Line_Data *t_line;
691    EINA_LIST_FOREACH(list, l, t_line)
692       free(t_line);
693
694    eina_list_free(list);
695    st->list = NULL;
696 }
697
698 static void
699 _zoom_test_reset(Gesture_Info *gesture)
700 {
701    if (!gesture)
702      return;
703
704    if (!gesture->data)
705      return;
706
707    Widget_Data *wd = elm_widget_data_get(gesture->obj);
708    Zoom_Type *st = gesture->data;
709    Evas_Modifier_Mask mask = evas_key_modifier_mask_get(
710          evas_object_evas_get(wd->target), "Control");
711    evas_object_key_ungrab(wd->target, "Control_L", mask, 0);
712    evas_object_key_ungrab(wd->target, "Control_R", mask, 0);
713
714    memset(st, 0, sizeof(Zoom_Type));
715    st->zoom_distance_tolerance = wd->zoom_distance_tolerance;
716    st->info.zoom = 1.0;
717 }
718
719 static void
720 _rotate_test_reset(Gesture_Info *gesture)
721 {
722    if (!gesture)
723      return;
724
725    if (!gesture->data)
726      return;
727
728    Widget_Data *wd = elm_widget_data_get(gesture->obj);
729    Rotate_Type *st = gesture->data;
730
731    memset(st, 0, sizeof(Rotate_Type));
732    st->info.base_angle = ELM_GESTURE_NEGATIVE_ANGLE;
733    st->rotate_angular_tolerance = wd->rotate_angular_tolerance;
734 }
735
736
737 /**
738  * @internal
739  *
740  * We register callbacks when gesture layer is attached to an object
741  * or when its enabled after disable.
742  *
743  * @param obj The gesture-layer object.
744  *
745  * @ingroup Elm_Gesture_Layer
746  */
747 static void
748 _register_callbacks(Evas_Object *obj)
749 {
750    Widget_Data *wd = elm_widget_data_get(obj);
751    if (!wd) return;
752
753    if (wd->target)
754      {
755         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_MOUSE_DOWN,
756               _mouse_down, obj);
757         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_MOUSE_MOVE,
758               _mouse_move, obj);
759         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_MOUSE_UP,
760               _mouse_up, obj);
761
762         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_MOUSE_WHEEL,
763               _mouse_wheel, obj);
764
765         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_MULTI_DOWN,
766               _multi_down, obj);
767         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_MULTI_MOVE,
768               _multi_move, obj);
769         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_MULTI_UP,
770               _multi_up, obj);
771
772         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_KEY_DOWN,
773               _key_down_cb, obj);
774         evas_object_event_callback_add(wd->target, EVAS_CALLBACK_KEY_UP,
775               _key_up_cb, obj);
776      }
777 }
778
779 /**
780  * @internal
781  *
782  * We unregister callbacks when gesture layer is disabled.
783  *
784  * @param obj The gesture-layer object.
785  *
786  * @ingroup Elm_Gesture_Layer
787  */
788 static void
789 _unregister_callbacks(Evas_Object *obj)
790 {
791    Widget_Data *wd = elm_widget_data_get(obj);
792    if (!wd) return;
793
794    if (wd->target)
795      {
796         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_MOUSE_DOWN,
797               _mouse_down);
798         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_MOUSE_MOVE,
799               _mouse_move);
800         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_MOUSE_UP,
801               _mouse_up);
802
803         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_MOUSE_WHEEL,
804               _mouse_wheel);
805
806         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_MULTI_DOWN,
807               _multi_down);
808
809         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_MULTI_MOVE,
810               _multi_move);
811
812         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_MULTI_UP,
813               _multi_up);
814
815         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_KEY_DOWN,
816               _key_down_cb);
817         evas_object_event_callback_del(wd->target, EVAS_CALLBACK_KEY_UP,
818               _key_up_cb);
819      }
820 }
821
822 /* START - Event history list handling functions */
823 /**
824  * @internal
825  * This function is used to find if device number
826  * is found in a list of devices.
827  * The list contains devices for refeeding *UP event
828  *
829  * @ingroup Elm_Gesture_Layer
830  */
831 static int
832 device_in_pending_list(const void *data1, const void *data2)
833 {  /* Compare the two device numbers */
834    return (((intptr_t) data1) - ((intptr_t) data2));
835 }
836
837 /**
838  * @internal
839  *
840  * This functions adds device to refeed-pending device list
841  * @ingroup Elm_Gesture_Layer
842  */
843 static Eina_List *
844 _add_device_pending(Eina_List *list, void *event, Evas_Callback_Type event_type)
845 {
846    int device = ELM_MOUSE_DEVICE;
847    switch(event_type)
848      {
849       case EVAS_CALLBACK_MOUSE_DOWN:
850          break;
851       case EVAS_CALLBACK_MULTI_DOWN:
852          device = ((Evas_Event_Multi_Down *) event)->device;
853          break;
854       default:
855          return list;
856      }
857
858    if (!eina_list_search_unsorted_list(list, device_in_pending_list,
859             (intptr_t*) device))
860      {
861         return eina_list_append(list, (intptr_t*) device);
862      }
863
864    return list;
865 }
866
867 /**
868  * @internal
869  *
870  * This functions returns pending-device node
871  * @ingroup Elm_Gesture_Layer
872  */
873 static Eina_List *
874 _device_is_pending(Eina_List *list, void *event, Evas_Callback_Type event_type)
875 {
876    int device = ELM_MOUSE_DEVICE;
877    switch(event_type)
878      {
879       case EVAS_CALLBACK_MOUSE_UP:
880          break;
881       case EVAS_CALLBACK_MULTI_UP:
882          device = ((Evas_Event_Multi_Up *) event)->device;
883          break;
884       default:
885         return NULL;
886      }
887
888    return eina_list_search_unsorted_list(list, device_in_pending_list,
889          (intptr_t *) device);
890 }
891
892 /**
893  * @internal
894  *
895  * This function reports ABORT to all none-detected gestures
896  * Then resets test bits for all desired gesures
897  * and clears input-events history.
898  * note: if no gesture was detected, events from history list
899  * are streamed to the widget because it's unused by layer.
900  * user may cancel refeed of events by setting repeat events.
901  *
902  * @param obj The gesture-layer object.
903  *
904  * @ingroup Elm_Gesture_Layer
905  */
906 static Eina_Bool
907 _event_history_clear(Evas_Object *obj)
908 {
909    Widget_Data *wd = elm_widget_data_get(obj);
910    if (!wd) return EINA_FALSE;
911
912    int i;
913    Gesture_Info *p;
914    Evas *e = evas_object_evas_get(obj);
915    Eina_Bool gesture_found = EINA_FALSE;
916    for (i = ELM_GESTURE_FIRST ; i < ELM_GESTURE_LAST; i++)
917      {
918         p = wd->gesture[i];
919         if (p)
920           {
921              if (p->state == ELM_GESTURE_STATE_END)
922                gesture_found = EINA_TRUE;
923              else
924                {  /* Report ABORT to all gestures that still not finished */
925                   _set_state(p, ELM_GESTURE_STATE_ABORT, wd->gesture[i]->info,
926                         EINA_FALSE);
927                }
928           }
929      }
930
931    _reset_states(wd); /* we are ready to start testing for gestures again */
932
933    /* Clear all gestures intermediate data */
934    if (IS_TESTED(ELM_GESTURE_N_LONG_TAPS))
935      {  /* We do not clear a long-tap gesture if fingers still on surface */
936         /* and gesture timer still pending to test gesture state          */
937         Long_Tap_Type *st = wd->gesture[ELM_GESTURE_N_LONG_TAPS]->data;
938         if ((st) &&  /* st not allocated if clear occurs before 1st input */
939               ((!eina_list_count(st->touched)) || (!st->timeout)))
940           _n_long_tap_test_reset(wd->gesture[ELM_GESTURE_N_LONG_TAPS]);
941      }
942
943    if (wd->dbl_timeout)
944      {
945         ecore_timer_del(wd->dbl_timeout);
946         wd->dbl_timeout = NULL;
947      }
948
949    _tap_gestures_test_reset(wd->gesture[ELM_GESTURE_N_TAPS]);
950    _tap_gestures_test_reset(wd->gesture[ELM_GESTURE_N_DOUBLE_TAPS]);
951    _tap_gestures_test_reset(wd->gesture[ELM_GESTURE_N_TRIPLE_TAPS]);
952    _momentum_test_reset(wd->gesture[ELM_GESTURE_MOMENTUM]);
953    _line_test_reset(wd->gesture[ELM_GESTURE_N_LINES]);
954    _line_test_reset(wd->gesture[ELM_GESTURE_N_FLICKS]);
955    _zoom_test_reset(wd->gesture[ELM_GESTURE_ZOOM]);
956    _rotate_test_reset(wd->gesture[ELM_GESTURE_ROTATE]);
957
958    /* Disable gesture layer so refeeded events won't be consumed by it */
959    _unregister_callbacks(obj);
960    while (wd->event_history_list)
961      {
962         Event_History *t;
963         t = wd->event_history_list;
964         Eina_List *pending = _device_is_pending(wd->pending,
965               wd->event_history_list->event,
966               wd->event_history_list->event_type);
967
968         /* Refeed events if no gesture matched input */
969         if (pending || ((!gesture_found) && (!wd->repeat_events)))
970           {
971              evas_event_refeed_event(e, wd->event_history_list->event,
972                    wd->event_history_list->event_type);
973
974              if (pending)
975                {
976                   wd->pending = eina_list_remove_list(wd->pending, pending);
977                }
978              else
979                {
980                   wd->pending = _add_device_pending(wd->pending,
981                         wd->event_history_list->event,
982                         wd->event_history_list->event_type);
983                }
984           }
985
986         free(wd->event_history_list->event);
987         wd->event_history_list = (Event_History *) eina_inlist_remove(
988               EINA_INLIST_GET(wd->event_history_list),
989               EINA_INLIST_GET(wd->event_history_list));
990         free(t);
991      }
992    _register_callbacks(obj);
993    return EINA_TRUE;
994 }
995
996 /**
997  * @internal
998  *
999  * This function copies input events.
1000  * We copy event info before adding it to history.
1001  * The memory is freed when we clear history.
1002  *
1003  * @param event the event to copy
1004  * @param event_type event type to copy
1005  *
1006  * @ingroup Elm_Gesture_Layer
1007  */
1008 static void *
1009 _copy_event_info(void *event, Evas_Callback_Type event_type)
1010 {
1011    switch(event_type)
1012      {
1013       case EVAS_CALLBACK_MOUSE_DOWN:
1014          return COPY_EVENT_INFO((Evas_Event_Mouse_Down *) event);
1015          break;
1016       case EVAS_CALLBACK_MOUSE_MOVE:
1017          return COPY_EVENT_INFO((Evas_Event_Mouse_Move *) event);
1018          break;
1019       case EVAS_CALLBACK_MOUSE_UP:
1020          return COPY_EVENT_INFO((Evas_Event_Mouse_Up *) event);
1021          break;
1022       case EVAS_CALLBACK_MOUSE_WHEEL:
1023          return COPY_EVENT_INFO((Evas_Event_Mouse_Wheel *) event);
1024          break;
1025       case EVAS_CALLBACK_MULTI_DOWN:
1026          return COPY_EVENT_INFO((Evas_Event_Multi_Down *) event);
1027          break;
1028       case EVAS_CALLBACK_MULTI_MOVE:
1029          return COPY_EVENT_INFO((Evas_Event_Multi_Move *) event);
1030          break;
1031       case EVAS_CALLBACK_MULTI_UP:
1032          return COPY_EVENT_INFO((Evas_Event_Multi_Up *) event);
1033          break;
1034       case EVAS_CALLBACK_KEY_DOWN:
1035          return COPY_EVENT_INFO((Evas_Event_Key_Down *) event);
1036          break;
1037       case EVAS_CALLBACK_KEY_UP:
1038          return COPY_EVENT_INFO((Evas_Event_Key_Up *) event);
1039          break;
1040       default:
1041          return NULL;
1042      }
1043 }
1044
1045 static Eina_Bool
1046 _event_history_add(Evas_Object *obj, void *event, Evas_Callback_Type event_type)
1047 {
1048    Widget_Data *wd = elm_widget_data_get(obj);
1049    Event_History *ev;
1050    if (!wd) return EINA_FALSE;
1051
1052    ev = malloc(sizeof(Event_History));
1053    ev->event = _copy_event_info(event, event_type);  /* Freed on event_history_clear */
1054    ev->event_type = event_type;
1055    wd->event_history_list = (Event_History *) eina_inlist_append(
1056          EINA_INLIST_GET(wd->event_history_list), EINA_INLIST_GET(ev));
1057
1058    return EINA_TRUE;
1059 }
1060 /* END - Event history list handling functions */
1061
1062 static void
1063 _del_hook(Evas_Object *obj)
1064 {
1065    Widget_Data *wd = elm_widget_data_get(obj);
1066    if (!wd) return;
1067
1068    _event_history_clear(obj);
1069    eina_list_free(wd->pending);
1070
1071    Pointer_Event *data;
1072    EINA_LIST_FREE(wd->touched, data)
1073       free(data);
1074
1075    if (!elm_widget_disabled_get(obj))
1076      _unregister_callbacks(obj);
1077
1078    /* Free all gestures internal data structures */
1079    int i;
1080    for (i = 0; i < ELM_GESTURE_LAST; i++)
1081      if (wd->gesture[i])
1082        {
1083           if (wd->gesture[i]->data)
1084             free(wd->gesture[i]->data);
1085
1086           free(wd->gesture[i]);
1087        }
1088
1089    free(wd);
1090 }
1091
1092 static int
1093 compare_match_fingers(const void *data1, const void *data2)
1094 {  /* Compare coords of first item in list to cur coords */
1095    const Pointer_Event *pe1 = eina_list_data_get(data1);
1096    const Pointer_Event *pe2 = data2;
1097
1098    if (_inside(pe1->x, pe1->y, pe2->x, pe2->y))
1099      return 0;
1100    else if (pe1->x < pe2->x)
1101      return -1;
1102    else
1103      {
1104         if (pe1->x == pe2->x)
1105           return pe1->y - pe2->y;
1106         else
1107           return 1;
1108      }
1109 }
1110
1111 static int
1112 compare_pe_device(const void *data1, const void *data2)
1113 {  /* Compare device of first item in list to our pe device */
1114    const Pointer_Event *pe1 = eina_list_data_get(data1);
1115    const Pointer_Event *pe2 = data2;
1116
1117    /* Only match if last was a down event */
1118    if ((pe1->event_type != EVAS_CALLBACK_MULTI_DOWN) &&
1119          (pe1->event_type != EVAS_CALLBACK_MOUSE_DOWN))
1120      return 1;
1121
1122
1123    if (pe1->device == pe2->device)
1124      return 0;
1125    else if (pe1->device < pe2->device)
1126      return -1;
1127    else
1128      return 1;
1129 }
1130
1131 static Eina_List*
1132 _record_pointer_event(Taps_Type *st, Eina_List *pe_list, Pointer_Event *pe,
1133       Widget_Data *wd, void *event_info, Evas_Callback_Type event_type)
1134 {  /* Keep copy of pe and record it in list */
1135    Pointer_Event *p = malloc(sizeof(Pointer_Event));
1136    memcpy(p, pe, sizeof(Pointer_Event));
1137    consume_event(wd, event_info, event_type, EVAS_EVENT_FLAG_NONE);
1138
1139    st->sum_x += pe->x;
1140    st->sum_y += pe->y;
1141    st->n_taps++;
1142
1143    /* This will also update middle-point to report to user later */
1144    st->info.x = st->sum_x / st->n_taps;
1145    st->info.y = st->sum_y / st->n_taps;
1146    st->info.timestamp = pe->timestamp;
1147
1148    if (!pe_list)
1149      {
1150         pe_list = eina_list_append(pe_list, p);
1151         st->l = eina_list_append(st->l, pe_list);
1152      }
1153    else
1154      pe_list = eina_list_append(pe_list, p);
1155
1156    return pe_list;
1157 }
1158
1159 /**
1160  * @internal
1161  *
1162  * This function sets state a tap-gesture to END or ABORT
1163  *
1164  * @param data gesture info pointer
1165  *
1166  * @ingroup Elm_Gesture_Layer
1167  */
1168 static void
1169 _tap_gesture_finish(void *data)
1170 {  /* This function will test each tap gesture when timer expires */
1171    Gesture_Info *gesture = data;
1172    Elm_Gesture_State s = ELM_GESTURE_STATE_END;
1173    /* Here we check if taps-gesture was completed successfuly */
1174    /* Count how many taps were recieved on each device then   */
1175    /* determine if it matches n_taps_needed defined on START  */
1176    Taps_Type *st = gesture->data;
1177    Eina_List *l;
1178    Eina_List *pe_list;
1179    EINA_LIST_FOREACH(st->l, l, pe_list)
1180      {
1181         if (eina_list_count(pe_list) != st->n_taps_needed)
1182           {  /* No match taps number on device, ABORT */
1183              s = ELM_GESTURE_STATE_ABORT;
1184              break;
1185           }
1186      }
1187
1188    st->info.n = eina_list_count(st->l);
1189    _set_state(gesture, s, gesture->info, EINA_FALSE);
1190    _tap_gestures_test_reset(gesture);
1191 }
1192
1193 /**
1194  * @internal
1195  *
1196  * when this timer expires we finish tap gestures.
1197  *
1198  * @param data The gesture-layer object.
1199  * @return cancles callback for this timer.
1200  *
1201  * @ingroup Elm_Gesture_Layer
1202  */
1203 static Eina_Bool
1204 _multi_tap_timeout(void *data)
1205 {
1206    Widget_Data *wd = elm_widget_data_get(data);
1207    if (!wd) return EINA_FALSE;
1208
1209    if (IS_TESTED(ELM_GESTURE_N_TAPS))
1210      _tap_gesture_finish(wd->gesture[ELM_GESTURE_N_TAPS]);
1211
1212    if (IS_TESTED(ELM_GESTURE_N_DOUBLE_TAPS))
1213    _tap_gesture_finish(wd->gesture[ELM_GESTURE_N_DOUBLE_TAPS]);
1214
1215    if (IS_TESTED(ELM_GESTURE_N_TRIPLE_TAPS))
1216    _tap_gesture_finish(wd->gesture[ELM_GESTURE_N_TRIPLE_TAPS]);
1217
1218    _clear_if_finished(data);
1219    wd->dbl_timeout = NULL;
1220    return ECORE_CALLBACK_CANCEL;
1221 }
1222
1223 /**
1224  * @internal
1225  *
1226  * when this timer expires we START long tap gesture
1227  *
1228  * @param data The gesture-layer object.
1229  * @return cancles callback for this timer.
1230  *
1231  * @ingroup Elm_Gesture_Layer
1232  */
1233 static Eina_Bool
1234 _long_tap_timeout(void *data)
1235 {
1236    Gesture_Info *gesture = data;
1237    Long_Tap_Type *st = gesture->data;
1238    st->timeout = NULL;
1239
1240    _set_state(gesture, ELM_GESTURE_STATE_START,
1241          gesture->data, EINA_FALSE);
1242
1243    return ECORE_CALLBACK_CANCEL;
1244 }
1245
1246
1247 /**
1248  * @internal
1249  *
1250  * This function checks if a tap gesture should start
1251  *
1252  * @param wd Gesture Layer Widget Data.
1253  * @param pe The recent input event as stored in pe struct.
1254  * @param event_info Original input event pointer.
1255  * @param event_type Type of original input event.
1256  * @param gesture what gesture is tested
1257  * @param how many taps for this gesture (1, 2 or 3)
1258  *
1259  * @return Flag to determine if we need to set a timer for finish
1260  *
1261  * @ingroup Elm_Gesture_Layer
1262  */
1263 static Eina_Bool
1264 _tap_gesture_start(Widget_Data *wd, Pointer_Event *pe,
1265       void *event_info, Evas_Callback_Type event_type,
1266       Gesture_Info *gesture, int taps)
1267 {  /* Here we fill Tap struct */
1268    Taps_Type *st = gesture->data;
1269    if (!st)
1270      {  /* Allocated once on first time */
1271         st = calloc(1, sizeof(Taps_Type));
1272         gesture->data = st;
1273         _tap_gestures_test_reset(gesture);
1274      }
1275
1276    Eina_List *pe_list = NULL;
1277    Pointer_Event *pe_down = NULL;
1278    Evas_Event_Flags ev_flag = EVAS_EVENT_FLAG_NONE;
1279    switch (pe->event_type)
1280      {
1281       case EVAS_CALLBACK_MULTI_DOWN:
1282       case EVAS_CALLBACK_MOUSE_DOWN:
1283          /* Check if got tap on same cord was tapped before */
1284          pe_list = eina_list_search_unsorted(st->l, compare_match_fingers, pe);
1285
1286          if ((!pe_list) &&
1287                eina_list_search_unsorted(st->l, compare_pe_device, pe))
1288            {  /* This device was touched in other cord before completion */
1289               ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT,
1290                     &st->info, EINA_FALSE);
1291               consume_event(wd, event_info, event_type, ev_flag);
1292
1293               return EINA_FALSE;
1294            }
1295
1296          pe_list = _record_pointer_event(st, pe_list, pe, wd, event_info, event_type);
1297          if ((pe->device == 0) && (eina_list_count(pe_list) == 1))
1298            {  /* This is the first mouse down we got */
1299               ev_flag = _set_state(gesture, ELM_GESTURE_STATE_START,
1300                     &st->info, EINA_FALSE);
1301               consume_event(wd, event_info, event_type, ev_flag);
1302
1303               st->n_taps_needed = taps * 2; /* count DOWN and UP */
1304
1305               return EINA_TRUE;
1306            }
1307
1308          break;
1309
1310       case EVAS_CALLBACK_MULTI_UP:
1311       case EVAS_CALLBACK_MOUSE_UP:
1312          pe_list = eina_list_search_unsorted(st->l, compare_pe_device, pe);
1313          if (!pe_list)
1314            return EINA_FALSE;
1315
1316          pe_list = _record_pointer_event(st, pe_list, pe, wd, event_info, event_type);
1317          break;
1318
1319       case EVAS_CALLBACK_MULTI_MOVE:
1320       case EVAS_CALLBACK_MOUSE_MOVE:
1321          /* Get first event in first list, this has to be a Mouse Down event  */
1322          /* and verify that user didn't move out of this area before next tap */
1323          pe_list = eina_list_search_unsorted(st->l, compare_pe_device, pe);
1324          if (pe_list)
1325            {
1326               pe_down = eina_list_data_get(pe_list);
1327               if (!_inside(pe_down->x, pe_down->y, pe->x, pe->y))
1328                 {
1329                    ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT,
1330                          &st->info, EINA_FALSE);
1331                    consume_event(wd, event_info, event_type, ev_flag);
1332                 }
1333            }
1334          break;
1335
1336       default:
1337          return EINA_FALSE;
1338      }
1339
1340    return EINA_FALSE;
1341 }
1342
1343
1344 /**
1345  * @internal
1346  *
1347  * This function checks all click/tap and double/triple taps
1348  *
1349  * @param obj The gesture-layer object.
1350  * @param pe The recent input event as stored in pe struct.
1351  * @param event_info Original input event pointer.
1352  * @param event_type Type of original input event.
1353  *
1354  * @ingroup Elm_Gesture_Layer
1355  */
1356 static void
1357 _tap_gestures_test(Evas_Object *obj, Pointer_Event *pe,
1358       void *event_info, Evas_Callback_Type event_type)
1359 {  /* Here we fill Recent_Taps struct and fire-up click/tap timers */
1360    Eina_Bool need_timer = EINA_FALSE;
1361    Widget_Data *wd = elm_widget_data_get(obj);
1362    if (!wd) return;
1363
1364    if (!pe)   /* this happens when unhandled event arrived */
1365      return;  /* see _make_pointer_event function */
1366
1367    if (IS_TESTED(ELM_GESTURE_N_TAPS))
1368      need_timer |= _tap_gesture_start(wd, pe, event_info, event_type,
1369            wd->gesture[ELM_GESTURE_N_TAPS], 1);
1370
1371    if (IS_TESTED(ELM_GESTURE_N_DOUBLE_TAPS))
1372      need_timer |= _tap_gesture_start(wd, pe, event_info, event_type,
1373            wd->gesture[ELM_GESTURE_N_DOUBLE_TAPS], 2);
1374
1375    if (IS_TESTED(ELM_GESTURE_N_TRIPLE_TAPS))
1376      need_timer |= _tap_gesture_start(wd, pe, event_info, event_type,
1377            wd->gesture[ELM_GESTURE_N_TRIPLE_TAPS], 3);
1378
1379    if ((need_timer) && (!wd->dbl_timeout))
1380      {  /* Set a timer to finish these gestures */
1381         wd->dbl_timeout = ecore_timer_add(0.4, _multi_tap_timeout,
1382               obj);
1383      }
1384 }
1385
1386 /**
1387  * @internal
1388  *
1389  * This function computes center-point for  long-tap gesture
1390  *
1391  * @param st Long Tap gesture info pointer
1392  * @param pe The recent input event as stored in pe struct.
1393  *
1394  * @ingroup Elm_Gesture_Layer
1395  */
1396 static void
1397 _compute_taps_center(Long_Tap_Type *st,
1398       Evas_Coord *x_out, Evas_Coord *y_out, Pointer_Event *pe)
1399 {
1400    if(!eina_list_count(st->touched))
1401      return;
1402
1403    Eina_List *l;
1404    Pointer_Event *p;
1405    Evas_Coord x = 0, y = 0;
1406    EINA_LIST_FOREACH(st->touched, l, p)
1407      {  /* Accumulate all then take avarage */
1408         if (p->device == pe->device)
1409           {  /* This will take care of values coming from MOVE event */
1410              x += pe->x;
1411              y += pe->y;
1412           }
1413         else
1414           {
1415              x += p->x;
1416              y += p->y;
1417           }
1418      }
1419
1420    *x_out = x / eina_list_count(st->touched);
1421    *y_out = y / eina_list_count(st->touched);
1422 }
1423
1424 /**
1425  * @internal
1426  *
1427  * This function checks N long-tap gesture.
1428  *
1429  * @param obj The gesture-layer object.
1430  * @param pe The recent input event as stored in pe struct.
1431  * @param event_info Original input event pointer.
1432  * @param event_type Type of original input event.
1433  * @param g_type what Gesture we are testing.
1434  * @param taps How many click/taps we test for.
1435  *
1436  * @ingroup Elm_Gesture_Layer
1437  */
1438 static void
1439 _n_long_tap_test(Evas_Object *obj, Pointer_Event *pe,
1440                  void *event_info, Evas_Callback_Type event_type,
1441                  Elm_Gesture_Types g_type)
1442 {  /* Here we fill Recent_Taps struct and fire-up click/tap timers */
1443    Widget_Data *wd = elm_widget_data_get(obj);
1444    if (!wd) return;
1445
1446    if (!pe)   /* this happens when unhandled event arrived */
1447      return;  /* see _make_pointer_event function */
1448    Gesture_Info *gesture = wd->gesture[g_type];
1449    if (!gesture) return;
1450
1451    Long_Tap_Type *st = gesture->data;
1452    if (!st)
1453      {  /* Allocated once on first time */
1454         st = calloc(1, sizeof(Long_Tap_Type));
1455         gesture->data = st;
1456         _n_long_tap_test_reset(gesture);
1457      }
1458
1459    Evas_Event_Flags ev_flag = EVAS_EVENT_FLAG_NONE;
1460    switch (pe->event_type)
1461      {
1462       case EVAS_CALLBACK_MULTI_DOWN:
1463       case EVAS_CALLBACK_MOUSE_DOWN:
1464         st->touched = _add_touched_device(st->touched, pe);
1465         st->info.n = eina_list_count(st->touched);
1466         if (st->info.n > st->max_touched)
1467           st->max_touched = st->info.n;
1468         else
1469           {  /* User removed finger from touch, then put back - ABORT */
1470              if ((gesture->state == ELM_GESTURE_STATE_START) ||
1471                  (gesture->state == ELM_GESTURE_STATE_MOVE))
1472                {
1473                   ev_flag =_set_state(gesture, ELM_GESTURE_STATE_ABORT,
1474                                       &st->info, EINA_FALSE);
1475                   consume_event(wd, event_info, event_type, ev_flag);
1476                }
1477           }
1478
1479         if ((pe->device == 0) && (eina_list_count(st->touched) == 1))
1480           {  /* This is the first mouse down we got */
1481              st->info.timestamp = pe->timestamp;
1482
1483              /* To test long tap */
1484              /* When this timer expires, gesture STARTED */
1485              if (!st->timeout)
1486                st->timeout = ecore_timer_add(wd->long_tap_start_timeout,
1487                                              _long_tap_timeout, gesture);
1488           }
1489
1490         consume_event(wd, event_info, event_type, ev_flag);
1491         _compute_taps_center(st, &st->info.x, &st->info.y, pe);
1492         st->center_x = st->info.x;
1493         st->center_y = st->info.y;
1494         break;
1495
1496       case EVAS_CALLBACK_MULTI_UP:
1497       case EVAS_CALLBACK_MOUSE_UP:
1498         st->touched = _remove_touched_device(st->touched, pe);
1499         _compute_taps_center(st, &st->center_x, &st->center_y, pe);
1500         if (st->info.n &&
1501             ((gesture->state == ELM_GESTURE_STATE_START) ||
1502                 (gesture->state == ELM_GESTURE_STATE_MOVE)))
1503           {  /* Report END only for gesture that STARTed */
1504              if (eina_list_count(st->touched) == 0)
1505                {  /* Report END only at last release event */
1506                   ev_flag =_set_state(gesture, ELM_GESTURE_STATE_END,
1507                                       &st->info, EINA_FALSE);
1508                   consume_event(wd, event_info, event_type, ev_flag);
1509                }
1510           }
1511         else
1512           {  /* Stop test, user lifts finger before long-start */
1513              if (st->timeout) ecore_timer_del(st->timeout);
1514              st->timeout = NULL;
1515              ev_flag =_set_state(gesture, ELM_GESTURE_STATE_ABORT,
1516                                  &st->info, EINA_FALSE);
1517              consume_event(wd, event_info, event_type, ev_flag);
1518           }
1519
1520         break;
1521
1522       case EVAS_CALLBACK_MULTI_MOVE:
1523       case EVAS_CALLBACK_MOUSE_MOVE:
1524         if(st->info.n &&
1525            ((gesture->state == ELM_GESTURE_STATE_START) ||
1526                (gesture->state == ELM_GESTURE_STATE_MOVE)))
1527           {  /* Report MOVE only if STARTED */
1528              Evas_Coord x = 0;
1529              Evas_Coord y = 0;
1530              Elm_Gesture_State state_to_report = ELM_GESTURE_STATE_MOVE;
1531
1532              _compute_taps_center(st, &x, &y, pe);
1533              /* ABORT if user moved fingers out of tap area */
1534 #if defined(DEBUG_GESTURE_LAYER)
1535              printf("%s x,y=(%d,%d) st->info.x,st->info.y=(%d,%d)\n",__func__,x,y,st->info.x,st->info.y);
1536 #endif
1537              if (!_inside(x, y, st->center_x, st->center_y))
1538                state_to_report = ELM_GESTURE_STATE_ABORT;
1539
1540              /* Report MOVE if gesture started */
1541              ev_flag = _set_state(gesture, state_to_report,
1542                                   &st->info, EINA_TRUE);
1543              consume_event(wd, event_info, event_type, ev_flag);
1544           }
1545         break;
1546
1547       default:
1548         return;
1549      }
1550 }
1551
1552 /**
1553  * @internal
1554  *
1555  * This function computes momentum for MOMENTUM, LINE and FLICK gestures
1556  * This momentum value will be sent to widget when gesture is completed.
1557  *
1558  * @param momentum pointer to buffer where we record momentum value.
1559  * @param x1 x coord where user started gesture.
1560  * @param y1 y coord where user started gesture.
1561  * @param x2 x coord where user completed gesture.
1562  * @param y2 y coord where user completed gesture.
1563  * @param t1x timestamp for X, when user started gesture.
1564  * @param t1y timestamp for Y, when user started gesture.
1565  * @param t2  timestamp when user completed gesture.
1566  *
1567  * @ingroup Elm_Gesture_Layer
1568  */
1569 static void
1570 _set_momentum(Elm_Gesture_Momentum_Info *momentum, Evas_Coord x1, Evas_Coord y1,
1571       Evas_Coord x2, Evas_Coord y2, unsigned int t1x, unsigned int t1y,
1572       unsigned int t2)
1573 {
1574    Evas_Coord velx = 0, vely = 0, vel;
1575    Evas_Coord dx = x2 - x1;
1576    Evas_Coord dy = y2 - y1;
1577    int dtx = t2 - t1x;
1578    int dty = t2 - t1y;
1579    if (dtx > 0)
1580      velx = (dx * 1000) / dtx;
1581
1582    if (dty > 0)
1583      vely = (dy * 1000) / dty;
1584
1585    vel = sqrt((velx * velx) + (vely * vely));
1586
1587    if ((_elm_config->thumbscroll_friction > 0.0) &&
1588          (vel > _elm_config->thumbscroll_momentum_threshold))
1589      {  /* report momentum */
1590         momentum->mx = velx;
1591         momentum->my = vely;
1592      }
1593    else
1594      {
1595         momentum->mx = 0;
1596         momentum->my = 0;
1597      }
1598 }
1599
1600 /**
1601  * @internal
1602  *
1603  * This function is used for computing rotation angle (DEG).
1604  *
1605  * @param x1 first finger x location.
1606  * @param y1 first finger y location.
1607  * @param x2 second finger x location.
1608  * @param y2 second finger y location.
1609  *
1610  * @return angle of the line between (x1,y1), (x2,y2) in Deg.
1611  * Angles now are given in DEG, not RAD.
1612  * ZERO angle at 12-oclock, growing clockwise.
1613  *
1614  * @ingroup Elm_Gesture_Layer
1615  */
1616 static double
1617 get_angle(Evas_Coord x1, Evas_Coord y1, Evas_Coord x2, Evas_Coord y2)
1618 {
1619    double a, xx, yy, rt = (-1);
1620    xx = fabs(x2 - x1);
1621    yy = fabs(y2 - y1);
1622
1623    if (((int) xx) && ((int) yy))
1624      {
1625         rt = a = RAD2DEG(atan(yy / xx));
1626         if (x1 < x2)
1627           {
1628              if (y1 < y2)
1629                {
1630                   rt = 360 - a;
1631                }
1632              else
1633                {
1634                   rt = (a);
1635                }
1636           }
1637         else
1638           {
1639              if (y1 < y2)
1640                {
1641                   rt = 180 + a;
1642                }
1643              else
1644                {
1645                   rt = 180 - a;
1646                }
1647           }
1648      }
1649
1650    if (rt < 0)
1651      {  /* Do this only if rt is not set */
1652         if (((int) xx))
1653           {  /* Horizontal line */
1654              if (x2 < x1)
1655                {
1656                   rt = 180;
1657                }
1658              else
1659                {
1660                   rt = 0.0;
1661                }
1662           }
1663         else
1664           {  /* Vertical line */
1665              if (y2 < y1)
1666                {
1667                   rt = 90;
1668                }
1669              else
1670                {
1671                   rt = 270;
1672                }
1673           }
1674      }
1675
1676    /* Now we want to change from:
1677     *                      90                   0
1678     * original circle   180   0   We want:  270   90
1679     *                     270                 180
1680     */
1681
1682    rt = 450 - rt;
1683    if (rt >= 360)
1684      rt -= 360;
1685
1686    return rt;
1687 }
1688
1689 /**
1690  * @internal
1691  *
1692  * This function is used for computing the magnitude and direction
1693  * of vector between two points.
1694  *
1695  * @param x1 first finger x location.
1696  * @param y1 first finger y location.
1697  * @param x2 second finger x location.
1698  * @param y2 second finger y location.
1699  * @param l length computed (output)
1700  * @param a angle computed (output)
1701  *
1702  * @ingroup Elm_Gesture_Layer
1703  */
1704 static void
1705 get_vector(Evas_Coord x1, Evas_Coord y1, Evas_Coord x2, Evas_Coord y2,
1706       Evas_Coord *l, double *a)
1707 {
1708    Evas_Coord xx, yy;
1709    xx = x2 - x1;
1710    yy = y2 - y1;
1711    *l = (Evas_Coord) sqrt(xx*xx + yy*yy);
1712    *a = get_angle(x1, y1, x2, y2);
1713 }
1714
1715 static int
1716 _get_direction(Evas_Coord x1, Evas_Coord x2)
1717 {
1718    if (x2 < x1)
1719      return -1;
1720
1721    if (x2 > x1)
1722      return 1;
1723
1724    return 0;
1725 }
1726 /**
1727  * @internal
1728  *
1729  * This function tests momentum gesture.
1730  * @param obj The gesture-layer object.
1731  * @param pe The recent input event as stored in pe struct.
1732  * @param event_info recent input event.
1733  * @param event_type recent event type.
1734  * @param g_type what Gesture we are testing.
1735  *
1736  * @ingroup Elm_Gesture_Layer
1737  */
1738 static void
1739 _momentum_test(Evas_Object *obj, Pointer_Event *pe,
1740       void *event_info, Evas_Callback_Type event_type,
1741       Elm_Gesture_Types g_type)
1742 {
1743    Widget_Data *wd = elm_widget_data_get(obj);
1744    if (!wd) return;
1745    Gesture_Info *gesture = wd->gesture[g_type];
1746    if (!gesture ) return;
1747
1748    /* When continues enable = TRUE a gesture may START on MOVE event */
1749    /* We don't allow this to happen with the if-statement below.     */
1750    /* When continues enable = FALSE a gesture may START on DOWN only */
1751    /* Therefor it would NOT start on MOVE event.                     */
1752    /* NOTE that touched list is updated AFTER this function returns  */
1753    /* so (count == 0) when we get here on first touch on surface.    */
1754    if ((wd->glayer_continues_enable) && (!eina_list_count(wd->touched)))
1755      return; /* Got move on mouse-over move */
1756
1757    Momentum_Type *st = gesture->data;
1758    Elm_Gesture_State state_to_report = ELM_GESTURE_STATE_MOVE;
1759    if (!st)
1760      {  /* Allocated once on first time */
1761         st = calloc(1, sizeof(Momentum_Type));
1762         gesture->data = st;
1763         _momentum_test_reset(gesture);
1764      }
1765
1766    if (!pe)
1767      return;
1768
1769    /* First make avarage of all touched devices to determine center point */
1770    Eina_List *l;
1771    Pointer_Event *p;
1772    Pointer_Event pe_local = *pe;           /* Copy pe event info to local */
1773    unsigned int cnt = 1;    /* We start counter counting current pe event */
1774    EINA_LIST_FOREACH(wd->touched, l, p)
1775       if (p->device != pe_local.device)
1776         {
1777            pe_local.x += p->x;
1778            pe_local.y += p->y;
1779            cnt++;
1780         }
1781
1782
1783    /* Compute avarage to get center point */
1784    pe_local.x /= cnt;
1785    pe_local.y /= cnt;
1786
1787    /* If user added finger - reset gesture */
1788    if ((st->info.n) && (st->info.n < cnt))
1789      state_to_report = ELM_GESTURE_STATE_ABORT;
1790
1791    if (st->info.n < cnt)
1792      st->info.n = cnt;
1793
1794    Evas_Event_Flags ev_flag = EVAS_EVENT_FLAG_NONE;
1795    switch (event_type)
1796      {
1797       case EVAS_CALLBACK_MOUSE_DOWN:
1798       case EVAS_CALLBACK_MULTI_DOWN:
1799       case EVAS_CALLBACK_MOUSE_MOVE:
1800       case EVAS_CALLBACK_MULTI_MOVE:
1801          if (!st->t_st_x)
1802            {
1803               if ((event_type == EVAS_CALLBACK_MOUSE_DOWN) ||
1804                     (event_type == EVAS_CALLBACK_MULTI_DOWN) ||
1805                     (wd->glayer_continues_enable)) /* start also on MOVE */
1806                 {  /* We start on MOVE when cont-enabled only */
1807                    st->line_st.x = st->line_end.x = pe_local.x;
1808                    st->line_st.y = st->line_end.y = pe_local.y;
1809                    st->t_st_x = st->t_st_y = st->t_end = pe_local.timestamp;
1810                    st->xdir = st->ydir = 0;
1811                    st->info.x2 = st->info.x1 = pe_local.x;
1812                    st->info.y2 = st->info.y1 = pe_local.y;
1813                    st->info.tx = st->info.ty = pe_local.timestamp;
1814                    ev_flag = _set_state(gesture, ELM_GESTURE_STATE_START,
1815                          &st->info, EINA_FALSE);
1816                    consume_event(wd, event_info, event_type, ev_flag);
1817                 }
1818
1819               return;
1820            }
1821
1822
1823          /* ABORT gesture if got DOWN or MOVE event after UP+timeout */
1824          if ((st->t_up) &&
1825          ((st->t_up + ELM_GESTURE_MULTI_TIMEOUT) < pe_local.timestamp))
1826            state_to_report = ELM_GESTURE_STATE_ABORT;
1827
1828          if ((pe_local.timestamp - ELM_GESTURE_MOMENTUM_TIMEOUT) > st->t_end)
1829            {  /*  Too long of a wait, reset all values */
1830               st->line_st.x = pe_local.x;
1831               st->line_st.y = pe_local.y;
1832               st->t_st_y = st->t_st_x = pe_local.timestamp;
1833               st->info.tx = st->t_st_x;
1834               st->info.ty = st->t_st_y;
1835               st->xdir = st->ydir = 0;
1836            }
1837          else
1838            {
1839               int xdir, ydir;
1840               xdir = _get_direction(st->line_end.x, pe_local.x);
1841               ydir = _get_direction(st->line_end.y, pe_local.y);
1842               if (xdir != st->xdir)
1843                 {
1844                    st->line_st.x = st->line_end.x;
1845                    st->info.tx = st->t_st_x = st->t_end;
1846                    st->xdir = xdir;
1847                 }
1848
1849               if (ydir != st->ydir)
1850                 {
1851                    st->line_st.y = st->line_end.y;
1852                    st->info.ty = st->t_st_y = st->t_end;
1853                    st->ydir = ydir;
1854                 }
1855            }
1856
1857          st->info.x2 = st->line_end.x = pe_local.x;
1858          st->info.y2 = st->line_end.y = pe_local.y;
1859          st->t_end = pe_local.timestamp;
1860          _set_momentum(&st->info, st->line_st.x, st->line_st.y, pe_local.x, pe_local.y,
1861                st->t_st_x, st->t_st_y, pe_local.timestamp);
1862          ev_flag = _set_state(gesture, state_to_report, &st->info,
1863                EINA_TRUE);
1864          consume_event(wd, event_info, event_type, ev_flag);
1865          break;
1866
1867
1868       case EVAS_CALLBACK_MOUSE_UP:
1869       case EVAS_CALLBACK_MULTI_UP:
1870          st->t_up = pe_local.timestamp;       /* Record recent up event time */
1871          if ((cnt > 1) ||     /* Ignore if more fingers touch surface        */
1872                (!st->t_st_x)) /* IGNORE if info was cleared, long press,move */
1873            return;
1874
1875          if ((pe_local.timestamp - ELM_GESTURE_MOMENTUM_TIMEOUT) > st->t_end)
1876            {  /* Too long of a wait, reset all values */
1877               st->line_st.x = pe_local.x;
1878               st->line_st.y = pe_local.y;
1879               st->t_st_y = st->t_st_x = pe_local.timestamp;
1880               st->xdir = st->ydir = 0;
1881            }
1882
1883          st->info.x2 = pe_local.x;
1884          st->info.y2 = pe_local.y;
1885          st->line_end.x = pe_local.x;
1886          st->line_end.y = pe_local.y;
1887          st->t_end = pe_local.timestamp;
1888
1889          _set_momentum(&st->info, st->line_st.x, st->line_st.y, pe_local.x, pe_local.y,
1890                st->t_st_x, st->t_st_y, pe_local.timestamp);
1891
1892          if ((fabs(st->info.mx) > ELM_GESTURE_MINIMUM_MOMENTUM) ||
1893                (fabs(st->info.my) > ELM_GESTURE_MINIMUM_MOMENTUM))
1894            state_to_report = ELM_GESTURE_STATE_END;
1895          else
1896            state_to_report = ELM_GESTURE_STATE_ABORT;
1897
1898          ev_flag = _set_state(gesture, state_to_report, &st->info,
1899                EINA_FALSE);
1900          consume_event(wd, event_info, event_type, ev_flag);
1901          return;
1902
1903       default:
1904          return;
1905      }
1906 }
1907
1908 static int
1909 compare_line_device(const void *data1, const void *data2)
1910 {  /* Compare device component of line struct */
1911    const Line_Data *ln1 = data1;
1912    const int *device = data2;
1913
1914    if (ln1->t_st) /* Compare only with lines that started */
1915      return (ln1->device - (*device));
1916
1917    return (-1);
1918 }
1919
1920 /**
1921  * @internal
1922  *
1923  * This function construct line struct from input.
1924  * @param info pointer to store line momentum.
1925  * @param st line info to store input data.
1926  * @param pe The recent input event as stored in pe struct.
1927  *
1928  * @ingroup Elm_Gesture_Layer
1929  */
1930 static Eina_Bool
1931 _single_line_process(Elm_Gesture_Line_Info *info, Line_Data *st,
1932       Pointer_Event *pe, Evas_Callback_Type event_type)
1933 {  /* Record events and set momentum for line pointed by st */
1934    if (!pe)
1935      return EINA_FALSE;
1936
1937    switch (event_type)
1938      {
1939       case EVAS_CALLBACK_MOUSE_DOWN:
1940       case EVAS_CALLBACK_MOUSE_MOVE:
1941       case EVAS_CALLBACK_MULTI_DOWN:
1942       case EVAS_CALLBACK_MULTI_MOVE:
1943          if (!st->t_st)
1944            {  /* This happens only when line starts */
1945               st->line_st.x = pe->x;
1946               st->line_st.y = pe->y;
1947               st->t_st = pe->timestamp;
1948               st->device = pe->device;
1949               info->momentum.x1 = pe->x;
1950               info->momentum.y1 = pe->y;
1951               info->momentum.tx = pe->timestamp;
1952               info->momentum.ty = pe->timestamp;
1953
1954               return EINA_TRUE;
1955            }
1956
1957          break;
1958
1959       case EVAS_CALLBACK_MOUSE_UP:
1960       case EVAS_CALLBACK_MULTI_UP:
1961          /* IGNORE if line info was cleared, like long press, move */
1962          if (!st->t_st)
1963            return EINA_FALSE;
1964
1965          st->line_end.x = pe->x;
1966          st->line_end.y = pe->y;
1967          st->t_end = pe->timestamp;
1968          break;
1969
1970       default:
1971          return EINA_FALSE;
1972      }
1973
1974    if (!st->t_st)
1975      {
1976         _line_data_reset(st);
1977         return EINA_FALSE;
1978      }
1979
1980    info->momentum.x2 = pe->x;
1981    info->momentum.y2 = pe->y;
1982    _set_momentum(&info->momentum, st->line_st.x, st->line_st.y, pe->x, pe->y,
1983          st->t_st, st->t_st, pe->timestamp);
1984
1985    return EINA_TRUE;
1986 }
1987
1988 /**
1989  * @internal
1990  *
1991  * This function test for (n) line gesture.
1992  * @param obj The gesture-layer object.
1993  * @param pe The recent input event as stored in pe struct.
1994  * @param event_info Original input event pointer.
1995  * @param event_type Type of original input event.
1996  * @param g_type what Gesture we are testing.
1997  *
1998  * @ingroup Elm_Gesture_Layer
1999  */
2000 static void
2001 _n_line_test(Evas_Object *obj, Pointer_Event *pe, void *event_info,
2002       Evas_Callback_Type event_type, Elm_Gesture_Types g_type)
2003 {
2004    if (!pe)
2005      return;
2006    Widget_Data *wd = elm_widget_data_get(obj);
2007    if (!wd) return;
2008    Gesture_Info *gesture = wd->gesture[g_type];
2009    if (!gesture ) return;
2010
2011    /* When continues enable = TRUE a gesture may START on MOVE event */
2012    /* We don't allow this to happen with the if-statement below.     */
2013    /* When continues enable = FALSE a gesture may START on DOWN only */
2014    /* Therefor it would NOT start on MOVE event.                     */
2015    /* NOTE that touched list is updated AFTER this function returns  */
2016    /* so (count == 0) when we get here on first touch on surface.    */
2017    if ((wd->glayer_continues_enable) && (!eina_list_count(wd->touched)))
2018      return; /* Got move on mouse-over move */
2019
2020    Line_Type *st = gesture->data;
2021    if (!st)
2022      {
2023         st = calloc(1, sizeof(Line_Type));
2024         gesture->data = st;
2025      }
2026
2027    Line_Data *line = NULL;
2028    Eina_List *list = st->list;
2029    unsigned cnt = eina_list_count(list);
2030
2031    if (cnt)
2032      {  /* list is not empty, locate this device on list */
2033         line = (Line_Data *) eina_list_search_unsorted(st->list,
2034               compare_line_device, &pe->device);
2035      }
2036
2037    if (!line)
2038      {  /* List is empty or device not found, new line-struct on START only */
2039         if ((event_type == EVAS_CALLBACK_MOUSE_DOWN) ||
2040               (event_type == EVAS_CALLBACK_MULTI_DOWN) ||
2041               ((wd->glayer_continues_enable) && /* START on MOVE also */
2042                ((event_type == EVAS_CALLBACK_MOUSE_MOVE) ||
2043                 (event_type == EVAS_CALLBACK_MULTI_MOVE))))
2044           {  /* Allocate new item on START only */
2045              line = calloc(1, sizeof(Line_Data));
2046              _line_data_reset(line);
2047              list = eina_list_append(list, line);
2048              st->list = list;
2049           }
2050      }
2051
2052    if (!line)  /* This may happen on MOVE that comes before DOWN      */
2053      return;   /* No line-struct to work with, can't continue testing */
2054
2055    if (_single_line_process(&st->info, line, pe, event_type)) /* update st with input */
2056      consume_event(wd, event_info, event_type, EVAS_EVENT_FLAG_NONE);
2057
2058    /* Get direction and magnitude of the line */
2059    double angle;
2060    get_vector(line->line_st.x, line->line_st.y, pe->x, pe->y,
2061          &line->line_length, &angle);
2062
2063    /* These are used later to compare lines length */
2064    Evas_Coord shortest_line_len = line->line_length;
2065    Evas_Coord longest_line_len = line->line_length;
2066    Evas_Event_Flags ev_flag = EVAS_EVENT_FLAG_NONE;
2067
2068    /* Now update line-state */
2069    if (line->t_st)
2070      {  /* Analyze line only if line started */
2071         if (line->line_angle >= 0.0)
2072           {  /* if line direction was set, we test if broke tolerance */
2073              double a = fabs(angle - line->line_angle);
2074
2075              double d = (tan(DEG2RAD(a))) * line->line_length; /* Distance from line */
2076 #if defined(DEBUG_GESTURE_LAYER)
2077              printf("%s a=<%f> d=<%f>\n", __func__, a, d);
2078 #endif
2079              if ((d > wd->line_distance_tolerance) || (a > wd->line_angular_tolerance))
2080                {  /* Broke tolerance: abort line and start a new one */
2081                   ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT,
2082                         &st->info, EINA_FALSE);
2083                   consume_event(wd, event_info, event_type, ev_flag);
2084                   return;
2085                }
2086
2087              if (wd->glayer_continues_enable)
2088                {  /* We may finish line if momentum is zero */
2089                   /* This is for continues-gesture */
2090                   if ((!st->info.momentum.mx) && (!st->info.momentum.my))
2091                     {  /* Finish line on zero momentum for continues gesture */
2092                        line->line_end.x = pe->x;
2093                        line->line_end.y = pe->y;
2094                        line->t_end = pe->timestamp;
2095                     }
2096                }
2097           }
2098         else
2099           {  /* Record the line angle as it broke minimum length for line */
2100              if (line->line_length >= wd->line_min_length)
2101                st->info.angle = line->line_angle = angle;
2102           }
2103
2104
2105         if (line->t_end)
2106           {
2107              if (line->line_angle < 0.0)
2108                { /* it's not a line, too short more close to a tap */
2109                   ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT,
2110                         &st->info, EINA_FALSE);
2111                   consume_event(wd, event_info, event_type, ev_flag);
2112                   return;
2113                }
2114           }
2115      }
2116
2117    /* Count how many lines already started / ended */
2118    int started = 0;
2119    int ended = 0;
2120    unsigned int tm_start = pe->timestamp;
2121    unsigned int tm_end = pe->timestamp;
2122    Eina_List *l;
2123    Line_Data *t_line;
2124    double base_angle = ELM_GESTURE_NEGATIVE_ANGLE;
2125    Eina_Bool lines_parallel = EINA_TRUE;
2126    EINA_LIST_FOREACH(list, l, t_line)
2127      {
2128         if (base_angle < 0)
2129           base_angle = t_line->line_angle;
2130         else
2131           {
2132              if (t_line->line_angle >= 0)
2133                {  /* Compare angle only with lines with direction defined */
2134                   if (fabs(base_angle - t_line->line_angle) >
2135                         wd->line_angular_tolerance)
2136                     lines_parallel = EINA_FALSE;
2137                }
2138           }
2139
2140         if (t_line->line_length)
2141           {  /* update only if this line is used */
2142              if (shortest_line_len > t_line->line_length)
2143                shortest_line_len = t_line->line_length;
2144
2145              if (longest_line_len < t_line->line_length)
2146                longest_line_len = t_line->line_length;
2147           }
2148
2149         if (t_line->t_st)
2150           {
2151              started++;
2152              if (t_line->t_st < tm_start)
2153                tm_start = t_line->t_st;
2154           }
2155
2156         if (t_line->t_end)
2157           {
2158              ended++;
2159              if (t_line->t_end < tm_end)
2160                tm_end = t_line->t_end;
2161           }
2162      }
2163
2164    st->info.momentum.n = started;
2165
2166
2167    if (ended &&
2168          ((event_type == EVAS_CALLBACK_MOUSE_DOWN) ||
2169           (event_type == EVAS_CALLBACK_MULTI_DOWN)))
2170      {  /* user lift one finger then starts again without line-end - ABORT */
2171         ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT, &st->info,
2172               EINA_FALSE);
2173         consume_event(wd, event_info, event_type, ev_flag);
2174         return;
2175      }
2176
2177    if (!lines_parallel)
2178      { /* Lines are NOT at same direction, abort this gesture */
2179         ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT, &st->info,
2180               EINA_FALSE);
2181         consume_event(wd, event_info, event_type, ev_flag);
2182         return;
2183      }
2184
2185
2186    /* We report ABORT if lines length are NOT matching when fingers are up */
2187    if ((longest_line_len - shortest_line_len) > (elm_finger_size_get()*2))
2188      {
2189         ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT, &st->info,
2190               EINA_FALSE);
2191         consume_event(wd, event_info, event_type, ev_flag);
2192         return;
2193      }
2194
2195    if ((g_type == ELM_GESTURE_N_FLICKS) && ((tm_end - tm_start) > wd->flick_time_limit_ms))
2196      {  /* We consider FLICK as a fast line.ABORT if take too long to finish */
2197         ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT, &st->info,
2198               EINA_FALSE);
2199         consume_event(wd, event_info, event_type, ev_flag);
2200         return;
2201      }
2202
2203    switch (event_type)
2204      {
2205       case EVAS_CALLBACK_MOUSE_UP:
2206       case EVAS_CALLBACK_MULTI_UP:
2207          if ((started) && (started == ended))
2208            {
2209               ev_flag = _set_state(gesture, ELM_GESTURE_STATE_END,
2210                     &st->info, EINA_FALSE);
2211               consume_event(wd, event_info, event_type, ev_flag);
2212            }
2213
2214          return;
2215
2216       case EVAS_CALLBACK_MOUSE_DOWN:
2217       case EVAS_CALLBACK_MULTI_DOWN:
2218       case EVAS_CALLBACK_MOUSE_MOVE:
2219       case EVAS_CALLBACK_MULTI_MOVE:
2220          if (started)
2221            {
2222               if (wd->glayer_continues_enable && (started == ended))
2223                 {  /* For continues gesture */
2224                    ev_flag = _set_state(gesture, ELM_GESTURE_STATE_END,
2225                          &st->info, EINA_FALSE);
2226                    consume_event(wd, event_info, event_type, ev_flag);
2227                 }
2228               else
2229                 {  /* When continues, may START on MOVE event too */
2230                    Elm_Gesture_State s = ELM_GESTURE_STATE_MOVE;
2231
2232                    /* This happens when: on n > 1 lines then one finger up */
2233                    /* caused abort, then put finger down.                  */
2234                    /* This will stop line from starting again.             */
2235                    /* Number of lines, MUST match touched-device in list   */
2236                    if ((!wd->glayer_continues_enable) &&
2237                          (eina_list_count(st->list) < eina_list_count(wd->touched)))
2238                      s = ELM_GESTURE_STATE_ABORT;
2239
2240                    if (gesture->state == ELM_GESTURE_STATE_UNDEFINED)
2241                      s = ELM_GESTURE_STATE_START;
2242
2243                    ev_flag = _set_state(gesture, s, &st->info, EINA_TRUE);
2244                    consume_event(wd, event_info, event_type, ev_flag);
2245                 }
2246            }
2247          break;
2248
2249       default:
2250          return;  /* Unhandeld event type */
2251      }
2252 }
2253
2254 /**
2255  * @internal
2256  *
2257  * This function is used to check if rotation gesture started.
2258  * @param st Contains current rotation values from user input.
2259  * @return TRUE/FALSE if we need to set rotation START.
2260  *
2261  * @ingroup Elm_Gesture_Layer
2262  */
2263 static Eina_Bool
2264 rotation_broke_tolerance(Rotate_Type *st)
2265 {
2266    if (st->info.base_angle < 0)
2267      return EINA_FALSE; /* Angle has to be computed first */
2268
2269    if (st->rotate_angular_tolerance < 0)
2270      return EINA_TRUE;
2271
2272    double low  = st->info.base_angle - st->rotate_angular_tolerance;
2273    double high = st->info.base_angle + st->rotate_angular_tolerance;
2274    double t = st->info.angle;
2275
2276    if (low < 0)
2277      {
2278         low += 180;
2279         high += 180;
2280
2281         if (t < 180)
2282           t += 180;
2283         else
2284           t -= 180;
2285      }
2286
2287    if (high > 360)
2288      {
2289         low -= 180;
2290         high -= 180;
2291
2292         if (t < 180)
2293           t += 180;
2294         else
2295           t -= 180;
2296      }
2297
2298 #if defined(DEBUG_GESTURE_LAYER)
2299    printf("%s angle=<%f> low=<%f> high=<%f>\n", __func__, t, low, high);
2300 #endif
2301    if ((t < low) || (t > high))
2302      {  /* This marks that roation action has started */
2303         st->rotate_angular_tolerance = ELM_GESTURE_NEGATIVE_ANGLE;
2304         st->info.base_angle = st->info.angle; /* Avoid jump in angle value */
2305         return EINA_TRUE;
2306      }
2307
2308    return EINA_FALSE;
2309 }
2310
2311 /**
2312  * @internal
2313  *
2314  * This function is used for computing the gap between fingers.
2315  * It returns the length and center point between fingers.
2316  *
2317  * @param x1 first finger x location.
2318  * @param y1 first finger y location.
2319  * @param x2 second finger x location.
2320  * @param y2 second finger y location.
2321  * @param x  Gets center point x cord (output)
2322  * @param y  Gets center point y cord (output)
2323  *
2324  * @return length of the line between (x1,y1), (x2,y2) in pixels.
2325  *
2326  * @ingroup Elm_Gesture_Layer
2327  */
2328 static Evas_Coord
2329 get_finger_gap_length(Evas_Coord x1, Evas_Coord y1, Evas_Coord x2,
2330       Evas_Coord y2, Evas_Coord *x, Evas_Coord *y)
2331 {
2332    double a, b, xx, yy, gap;
2333    xx = fabs(x2 - x1);
2334    yy = fabs(y2 - y1);
2335    gap = sqrt(xx*xx + yy*yy);
2336
2337    /* START - Compute zoom center point */
2338    /* The triangle defined as follows:
2339     *             B
2340     *           / |
2341     *          /  |
2342     *     gap /   | a
2343     *        /    |
2344     *       A-----C
2345     *          b
2346     * http://en.wikipedia.org/wiki/Trigonometric_functions
2347     *************************************/
2348    if (((int) xx) && ((int) yy))
2349      {
2350         double A = atan((yy / xx));
2351 #if defined(DEBUG_GESTURE_LAYER)
2352         printf("xx=<%f> yy=<%f> A=<%f>\n", xx, yy, A);
2353 #endif
2354         a = (Evas_Coord) ((gap / 2) * sin(A));
2355         b = (Evas_Coord) ((gap / 2) * cos(A));
2356         *x = (Evas_Coord) ((x2 > x1) ? (x1 + b) : (x2 + b));
2357         *y = (Evas_Coord) ((y2 > y1) ? (y1 + a) : (y2 + a));
2358      }
2359    else
2360      {
2361         if ((int) xx)
2362           {  /* horiz line, take half width */
2363 #if defined(DEBUG_GESTURE_LAYER)
2364              printf("==== HORIZ ====\n");
2365 #endif
2366              *x = (Evas_Coord) (xx / 2);
2367              *y = (Evas_Coord) (y1);
2368           }
2369
2370         if ((int) yy)
2371           {  /* vert line, take half width */
2372 #if defined(DEBUG_GESTURE_LAYER)
2373              printf("==== VERT ====\n");
2374 #endif
2375              *x = (Evas_Coord) (x1);
2376              *y = (Evas_Coord) (yy / 2);
2377           }
2378      }
2379    /* END   - Compute zoom center point */
2380
2381    return (Evas_Coord) gap;
2382 }
2383
2384 /**
2385  * @internal
2386  *
2387  * This function is used for computing zoom value.
2388  *
2389  * @param st Pointer to zoom data based on user input.
2390  * @param tm_end Recent input event timestamp.
2391  * @param zoom_val Current computed zoom value.
2392  *
2393  * @return zoom momentum
2394  *
2395  * @ingroup Elm_Gesture_Layer
2396  */
2397 static double
2398 _zoom_momentum_get(Zoom_Type *st, unsigned int tm_end, double zoom_val)
2399 {
2400    unsigned int tm_total;
2401    if (!st->m_st_tm)
2402      {  /* Init, and we don't start computing momentum yet */
2403         st->m_st_tm = st->m_prev_tm = tm_end;
2404         st->m_base = zoom_val;
2405         return 0.0;
2406      }
2407
2408    if ((tm_end - ELM_GESTURE_MOMENTUM_DELAY) < st->m_st_tm)
2409      return 0.0; /* we don't start to compute momentum yet */
2410
2411    if (st->dir)
2412      {  /* if direction was already defined, check if changed */
2413         if (((st->dir < 0) && (zoom_val > st->info.zoom)) ||
2414               ((st->dir > 0) && (zoom_val < st->info.zoom)))
2415           {  /* Direction changed, reset momentum */
2416              st->m_st_tm = 0;
2417              st->dir = (-st->dir);
2418              return 0.0;
2419           }
2420      }
2421    else
2422      st->dir = (zoom_val > st->info.zoom) ? 1 : -1;  /* init */
2423
2424    if ((tm_end - ELM_GESTURE_MOMENTUM_TIMEOUT) > st->m_prev_tm)
2425      {
2426         st->m_st_tm = 0; /* Rest momentum when waiting too long */
2427         return 0.0;
2428      }
2429
2430    st->m_prev_tm = tm_end;
2431    tm_total = tm_end - st->m_st_tm;
2432
2433    if (tm_total)
2434      return ((zoom_val - st->m_base)  * 1000) / tm_total;
2435    else
2436      return 0.0;
2437 }
2438
2439 /**
2440  * @internal
2441  *
2442  * This function is used for computing zoom value.
2443  *
2444  * @param st Pointer to zoom data based on user input.
2445  * @param x1 first finger x location.
2446  * @param y1 first finger y location.
2447  * @param x2 second finger x location.
2448  * @param y2 second finger y location.
2449  * @param factor zoom-factor, used to determine how fast zoom works.
2450  *
2451  * @return zoom value, when 1.0 means no zoom, 0.5 half size...
2452  *
2453  * @ingroup Elm_Gesture_Layer
2454  */
2455 static double
2456 compute_zoom(Zoom_Type *st, Evas_Coord x1, Evas_Coord y1,
2457       Evas_Coord x2, Evas_Coord y2, double zoom_finger_factor)
2458 {
2459    double rt = 1.0;
2460    unsigned int tm_end = (st->zoom_mv.timestamp > st->zoom_mv1.timestamp) ?
2461       st->zoom_mv.timestamp : st->zoom_mv1.timestamp;
2462
2463    Evas_Coord diam = get_finger_gap_length(x1, y1, x2, y2,
2464          &st->info.x, &st->info.y);
2465
2466    st->info.radius = diam / 2;
2467
2468    if (!st->zoom_base)
2469      {
2470         st->zoom_base = diam;
2471         return st->info.zoom;
2472      }
2473
2474    if (st->zoom_distance_tolerance)
2475      {  /* zoom tolerance <> ZERO, means zoom action NOT started yet */
2476         if (diam < (st->zoom_base - st->zoom_distance_tolerance))
2477           {  /* avoid jump with zoom value when break tolerance */
2478              st->zoom_base -= st->zoom_distance_tolerance;
2479              st->zoom_distance_tolerance = 0;
2480           }
2481
2482         if (diam > (st->zoom_base + st->zoom_distance_tolerance))
2483           {  /* avoid jump with zoom value when break tolerance */
2484              st->zoom_base += st->zoom_distance_tolerance;
2485              st->zoom_distance_tolerance = 0;
2486           }
2487
2488         return rt;
2489      }
2490
2491    /* We use factor only on the difference between gap-base   */
2492    /* if gap=120, base=100, we get ((120-100)/100)=0.2*factor */
2493    rt = ((1.0) + ((((float) diam - (float) st->zoom_base) /
2494                (float) st->zoom_base) * zoom_finger_factor));
2495
2496    /* Momentum: zoom per second: */
2497    st->info.momentum = _zoom_momentum_get(st, tm_end, rt);
2498
2499    return rt;
2500 }
2501
2502 /**
2503  * @internal
2504  *
2505  * This function handles zoom with mouse wheel.
2506  * thats a combination of wheel + CTRL key.
2507  * @param obj The gesture-layer object.
2508  * @param event_info Original input event pointer.
2509  * @param event_type Type of original input event.
2510  * @param g_type what Gesture we are testing.
2511  *
2512  * @ingroup Elm_Gesture_Layer
2513  */
2514 static void
2515 _zoom_with_wheel_test(Evas_Object *obj, void *event_info,
2516       Evas_Callback_Type event_type, Elm_Gesture_Types g_type)
2517 {
2518    Widget_Data *wd = elm_widget_data_get(obj);
2519    if (!wd) return;
2520    if (!wd->gesture[g_type]) return;
2521
2522    Gesture_Info *gesture_zoom = wd->gesture[g_type];
2523    Zoom_Type *st = gesture_zoom->data;
2524    Evas_Event_Flags ev_flag = EVAS_EVENT_FLAG_NONE;
2525    if (!st)
2526      {  /* Allocated once on first time, used for zoom intermediate data */
2527         st = calloc(1, sizeof(Zoom_Type));
2528         gesture_zoom->data = st;
2529         _zoom_test_reset(gesture_zoom);
2530      }
2531
2532    switch (event_type)
2533      {
2534       case EVAS_CALLBACK_KEY_UP:
2535            {
2536               Evas_Event_Key_Up *p = event_info;
2537               if ((!strcmp(p->keyname, "Control_L")) ||
2538                     (!strcmp(p->keyname, "Control_R")))
2539                 {  /* Test if we ended a zoom gesture when releasing CTRL */
2540                    if ((st->zoom_wheel) &&
2541                          ((gesture_zoom->state == ELM_GESTURE_STATE_START) ||
2542                           (gesture_zoom->state == ELM_GESTURE_STATE_MOVE)))
2543                      {  /* User released CTRL after zooming */
2544                         st->info.momentum = _zoom_momentum_get(st,
2545                               p->timestamp, st->info.zoom);
2546
2547                         ev_flag = _set_state(gesture_zoom,
2548                               ELM_GESTURE_STATE_END, &st->info, EINA_FALSE);
2549                         consume_event(wd, event_info, event_type, ev_flag);
2550
2551                         return;
2552                      }
2553                 }
2554               break;
2555            }
2556
2557       case EVAS_CALLBACK_MOUSE_WHEEL:
2558            {
2559               Eina_Bool force;
2560               Elm_Gesture_State s;
2561               if (!evas_key_modifier_is_set(
2562                        ((Evas_Event_Mouse_Wheel *) event_info)->modifiers,
2563                        "Control"))
2564                 {  /* if using wheel witout CTRL after starting zoom */
2565                    if ((st->zoom_wheel) &&
2566                          ((gesture_zoom->state == ELM_GESTURE_STATE_START) ||
2567                           (gesture_zoom->state == ELM_GESTURE_STATE_MOVE)))
2568                      {
2569                         ev_flag = _set_state(gesture_zoom,
2570                               ELM_GESTURE_STATE_END, &st->info, EINA_FALSE);
2571                         consume_event(wd, event_info, event_type, ev_flag);
2572
2573                         return;
2574                      }
2575                    else
2576                      return; /* Ignore mouse-wheel without control */
2577                 }
2578
2579               /* Using mouse wheel with CTRL for zoom */
2580               if (st->zoom_wheel || (st->zoom_distance_tolerance == 0))
2581                 {  /* (zoom_wheel == NULL) and (zoom_distance_tolerance == 0)
2582                       we continue a zoom gesture */
2583                    force = EINA_TRUE;
2584                    s = ELM_GESTURE_STATE_MOVE;
2585                 }
2586               else
2587                 {  /* On first wheel event, report START */
2588                    Evas_Modifier_Mask mask = evas_key_modifier_mask_get(
2589                             evas_object_evas_get(wd->target), "Control");
2590                    force = EINA_FALSE;
2591                    s = ELM_GESTURE_STATE_START;
2592                    if (!evas_object_key_grab(wd->target, "Control_L", mask, 0, EINA_FALSE))
2593                      ERR("Failed to Grabbed CTRL_L");
2594                    if (!evas_object_key_grab(wd->target, "Control_R", mask, 0, EINA_FALSE))
2595                      ERR("Failed to Grabbed CTRL_R");
2596                 }
2597
2598               st->zoom_distance_tolerance = 0; /* Cancel tolerance */
2599               st->zoom_wheel = (Evas_Event_Mouse_Wheel *) event_info;
2600               st->info.x  = st->zoom_wheel->canvas.x;
2601               st->info.y  = st->zoom_wheel->canvas.y;
2602
2603               if (st->zoom_wheel->z < 0) /* zoom in */
2604                 st->info.zoom += (wd->zoom_finger_factor * wd->zoom_wheel_factor);
2605
2606               if (st->zoom_wheel->z > 0) /* zoom out */
2607                 st->info.zoom -= (wd->zoom_finger_factor * wd->zoom_wheel_factor);
2608
2609               if (st->info.zoom < 0.0)
2610                 st->info.zoom = 0.0;
2611
2612               st->info.momentum = _zoom_momentum_get(st,
2613                     st->zoom_wheel->timestamp, st->info.zoom);
2614
2615               ev_flag = _set_state(gesture_zoom, s, &st->info, force);
2616               consume_event(wd, event_info, event_type, ev_flag);
2617               break;
2618            }
2619
2620       default:
2621            return;
2622      }
2623 }
2624
2625 /**
2626  * @internal
2627  *
2628  * This function is used to test zoom gesture.
2629  * user may combine zoom, rotation together.
2630  * so its possible that both will be detected from input.
2631  * (both are two-finger movement-oriented gestures)
2632  *
2633  * @param obj The gesture-layer object.
2634  * @param event_info Pointer to recent input event.
2635  * @param event_type Recent input event type.
2636  * @param g_type what Gesture we are testing.
2637  *
2638  * @ingroup Elm_Gesture_Layer
2639  */
2640 static void
2641 _zoom_test(Evas_Object *obj, Pointer_Event *pe, void *event_info,
2642       Evas_Callback_Type event_type, Elm_Gesture_Types g_type)
2643 {
2644    if (!pe)
2645      return;
2646    Widget_Data *wd = elm_widget_data_get(obj);
2647    if (!wd) return;
2648    if (!wd->gesture[g_type]) return;
2649
2650    Gesture_Info *gesture_zoom = wd->gesture[g_type];
2651    Zoom_Type *st = gesture_zoom->data;
2652
2653    if (!st)
2654      {  /* Allocated once on first time, used for zoom data */
2655         st = calloc(1, sizeof(Zoom_Type));
2656         gesture_zoom->data = st;
2657         _zoom_test_reset(gesture_zoom);
2658      }
2659
2660
2661    /* Start - new zoom testing, letting all fingers start */
2662    Evas_Event_Flags ev_flag = EVAS_EVENT_FLAG_NONE;
2663    switch (event_type)
2664      {
2665       case EVAS_CALLBACK_MOUSE_MOVE:
2666       case EVAS_CALLBACK_MULTI_MOVE:
2667          /* if non-continues mode and gesture NOT started, ignore MOVE */
2668          if ((!wd->glayer_continues_enable) &&
2669                (!st->zoom_st.timestamp))
2670            return;
2671
2672       case EVAS_CALLBACK_MOUSE_DOWN:
2673       case EVAS_CALLBACK_MULTI_DOWN:
2674            {  /* Here we take care of zoom-start and zoom move */
2675               Eina_List *l;
2676               Pointer_Event *p;
2677
2678               if(eina_list_count(wd->touched) > 2)
2679                 {  /* Process zoom only when 2 fingers on surface */
2680                    ev_flag = _set_state(gesture_zoom,
2681                          ELM_GESTURE_STATE_ABORT, &st->info, EINA_FALSE);
2682                    consume_event(wd, event_info, event_type, ev_flag);
2683
2684                    return;
2685                 }
2686
2687               if (!st->zoom_st.timestamp)
2688                 {  /* Now scan touched-devices list and find other finger */
2689                    EINA_LIST_FOREACH(wd->touched, l, p)
2690                      {  /* Device of other finger <> pe device */
2691                         if (p->device != pe->device)
2692                           break;
2693                      }
2694
2695                    if (!p)  /* Single finger on touch */
2696                         return;
2697
2698                    /* Record down fingers */
2699                    consume_event(wd, event_info, event_type, ev_flag);
2700                    memcpy(&st->zoom_st, pe, sizeof(Pointer_Event));
2701                    memcpy(&st->zoom_st1, p, sizeof(Pointer_Event));
2702
2703                    /* Set mv field as well to be ready for MOVE events  */
2704                    memcpy(&st->zoom_mv, pe, sizeof(Pointer_Event));
2705                    memcpy(&st->zoom_mv1, p, sizeof(Pointer_Event));
2706
2707                    /* Here we have zoom_st, zoom_st1 set, report START  */
2708                    /* Set zoom-base after BOTH down events  recorded    */
2709                    /* Compute length of line between fingers zoom start */
2710                    st->info.zoom = 1.0;
2711                    st->zoom_base = get_finger_gap_length(st->zoom_st1.x,
2712                          st->zoom_st1.y, st->zoom_st.x,  st->zoom_st.y,
2713                          &st->info.x, &st->info.y);
2714
2715                    st->info.radius = st->zoom_base / 2;
2716
2717                    if ((gesture_zoom->state != ELM_GESTURE_STATE_START) &&
2718                          (gesture_zoom->state != ELM_GESTURE_STATE_MOVE))
2719                      {  /* zoom started with mouse-wheel, don't report twice */
2720                         ev_flag = _set_state(gesture_zoom,
2721                               ELM_GESTURE_STATE_START, &st->info, EINA_FALSE);
2722                         consume_event(wd, event_info, event_type, ev_flag);
2723                      }
2724
2725                    return;  /* Zoom started */
2726                 }  /* End of ZOOM_START handling */
2727
2728
2729               /* if we got here, we have (exacally) two fingers on surfce */
2730               /* we also after START, report MOVE */
2731               /* First detect which finger moved  */
2732               if (pe->device == st->zoom_mv.device)
2733                 memcpy(&st->zoom_mv, pe, sizeof(Pointer_Event));
2734               else if (pe->device == st->zoom_mv1.device)
2735                 memcpy(&st->zoom_mv1, pe, sizeof(Pointer_Event));
2736
2737               /* Compute change in zoom as fingers move */
2738               st->info.zoom = compute_zoom(st,
2739                     st->zoom_mv.x, st->zoom_mv.y,
2740                     st->zoom_mv1.x, st->zoom_mv1.y,
2741                     wd->zoom_finger_factor);
2742
2743               if (!st->zoom_distance_tolerance)
2744                 {  /* Zoom broke tolerance, report move */
2745                    double d = st->info.zoom - st->next_step;
2746                    if (d < 0.0)
2747                      d = (-d);
2748
2749                    if (d >= wd->zoom_step)
2750                      {  /* Report move in steps */
2751                         st->next_step = st->info.zoom;
2752
2753                         ev_flag = _set_state(gesture_zoom,
2754                               ELM_GESTURE_STATE_MOVE,
2755                               &st->info, EINA_TRUE);
2756                         consume_event(wd, event_info, event_type, ev_flag);
2757                      }
2758                 }  /* End of ZOOM_MOVE handling */
2759
2760               return;
2761            }
2762
2763       case EVAS_CALLBACK_MOUSE_UP:
2764       case EVAS_CALLBACK_MULTI_UP:
2765          /* Reset timestamp of finger-up.This is used later
2766             by _zoom_test_reset() to retain finger-down data */
2767          consume_event(wd, event_info, event_type, ev_flag);
2768          if (((st->zoom_wheel) || (st->zoom_base)) &&
2769                (st->zoom_distance_tolerance == 0))
2770            {
2771               ev_flag = _set_state(gesture_zoom, ELM_GESTURE_STATE_END,
2772                     &st->info, EINA_FALSE);
2773               consume_event(wd, event_info, event_type, ev_flag);
2774
2775               return;
2776            }
2777
2778          /* if we got here not a ZOOM */
2779          if (gesture_zoom->state != ELM_GESTURE_STATE_UNDEFINED)
2780            {  /* Must be != undefined, if gesture started */
2781               ev_flag = _set_state(gesture_zoom,
2782                     ELM_GESTURE_STATE_ABORT, &st->info, EINA_FALSE);
2783               consume_event(wd, event_info, event_type, ev_flag);
2784            }
2785
2786          _zoom_test_reset(gesture_zoom);
2787
2788          return;
2789
2790       default:
2791          return;
2792        }
2793 }
2794
2795 static void
2796 _get_rotate_properties(Rotate_Type *st,
2797       Evas_Coord x1, Evas_Coord y1,
2798       Evas_Coord x2, Evas_Coord y2,
2799       double *angle)
2800 {  /* FIXME: Fix momentum computation, it's wrong */
2801    double prev_angle = *angle;
2802    st->info.radius = get_finger_gap_length(x1, y1, x2, y2,
2803          &st->info.x, &st->info.y) / 2;
2804
2805    *angle = get_angle(x1, y1, x2, y2);
2806
2807    if (angle == &st->info.angle)
2808      {  /* Fingers are moving, compute momentum */
2809         unsigned int tm_start =
2810            (st->rotate_st.timestamp > st->rotate_st1.timestamp)
2811            ?  st->rotate_st.timestamp : st->rotate_st1.timestamp;
2812         unsigned int tm_end =
2813            (st->rotate_mv.timestamp > st->rotate_mv1.timestamp)
2814            ? st->rotate_mv.timestamp : st->rotate_mv1.timestamp;
2815
2816         unsigned int tm_total = tm_end - tm_start;
2817         if (tm_total)
2818           {  /* Momentum computed as:
2819                 accumulated roation angle (deg) divided by time */
2820              double m = 0;;
2821              if (((prev_angle < 90) && ((*angle) > 270)) ||
2822                    ((prev_angle > 270) && ((*angle) < 90)))
2823                {  /* We circle passing ZERO point */
2824                   prev_angle = (*angle);
2825                }
2826              else m = prev_angle - (*angle);
2827
2828              st->accum_momentum += m;
2829
2830              if ((tm_end - st->prev_momentum_tm) < 100)
2831                st->prev_momentum += m;
2832              else
2833                {
2834                   if (fabs(st->prev_momentum) < 0.002)
2835                     st->accum_momentum = 0.0;  /* reset momentum */
2836
2837                   st->prev_momentum = 0.0;     /* Start again    */
2838                }
2839
2840              st->prev_momentum_tm = tm_end;
2841              st->info.momentum = (st->accum_momentum * 1000) / tm_total;
2842           }
2843      }
2844    else
2845      st->info.momentum = 0;
2846 }
2847
2848 /**
2849  * @internal
2850  *
2851  * This function is used to test rotation gesture.
2852  * user may combine zoom, rotation together.
2853  * so its possible that both will be detected from input.
2854  * (both are two-finger movement-oriented gestures)
2855  *
2856  * @param obj The gesture-layer object.
2857  * @param event_info Pointer to recent input event.
2858  * @param event_type Recent input event type.
2859  * @param g_type what Gesture we are testing.
2860  *
2861  * @ingroup Elm_Gesture_Layer
2862  */
2863 static void
2864 _rotate_test(Evas_Object *obj, Pointer_Event *pe, void *event_info,
2865       Evas_Callback_Type event_type, Elm_Gesture_Types g_type)
2866 {
2867    if (!pe)
2868      return;
2869
2870    Widget_Data *wd = elm_widget_data_get(obj);
2871    if (!wd) return;
2872    if (!wd->gesture[g_type]) return;
2873
2874    Gesture_Info *gesture = wd->gesture[g_type];
2875    Rotate_Type *st;
2876    if (gesture)
2877    {
2878       st = gesture->data;
2879       if (!st)
2880         {  /* Allocated once on first time */
2881            st = calloc(1, sizeof(Rotate_Type));
2882            gesture->data = st;
2883            _rotate_test_reset(gesture);
2884         }
2885    }
2886
2887    Evas_Event_Flags ev_flag = EVAS_EVENT_FLAG_NONE;
2888    switch (event_type)
2889      {
2890       case EVAS_CALLBACK_MOUSE_MOVE:
2891       case EVAS_CALLBACK_MULTI_MOVE:
2892          /* if non-continues mode and gesture NOT started, ignore MOVE */
2893          if ((!wd->glayer_continues_enable) &&
2894                (!st->rotate_st.timestamp))
2895            return;
2896
2897       case EVAS_CALLBACK_MOUSE_DOWN:
2898       case EVAS_CALLBACK_MULTI_DOWN:
2899            {  /* Here we take care of rotate-start and rotate move */
2900               Eina_List *l;
2901               Pointer_Event *p;
2902
2903               if(eina_list_count(wd->touched) > 2)
2904                 {  /* Process rotate only when 2 fingers on surface */
2905                    ev_flag = _set_state(gesture,
2906                          ELM_GESTURE_STATE_ABORT, &st->info, EINA_FALSE);
2907                    consume_event(wd, event_info, event_type, ev_flag);
2908
2909                    return;
2910                 }
2911
2912               if (!st->rotate_st.timestamp)
2913                 {  /* Now scan touched-devices list and find other finger */
2914                    EINA_LIST_FOREACH(wd->touched, l, p)
2915                      {  /* Device of other finger <> pe device */
2916                         if (p->device != pe->device)
2917                           break;
2918                      }
2919
2920                    if (!p)
2921                         return;  /* Single finger on touch */
2922
2923                    /* Record down fingers */
2924                    consume_event(wd, event_info, event_type, ev_flag);
2925                    memcpy(&st->rotate_st, pe, sizeof(Pointer_Event));
2926                    memcpy(&st->rotate_st1, p, sizeof(Pointer_Event));
2927
2928                    /* Set mv field as well to be ready for MOVE events  */
2929                    memcpy(&st->rotate_mv, pe, sizeof(Pointer_Event));
2930                    memcpy(&st->rotate_mv1, p, sizeof(Pointer_Event));
2931
2932                    /* Here we have rotate_st, rotate_st1 set, report START  */
2933                    /* Set rotate-base after BOTH down events  recorded    */
2934                    /* Compute length of line between fingers rotate start */
2935                    _get_rotate_properties(st,
2936                          st->rotate_st.x, st->rotate_st.y,
2937                          st->rotate_st1.x, st->rotate_st1.y,
2938                          &st->info.base_angle);
2939
2940                    ev_flag = _set_state(gesture, ELM_GESTURE_STATE_START,
2941                          &st->info, EINA_FALSE);
2942                    consume_event(wd, event_info, event_type, ev_flag);
2943
2944                    return;  /* Rotate started */
2945                 }  /* End of ROTATE_START handling */
2946
2947
2948               /* if we got here, we have (exacally) two fingers on surfce */
2949               /* we also after START, report MOVE */
2950               /* First detect which finger moved  */
2951               if (pe->device == st->rotate_mv.device)
2952                 memcpy(&st->rotate_mv, pe, sizeof(Pointer_Event));
2953               else if (pe->device == st->rotate_mv1.device)
2954                 memcpy(&st->rotate_mv1, pe, sizeof(Pointer_Event));
2955
2956               /* Compute change in rotate as fingers move */
2957               _get_rotate_properties(st,
2958                     st->rotate_mv.x, st->rotate_mv.y,
2959                     st->rotate_mv1.x, st->rotate_mv1.y,
2960                     &st->info.angle);
2961
2962               if (rotation_broke_tolerance(st))
2963                 {  /* Rotation broke tolerance, report move */
2964                    double d = st->info.angle - st->next_step;
2965                    if (d < 0.0)
2966                      d = (-d);
2967
2968                    if (d >= wd->rotate_step)
2969                      {  /* Report move in steps */
2970                         st->next_step = st->info.angle;
2971
2972                         ev_flag = _set_state(gesture,
2973                               ELM_GESTURE_STATE_MOVE, &st->info, EINA_TRUE);
2974                         consume_event(wd, event_info, event_type, ev_flag);
2975                      }
2976                 }  /* End of ROTATE_MOVE handling */
2977
2978               return;
2979            }
2980
2981       case EVAS_CALLBACK_MOUSE_UP:
2982       case EVAS_CALLBACK_MULTI_UP:
2983            consume_event(wd, event_info, event_type, ev_flag);
2984            /* Reset timestamp of finger-up.This is used later
2985               by rotate_test_reset() to retain finger-down data */
2986            if (st->rotate_angular_tolerance < 0)
2987              {
2988                 ev_flag = _set_state(gesture, ELM_GESTURE_STATE_END,
2989                       &st->info, EINA_FALSE);
2990                 consume_event(wd, event_info, event_type, ev_flag);
2991
2992                 return;
2993              }
2994
2995            if (gesture->state != ELM_GESTURE_STATE_UNDEFINED)
2996              {  /* Must be != undefined, if gesture started */
2997                 ev_flag = _set_state(gesture, ELM_GESTURE_STATE_ABORT,
2998                       &st->info, EINA_FALSE);
2999                 consume_event(wd, event_info, event_type, ev_flag);
3000              }
3001
3002            _rotate_test_reset(gesture);
3003            return;
3004
3005       default:
3006          return;
3007        }
3008 }
3009
3010 /**
3011  * @internal
3012  *
3013  * This function is used to save input events in an abstract struct
3014  * to be used later by getsure-testing functions.
3015  *
3016  * @param data The gesture-layer object.
3017  * @param event_info Pointer to recent input event.
3018  * @param event_type Recent input event type.
3019  * @param pe The abstract data-struct (output).
3020  *
3021  * @ingroup Elm_Gesture_Layer
3022  */
3023 static Eina_Bool
3024 _make_pointer_event(void *data, void *event_info,
3025       Evas_Callback_Type event_type, Pointer_Event *pe)
3026 {
3027    Widget_Data *wd = elm_widget_data_get(data);
3028    if (!wd) return EINA_FALSE;
3029
3030    memset(pe, '\0', sizeof(*pe));
3031    switch (event_type)
3032      {
3033       case EVAS_CALLBACK_MOUSE_DOWN:
3034            pe->x = ((Evas_Event_Mouse_Down *) event_info)->canvas.x;
3035            pe->y = ((Evas_Event_Mouse_Down *) event_info)->canvas.y;
3036            pe->timestamp = ((Evas_Event_Mouse_Down *) event_info)->timestamp;
3037            pe->device = ELM_MOUSE_DEVICE;
3038            break;
3039
3040       case EVAS_CALLBACK_MOUSE_UP:
3041            pe->x = ((Evas_Event_Mouse_Up *) event_info)->canvas.x;
3042            pe->y = ((Evas_Event_Mouse_Up *) event_info)->canvas.y;
3043            pe->timestamp = ((Evas_Event_Mouse_Up *) event_info)->timestamp;
3044            pe->device = ELM_MOUSE_DEVICE;
3045            break;
3046
3047       case EVAS_CALLBACK_MOUSE_MOVE:
3048            pe->x = ((Evas_Event_Mouse_Move *) event_info)->cur.canvas.x;
3049            pe->y = ((Evas_Event_Mouse_Move *) event_info)->cur.canvas.y;
3050            pe->timestamp = ((Evas_Event_Mouse_Move *) event_info)->timestamp;
3051            pe->device = ELM_MOUSE_DEVICE;
3052            break;
3053
3054       case EVAS_CALLBACK_MULTI_DOWN:
3055            pe->x = ((Evas_Event_Multi_Down *) event_info)->canvas.x;
3056            pe->y = ((Evas_Event_Multi_Down *) event_info)->canvas.y;
3057            pe->timestamp = ((Evas_Event_Multi_Down *) event_info)->timestamp;
3058            pe->device = ((Evas_Event_Multi_Down *) event_info)->device;
3059            break;
3060
3061       case EVAS_CALLBACK_MULTI_UP:
3062            pe->x = ((Evas_Event_Multi_Up *) event_info)->canvas.x;
3063            pe->y = ((Evas_Event_Multi_Up *) event_info)->canvas.y;
3064            pe->timestamp = ((Evas_Event_Multi_Up *) event_info)->timestamp;
3065            pe->device = ((Evas_Event_Multi_Up *) event_info)->device;
3066            break;
3067
3068       case EVAS_CALLBACK_MULTI_MOVE:
3069            pe->x = ((Evas_Event_Multi_Move *) event_info)->cur.canvas.x;
3070            pe->y = ((Evas_Event_Multi_Move *) event_info)->cur.canvas.y;
3071            pe->timestamp = ((Evas_Event_Multi_Move *) event_info)->timestamp;
3072            pe->device = ((Evas_Event_Multi_Move *) event_info)->device;
3073            break;
3074
3075       default:
3076            return EINA_FALSE;
3077      }
3078
3079    pe->event_type = event_type;
3080    return EINA_TRUE;
3081 }
3082
3083 /**
3084  * @internal
3085  *
3086  * This function restartes line, flick, zoom and rotate gestures
3087  * when gesture-layer continues-gestures enabled.
3088  * Example of continues-gesture:
3089  * When doing a line, user stops moving finger but keeps fingers on touch.
3090  * This will cause line-end, then as user continues moving his finger
3091  * it re-starts line gesture.
3092  * When continue mode is disabled, user has to lift finger from touch
3093  * to end a gesture. Them touch-again to start a new one.
3094  *
3095  * @param data The gesture-layer object.
3096  * @param wd gesture layer widget data.
3097  * @param states_reset flag that marks gestures were reset in history clear.
3098  *
3099  * @ingroup Elm_Gesture_Layer
3100  */
3101 void continues_gestures_restart(void *data, Eina_Bool states_reset)
3102 {
3103    Widget_Data *wd = elm_widget_data_get(data);
3104    if (!wd) return;
3105
3106    /* Run through events to restart gestures */
3107    Gesture_Info *g;
3108    Eina_Bool n_momentum, n_lines, n_flicks, zoom, rotate;
3109    /* We turn-on flag for finished, aborted, not-started gestures */
3110    g = wd->gesture[ELM_GESTURE_MOMENTUM];
3111    n_momentum = (g) ? ((states_reset) | ((g->state != ELM_GESTURE_STATE_START)
3112          && (g->state != ELM_GESTURE_STATE_MOVE))) : EINA_FALSE;
3113    if (n_momentum)
3114      {
3115         _momentum_test_reset(wd->gesture[ELM_GESTURE_MOMENTUM]);
3116         _set_state(g, ELM_GESTURE_STATE_UNDEFINED, NULL, EINA_FALSE);
3117         SET_TEST_BIT(g);
3118      }
3119
3120    g = wd->gesture[ELM_GESTURE_N_LINES];
3121    n_lines = (g) ? ((states_reset) | ((g->state != ELM_GESTURE_STATE_START)
3122          && (g->state != ELM_GESTURE_STATE_MOVE))) : EINA_FALSE;
3123    if (n_lines)
3124      {
3125         _line_test_reset(wd->gesture[ELM_GESTURE_N_LINES]);
3126         _set_state(g, ELM_GESTURE_STATE_UNDEFINED, NULL, EINA_FALSE);
3127         SET_TEST_BIT(g);
3128      }
3129
3130    g = wd->gesture[ELM_GESTURE_N_FLICKS];
3131    n_flicks = (g) ? ((states_reset) | ((g->state != ELM_GESTURE_STATE_START)
3132          && (g->state != ELM_GESTURE_STATE_MOVE))) : EINA_FALSE;
3133    if (n_flicks)
3134      {
3135         _line_test_reset(wd->gesture[ELM_GESTURE_N_FLICKS]);
3136         _set_state(g, ELM_GESTURE_STATE_UNDEFINED, NULL, EINA_FALSE);
3137         SET_TEST_BIT(g);
3138      }
3139
3140    g = wd->gesture[ELM_GESTURE_ZOOM];
3141    zoom = (g) ? ((states_reset) | ((g->state != ELM_GESTURE_STATE_START)
3142          && (g->state != ELM_GESTURE_STATE_MOVE))) : EINA_FALSE;
3143    if (zoom)
3144      {
3145         _zoom_test_reset(wd->gesture[ELM_GESTURE_ZOOM]);
3146         _set_state(g, ELM_GESTURE_STATE_UNDEFINED, NULL, EINA_FALSE);
3147         SET_TEST_BIT(g);
3148      }
3149
3150    g = wd->gesture[ELM_GESTURE_ROTATE];
3151    rotate = (g) ? ((states_reset) | ((g->state != ELM_GESTURE_STATE_START)
3152          && (g->state != ELM_GESTURE_STATE_MOVE))) : EINA_FALSE;
3153    if (rotate)
3154      {
3155         _rotate_test_reset(wd->gesture[ELM_GESTURE_ROTATE]);
3156         _set_state(g, ELM_GESTURE_STATE_UNDEFINED, NULL, EINA_FALSE);
3157         SET_TEST_BIT(g);
3158      }
3159 }
3160
3161 /**
3162  * @internal
3163  *
3164  * This function the core-function where input handling is done.
3165  * Here we get user input and stream it to gesture testing.
3166  * We notify user about any gestures with new state:
3167  * Valid states are:
3168  * START - gesture started.
3169  * MOVE - gesture is ongoing.
3170  * END - gesture was completed.
3171  * ABORT - gesture was aborted after START, MOVE (will NOT be completed)
3172  *
3173  * We also check if a gesture was detected, then reset event history
3174  * If no gestures were found we reset gesture test flag
3175  * after streaming event-history to widget.
3176  * (stream to the widget all events not consumed as a gesture)
3177  *
3178  * @param data The gesture-layer object.
3179  * @param event_info Pointer to recent input event.
3180  * @param event_type Recent input event type.
3181  *
3182  * @ingroup Elm_Gesture_Layer
3183  */
3184 static void
3185 _event_process(void *data, Evas_Object *obj __UNUSED__,
3186       void *event_info, Evas_Callback_Type event_type)
3187 {
3188    Pointer_Event _pe;
3189    Pointer_Event *pe = NULL;
3190    Widget_Data *wd = elm_widget_data_get(data);
3191    if (!wd) return;
3192
3193 #if defined(DEBUG_GESTURE_LAYER)
3194    int i;
3195    Gesture_Info *g;
3196    printf("Gesture | State | is tested\n");
3197    for(i = ELM_GESTURE_N_TAPS; i < ELM_GESTURE_LAST; i++)
3198      {
3199         g = wd->gesture[i];
3200         if(g)
3201           printf("   %d       %d       %d\n", i, g->state, g->test);
3202      }
3203 #endif
3204
3205    /* Start testing candidate gesture from here */
3206    if (_make_pointer_event(data, event_info, event_type, &_pe))
3207      pe = &_pe;
3208
3209    if (IS_TESTED(ELM_GESTURE_N_LONG_TAPS))
3210      _n_long_tap_test(data, pe, event_info, event_type,
3211            ELM_GESTURE_N_LONG_TAPS);
3212
3213    /* This takes care of single, double and tripple tap */
3214    _tap_gestures_test(data, pe, event_info, event_type);
3215
3216    if (IS_TESTED(ELM_GESTURE_MOMENTUM))
3217      _momentum_test(data, pe, event_info, event_type,
3218            ELM_GESTURE_MOMENTUM);
3219
3220    if (IS_TESTED(ELM_GESTURE_N_LINES))
3221      _n_line_test(data, pe, event_info, event_type, ELM_GESTURE_N_LINES);
3222
3223    if (IS_TESTED(ELM_GESTURE_N_FLICKS))
3224      _n_line_test(data, pe, event_info, event_type, ELM_GESTURE_N_FLICKS);
3225
3226    if (_elm_config->glayer_zoom_finger_enable && IS_TESTED(ELM_GESTURE_ZOOM))
3227      _zoom_test(data, pe, event_info, event_type, ELM_GESTURE_ZOOM);
3228
3229    if (IS_TESTED(ELM_GESTURE_ZOOM))
3230      _zoom_with_wheel_test(data, event_info, event_type, ELM_GESTURE_ZOOM);
3231
3232    if (_elm_config->glayer_rotate_finger_enable && IS_TESTED(ELM_GESTURE_ROTATE))
3233      _rotate_test(data, pe, event_info, event_type, ELM_GESTURE_ROTATE);
3234
3235    if (_get_event_flag(event_info, event_type) & EVAS_EVENT_FLAG_ON_HOLD)
3236      _event_history_add(data, event_info, event_type);
3237    else if ((event_type == EVAS_CALLBACK_MOUSE_UP) ||
3238          (event_type == EVAS_CALLBACK_MULTI_UP))
3239      {
3240         Eina_List *pending = _device_is_pending(wd->pending, event_info, event_type);
3241         if (pending)
3242           {
3243              consume_event(wd, event_info, event_type, EVAS_EVENT_FLAG_ON_HOLD);
3244              _event_history_add(data, event_info, event_type);
3245           }
3246      }
3247
3248    /* we maintain list of touched devices              */
3249    /* We also use move to track current device x.y pos */
3250    if ((event_type == EVAS_CALLBACK_MOUSE_DOWN) ||
3251          (event_type == EVAS_CALLBACK_MULTI_DOWN) ||
3252          (event_type == EVAS_CALLBACK_MOUSE_MOVE) ||
3253          (event_type == EVAS_CALLBACK_MULTI_MOVE))
3254      {
3255         wd->touched = _add_touched_device(wd->touched, pe);
3256      }
3257    else if ((event_type == EVAS_CALLBACK_MOUSE_UP) ||
3258          (event_type == EVAS_CALLBACK_MULTI_UP))
3259      {
3260         wd->touched = _remove_touched_device(wd->touched, pe);
3261      }
3262
3263    /* Report current states and clear history if needed */
3264    Eina_Bool states_reset = _clear_if_finished(data);
3265    if (wd->glayer_continues_enable)
3266      continues_gestures_restart(data, states_reset);
3267 }
3268
3269
3270 /**
3271  * For all _mouse_* / multi_* functions wethen send this event to
3272  * _event_process function.
3273  *
3274  * @param data The gesture-layer object.
3275  * @param event_info Pointer to recent input event.
3276  *
3277  * @ingroup Elm_Gesture_Layer
3278  */
3279 static void
3280 _mouse_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3281       void *event_info)
3282 {
3283    Widget_Data *wd = elm_widget_data_get(data);
3284    if (!wd) return;
3285    if (((Evas_Event_Mouse_Down *) event_info)->button != 1)
3286      return; /* We only process left-click at the moment */
3287
3288    _event_process(data, obj, event_info, EVAS_CALLBACK_MOUSE_DOWN);
3289 }
3290
3291 static void
3292 _mouse_move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3293       void *event_info)
3294 {
3295    Widget_Data *wd = elm_widget_data_get(data);
3296    if (!wd) return;
3297
3298    _event_process(data, obj, event_info, EVAS_CALLBACK_MOUSE_MOVE);
3299 }
3300
3301 static void
3302 _key_down_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3303       void *event_info)
3304 {
3305    Widget_Data *wd = elm_widget_data_get(data);
3306    if (!wd) return;
3307
3308    _event_process(data, obj, event_info, EVAS_CALLBACK_KEY_DOWN);
3309 }
3310
3311 static void
3312 _key_up_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3313       void *event_info)
3314 {
3315    Widget_Data *wd = elm_widget_data_get(data);
3316    if (!wd) return;
3317
3318    _event_process(data, obj, event_info, EVAS_CALLBACK_KEY_UP);
3319 }
3320
3321 static void
3322 _mouse_up(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3323       void *event_info)
3324 {
3325    Widget_Data *wd = elm_widget_data_get(data);
3326    if (!wd) return;
3327
3328    if (((Evas_Event_Mouse_Up *) event_info)->button != 1)
3329      return; /* We only process left-click at the moment */
3330
3331    _event_process(data, obj, event_info, EVAS_CALLBACK_MOUSE_UP);
3332 }
3333
3334 static void
3335 _mouse_wheel(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3336       void *event_info)
3337 {
3338    Widget_Data *wd = elm_widget_data_get(data);
3339    if (!wd) return;
3340
3341    _event_process(data, obj, event_info, EVAS_CALLBACK_MOUSE_WHEEL);
3342 }
3343
3344 static void
3345 _multi_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3346       void *event_info)
3347 {
3348    Widget_Data *wd = elm_widget_data_get(data);
3349    if (!wd) return;
3350
3351    _event_process(data, obj, event_info, EVAS_CALLBACK_MULTI_DOWN);
3352 }
3353
3354 static void
3355 _multi_move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3356       void *event_info)
3357 {
3358    Widget_Data *wd = elm_widget_data_get(data);
3359    if (!wd) return;
3360
3361    _event_process(data, obj, event_info, EVAS_CALLBACK_MULTI_MOVE);
3362 }
3363
3364 static void
3365 _multi_up(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
3366       void *event_info)
3367 {
3368    Widget_Data *wd = elm_widget_data_get(data);
3369    if (!wd) return;
3370
3371    _event_process(data, obj, event_info, EVAS_CALLBACK_MULTI_UP);
3372 }
3373
3374 EAPI Eina_Bool
3375 elm_gesture_layer_hold_events_get(Evas_Object *obj)
3376 {
3377    Widget_Data *wd = elm_widget_data_get(obj);
3378    if (!wd) return EINA_FALSE;
3379
3380    return !wd->repeat_events;
3381 }
3382
3383 EAPI void
3384 elm_gesture_layer_hold_events_set(Evas_Object *obj, Eina_Bool r)
3385 {
3386    Widget_Data *wd = elm_widget_data_get(obj);
3387    if (!wd) return;
3388
3389    wd->repeat_events = !r;
3390 }
3391
3392 EAPI void
3393 elm_gesture_layer_zoom_step_set(Evas_Object *obj, double s)
3394 {
3395    Widget_Data *wd = elm_widget_data_get(obj);
3396    if (!wd) return;
3397
3398    if (s < 0.0)
3399      return;
3400
3401    wd->zoom_step = s;
3402 }
3403
3404 EAPI void
3405 elm_gesture_layer_rotate_step_set(Evas_Object *obj, double s)
3406 {
3407    Widget_Data *wd = elm_widget_data_get(obj);
3408    if (!wd) return;
3409
3410    if (s < 0.0)
3411      return;
3412
3413    wd->rotate_step = s;
3414 }
3415
3416 EAPI Eina_Bool
3417 elm_gesture_layer_attach(Evas_Object *obj, Evas_Object *t)
3418 {
3419    Widget_Data *wd = elm_widget_data_get(obj);
3420    if (!wd) return EINA_FALSE;
3421
3422    if (!t)
3423      return EINA_FALSE;
3424
3425    /* if was attached before, unregister callbacks first */
3426    if (wd->target)
3427      _unregister_callbacks(obj);
3428
3429    wd->target = t;
3430
3431    _register_callbacks(obj);
3432    return EINA_TRUE;
3433 }
3434
3435 EAPI void
3436 elm_gesture_layer_cb_set(Evas_Object *obj, Elm_Gesture_Types idx,
3437       Elm_Gesture_State cb_type, Elm_Gesture_Event_Cb cb, void *data)
3438 {
3439    Widget_Data *wd = elm_widget_data_get(obj);
3440    Gesture_Info *p;
3441    if (!wd) return;
3442
3443    if (!wd->gesture[idx])
3444      wd->gesture[idx] = calloc(1, sizeof(Gesture_Info));
3445    if (!wd->gesture[idx]) return;
3446
3447    p = wd->gesture[idx];
3448    p->obj = obj;
3449    p->g_type = idx;
3450    p->fn[cb_type].cb = cb;
3451    p->fn[cb_type].user_data = data;
3452    p->state = ELM_GESTURE_STATE_UNDEFINED;
3453    SET_TEST_BIT(p);
3454 }
3455
3456 static void
3457 _disable_hook(Evas_Object *obj)
3458 {
3459    if (elm_widget_disabled_get(obj))
3460      _unregister_callbacks(obj);
3461    else
3462      _register_callbacks(obj);
3463 }
3464
3465 EAPI Evas_Object *
3466 elm_gesture_layer_add(Evas_Object *parent)
3467 {
3468    Evas_Object *obj;
3469    Evas *e;
3470    Widget_Data *wd;
3471
3472    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
3473
3474    ELM_SET_WIDTYPE(widtype, "gesture_layer");
3475    elm_widget_type_set(obj, "gesture_layer");
3476    elm_widget_sub_object_add(parent, obj);
3477    elm_widget_data_set(obj, wd);
3478    elm_widget_del_hook_set(obj, _del_hook);
3479    elm_widget_disable_hook_set(obj, _disable_hook);
3480
3481    wd->target = NULL;
3482    wd->line_min_length =_elm_config->glayer_line_min_length * elm_finger_size_get();
3483    wd->zoom_distance_tolerance = _elm_config->glayer_zoom_distance_tolerance * elm_finger_size_get();
3484    wd->line_distance_tolerance = _elm_config->glayer_line_distance_tolerance * elm_finger_size_get();
3485    wd->zoom_finger_factor = _elm_config->glayer_zoom_finger_factor;
3486    wd->zoom_wheel_factor = _elm_config->glayer_zoom_wheel_factor; /* mouse wheel zoom steps */
3487    wd->rotate_angular_tolerance = _elm_config->glayer_rotate_angular_tolerance;
3488    wd->line_angular_tolerance = _elm_config->glayer_line_angular_tolerance;
3489    wd->flick_time_limit_ms = _elm_config->glayer_flick_time_limit_ms;
3490    wd->long_tap_start_timeout = _elm_config->glayer_long_tap_start_timeout;
3491    wd->repeat_events = EINA_TRUE;
3492    wd->glayer_continues_enable = _elm_config->glayer_continues_enable;
3493
3494 #if defined(DEBUG_GESTURE_LAYER)
3495    printf("size of Gestures = <%d>\n", sizeof(wd->gesture));
3496    printf("initial values:\n\tzoom_finger_factor=<%f>\n\tzoom_distance_tolerance=<%d>\n\tline_min_length=<%d>\n\tline_distance_tolerance=<%d>\n\tzoom_wheel_factor=<%f>\n\trotate_angular_tolerance=<%f>\n\twd->line_angular_tolerance=<%f>\n\twd->flick_time_limit_ms=<%d>\n\twd->long_tap_start_timeout=<%f>\n\twd->zoom_step=<%f>\n\twd->rotate_step=<%f>\n\twd->glayer_continues_enable=<%d>\n ", wd->zoom_finger_factor, wd->zoom_distance_tolerance, wd->line_min_length, wd->line_distance_tolerance, wd->zoom_wheel_factor, wd->rotate_angular_tolerance, wd->line_angular_tolerance, wd->flick_time_limit_ms, wd->long_tap_start_timeout, wd->zoom_step, wd->rotate_step, wd->glayer_continues_enable);
3497 #endif
3498    memset(wd->gesture, 0, sizeof(wd->gesture));
3499
3500    return obj;
3501 }