Triggering ClickEvent for more than one widget
Hello,
I am using slideMenu widget and it works fine. Now I am trying to open this widget by a gesture. Normally I would override gestureEventCallback in my View- and actually I did it but it does not work well. I have two slide menus on top and on the left and if I slide from the left to right at 30o angle I get 2 gestures- HORIZONTAL and VERTICAL, always in the same order therefore it is impossible for me to detect if I should open top or left menu.
I came to idea that I can first check the click event for pressed, save the coordinates, wait for gesture event and then wait for released click event- in that combination I am able to get all data to find out if I should open top or left menu. But If I override click event in my view I can not trigger buttons which are present in the view.
So my question is- is it possible to, after I trigger view's clickEventHandler pass the event further to trigger next widget in the area where the click occured? Is TouchGFX capable of doing that?
