##// END OF EJS Templates
removed warning from chartthemes demo
removed warning from chartthemes demo

File last commit:

r1674:2849be5cffb7
r1675:592f4e5c298a
Show More
percentbaranimation_p.h
35 lines | 855 B | text/x-c | CLexer
/ src / animations / percentbaranimation_p.h
sauimone
animations for stacked and percentbarchart
r1426 // W A R N I N G
// -------------
//
// This file is not part of the QtCommercial Chart API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
#ifndef PERCENTBARANIMATION_P_H
#define PERCENTBARANIMATION_P_H
#include "chartanimation_p.h"
sauimone
refactored baranimations
r1673 #include "abstractbaranimation_p.h"
sauimone
refactoring internal barchart items
r1674 #include "abstractbarchartitem_p.h"
sauimone
animations for stacked and percentbarchart
r1426
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PercentBarChartItem;
class QBarSet;
class BarSetAnimation;
sauimone
refactored baranimations
r1673 class PercentBarAnimation : public AbstractBarAnimation
sauimone
animations for stacked and percentbarchart
r1426 {
Q_OBJECT
public:
sauimone
refactored baranimations
r1673 PercentBarAnimation(PercentBarChartItem *item);
sauimone
animations for stacked and percentbarchart
r1426 ~PercentBarAnimation();
virtual QVariant interpolated(const QVariant &from, const QVariant &to, qreal progress) const;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARANIMATION_P_H