##// END OF EJS Templates
QML api pie slice added/removed signals
QML api pie slice added/removed signals

File last commit:

r1481:3fafc6aab8aa
r1503:873325dbfe57
Show More
declarativexyseries.cpp
77 lines | 2.3 KiB | text/x-c | CppLexer
/ plugins / declarative / declarativexyseries.cpp
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$
**
****************************************************************************/
Marek Rosa
Changed include to small letter first becasue it didn't build on Linux
r736 //#include "DeclarativeXySeries.h"
#include "declarativexyseries.h"
Tero Ahola
QML and static data in pie and xy series
r1186 #include "declarativechart.h"
Tero Ahola
Now using only one declarative model
r1169 #include <QXYSeries>
Tero Ahola
XY model mappers to QML api
r1278 #include <QVXYModelMapper>
#include <QHXYModelMapper>
Tero Ahola
QML and static data in pie and xy series
r1186 #include <QDeclarativeListProperty>
Tero Ahola
Spline to QML API
r732
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 DeclarativeXySeries::DeclarativeXySeries()
Tero Ahola
Spline to QML API
r732 {
}
DeclarativeXySeries::~DeclarativeXySeries()
{
}
Tero Ahola
XY model mappers to QML api
r1278 void DeclarativeXySeries::classBegin()
{
}
void DeclarativeXySeries::componentComplete()
{
Tero Ahola
Use qobject_cast instead of reinterpret_cast in xy series casts
r1401 QXYSeries *series = qobject_cast<QXYSeries *>(xySeries());
Q_ASSERT(series);
Tero Ahola
XY model mappers to QML api
r1278 foreach(QObject *child, series->children()) {
if (qobject_cast<DeclarativeXyPoint *>(child)) {
Tero Ahola
Property notifications: axis minmax, bar properties, xyseries p-visibl and count
r1465 DeclarativeXyPoint *point = qobject_cast<DeclarativeXyPoint *>(child);
series->append(point->x(), point->y());
Tero Ahola
XY model mappers to QML api
r1278 } else if(qobject_cast<QVXYModelMapper *>(child)) {
QVXYModelMapper *mapper = qobject_cast<QVXYModelMapper *>(child);
mapper->setSeries(series);
} else if(qobject_cast<QHXYModelMapper *>(child)) {
QHXYModelMapper *mapper = qobject_cast<QHXYModelMapper *>(child);
mapper->setSeries(series);
}
}
}
Tero Ahola
App for demonstrating QML customization apis
r1259 DeclarativeXyPoint *DeclarativeXySeries::at(int index)
{
Tero Ahola
Use qobject_cast instead of reinterpret_cast in xy series casts
r1401 QXYSeries *series = qobject_cast<QXYSeries *>(xySeries());
Q_ASSERT(series);
Tero Ahola
App for demonstrating QML customization apis
r1259 if (index < series->count()) {
QPointF point = series->points().at(index);
DeclarativeXyPoint *xyPoint = new DeclarativeXyPoint(series);
xyPoint->setX(point.x());
xyPoint->setY(point.y());
return xyPoint;
}
return 0;
}
Tero Ahola
QML demo with dynamic data
r1240
Tero Ahola
Spline to QML API
r732 QTCOMMERCIALCHART_END_NAMESPACE