##// END OF EJS Templates
remove unnecessary stuff from pie series
remove unnecessary stuff from pie series

File last commit:

r618:249071e508d1
r620:51f99c2be375
Show More
pieanimation_p.h
35 lines | 713 B | text/x-c | CLexer
#ifndef PIEANIMATION_P_H_
#define PIEANIMATION_P_H_
#include "chartanimation_p.h"
#include "piechartitem_p.h"
#include "piesliceanimation_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PieChartItem;
class PieAnimation : public ChartAnimation
{
Q_OBJECT
public:
PieAnimation(PieChartItem *item);
~PieAnimation();
void setValues(QVector<PieSliceLayout>& newValues);
void updateValue(PieSliceLayout& newValue);
public: // from QVariantAnimation
void updateCurrentValue(const QVariant &value);
public Q_SLOTS:
void destroySliceAnimationComplete();
private:
PieChartItem *m_item;
QHash<QPieSlice*, PieSliceAnimation*> m_animations;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif