xyanimation.cpp
164 lines
| 5.1 KiB
| text/x-c
|
CppLexer
Miikka Heikkinen
|
r2854 | /**************************************************************************** | ||
Jani Honkonen
|
r794 | ** | ||
Miikka Heikkinen
|
r2854 | ** Copyright (C) 2016 The Qt Company Ltd. | ||
** Contact: https://www.qt.io/licensing/ | ||||
Jani Honkonen
|
r794 | ** | ||
Miikka Heikkinen
|
r2854 | ** This file is part of the Qt Charts module of the Qt Toolkit. | ||
Jani Honkonen
|
r794 | ** | ||
Miikka Heikkinen
|
r2854 | ** $QT_BEGIN_LICENSE:GPL$ | ||
Titta Heikkala
|
r2845 | ** Commercial License Usage | ||
** Licensees holding valid commercial Qt licenses may use this file in | ||||
** accordance with the commercial license agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and The Qt Company. For licensing terms | ||||
Miikka Heikkinen
|
r2854 | ** and conditions see https://www.qt.io/terms-conditions. For further | ||
** information use the contact form at https://www.qt.io/contact-us. | ||||
** | ||||
** GNU General Public License Usage | ||||
** Alternatively, this file may be used under the terms of the GNU | ||||
** General Public License version 3 or (at your option) any later version | ||||
** approved by the KDE Free Qt Foundation. The licenses are as published by | ||||
** the Free Software Foundation and appearing in the file LICENSE.GPL3 | ||||
** included in the packaging of this file. Please review the following | ||||
** information to ensure the GNU General Public License requirements will | ||||
** be met: https://www.gnu.org/licenses/gpl-3.0.html. | ||||
Jani Honkonen
|
r794 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_END_LICENSE$ | ||
** | ||||
Miikka Heikkinen
|
r2854 | ****************************************************************************/ | ||
Jani Honkonen
|
r794 | |||
Titta Heikkala
|
r2714 | #include <private/xyanimation_p.h> | ||
#include <private/xychart_p.h> | ||||
#include <QtCore/QDebug> | ||||
Michal Klocek
|
r530 | |||
Q_DECLARE_METATYPE(QVector<QPointF>) | ||||
Titta Heikkala
|
r2712 | QT_CHARTS_BEGIN_NAMESPACE | ||
Michal Klocek
|
r530 | |||
Titta Heikkala
|
r2804 | XYAnimation::XYAnimation(XYChart *item, int duration, QEasingCurve &curve) | ||
Jani Honkonen
|
r2097 | : ChartAnimation(item), | ||
m_type(NewAnimation), | ||||
m_dirty(false), | ||||
m_index(-1), | ||||
m_item(item) | ||||
Michal Klocek
|
r530 | { | ||
Titta Heikkala
|
r2804 | setDuration(duration); | ||
setEasingCurve(curve); | ||||
Michal Klocek
|
r530 | } | ||
XYAnimation::~XYAnimation() | ||||
{ | ||||
} | ||||
Michal Klocek
|
r1271 | void XYAnimation::setup(const QVector<QPointF> &oldPoints, const QVector<QPointF> &newPoints, int index) | ||
Michal Klocek
|
r1217 | { | ||
Jani Honkonen
|
r2097 | m_type = NewAnimation; | ||
if (state() != QAbstractAnimation::Stopped) { | ||||
stop(); | ||||
m_dirty = false; | ||||
} | ||||
if (!m_dirty) { | ||||
m_dirty = true; | ||||
m_oldPoints = oldPoints; | ||||
} | ||||
m_newPoints = newPoints; | ||||
int x = m_oldPoints.count(); | ||||
int y = m_newPoints.count(); | ||||
Miikka Heikkinen
|
r2489 | int diff = x - y; | ||
int requestedDiff = oldPoints.count() - y; | ||||
Jani Honkonen
|
r2097 | |||
Miikka Heikkinen
|
r2489 | // m_oldPoints can be whatever between 0 and actual points count if new animation setup | ||
// interrupts a previous animation, so only do remove and add animations if both | ||||
// stored diff and requested diff indicate add or remove. Also ensure that index is not | ||||
// invalid. | ||||
if (diff == 1 && requestedDiff == 1 && index >= 0 && y > 0 && index <= y) { | ||||
Jani Honkonen
|
r2097 | //remove point | ||
m_newPoints.insert(index, index > 0 ? newPoints[index - 1] : newPoints[index]); | ||||
m_index = index; | ||||
m_type = RemovePointAnimation; | ||||
} | ||||
Miikka Heikkinen
|
r2489 | if (diff == -1 && requestedDiff == -1 && index >= 0 && index <= x) { | ||
Jani Honkonen
|
r2097 | //add point | ||
m_oldPoints.insert(index, index > 0 ? newPoints[index - 1] : newPoints[index]); | ||||
m_index = index; | ||||
m_type = AddPointAnimation; | ||||
} | ||||
x = m_oldPoints.count(); | ||||
y = m_newPoints.count(); | ||||
if (x != y) | ||||
m_type = NewAnimation; | ||||
else if (m_type == NewAnimation) | ||||
m_type = ReplacePointAnimation; | ||||
Michal Klocek
|
r1241 | |||
setKeyValueAt(0.0, qVariantFromValue(m_oldPoints)); | ||||
setKeyValueAt(1.0, qVariantFromValue(m_newPoints)); | ||||
Michal Klocek
|
r530 | } | ||
Jani Honkonen
|
r2097 | QVariant XYAnimation::interpolated(const QVariant &start, const QVariant &end, qreal progress) const | ||
Michal Klocek
|
r530 | { | ||
Jani Honkonen
|
r2241 | QVector<QPointF> startVector = qvariant_cast<QVector<QPointF> >(start); | ||
QVector<QPointF> endVector = qvariant_cast<QVector<QPointF> >(end); | ||||
Michal Klocek
|
r530 | QVector<QPointF> result; | ||
Marek Rosa
|
r738 | switch (m_type) { | ||
Michal Klocek
|
r602 | |||
Michal Klocek
|
r1241 | case ReplacePointAnimation: | ||
case AddPointAnimation: | ||||
Jani Honkonen
|
r2097 | case RemovePointAnimation: { | ||
if (startVector.count() != endVector.count()) | ||||
Michal Klocek
|
r530 | break; | ||
Marek Rosa
|
r738 | |||
Jani Honkonen
|
r2097 | for (int i = 0; i < startVector.count(); i++) { | ||
Marek Rosa
|
r738 | qreal x = startVector[i].x() + ((endVector[i].x() - startVector[i].x()) * progress); | ||
qreal y = startVector[i].y() + ((endVector[i].y() - startVector[i].y()) * progress); | ||||
result << QPointF(x, y); | ||||
Michal Klocek
|
r530 | } | ||
Marek Rosa
|
r738 | |||
} | ||||
Jani Honkonen
|
r2097 | break; | ||
Michal Klocek
|
r1241 | case NewAnimation: { | ||
Jani Honkonen
|
r2097 | for (int i = 0; i < endVector.count() * qBound(qreal(0), progress, qreal(1)); i++) | ||
Marek Rosa
|
r738 | result << endVector[i]; | ||
} | ||||
Jani Honkonen
|
r2097 | break; | ||
Marek Rosa
|
r738 | default: | ||
qWarning() << "Unknown type of animation"; | ||||
break; | ||||
Michal Klocek
|
r530 | } | ||
return qVariantFromValue(result); | ||||
} | ||||
Jani Honkonen
|
r2097 | void XYAnimation::updateCurrentValue(const QVariant &value) | ||
Michal Klocek
|
r530 | { | ||
Jani Honkonen
|
r2097 | if (state() != QAbstractAnimation::Stopped) { //workaround | ||
Michal Klocek
|
r1271 | |||
Jani Honkonen
|
r2241 | QVector<QPointF> vector = qvariant_cast<QVector<QPointF> >(value); | ||
Michal Klocek
|
r1217 | m_item->setGeometryPoints(vector); | ||
m_item->updateGeometry(); | ||||
Michal Klocek
|
r1241 | m_item->setDirty(true); | ||
Jani Honkonen
|
r2097 | m_dirty = false; | ||
Michal Klocek
|
r1271 | |||
Michal Klocek
|
r530 | } | ||
} | ||||
Jani Honkonen
|
r2097 | void XYAnimation::updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) | ||
Michal Klocek
|
r1241 | { | ||
Jani Honkonen
|
r2097 | if (oldState == QAbstractAnimation::Running && newState == QAbstractAnimation::Stopped) { | ||
if (m_item->isDirty() && m_type == RemovePointAnimation) { | ||||
if (!m_newPoints.isEmpty()) | ||||
m_newPoints.remove(m_index); | ||||
m_item->setGeometryPoints(m_newPoints); | ||||
} | ||||
} | ||||
Michal Klocek
|
r1241 | } | ||
#include "moc_chartanimation_p.cpp" | ||||
Titta Heikkala
|
r2712 | QT_CHARTS_END_NAMESPACE | ||