我正在构建一个 PyQt QGraphicsView 项目,其中一些 QGraphicItems 可以在不同的 QGraphicsItemGroups 之间移动。为此,我使用“新”父 itemGroup 的 addItemToGroup() 方法。
这很好用,但前提是我没有在我的自定义子项类中定义 itemChange() 方法。一旦我定义了该方法(即使我只是将函数调用传递给超类),无论我尝试什么,childItems 都不会添加到 ItemGroups 中。
class MyChildItem(QtGui.QGraphicsItemGroup):
def itemChange(self, change, value):
# TODO: Do something for certain cases of ItemPositionChange
return QtGui.QGraphicsItemGroup.itemChange(self, change, value)
#return super().itemChange(change, value) # Tried this variation too
#return value # Tried this too, should work according to QT doc
我只是太愚蠢了,无法在 Python 中正确调用超类方法,还是 QT/PyQT 魔法中的某个地方出现了问题?
我将 Python 3.3 与 PyQt 4.8 和 QT 5 一起使用。