-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathventoy2disk.h
More file actions
57 lines (32 loc) · 805 Bytes
/
ventoy2disk.h
File metadata and controls
57 lines (32 loc) · 805 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
47
48
49
50
51
52
53
54
55
56
57
#ifndef VENTOY2DISK_H
#define VENTOY2DISK_H
#include <QMainWindow>
//日志文件名称
#define LOG_FILE "./logger.txt"
namespace Ui {
class Ventoy2Disk;
}
class Ventoy2Disk : public QMainWindow
{
Q_OBJECT
public:
explicit Ventoy2Disk(QWidget *parent = nullptr);
~Ventoy2Disk();
QString shell(QString shell);
private slots:
void on_pushButton_ref_clicked();
void on_pushButton_install_clicked();
void on_pushButton_reinstrll_clicked();
void on_pushButton_update_clicked();
void on_pushButton_fdisk_clicked();
void init(QString);
signals:
void quit(); //退出信号
private:
Ui::Ventoy2Disk *ui;
void install(QString type);
void mySystem();
void log(QString message);
QString pass;
};
#endif // VENTOY2DISK_H