##// END OF EJS Templates
Minor fix to pro file
Minor fix to pro file

File last commit:

r217:97e8d42197e7
r243:c7abcd56ed74
Show More
barpresenter.h
28 lines | 535 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
Common naming convention for barcharts
r216 #include "barpresenterbase.h"
#include "qbarchartseries.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
refactored barcharts. layout to derived classess other funtionality to base class
r126 // Base class for bar groups
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 {
public:
sauimone
Common naming convention for barcharts
r216 explicit BarPresenter(BarChartModel& model, 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