PDA

View Full Version : Touch Events Are ignored?



kanika gupta
5th April 2016, 08:42
I have a device which supports touch.
I am accessing a content "wellsfargo.com" or any other content which has to perform some action "ontouchstart".
But, the content is not getting any such event.
This is because all the touch events are ignored in Qt through QWidget?

anda_skoa
5th April 2016, 09:26
Easy enough to check:

1) create a simple widget application
2a) override the widget's event() method
2b) install a global event filter
3) check if it gets any of the touch related event types

Cheers,
_