@@ -90,7 +90,7 void ChartAnimator::removeAnimation(ChartItem* item) | |||||
90 | m_animations.remove(item); |
|
90 | m_animations.remove(item); | |
91 | } |
|
91 | } | |
92 |
|
92 | |||
93 |
void ChartAnimator:: |
|
93 | void ChartAnimator::updateLayout(AxisItem* item , QVector<qreal>& newLayout) | |
94 | { |
|
94 | { | |
95 | AxisAnimation* animation = static_cast<AxisAnimation*>(m_animations.value(item)); |
|
95 | AxisAnimation* animation = static_cast<AxisAnimation*>(m_animations.value(item)); | |
96 |
|
96 |
@@ -33,7 +33,7 public: | |||||
33 | void animationStarted(); |
|
33 | void animationStarted(); | |
34 | void updateLayout(XYChartItem* item, QVector<QPointF>& oldLayout,QVector<QPointF>& newLayout,int index); |
|
34 | void updateLayout(XYChartItem* item, QVector<QPointF>& oldLayout,QVector<QPointF>& newLayout,int index); | |
35 | void updateLayout(SplineChartItem* item, QVector<QPointF>& oldPoints , QVector<QPointF>& newPoints, QVector<QPointF>& oldControlPoints, QVector<QPointF>& newContorlPoints,int index); |
|
35 | void updateLayout(SplineChartItem* item, QVector<QPointF>& oldPoints , QVector<QPointF>& newPoints, QVector<QPointF>& oldControlPoints, QVector<QPointF>& newContorlPoints,int index); | |
36 |
void |
|
36 | void updateLayout(AxisItem* item, QVector<qreal>& layout); | |
37 |
|
37 | |||
38 | void addAnimation(PieChartItem* item, QPieSlice *slice, const PieSliceLayout &layout, bool isEmpty); |
|
38 | void addAnimation(PieChartItem* item, QPieSlice *slice, const PieSliceLayout &layout, bool isEmpty); | |
39 | void removeAnimation(PieChartItem* item, QPieSlice *slice); |
|
39 | void removeAnimation(PieChartItem* item, QPieSlice *slice); |
@@ -75,7 +75,7 void AxisItem::deleteItems(int count) | |||||
75 | void AxisItem::updateLayout(QVector<qreal>& layout) |
|
75 | void AxisItem::updateLayout(QVector<qreal>& layout) | |
76 | { |
|
76 | { | |
77 | if(m_animator){ |
|
77 | if(m_animator){ | |
78 |
m_animator-> |
|
78 | m_animator->updateLayout(this,layout); | |
79 | } |
|
79 | } | |
80 | else setLayout(layout); |
|
80 | else setLayout(layout); | |
81 | } |
|
81 | } |
General Comments 0
You need to be logged in to leave comments.
Login now