##// END OF EJS Templates
Make ekgchart compile
Make ekgchart compile

File last commit:

r830:b345b831b8c1
r840:58901e478159
Show More
declarativepieseries.h
57 lines | 1.6 KiB | text/x-c | CLexer
/ qmlplugin / declarativepieseries.h
Jani Honkonen
Add/modify license headers
r830 /****************************************************************************
**
** 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$
**
****************************************************************************/
Tero Ahola
Dynamic data for QML pie and line series
r215 #ifndef DECLARATIVEPIESERIES_H
#define DECLARATIVEPIESERIES_H
#include "qchartglobal.h"
#include "qpieslice.h"
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 #include "qpieseries.h"
Tero Ahola
Dynamic data for QML pie and line series
r215 #include <QDeclarativeItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QChart;
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 class DeclarativePieSeries : public QPieSeries, public QDeclarativeParserStatus
Tero Ahola
Dynamic data for QML pie and line series
r215 {
Q_OBJECT
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 Q_INTERFACES(QDeclarativeParserStatus)
Q_PROPERTY(QDeclarativeListProperty<QPieSlice> slices READ slices)
Tero Ahola
Dynamic data for QML pie and line series
r215
public:
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 explicit DeclarativePieSeries(QObject *parent = 0);
QDeclarativeListProperty<QPieSlice> slices();
Tero Ahola
Dynamic data for QML pie and line series
r215
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 public: // from QDeclarativeParserStatus
void classBegin();
void componentComplete();
Tero Ahola
Dynamic data for QML pie and line series
r215
sauimone
Q_SIGNALS and Q_SLOTS
r775 public Q_SLOTS:
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 static void appendSlice(QDeclarativeListProperty<QPieSlice> *list,
QPieSlice *element);
Tero Ahola
Dynamic data for QML pie and line series
r215
private:
QChart *m_chart;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // DECLARATIVEPIESERIES_H