我使用QPropertyAnimation对象以下列方式移动某些控件:
QPropertyAnimation* animation = new QPropertyAnimation(message_, "pos");
animation->setDuration(2000);
animation->setStartValue(current_pos);
animation->setEndValue(new_pos);
animation->setEasingCurve(QEasingCurve::Linear);
animation->start(QAbstractAnimation::DeleteWhenStopped);
asl::checkedConnect(animation, SIGNAL(finished()), this, SLOT(slotScrollingFinished()));
对象通过每隔几毫秒执行AFAIK并修改pos属性的值直到持续时间到期并达到结束值。
我想知道是否有办法修改内部QPropertyAnimation对象的间隔计时器,以改变它在这2秒持续时间内访问pos属性的次数。
我无法在文档中看到任何内容。
答案 0 :(得分:0)
你可以这样做:
#include <qt/src/corelib/animation/qabstractanimation_p.h>
QUnifiedTimer::instance()->setTimingInterval(new_interval);