Hi,
I'm passing touch events from the driver to UI application by using ewmain.c .
In ewmain.c:
1) I'm using EwProcess() function to pass touch events to applicaion (Core::Root.Drivemultitouch_hitting())
example:
Drivemultitouch_hitting(*this,bool,finger,position); to the UI, it's working fine.
Issue:
2) For 'slide touch handler' and 'scroll bar' also we are passing in the similar way (Core::Root.Drivemultitouch_movement())
example:
Drivemultitouch_movement(*this,finger,position); but this events isn't processed by EW applicaion. (protoyper it's working but in target system it won't)
Is that any separate function to pass data from the drive to EW application?