##// END OF EJS Templates
Changes public API for nice nuumbers -> setNiceNumbers(bool enabled)
Changes public API for nice nuumbers -> setNiceNumbers(bool enabled)

File last commit:

r677:2b967c4f6e8e
r687:1855aba16ab8
Show More
chartitem_p.h
19 lines | 442 B | text/x-c | CLexer
Tero Ahola
Refactoring continued: restored ChartItem class
r104 #ifndef CHARTITEM_H_
#define CHARTITEM_H_
Michal Klocek
Refactors chartitem...
r677 #include "chart_p.h"
#include "chartpresenter_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 chartitem...
r677 class ChartItem : public QGraphicsItem, public Chart
Tero Ahola
Refactoring continued: restored ChartItem class
r104 {
enum ChartItemTypes{ AXIS_ITEM = UserType+1, XYLINE_ITEM};
public:
Michal Klocek
Refactors chartitem...
r677 ChartItem(ChartPresenter *presenter):QGraphicsItem(presenter->rootItem()),Chart(presenter){};
Tero Ahola
Refactoring continued: restored ChartItem class
r104 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* CHARTITEM_H_ */