This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
102 lines (71 loc) · 2.13 KB
/
mainwindow.h
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QDesktopWidget>
#include <QFileDialog>
#include <QDirIterator>
#include <QDateTime>
#include <QSql>
#include <QSqlQuery>
#include <QSqlError>
#include <QMessageBox>
#include "threadcopie.h"
#include "threaddiriterator.h"
typedef enum{
AUCUN,
CONTRIBUTION,
SYNCRONISATION,
ECHO
}Mode;
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void changerMode(Mode val);
void changerMode(bool etat);
void analyserContribution();
void analyserSyncronisation();
void analyserEcho();
void resetListes();
private slots:
void on_pushButton_Source_clicked();
void on_pushButton_Destination_clicked();
void on_progressBar_valueChanged(int value);
void on_pushButton_Lancer_clicked();
void on_finCopieSource();
void on_finCopieDestination();
void on_finFichiersSource(QStringList liste);
void on_finDossiersSource(QStringList liste);
void on_finFichiersDestination(QStringList liste);
void on_finDossiersDestination(QStringList liste);
void on_finRecherche();
void on_pushButton_nouveauProfil_clicked();
void on_verifChamps();
void on_pushButton_supprimerProfil_clicked();
void on_listWidget_profils_currentTextChanged(const QString ¤tText);
void on_pushButton_annulerProfil_clicked();
void on_lineEdit_nomProfil_textChanged(const QString &arg1);
void analyser();
private:
Ui::MainWindow *ui;
QSqlDatabase db;
ThreadCopie *copie;
ThreadDirIterator *recherche[4];
Mode mode;
//Dossiers de base
QString source,destination;
//Outils de liste
QStringList filtre;
//Listes générées
QStringList fichiersSource,fichiersDestination,dossiersSource,dossiersDestination;
//Listes des transferts
QStringList fichiersVersDestination,dossiersVersDestination,fichiersVersSource,dossiersVersSource;
//Listes des suppressions
QStringList fichiersSupprDestination,dossiersSupprDestination;
};
#endif // MAINWINDOW_H