-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleSync.h
More file actions
46 lines (33 loc) · 839 Bytes
/
SimpleSync.h
File metadata and controls
46 lines (33 loc) · 839 Bytes
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
#ifndef SimpleSync_H
#define SimpleSync_H
#include <QMainWindow>
#include <QProcess>
#include <QFileDialog>
#include <QMessageBox>
#include <QDebug>
#include <QTextCursor>
namespace Ui {
class SimpleSync;
}
class SimpleSync : public QMainWindow
{
Q_OBJECT
public:
explicit SimpleSync(QWidget *parent = nullptr);
~SimpleSync();
QString logCommand;
QString logFilePath;
bool isRemoteSync_On = false;
QString command;
void printC (QString command);
private slots:
void on_selectOriginFolder_btn_clicked();
void on_selectSyncFolder_btn_clicked();
void on_synchronize_btn_clicked();
void on_logFile_checkBox_stateChanged(int arg1);
void on_remoteSync_checkBox_stateChanged(int arg1);
void on_pushButton_2_clicked();
private:
Ui::SimpleSync *ui;
};
#endif // SimpleSync_H