在任何小部件上模拟 QKeyEvent InFocus

发布于 2024-11-16 05:01:27 字数 418 浏览 4 评论 0原文

我想在当前聚焦的小部件上模拟QKeyEvent。该小部件可能不属于我的应用程序,即使该小部件可能根本不是 Qt 部件。我现在只想在任何焦点小部件上模拟 QKeyEvent。

我试过 QApplication::postEvent(DG::Util::_desktopWidget, ev); 其中 DG::Util::_desktopWidget 是主桌面小部件,

QDesktopWidget* desktopWidget = new QDesktopWidget;
DG::Util::_desktopWidget = desktopWidget->screen(desktopWidget->primaryScreen());

但这不起作用。

I want to Simulate a QKeyEvent on the Currently Focused Widget. That widget Might not belong to My Application even the widget may not be an Qt Widget at all. I just want to Simulate a QKeyEvent On Whatever Widget In Focus now.

I've tried QApplication::postEvent(DG::Util::_desktopWidget, ev);
Where DG::Util::_desktopWidget is the Primary Desktop Widget

QDesktopWidget* desktopWidget = new QDesktopWidget;
DG::Util::_desktopWidget = desktopWidget->screen(desktopWidget->primaryScreen());

But This doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光下慵懒的猫 2024-11-23 05:01:28

使用 Qt,您只能控制属于您的应用程序的小部件。
因此,您无法将 QKeyEvent 发送到非 Qt 应用程序或不同进程的 Qt 应用程序。

With Qt you can only control widgets belonging to your app.
Therefore you can't send QKeyEvent to non-Qt apps, or Qt apps which are different processes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文