在PyQt中使用QPropertyAnimation的QGraphicsObject

时间:2012-05-18 14:20:08

标签: pyqt qgraphicsitem

我对QGraphicsObject的QPropertyAnimation有一个奇怪的错误。这是代码,Pyqt v.4.8.6,Qt 4.6。如您所见,没有发出“valueChanged”信号。 这是一个错误还是我做错了什么?提前谢谢!

import sys

from PyQt4.QtGui import *
from PyQt4.QtCore import *

from functools import partial

class GObject(QGraphicsObject): 

    def boundingRect(self): 
        return QRectF(0, 0, 10, 10)

    def paint(self, p, *args): 
        p.drawRect(self.boundingRect()) 

    def animatePos(self, start, end):
        print 'Animating..'
        anim = QPropertyAnimation(self, 'pos')
        anim.setDuration(400)
        anim.setStartValue(start)
        anim.setEndValue(end)
        self.connect(anim, SIGNAL('valueChanged(const QVariant&)'), self.go)
        #self.connect(anim, SIGNAL('stateChanged ( QAbstractAnimation::State, QAbstractAnimation::State )'),self.ttt)
        anim.start( ) #QAbstractAnimation.DeleteWhenStopped)

    def go(self, t):
        print t

class Scene_Chooser(QWidget):
    def __init__(self, parent = None):
        super(Scene_Chooser, self).__init__(parent)

        vbox = QVBoxLayout(self)
        vbox.setContentsMargins(0, 0, 0, 0)
        view = QGraphicsView(self)
        self.scene = QGraphicsScene(self) 
        obj = GObject() 
        self.scene.addItem(obj) 
        view.setScene(self.scene)

        btn = QPushButton('animate', self)
        vbox.addWidget(view)
        vbox.addWidget(btn)
        btn.clicked.connect(partial(obj.animatePos, QPointF(0,0), QPointF(10, 5)))

1 个答案:

答案 0 :(得分:1)

您没有保留对anim对象的任何引用,因此它会在它发出任何内容之前立即销毁。

同样在python中,你可以更加优雅地连接信号:

anim.valueChanged.connect(self.go)
self.anim = anim

而不是:

self.connect(anim, SIGNAL('valueChanged(const QVariant&)'), self.go)

将解决您的问题。