forked from DFRobot/Mindplus-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnimation.cpp
59 lines (52 loc) · 1.96 KB
/
Animation.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "Animation.h"
#include <QRect>
#include <QPoint>
#include <QVariant>
#include <QParallelAnimationGroup>
#include <QSequentialAnimationGroup>
Animation::Animation(QObject *parent) :
QObject(parent)
{
}
void Animation::geometryAnimation(QObject *target, int duration, const QRect &start, const QRect &end, QEasingCurve easingCurve)
{
QPropertyAnimation *p = commonAnimation(target, "geometry", duration, start, end, easingCurve);
p->start(QAbstractAnimation::DeleteWhenStopped);
}
void Animation::posAnimation(QObject *target, int duration, const QPoint &start, const QPoint &end, QEasingCurve easingCurve)
{
QPropertyAnimation *p = commonAnimation(target, "pos", duration, start, end, easingCurve);
p->start(QAbstractAnimation::DeleteWhenStopped);
}
void Animation::opacityAnimation(QObject *target, int duration, int start, int end, QEasingCurve easingCurve)
{
QPropertyAnimation *p = commonAnimation(target, "opacity", duration, start, end, easingCurve);
p->start(QAbstractAnimation::DeleteWhenStopped);
}
void Animation::parallelAnimation(QList<QPropertyAnimation *> listPropertyAnimation)
{
QParallelAnimationGroup group;
foreach (QPropertyAnimation *p, listPropertyAnimation)
{
group.addAnimation(p);
}
group.start();
}
void Animation::sequentialAnimation(QList<QPropertyAnimation *> listPropertyAnimation)
{
QSequentialAnimationGroup group;
foreach (QPropertyAnimation *p, listPropertyAnimation)
{
group.addAnimation(p);
}
group.start();
}
QPropertyAnimation * Animation::commonAnimation(QObject *target, const QString &propertyName, int duration, const QVariant &start, const QVariant &end, QEasingCurve easingCurve)
{
QPropertyAnimation *pAnimation = new QPropertyAnimation(target, propertyName.toUtf8().constData());
pAnimation->setEasingCurve(easingCurve);
pAnimation->setDuration(duration);
pAnimation->setStartValue(start);
pAnimation->setEndValue(end);
return pAnimation;
}