-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathAstModel.cpp
141 lines (113 loc) · 3.29 KB
/
AstModel.cpp
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
#include "AstModel.h"
#include <qbrush.h>
AstModel::AstModel(GenericAstNode *data, QObject *parent):
QAbstractItemModel(parent),
rootItem(data)
{
}
AstModel::~AstModel()
{
}
int AstModel::columnCount(const QModelIndex &parent) const
{
return 1;
}
QVariant AstModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
if (role != Qt::DisplayRole && role != Qt::ForegroundRole && role != Qt::NodeRole)
return QVariant();
auto item = static_cast<GenericAstNode*>(index.internalPointer());
switch (role)
{
case Qt::DisplayRole:
return QVariant(QString::fromStdString(item->name));
case Qt::ForegroundRole:
switch (item->getColor())
{
case 0:
return QVariant(QBrush(Qt::GlobalColor::darkBlue));
case 1:
return QVariant(QBrush(Qt::GlobalColor::darkGreen));
default:
return QVariant(QBrush(Qt::GlobalColor::black));
}
case Qt::NodeRole:
return QVariant::fromValue(item);
}
return QVariant(QString::fromStdString(item->name));
}
Qt::ItemFlags AstModel::flags(const QModelIndex &index) const
{
if (!index.isValid())
return 0;
return QAbstractItemModel::flags(index);
}
QVariant AstModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (orientation == Qt::Horizontal && role == Qt::DisplayRole)
return QVariant("Test");
return QVariant();
}
QModelIndex AstModel::index(int row, int column, const QModelIndex &parent) const
{
if (!hasIndex(row, column, parent))
return QModelIndex();
if (!parent.isValid())
{
return rootIndex();
}
auto parentItem = static_cast<GenericAstNode*>(parent.internalPointer());
auto &childItem = parentItem->myChidren[row];
if (childItem)
return createIndex(row, column, childItem.get());
else
return QModelIndex();
}
QModelIndex AstModel::rootIndex() const
{
return createIndex(0, 0, rootItem);
}
QModelIndex AstModel::parent(const QModelIndex &index) const
{
if (!index.isValid())
return QModelIndex();
GenericAstNode *childItem = static_cast<GenericAstNode*>(index.internalPointer());
if (childItem == rootItem || childItem->myParent == nullptr)
return QModelIndex();
GenericAstNode *parentItem = childItem->myParent;
if (parentItem == rootItem)
return rootIndex();
auto grandFather = parentItem->myParent;
auto parentRow = grandFather == nullptr ?
0 :
grandFather->findChildIndex(parentItem);
return createIndex(parentRow, 0, parentItem);
}
int AstModel::rowCount(const QModelIndex &parent) const
{
GenericAstNode *parentItem;
if (parent.column() > 0)
return 0;
if (parent.isValid())
{
parentItem = static_cast<GenericAstNode*>(parent.internalPointer());
return parentItem->myChidren.size();
}
else
{
return 1;
}
}
bool AstModel::hasChildren(const QModelIndex &parent) const
{
GenericAstNode *parentItem;
if (parent.column() > 0)
return false;
if (parent.isValid())
parentItem = static_cast<GenericAstNode*>(parent.internalPointer());
else
parentItem = rootItem;
return !parentItem->myChidren.empty();
}