chartdataset_p.h
92 lines
| 3.0 KiB
| text/x-c
|
CLexer
/ src / chartdataset_p.h
Michal Klocek
|
r771 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Michal Klocek
|
r771 | ** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
// W A R N I N G | ||||
// ------------- | ||||
// | ||||
// This file is not part of the QtCommercial Chart API. It exists purely as an | ||||
// implementation detail. This header file may change from version to | ||||
// version without notice, or even be removed. | ||||
// | ||||
// We mean it. | ||||
Michal Klocek
|
r969 | #ifndef CHARTDATASET_P_H | ||
#define CHARTDATASET_P_H | ||||
Michal Klocek
|
r131 | |||
Tero Ahola
|
r988 | #include "qabstractseries.h" | ||
Marek Rosa
|
r2275 | #include "abstractdomain_p.h" | ||
Michal Klocek
|
r1588 | #include "qabstractaxis_p.h" | ||
Michal Klocek
|
r131 | #include <QVector> | ||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1541 | class QAbstractAxis; | ||
Michal Klocek
|
r2273 | class ChartPresenter; | ||
Michal Klocek
|
r223 | |||
Michal Klocek
|
r1050 | class QTCOMMERCIALCHART_AUTOTEST_EXPORT ChartDataSet : public QObject | ||
Michal Klocek
|
r131 | { | ||
Q_OBJECT | ||||
public: | ||||
Michal Klocek
|
r2273 | ChartDataSet(QChart *chart); | ||
Michal Klocek
|
r131 | virtual ~ChartDataSet(); | ||
Jani Honkonen
|
r2104 | void addSeries(QAbstractSeries *series); | ||
void removeSeries(QAbstractSeries *series); | ||||
Michal Klocek
|
r2273 | QList<QAbstractSeries *> series() const; | ||
Michal Klocek
|
r131 | |||
Michal Klocek
|
r2273 | void addAxis(QAbstractAxis *axis,Qt::Alignment aligment); | ||
void removeAxis(QAbstractAxis *axis); | ||||
QList<QAbstractAxis*> axes() const; | ||||
sauimone
|
r1554 | |||
Michal Klocek
|
r2273 | bool attachAxis(QAbstractSeries* series,QAbstractAxis *axis); | ||
bool detachAxis(QAbstractSeries* series,QAbstractAxis *axis); | ||||
Michal Klocek
|
r1078 | |||
Michal Klocek
|
r1577 | void createDefaultAxes(); | ||
Michal Klocek
|
r2273 | void zoomInDomain(const QRectF &rect); | ||
void zoomOutDomain(const QRectF &rect); | ||||
void scrollDomain(qreal dx, qreal dy); | ||||
Marek Rosa
|
r2344 | QPointF mapToValue(const QPointF &position, QAbstractSeries *series = 0); | ||
QPointF mapToPosition(const QPointF &value, QAbstractSeries *series = 0); | ||||
Michal Klocek
|
r771 | Q_SIGNALS: | ||
Michal Klocek
|
r2273 | void axisAdded(QAbstractAxis* axis); | ||
void axisRemoved(QAbstractAxis* axis); | ||||
void seriesAdded(QAbstractSeries* series); | ||||
void seriesRemoved(QAbstractSeries* series); | ||||
Michal Klocek
|
r223 | |||
private: | ||||
Jani Honkonen
|
r2097 | void createAxes(QAbstractAxis::AxisTypes type, Qt::Orientation orientation); | ||
Jani Honkonen
|
r2104 | QAbstractAxis *createAxis(QAbstractAxis::AxisType type, Qt::Orientation orientation); | ||
Michal Klocek
|
r2284 | AbstractDomain::DomainType selectDomain(QList<QAbstractAxis* > axes); | ||
AbstractDomain* createDomain(AbstractDomain::DomainType type); | ||||
void deleteAllAxes(); | ||||
void deleteAllSeries(); | ||||
Michal Klocek
|
r2408 | void findMinMaxForSeries(QList<QAbstractSeries *> series,Qt::Orientations orientation, qreal &min, qreal &max); | ||
Michal Klocek
|
r131 | private: | ||
Michal Klocek
|
r2273 | QList<QAbstractSeries *> m_seriesList; | ||
QList<QAbstractAxis *> m_axisList; | ||||
QChart* m_chart; | ||||
Michal Klocek
|
r131 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
Jani Honkonen
|
r1935 | #endif /* CHARTENGINE_P_H */ | ||