QT QWebEngineView : How to inject touch events (touchstart, touchmove, touchend) ?
Unsolved
General and Desktop
-
wrote on 18 Aug 2017, 11:19 last edited by
I would like to inject touch events such as "touchstart", "touchmove", "touchend" into the QWebEngineView. Then, I should be able to capture the events in my html page running in the webview for example using jquery like below :
$(document).on("touchstart",function() {
console.log("Touchstart");
});
I tried using QMouseEvents as explained in this SO answer and it works. But not the QTouchEvents.Any suggestions ?
-
Hi
is setAttribute(Qt::WA_AcceptTouchEvents, true);
set pr default for QWebEngineView ? -
wrote on 20 Aug 2017, 04:59 last edited by
Hello,
Yes. I have set that attribute to true already. Still doesn't work.
Regards,
Raghav
1/3