我想注入触摸事件,例如" touchstart"," touchmove"," touchend"进入QWebEngineView。然后,我应该能够捕获在webview中运行的html页面中的事件,例如使用如下的jquery:
$(document).on("touchstart",function() {
console.log("Touchstart");
});
我尝试使用QMouseEvents,如this SO解释中所解释的那样有效。但不是QTouchEvents。
有什么建议吗?