如何在 QGraphicsView 中的 QGraphicsScene 上绘制椭圆/圆
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果使用
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 callingsetAttribute(Qt::WA_TransparentForMouseEvents, true)
on it.