如何让子部件处理QKeyEvent?

发布于 2024-12-07 08:43:14 字数 358 浏览 3 评论 0 原文

我使用 QTabWidget 作为 QMainWindow 中的centralWidget,但是, keyPressEvent() 不会在 QTabWidget 的任何子小部件中触发,如果我在 QMainWindow::keyPressEvent() 中尝试以下操作,它将崩溃。

void Window::keyPressEvent(QKeyEvent *e) {
    QApplication::sendEvent( centralWidget->currentWidget() , e );
}

Window 是 QMainWindow 的一个实例。

让子部件而不是父部件处理这些事件的正确方法是什么?

I'm using a QTabWidget as centralWidget in a QMainWindow , however , keyPressEvent() won't trigger in any child widget of QTabWidget , if i try the following in that QMainWindow::keyPressEvent() , it will crash.

void Window::keyPressEvent(QKeyEvent *e) {
    QApplication::sendEvent( centralWidget->currentWidget() , e );
}

Window is an instance of QMainWindow.

What's the correct way to let child handle those events , instead of parent widgets ?

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

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

发布评论

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

评论(1

北城挽邺 2024-12-14 08:43:14

如果子窗口小部件被设计为接收和处理按键事件,那么如果它具有键盘焦点,它将接收这些事件。如果它是自定义或子类小部件,那么除了按照 keyPressEvent() 之外,您还需要执行一些其他操作.com/latest/qwidget.html#events" rel="nofollow">此处

If the child widget is designed to receive and handle key press events, then it will receive them if it has keyboard focus. If it is a custom or subclassed widget then you will need to do a few other things besides just overriding the child widget's keyPressEvent() as described here.

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