##// END OF EJS Templates
fixed barchart signals with pimpl. drilldown works now
fixed barchart signals with pimpl. drilldown works now

File last commit:

r938:43d9ec405aa3
r968:ecf1d49ffcb6
Show More
qsplineseries.h
53 lines | 1.4 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
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$
**
****************************************************************************/
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
Michal Klocek
Spline series windows compilation fix
r467 public:
Marek Rosa
Spline some more
r305
QSplineSeries(QObject *parent = 0);
Michal Klocek
Adds big fat pimpl to series classes...
r938 QSeries::QSeriesType type() const;
Marek Rosa
Spline some more
r305
Michal Klocek
Adds big fat pimpl to series classes...
r938 QPointF controlPoint(int index) const;
Marek Rosa
Quick fix: Refactoring the name did not work correctly
r864 void setModelMappingRange(int first, int count);
Marek Rosa
QXYSeries: model data orientation added. QBarSeries: some model data function placeholders
r527
Michal Klocek
Spline series windows compilation fix
r467 private:
Michal Klocek
Adds big fat pimpl to series classes...
r938 Q_DECLARE_PRIVATE(QSplineSeries);
Q_DISABLE_COPY(QSplineSeries);
friend class SplineChartItem;
Marek Rosa
Spline initial
r295 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSPLINESERIES_H