diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-11-27 03:22:39 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-11-27 03:22:39 (GMT) |
commit | 4c78c5c0c2570f5052433f7abfb9d26eb1f2abe3 (patch) | |
tree | 3ce3662e9eb0b1c9a1f5d1e960954ce507fe144a /examples | |
parent | e25e77c3d8bfd0f33aeea2484d714ade6a65a664 (diff) | |
parent | 03e80ad9057ecc12a3e61e8a968e390023e5561d (diff) | |
download | Qt-4c78c5c0c2570f5052433f7abfb9d26eb1f2abe3.zip Qt-4c78c5c0c2570f5052433f7abfb9d26eb1f2abe3.tar.gz Qt-4c78c5c0c2570f5052433f7abfb9d26eb1f2abe3.tar.bz2 |
Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Conflicts:
examples/declarative/loader/qmlfolderlistmodel.h
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/loader/loader.pro | 2 | ||||
-rw-r--r-- | examples/declarative/loader/qlistmodelinterface.h | 85 | ||||
-rw-r--r-- | examples/declarative/loader/qmlfolderlistmodel.h | 4 |
3 files changed, 88 insertions, 3 deletions
diff --git a/examples/declarative/loader/loader.pro b/examples/declarative/loader/loader.pro index 84b2d21..edd6267 100644 --- a/examples/declarative/loader/loader.pro +++ b/examples/declarative/loader/loader.pro @@ -1,5 +1,5 @@ SOURCES = main.cpp qmlfolderlistmodel.cpp -HEADERS = qmlfolderlistmodel.h +HEADERS = qmlfolderlistmodel.h qlistmodelinterface.h RESOURCES = loader.qrc QT += script declarative network diff --git a/examples/declarative/loader/qlistmodelinterface.h b/examples/declarative/loader/qlistmodelinterface.h new file mode 100644 index 0000000..738378e --- /dev/null +++ b/examples/declarative/loader/qlistmodelinterface.h @@ -0,0 +1,85 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Qt Software Information (qt-info@nokia.com) +** +** This file is part of the QtDeclarative module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the either Technology Preview License Agreement or the +** Beta Release License Agreement. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at qt-sales@nokia.com. +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QLISTMODELINTERFACE_H +#define QLISTMODELINTERFACE_H + +#include <QtCore/QHash> +#include <QtCore/QVariant> + + +QT_BEGIN_HEADER + +QT_BEGIN_NAMESPACE + +QT_MODULE(Declarative) + +class Q_DECLARATIVE_EXPORT QListModelInterface : public QObject +{ + Q_OBJECT + public: + QListModelInterface(QObject *parent = 0) : QObject(parent) {} + virtual ~QListModelInterface() {} + + virtual int count() const = 0; + virtual QHash<int,QVariant> data(int index, const QList<int>& roles = QList<int>()) const = 0; + virtual bool setData(int index, const QHash<int,QVariant>& values) + { Q_UNUSED(index); Q_UNUSED(values); return false; } + + virtual QList<int> roles() const = 0; + virtual QString toString(int role) const = 0; + + Q_SIGNALS: + void itemsInserted(int index, int count); + void itemsRemoved(int index, int count); + void itemsMoved(int from, int to, int count); + void itemsChanged(int index, int count, const QList<int> &roles); + + protected: + QListModelInterface(QObjectPrivate &dd, QObject *parent) + : QObject(dd, parent) {} +}; + + +QT_END_NAMESPACE + +QT_END_HEADER +#endif //QTREEMODELINTERFACE_H diff --git a/examples/declarative/loader/qmlfolderlistmodel.h b/examples/declarative/loader/qmlfolderlistmodel.h index 1cd881f..f50719a 100644 --- a/examples/declarative/loader/qmlfolderlistmodel.h +++ b/examples/declarative/loader/qmlfolderlistmodel.h @@ -42,8 +42,8 @@ #ifndef QMLFOLDERLISTMODEL_H #define QMLFOLDERLISTMODEL_H -#include <QtDeclarative/qml.h> -#include <QtDeclarative/private/qlistmodelinterface_p.h> +#include <qml.h> +#include "qlistmodelinterface.h" class QmlContext; class QModelIndex; |