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