piesliceanimation_p.h
32 lines
| 782 B
| text/x-c
|
CLexer
Jani Honkonen
|
r618 | #ifndef PIESLICEANIMATION_P_H_ | ||
#define PIESLICEANIMATION_P_H_ | ||||
#include "piechartitem_p.h" | ||||
#include <QVariantAnimation> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class PieChartItem; | ||||
Jani Honkonen
|
r629 | class QPieSlice; | ||
Jani Honkonen
|
r618 | |||
class PieSliceAnimation : public QVariantAnimation | ||||
{ | ||||
public: | ||||
Jani Honkonen
|
r629 | PieSliceAnimation(PieChartItem *item, QPieSlice *slice); | ||
Jani Honkonen
|
r618 | ~PieSliceAnimation(); | ||
Jani Honkonen
|
r629 | void setValue(const PieSliceLayout &startValue, const PieSliceLayout &endValue); | ||
void updateValue(const PieSliceLayout &endValue); | ||||
Jani Honkonen
|
r618 | PieSliceLayout currentSliceValue(); | ||
protected: | ||||
QVariant interpolated(const QVariant &start, const QVariant &end, qreal progress) const; | ||||
void updateCurrentValue(const QVariant &value); | ||||
private: | ||||
PieChartItem *m_item; | ||||
Jani Honkonen
|
r629 | QPieSlice *m_slice; | ||
Jani Honkonen
|
r618 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||