##// END OF EJS Templates
Draft version for QML PieSeries model API
Draft version for QML PieSeries model API

File last commit:

r1130:2b935e4f3207
r1130:2b935e4f3207
Show More
declarativepieseries.h
53 lines | 1.4 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
Simplified declarative implementation
r1117 #include <QDeclarativeListProperty>
Tero Ahola
Draft version for QML PieSeries model API
r1130 #include <QAbstractItemModel>
#include <QVariant>
#include "declarativepiemodel.h"
Tero Ahola
Dynamic data for QML pie and line series
r215
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QChart;
Tero Ahola
Simplified declarative implementation
r1117 class DeclarativePieSeries : public QPieSeries
Tero Ahola
Dynamic data for QML pie and line series
r215 {
Q_OBJECT
Tero Ahola
Draft version for QML PieSeries model API
r1130 Q_PROPERTY(DeclarativePieModel *model READ pieModel WRITE setPieModel)
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);
Tero Ahola
Dynamic data for QML pie and line series
r215
sauimone
Q_SIGNALS and Q_SLOTS
r775 public Q_SLOTS:
Tero Ahola
Draft version for QML PieSeries model API
r1130
public:
bool setPieModel(DeclarativePieModel *model);
DeclarativePieModel *pieModel();
Tero Ahola
Dynamic data for QML pie and line series
r215 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // DECLARATIVEPIESERIES_H