QGraphicsScene在选中时更改对象

时间:2017-08-30 12:15:11

标签: python qt pyside

我有一个QGraphicsScene包含一些简单的对象(在这个简化的示例中为圆圈),我想在选中时将其更改为其他对象(此处为正方形)。更具体地说,我希望父对象不会自己绘制,它们是由子对象绘制的,并且在各种情况下,但特别是在选择父对象时,我希望子对象集合为更改。这是我正在开发的整个应用程序的一个很好的概念框架。

所以我在PySide中实现了这一点,我认为它运行正常:点击它们时,圆圈会很好地变成正方形。

直到我在视图中使用RubberBandDrag选项。当橡皮筋选择到达父对象并且选择发生变化时,这会导致瞬时段错误。据推测,这是因为QT中的橡皮筋选择以某种方式保留指向在橡皮筋选择动作完成之前消失的子项目的指针。

下面的简化代码 - 首先点击对象进行测试(它变化很好),然后拖动对象 - segfault:

from PySide import QtCore,QtGui

class SceneObject(QtGui.QGraphicsItem):
    def __init__(self, scene):
        QtGui.QGraphicsItem.__init__(self, scene = scene)
        self.setFlag(QtGui.QGraphicsItem.ItemIsSelectable, True)
        self.setFlag(QtGui.QGraphicsItem.ItemHasNoContents, True)
        self.updateContents()

    def updateContents(self):
        self.prepareGeometryChange()
        for c in self.childItems():
            self.scene().removeItem(c)

        if self.isSelected():
            shape_item = QtGui.QGraphicsRectItem()
        else:
            shape_item = QtGui.QGraphicsEllipseItem()
        shape_item.setFlag(QtGui.QGraphicsItem.ItemIsSelectable, False)
        shape_item.setFlag(QtGui.QGraphicsItem.ItemStacksBehindParent,True)
        shape_item.setPen(QtGui.QPen("green"))
        shape_item.setRect(QtCore.QRectF(0,0,10,10))
        shape_item.setParentItem(self)

    def itemChange(self, change, value):
        if self.scene() != None:
            if change == QtGui.QGraphicsItem.ItemSelectedHasChanged:
                self.updateContents()
                return
        return super(SceneObject,self).itemChange(change, value)

    def boundingRect(self):
        return self.childrenBoundingRect()


class Visualiser(QtGui.QMainWindow):

    def __init__(self):
        super(Visualiser,self).__init__()

        self.viewer = QtGui.QGraphicsView(self)
        self.viewer.setDragMode(QtGui.QGraphicsView.RubberBandDrag)
        self.setCentralWidget(self.viewer)
        self.viewer.setScene(QtGui.QGraphicsScene())

        parent_item = SceneObject(self.viewer.scene())
        parent_item.setPos(50,50)



app = QtGui.QApplication([])
mainwindow = Visualiser()
mainwindow.show()
app.exec_()

所以问题:

我是否犯了一个可以直接解决的错误?

或者是在处理ItemSelectedHasChanged事件时从场景中删除对象?

有没有方便的解决方法?或者什么是一个很好的替代方法?我可以用自定义项替换QGraphicsRectItem,可以将其绘制为方形或圆形,但不能方便地覆盖我的所有用例。我可以看到我可以做到这一点,但肯定不会那么简单。

编辑 - 解决方法:

可以通过暂时保留即将删除的对象来防止此失败。这可以通过以下方式完成:

def updateContents(self):
    self.prepareGeometryChange()
    self._temp_store = self.childItems()
    for c in self.childItems():
        self.scene().removeItem(c)

    ...

然而,这是丑陋的代码,增加了内存使用量,没有真正的好处。相反,我已经开始使用this回答中建议的QGraphicsScene.selectionChanged信号。

1 个答案:

答案 0 :(得分:0)

我已经调试过了。转载于Lunix

1  qFatal(const char *, ...) *plt                                                                                                  0x7f05d4e81c40 
2  qt_assert                                                                                     qglobal.cpp                  2054 0x7f05d4ea197e 
3  QScopedPointer<QGraphicsItemPrivate, QScopedPointerDeleter<QGraphicsItemPrivate>>::operator-> qscopedpointer.h             112  0x7f05d2c767ec 
4  QGraphicsItem::flags                                                                          qgraphicsitem.cpp            1799 0x7f05d2c573b8 
5  QGraphicsScene::setSelectionArea                                                              qgraphicsscene.cpp           2381 0x7f05d2c94893 
6  QGraphicsView::mouseMoveEvent                                                                 qgraphicsview.cpp            3257 0x7f05d2cca553 
7  QGraphicsViewWrapper::mouseMoveEvent                                                          qgraphicsview_wrapper.cpp    1023 0x7f05d362be83 
8  QWidget::event                                                                                qwidget.cpp                  8374 0x7f05d2570371 

QT-无处不开源-SRC-4.8.6 / SRC / GUI / graphicsview / qgraphicsscene.cpp:2381

void QGraphicsScene::setSelectionArea(const QPainterPath &path, Qt::ItemSelectionMode mode,
                                      const QTransform &deviceTransform)
{
...
    // Set all items in path to selected.
    foreach (QGraphicsItem *item, items(path, mode, Qt::DescendingOrder, deviceTransform)) {
        if (item->flags() & QGraphicsItem::ItemIsSelectable) { // item is invalid here
            if (!item->isSelected()) 
                changed = true;
            unselectItems.remove(item);
            item->setSelected(true);
        }
    }

他们正在使用items()功能查找橡皮筋选择下的项目列表。但是如果处理过程中的一个项删除了某个项,则该项指针将变为无效。接下来调用item->flags()会导致崩溃。

作为替代方案,您可以使用QGraphicsScene::selectionChanged信号。每次选择更改时,它只会发出一次。

Qt似乎没有预料到itemChange

会有一些重大变化

这背后是prepareGeometryChange()电话的常见错误。

它的目的是在更改boundingRect之前调用它。当prepareGeometryChange被调用时,边界矩形应该是旧的,并且紧接着是新的。

这样可能会发生:

updateContents

self.prepareGeometryChange(); # calls boundingRect. old value returned
...
shape_item.setParentItem(self); # could call the boundingRect. but still old value returned!

在孩子添加后,它再次调用boundingRect,但意外的值不同。

作为解决方案,您可以添加变量

def updateContents(self):
    for c in self.childItems():
        self.scene().removeItem(c)

    if self.isSelected():
        shape_item = QtGui.QGraphicsRectItem()
    else:
        shape_item = QtGui.QGraphicsEllipseItem()
    shape_item.setFlag(QtGui.QGraphicsItem.ItemIsSelectable, False)

    shape_item.setFlag(QtGui.QGraphicsItem.ItemStacksBehindParent,True)
    shape_item.setPen(QtGui.QPen("green"))
    shape_item.setRect(QtCore.QRectF(0,0,10,10))
    shape_item.setParentItem(self) 

    self.prepareGeometryChange();
    self._childRect = self.childrenBoundingRect()

def boundingRect(self):
    return self._childRect