declarativemodel.cpp
110 lines
| 3.0 KiB
| text/x-c
|
CppLexer
Tero Ahola
|
r1130 | /**************************************************************************** | ||
** | ||||
** 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
|
r1139 | #include "declarativemodel.h" | ||
Tero Ahola
|
r1130 | #include <qdeclarativelist.h> | ||
Tero Ahola
|
r1395 | #include <QStringList> | ||
Tero Ahola
|
r1139 | #include <QDebug> | ||
Tero Ahola
|
r1130 | |||
Tero Ahola
|
r1272 | ////////////// Table model element /////////////////// | ||
Tero Ahola
|
r1169 | |||
Tero Ahola
|
r1190 | DeclarativeTableModelElement::DeclarativeTableModelElement(QObject *parent) | ||
Tero Ahola
|
r1169 | : QObject(parent) | ||
{ | ||||
} | ||||
Tero Ahola
|
r1190 | QVariantList DeclarativeTableModelElement::values() | ||
Tero Ahola
|
r1169 | { | ||
return m_values; | ||||
} | ||||
Tero Ahola
|
r1190 | void DeclarativeTableModelElement::setValues(QVariantList values) | ||
Tero Ahola
|
r1169 | { | ||
m_values = values; | ||||
} | ||||
////////////// Table model /////////////////// | ||||
Tero Ahola
|
r1162 | |||
DeclarativeTableModel::DeclarativeTableModel(QObject *parent) : | ||||
Tero Ahola
|
r1272 | CustomTableModel(parent) | ||
Tero Ahola
|
r1162 | { | ||
} | ||||
void DeclarativeTableModel::classBegin() | ||||
{ | ||||
} | ||||
void DeclarativeTableModel::componentComplete() | ||||
{ | ||||
Tero Ahola
|
r1186 | foreach (QObject *child, children()) { | ||
Tero Ahola
|
r1190 | if (qobject_cast<DeclarativeTableModelElement *>(child)) { | ||
Tero Ahola
|
r1387 | DeclarativeTableModelElement *element = qobject_cast<DeclarativeTableModelElement *>(child); | ||
append(element->values()); | ||||
Tero Ahola
|
r1186 | } | ||
} | ||||
Tero Ahola
|
r1162 | } | ||
Tero Ahola
|
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
|
r1162 | QDeclarativeListProperty<QObject> DeclarativeTableModel::modelChildren() | ||
{ | ||||
return QDeclarativeListProperty<QObject>(this, 0, &DeclarativeTableModel::appendModelChild); | ||||
} | ||||
void DeclarativeTableModel::appendModelChild(QDeclarativeListProperty<QObject> *list, | ||||
QObject *child) | ||||
{ | ||||
// childs are added in componentComplete instead | ||||
Q_UNUSED(list) | ||||
Q_UNUSED(child) | ||||
} | ||||
Tero Ahola
|
r1169 | void DeclarativeTableModel::append(QVariantList values) | ||
Tero Ahola
|
r1162 | { | ||
Tero Ahola
|
r1169 | // qDebug() << "DeclarativeTableModel::append:" << values; | ||
Tero Ahola
|
r1162 | |||
Tero Ahola
|
r1169 | while (columnCount() < values.count()) | ||
insertColumn(columnCount()); | ||||
Tero Ahola
|
r1139 | |||
Tero Ahola
|
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
|
r1130 | } | ||
Tero Ahola
|
r1139 | #include "moc_declarativemodel.cpp" | ||