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
| #ifndef WELCOME_PAGE_H
| #define WELCOME_PAGE_H
|
| #include "Common/custom.h"
| #include "Common/work_thread.h"
|
| namespace Ui {
| class Welcome_Page;
| }
|
| class Welcome_Page : public customDialog
| {
| Q_OBJECT
|
| public:
| explicit Welcome_Page(QWidget *parent = 0,Work_Thread *thread = 0);
| ~Welcome_Page();
|
| private:
| Ui::Welcome_Page *ui;
| WELCOME_LOGO LOGO;
| Work_Thread *work_thread;
| void initPage();
|
| private slots:
| void BtnReleased();
| void ledit_action();
| };
|
| #endif // WELCOME_PAGE_H
|
|