##// END OF EJS Templates
Add ownerships takeover to chartaxis
Add ownerships takeover to chartaxis

File last commit:

r223:c82178b4ef05
r248:ded845353666
Show More
chartitem_p.h
24 lines | 565 B | text/x-c | CLexer
Tero Ahola
Refactoring continued: restored ChartItem class
r104 #ifndef CHARTITEM_H_
#define CHARTITEM_H_
Michal Klocek
Refactors qchart , adds line animation...
r131 #include "domain_p.h"
Tero Ahola
Refactoring continued: restored ChartItem class
r104 #include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Tero Ahola
One more alternative for changing themes
r108
Michal Klocek
Refactors qchart , adds line animation...
r131 class ChartAnimationManager;
Tero Ahola
One more alternative for changing themes
r108 class ChartItem : public QGraphicsItem
Tero Ahola
Refactoring continued: restored ChartItem class
r104 {
enum ChartItemTypes{ AXIS_ITEM = UserType+1, XYLINE_ITEM};
public:
ChartItem(QGraphicsItem* parent = 0):QGraphicsItem(parent){};
Michal Klocek
Refactors axis handling...
r223 //TODO make pure
virtual void handleGeometryChanged(const QRectF&){};
virtual void handleDomainChanged(const Domain& domain){};
Tero Ahola
Refactoring continued: restored ChartItem class
r104 virtual ~ChartItem(){};
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* CHARTITEM_H_ */