stackedbarchartseries.h
53 lines
| 1.3 KiB
| text/x-c
|
CLexer
sauimone
|
r96 | #ifndef STACKEDBARCHARTSERIES_H | ||
#define STACKEDBARCHARTSERIES_H | ||||
#include <QList> | ||||
#include <QAbstractItemModel> | ||||
sauimone
|
r172 | #include "qchartseries.h" | ||
sauimone
|
r96 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class StackedBarGroup; | ||||
sauimone
|
r172 | class QBarCategory; | ||
class QBarSet; | ||||
class BarChartModel; | ||||
sauimone
|
r96 | |||
sauimone
|
r172 | class QTCOMMERCIALCHART_EXPORT StackedBarChartSeries : public QChartSeries | ||
sauimone
|
r96 | { | ||
Q_OBJECT | ||||
public: | ||||
sauimone
|
r173 | StackedBarChartSeries(QBarCategory *category, QObject* parent=0); | ||
sauimone
|
r96 | |||
// from QChartSeries | ||||
virtual QChartSeriesType type() const { return QChartSeries::SeriesTypeStackedBar; } | ||||
sauimone
|
r173 | void addBarSet(QBarSet *set); // Takes ownership | ||
void removeBarSet(QBarSet *set); // Also deletes the set, if set is owned. | ||||
sauimone
|
r171 | |||
sauimone
|
r173 | //TODO: | ||
//QList<QString> legend(); // Returns legend of series (ie. names of all sets in series) | ||||
// TODO: Functions below this are not part of api and will be moved | ||||
// to private implementation, when we start using it (not part of api) | ||||
sauimone
|
r172 | int countCategories(); | ||
qreal min(); | ||||
qreal max(); | ||||
qreal valueAt(int set, int category); | ||||
qreal maxCategorySum(); | ||||
BarChartModel& model(); | ||||
signals: | ||||
void changed(int index); | ||||
sauimone
|
r96 | public Q_SLOTS: | ||
private: | ||||
StackedBarGroup* mStackedBarGroup; | ||||
sauimone
|
r172 | BarChartModel* mModel; | ||
sauimone
|
r96 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // STACKEDBARCHARTSERIES_H | ||||