をどのように使用しているかはわかりませんがsetElementPositionAt
、機能します。のトリックQGraphicsScene
は をaddPath
返すことであり、そのメソッドを使用QGraphicsPathItem
して変更された でそのアイテムを更新する必要があります。QPainterPath
setPath
簡単な例:
import sys
from PySide import QtGui
class Widget(QtGui.QWidget):
def __init__(self, parent=None):
super(Widget, self).__init__(parent)
self.view = QtGui.QGraphicsView()
self.scene = QtGui.QGraphicsScene()
self.scene.setSceneRect(0,0,100,100)
self.view.setScene(self.scene)
self.button = QtGui.QPushButton('Move path')
self.button.clicked.connect(self.movePath)
layout = QtGui.QHBoxLayout()
layout.addWidget(self.view)
layout.addWidget(self.button)
self.setLayout(layout)
self.createPath()
def createPath(self):
path = QtGui.QPainterPath()
path.moveTo(25, 25)
path.lineTo(25, 75)
path.lineTo(75, 75)
path.lineTo(75, 25)
path.lineTo(25, 25)
self.pathItem = self.scene.addPath(path)
def movePath(self):
# get the path
path = self.pathItem.path()
# change some elements
# element 0: moveTo(25, 25)
# element 1: lineTo(25, 75)
# element 2: lineTo(75, 75)
# ...
path.setElementPositionAt(2, 90, 85)
path.setElementPositionAt(3, 90, 15)
# set the new path
self.pathItem.setPath(path)
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
main = Widget()
main.show()
sys.exit(app.exec_())