-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfileexplorer.cpp
More file actions
290 lines (240 loc) · 7.98 KB
/
fileexplorer.cpp
File metadata and controls
290 lines (240 loc) · 7.98 KB
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
//
// Created by axel on 26/12/2025.
//
#include "fileexplorer.h"
#include <QTreeView>
#include <QFileSystemModel>
#include <QVBoxLayout>
#include <QMenu>
#include <QDir>
#include <QFile>
#include <QDebug>
#include <QMessageBox>
#include <QDesktopServices>
#include <QDialog>
#include <QFormLayout>
#include <QLabel>
#include <QPushButton>
#include <QMimeDatabase>
FileExplorer::FileExplorer(QWidget *parent)
: QWidget(parent)
{
setupUI();
setupModel();
setupContextMenu();
}
FileExplorer::~FileExplorer()
{
}
void FileExplorer::setupUI()
{
QVBoxLayout *layout = new QVBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);
treeView = new QTreeView(this);
layout->addWidget(treeView);
}
void FileExplorer::setupModel()
{
model = new QFileSystemModel(this);
model->setFilter(QDir::NoDotAndDotDot | QDir::AllDirs | QDir::Files);
model->setRootPath("");
treeView->setModel(model);
// Naviguer vers la racine par défaut
goToRoot();
}
void FileExplorer::setupContextMenu()
{
treeView->setContextMenuPolicy(Qt::CustomContextMenu);
connect(treeView, &QTreeView::customContextMenuRequested,
this, &FileExplorer::showContextMenu);
}
QString FileExplorer::getRootPath() const
{
#if defined(Q_OS_WIN)
return "C:/";
#else
return "/";
#endif
}
void FileExplorer::navigateToPath(const QString &path)
{
QModelIndex index = model->index(path);
if (index.isValid()) {
treeView->setRootIndex(index);
}
}
void FileExplorer::refresh()
{
// Récupérer l'index actuel
QModelIndex currentIndex = treeView->rootIndex();
QString currentPath = model->filePath(currentIndex);
// Forcer le rechargement du modèle
model->setRootPath("");
model->setRootPath(currentPath);
// Restaurer la vue
treeView->setRootIndex(model->index(currentPath));
}
void FileExplorer::goToRoot()
{
navigateToPath(getRootPath());
}
void FileExplorer::showContextMenu(const QPoint &pos)
{
QModelIndex index = treeView->indexAt(pos);
if (!index.isValid())
return;
QString path = model->filePath(index);
QMenu menu;
QAction *openAction = menu.addAction("Ouvrir");
QAction *propertiesAction = menu.addAction("Propriétés");
menu.addSeparator();
QAction *deleteAction = menu.addAction("Supprimer");
QAction *selectedAction = menu.exec(treeView->viewport()->mapToGlobal(pos));
if (!selectedAction)
return;
// Débug pour voir quelle action est sélectionnée
qDebug() << "Action sélectionnée:" << selectedAction->text();
qDebug() << "openAction:" << openAction;
qDebug() << "propertiesAction:" << propertiesAction;
qDebug() << "deleteAction:" << deleteAction;
qDebug() << "selectedAction:" << selectedAction;
// Comparaison par texte au lieu de pointeur (plus sûr)
if (selectedAction->text() == "Ouvrir") {
openFile(path);
} else if (selectedAction->text() == "Propriétés") {
fileProperties(path);
} else if (selectedAction->text() == "Supprimer") {
deleteFile(path);
}
}
void FileExplorer::openFile(const QString &path)
{
qDebug() << "Ouvrir :" << path;
emit fileOpened(path);
// TODO: Implémenter l'ouverture réelle du fichier
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
}
void FileExplorer::fileProperties(const QString &path)
{
QFileInfo info(path);
if (!info.exists()) {
QMessageBox::warning(this, "Erreur", "Le fichier n'existe pas.");
return;
}
QDialog dialog(this);
dialog.setWindowTitle("Propriétés - " + info.fileName());
dialog.setFixedSize(500, 400);
QVBoxLayout *mainLayout = new QVBoxLayout(&dialog);
QFormLayout *form = new QFormLayout();
// Style pour les labels de valeurs (sélectionnables)
auto createValueLabel = [](const QString &text) {
QLabel *label = new QLabel(text);
label->setTextInteractionFlags(Qt::TextSelectableByMouse);
label->setWordWrap(true);
return label;
};
QMimeDatabase mimeDb;
QMimeType mime = mimeDb.mimeTypeForFile(info);
// Informations de base
form->addRow("<b>Nom :</b>", createValueLabel(info.fileName()));
form->addRow("<b>Chemin :</b>", createValueLabel(info.absoluteFilePath()));
form->addRow("<b>Type :</b>", createValueLabel(
info.isDir() ? "Dossier" : mime.comment().isEmpty() ? mime.name() : mime.comment()
));
// Taille formatée
QString sizeStr;
if (info.isDir()) {
sizeStr = "Dossier";
} else {
qint64 size = info.size();
if (size < 1024)
sizeStr = QString::number(size) + " octets";
else if (size < 1024 * 1024)
sizeStr = QString::number(size / 1024.0, 'f', 2) + " Ko";
else if (size < 1024 * 1024 * 1024)
sizeStr = QString::number(size / (1024.0 * 1024.0), 'f', 2) + " Mo";
else
sizeStr = QString::number(size / (1024.0 * 1024.0 * 1024.0), 'f', 2) + " Go";
}
form->addRow("<b>Taille :</b>", createValueLabel(sizeStr));
// Dates
form->addRow("<b>Créé le :</b>", createValueLabel(
info.birthTime().isValid()
? info.birthTime().toString("dd/MM/yyyy HH:mm:ss")
: "Non disponible"
));
form->addRow("<b>Modifié le :</b>", createValueLabel(
info.lastModified().toString("dd/MM/yyyy HH:mm:ss")
));
form->addRow("<b>Dernier accès :</b>", createValueLabel(
info.lastRead().toString("dd/MM/yyyy HH:mm:ss")
));
// Permissions détaillées
QFile::Permissions p = info.permissions();
QString perms;
// Propriétaire
perms += "Propriétaire : ";
perms += (p & QFile::ReadOwner) ? "r" : "-";
perms += (p & QFile::WriteOwner) ? "w" : "-";
perms += (p & QFile::ExeOwner) ? "x" : "-";
perms += "\n";
// Groupe
perms += "Groupe : ";
perms += (p & QFile::ReadGroup) ? "r" : "-";
perms += (p & QFile::WriteGroup) ? "w" : "-";
perms += (p & QFile::ExeGroup) ? "x" : "-";
perms += "\n";
// Autres
perms += "Autres : ";
perms += (p & QFile::ReadOther) ? "r" : "-";
perms += (p & QFile::WriteOther) ? "w" : "-";
perms += (p & QFile::ExeOther) ? "x" : "-";
form->addRow("<b>Permissions :</b>", createValueLabel(perms));
// Attributs supplémentaires
QStringList attributes;
if (info.isHidden()) attributes << "Caché";
if (info.isSymLink()) attributes << "Lien symbolique";
if (info.isReadable()) attributes << "Lecture";
if (info.isWritable()) attributes << "Écriture";
if (info.isExecutable()) attributes << "Exécutable";
if (!attributes.isEmpty()) {
form->addRow("<b>Attributs :</b>", createValueLabel(attributes.join(", ")));
}
mainLayout->addLayout(form);
mainLayout->addStretch();
// Boutons
QHBoxLayout *buttonLayout = new QHBoxLayout();
buttonLayout->addStretch();
QPushButton *closeBtn = new QPushButton("Fermer");
closeBtn->setDefault(true);
connect(closeBtn, &QPushButton::clicked, &dialog, &QDialog::accept);
buttonLayout->addWidget(closeBtn);
mainLayout->addLayout(buttonLayout);
dialog.exec();
}
void FileExplorer::deleteFile(const QString &path)
{
// Demander confirmation
const QMessageBox::StandardButton reply = QMessageBox::question(this, "Confirmation",
"Voulez-vous vraiment supprimer : " + path + " ?",
QMessageBox::Yes | QMessageBox::No);
if (reply != QMessageBox::Yes)
return;
// Supprimer le fichier ou dossier
QFileInfo fileInfo(path);
bool success = false;
if (fileInfo.isDir()) {
QDir dir(path);
success = dir.removeRecursively();
} else {
QFile file(path);
success = file.remove();
}
if (success) {
qDebug() << "Supprimé :" << path;
emit fileDeleted(path);
} else {
QMessageBox::warning(this, "Erreur",
"Impossible de supprimer : " + path);
}
}