-
Notifications
You must be signed in to change notification settings - Fork 2
/
drthreadslistmodel.cpp
145 lines (77 loc) · 2.52 KB
/
drthreadslistmodel.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
141
142
143
144
#include "drthreadslistmodel.h"
DRThreadsListModel::DRThreadsListModel(DRServerConnection *connection, QObject *parent) :
QAbstractListModel(parent)
{
this->connection = connection;
}
void DRThreadsListModel::clear() {
beginRemoveRows(QModelIndex(), 0, this->threadItems.count());
this->threadItems.clear();
endRemoveRows();
}
bool DRThreadsListModel::appendRow(DRThreadItem *item) {
int position = this->threadItems.count()+1;
beginInsertRows(QModelIndex(), position, 1);
this->threadItems.insert(position, item);
endInsertRows();
return true;
}
bool DRThreadsListModel::appendRow(QList<DRThreadItem *> items) {
int position = this->threadItems.count()+1;
int size = this->threadItems.count() + this->threadItems.count();
beginInsertRows(QModelIndex(), position, size);
foreach(DRThreadItem *item, items) {
this->threadItems.insert(position, item);
}
endInsertRows();
return true;
}
int DRThreadsListModel::rowCount(const QModelIndex &parent) const
{
return this->threadItems.count();
}
QVariant DRThreadsListModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
if (index.row() >= this->threadItems.size())
return QVariant();
if (role == Qt::DisplayRole)
return this->threadItems.at(index.row())->subject;
else
return QVariant();
}
QVariant DRThreadsListModel::headerData(int section, Qt::Orientation orientation,
int role) const
{
if (role != Qt::DisplayRole)
return QVariant();
if (orientation == Qt::Horizontal)
return QString("Column %1").arg(section);
else
return QString("Row %1").arg(section);
}
Qt::ItemFlags DRThreadsListModel::flags(const QModelIndex &index) const
{
if (!index.isValid())
return Qt::ItemIsEnabled;
return QAbstractItemModel::flags(index);
}
bool DRThreadsListModel::insertRows(int position, int rows, const QModelIndex &parent)
{
beginInsertRows(QModelIndex(), position, position+rows-1);
for (int row = 0; row < rows; ++row) {
this->threadItems.insert(position, NULL);
}
endInsertRows();
return true;
}
bool DRThreadsListModel::removeRows(int position, int rows, const QModelIndex &parent)
{
beginRemoveRows(QModelIndex(), position, position+rows-1);
for (int row = 0; row < rows; ++row) {
this->threadItems.removeAt(position);
}
endRemoveRows();
return true;
}