1 | // Copyright (C) 2021 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QQUICKVIEWTESTUTILS_P_H |
5 | #define QQUICKVIEWTESTUTILS_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists purely as an |
12 | // implementation detail. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <QtCore/QAbstractListModel> |
19 | #include <QtQml/QQmlExpression> |
20 | #include <QtQuick/QQuickItem> |
21 | #include <QtCore/private/qglobal_p.h> |
22 | #include <QtQuick/private/qtquickglobal_p.h> |
23 | |
24 | QT_FORWARD_DECLARE_CLASS(QQuickView) |
25 | QT_FORWARD_DECLARE_CLASS(QQuickItemViewPrivate) |
26 | QT_FORWARD_DECLARE_CLASS(FxViewItem) |
27 | |
28 | QT_BEGIN_NAMESPACE |
29 | |
30 | namespace QQuickViewTestUtils |
31 | { |
32 | QQuickView *createView(); |
33 | |
34 | void centerOnScreen(QQuickWindow *window, const QSize &size); |
35 | void centerOnScreen(QQuickWindow *window); |
36 | void moveMouseAway(QQuickView *window); |
37 | |
38 | QList<int> adjustIndexesForAddDisplaced(const QList<int> &indexes, int index, int count); |
39 | QList<int> adjustIndexesForMove(const QList<int> &indexes, int from, int to, int count); |
40 | QList<int> adjustIndexesForRemoveDisplaced(const QList<int> &indexes, int index, int count); |
41 | |
42 | struct ListChange { |
43 | enum { Inserted, Removed, Moved, SetCurrent, SetContentY, Polish } type; |
44 | int index; |
45 | int count; |
46 | int to; // Move |
47 | qreal pos; // setContentY |
48 | |
49 | static ListChange insert(int index, int count = 1) { ListChange c = { .type: Inserted, .index: index, .count: count, .to: -1, .pos: 0.0 }; return c; } |
50 | static ListChange remove(int index, int count = 1) { ListChange c = { .type: Removed, .index: index, .count: count, .to: -1, .pos: 0.0 }; return c; } |
51 | static ListChange move(int index, int to, int count) { ListChange c = { .type: Moved, .index: index, .count: count, .to: to, .pos: 0.0 }; return c; } |
52 | static ListChange setCurrent(int index) { ListChange c = { .type: SetCurrent, .index: index, .count: -1, .to: -1, .pos: 0.0 }; return c; } |
53 | static ListChange setContentY(qreal pos) { ListChange c = { .type: SetContentY, .index: -1, .count: -1, .to: -1, .pos: pos }; return c; } |
54 | static ListChange polish() { ListChange c = { .type: Polish, .index: -1, .count: -1, .to: -1, .pos: 0.0 }; return c; } |
55 | }; |
56 | |
57 | class QaimModel : public QAbstractListModel |
58 | { |
59 | Q_OBJECT |
60 | public: |
61 | enum Roles { Name = Qt::UserRole+1, Number = Qt::UserRole+2 }; |
62 | |
63 | QaimModel(QObject *parent=0); |
64 | |
65 | int rowCount(const QModelIndex &parent=QModelIndex()) const override; |
66 | int columnCount(const QModelIndex &parent=QModelIndex()) const override; |
67 | QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const override; |
68 | QHash<int,QByteArray> roleNames() const override; |
69 | |
70 | int count() const; |
71 | QString name(int index) const; |
72 | QString number(int index) const; |
73 | |
74 | Q_INVOKABLE void addItem(const QString &name, const QString &number); |
75 | void addItems(const QList<QPair<QString, QString> > &items); |
76 | void insertItem(int index, const QString &name, const QString &number); |
77 | void insertItems(int index, const QList<QPair<QString, QString> > &items); |
78 | |
79 | Q_INVOKABLE void removeItem(int index); |
80 | void removeItems(int index, int count); |
81 | |
82 | void moveItem(int from, int to); |
83 | void moveItems(int from, int to, int count); |
84 | |
85 | void modifyItem(int idx, const QString &name, const QString &number); |
86 | |
87 | void clear(); |
88 | void reset(); |
89 | void resetItems(const QList<QPair<QString, QString> > &items); |
90 | |
91 | void matchAgainst(const QList<QPair<QString, QString> > &other, const QString &error1, const QString &error2); |
92 | |
93 | using QAbstractListModel::dataChanged; |
94 | |
95 | int columns = 1; |
96 | |
97 | private: |
98 | QList<QPair<QString,QString> > list; |
99 | }; |
100 | |
101 | class ListRange |
102 | { |
103 | public: |
104 | ListRange(); |
105 | ListRange(const ListRange &other); |
106 | ListRange(int start, int end); |
107 | |
108 | ~ListRange(); |
109 | |
110 | ListRange operator+(const ListRange &other) const; |
111 | bool operator==(const ListRange &other) const; |
112 | bool operator!=(const ListRange &other) const; |
113 | |
114 | bool isValid() const; |
115 | int count() const; |
116 | |
117 | QList<QPair<QString,QString> > getModelDataValues(const QaimModel &model); |
118 | |
119 | QList<int> indexes; |
120 | bool valid; |
121 | }; |
122 | |
123 | template<typename T> |
124 | static void qquickmodelviewstestutil_move(int from, int to, int n, T *items) |
125 | { |
126 | if (from > to) { |
127 | // Only move forwards - flip if backwards moving |
128 | int tfrom = from; |
129 | int tto = to; |
130 | from = tto; |
131 | to = tto+n; |
132 | n = tfrom-tto; |
133 | } |
134 | |
135 | T replaced; |
136 | int i=0; |
137 | typename T::ConstIterator it=items->begin(); it += from+n; |
138 | for (; i<to-from; ++i,++it) |
139 | replaced.append(*it); |
140 | i=0; |
141 | it=items->begin(); it += from; |
142 | for (; i<n; ++i,++it) |
143 | replaced.append(*it); |
144 | typename T::ConstIterator f=replaced.begin(); |
145 | typename T::Iterator t=items->begin(); t += from; |
146 | for (; f != replaced.end(); ++f, ++t) |
147 | *t = *f; |
148 | } |
149 | |
150 | class StressTestModel : public QAbstractListModel |
151 | { |
152 | Q_OBJECT |
153 | |
154 | public: |
155 | |
156 | StressTestModel(); |
157 | |
158 | int rowCount(const QModelIndex &) const override; |
159 | QVariant data(const QModelIndex &, int) const override; |
160 | |
161 | public Q_SLOTS: |
162 | void updateModel(); |
163 | |
164 | private: |
165 | int m_rowCount; |
166 | }; |
167 | |
168 | #if QT_CONFIG(quick_itemview) && defined(QT_BUILD_INTERNAL) |
169 | [[nodiscard]] bool testVisibleItems(const QQuickItemViewPrivate *priv, |
170 | bool *nonUnique, FxViewItem **failItem, int *expectedIdx); |
171 | #endif |
172 | } |
173 | |
174 | namespace QQuickTouchUtils { |
175 | void flush(QQuickWindow *window); |
176 | } |
177 | |
178 | namespace QQuickTest { |
179 | [[nodiscard]] bool initView(QQuickView &v, const QUrl &url, |
180 | bool moveMouseOut = true, QByteArray *errorMessage = nullptr); |
181 | [[nodiscard]] bool showView(QQuickView &v, const QUrl &url); |
182 | |
183 | void pointerPress(const QPointingDevice *dev, QQuickWindow *window, |
184 | int pointId, const QPoint &p, Qt::MouseButton button = Qt::LeftButton, |
185 | Qt::KeyboardModifiers modifiers = Qt::NoModifier, int delay = -1); |
186 | |
187 | void pointerMove(const QPointingDevice *dev, QQuickWindow *window, int pointId, |
188 | const QPoint &p, int delay = -1); |
189 | |
190 | void pointerRelease(const QPointingDevice *dev, QQuickWindow *window, int pointId, |
191 | const QPoint &p, Qt::MouseButton button = Qt::LeftButton, |
192 | Qt::KeyboardModifiers modifiers = Qt::NoModifier, int delay = -1); |
193 | |
194 | void pointerMoveAndPress(const QPointingDevice *dev, QQuickWindow *window, |
195 | int pointId, const QPoint &p, Qt::MouseButton button = Qt::LeftButton, |
196 | Qt::KeyboardModifiers modifiers = Qt::NoModifier, int delay = -1); |
197 | |
198 | void pointerMoveAndRelease(const QPointingDevice *dev, QQuickWindow *window, |
199 | int pointId, const QPoint &p, Qt::MouseButton button = Qt::LeftButton, |
200 | Qt::KeyboardModifiers modifiers = Qt::NoModifier, int delay = -1); |
201 | |
202 | void pointerFlick(const QPointingDevice *dev, QQuickWindow *window, |
203 | int pointId, const QPoint &from, const QPoint &to, int duration, |
204 | Qt::MouseButton button = Qt::LeftButton, |
205 | Qt::KeyboardModifiers modifiers = Qt::NoModifier, int delay = -1); |
206 | } |
207 | |
208 | QT_END_NAMESPACE |
209 | |
210 | Q_DECLARE_METATYPE(QQuickViewTestUtils::QaimModel*) |
211 | Q_DECLARE_METATYPE(QQuickViewTestUtils::ListChange) |
212 | Q_DECLARE_METATYPE(QList<QQuickViewTestUtils::ListChange>) |
213 | Q_DECLARE_METATYPE(QQuickViewTestUtils::ListRange) |
214 | |
215 | |
216 | #endif // QQUICKVIEWTESTUTILS_P_H |
217 | |