##// END OF EJS Templates
removed legend background drawing
removed legend background drawing

File last commit:

r760:1544a9974795
r785:fe2ea9e69ee8
Show More
chartitem_p.h
19 lines | 464 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 {
Tero Ahola
Internal review: Removed extra semicolons
r760 enum ChartItemTypes{ AXIS_ITEM = UserType + 1, XYLINE_ITEM };
Tero Ahola
Refactoring continued: restored ChartItem class
r104 public:
Tero Ahola
Internal review: Removed extra semicolons
r760 ChartItem(ChartPresenter *presenter) : QGraphicsItem(presenter ? presenter->rootItem() : 0), Chart(presenter) {}
Tero Ahola
Refactoring continued: restored ChartItem class
r104 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* CHARTITEM_H_ */