chartdataset_p.h
93 lines
| 2.7 KiB
| text/x-c
|
CLexer
/ src / chartdataset_p.h
Michal Klocek
|
r771 | /**************************************************************************** | ||
** | ||||
** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
// 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" | ||
Michal Klocek
|
r131 | #include "domain_p.h" | ||
#include <QVector> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1006 | class QAxis; | ||
Michal Klocek
|
r701 | class QBarSeries; | ||
Michal Klocek
|
r223 | |||
Michal Klocek
|
r1050 | class QTCOMMERCIALCHART_AUTOTEST_EXPORT ChartDataSet : public QObject | ||
Michal Klocek
|
r131 | { | ||
Q_OBJECT | ||||
public: | ||||
Michal Klocek
|
r223 | ChartDataSet(QObject* parent=0); | ||
Michal Klocek
|
r131 | virtual ~ChartDataSet(); | ||
Michal Klocek
|
r1006 | void addSeries(QAbstractSeries* series,QAxis *axisY = 0); | ||
QAxis* removeSeries(QAbstractSeries* series); | ||||
Michal Klocek
|
r258 | void removeAllSeries(); | ||
Michal Klocek
|
r439 | |||
void zoomInDomain(const QRectF& rect, const QSizeF& size); | ||||
void zoomOutDomain(const QRectF& rect, const QSizeF& size); | ||||
Michal Klocek
|
r531 | void scrollDomain(int dx,int dy,const QSizeF& size); | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r1107 | int seriesCount(QAbstractSeries::SeriesType type); | ||
Tero Ahola
|
r988 | int seriesIndex(QAbstractSeries *series); | ||
Michal Klocek
|
r533 | |||
Tero Ahola
|
r988 | Domain* domain(QAbstractSeries* series) const; | ||
Michal Klocek
|
r1006 | Domain* domain(QAxis* axis) const; | ||
Michal Klocek
|
r223 | |||
Michal Klocek
|
r1006 | QAxis* axisX() const { return m_axisX; } | ||
QAxis* axisY(QAbstractSeries *series = 0) const; | ||||
Michal Klocek
|
r131 | |||
Michal Klocek
|
r1078 | QList<QAbstractSeries*> series() const; | ||
Michal Klocek
|
r771 | Q_SIGNALS: | ||
Tero Ahola
|
r988 | void seriesAdded(QAbstractSeries* series, Domain* domain); | ||
void seriesRemoved(QAbstractSeries* series); | ||||
Michal Klocek
|
r1006 | void axisAdded(QAxis* axis,Domain* domain); | ||
void axisRemoved(QAxis* axis); | ||||
Michal Klocek
|
r223 | |||
private: | ||||
Michal Klocek
|
r1006 | QStringList createLabels(QAxis* axis,qreal min, qreal max); | ||
Tero Ahola
|
r988 | void calculateDomain(QAbstractSeries* series,Domain* domain); | ||
Michal Klocek
|
r701 | void setupCategories(QBarSeries* series); | ||
Michal Klocek
|
r131 | |||
private: | ||||
Michal Klocek
|
r1006 | QMap<QAbstractSeries *, QAxis *> m_seriesAxisMap; | ||
QMap<QAxis*, Domain *> m_axisDomainMap; | ||||
Tero Ahola
|
r988 | QMap<int, QAbstractSeries *> m_indexSeriesMap; | ||
Michal Klocek
|
r1006 | QAxis* m_axisX; | ||
QAxis* m_axisY; | ||||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r131 | int m_domainIndex; | ||
Michal Klocek
|
r223 | bool m_axisXInitialized; | ||
Michal Klocek
|
r1078 | bool m_axisYInitialized; | ||
Michal Klocek
|
r131 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif /* CHARTENGINE_P_H_ */ | ||||