declarativebarseries.h
313 lines
| 12.5 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 | ||||
sauimone
|
r1594 | #include "qbarseries.h" | ||
Tero Ahola
|
r1550 | #include "qstackedbarseries.h" | ||
#include "qpercentbarseries.h" | ||||
sauimone
|
r1806 | #include "qhorizontalbarseries.h" | ||
#include "qhorizontalstackedbarseries.h" | ||||
#include "qhorizontalpercentbarseries.h" | ||||
Tero Ahola
|
r1550 | #include "qbarset.h" | ||
Marek Rosa
|
r2052 | #ifdef QT5_QUICK_1 | ||
#include <QtQuick1/QDeclarativeItem> | ||||
#include <QtQuick1/QDeclarativeParserStatus> | ||||
#else | ||||
#include <QtDeclarative/QDeclarativeItem> | ||||
#include <QtDeclarative/QDeclarativeParserStatus> | ||||
#endif | ||||
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
|
r1904 | Q_PROPERTY(qreal borderWidth READ borderWidth WRITE setBorderWidth NOTIFY borderWidthChanged REVISION 1) | ||
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
|
r1904 | qreal borderWidth() const; | ||
void setBorderWidth(qreal borderWidth); | ||||
Tero Ahola
|
r1222 | |||
public: // From QBarSet | ||||
Q_INVOKABLE void append(qreal value) { QBarSet::append(value); } | ||||
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); } | ||
sauimone
|
r1580 | Q_INVOKABLE qreal at(int index) { return QBarSet::at(index); } | ||
Tero Ahola
|
r1465 | |||
Q_SIGNALS: | ||||
void countChanged(int count); | ||||
Tero Ahola
|
r1904 | Q_REVISION(1) void borderWidthChanged(qreal width); | ||
Tero Ahola
|
r1465 | |||
private Q_SLOTS: | ||||
void handleCountChanged(int index, int count); | ||||
Tero Ahola
|
r1162 | }; | ||
sauimone
|
r1594 | class DeclarativeBarSeries : public QBarSeries, public QDeclarativeParserStatus | ||
Tero Ahola
|
r1211 | { | ||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1857 | Q_PROPERTY(QAbstractAxis *axisX READ axisX WRITE setAxisX NOTIFY axisXChanged REVISION 1) | ||
Q_PROPERTY(QAbstractAxis *axisY READ axisY WRITE setAxisY NOTIFY axisYChanged REVISION 1) | ||||
Tero Ahola
|
r1313 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
Tero Ahola
|
r1211 | |||
public: | ||||
sauimone
|
r1594 | explicit DeclarativeBarSeries(QDeclarativeItem *parent = 0); | ||
Tero Ahola
|
r1813 | QAbstractAxis *axisX() { return m_axisX; } | ||
void setAxisX(QAbstractAxis *axis) { m_axisX = axis; emit axisXChanged(axis); } | ||||
QAbstractAxis *axisY() { return m_axisY; } | ||||
void setAxisY(QAbstractAxis *axis) { m_axisY = axis; emit axisYChanged(axis); } | ||||
Tero Ahola
|
r1313 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1813 | |||
public: | ||||
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); | ||||
sauimone
|
r1594 | Q_INVOKABLE bool remove(QBarSet *barset) { return QBarSeries::remove(barset); } | ||
Q_INVOKABLE void clear() { return QBarSeries::clear(); } | ||||
Tero Ahola
|
r1302 | |||
Tero Ahola
|
r1211 | public: // from QDeclarativeParserStatus | ||
void classBegin(); | ||||
void componentComplete(); | ||||
Tero Ahola
|
r1813 | Q_SIGNALS: | ||
Tero Ahola
|
r1857 | Q_REVISION(1) void axisXChanged(QAbstractAxis *axis); | ||
Q_REVISION(1) void axisYChanged(QAbstractAxis *axis); | ||||
Tero Ahola
|
r1813 | |||
sauimone
|
r775 | public Q_SLOTS: | ||
Tero Ahola
|
r1313 | static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||
Michal Klocek
|
r1604 | |||
private: | ||||
Jani Honkonen
|
r2101 | QAbstractAxis *m_axisX; | ||
QAbstractAxis *m_axisY; | ||||
Tero Ahola
|
r646 | }; | ||
Tero Ahola
|
r1318 | class DeclarativeStackedBarSeries : public QStackedBarSeries, public QDeclarativeParserStatus | ||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1857 | Q_PROPERTY(QAbstractAxis *axisX READ axisX WRITE setAxisX NOTIFY axisXChanged REVISION 1) | ||
Q_PROPERTY(QAbstractAxis *axisY READ axisY WRITE setAxisY NOTIFY axisYChanged REVISION 1) | ||||
Tero Ahola
|
r1318 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
public: | ||||
explicit DeclarativeStackedBarSeries(QDeclarativeItem *parent = 0); | ||||
Tero Ahola
|
r1813 | QAbstractAxis *axisX() { return m_axisX; } | ||
void setAxisX(QAbstractAxis *axis) { m_axisX = axis; emit axisXChanged(axis); } | ||||
QAbstractAxis *axisY() { return m_axisY; } | ||||
void setAxisY(QAbstractAxis *axis) { m_axisY = axis; emit axisYChanged(axis); } | ||||
Tero Ahola
|
r1318 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1813 | |||
public: | ||||
Tero Ahola
|
r1318 | 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(); | ||||
Tero Ahola
|
r1813 | Q_SIGNALS: | ||
Tero Ahola
|
r1857 | Q_REVISION(1) void axisXChanged(QAbstractAxis *axis); | ||
Q_REVISION(1) void axisYChanged(QAbstractAxis *axis); | ||||
Tero Ahola
|
r1813 | |||
Tero Ahola
|
r1318 | public Q_SLOTS: | ||
static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||||
Michal Klocek
|
r1604 | |||
Tero Ahola
|
r1813 | private: | ||
Jani Honkonen
|
r2101 | QAbstractAxis *m_axisX; | ||
QAbstractAxis *m_axisY; | ||||
Tero Ahola
|
r1318 | }; | ||
class DeclarativePercentBarSeries : public QPercentBarSeries, public QDeclarativeParserStatus | ||||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1857 | Q_PROPERTY(QAbstractAxis *axisX READ axisX WRITE setAxisX NOTIFY axisXChanged REVISION 1) | ||
Q_PROPERTY(QAbstractAxis *axisY READ axisY WRITE setAxisY NOTIFY axisYChanged REVISION 1) | ||||
Tero Ahola
|
r1318 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
public: | ||||
explicit DeclarativePercentBarSeries(QDeclarativeItem *parent = 0); | ||||
Tero Ahola
|
r1813 | QAbstractAxis *axisX() { return m_axisX; } | ||
void setAxisX(QAbstractAxis *axis) { m_axisX = axis; emit axisXChanged(axis); } | ||||
QAbstractAxis *axisY() { return m_axisY; } | ||||
void setAxisY(QAbstractAxis *axis) { m_axisY = axis; emit axisYChanged(axis); } | ||||
Tero Ahola
|
r1318 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1813 | |||
public: | ||||
Tero Ahola
|
r1318 | 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(); | ||||
Tero Ahola
|
r1813 | Q_SIGNALS: | ||
Tero Ahola
|
r1857 | Q_REVISION(1) void axisXChanged(QAbstractAxis *axis); | ||
Q_REVISION(1) void axisYChanged(QAbstractAxis *axis); | ||||
Tero Ahola
|
r1813 | |||
Tero Ahola
|
r1318 | public Q_SLOTS: | ||
static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||||
Tero Ahola
|
r1813 | |||
private: | ||||
Jani Honkonen
|
r2101 | QAbstractAxis *m_axisX; | ||
QAbstractAxis *m_axisY; | ||||
Tero Ahola
|
r1318 | }; | ||
sauimone
|
r1806 | class DeclarativeHorizontalBarSeries : public QHorizontalBarSeries, public QDeclarativeParserStatus | ||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1857 | Q_PROPERTY(QAbstractAxis *axisX READ axisX WRITE setAxisX NOTIFY axisXChanged REVISION 1) | ||
Q_PROPERTY(QAbstractAxis *axisY READ axisY WRITE setAxisY NOTIFY axisYChanged REVISION 1) | ||||
sauimone
|
r1806 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
public: | ||||
explicit DeclarativeHorizontalBarSeries(QDeclarativeItem *parent = 0); | ||||
Tero Ahola
|
r1813 | QAbstractAxis *axisX() { return m_axisX; } | ||
void setAxisX(QAbstractAxis *axis) { m_axisX = axis; emit axisXChanged(axis); } | ||||
QAbstractAxis *axisY() { return m_axisY; } | ||||
void setAxisY(QAbstractAxis *axis) { m_axisY = axis; emit axisYChanged(axis); } | ||||
sauimone
|
r1806 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1813 | |||
public: | ||||
sauimone
|
r1806 | Q_INVOKABLE DeclarativeBarSet *at(int index); | ||
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 QHorizontalBarSeries::remove(barset); } | ||||
Q_INVOKABLE void clear() { return QHorizontalBarSeries::clear(); } | ||||
public: // from QDeclarativeParserStatus | ||||
void classBegin(); | ||||
void componentComplete(); | ||||
Tero Ahola
|
r1813 | Q_SIGNALS: | ||
Tero Ahola
|
r1857 | Q_REVISION(1) void axisXChanged(QAbstractAxis *axis); | ||
Q_REVISION(1) void axisYChanged(QAbstractAxis *axis); | ||||
Tero Ahola
|
r1813 | |||
sauimone
|
r1806 | public Q_SLOTS: | ||
static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||||
Tero Ahola
|
r1813 | |||
private: | ||||
Jani Honkonen
|
r2101 | QAbstractAxis *m_axisX; | ||
QAbstractAxis *m_axisY; | ||||
sauimone
|
r1806 | }; | ||
class DeclarativeHorizontalStackedBarSeries : public QHorizontalStackedBarSeries, public QDeclarativeParserStatus | ||||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1857 | Q_PROPERTY(QAbstractAxis *axisX READ axisX WRITE setAxisX NOTIFY axisXChanged REVISION 1) | ||
Q_PROPERTY(QAbstractAxis *axisY READ axisY WRITE setAxisY NOTIFY axisYChanged REVISION 1) | ||||
sauimone
|
r1806 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
public: | ||||
explicit DeclarativeHorizontalStackedBarSeries(QDeclarativeItem *parent = 0); | ||||
Tero Ahola
|
r1813 | QAbstractAxis *axisX() { return m_axisX; } | ||
void setAxisX(QAbstractAxis *axis) { m_axisX = axis; emit axisXChanged(axis); } | ||||
QAbstractAxis *axisY() { return m_axisY; } | ||||
void setAxisY(QAbstractAxis *axis) { m_axisY = axis; emit axisYChanged(axis); } | ||||
sauimone
|
r1806 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1813 | |||
public: | ||||
sauimone
|
r1806 | Q_INVOKABLE DeclarativeBarSet *at(int index); | ||
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 QHorizontalStackedBarSeries::remove(barset); } | ||||
Q_INVOKABLE void clear() { return QHorizontalStackedBarSeries::clear(); } | ||||
public: // from QDeclarativeParserStatus | ||||
void classBegin(); | ||||
void componentComplete(); | ||||
Tero Ahola
|
r1813 | Q_SIGNALS: | ||
Tero Ahola
|
r1857 | Q_REVISION(1) void axisXChanged(QAbstractAxis *axis); | ||
Q_REVISION(1) void axisYChanged(QAbstractAxis *axis); | ||||
Tero Ahola
|
r1813 | |||
sauimone
|
r1806 | public Q_SLOTS: | ||
static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||||
Tero Ahola
|
r1813 | |||
private: | ||||
Jani Honkonen
|
r2101 | QAbstractAxis *m_axisX; | ||
QAbstractAxis *m_axisY; | ||||
sauimone
|
r1806 | }; | ||
class DeclarativeHorizontalPercentBarSeries : public QHorizontalPercentBarSeries, public QDeclarativeParserStatus | ||||
{ | ||||
Q_OBJECT | ||||
Q_INTERFACES(QDeclarativeParserStatus) | ||||
Tero Ahola
|
r1857 | Q_PROPERTY(QAbstractAxis *axisX READ axisX WRITE setAxisX NOTIFY axisXChanged REVISION 1) | ||
Q_PROPERTY(QAbstractAxis *axisY READ axisY WRITE setAxisY NOTIFY axisYChanged REVISION 1) | ||||
sauimone
|
r1806 | Q_PROPERTY(QDeclarativeListProperty<QObject> seriesChildren READ seriesChildren) | ||
Q_CLASSINFO("DefaultProperty", "seriesChildren") | ||||
public: | ||||
explicit DeclarativeHorizontalPercentBarSeries(QDeclarativeItem *parent = 0); | ||||
Tero Ahola
|
r1813 | QAbstractAxis *axisX() { return m_axisX; } | ||
void setAxisX(QAbstractAxis *axis) { m_axisX = axis; emit axisXChanged(axis); } | ||||
QAbstractAxis *axisY() { return m_axisY; } | ||||
void setAxisY(QAbstractAxis *axis) { m_axisY = axis; emit axisYChanged(axis); } | ||||
sauimone
|
r1806 | QDeclarativeListProperty<QObject> seriesChildren(); | ||
Tero Ahola
|
r1813 | |||
public: | ||||
sauimone
|
r1806 | Q_INVOKABLE DeclarativeBarSet *at(int index); | ||
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 QHorizontalPercentBarSeries::remove(barset); } | ||||
Q_INVOKABLE void clear() { return QHorizontalPercentBarSeries::clear(); } | ||||
public: // from QDeclarativeParserStatus | ||||
void classBegin(); | ||||
void componentComplete(); | ||||
Tero Ahola
|
r1813 | Q_SIGNALS: | ||
Tero Ahola
|
r1857 | Q_REVISION(1) void axisXChanged(QAbstractAxis *axis); | ||
Q_REVISION(1) void axisYChanged(QAbstractAxis *axis); | ||||
Tero Ahola
|
r1813 | |||
sauimone
|
r1806 | public Q_SLOTS: | ||
static void appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element); | ||||
Tero Ahola
|
r1813 | |||
private: | ||||
Jani Honkonen
|
r2101 | QAbstractAxis *m_axisX; | ||
QAbstractAxis *m_axisY; | ||||
sauimone
|
r1806 | }; | ||
Tero Ahola
|
r646 | QTCOMMERCIALCHART_END_NAMESPACE | ||
#endif // DECLARATIVEBARSERIES_H | ||||