qareaseries.h
52 lines
| 1.3 KiB
| text/x-c
|
CLexer
Michal Klocek
|
r421 | #ifndef QAREASERIES_H_ | ||
#define QAREASERIES_H_ | ||||
Jani Honkonen
|
r697 | #include <qchartglobal.h> | ||
#include <qseries.h> | ||||
Michal Klocek
|
r421 | #include <QPen> | ||
#include <QBrush> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class QLineSeries; | ||||
class QTCOMMERCIALCHART_EXPORT QAreaSeries : public QSeries | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Tero Ahola
|
r760 | QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = 0); | ||
Michal Klocek
|
r421 | virtual ~QAreaSeries(); | ||
public: // from QChartSeries | ||||
Tero Ahola
|
r760 | virtual QSeriesType type() const { return QSeries::SeriesTypeArea; } | ||
Michal Klocek
|
r421 | |||
Tero Ahola
|
r760 | QLineSeries* upperSeries() const { return m_upperSeries; } | ||
QLineSeries* lowerSeries() const { return m_lowerSeries; } | ||||
Michal Klocek
|
r421 | |||
sauimone
|
r743 | void setPen(const QPen &pen); | ||
Michal Klocek
|
r421 | QPen pen() const { return m_pen;} | ||
sauimone
|
r743 | void setBrush(const QBrush &brush); | ||
Michal Klocek
|
r421 | QBrush brush() const { return m_brush;} | ||
void setPointsVisible(bool visible); | ||||
Tero Ahola
|
r760 | bool pointsVisible() const { return m_pointsVisible; } | ||
Michal Klocek
|
r421 | |||
Marek Rosa
|
r630 | // bool setModel(QAbstractItemModel* model); | ||
// void setModelMappingUpper(int modelX, int modelY, Qt::Orientation orientation = Qt::Vertical); | ||||
// void setModelMappingLower(int modelX, int modelY, Qt::Orientation orientation = Qt::Vertical); | ||||
sauimone
|
r775 | Q_SIGNALS: | ||
Michal Klocek
|
r421 | void updated(); | ||
sauimone
|
r743 | void clicked(const QPointF &point); | ||
Michal Klocek
|
r421 | |||
private: | ||||
QBrush m_brush; | ||||
QPen m_pen; | ||||
QLineSeries* m_upperSeries; | ||||
QLineSeries* m_lowerSeries; | ||||
bool m_pointsVisible; | ||||
}; | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||