forked from sialan-labs/kaqaz
-
Notifications
You must be signed in to change notification settings - Fork 12
/
papyruslabelsmodel.cpp
191 lines (154 loc) · 4.03 KB
/
papyruslabelsmodel.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
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
#include "papyruslabelsmodel.h"
#include "database.h"
#include "papyrus.h"
class PapyrusLabelsModelPrivate
{
public:
QList<int> list;
Database *db;
};
PapyrusLabelsModel::PapyrusLabelsModel(QObject *parent) :
QAbstractListModel(parent)
{
p = new PapyrusLabelsModelPrivate;
p->db = Papyrus::database();
connect(p->db, SIGNAL(groupsListChanged()), SLOT(refresh()) );
connect(p->db, SIGNAL(groupNameChanged(int)), SLOT(groupNameChanged(int)));
connect(p->db, SIGNAL(groupColorChanged(int)), SLOT(groupColorChanged(int)));
connect(p->db, SIGNAL(groupPapersCountChanged(int)), SLOT(groupPapersCountChanged(int)));
refresh();
}
int PapyrusLabelsModel::id(const QModelIndex &index) const
{
const int row = index.row();
return p->list.at(row);
}
int PapyrusLabelsModel::indexOf(int id)
{
return p->list.indexOf(id);
}
int PapyrusLabelsModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent)
return count();
}
QVariant PapyrusLabelsModel::data(const QModelIndex &index, int role) const
{
QVariant result;
const int gid = id(index);
switch(role)
{
case GroupId:
result = gid;
break;
case GroupName:
result = p->db->groupName(gid);
break;
case GroupColor:
result = p->db->groupColor(gid);
break;
case GroupUuid:
result = p->db->groupUuid(gid);
break;
case GroupPapersCount:
result = p->db->groupPapersCount(gid);
break;
}
return result;
}
QHash<qint32, QByteArray> PapyrusLabelsModel::roleNames() const
{
static QHash<qint32, QByteArray> *res = 0;
if( res )
return *res;
res = new QHash<qint32, QByteArray>();
res->insert( GroupId, "id");
res->insert( GroupName, "name");
res->insert( GroupColor, "color");
res->insert( GroupUuid, "uuid");
res->insert( GroupPapersCount, "papersCount");
return *res;
}
int PapyrusLabelsModel::count() const
{
return p->list.count();
}
void PapyrusLabelsModel::refresh()
{
changed(p->db->groups());
}
void PapyrusLabelsModel::groupNameChanged(int id)
{
roleDataChanged(id, GroupName);
}
void PapyrusLabelsModel::groupColorChanged(int id)
{
roleDataChanged(id, GroupColor);
}
void PapyrusLabelsModel::groupPapersCountChanged(int id)
{
roleDataChanged(id, GroupPapersCount);
}
void PapyrusLabelsModel::roleDataChanged(int id, int role)
{
const int idx = indexOf(id);
if(idx == -1)
return;
emit dataChanged(index(idx), index(idx), QVector<int>()<<role);
}
void PapyrusLabelsModel::changed(QList<int> list)
{
for(int i=0; i<list.count(); i++)
if(p->db->groupIsDeleted(list.at(i)))
{
list.removeAt(i);
i--;
}
bool count_changed = (list.count()==p->list.count());
for( int i=0 ; i<p->list.count() ; i++ )
{
const int gid = p->list.at(i);
if( list.contains(gid) )
continue;
beginRemoveRows(QModelIndex(), i, i);
p->list.removeAt(i);
i--;
endRemoveRows();
}
QList<int> temp_list = list;
for( int i=0 ; i<temp_list.count() ; i++ )
{
const int gid = temp_list.at(i);
if( p->list.contains(gid) )
continue;
temp_list.removeAt(i);
i--;
}
while( p->list != temp_list )
for( int i=0 ; i<p->list.count() ; i++ )
{
const int gid = p->list.at(i);
int nw = temp_list.indexOf(gid);
if( i == nw )
continue;
beginMoveRows( QModelIndex(), i, i, QModelIndex(), nw>i?nw+1:nw );
p->list.move( i, nw );
endMoveRows();
}
for( int i=0 ; i<list.count() ; i++ )
{
const int gid = list.at(i);
if( p->list.contains(gid) )
continue;
beginInsertRows(QModelIndex(), i, i );
p->list.insert( i, gid );
endInsertRows();
}
if(count_changed)
emit countChanged();
emit groupsChanged();
}
PapyrusLabelsModel::~PapyrusLabelsModel()
{
delete p;
}