##// END OF EJS Templates
Fix sync.profile dependency versioning...
Fix sync.profile dependency versioning Do not hard-code the version of the dependencies here, the CI system determines the version based on the target branch of the module. Change-Id: I5fdafa44f3a12d6d43520f30f9eaa27f8856af1b Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>

File last commit:

r2845:ae12522d475c
r2860:a32ee2946028
Show More
declarativesplineseries.cpp
106 lines | 3.3 KiB | text/x-c | CppLexer
/ src / chartsqml2 / declarativesplineseries.cpp
Titta Heikkala
Updated license headers...
r2845 /******************************************************************************
Jani Honkonen
Add/modify license headers
r830 **
Titta Heikkala
Updated license headers...
r2845 ** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
Jani Honkonen
Add/modify license headers
r830 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Jani Honkonen
Add/modify license headers
r830 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_BEGIN_LICENSE:COMM$
Jani Honkonen
Add/modify license headers
r830 **
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
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
Jani Honkonen
Add/modify license headers
r830 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
******************************************************************************/
Jani Honkonen
Add/modify license headers
r830
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 #include "declarativesplineseries.h"
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Tero Ahola
Declarative series classed now derived from QSeries childs
r789
DeclarativeSplineSeries::DeclarativeSplineSeries(QObject *parent) :
Tero Ahola
Refactored QML axis handling
r1813 QSplineSeries(parent),
Tero Ahola
Added axisXTop and axisYRight properties to QML series APIs
r2296 m_axes(new DeclarativeAxes(this))
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 {
Tero Ahola
Added axisXTop and axisYRight properties to QML series APIs
r2296 connect(m_axes, SIGNAL(axisXChanged(QAbstractAxis*)), this, SIGNAL(axisXChanged(QAbstractAxis*)));
connect(m_axes, SIGNAL(axisYChanged(QAbstractAxis*)), this, SIGNAL(axisYChanged(QAbstractAxis*)));
connect(m_axes, SIGNAL(axisXTopChanged(QAbstractAxis*)), this, SIGNAL(axisXTopChanged(QAbstractAxis*)));
connect(m_axes, SIGNAL(axisYRightChanged(QAbstractAxis*)), this, SIGNAL(axisYRightChanged(QAbstractAxis*)));
Miikka Heikkinen
Add Polar chart support...
r2483 connect(m_axes, SIGNAL(axisXChanged(QAbstractAxis*)), this, SIGNAL(axisAngularChanged(QAbstractAxis*)));
connect(m_axes, SIGNAL(axisYChanged(QAbstractAxis*)), this, SIGNAL(axisRadialChanged(QAbstractAxis*)));
Tero Ahola
Property notifications: axis minmax, bar properties, xyseries p-visibl and count
r1465 connect(this, SIGNAL(pointAdded(int)), this, SLOT(handleCountChanged(int)));
connect(this, SIGNAL(pointRemoved(int)), this, SLOT(handleCountChanged(int)));
Miikka Heikkinen
Add a method to remove more than one point to QXYSeries...
r2805 connect(this, SIGNAL(pointsRemoved(int, int)), this, SLOT(handleCountChanged(int)));
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 }
Tero Ahola
Property notifications: axis minmax, bar properties, xyseries p-visibl and count
r1465 void DeclarativeSplineSeries::handleCountChanged(int index)
{
Q_UNUSED(index)
emit countChanged(points().count());
}
Tero Ahola
Adding missing QML series API line/border properties
r1904 qreal DeclarativeSplineSeries::width() const
{
return pen().widthF();
}
void DeclarativeSplineSeries::setWidth(qreal width)
{
if (width != pen().widthF()) {
QPen p = pen();
p.setWidthF(width);
setPen(p);
emit widthChanged(width);
}
}
Qt::PenStyle DeclarativeSplineSeries::style() const
{
return pen().style();
}
void DeclarativeSplineSeries::setStyle(Qt::PenStyle style)
{
if (style != pen().style()) {
QPen p = pen();
p.setStyle(style);
setPen(p);
emit styleChanged(style);
}
}
Qt::PenCapStyle DeclarativeSplineSeries::capStyle() const
{
return pen().capStyle();
}
void DeclarativeSplineSeries::setCapStyle(Qt::PenCapStyle capStyle)
{
if (capStyle != pen().capStyle()) {
QPen p = pen();
p.setCapStyle(capStyle);
setPen(p);
emit capStyleChanged(capStyle);
}
}
Titta Heikkala
Qt Charts project file structure change...
r2712 QQmlListProperty<QObject> DeclarativeSplineSeries::declarativeChildren()
Tero Ahola
Separated series model stuff from data api in QML examples
r1202 {
Titta Heikkala
Qt Charts project file structure change...
r2712 return QQmlListProperty<QObject>(this, 0, &appendDeclarativeChildren ,0,0,0);
Tero Ahola
Separated series model stuff from data api in QML examples
r1202 }
Titta Heikkala
Qt Charts project file structure change...
r2712 void DeclarativeSplineSeries::appendDeclarativeChildren(QQmlListProperty<QObject> *list, QObject *element)
Tero Ahola
Separated series model stuff from data api in QML examples
r1202 {
Tero Ahola
Property notifications: axis minmax, bar properties, xyseries p-visibl and count
r1465 Q_UNUSED(list)
Q_UNUSED(element)
Jani Honkonen
Fix spelling errors
r1940 // Empty implementation, children are parsed in componentComplete
Tero Ahola
Separated series model stuff from data api in QML examples
r1202 }
Tero Ahola
Cleaning up declarative implementation
r1211
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 #include "moc_declarativesplineseries.cpp"
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE