qscatterseries.h
52 lines
| 1.3 KiB
| text/x-c
|
CLexer
/ src / qscatterseries.h
Tero Ahola
|
r42 | #ifndef QSCATTERSERIES_H | ||
#define QSCATTERSERIES_H | ||||
#include "qchartseries.h" | ||||
Tero Ahola
|
r48 | #include <QRectF> | ||
Tero Ahola
|
r64 | #include <QColor> | ||
Tero Ahola
|
r42 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class QScatterSeriesPrivate; | ||||
class QTCOMMERCIALCHART_EXPORT QScatterSeries : public QChartSeries | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
//QScatterSeries(QSeriesData *data, QObject *chart); | ||||
Tero Ahola
|
r61 | QScatterSeries(QObject *parent = 0); | ||
Tero Ahola
|
r42 | ~QScatterSeries(); | ||
public: // from QChartSeries | ||||
Tero Ahola
|
r51 | QChartSeriesType type() const { return QChartSeries::SeriesTypeScatter; } | ||
Tero Ahola
|
r42 | |||
Tero Ahola
|
r158 | public: | ||
Tero Ahola
|
r180 | // TODO: the name of the function? addPoint? addData? addValue? | ||
void addData(QPointF value); | ||||
QScatterSeries& operator << (const QPointF &value); | ||||
Tero Ahola
|
r179 | |||
void setData(QList<QPointF> data); | ||||
Tero Ahola
|
r158 | QList<QPointF> data(); | ||
Tero Ahola
|
r179 | |||
//TODO? void insertData(int index, QPointF data); | ||||
void setMarkerPen(QPen pen); | ||||
QPen markerPen(); | ||||
// TODO: marker shapes: "x", star, rectangle, tilted rect, triangle, circle, dot | ||||
//void setMarkerShape(MarkerShape shape); | ||||
Tero Ahola
|
r158 | Q_SIGNALS: | ||
// TODO: move to PIMPL? | ||||
Tero Ahola
|
r179 | // TODO: more finegrained signaling for performance reasons | ||
Tero Ahola
|
r158 | void changed(); | ||
Tero Ahola
|
r179 | //public Q_SLOTS: | ||
Tero Ahola
|
r42 | private: | ||
Q_DECLARE_PRIVATE(QScatterSeries) | ||||
Q_DISABLE_COPY(QScatterSeries) | ||||
QScatterSeriesPrivate *const d; | ||||
}; | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // QSCATTERSERIES_H | ||||