declarativebarseries.h
166 lines
| 6.4 KiB
| text/x-c
|
CLexer
Jani Honkonen
|
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
|
r646 | #ifndef DECLARATIVEBARSERIES_H | ||
#define DECLARATIVEBARSERIES_H | ||||
#include "qchartglobal.h" | ||||
Tero Ahola
|
r1193 | #include <QGroupedBarSeries> | ||
Tero Ahola
|
r1318 | #include <QStackedBarSeries> | ||
#include <QPercentBarSeries> | ||||
Tero Ahola
|
r1272 | #include <QBarSet> | ||
Tero Ahola
|
r1318 | #include <QDeclarativeItem> | ||
#include <QDeclarativeParserStatus> | ||||
Tero Ahola
|
r646 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class QChart; | ||||
Tero Ahola
|
r1162 | class DeclarativeBarSet : public QBarSet | ||
Tero Ahola
|
r646 | { | ||
Q_OBJECT | ||||
Tero Ahola
|
r1162 | Q_PROPERTY(QVariantList values READ values WRITE setValues) | ||
Tero Ahola
|
r1465 | Q_PROPERTY(int count READ count NOTIFY countChanged) | ||
Tero Ahola
|
r1162 | |||
public: | ||||
explicit DeclarativeBarSet(QObject *parent = 0); | ||||
QVariantList values(); | ||||
void setValues(QVariantList values); | ||||
Tero Ahola
|
r1222 | |||
public: // From QBarSet | ||||
Q_INVOKABLE void append(qreal value) { QBarSet::append(value); } | ||||
Q_INVOKABLE void append(qreal x, qreal y) { QBarSet::append(QPointF(x, y)); } | ||||
sauimone
|
r1514 | Q_INVOKABLE void remove(const int index, const int count = 1) { QBarSet::remove(index, count); } | ||
Tero Ahola
|
r1513 | Q_INVOKABLE void replace(int index, qreal value) { QBarSet::replace(index, value); } | ||
Q_INVOKABLE void replace(int index, qreal x, qreal y) { QBarSet::replace(index, QPointF(x, y)); } | ||||
Q_INVOKABLE QPointF at(int index) { return QBarSet::at(index); } | ||||
Tero Ahola
|
r1465 | |||
Q_SIGNALS: | ||||
void countChanged(int count); | ||||
private Q_SLOTS: | ||||
void handleCountChanged(int index, int count); | ||||
Tero Ahola
|
r1162 | }; | ||
Tero Ahola
|
r1222 | class DeclarativeBarSeries : public QBarSeries, public QDeclarativeParserStatus | ||
Tero Ahola
|
r1162 | { | ||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1313 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
Tero Ahola
|
r646 | |||
public: | ||||
explicit DeclarativeBarSeries(QDeclarativeItem *parent = 0); | ||||
Tero Ahola
|
r1313 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1302 | Q_INVOKABLE DeclarativeBarSet *at(int index); | ||
Tero Ahola
|
r1511 | Q_INVOKABLE DeclarativeBarSet *append(QString label, QVariantList values) { return insert(count(), label, values); } | ||
Q_INVOKABLE DeclarativeBarSet *insert(int index, QString label, QVariantList values); | ||||
Q_INVOKABLE bool remove(QBarSet *barset) { return QBarSeries::remove(barset); } | ||||
Q_INVOKABLE void clear() { return QBarSeries::clear(); } | ||||
Tero Ahola
|
r1302 | |||
Tero Ahola
|
r726 | public: // from QDeclarativeParserStatus | ||
Tero Ahola
|
r1162 | void classBegin(); | ||
Tero Ahola
|
r726 | void componentComplete(); | ||
Tero Ahola
|
r1506 | Q_SIGNALS: | ||
void added(DeclarativeBarSet *barset); | ||||
void removed(DeclarativeBarSet *barset); | ||||
Tero Ahola
|
r1211 | public Q_SLOTS: | ||
Tero Ahola
|
r1313 | static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||
Tero Ahola
|
r1506 | void handleAdded(QList<QBarSet* > barsets); | ||
void handleRemoved(QList<QBarSet* > barsets); | ||||
Tero Ahola
|
r1211 | }; | ||
class DeclarativeGroupedBarSeries : public QGroupedBarSeries, public QDeclarativeParserStatus | ||||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1313 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
Tero Ahola
|
r1211 | |||
public: | ||||
explicit DeclarativeGroupedBarSeries(QDeclarativeItem *parent = 0); | ||||
Tero Ahola
|
r1313 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1302 | Q_INVOKABLE DeclarativeBarSet *at(int index); | ||
Tero Ahola
|
r1511 | Q_INVOKABLE DeclarativeBarSet *append(QString label, QVariantList values) { return insert(count(), label, values); } | ||
Q_INVOKABLE DeclarativeBarSet *insert(int index, QString label, QVariantList values); | ||||
Q_INVOKABLE bool remove(QBarSet *barset) { return QGroupedBarSeries::remove(barset); } | ||||
Q_INVOKABLE void clear() { return QGroupedBarSeries::clear(); } | ||||
Tero Ahola
|
r1302 | |||
Tero Ahola
|
r1211 | public: // from QDeclarativeParserStatus | ||
void classBegin(); | ||||
void componentComplete(); | ||||
sauimone
|
r775 | public Q_SLOTS: | ||
Tero Ahola
|
r1313 | static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||
Tero Ahola
|
r646 | }; | ||
Tero Ahola
|
r1318 | class DeclarativeStackedBarSeries : public QStackedBarSeries, public QDeclarativeParserStatus | ||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
public: | ||||
explicit DeclarativeStackedBarSeries(QDeclarativeItem *parent = 0); | ||||
QDeclarativeListProperty<QObject> seriesChildren(); | ||||
Q_INVOKABLE DeclarativeBarSet *at(int index); | ||||
Tero Ahola
|
r1511 | Q_INVOKABLE DeclarativeBarSet *append(QString label, QVariantList values) { return insert(count(), label, values); } | ||
Q_INVOKABLE DeclarativeBarSet *insert(int index, QString label, QVariantList values); | ||||
Q_INVOKABLE bool remove(QBarSet *barset) { return QStackedBarSeries::remove(barset); } | ||||
Q_INVOKABLE void clear() { return QStackedBarSeries::clear(); } | ||||
Tero Ahola
|
r1318 | |||
public: // from QDeclarativeParserStatus | ||||
void classBegin(); | ||||
void componentComplete(); | ||||
public Q_SLOTS: | ||||
static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||||
}; | ||||
class DeclarativePercentBarSeries : public QPercentBarSeries, public QDeclarativeParserStatus | ||||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
public: | ||||
explicit DeclarativePercentBarSeries(QDeclarativeItem *parent = 0); | ||||
QDeclarativeListProperty<QObject> seriesChildren(); | ||||
Q_INVOKABLE DeclarativeBarSet *at(int index); | ||||
Tero Ahola
|
r1511 | Q_INVOKABLE DeclarativeBarSet *append(QString label, QVariantList values) { return insert(count(), label, values); } | ||
Q_INVOKABLE DeclarativeBarSet *insert(int index, QString label, QVariantList values); | ||||
Q_INVOKABLE bool remove(QBarSet *barset) { return QPercentBarSeries::remove(barset); } | ||||
Q_INVOKABLE void clear() { return QPercentBarSeries::clear(); } | ||||
Tero Ahola
|
r1318 | |||
public: // from QDeclarativeParserStatus | ||||
void classBegin(); | ||||
void componentComplete(); | ||||
public Q_SLOTS: | ||||
static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||||
}; | ||||
Tero Ahola
|
r646 | QTCOMMERCIALCHART_END_NAMESPACE | ||
#endif // DECLARATIVEBARSERIES_H | ||||