forked from Aseman-Land/Papyrus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpapyruspaperfilesmodel.cpp
163 lines (132 loc) · 3.39 KB
/
papyruspaperfilesmodel.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
#include "papyruspaperfilesmodel.h"
#include "database.h"
#include "papyrus.h"
#include "repository.h"
#include <QFileInfo>
class PapyrusPaperFilesModelPrivate
{
public:
int paperId;
QStringList list;
Database *db;
};
PapyrusPaperFilesModel::PapyrusPaperFilesModel(QObject *parent) :
QAbstractListModel(parent)
{
p = new PapyrusPaperFilesModelPrivate;
p->paperId = -1;
p->db = Papyrus::database();
connect(p->db, SIGNAL(filesListChanged()), SLOT(refresh()));
}
void PapyrusPaperFilesModel::setPaperId(int id)
{
if(p->paperId == id)
return;
p->paperId = id;
emit paperIdChanged();
refresh();
}
int PapyrusPaperFilesModel::paperId() const
{
return p->paperId;
}
QString PapyrusPaperFilesModel::id(const QModelIndex &index) const
{
const int row = index.row();
return p->list.at(row);
}
int PapyrusPaperFilesModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent)
return count();
}
QVariant PapyrusPaperFilesModel::data(const QModelIndex &index, int role) const
{
QVariant result;
const QString &fileId = id(index);
switch(role)
{
case RoleFileId:
result = fileId;
break;
case RoleFilePath:
result = Papyrus::instance()->repository()->getPath(fileId);
break;
case RoleFileSuffix:
result = QFileInfo(fileId).suffix().toLower();
break;
}
return result;
}
QHash<qint32, QByteArray> PapyrusPaperFilesModel::roleNames() const
{
static QHash<qint32, QByteArray> *res = 0;
if( res )
return *res;
res = new QHash<qint32, QByteArray>();
res->insert( RoleFileId, "id");
res->insert( RoleFilePath, "path");
res->insert( RoleFileSuffix, "suffix");
return *res;
}
int PapyrusPaperFilesModel::count() const
{
return p->list.count();
}
void PapyrusPaperFilesModel::refresh()
{
if(p->paperId == -1)
changed(QStringList());
else
changed( p->db->paperFiles(p->paperId) );
}
void PapyrusPaperFilesModel::changed(const QStringList &list)
{
bool count_changed = (list.count()==p->list.count());
for( int i=0 ; i<p->list.count() ; i++ )
{
const QString &fileId = p->list.at(i);
if( list.contains(fileId) )
continue;
beginRemoveRows(QModelIndex(), i, i);
p->list.removeAt(i);
i--;
endRemoveRows();
}
QStringList temp_list = list;
for( int i=0 ; i<temp_list.count() ; i++ )
{
const QString &fileId = temp_list.at(i);
if( p->list.contains(fileId) )
continue;
temp_list.removeAt(i);
i--;
}
while( p->list != temp_list )
for( int i=0 ; i<p->list.count() ; i++ )
{
const QString &fileId = p->list.at(i);
int nw = temp_list.indexOf(fileId);
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 QString &fileId = list.at(i);
if( p->list.contains(fileId) )
continue;
beginInsertRows(QModelIndex(), i, i );
p->list.insert( i, fileId );
endInsertRows();
}
if(count_changed)
emit countChanged();
emit listChanged();
}
PapyrusPaperFilesModel::~PapyrusPaperFilesModel()
{
delete p;
}