##// END OF EJS Templates
Remove duplicated class list
Remove duplicated class list

File last commit:

r288:5f68000bea7a
r335:a05f756ae0c8
Show More
barpresenter.h
30 lines | 618 B | text/x-c | CLexer
sauimone
moved presenter to private headers. code cleanup
r217 #ifndef BARPRESENTER_H
#define BARPRESENTER_H
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
sauimone
moved tooltip to presenter
r288 #include "qchartglobal.h"
sauimone
Common naming convention for barcharts
r216 #include "barpresenterbase.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #include <QGraphicsItem>
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
moved tooltip to presenter
r288 class QBarChartSeries;
sauimone
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
r256 // Presenter for parallel bars. Grouping of bars is done on category basis.
sauimone
Common naming convention for barcharts
r216 class BarPresenter : public BarPresenterBase
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
sauimone
moved tooltip to presenter
r288 Q_OBJECT
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 public:
sauimone
moved tooltip to presenter
r288 explicit BarPresenter(QBarChartSeries *series, QGraphicsItem *parent = 0);
sauimone
Added bar chart example
r78
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 private:
sauimone
moved presenter to private headers. code cleanup
r217 // From BarPresenterBase
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
sauimone
moved presenter to private headers. code cleanup
r217 #endif // BARPRESENTER_H