-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtreemodel.cpp
More file actions
138 lines (112 loc) · 4.32 KB
/
treemodel.cpp
File metadata and controls
138 lines (112 loc) · 4.32 KB
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
// Copyright (C) 2025 Pedro López-Cabanillas
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
/*
treemodel.cpp
Provides a simple tree model to show how to create and use hierarchical
models.
*/
#include <QApplication>
#include <QFile>
#include <QMessageBox>
#include <QStringList>
#include <QVariantList>
#include "riff.h"
#include "treeitem.h"
#include "treemodel.h"
TreeModel::TreeModel(QObject *parent)
: QAbstractItemModel(parent)
, rootItem(std::make_unique<TreeItem>(QVariantList{tr("Chunk"), tr("Offset"), tr("Size")}))
{}
TreeModel::~TreeModel() = default;
int TreeModel::columnCount(const QModelIndex &parent) const
{
if (parent.isValid())
return static_cast<TreeItem*>(parent.internalPointer())->columnCount();
return rootItem->columnCount();
}
bool TreeModel::loadData(uint8_t *buffer)
{
m_buffer = buffer;
riff::RiffChunk<> *chunk = reinterpret_cast<riff::RiffChunk<> *>(m_buffer);
if (!chunk->hasTypeRiff()) {
return false;
}
beginResetModel();
traverseRiff(chunk->castTo<riff::RiffList<> >(), rootItem.get());
endResetModel();
return true;
}
void TreeModel::traverseRiff(const riff::RiffList<>::Chunk *listChunk, TreeItem *lastParent)
{
qintptr lastPos = listChunk->offset(m_buffer);
lastParent->appendChild(
std::make_unique<TreeItem>(QVariantList{QString("%1(%2)")
.arg(listChunk->typeToQString())
.arg(listChunk->data->listTypeToQString()),
lastPos,
listChunk->size},
lastParent));
lastParent = lastParent->child(lastParent->childCount() - 1);
const riff::RiffChunk<> *child = listChunk->data->chunks;
const void *end = listChunk->dataEnd();
while (child < end) {
if (child->hasTypeList() || child->hasTypeRiff()) {
traverseRiff(child->castTo<riff::RiffList<> >(), lastParent);
} else {
lastPos = child->offset(m_buffer);
lastParent->appendChild(std::make_unique<TreeItem>(QVariantList{child->typeToQString(),
lastPos,
child->size},
lastParent));
}
child = child->nextChunk();
}
}
QVariant TreeModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid() || role != Qt::DisplayRole)
return {};
const auto *item = static_cast<const TreeItem*>(index.internalPointer());
return item->data(index.column());
}
Qt::ItemFlags TreeModel::flags(const QModelIndex &index) const
{
return index.isValid()
? QAbstractItemModel::flags(index) : Qt::ItemFlags(Qt::NoItemFlags);
}
QVariant TreeModel::headerData(int section, Qt::Orientation orientation,
int role) const
{
return orientation == Qt::Horizontal && role == Qt::DisplayRole
? rootItem->data(section) : QVariant{};
}
QModelIndex TreeModel::index(int row, int column, const QModelIndex &parent) const
{
if (!hasIndex(row, column, parent))
return {};
TreeItem *parentItem = parent.isValid()
? static_cast<TreeItem*>(parent.internalPointer())
: rootItem.get();
if (auto *childItem = parentItem->child(row))
return createIndex(row, column, childItem);
return {};
}
QModelIndex TreeModel::parent(const QModelIndex &index) const
{
if (!index.isValid())
return {};
auto *childItem = static_cast<TreeItem*>(index.internalPointer());
TreeItem *parentItem = childItem->parentItem();
return parentItem != rootItem.get()
? createIndex(parentItem->row(), 0, parentItem) : QModelIndex{};
}
int TreeModel::rowCount(const QModelIndex &parent) const
{
if (parent.column() > 0)
return 0;
const TreeItem *parentItem = parent.isValid()
? static_cast<const TreeItem*>(parent.internalPointer())
: rootItem.get();
return parentItem->childCount();
}