whyclwt
2022-05-18 ab72c6e114d7c4e83564194367ba623ca23bf09d
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
#ifndef CONFIG_PAGE_H
#define CONFIG_PAGE_H
 
#include <QDialog>
#include "CustomClass/custom_dialog.h"
#include "WorkThread/work_thread.h"
#include "Common/app_define.h"
#include "custom_lineedit.h"
#include "CustomClass/mymessagebox.h"
 
 
namespace Ui {
class Config_Page;
}
 
class Config_Page : public custom_dialog
{
    Q_OBJECT
    
public:
    explicit Config_Page(QWidget *parent = 0,Work_Thread *thread = 0);
    ~Config_Page();
 
    void showConfigPage(void);
    
private:
    Ui::Config_Page *ui;
 
    Work_Thread *work_thread;
 
    bool packParamEdit;
    bool volDropEdit;
 
    //QTimer *timer_500ms;
 
    PACK_PARAM packParam;
    VOL_DROP_PARAM volDropParam;
 
    void closeConfigPage(void);
 
    void updatePackParam(void);
 
private slots:
    void BtnReleased();
    void leditAction(void);
    //void timerSlot();
 
 
};
 
#endif // CONFIG_PAGE_H