Home
last modified time | relevance | path

Searched refs:posAnimation (Results 1 – 3 of 3) sorted by relevance

/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtdeclarative/examples/quick/scenegraph/sgengine/
H A Dwindow.cpp81 posAnimation.setStartValue(fromPos); in Item()
82 posAnimation.setEndValue(toPos); in Item()
83 posAnimation.setDuration(duration); in Item()
84 posAnimation.start(); in Item()
91 bool isDone() const { return posAnimation.state() != QAbstractAnimation::Running; } in isDone()
94 QPointF currentPos = posAnimation.currentValue().toPointF(); in sync()
107 QVariantAnimation posAnimation; member in Item
/dports/games/knights/knights-21.12.3/src/core/
H A Ditem.cpp129 QPropertyAnimation* posAnimation = new QPropertyAnimation ( this, "pos" ); in moveAndResize() local
130 posAnimation->setDuration ( duration ); in moveAndResize()
131 posAnimation->setEasingCurve ( QEasingCurve::InOutCubic ); in moveAndResize()
132 posAnimation->setEndValue ( pos ); in moveAndResize()
133 group->addAnimation ( posAnimation ); in moveAndResize()
/dports/math/cantor/cantor-21.12.3/src/
H A Dworksheetentry.cpp44 QPropertyAnimation* posAnimation; member
549 m_animation->posAnimation = nullptr; in animateSizeChange()
582 m_animation->posAnimation = nullptr; in fadeInItem()
621 m_animation->posAnimation = nullptr; in fadeOutItem()
648 if (m_animation->posAnimation) { in endAnimation()
649 const QPointF& pos = m_animation->posAnimation->endValue().toPointF(); in endAnimation()
758 m_animation->posAnimation = nullptr; in startRemoving()