aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/timeline/qquickkeyframemutator.cpp
blob: ab4b593bcdfd53bd413c97f9228be431ed9973c7 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd
** All rights reserved.
** For any questions to The Qt Company, please use contact form at http://www.qt.io/contact-us
**
** This file is part of the Qt Enterprise Qt Quick Timeline Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
** contact form at http://www.qt.io/contact-us
**
****************************************************************************/

#include "qquickkeyframemutator_p.h"

#include <QtCore/qmath.h>
#include <QtGui/qpainter.h>
#include <QtQuick/private/qquickitem_p.h>

QT_BEGIN_NAMESPACE

class QQuickKeyframeMutatorPrivate : public QObjectPrivate
{
    Q_DECLARE_PUBLIC(QQuickKeyframeMutator)
public:
    QQuickKeyframeMutatorPrivate()
        : startFrame(0),
          endFrame(0),
          currentFrame(0),
          enabled(false),
          componentComplete(true)
    {
    }

    qreal startFrame;
    qreal endFrame;
    qreal currentFrame;

    bool enabled:1;
    bool componentComplete:1;

protected:
    void init();
    void disable();

    static void append_keyframe(QQmlListProperty<QQuickKeyframes> *list, QQuickKeyframes *a);
    static int keyframe_count(QQmlListProperty<QQuickKeyframes> *list);
    static QQuickKeyframes* keyframe_at(QQmlListProperty<QQuickKeyframes> *list, int pos);
    static void clear_keyframes(QQmlListProperty<QQuickKeyframes> *list);

    QList<QQuickKeyframes *> keyframes;
};

void QQuickKeyframeMutatorPrivate::init()
{
    for (auto keyFrames : keyframes) {
        keyFrames->init();
        keyFrames->setProperty(currentFrame);
    }
}

void QQuickKeyframeMutatorPrivate::disable()
{
    for (auto keyFrames : keyframes)
        keyFrames->resetDefaultValue();
}

void QQuickKeyframeMutatorPrivate::append_keyframe(QQmlListProperty<QQuickKeyframes> *list, QQuickKeyframes *a)
{
    QQuickKeyframeMutator *q = static_cast<QQuickKeyframeMutator *>(list->object);
    q->d_func()->keyframes.append(a);
}

int QQuickKeyframeMutatorPrivate::keyframe_count(QQmlListProperty<QQuickKeyframes> *list)
{
    QQuickKeyframeMutator *q = static_cast<QQuickKeyframeMutator *>(list->object);
    return q->d_func()->keyframes.count();
}

QQuickKeyframes* QQuickKeyframeMutatorPrivate::keyframe_at(QQmlListProperty<QQuickKeyframes> *list, int pos)
{
    QQuickKeyframeMutator *q = static_cast<QQuickKeyframeMutator *>(list->object);
    return q->d_func()->keyframes.at(pos);
}

void QQuickKeyframeMutatorPrivate::clear_keyframes(QQmlListProperty<QQuickKeyframes> *list)
{
    QQuickKeyframeMutator *q = static_cast<QQuickKeyframeMutator *>(list->object);
    while (q->d_func()->keyframes.count()) {
        QQuickKeyframes *firstKeyframe = q->d_func()->keyframes.at(0);
        q->d_func()->keyframes.removeAll(firstKeyframe);
    }
}

QQuickKeyframeMutator::QQuickKeyframeMutator(QObject *parent) : QObject(*(new QQuickKeyframeMutatorPrivate), parent)
{

}

QQmlListProperty<QQuickKeyframes> QQuickKeyframeMutator::keyframes()
{
    Q_D(QQuickKeyframeMutator);

    return QQmlListProperty<QQuickKeyframes>(this, &d->keyframes, QQuickKeyframeMutatorPrivate::append_keyframe,
                                             QQuickKeyframeMutatorPrivate::keyframe_count,
                                             QQuickKeyframeMutatorPrivate::keyframe_at,
                                             QQuickKeyframeMutatorPrivate::clear_keyframes);
}

bool QQuickKeyframeMutator::enabled() const
{
    Q_D(const QQuickKeyframeMutator);
    return d->enabled;
}

void QQuickKeyframeMutator::setEnabled(bool b)
{
    Q_D(QQuickKeyframeMutator);
    if (d->enabled == b)
        return;
    d->enabled = b;

    if (d->componentComplete) {
        if (b)
            init();
        else
            reset();
    }

    emit enabledChanged();
}

qreal QQuickKeyframeMutator::startFrame() const
{
    Q_D(const QQuickKeyframeMutator);
    return d->startFrame;
}

void QQuickKeyframeMutator::setStartFrame(qreal frame)
{
    Q_D(QQuickKeyframeMutator);
    if (d->startFrame == frame)
        return;
    d->startFrame = frame;
    emit startFrameChanged();
}

qreal QQuickKeyframeMutator::endFrame() const
{
    Q_D(const QQuickKeyframeMutator);
    return d->endFrame;
}

void QQuickKeyframeMutator::setEndFrame(qreal frame)
{
    Q_D(QQuickKeyframeMutator);
    if (d->endFrame == frame)
        return;
    d->endFrame = frame;
    emit endFrameChanged();
}

qreal QQuickKeyframeMutator::currentFrame() const
{
    Q_D(const QQuickKeyframeMutator);
    return d->currentFrame;
}

void QQuickKeyframeMutator::setCurrentFrame(qreal frame)
{
    Q_D(QQuickKeyframeMutator);
    if (d->currentFrame == frame)
        return;
    d->currentFrame = frame;

    if (d->componentComplete && d->enabled)
        for (auto keyFrames : d->keyframes)
            keyFrames->setProperty(d->currentFrame);

    emit currentFrameChanged();
}

void QQuickKeyframeMutator::init()
{
    Q_D(QQuickKeyframeMutator);

    if (d->componentComplete)
        d->init();
}

void QQuickKeyframeMutator::reset()
{
    Q_D(QQuickKeyframeMutator);

    if (d->componentComplete)
        d->disable();
}

void QQuickKeyframeMutator::classBegin()
{
    Q_D(QQuickKeyframeMutator);
    d->componentComplete = false;
}

void QQuickKeyframeMutator::componentComplete()
{
    Q_D(QQuickKeyframeMutator);
    d->componentComplete = true;

    if (d->enabled)
        init();
}

QT_END_NAMESPACE