-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnsrdirmodel.cpp
203 lines (158 loc) · 4.37 KB
/
nsrdirmodel.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
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
* Copyright (C) 2011-2015 Alexander Saprykin <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "nsrdirmodel.h"
#include <QFileInfoList>
#include <QIcon>
NSRDirModel::NSRDirModel (QObject *parent) :
QAbstractItemModel (parent)
{
}
NSRDirModel::~NSRDirModel ()
{
cleanList ();
}
int NSRDirModel::rowCount (const QModelIndex &parent) const
{
if (!parent.isValid ())
return _list.count ();
else
return 0;
}
int NSRDirModel::columnCount (const QModelIndex &parent) const
{
Q_UNUSED (parent);
return 1;
}
QVariant NSRDirModel::headerData (int section, Qt::Orientation orientation, int role) const
{
Q_UNUSED (section);
Q_UNUSED (orientation);
Q_UNUSED (role);
return QVariant ("");
}
QVariant NSRDirModel::data (const QModelIndex &index, int role) const
{
NSRDirItem *item;
if (!index.isValid () || index.row () > _list.count () - 1)
return QVariant ();
if (index.column () > 0)
return QVariant ();
item = _list.at (index.row ());
if (role == Qt::DisplayRole)
return QVariant (item->getName ());
else if (role == Qt::DecorationRole) {
if (item->isDir () && item->getName () != "..")
return QVariant (QIcon (QString::fromUtf8(":/icons/icons/open.png")));
else if (!item->isDir())
return QVariant (QIcon (QString::fromUtf8(":/icons/icons/document.png")));
else
return QVariant ();
} else
return QVariant ();
}
QModelIndex NSRDirModel::index (int row, int column, const QModelIndex &parent) const
{
if (row > _list.count () - 1 || column > 0)
return QModelIndex ();
if (parent.isValid ())
return QModelIndex ();
return createIndex (row, column);
}
QModelIndex NSRDirModel::parent (const QModelIndex &child) const
{
Q_UNUSED (child);
return QModelIndex ();
}
Qt::ItemFlags NSRDirModel::flags (const QModelIndex &index) const
{
if (!index.isValid ())
return 0;
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
}
void NSRDirModel::setRootPath (const QString &path)
{
QFileInfo info (path);
if (!info.exists ())
return;
_dir.setPath (path);
updateDataFromDir ();
emit currentPathChanged (_dir.absolutePath ());
}
void NSRDirModel::setNameFilters (const QStringList &filters)
{
_filters = filters;
updateDataFromDir ();
}
void NSRDirModel::itemClicked (const QModelIndex &index)
{
if (!index.isValid ())
return;
if (index.row () > _list.count () - 1)
return;
if (!_list.at(index.row ())->isDir ()) {
_selectedFile = _list.at(index.row ())->getFullName ();
emit fileSelected ();
} else {
if (_list.at(index.row ())->getName () == "..") {
_dir.cdUp ();
setRootPath (_dir.absolutePath ());
} else
setRootPath (_list.at(index.row ())->getFullName ());
}
}
QString NSRDirModel::getCurrentPath () const
{
return _dir.absolutePath ();
}
void NSRDirModel::updateDataFromDir ()
{
QFileInfoList entries;
QList<NSRDirItem *> list;
int count;
entries = _dir.entryInfoList (QStringList (), QDir::Dirs, QDir::Name);
count = entries.count ();
for (int i = 0; i < count; ++i) {
if (entries.at(i).fileName () == ".")
continue;
list.append (new NSRDirItem (entries.at(i).fileName (),
entries.at(i).absoluteFilePath(),
true));
}
entries = _dir.entryInfoList (_filters, QDir::Files, QDir::Name);
count = entries.count ();
for (int i = 0; i < count; ++i) {
if (entries.at(i).fileName () == ".")
continue;
list.append (new NSRDirItem (entries.at(i).fileName (),
entries.at(i).absoluteFilePath(),
false));
}
if (list.isEmpty ())
list.append (new NSRDirItem ("..",
_dir.path () + "/..",
true));
emit layoutAboutToBeChanged ();
cleanList ();
_list = list;
emit layoutChanged ();
}
void NSRDirModel::cleanList ()
{
while (!_list.isEmpty ())
delete _list.takeFirst ();
}