##// END OF EJS Templates
Added remove single box...
Added remove single box Change-Id: Ie0294150cef9831c28c60004b5a07f890faca74a Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2432:53927f716a3d
r2482:63ca3532f831
Show More
qsplineseries.h
51 lines | 1.3 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
r794 /****************************************************************************
**
Miikka Heikkinen
Fixed the copyright year 2012 -> 2013
r2432 ** Copyright (C) 2013 Digia Plc
Jani Honkonen
Add license headers
r794 ** 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$
**
****************************************************************************/
Marek Rosa
Spline initial
r295 #ifndef QSPLINESERIES_H
#define QSPLINESERIES_H
Jani Honkonen
Change includes in public headers from #include "xxx" -> #include <xxx>
r697 #include <qchartglobal.h>
#include <qlineseries.h>
Marek Rosa
Spline working somewhat
r401 #include <QList>
#include <QPointF>
sauimone
minor code review issues. indent, spaces, brackets etc.
r743 #include <QtGlobal>
Marek Rosa
Spline initial
r295
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Adds big fat pimpl to series classes...
r938 class QSplineSeriesPrivate;
Michal Klocek
Refactor scatter chart to fit the other classes...
r470 class QTCOMMERCIALCHART_EXPORT QSplineSeries : public QLineSeries
Marek Rosa
Spline initial
r295 {
Q_OBJECT
Marek Rosa
Spline some more
r305
Tero Ahola
Scatter customization to QML api
r1276 public:
Michal Klocek
Fixes explicit issues in cstr
r970 explicit QSplineSeries(QObject *parent = 0);
Michal Klocek
Bugfixes for spline vector allocation issues
r1082 ~QSplineSeries();
Michal Klocek
Fixes to API , QSeriesType -> SeriesType , add missing getters
r1107 QAbstractSeries::SeriesType type() const;
Marek Rosa
Spline some more
r305
Michal Klocek
Spline series windows compilation fix
r467 private:
Tero Ahola
QML weather example to use data API instead of model
r1222 Q_DECLARE_PRIVATE(QSplineSeries)
Q_DISABLE_COPY(QSplineSeries)
Michal Klocek
Adds big fat pimpl to series classes...
r938 friend class SplineChartItem;
Marek Rosa
Spline initial
r295 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSPLINESERIES_H