In my App I have pushed a Scroller in the Naviframe.
In the Scroller I have added a gesture layer and attached to it. So that a touch gesture can be implemented.
g = elm_gesture_layer_add(bubble_scroller); elm_gesture_layer_attach(g, bubble_scroller);
then I have the following Call Backs
elm_gesture_layer_cb_set(g, ELM_GESTURE_MOMENTUM, ELM_GESTURE_STATE_START, _momentum_start, bubble_scroller); elm_gesture_layer_cb_set(g, ELM_GESTURE_MOMENTUM, ELM_GESTURE_STATE_MOVE, _momentum_move, bubble_scroller);
In the Implemetation of the call backs i have shown the the points recognised by the gesture layer.
by this process i can draw what i want by moving my finger In the app screen.
But there is a problem showing the points. When I move my finger from the main window ( where the scroller is as well as the gesture layer attached) to the title bar the gesture layer also recognises the Title bar points. But it should not recognise the Title bar points. As I have only attached the gesture layer in the Scroller the main window of the App. But the layer recognises the whole screen including the Title Bar.
Please give me some idea so that I can only recognise a specific object points. Not the whole screen points.