Absolute File Name: | /home/qt/qt5_coco/qt5/qtbase/src/widgets/dialogs/qsidebar.cpp |
Switch to Source code | Preprocessed file |
Line | Source | Count | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | - | |||||||||||||
2 | - | |||||||||||||
3 | - | |||||||||||||
4 | - | |||||||||||||
5 | - | |||||||||||||
6 | - | |||||||||||||
7 | void QSideBarDelegate::initStyleOption(QStyleOptionViewItem *option, | - | ||||||||||||
8 | const QModelIndex &index) const | - | ||||||||||||
9 | { | - | ||||||||||||
10 | QStyledItemDelegate::initStyleOption(option,index); | - | ||||||||||||
11 | QVariant value = index.data(QUrlModel::EnabledRole); | - | ||||||||||||
12 | if (value.isValid()
| 0 | ||||||||||||
13 | - | |||||||||||||
14 | if (!qvariant_cast<bool>(value)
| 0 | ||||||||||||
15 | option->state &= ~QStyle::State_Enabled; never executed: option->state &= ~QStyle::State_Enabled; | 0 | ||||||||||||
16 | } never executed: end of block | 0 | ||||||||||||
17 | } never executed: end of block | 0 | ||||||||||||
18 | QUrlModel::QUrlModel(QObject *parent) : QStandardItemModel(parent), showFullPath(false), fileSystemModel(0) | - | ||||||||||||
19 | { | - | ||||||||||||
20 | } never executed: end of block | 0 | ||||||||||||
21 | - | |||||||||||||
22 | - | |||||||||||||
23 | - | |||||||||||||
24 | - | |||||||||||||
25 | QStringList QUrlModel::mimeTypes() const | - | ||||||||||||
26 | { | - | ||||||||||||
27 | return never executed: QStringList(QLatin1String("text/uri-list"));return QStringList(QLatin1String("text/uri-list")); never executed: return QStringList(QLatin1String("text/uri-list")); | 0 | ||||||||||||
28 | } | - | ||||||||||||
29 | - | |||||||||||||
30 | - | |||||||||||||
31 | - | |||||||||||||
32 | - | |||||||||||||
33 | Qt::ItemFlags QUrlModel::flags(const QModelIndex &index) const | - | ||||||||||||
34 | { | - | ||||||||||||
35 | Qt::ItemFlags flags = QStandardItemModel::flags(index); | - | ||||||||||||
36 | if (index.isValid()
| 0 | ||||||||||||
37 | flags &= ~Qt::ItemIsEditable; | - | ||||||||||||
38 | - | |||||||||||||
39 | flags &= ~Qt::ItemIsDropEnabled; | - | ||||||||||||
40 | } never executed: end of block | 0 | ||||||||||||
41 | - | |||||||||||||
42 | if (index.data(Qt::DecorationRole).isNull()
| 0 | ||||||||||||
43 | flags &= ~Qt::ItemIsEnabled; never executed: flags &= ~Qt::ItemIsEnabled; | 0 | ||||||||||||
44 | - | |||||||||||||
45 | return never executed: flags;return flags; never executed: return flags; | 0 | ||||||||||||
46 | } | - | ||||||||||||
47 | - | |||||||||||||
48 | - | |||||||||||||
49 | - | |||||||||||||
50 | - | |||||||||||||
51 | QMimeData *QUrlModel::mimeData(const QModelIndexList &indexes) const | - | ||||||||||||
52 | { | - | ||||||||||||
53 | QList<QUrl> list; | - | ||||||||||||
54 | for (const auto &index : indexes) { | - | ||||||||||||
55 | if (index.column() == 0
| 0 | ||||||||||||
56 | list.append(index.data(UrlRole).toUrl()); never executed: list.append(index.data(UrlRole).toUrl()); | 0 | ||||||||||||
57 | } never executed: end of block | 0 | ||||||||||||
58 | QMimeData *data = new QMimeData(); | - | ||||||||||||
59 | data->setUrls(list); | - | ||||||||||||
60 | return never executed: data;return data; never executed: return data; | 0 | ||||||||||||
61 | } | - | ||||||||||||
62 | bool QUrlModel::canDrop(QDragEnterEvent *event) | - | ||||||||||||
63 | { | - | ||||||||||||
64 | if (!event->mimeData()->formats().contains(mimeTypes().constFirst())
| 0 | ||||||||||||
65 | return never executed: false;return false; never executed: return false; | 0 | ||||||||||||
66 | - | |||||||||||||
67 | const QList<QUrl> list = event->mimeData()->urls(); | - | ||||||||||||
68 | for (const auto &url : list) { | - | ||||||||||||
69 | const QModelIndex idx = fileSystemModel->index(url.toLocalFile()); | - | ||||||||||||
70 | if (!fileSystemModel->isDir(idx)
| 0 | ||||||||||||
71 | return never executed: false;return false; never executed: return false; | 0 | ||||||||||||
72 | } never executed: end of block | 0 | ||||||||||||
73 | return never executed: true;return true; never executed: return true; | 0 | ||||||||||||
74 | } | - | ||||||||||||
75 | - | |||||||||||||
76 | - | |||||||||||||
77 | - | |||||||||||||
78 | - | |||||||||||||
79 | bool QUrlModel::dropMimeData(const QMimeData *data, Qt::DropAction action, | - | ||||||||||||
80 | int row, int column, const QModelIndex &parent) | - | ||||||||||||
81 | { | - | ||||||||||||
82 | if (!data->formats().contains(mimeTypes().constFirst())
| 0 | ||||||||||||
83 | return never executed: false;return false; never executed: return false; | 0 | ||||||||||||
84 | (void)action;; | - | ||||||||||||
85 | (void)column;; | - | ||||||||||||
86 | (void)parent;; | - | ||||||||||||
87 | addUrls(data->urls(), row); | - | ||||||||||||
88 | return never executed: true;return true; never executed: return true; | 0 | ||||||||||||
89 | } | - | ||||||||||||
90 | bool QUrlModel::setData(const QModelIndex &index, const QVariant &value, int role) | - | ||||||||||||
91 | { | - | ||||||||||||
92 | if (value.type() == QVariant::Url
| 0 | ||||||||||||
93 | QUrl url = value.toUrl(); | - | ||||||||||||
94 | QModelIndex dirIndex = fileSystemModel->index(url.toLocalFile()); | - | ||||||||||||
95 | - | |||||||||||||
96 | if (showFullPath
| 0 | ||||||||||||
97 | QStandardItemModel::setData(index, QDir::toNativeSeparators(fileSystemModel->data(dirIndex, QFileSystemModel::FilePathRole).toString())); never executed: QStandardItemModel::setData(index, QDir::toNativeSeparators(fileSystemModel->data(dirIndex, QFileSystemModel::FilePathRole).toString())); | 0 | ||||||||||||
98 | else { | - | ||||||||||||
99 | QStandardItemModel::setData(index, QDir::toNativeSeparators(fileSystemModel->data(dirIndex, QFileSystemModel::FilePathRole).toString()), Qt::ToolTipRole); | - | ||||||||||||
100 | QStandardItemModel::setData(index, fileSystemModel->data(dirIndex).toString()); | - | ||||||||||||
101 | } never executed: end of block | 0 | ||||||||||||
102 | QStandardItemModel::setData(index, fileSystemModel->data(dirIndex, Qt::DecorationRole), | - | ||||||||||||
103 | Qt::DecorationRole); | - | ||||||||||||
104 | QStandardItemModel::setData(index, url, UrlRole); | - | ||||||||||||
105 | return never executed: true;return true; never executed: return true; | 0 | ||||||||||||
106 | } | - | ||||||||||||
107 | return never executed: QStandardItemModel::setData(index, value, role);return QStandardItemModel::setData(index, value, role); never executed: return QStandardItemModel::setData(index, value, role); | 0 | ||||||||||||
108 | } | - | ||||||||||||
109 | - | |||||||||||||
110 | void QUrlModel::setUrl(const QModelIndex &index, const QUrl &url, const QModelIndex &dirIndex) | - | ||||||||||||
111 | { | - | ||||||||||||
112 | setData(index, url, UrlRole); | - | ||||||||||||
113 | if (url.path().isEmpty()
| 0 | ||||||||||||
114 | setData(index, fileSystemModel->myComputer()); | - | ||||||||||||
115 | setData(index, fileSystemModel->myComputer(Qt::DecorationRole), Qt::DecorationRole); | - | ||||||||||||
116 | } never executed: else {end of block | 0 | ||||||||||||
117 | QString newName; | - | ||||||||||||
118 | if (showFullPath
| 0 | ||||||||||||
119 | - | |||||||||||||
120 | newName = QDir::toNativeSeparators(dirIndex.data(QFileSystemModel::FilePathRole).toString()); | - | ||||||||||||
121 | } never executed: else {end of block | 0 | ||||||||||||
122 | newName = dirIndex.data().toString(); | - | ||||||||||||
123 | } never executed: end of block | 0 | ||||||||||||
124 | - | |||||||||||||
125 | QIcon newIcon = qvariant_cast<QIcon>(dirIndex.data(Qt::DecorationRole)); | - | ||||||||||||
126 | if (!dirIndex.isValid()
| 0 | ||||||||||||
127 | const QFileIconProvider *provider = fileSystemModel->iconProvider(); | - | ||||||||||||
128 | if (provider
| 0 | ||||||||||||
129 | newIcon = provider->icon(QFileIconProvider::Folder); never executed: newIcon = provider->icon(QFileIconProvider::Folder); | 0 | ||||||||||||
130 | newName = QFileInfo(url.toLocalFile()).fileName(); | - | ||||||||||||
131 | if (!invalidUrls.contains(url)
| 0 | ||||||||||||
132 | invalidUrls.append(url); never executed: invalidUrls.append(url); | 0 | ||||||||||||
133 | - | |||||||||||||
134 | setData(index, false, EnabledRole); | - | ||||||||||||
135 | } never executed: else {end of block | 0 | ||||||||||||
136 | - | |||||||||||||
137 | setData(index, true, EnabledRole); | - | ||||||||||||
138 | } never executed: end of block | 0 | ||||||||||||
139 | - | |||||||||||||
140 | - | |||||||||||||
141 | const QSize size = newIcon.actualSize(QSize(32,32)); | - | ||||||||||||
142 | if (size.width() < 32
| 0 | ||||||||||||
143 | QPixmap smallPixmap = newIcon.pixmap(QSize(32, 32)); | - | ||||||||||||
144 | newIcon.addPixmap(smallPixmap.scaledToWidth(32, Qt::SmoothTransformation)); | - | ||||||||||||
145 | } never executed: end of block | 0 | ||||||||||||
146 | - | |||||||||||||
147 | if (index.data().toString() != newName
| 0 | ||||||||||||
148 | setData(index, newName); never executed: setData(index, newName); | 0 | ||||||||||||
149 | QIcon oldIcon = qvariant_cast<QIcon>(index.data(Qt::DecorationRole)); | - | ||||||||||||
150 | if (oldIcon.cacheKey() != newIcon.cacheKey()
| 0 | ||||||||||||
151 | setData(index, newIcon, Qt::DecorationRole); never executed: setData(index, newIcon, Qt::DecorationRole); | 0 | ||||||||||||
152 | } never executed: end of block | 0 | ||||||||||||
153 | } | - | ||||||||||||
154 | - | |||||||||||||
155 | void QUrlModel::setUrls(const QList<QUrl> &list) | - | ||||||||||||
156 | { | - | ||||||||||||
157 | removeRows(0, rowCount()); | - | ||||||||||||
158 | invalidUrls.clear(); | - | ||||||||||||
159 | watching.clear(); | - | ||||||||||||
160 | addUrls(list, 0); | - | ||||||||||||
161 | } never executed: end of block | 0 | ||||||||||||
162 | - | |||||||||||||
163 | - | |||||||||||||
164 | - | |||||||||||||
165 | - | |||||||||||||
166 | - | |||||||||||||
167 | - | |||||||||||||
168 | - | |||||||||||||
169 | void QUrlModel::addUrls(const QList<QUrl> &list, int row, bool move) | - | ||||||||||||
170 | { | - | ||||||||||||
171 | if (row == -1
| 0 | ||||||||||||
172 | row = rowCount(); never executed: row = rowCount(); | 0 | ||||||||||||
173 | row = qMin(row, rowCount()); | - | ||||||||||||
174 | for (int i = list.count() - 1; i >= 0
| 0 | ||||||||||||
175 | QUrl url = list.at(i); | - | ||||||||||||
176 | if (!url.isValid()
| 0 | ||||||||||||
177 | continue; never executed: continue; | 0 | ||||||||||||
178 | - | |||||||||||||
179 | const QString cleanUrl = QDir::cleanPath(url.toLocalFile()); | - | ||||||||||||
180 | if (!cleanUrl.isEmpty()
| 0 | ||||||||||||
181 | url = QUrl::fromLocalFile(cleanUrl); never executed: url = QUrl::fromLocalFile(cleanUrl); | 0 | ||||||||||||
182 | - | |||||||||||||
183 | for (int j = 0; move
| 0 | ||||||||||||
184 | QString local = index(j, 0).data(UrlRole).toUrl().toLocalFile(); | - | ||||||||||||
185 | - | |||||||||||||
186 | - | |||||||||||||
187 | - | |||||||||||||
188 | const Qt::CaseSensitivity cs = Qt::CaseSensitive; | - | ||||||||||||
189 | - | |||||||||||||
190 | if (!cleanUrl.compare(local, cs)
| 0 | ||||||||||||
191 | removeRow(j); | - | ||||||||||||
192 | if (j <= row
| 0 | ||||||||||||
193 | row--; never executed: row--; | 0 | ||||||||||||
194 | break; never executed: break; | 0 | ||||||||||||
195 | } | - | ||||||||||||
196 | } never executed: end of block | 0 | ||||||||||||
197 | row = qMax(row, 0); | - | ||||||||||||
198 | QModelIndex idx = fileSystemModel->index(cleanUrl); | - | ||||||||||||
199 | if (!fileSystemModel->isDir(idx)
| 0 | ||||||||||||
200 | continue; never executed: continue; | 0 | ||||||||||||
201 | insertRows(row, 1); | - | ||||||||||||
202 | setUrl(index(row, 0), url, idx); | - | ||||||||||||
203 | watching.append(qMakePair(idx, cleanUrl)); | - | ||||||||||||
204 | } never executed: end of block | 0 | ||||||||||||
205 | } never executed: end of block | 0 | ||||||||||||
206 | - | |||||||||||||
207 | - | |||||||||||||
208 | - | |||||||||||||
209 | - | |||||||||||||
210 | QList<QUrl> QUrlModel::urls() const | - | ||||||||||||
211 | { | - | ||||||||||||
212 | QList<QUrl> list; | - | ||||||||||||
213 | const int numRows = rowCount(); | - | ||||||||||||
214 | list.reserve(numRows); | - | ||||||||||||
215 | for (int i = 0; i < numRows
| 0 | ||||||||||||
216 | list.append(data(index(i, 0), UrlRole).toUrl()); never executed: list.append(data(index(i, 0), UrlRole).toUrl()); | 0 | ||||||||||||
217 | return never executed: list;return list; never executed: return list; | 0 | ||||||||||||
218 | } | - | ||||||||||||
219 | - | |||||||||||||
220 | - | |||||||||||||
221 | - | |||||||||||||
222 | - | |||||||||||||
223 | void QUrlModel::setFileSystemModel(QFileSystemModel *model) | - | ||||||||||||
224 | { | - | ||||||||||||
225 | if (model == fileSystemModel
| 0 | ||||||||||||
226 | return; never executed: return; | 0 | ||||||||||||
227 | if (fileSystemModel != 0
| 0 | ||||||||||||
228 | disconnect(model, qFlagLocation("2""dataChanged(QModelIndex,QModelIndex)" "\0" __FILE__ ":" "302"), | - | ||||||||||||
229 | this, qFlagLocation("1""dataChanged(QModelIndex,QModelIndex)" "\0" __FILE__ ":" "303")); | - | ||||||||||||
230 | disconnect(model, qFlagLocation("2""layoutChanged()" "\0" __FILE__ ":" "304"), | - | ||||||||||||
231 | this, qFlagLocation("1""layoutChanged()" "\0" __FILE__ ":" "305")); | - | ||||||||||||
232 | disconnect(model, qFlagLocation("2""rowsRemoved(QModelIndex,int,int)" "\0" __FILE__ ":" "306"), | - | ||||||||||||
233 | this, qFlagLocation("1""layoutChanged()" "\0" __FILE__ ":" "307")); | - | ||||||||||||
234 | } never executed: end of block | 0 | ||||||||||||
235 | fileSystemModel = model; | - | ||||||||||||
236 | if (fileSystemModel != 0
| 0 | ||||||||||||
237 | connect(model, qFlagLocation("2""dataChanged(QModelIndex,QModelIndex)" "\0" __FILE__ ":" "311"), | - | ||||||||||||
238 | this, qFlagLocation("1""dataChanged(QModelIndex,QModelIndex)" "\0" __FILE__ ":" "312")); | - | ||||||||||||
239 | connect(model, qFlagLocation("2""layoutChanged()" "\0" __FILE__ ":" "313"), | - | ||||||||||||
240 | this, qFlagLocation("1""layoutChanged()" "\0" __FILE__ ":" "314")); | - | ||||||||||||
241 | connect(model, qFlagLocation("2""rowsRemoved(QModelIndex,int,int)" "\0" __FILE__ ":" "315"), | - | ||||||||||||
242 | this, qFlagLocation("1""layoutChanged()" "\0" __FILE__ ":" "316")); | - | ||||||||||||
243 | } never executed: end of block | 0 | ||||||||||||
244 | clear(); | - | ||||||||||||
245 | insertColumns(0, 1); | - | ||||||||||||
246 | } never executed: end of block | 0 | ||||||||||||
247 | - | |||||||||||||
248 | - | |||||||||||||
249 | - | |||||||||||||
250 | - | |||||||||||||
251 | void QUrlModel::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) | - | ||||||||||||
252 | { | - | ||||||||||||
253 | QModelIndex parent = topLeft.parent(); | - | ||||||||||||
254 | for (int i = 0; i < watching.count()
| 0 | ||||||||||||
255 | QModelIndex index = watching.at(i).first; | - | ||||||||||||
256 | if (index.model()
| 0 | ||||||||||||
257 | ((!(index.model() == topLeft.model())) ? qt_assert("index.model() == topLeft.model()",__FILE__,331) : qt_noop()); | - | ||||||||||||
258 | } never executed: end of block | 0 | ||||||||||||
259 | if ( index.row() >= topLeft.row()
| 0 | ||||||||||||
260 | && index.row() <= bottomRight.row()
| 0 | ||||||||||||
261 | && index.column() >= topLeft.column()
| 0 | ||||||||||||
262 | && index.column() <= bottomRight.column()
| 0 | ||||||||||||
263 | && index.parent() == parent
| 0 | ||||||||||||
264 | changed(watching.at(i).second); | - | ||||||||||||
265 | } never executed: end of block | 0 | ||||||||||||
266 | } never executed: end of block | 0 | ||||||||||||
267 | } never executed: end of block | 0 | ||||||||||||
268 | - | |||||||||||||
269 | - | |||||||||||||
270 | - | |||||||||||||
271 | - | |||||||||||||
272 | void QUrlModel::layoutChanged() | - | ||||||||||||
273 | { | - | ||||||||||||
274 | QStringList paths; | - | ||||||||||||
275 | const int numPaths = watching.count(); | - | ||||||||||||
276 | paths.reserve(numPaths); | - | ||||||||||||
277 | for (int i = 0; i < numPaths
| 0 | ||||||||||||
278 | paths.append(watching.at(i).second); never executed: paths.append(watching.at(i).second); | 0 | ||||||||||||
279 | watching.clear(); | - | ||||||||||||
280 | for (int i = 0; i < numPaths
| 0 | ||||||||||||
281 | QString path = paths.at(i); | - | ||||||||||||
282 | QModelIndex newIndex = fileSystemModel->index(path); | - | ||||||||||||
283 | watching.append(QPair<QModelIndex, QString>(newIndex, path)); | - | ||||||||||||
284 | if (newIndex.isValid()
| 0 | ||||||||||||
285 | changed(path); never executed: changed(path); | 0 | ||||||||||||
286 | } never executed: end of block | 0 | ||||||||||||
287 | } never executed: end of block | 0 | ||||||||||||
288 | - | |||||||||||||
289 | - | |||||||||||||
290 | - | |||||||||||||
291 | - | |||||||||||||
292 | - | |||||||||||||
293 | - | |||||||||||||
294 | void QUrlModel::changed(const QString &path) | - | ||||||||||||
295 | { | - | ||||||||||||
296 | for (int i = 0; i < rowCount()
| 0 | ||||||||||||
297 | QModelIndex idx = index(i, 0); | - | ||||||||||||
298 | if (idx.data(UrlRole).toUrl().toLocalFile() == path
| 0 | ||||||||||||
299 | setData(idx, idx.data(UrlRole).toUrl()); | - | ||||||||||||
300 | } never executed: end of block | 0 | ||||||||||||
301 | } never executed: end of block | 0 | ||||||||||||
302 | } never executed: end of block | 0 | ||||||||||||
303 | - | |||||||||||||
304 | QSidebar::QSidebar(QWidget *parent) : QListView(parent) | - | ||||||||||||
305 | { | - | ||||||||||||
306 | } never executed: end of block | 0 | ||||||||||||
307 | - | |||||||||||||
308 | void QSidebar::setModelAndUrls(QFileSystemModel *model, const QList<QUrl> &newUrls) | - | ||||||||||||
309 | { | - | ||||||||||||
310 | - | |||||||||||||
311 | setIconSize(QSize(24,24)); | - | ||||||||||||
312 | setUniformItemSizes(true); | - | ||||||||||||
313 | urlModel = new QUrlModel(this); | - | ||||||||||||
314 | urlModel->setFileSystemModel(model); | - | ||||||||||||
315 | setModel(urlModel); | - | ||||||||||||
316 | setItemDelegate(new QSideBarDelegate(this)); | - | ||||||||||||
317 | - | |||||||||||||
318 | connect(selectionModel(), qFlagLocation("2""currentChanged(QModelIndex,QModelIndex)" "\0" __FILE__ ":" "392"), | - | ||||||||||||
319 | this, qFlagLocation("1""clicked(QModelIndex)" "\0" __FILE__ ":" "393")); | - | ||||||||||||
320 | - | |||||||||||||
321 | setDragDropMode(QAbstractItemView::DragDrop); | - | ||||||||||||
322 | - | |||||||||||||
323 | setContextMenuPolicy(Qt::CustomContextMenu); | - | ||||||||||||
324 | connect(this, qFlagLocation("2""customContextMenuRequested(QPoint)" "\0" __FILE__ ":" "398"), | - | ||||||||||||
325 | this, qFlagLocation("1""showContextMenu(QPoint)" "\0" __FILE__ ":" "399")); | - | ||||||||||||
326 | urlModel->setUrls(newUrls); | - | ||||||||||||
327 | setCurrentIndex(this->model()->index(0,0)); | - | ||||||||||||
328 | } never executed: end of block | 0 | ||||||||||||
329 | - | |||||||||||||
330 | QSidebar::~QSidebar() | - | ||||||||||||
331 | { | - | ||||||||||||
332 | } | - | ||||||||||||
333 | - | |||||||||||||
334 | - | |||||||||||||
335 | void QSidebar::dragEnterEvent(QDragEnterEvent *event) | - | ||||||||||||
336 | { | - | ||||||||||||
337 | if (urlModel->canDrop(event)
| 0 | ||||||||||||
338 | QListView::dragEnterEvent(event); never executed: QListView::dragEnterEvent(event); | 0 | ||||||||||||
339 | } never executed: end of block | 0 | ||||||||||||
340 | - | |||||||||||||
341 | - | |||||||||||||
342 | QSize QSidebar::sizeHint() const | - | ||||||||||||
343 | { | - | ||||||||||||
344 | if (model()
| 0 | ||||||||||||
345 | return never executed: QListView::sizeHintForIndex(model()->index(0, 0)) + QSize(2 * frameWidth(), 2 * frameWidth());return QListView::sizeHintForIndex(model()->index(0, 0)) + QSize(2 * frameWidth(), 2 * frameWidth()); never executed: return QListView::sizeHintForIndex(model()->index(0, 0)) + QSize(2 * frameWidth(), 2 * frameWidth()); | 0 | ||||||||||||
346 | return never executed: QListView::sizeHint();return QListView::sizeHint(); never executed: return QListView::sizeHint(); | 0 | ||||||||||||
347 | } | - | ||||||||||||
348 | - | |||||||||||||
349 | void QSidebar::selectUrl(const QUrl &url) | - | ||||||||||||
350 | { | - | ||||||||||||
351 | disconnect(selectionModel(), qFlagLocation("2""currentChanged(QModelIndex,QModelIndex)" "\0" __FILE__ ":" "425"), | - | ||||||||||||
352 | this, qFlagLocation("1""clicked(QModelIndex)" "\0" __FILE__ ":" "426")); | - | ||||||||||||
353 | - | |||||||||||||
354 | selectionModel()->clear(); | - | ||||||||||||
355 | for (int i = 0; i < model()->rowCount()
| 0 | ||||||||||||
356 | if (model()->index(i, 0).data(QUrlModel::UrlRole).toUrl() == url
| 0 | ||||||||||||
357 | selectionModel()->select(model()->index(i, 0), QItemSelectionModel::Select); | - | ||||||||||||
358 | break; never executed: break; | 0 | ||||||||||||
359 | } | - | ||||||||||||
360 | } never executed: end of block | 0 | ||||||||||||
361 | - | |||||||||||||
362 | connect(selectionModel(), qFlagLocation("2""currentChanged(QModelIndex,QModelIndex)" "\0" __FILE__ ":" "436"), | - | ||||||||||||
363 | this, qFlagLocation("1""clicked(QModelIndex)" "\0" __FILE__ ":" "437")); | - | ||||||||||||
364 | } never executed: end of block | 0 | ||||||||||||
365 | - | |||||||||||||
366 | - | |||||||||||||
367 | - | |||||||||||||
368 | - | |||||||||||||
369 | - | |||||||||||||
370 | - | |||||||||||||
371 | - | |||||||||||||
372 | void QSidebar::showContextMenu(const QPoint &position) | - | ||||||||||||
373 | { | - | ||||||||||||
374 | QList<QAction *> actions; | - | ||||||||||||
375 | if (indexAt(position).isValid()
| 0 | ||||||||||||
376 | QAction *action = new QAction(QFileDialog::tr("Remove"), this); | - | ||||||||||||
377 | if (indexAt(position).data(QUrlModel::UrlRole).toUrl().path().isEmpty()
| 0 | ||||||||||||
378 | action->setEnabled(false); never executed: action->setEnabled(false); | 0 | ||||||||||||
379 | connect(action, qFlagLocation("2""triggered()" "\0" __FILE__ ":" "453"), this, qFlagLocation("1""removeEntry()" "\0" __FILE__ ":" "453")); | - | ||||||||||||
380 | actions.append(action); | - | ||||||||||||
381 | } never executed: end of block | 0 | ||||||||||||
382 | if (actions.count() > 0
| 0 | ||||||||||||
383 | QMenu::exec(actions, mapToGlobal(position)); never executed: QMenu::exec(actions, mapToGlobal(position)); | 0 | ||||||||||||
384 | } never executed: end of block | 0 | ||||||||||||
385 | - | |||||||||||||
386 | - | |||||||||||||
387 | - | |||||||||||||
388 | - | |||||||||||||
389 | - | |||||||||||||
390 | - | |||||||||||||
391 | - | |||||||||||||
392 | void QSidebar::removeEntry() | - | ||||||||||||
393 | { | - | ||||||||||||
394 | QList<QModelIndex> idxs = selectionModel()->selectedIndexes(); | - | ||||||||||||
395 | QList<QPersistentModelIndex> indexes; | - | ||||||||||||
396 | const int numIndexes = idxs.count(); | - | ||||||||||||
397 | indexes.reserve(numIndexes); | - | ||||||||||||
398 | for (int i = 0; i < numIndexes
| 0 | ||||||||||||
399 | indexes.append(idxs.at(i)); never executed: indexes.append(idxs.at(i)); | 0 | ||||||||||||
400 | - | |||||||||||||
401 | for (int i = 0; i < numIndexes
| 0 | ||||||||||||
402 | if (!indexes.at(i).data(QUrlModel::UrlRole).toUrl().path().isEmpty()
| 0 | ||||||||||||
403 | model()->removeRow(indexes.at(i).row()); never executed: model()->removeRow(indexes.at(i).row()); | 0 | ||||||||||||
404 | } never executed: end of block | 0 | ||||||||||||
405 | } never executed: end of block | 0 | ||||||||||||
406 | - | |||||||||||||
407 | - | |||||||||||||
408 | - | |||||||||||||
409 | - | |||||||||||||
410 | - | |||||||||||||
411 | - | |||||||||||||
412 | void QSidebar::clicked(const QModelIndex &index) | - | ||||||||||||
413 | { | - | ||||||||||||
414 | QUrl url = model()->index(index.row(), 0).data(QUrlModel::UrlRole).toUrl(); | - | ||||||||||||
415 | goToUrl(url); | - | ||||||||||||
416 | selectUrl(url); | - | ||||||||||||
417 | } never executed: end of block | 0 | ||||||||||||
418 | - | |||||||||||||
419 | - | |||||||||||||
420 | - | |||||||||||||
421 | - | |||||||||||||
422 | - | |||||||||||||
423 | void QSidebar::focusInEvent(QFocusEvent *event) | - | ||||||||||||
424 | { | - | ||||||||||||
425 | QAbstractScrollArea::focusInEvent(event); | - | ||||||||||||
426 | viewport()->update(); | - | ||||||||||||
427 | } never executed: end of block | 0 | ||||||||||||
428 | - | |||||||||||||
429 | - | |||||||||||||
430 | - | |||||||||||||
431 | - | |||||||||||||
432 | bool QSidebar::event(QEvent * event) | - | ||||||||||||
433 | { | - | ||||||||||||
434 | if (event->type() == QEvent::KeyRelease
| 0 | ||||||||||||
435 | QKeyEvent* ke = (QKeyEvent*) event; | - | ||||||||||||
436 | if (ke->key() == Qt::Key_Delete
| 0 | ||||||||||||
437 | removeEntry(); | - | ||||||||||||
438 | return never executed: true;return true; never executed: return true; | 0 | ||||||||||||
439 | } | - | ||||||||||||
440 | } never executed: end of block | 0 | ||||||||||||
441 | return never executed: QListView::event(event);return QListView::event(event); never executed: return QListView::event(event); | 0 | ||||||||||||
442 | } | - | ||||||||||||
443 | - | |||||||||||||
444 | - | |||||||||||||
445 | - | |||||||||||||
Switch to Source code | Preprocessed file |