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
| #ifndef RENAME_PAGE_H
| #define RENAME_PAGE_H
|
| #include <QDialog>
| #include "Common/custom.h"
| #include "Common/filemanage.h"
| #include "Common/work_thread.h"
|
| namespace Ui {
| class ReName_Page;
| }
|
| class ReName_Page : public customDialog
| {
| Q_OBJECT
|
| public:
| explicit ReName_Page(QWidget *parent = 0,QString name = 0,
| Work_Thread *thread = 0);
| ~ReName_Page();
|
| private:
| Ui::ReName_Page *ui;
| Work_Thread *work_thread;
| FileManage fileManage;
|
| QString oldName;
| QString newName;
|
| void rename_action();
|
| private slots:
| void CustomEditSlot();
| void RenameBtnSlot();
| };
|
| #endif // RENAME_PAGE_H
|
|