如何在Qt5中将键盘事件伪造为小部件



我已经为我的kiosk应用程序制作了一个自定义虚拟键盘小部件,现在是时候让它生成假键盘事件并将它们提供给所选的QLineEdit了。

我做了以下事情:

// target is the QWidget to receive the events
// k is the Qt::Key (keycode) I want to send (Testing with an 'A')
Qt::Key k=Qt::Key_A;
if(0!=target){
    //According to docs this will be freed once posted
    QKeyEvent * press=new QKeyEvent(QKeyEvent::KeyPress, (int )k,0);
    QKeyEvent * release=new QKeyEvent(QKeyEvent::KeyRelease, (int )k,0);
    //Give the target focus just to be sure it is available for input
    target->setFocus();
    //Post the events (queue up and let the target consume them when the eventloop gets around to the target)
    QCoreApplication::postEvent ( target, press) ;
    QCoreApplication::postEvent ( target, release) ;
}

我看到目标小部件接收焦点,但是没有像我期望的那样在输入字段中键入字母。我做错了什么?哪些假设是错误的?

PS:我知道这可以通过使用现有的虚拟键盘或至少使用平台界面来解决,就像这篇文章中所做的那样。在我们的方法中,我们决定将键盘构建到应用程序中,以获得对UX和键盘设计的完全控制。

谢谢!

既然没有人站出来,我将试着提供一些结束。

Qt5附带了一个名为testlib的测试工具库。它有各种各样的好处,以方便创建,管理和运行Qt应用程序的单元测试。在这些工具中,有一组用于发送虚假事件的函数,例如虚假输入文本、鼠标点击等。它非常全面,涵盖了许多用例。由于Qt开发人员在内部使用它来测试Qt本身,它也是经过生产验证的代码。

我只是从那里复制了我需要的内容

相关内容

  • 没有找到相关文章

最新更新