-
Notifications
You must be signed in to change notification settings - Fork 15
/
FsWidget.cpp
140 lines (120 loc) · 3.58 KB
/
FsWidget.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
/****************************************************************************
** Deling Final Fantasy VIII Field Editor
** Copyright (C) 2009-2012 Arzel Jérôme <[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 3 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, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#include "FsWidget.h"
QIcon FsWidget::fileIcon;
QIcon FsWidget::dirIcon;
QMap<QString, QIcon> FsWidget::cacheIcon;
FsWidget::FsWidget(QWidget *parent) :
QTreeWidget(parent)
{
fileIcon = QFileIconProvider().icon(QFileIconProvider::File);
dirIcon = QFileIconProvider().icon(QFileIconProvider::Folder);
tmp.setFileName(QDir::tempPath() % "/deling");
if(!tmp.isOpen()) {
tmp.open(QIODevice::WriteOnly);
}
setAcceptDrops(true);
setIndentation(0);
setUniformRowHeights(true);
setHeaderLabels(QStringList() << tr("Fichiers") << tr("Taille") << tr("Compression"));
setSortingEnabled(true);
sortByColumn(0, Qt::AscendingOrder);
setSelectionMode(QAbstractItemView::ExtendedSelection);
setAllColumnsShowFocus(true);
setAlternatingRowColors(true);
}
FsWidget::~FsWidget()
{
tmp.remove();
}
QIcon FsWidget::getFileIcon(const QString &fileName)
{
int index = fileName.lastIndexOf('.');
QString type;
if(index == -1)
return fileIcon;
else
type = fileName.mid(index + 1);
if(cacheIcon.contains(type))
{
return cacheIcon.value(type);
}
else
{
tmp.rename(QDir::tempPath() % "/" % fileName);
if(!tmp.isOpen()) {
if(!tmp.open(QIODevice::ReadOnly)) return fileIcon;
}
QIcon icon = QFileIconProvider().icon(QFileInfo(tmp));
cacheIcon.insert(type, icon);
return icon;
}
}
QIcon FsWidget::getFileIcon()
{
return fileIcon;
}
QIcon FsWidget::getDirIcon()
{
return dirIcon;
}
void FsWidget::dragEnterEvent(QDragEnterEvent *event)
{
if(event->mimeData()->hasUrls())
event->acceptProposedAction();
}
void FsWidget::dragMoveEvent(QDragMoveEvent *event)
{
if(event->mimeData()->hasUrls())
event->acceptProposedAction();
}
void FsWidget::dropEvent(QDropEvent *event)
{
const QMimeData *mimeData = event->mimeData();
if(mimeData->hasUrls())
{
QList<QUrl> urlList = mimeData->urls();
QStringList pathList;
QString path;
foreach(const QUrl &url, urlList)
{
path = QDir::cleanPath(url.path().mid(1));
if(path.startsWith(QDir::rootPath())) {
pathList.append(path);
}
}
emit fileDropped(pathList);
}
event->acceptProposedAction();
}
/* void FsWidget::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
QTreeWidgetItem *item = itemAt(event->pos());
if(item == NULL) return;
QFile tempFile(item->text(0));
tempFile.open(QIODevice::WriteOnly);
tempFile.write();
QDrag *drag = new QDrag(this);
QMimeData *mimeData = new QMimeData;
mimeData->setUrls(QList<QUrl>() << item);
drag->setMimeData(mimeData);
drag->setPixmap(iconPixmap);
Qt::DropAction dropAction = drag->exec();
}
} */