configinfodlg.h
674 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
#ifndef CONFIGINFODLG_H
#define CONFIGINFODLG_H
#include <QDialog>
#include <QKeyEvent>
#include "config.h"
using namespace Define;
namespace Ui {
class ConfigInfoDlg;
}
class ConfigInfoDlg : public QDialog
{
Q_OBJECT
void loadHotlineChefInfo();
void loadHotlineServiceInfo();
void loadSoftwareInfo();
public:
explicit ConfigInfoDlg(QWidget *parent = 0,ConfigType type=config_invalid );
~ConfigInfoDlg();
private slots:
void on_ctrBtnOk_clicked();
protected:
void keyReleaseEvent(QKeyEvent* event);
void keyPressEvent(QKeyEvent* event);
private:
Ui::ConfigInfoDlg *ui;
ConfigType m_nType;
};
#endif // CONFIGINFODLG_H