##// END OF EJS Templates
Merge remote-tracking branch 'origin/5.6' into 5.7...
Merge remote-tracking branch 'origin/5.6' into 5.7 Conflicts: sync.profile Change-Id: Icdf61d347a6d0b3624867ceb8c1e4220c6c78a76

File last commit:

r2854:46147b040d06
r2866:bbf52870f4e3 merge
Show More
declarativeboxplotseries.h
157 lines | 6.0 KiB | text/x-c | CLexer
/ src / chartsqml2 / declarativeboxplotseries.h
Miikka Heikkinen
Updated license...
r2854 /****************************************************************************
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
Miikka Heikkinen
Updated license...
r2854 ** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
Miikka Heikkinen
Updated license...
r2854 ** This file is part of the Qt Charts module of the Qt Toolkit.
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
Miikka Heikkinen
Updated license...
r2854 ** $QT_BEGIN_LICENSE:GPL$
Titta Heikkala
Updated license headers...
r2845 ** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
Miikka Heikkinen
Updated license...
r2854 ** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
Miikka Heikkinen
Updated license...
r2854 ****************************************************************************/
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
#ifndef DECLARATIVEBOXPLOT_H
#define DECLARATIVEBOXPLOT_H
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QBoxSet>
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 #include "declarativeaxes.h"
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QBoxPlotSeries>
Titta Heikkala
Qt Charts project file structure change...
r2712
Miikka Heikkinen
Fix Qt5 building of quick2 plugin...
r2551 #include <QtQuick/QQuickItem>
#include <QtQml/QQmlParserStatus>
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
class DeclarativeBoxSet : public QBoxSet
{
Q_OBJECT
Q_PROPERTY(QVariantList values READ values WRITE setValues)
Q_PROPERTY(QString label READ label WRITE setLabel)
Q_PROPERTY(int count READ count)
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Q_PROPERTY(QString brushFilename READ brushFilename WRITE setBrushFilename NOTIFY brushFilenameChanged REVISION 1)
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 Q_ENUMS(ValuePositions)
public: // duplicate from QBoxSet
enum ValuePositions {
LowerExtreme = 0x0,
LowerQuartile,
Median,
UpperQuartile,
UpperExtreme
};
public:
explicit DeclarativeBoxSet(const QString label = "", QObject *parent = 0);
QVariantList values();
void setValues(QVariantList values);
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 QString brushFilename() const;
void setBrushFilename(const QString &brushFilename);
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
public: // From QBoxSet
Q_INVOKABLE void append(qreal value) { QBoxSet::append(value); }
Q_INVOKABLE void clear() {QBoxSet::clear(); }
Q_INVOKABLE qreal at(int index) { return QBoxSet::at(index); }
Q_INVOKABLE void setValue(int index, qreal value) { QBoxSet::setValue(index, value); }
Q_SIGNALS:
void changedValues();
void changedValue(int index);
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Q_REVISION(1) void brushFilenameChanged(const QString &brushFilename);
private Q_SLOTS:
void handleBrushChanged();
private:
QString m_brushFilename;
QImage m_brushImage;
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 };
Titta Heikkala
Qt Charts project file structure change...
r2712 class DeclarativeBoxPlotSeries : public QBoxPlotSeries, public QQmlParserStatus
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 {
Q_OBJECT
Miikka Heikkinen
Fix Qt5 building of quick2 plugin...
r2551 Q_INTERFACES(QQmlParserStatus)
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 Q_PROPERTY(QAbstractAxis *axisX READ axisX WRITE setAxisX NOTIFY axisXChanged)
Q_PROPERTY(QAbstractAxis *axisY READ axisY WRITE setAxisY NOTIFY axisYChanged)
Q_PROPERTY(QAbstractAxis *axisXTop READ axisXTop WRITE setAxisXTop NOTIFY axisXTopChanged)
Q_PROPERTY(QAbstractAxis *axisYRight READ axisYRight WRITE setAxisYRight NOTIFY axisYRightChanged)
Miikka Heikkinen
Fix Qt5 building of quick2 plugin...
r2551 Q_PROPERTY(QQmlListProperty<QObject> seriesChildren READ seriesChildren)
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Q_PROPERTY(QString brushFilename READ brushFilename WRITE setBrushFilename NOTIFY brushFilenameChanged REVISION 1)
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 Q_CLASSINFO("DefaultProperty", "seriesChildren")
public:
Titta Heikkala
Qt Charts project file structure change...
r2712 explicit DeclarativeBoxPlotSeries(QQuickItem *parent = 0);
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 QAbstractAxis *axisX() { return m_axes->axisX(); }
void setAxisX(QAbstractAxis *axis) { m_axes->setAxisX(axis); }
QAbstractAxis *axisY() { return m_axes->axisY(); }
void setAxisY(QAbstractAxis *axis) { m_axes->setAxisY(axis); }
QAbstractAxis *axisXTop() { return m_axes->axisXTop(); }
void setAxisXTop(QAbstractAxis *axis) { m_axes->setAxisXTop(axis); }
QAbstractAxis *axisYRight() { return m_axes->axisYRight(); }
void setAxisYRight(QAbstractAxis *axis) { m_axes->setAxisYRight(axis); }
Titta Heikkala
Qt Charts project file structure change...
r2712 QQmlListProperty<QObject> seriesChildren();
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 QString brushFilename() const;
void setBrushFilename(const QString &brushFilename);
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
public:
Q_INVOKABLE DeclarativeBoxSet *at(int index);
Q_INVOKABLE DeclarativeBoxSet *append(const QString label, QVariantList values) { return insert(count(), label, values); }
Q_INVOKABLE void append(DeclarativeBoxSet *box) { QBoxPlotSeries::append(box); }
Q_INVOKABLE DeclarativeBoxSet *insert(int index, const QString label, QVariantList values);
Q_INVOKABLE bool remove(DeclarativeBoxSet *box) { return QBoxPlotSeries::remove(qobject_cast<QBoxSet *>(box)); }
Q_INVOKABLE void clear() { return QBoxPlotSeries::clear(); }
public: // from QDeclarativeParserStatus
void classBegin();
void componentComplete();
Q_SIGNALS:
void axisXChanged(QAbstractAxis *axis);
void axisYChanged(QAbstractAxis *axis);
void axisXTopChanged(QAbstractAxis *axis);
void axisYRightChanged(QAbstractAxis *axis);
void clicked(DeclarativeBoxSet *boxset);
void hovered(bool status, DeclarativeBoxSet *boxset);
Titta Heikkala
Add pressed, released and doubleClicked signals...
r2739 void pressed(DeclarativeBoxSet *boxset);
void released(DeclarativeBoxSet *boxset);
void doubleClicked(DeclarativeBoxSet *boxset);
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Q_REVISION(1) void brushFilenameChanged(const QString &brushFilename);
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
public Q_SLOTS:
Titta Heikkala
Qt Charts project file structure change...
r2712 static void appendSeriesChildren(QQmlListProperty<QObject> *list, QObject *element);
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 void onHovered(bool status, QBoxSet *boxset);
void onClicked(QBoxSet *boxset);
Titta Heikkala
Add pressed, released and doubleClicked signals...
r2739 void onPressed(QBoxSet *boxset);
void onReleased(QBoxSet *boxset);
void onDoubleClicked(QBoxSet *boxset);
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 private Q_SLOTS:
void handleBrushChanged();
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 public:
DeclarativeAxes *m_axes;
Titta Heikkala
Add possibility to set brush image via QML API...
r2681
private:
QString m_brushFilename;
QImage m_brushImage;
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
#endif // DECLARATIVEBOXPLOT_H