qt:我想禁用为 QTreeView 自动设置的键绑定

发布于 2024-10-02 03:05:48 字数 155 浏览 5 评论 0原文

我正在使用 PyQt4 和 QTreeView (尽管这可以很容易地直接应用于 qt)。

现在有默认的键绑定,可以使用右箭头和左箭头控制分支的展开/折叠。不幸的是,这些绑定并不理想,我想禁用它们。我不知道该怎么做。有谁知道如何禁用(或重新分配)QTreeView 上的默认键绑定?

I am using PyQt4 and a QTreeView (although this could just as easily apply to qt directly).

Right now there are default key bindings that control the expanding/collapsing of branches using the right and left arrows. Unfortunately, these bindings are not ideal and I would like to disable them. I have not been able to figure out how to do that. Does anyone know how to disable (or reassign) the default key bindings on a QTreeView?

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

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

发布评论

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

评论(1

晨与橙与城 2024-10-09 03:05:48

您有两种可能的选择:
1)重新实现QTreeView的keyPressEvent并检查按下的键是否是Qt::Key_UpQt::Key_Down

2) 您可以安装 eventFilter 并检查事件是否为 < a href="http://doc.qt.nokia.com/4.6/qevent.html#Type-enum" rel="noreferrer">QEvent::KeyPress 并且该键与 Qt::Key_UpQt::Key_Down

我不了解 PyQt,所以我不能给你 Python 代码,但我希望我已经足够清楚了。

There are two possible options for you:
1) Reimplement the keyPressEvent of QTreeView and check if the key pressed are either Qt::Key_Up or Qt::Key_Down.

2) You could install an eventFilter and check if the event is a QEvent::KeyPress and that the key matches either Qt::Key_Up or Qt::Key_Down.

I don't know PyQt so I can't give you code in Python, but I hope I have been clear enough.

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