qscatterseries.h
66 lines
| 1.7 KiB
| text/x-c
|
CLexer
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 | ||||
Tero Ahola
|
r195 | |||
public: | ||||
enum MarkerShape { | ||||
// TODO: to be defined by the graphics design | ||||
// TODO: marker shapes: "x", star, rectangle, tilted rect, triangle, circle, dot | ||||
MarkerShapeDefault = 0, | ||||
MarkerShapePoint, | ||||
MarkerShapeX, | ||||
MarkerShapeRectangle, | ||||
MarkerShapeTiltedRectangle, | ||||
MarkerShapeTriangle, | ||||
MarkerShapeCircle | ||||
}; | ||||
Tero Ahola
|
r42 | public: | ||
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
|
r195 | //TODO: insertData? | ||
Tero Ahola
|
r179 | |||
void setMarkerPen(QPen pen); | ||||
QPen markerPen(); | ||||
Tero Ahola
|
r195 | void setMarkerBrush(QBrush brush); | ||
QBrush markerBrush(); | ||||
void setMarkerShape(MarkerShape shape); | ||||
MarkerShape markerShape(); | ||||
// TODO: marker size? | ||||
Tero Ahola
|
r179 | |||
Tero Ahola
|
r158 | Q_SIGNALS: | ||
Tero Ahola
|
r195 | // TODO: move to PIMPL for simplicity or does the user ever need these signals? | ||
Tero Ahola
|
r179 | // TODO: more finegrained signaling for performance reasons | ||
Tero Ahola
|
r195 | // (check QPieSeries implementation with change sets) | ||
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 | ||||