axisanimation.cpp
65 lines
| 1.9 KiB
| text/x-c
|
CppLexer
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
Michal Klocek
|
r530 | #include "axisanimation_p.h" | ||
#include <QTimer> | ||||
Q_DECLARE_METATYPE(QVector<qreal>) | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1006 | AxisAnimation::AxisAnimation(ChartAxis *axis): ChartAnimation(axis), | ||
Michal Klocek
|
r530 | m_axis(axis) | ||
{ | ||||
} | ||||
AxisAnimation::~AxisAnimation() | ||||
{ | ||||
} | ||||
Marek Rosa
|
r738 | QVariant AxisAnimation::interpolated(const QVariant &start, const QVariant &end, qreal progress ) const | ||
Michal Klocek
|
r530 | { | ||
QVector<qreal> startVector = qVariantValue<QVector<qreal> >(start); | ||||
QVector<qreal> endVecotr = qVariantValue<QVector<qreal> >(end); | ||||
QVector<qreal> result; | ||||
Q_ASSERT(startVector.count() == endVecotr.count()) ; | ||||
Marek Rosa
|
r738 | for(int i = 0; i < startVector.count(); i++){ | ||
Michal Klocek
|
r530 | qreal value = startVector[i] + ((endVecotr[i]- startVector[i]) * progress);//qBound(0.0, progress, 1.0)); | ||
result << value; | ||||
} | ||||
return qVariantFromValue(result); | ||||
} | ||||
Marek Rosa
|
r738 | void AxisAnimation::updateCurrentValue (const QVariant &value ) | ||
Michal Klocek
|
r530 | { | ||
Marek Rosa
|
r738 | if (state() != QAbstractAnimation::Stopped)//workaround | ||
Michal Klocek
|
r530 | { | ||
QVector<qreal> vector = qVariantValue<QVector<qreal> >(value); | ||||
Marek Rosa
|
r738 | Q_ASSERT(vector.count() != 0); | ||
Michal Klocek
|
r530 | m_axis->setLayout(vector); | ||
} | ||||
} | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||