-
Notifications
You must be signed in to change notification settings - Fork 0
/
taglistmodeldrop.cpp
79 lines (59 loc) · 1.97 KB
/
taglistmodeldrop.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
#include "taglistmodeldrop.h"
TagListModelDrop::TagListModelDrop(TagList *tagList, QObject *parent)
: TagListModel(tagList, parent)
{}
Qt::ItemFlags TagListModelDrop::flags(const QModelIndex &index) const {
if (!index.isValid())
return TagListModel::flags(index)
| Qt::ItemIsDropEnabled;
else
return TagListModel::flags(index)
| Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled;
}
Qt::DropActions TagListModelDrop::supportedDropActions() const {
return Qt::CopyAction;
}
QStringList TagListModelDrop::mimeTypes() const {
/* Dit quels type d'info le drop accepte si c'est
* pas dedans on accepte pas et il ne se passe rien
* ça dit a Qt ce qu'on accepte exclusivement */
QStringList types;
/* ce qui nous interesse c'est le nom des fichiers */
types << "text/uri-list";
return types;
}
bool TagListModelDrop::canDropMimeData(const QMimeData *data, Qt::DropAction action,
int row, int column, const QModelIndex &parent) const {
Q_UNUSED(row)
if (action == Qt::IgnoreAction)
return true;
if (!data->hasFormat("text/uri-list"))
return false;
if (column > 0)
return false;
if (!parent.isValid())
return false;
return true;
}
bool TagListModelDrop::dropMimeData(const QMimeData *data, Qt::DropAction action,
int row, int column, const QModelIndex &parent) {
/*que faire si des données sont droppés*/
if (action == Qt::IgnoreAction)
return true;
if (!data->hasFormat("text/uri-list"))
return false;
if (column > 0)
return false;
if (parent.isValid())
row = parent.row();
else
return false;
Tag *tag = _tags->at(row);
QList<QUrl> files = data->urls();
QList<TagFile *> list;
//Pour chaque url droppé on crée un TagFile qu'on ajoute au tag
for (QUrl url : files) {
tag->append(TagFile::find(url.url()));
}
return true;
}