##// END OF EJS Templates
Qt Commercial -> Qt Enterprise...
Qt Commercial -> Qt Enterprise Also updated licenses. Change-Id: Ie14327305207e14879c1f1223219fcdfa1669dc0 Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2574:599370d0561c
r2574:599370d0561c
Show More
declarativemodel.cpp
110 lines | 3.0 KiB | text/x-c | CppLexer
Tero Ahola
Draft version for QML PieSeries model API
r1130 /****************************************************************************
**
Miikka Heikkinen
More copyright year changes
r2433 ** Copyright (C) 2013 Digia Plc
Tero Ahola
Draft version for QML PieSeries model API
r1130 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Tero Ahola
Draft version for QML PieSeries model API
r1130 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Tero Ahola
Draft version for QML PieSeries model API
r1130 ** 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
Draft for QML demo that shows weather forecasts
r1139 #include "declarativemodel.h"
Tero Ahola
Draft version for QML PieSeries model API
r1130 #include <qdeclarativelist.h>
Tero Ahola
Fixed Qml Custom Model demo header data
r1395 #include <QStringList>
Tero Ahola
Draft for QML demo that shows weather forecasts
r1139 #include <QDebug>
Tero Ahola
Draft version for QML PieSeries model API
r1130
Tero Ahola
QML custom model demo now implements it's own QAbstractItemModel based model
r1272 ////////////// Table model element ///////////////////
Tero Ahola
Now using only one declarative model
r1169
Tero Ahola
Cleaning up ChartModel impl before moving it into a demo app
r1190 DeclarativeTableModelElement::DeclarativeTableModelElement(QObject *parent)
Tero Ahola
Now using only one declarative model
r1169 : QObject(parent)
{
}
Tero Ahola
Cleaning up ChartModel impl before moving it into a demo app
r1190 QVariantList DeclarativeTableModelElement::values()
Tero Ahola
Now using only one declarative model
r1169 {
return m_values;
}
Tero Ahola
Cleaning up ChartModel impl before moving it into a demo app
r1190 void DeclarativeTableModelElement::setValues(QVariantList values)
Tero Ahola
Now using only one declarative model
r1169 {
m_values = values;
}
////////////// Table model ///////////////////
Tero Ahola
Added declarative model for bar series
r1162
DeclarativeTableModel::DeclarativeTableModel(QObject *parent) :
Tero Ahola
QML custom model demo now implements it's own QAbstractItemModel based model
r1272 CustomTableModel(parent)
Tero Ahola
Added declarative model for bar series
r1162 {
}
void DeclarativeTableModel::classBegin()
{
}
void DeclarativeTableModel::componentComplete()
{
Tero Ahola
QML and static data in pie and xy series
r1186 foreach (QObject *child, children()) {
Tero Ahola
Cleaning up ChartModel impl before moving it into a demo app
r1190 if (qobject_cast<DeclarativeTableModelElement *>(child)) {
Tero Ahola
Header data to QML custom model demo
r1387 DeclarativeTableModelElement *element = qobject_cast<DeclarativeTableModelElement *>(child);
append(element->values());
Tero Ahola
QML and static data in pie and xy series
r1186 }
}
Tero Ahola
Added declarative model for bar series
r1162 }
Tero Ahola
Fixed Qml Custom Model demo header data
r1395 void DeclarativeTableModel::setVerticalHeaders(QStringList headers)
{
for (int i(0); i < headers.count(); i++)
setHeaderData(i, Qt::Vertical, headers.at(i));
}
QStringList DeclarativeTableModel::verticalHeaders()
{
return QStringList();
}
Tero Ahola
Added declarative model for bar series
r1162 QDeclarativeListProperty<QObject> DeclarativeTableModel::modelChildren()
{
return QDeclarativeListProperty<QObject>(this, 0, &DeclarativeTableModel::appendModelChild);
}
void DeclarativeTableModel::appendModelChild(QDeclarativeListProperty<QObject> *list,
QObject *child)
{
Jani Honkonen
Fix spelling errors
r1940 // children are added in componentComplete instead
Tero Ahola
Added declarative model for bar series
r1162 Q_UNUSED(list)
Q_UNUSED(child)
}
Tero Ahola
Now using only one declarative model
r1169 void DeclarativeTableModel::append(QVariantList values)
Tero Ahola
Added declarative model for bar series
r1162 {
Tero Ahola
Now using only one declarative model
r1169 // qDebug() << "DeclarativeTableModel::append:" << values;
Tero Ahola
Added declarative model for bar series
r1162
Tero Ahola
Now using only one declarative model
r1169 while (columnCount() < values.count())
insertColumn(columnCount());
Tero Ahola
Draft for QML demo that shows weather forecasts
r1139
Tero Ahola
Now using only one declarative model
r1169 insertRow(rowCount());
QModelIndex beginIndex = QModelIndex();
QModelIndex endIndex = QModelIndex();
for (int i(0); i < values.count(); i++) {
QModelIndex modelIndex = createIndex(rowCount() - 1, i);
if (i == 0)
beginIndex = modelIndex;
if (i == (values.count() - 1))
endIndex = modelIndex;
setData(modelIndex, values.at(i));
}
dataChanged(beginIndex, endIndex);
Tero Ahola
Draft version for QML PieSeries model API
r1130 }
Tero Ahola
Draft for QML demo that shows weather forecasts
r1139 #include "moc_declarativemodel.cpp"