##// END OF EJS Templates

File last commit:

r459:272f4a2e7431
r461:5973afc43f62 merge
Show More
scatterseries_p.h
37 lines | 732 B | text/x-c | CLexer
Tero Ahola
Integrated scatter type series...
r42 #ifndef QSCATTERSERIESPRIVATE_H
#define QSCATTERSERIESPRIVATE_H
Tero Ahola
Integrated scatter again. Missing functionality....
r158 #include "qchartglobal.h"
Michal Klocek
Rename QChartSeries to QSeries
r360 #include "qseries.h"
Tero Ahola
Scatter API review: changed signal now private etc.
r459 #include <QObject>
Tero Ahola
Modifying QScatterSeries API
r179 #include <QPen>
Tero Ahola
Integrated scatter type series...
r42
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
* The PIMPL class of QScatterSeries.
*/
Tero Ahola
Scatter API review: changed signal now private etc.
r459 class QScatterSeriesPrivate : public QObject
Tero Ahola
Integrated scatter type series...
r42 {
Tero Ahola
Scatter API review: changed signal now private etc.
r459 Q_OBJECT
Tero Ahola
Integrated scatter type series...
r42 public:
Tero Ahola
Scatter API review: changed signal now private etc.
r459 QScatterSeriesPrivate(QObject *parent);
void emitChanged();
Q_SIGNALS:
// TODO: more finegrained signaling for performance reasons
// (see for example QPieSeries implementation with change sets)
void changed();
Tero Ahola
Integrated scatter type series...
r42
Tero Ahola
Color themes now enabled for scatter, pie and line series.
r75 public:
Tero Ahola
Integrated scatter again. Missing functionality....
r158 QList<QPointF> m_data;
Tero Ahola
Modifying QScatterSeries API
r179 QPen m_markerPen;
Tero Ahola
Scatter series marker visuals
r195 QBrush m_markerBrush;
int m_markerShape;
Tero Ahola
Added size customization to QScatterSeries
r397 qreal m_markerSize;
Tero Ahola
Integrated scatter type series...
r42 };
QTCOMMERCIALCHART_END_NAMESPACE
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #endif // QSCATTERSERIESPRIVATE_H