1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef Q_TEST_MODEL_H
#define Q_TEST_MODEL_H
#include <QtCore/qabstractitemmodel.h>
#include <limits.h>
class TestModel: public QAbstractItemModel
{
Q_OBJECT
public:
TestModel(QObject *parent = nullptr): QAbstractItemModel(parent),
fetched(false), rows(10), cols(1), levels(INT_MAX), wrongIndex(false) { init(); }
TestModel(int _rows, int _cols, QObject *parent = nullptr): QAbstractItemModel(parent),
fetched(false), rows(_rows), cols(_cols), levels(INT_MAX), wrongIndex(false) { init(); }
~TestModel()
{
delete tree;
}
void init() {
decorationsEnabled = false;
alternateChildlessRows = true;
tree = new Node(rows);
}
inline qint32 level(const QModelIndex &index) const {
Node *n = (Node *)index.internalPointer();
if (!n)
return -1;
int l = -1;
while (n != tree) {
n = n->parent;
++l;
}
return l;
}
void resetModel()
{
beginResetModel();
fetched = false;
delete tree;
tree = new Node(rows);
endResetModel();
}
QString displayData(const QModelIndex &idx) const
{
return QString("[%1,%2,%3,%4]").arg(idx.row()).arg(idx.column()).arg(idx.internalId()).arg(hasChildren(idx));
}
bool canFetchMore(const QModelIndex &) const override {
return !fetched;
}
void fetchMore(const QModelIndex &) override {
fetched = true;
}
bool hasChildren(const QModelIndex &parent = QModelIndex()) const override {
bool hasFetched = fetched;
fetched = true;
bool r = QAbstractItemModel::hasChildren(parent);
fetched = hasFetched;
return r;
}
int rowCount(const QModelIndex& parent = QModelIndex()) const override {
if ((parent.column() > 0) || (level(parent) > levels)
|| (alternateChildlessRows && parent.row() > 0 && (parent.row() & 1)))
return 0;
Node *n = (Node*)parent.internalPointer();
if (!n)
n = tree;
return n->children.size();
}
int columnCount(const QModelIndex& parent = QModelIndex()) const override {
if ((parent.column() > 0) || (level(parent) > levels)
|| (alternateChildlessRows && parent.row() > 0 && (parent.row() & 1)))
return 0;
return cols;
}
bool isEditable(const QModelIndex &index) const {
if (index.isValid())
return true;
return false;
}
Q_INVOKABLE QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override
{
if (row < 0 || column < 0 || (level(parent) > levels) || column >= cols)
return QModelIndex();
Node *pn = (Node*)parent.internalPointer();
if (!pn)
pn = tree;
if (row >= pn->children.size())
return QModelIndex();
Node *n = pn->children.at(row);
if (!n) {
n = new Node(rows, pn);
pn->children[row] = n;
}
return createIndex(row, column, n);
}
QModelIndex parent(const QModelIndex &index) const override
{
Node *n = (Node *)index.internalPointer();
if (!n || n->parent == tree)
return QModelIndex();
Q_ASSERT(n->parent->parent);
int parentRow = n->parent->parent->children.indexOf(n->parent);
Q_ASSERT(parentRow != -1);
return createIndex(parentRow, 0, n->parent);
}
QVariant data(const QModelIndex &idx, int role) const override
{
if (!idx.isValid())
return QVariant();
Node *pn = (Node *)idx.internalPointer();
if (!pn)
pn = tree;
if (pn != tree)
pn = pn->parent;
if (idx.row() < 0 || idx.column() < 0 || idx.column() >= cols
|| idx.row() >= pn->children.size()) {
wrongIndex = true;
qWarning("Invalid modelIndex [%d,%d,%p]", idx.row(), idx.column(),
idx.internalPointer());
return QVariant();
}
if (role == Qt::DisplayRole) {
return displayData(idx);
}
return QVariant();
}
bool setData(const QModelIndex &index, const QVariant &value, int role) override
{
Q_UNUSED(value);
QVector<int> changedRole(1, role);
emit dataChanged(index, index, changedRole);
return true;
}
void groupedSetData(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles)
{
emit dataChanged(topLeft, bottomRight, roles);
}
void changeLayout(const QList<QPersistentModelIndex> &parents = QList<QPersistentModelIndex>())
{
emit layoutAboutToBeChanged(parents);
emit layoutChanged(parents);
}
bool removeRows(int row, int count, const QModelIndex &parent) override
{
beginRemoveRows(parent, row, row + count - 1);
Node *n = (Node *)parent.internalPointer();
if (!n)
n = tree;
n->removeRows(row, count);
endRemoveRows();
return true;
}
void removeLastColumn()
{
beginRemoveColumns(QModelIndex(), cols - 1, cols - 1);
--cols;
endRemoveColumns();
}
void removeAllColumns()
{
beginRemoveColumns(QModelIndex(), 0, cols - 1);
cols = 0;
endRemoveColumns();
}
bool insertRows(int row, int count, const QModelIndex &parent) override
{
beginInsertRows(parent, row, row + count - 1);
Node *n = (Node *)parent.internalPointer();
if (!n)
n = tree;
n->addRows(row, count);
endInsertRows();
return true;
}
bool moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destinationParent, int destinationChild) override
{
Q_ASSERT_X(sourceRow >= 0 && sourceRow < rowCount(sourceParent)
&& count > 0 && sourceRow + count < rowCount(sourceParent)
&& destinationChild >= 0 && destinationChild <= rowCount(destinationParent),
Q_FUNC_INFO, "Rows out of range.");
Q_ASSERT_X(!(sourceParent == destinationParent && destinationChild >= sourceRow && destinationChild < sourceRow + count),
Q_FUNC_INFO, "Moving rows onto themselves.");
if (!beginMoveRows(sourceParent, sourceRow, sourceRow + count - 1, destinationParent, destinationChild))
return false;
Node *src = (Node *)sourceParent.internalPointer();
if (!src)
src = tree;
Node *dest = (Node *)destinationParent.internalPointer();
if (!dest)
dest = tree;
QVector<Node *> buffer = src->children.mid(sourceRow, count);
if (src != dest) {
src->removeRows(sourceRow, count, true /* keep alive */);
dest->addRows(destinationChild, count);
} else {
QVector<Node *> &c = dest->children;
if (sourceRow < destinationChild) {
memmove(&c[sourceRow], &c[sourceRow + count], sizeof(Node *) * (destinationChild - sourceRow - count));
destinationChild -= count;
} else {
memmove(&c[destinationChild + count], &c[destinationChild], sizeof(Node *) * (sourceRow - destinationChild));
}
}
for (int i = 0; i < count; i++) {
Node *n = buffer[i];
n->parent = dest;
dest->children[i + destinationChild] = n;
}
endMoveRows();
return true;
}
void setDecorationsEnabled(bool enable)
{
decorationsEnabled = enable;
}
mutable bool fetched;
bool decorationsEnabled;
bool alternateChildlessRows;
int rows, cols;
int levels;
mutable bool wrongIndex;
struct Node {
Q_DISABLE_COPY_MOVE(Node)
Node *parent;
QVector<Node *> children;
Node(int rows, Node *p = 0) : parent(p)
{
addRows(0, rows);
}
~Node()
{
qDeleteAll(children);
}
void addRows(int row, int count)
{
if (count > 0) {
children.reserve(children.size() + count);
children.insert(row, count, (Node *)0);
}
}
void removeRows(int row, int count, bool keepAlive = false)
{
int newCount = qMax(children.size() - count, 0);
int effectiveCountDiff = children.size() - newCount;
if (effectiveCountDiff > 0) {
if (!keepAlive)
for (int i = 0; i < effectiveCountDiff; i++)
delete children[i + row];
children.remove(row, effectiveCountDiff);
}
}
};
Node *tree;
};
#endif // Q_TEST_MODEL_H
|