Qt Event Propagation in QWebEngineView(QWebEngineView 中的 Qt 事件传播)
问题描述
我有一个名为 generate_input_event
的函数.我正在尝试使用此功能来模拟 QWebEngineView 中的按键.
I have a function named generate_input_event
. I'm trying to use this function to simulate a keypress within a QWebEngineView.
每当我运行我的程序并在我的 QWebEngineView 中突出显示一个输入字段,并调用 generate_input_event
时,预计它会将该字母输入到输入字段中.
Whenever I run my program and highlight an input field within my QWebEngineView, and invoke generate_input_event
it is expected that it will type that letter into the input field.
我还设置了一个事件过滤器来捕获所有按键,除了我人工生成的按键.
I also set-up an event filter to capture everything all key presses EXCEPT for my artificially generated ones.
但是,当我实际运行我的代码时,我得到以下输出:
However when I actually run my code, this is the following output I get:
输出看起来是正确的,但是,QWebEngineView 的输入字段实际上从来没有得到一个由 generate_input_event
人为生成的字母.
The output looks correct, HOWEVER, the input field of the QWebEngineView never actually gets a letter that was artificially generated by generate_input_event
.
附:如果您出于上下文原因希望查看整个文件/项目,请在此处查看此分支/文件:https://github.com/atlas-engineer/next/blob/generate_events/ports/pyqt-webengine/utility.py
P.S. Should you wish to see the whole of the file/project for reasons of context, please look at this branch/file here: https://github.com/atlas-engineer/next/blob/generate_events/ports/pyqt-webengine/utility.py
推荐答案
可以通过以下最小示例演示发布和侦听 QWebengineview 事件的正确方法:
The correct way to post and listen to events for a QWebengineview can be demonstrated with the following minimal example:
这篇关于QWebEngineView 中的 Qt 事件传播的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!