如何在 QGraphicsView 上锚定 QGraphicsWidget/Item(使它们静态)
我想做一个像平视显示器这样的东西。我有一个带有巨大 QPixmap
的 QGraphicsScene
,我将其添加到了一个小得多的 QGraphicsView
中。现在我需要添加一些控制元素,例如 QLabel
、QPushButton
和 QGraphicsEllipseItem
。我认为这不是问题。我发现这个有用的页面图形视图类。但是我如何将这个控制元素锚定到视图上,或者更好地说我如何不锚定它们?当我拖动QPixmap
时,我不希望HUD随着QPixmap
一起移出QGraphicsView
。 我需要做什么,才能解决这个问题。希望有人能帮助我。
I want to make something like a hud. I have a QGraphicsScene
with a huge QPixmap
, that I added to a much smaller QGraphicsView
. Now I need to add some control elements, like QLabel
, QPushButton
and QGraphicsEllipseItem
. That's, I think, is not a problem. I found this helpful page Graphics View Classes. But how do I anchor this control elements to the View or maybe better said how do I not anchor them? When I drag the QPixmap
, then I don't want that the hud is moving with the QPixmap
out of the QGraphicsView
.
What do I need to do, to solve this problem. Hope someone can help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该只需要创建小部件并在构造函数中指定 QGraphicsView ,如下所示:
You should just have to create your widgets and specify the
QGraphicsView
in the constructor like this: