##// END OF EJS Templates
QML BarSeries API to support BarSet children
QML BarSeries API to support BarSet children

File last commit:

r1186:0385556f52b3
r1193:62e3aa7546c6
Show More
declarativescatterseries.h
47 lines | 1.6 KiB | text/x-c | CLexer
/ qmlplugin / declarativescatterseries.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
Proposal for QML data API
r196 #ifndef DECLARATIVESCATTERSERIES_H
#define DECLARATIVESCATTERSERIES_H
#include "qchartglobal.h"
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 #include "qscatterseries.h"
Tero Ahola
Spline to QML API
r732 #include "declarativexyseries.h"
Tero Ahola
Proposal for QML data API
r196
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 class DeclarativeScatterSeries : public QScatterSeries, public DeclarativeXySeries
Tero Ahola
Proposal for QML data API
r196 {
Q_OBJECT
Tero Ahola
Now using only one declarative model
r1169 Q_PROPERTY(DeclarativeTableModel *model READ declarativeModel WRITE setDeclarativeModel)
Tero Ahola
QML and static data in pie and xy series
r1186 Q_PROPERTY(QDeclarativeListProperty<QObject> declarativeChildren READ declarativeChildren)
Q_CLASSINFO("DefaultProperty", "declarativeChildren")
Tero Ahola
Proposal for QML data API
r196
public:
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 explicit DeclarativeScatterSeries(QObject *parent = 0);
Tero Ahola
QML and static data in pie and xy series
r1186 QDeclarativeListProperty<QObject> declarativeChildren();
public Q_SLOTS:
static void appendDeclarativeChildren(QDeclarativeListProperty<QObject> *list, QObject *element);
Tero Ahola
Proposal for QML data API
r196 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // DECLARATIVESCATTERSERIES_H