在图形视图中设置按钮焦点

发布于 2024-09-10 23:05:32 字数 75 浏览 4 评论 0原文

我在 Qgraphicsscene 中放置了一些按钮,但我不知道如何从键盘导航到该按钮。

如何将焦点设置到键盘上的按钮?

I have placed a few buttons in a Qgraphicsscene, but I don’t know how to navigate to the button from a keyboard.

How would I set the focus to a button from the keyboard?

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

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

发布评论

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

评论(1

水染的天色ゝ 2024-09-17 23:05:32

我假设您使用了 QGraphicsScene::addWidget()< /a> 将按钮添加到场景中?它给你一个代理对象,QGraphicsProxyWidget * ,继承 QGraphicsItem::setFocus()。但请记住,它需要设置 ItemIsFocusable 标志并且也需要可见且处于活动状态。

另外(来自 setFocus() 文档):

由于调用此函数,该项目将在具有 focusReason 的事件中获得焦点。如果另一个项目已经获得焦点,则该项目将首先收到焦点移出事件,表明它已失去输入焦点。

I assume that you used QGraphicsScene::addWidget() to add the button to the scene? It gives you a proxy object back, QGraphicsProxyWidget *, which inherits QGraphicsItem::setFocus(). But remember that it needs to have set the ItemIsFocusable flag and needs to be visible and active as well.

Additionally (from the setFocus() documentation):

As a result of calling this function, this item will receive a focus in event with focusReason. If another item already has focus, that item will first receive a focus out event indicating that it has lost input focus.

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