qabstractseries.h
76 lines
| 1.9 KiB
| text/x-c
|
CLexer
/ src / qabstractseries.h
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
Tero Ahola
|
r988 | #ifndef QABSTRACTSERIES_H | ||
#define QABSTRACTSERIES_H | ||||
Michal Klocek
|
r23 | |||
Jani Honkonen
|
r697 | #include <qchartglobal.h> | ||
Michal Klocek
|
r23 | #include <QObject> | ||
sauimone
|
r380 | #include <QPen> | ||
Michal Klocek
|
r23 | |||
Marek Rosa
|
r862 | class QAbstractItemModel; | ||
Tero Ahola
|
r30 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
Michal Klocek
|
r23 | |||
Tero Ahola
|
r988 | class QAbstractSeriesPrivate; | ||
Michal Klocek
|
r1062 | class QChart; | ||
Marek Rosa
|
r1164 | //class QModelMapper; | ||
Michal Klocek
|
r938 | |||
Tero Ahola
|
r988 | class QTCOMMERCIALCHART_EXPORT QAbstractSeries : public QObject | ||
Michal Klocek
|
r23 | { | ||
sauimone
|
r71 | Q_OBJECT | ||
Tero Ahola
|
r884 | Q_PROPERTY(QString name READ name WRITE setName) | ||
Michal Klocek
|
r1107 | Q_ENUMS(SeriesType) | ||
Tero Ahola
|
r884 | |||
Michal Klocek
|
r23 | public: | ||
Michal Klocek
|
r1107 | enum SeriesType { | ||
Tero Ahola
|
r120 | SeriesTypeLine, | ||
Tero Ahola
|
r309 | SeriesTypeArea, | ||
sauimone
|
r56 | SeriesTypeBar, | ||
sauimone
|
r94 | SeriesTypeStackedBar, | ||
sauimone
|
r101 | SeriesTypePercentBar, | ||
sauimone
|
r1167 | SeriesTypeGroupedBar, | ||
Tero Ahola
|
r51 | SeriesTypePie, | ||
Tero Ahola
|
r309 | SeriesTypeScatter, | ||
SeriesTypeSpline | ||||
Tero Ahola
|
r30 | }; | ||
Michal Klocek
|
r23 | |||
protected: | ||||
Tero Ahola
|
r988 | QAbstractSeries(QAbstractSeriesPrivate &d, QObject *parent = 0); | ||
Michal Klocek
|
r23 | |||
public: | ||||
Tero Ahola
|
r988 | ~QAbstractSeries(); | ||
Michal Klocek
|
r1107 | virtual SeriesType type() const = 0; | ||
Marek Rosa
|
r1164 | virtual void setModel(QAbstractItemModel *model) = 0; | ||
Michal Klocek
|
r938 | QAbstractItemModel* model() const; | ||
void setName(const QString& name); | ||||
QString name() const; | ||||
Michal Klocek
|
r1062 | QChart* chart() const; | ||
Jani Honkonen
|
r405 | |||
Marek Rosa
|
r597 | protected: | ||
Tero Ahola
|
r988 | QScopedPointer<QAbstractSeriesPrivate> d_ptr; | ||
Michal Klocek
|
r943 | friend class ChartDataSet; | ||
friend class ChartPresenter; | ||||
Michal Klocek
|
r950 | friend class QLegendPrivate; | ||
Michal Klocek
|
r23 | }; | ||
Tero Ahola
|
r30 | QTCOMMERCIALCHART_END_NAMESPACE | ||
Michal Klocek
|
r23 | |||
#endif | ||||