Home | History | Annotate | Download | only in qt

Lines Matching refs:anim

370         if (QAbstractAnimation* anim = it->data())
371 delete anim;
1384 AnimationQtBase(GraphicsLayerQtImpl* layer, const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const QString & name)
1388 , m_duration(anim->duration() * 1000)
1389 , m_isAlternate(anim->direction() == Animation::AnimationDirectionAlternate)
1391 , m_webkitAnimation(anim)
1427 AnimationQt(GraphicsLayerQtImpl* layer, const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const QString & name)
1428 : AnimationQtBase(layer, values, boxSize, anim, name)
1437 keyframeValue.timingFunction = anim->timingFunction().get();
1519 TransformAnimationQt(GraphicsLayerQtImpl* layer, const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const QString & name)
1520 : AnimationQt<TransformOperations>(layer, values, boxSize, anim, name)
1590 OpacityAnimationQt(GraphicsLayerQtImpl* layer, const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const QString& name)
1591 : AnimationQt<qreal>(layer, values, boxSize, anim, name)
1630 bool GraphicsLayerQt::addAnimation(const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const String& keyframesName, double timeOffset)
1632 if (!anim->duration() || !anim->iterationCount())
1642 if (curAnimation && curAnimation->m_webkitAnimation == anim)
1650 newAnim = new OpacityAnimationQt(m_impl.get(), values, boxSize, anim, keyframesName);
1653 newAnim = new TransformAnimationQt(m_impl.get(), values, boxSize, anim, keyframesName);
1660 newAnim->setLoopCount(anim->iterationCount());
1661 newAnim->m_fillsForwards = anim->fillsForwards();
1670 if (anim->fillsBackwards())
1691 AnimationQtBase* anim = static_cast<AnimationQtBase*>(it->data());
1692 if (anim && anim->m_webkitPropertyID == id) {
1694 anim->stop();
1695 anim->deleteLater();
1709 AnimationQtBase* anim = static_cast<AnimationQtBase*>(it->data());
1710 if (anim && anim->m_keyframesName == QString(name)) {
1712 anim->stop();
1713 anim->deleteLater();
1727 AnimationQtBase* anim = static_cast<AnimationQtBase*>(it->data());
1728 if (anim && anim->m_keyframesName == QString(name)) {
1730 anim->setCurrentTime(timeOffset * 1000);
1731 anim->pause();
1744 if (QAbstractAnimation* anim = it->data())
1745 anim->pause();
1756 if (QAbstractAnimation* anim = it->data())
1757 anim->resume();