我有一个QGraphicsView
我正在画一个QGraphicsItem
和QGraphicsTextItem
。
我已经为编辑长文本设置了ItemIsMovable
标志QGraphicsTextItem
。
这里是我的担忧。当我移动QGraphicsTextItem
以查看长文本时,它也QGraphicsText
向左移动。
但我只希望QGraphicsTextItem
是可移动的。
我想固定的位置QGraphicsItem
?我怎么做?
编辑:
这是我的代码的输出。我QGraphicsView
在我的应用程序的左上角有这个。这个的 ViewportQGraphicsView
是QGraphicsItem
.
当我单击QGraphicsTextItem
并将光标向右移动以查看文本时,QGraphicsItem
如图所示,它也会移动并隐藏。
我该如何解决这个问题QGraphicsItem
?