如何在 QGraphicsView 中的 QGraphicsScene 上绘制椭圆/圆

发布于 2024-09-19 01:34:53 字数 287 浏览 4 评论 0原文

我有一个带有 QGraphicsScene 的 QGraphicsView 。该 QGraphicsScene 包含一个 QPixmap。可以拖动场景。在该场景之上,我有一个带有 QLabels、QPushButtons 和其他东西的 HUD。当我拖动场景时,HUD 元素永远不会改变其位置。到目前为止一切都很完美。但现在我需要向此 HUD 添加一个新元素,即椭圆/圆形。 但我尝试过的所有东西都无法正常工作。 问题是,如果您使用鼠标越过该圆圈,则仍然可以抓取并拖动场景。所以我只需要一个可见的圆圈,鼠标或任何其他操作完全忽略它。 我怎样才能做到这一点?

I have a QGraphicsView with a QGraphicsScene. That QGraphicsScene contains a QPixmap. It is possible to drag the scene. On top of that scene I have a HUD with QLabels, QPushButtons and other stuff. When I drag the scene around, the HUD elements never change their position. So far it works all perfect. But now I need to add a new element to this HUD, an ellipse/circle.
But all the stuff I tried, isn't working properly.
The problem, if you are over that circle, with the mouse, it must be still possible to grab and drag the scene. So I need only a visible circle, that is completely ignored by the mouse or any other action.
How can I do that?

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

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

发布评论

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

评论(1

稳稳的幸福 2024-09-26 01:34:53

如果使用 setEnabled(false) 将圆形小部件设置为禁用无法给您带来所需的效果,请尝试对其调用 setAttribute(Qt::WA_TransparentForMouseEvents, true)

If setting the circle widget to disabled using setEnabled(false) doesn't give you the desired effect, try calling setAttribute(Qt::WA_TransparentForMouseEvents, true) on it.

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