##// END OF EJS Templates
Refactors internals...
Refactors internals * rewrite axisUpdated signal handling * create handlers for each property of axis * decouple chartdataset, presenter, theme * adds theme manager * adds axis add/remove/attach/detach handling * refactors createGraphics * add initializers (graphics,domain,theme,animations) * refactor the way the charts are constructed (decouple form presenter) * fix initialization issues with qchart * refactor domain logic to handle also geometry size for charts * delegate xyseries geometry calculation to domian * fix lazy initialization of animations * remove hadnleGeomoetryChanged * add shared pointers to handle reference count for domain * moves nice number algorithm to domain * adds applyNiceNumbers(), depreciate setNiceNumbers * refactor multiple charts handling * domain is shared object * each domain can have multiple axis for controlling * multiple charts share now the same domain

File last commit:

r2273:1c49aa901cb2
r2273:1c49aa901cb2
Show More
chartdataset_p.h
87 lines | 2.5 KiB | text/x-c | CLexer
/ src / chartdataset_p.h
Michal Klocek
Updates chartdataset unit test
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
Fixes header guard style issues
r969 #ifndef CHARTDATASET_P_H
#define CHARTDATASET_P_H
Michal Klocek
Refactors qchart , adds line animation...
r131
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 #include "qabstractseries.h"
Michal Klocek
Refactors qchart , adds line animation...
r131 #include "domain_p.h"
Michal Klocek
Adds createDefaultAxes logic
r1588 #include "qabstractaxis_p.h"
Michal Klocek
Refactors qchart , adds line animation...
r131 #include <QVector>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Refactors QAxis to QAbstractAxis...
r1541 class QAbstractAxis;
Michal Klocek
Refactors internals...
r2273 class ChartPresenter;
Michal Klocek
Refactors axis handling...
r223
Michal Klocek
Adds visibility hidden compilation flag, adds EXPORT_AUTO macro for interal unit testing
r1050 class QTCOMMERCIALCHART_AUTOTEST_EXPORT ChartDataSet : public QObject
Michal Klocek
Refactors qchart , adds line animation...
r131 {
Q_OBJECT
public:
Michal Klocek
Refactors internals...
r2273 ChartDataSet(QChart *chart);
Michal Klocek
Refactors qchart , adds line animation...
r131 virtual ~ChartDataSet();
Jani Honkonen
more coding style fixes for src-folder...
r2104 void addSeries(QAbstractSeries *series);
void removeSeries(QAbstractSeries *series);
Michal Klocek
Refactors internals...
r2273 QList<QAbstractSeries *> series() const;
Michal Klocek
Adds RemoveAllSeries method to API
r258 void removeAllSeries();
Michal Klocek
Refactors qchart , adds line animation...
r131
Michal Klocek
Refactors internals...
r2273 void addAxis(QAbstractAxis *axis,Qt::Alignment aligment);
void removeAxis(QAbstractAxis *axis);
QList<QAbstractAxis*> axes() const;
void removeAllAxes();
sauimone
added map for yaxises methods to set axis
r1554
Michal Klocek
Refactors internals...
r2273 bool attachAxis(QAbstractSeries* series,QAbstractAxis *axis);
bool detachAxis(QAbstractSeries* series,QAbstractAxis *axis);
Michal Klocek
Refactor axis hadnling...
r1078
Michal Klocek
Refactor QChart API...
r1577 void createDefaultAxes();
Michal Klocek
Refactors internals...
r2273 void zoomInDomain(const QRectF &rect);
void zoomOutDomain(const QRectF &rect);
void scrollDomain(qreal dx, qreal dy);
Michal Klocek
Updates chartdataset unit test
r771 Q_SIGNALS:
Michal Klocek
Refactors internals...
r2273 void axisAdded(QAbstractAxis* axis);
void axisRemoved(QAbstractAxis* axis);
void seriesAdded(QAbstractSeries* series);
void seriesRemoved(QAbstractSeries* series);
Michal Klocek
Refactors axis handling...
r223
private:
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 void createAxes(QAbstractAxis::AxisTypes type, Qt::Orientation orientation);
Jani Honkonen
more coding style fixes for src-folder...
r2104 QAbstractAxis *createAxis(QAbstractAxis::AxisType type, Qt::Orientation orientation);
Michal Klocek
Refactors qchart , adds line animation...
r131
private:
Michal Klocek
Refactors internals...
r2273 QList<QAbstractSeries *> m_seriesList;
QList<QAbstractAxis *> m_axisList;
QChart* m_chart;
Michal Klocek
Refactors qchart , adds line animation...
r131 };
QTCOMMERCIALCHART_END_NAMESPACE
Jani Honkonen
Fix Krazy issues
r1935 #endif /* CHARTENGINE_P_H */