QPropertyAnimation 修改间隔
QPropertyAnimation modifying interval
我正在使用 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()));
该对象通过每隔几毫秒执行一次并修改 pos 属性 的值来工作 AFAIK,直到持续时间到期并达到最终值。
我想知道是否有办法修改内部 QPropertyAnimation 对象的间隔计时器,以更改它在这 2 秒的持续时间内访问 pos 属性 的次数。
我在文档中看不到任何内容。
你可以这样做:
#include <qt/src/corelib/animation/qabstractanimation_p.h>
QUnifiedTimer::instance()->setTimingInterval(new_interval);
我正在使用 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()));
该对象通过每隔几毫秒执行一次并修改 pos 属性 的值来工作 AFAIK,直到持续时间到期并达到最终值。
我想知道是否有办法修改内部 QPropertyAnimation 对象的间隔计时器,以更改它在这 2 秒的持续时间内访问 pos 属性 的次数。
我在文档中看不到任何内容。
你可以这样做:
#include <qt/src/corelib/animation/qabstractanimation_p.h>
QUnifiedTimer::instance()->setTimingInterval(new_interval);