Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / quick / shared / viewtestutil.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QQUICKVIEWTESTUTIL_H
43 #define QQUICKVIEWTESTUTIL_H
44
45 #include <QtQuick/QQuickItem>
46 #include <QtQml/QQmlExpression>
47 #include <QtQml/private/qlistmodelinterface_p.h>
48 #include <QtCore/QAbstractListModel>
49
50 QT_FORWARD_DECLARE_CLASS(QQuickView)
51
52 namespace QQuickViewTestUtil
53 {
54     QQuickView *createView();
55
56     void flick(QQuickView *canvas, const QPoint &from, const QPoint &to, int duration);
57
58     QList<int> adjustIndexesForAddDisplaced(const QList<int> &indexes, int index, int count);
59     QList<int> adjustIndexesForMove(const QList<int> &indexes, int from, int to, int count);
60     QList<int> adjustIndexesForRemoveDisplaced(const QList<int> &indexes, int index, int count);
61
62     struct ListChange {
63         enum { Inserted, Removed, Moved, SetCurrent, SetContentY } type;
64         int index;
65         int count;
66         int to;     // Move
67         qreal pos;  // setContentY
68
69         static ListChange insert(int index, int count = 1) { ListChange c = { Inserted, index, count, -1, 0.0 }; return c; }
70         static ListChange remove(int index, int count = 1) { ListChange c = { Removed, index, count, -1, 0.0 }; return c; }
71         static ListChange move(int index, int to, int count) { ListChange c = { Moved, index, count, to, 0.0 }; return c; }
72         static ListChange setCurrent(int index) { ListChange c = { SetCurrent, index, -1, -1, 0.0 }; return c; }
73         static ListChange setContentY(qreal pos) { ListChange c = { SetContentY, -1, -1, -1, pos }; return c; }
74     };
75
76     class QmlListModel : public QListModelInterface
77     {
78         Q_OBJECT
79     public:
80         QmlListModel(QObject *parent = 0);
81         ~QmlListModel();
82
83         enum Roles { Name, Number };
84
85         QString name(int index) const;
86         QString number(int index) const;
87
88         int count() const;
89
90         QList<int> roles() const;
91         QString toString(int role) const;
92
93         QVariant data(int index, int role) const;
94         QHash<int, QVariant> data(int index, const QList<int> &roles) const;
95
96         Q_INVOKABLE void addItem(const QString &name, const QString &number);
97         void insertItem(int index, const QString &name, const QString &number);
98         void insertItems(int index, const QList<QPair<QString, QString> > &items);
99
100         void removeItem(int index);
101         void removeItems(int index, int count);
102
103         void moveItem(int from, int to);
104         void moveItems(int from, int to, int count);
105
106         void modifyItem(int index, const QString &name, const QString &number);
107
108         void clear();
109
110         void matchAgainst(const QList<QPair<QString, QString> > &other, const QString &error1, const QString &error2);
111
112     private:
113         QList<QPair<QString,QString> > list;
114     };
115
116     class QaimModel : public QAbstractListModel
117     {
118         Q_OBJECT
119     public:
120         enum Roles { Name = Qt::UserRole+1, Number = Qt::UserRole+2 };
121
122         QaimModel(QObject *parent=0);
123
124         int rowCount(const QModelIndex &parent=QModelIndex()) const;
125         QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const;
126
127         int count() const;
128         QString name(int index) const;
129         QString number(int index) const;
130
131         Q_INVOKABLE void addItem(const QString &name, const QString &number);
132         void addItems(const QList<QPair<QString, QString> > &items);
133         void insertItem(int index, const QString &name, const QString &number);
134         void insertItems(int index, const QList<QPair<QString, QString> > &items);
135
136         void removeItem(int index);
137         void removeItems(int index, int count);
138
139         void moveItem(int from, int to);
140         void moveItems(int from, int to, int count);
141
142         void modifyItem(int idx, const QString &name, const QString &number);
143
144         void clear();
145         void reset();
146
147         void matchAgainst(const QList<QPair<QString, QString> > &other, const QString &error1, const QString &error2);
148
149     private:
150         QList<QPair<QString,QString> > list;
151     };
152
153     class ListRange
154     {
155     public:
156         ListRange();
157         ListRange(const ListRange &other);
158         ListRange(int start, int end);
159
160         ~ListRange();
161
162         ListRange operator+(const ListRange &other) const;
163         bool operator==(const ListRange &other) const;
164         bool operator!=(const ListRange &other) const;
165
166         bool isValid() const;
167         int count() const;
168
169         QList<QPair<QString,QString> > getModelDataValues(const QmlListModel &model);
170         QList<QPair<QString,QString> > getModelDataValues(const QaimModel &model);
171
172         QList<int> indexes;
173         bool valid;
174     };
175 }
176
177 Q_DECLARE_METATYPE(QList<QQuickViewTestUtil::ListChange>)
178 Q_DECLARE_METATYPE(QQuickViewTestUtil::ListRange)
179
180 #endif // QQUICKVIEWTESTUTIL_H