pieanimation.cpp
119 lines
| 3.8 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/pieanimation_p.h> | ||
#include <private/piesliceanimation_p.h> | ||||
#include <private/piechartitem_p.h> | ||||
Jani Honkonen
|
r618 | |||
Titta Heikkala
|
r2712 | QT_CHARTS_BEGIN_NAMESPACE | ||
Jani Honkonen
|
r618 | |||
Titta Heikkala
|
r2804 | PieAnimation::PieAnimation(PieChartItem *item, int duration, QEasingCurve &curve) | ||
Jani Honkonen
|
r2097 | : ChartAnimation(item), | ||
Titta Heikkala
|
r2804 | m_item(item), | ||
m_animationDuration(duration), | ||||
m_animationCurve(curve) | ||||
Jani Honkonen
|
r618 | { | ||
} | ||||
PieAnimation::~PieAnimation() | ||||
{ | ||||
} | ||||
Jani Honkonen
|
r2104 | ChartAnimation *PieAnimation::updateValue(PieSliceItem *sliceItem, const PieSliceData &sliceData) | ||
Jani Honkonen
|
r618 | { | ||
Jani Honkonen
|
r1053 | PieSliceAnimation *animation = m_animations.value(sliceItem); | ||
Jani Honkonen
|
r2321 | if (!animation) { | ||
animation = new PieSliceAnimation(sliceItem); | ||||
Titta Heikkala
|
r2804 | animation->setDuration(m_animationDuration); | ||
animation->setEasingCurve(m_animationCurve); | ||||
Jani Honkonen
|
r2321 | m_animations.insert(sliceItem, animation); | ||
} else { | ||||
animation->stop(); | ||||
} | ||||
Jani Honkonen
|
r621 | |||
Jani Honkonen
|
r668 | animation->updateValue(sliceData); | ||
Jani Honkonen
|
r621 | |||
Michal Klocek
|
r1735 | return animation; | ||
Jani Honkonen
|
r621 | } | ||
Jani Honkonen
|
r2104 | ChartAnimation *PieAnimation::addSlice(PieSliceItem *sliceItem, const PieSliceData &sliceData, bool startupAnimation) | ||
Jani Honkonen
|
r621 | { | ||
Jani Honkonen
|
r1053 | PieSliceAnimation *animation = new PieSliceAnimation(sliceItem); | ||
Titta Heikkala
|
r2804 | animation->setDuration(m_animationDuration); | ||
animation->setEasingCurve(m_animationCurve); | ||||
Jani Honkonen
|
r1053 | m_animations.insert(sliceItem, animation); | ||
Jani Honkonen
|
r621 | |||
Jani Honkonen
|
r668 | PieSliceData startValue = sliceData; | ||
startValue.m_radius = 0; | ||||
Jani Honkonen
|
r1074 | if (startupAnimation) | ||
Jani Honkonen
|
r668 | startValue.m_startAngle = 0; | ||
Jani Honkonen
|
r634 | else | ||
Marek Rosa
|
r738 | startValue.m_startAngle = sliceData.m_startAngle + (sliceData.m_angleSpan / 2); | ||
Jani Honkonen
|
r668 | startValue.m_angleSpan = 0; | ||
Jani Honkonen
|
r621 | |||
Marek Rosa
|
r1838 | if (sliceData.m_holeRadius > 0) | ||
startValue.m_radius = sliceData.m_holeRadius; | ||||
Jani Honkonen
|
r1758 | |||
animation->setValue(startValue, sliceData); | ||||
Michal Klocek
|
r1735 | |||
return animation; | ||||
Jani Honkonen
|
r621 | } | ||
Jani Honkonen
|
r2104 | ChartAnimation *PieAnimation::removeSlice(PieSliceItem *sliceItem) | ||
Jani Honkonen
|
r621 | { | ||
Jani Honkonen
|
r1053 | PieSliceAnimation *animation = m_animations.value(sliceItem); | ||
Jani Honkonen
|
r621 | Q_ASSERT(animation); | ||
animation->stop(); | ||||
Jani Honkonen
|
r668 | PieSliceData endValue = animation->currentSliceValue(); | ||
Marek Rosa
|
r1838 | if (endValue.m_holeRadius > 0) | ||
endValue.m_radius = endValue.m_holeRadius; | ||||
Jani Honkonen
|
r1758 | else | ||
endValue.m_radius = 0; | ||||
Jani Honkonen
|
r668 | endValue.m_startAngle = endValue.m_startAngle + endValue.m_angleSpan; | ||
endValue.m_angleSpan = 0; | ||||
Jani Honkonen
|
r1075 | endValue.m_isLabelVisible = false; | ||
Jani Honkonen
|
r621 | |||
Jani Honkonen
|
r668 | animation->updateValue(endValue); | ||
Jani Honkonen
|
r621 | |||
Jani Honkonen
|
r1053 | // PieSliceItem is the parent of PieSliceAnimation so the animation will be deleted as well.. | ||
connect(animation, SIGNAL(finished()), sliceItem, SLOT(deleteLater())); | ||||
m_animations.remove(sliceItem); | ||||
Michal Klocek
|
r1735 | return animation; | ||
Jani Honkonen
|
r618 | } | ||
void PieAnimation::updateCurrentValue(const QVariant &) | ||||
{ | ||||
// nothing to do... | ||||
} | ||||
#include "moc_pieanimation_p.cpp" | ||||
Titta Heikkala
|
r2712 | QT_CHARTS_END_NAMESPACE | ||