##// END OF EJS Templates
Legend disabled by defaut. User can turn in on, by calling setVisible
Legend disabled by defaut. User can turn in on, by calling setVisible

File last commit:

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