fileprocessdlg.h
1.28 KB
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
#ifndef FILEPROCESSDLG_H
#define FILEPROCESSDLG_H
#include <QDialog>
#include "config.h"
#include "servicedata.h"
using namespace Define;
namespace Ui {
class FileProcessDlg;
}
class FileProcessDlg : public QDialog
{
Q_OBJECT
const uint8_t m_arrErrorMaxIdx[4] = {3,4,3,11};
const char m_strInfoName[4][64] = {"Top Ignition Box\0",
"Steam Ignition Box\0","Bottom Ignition Box\0","Service Total\0"};
const uint16_t m_arrErrorIdxs[3][20] = { //서비스 에러 기록 종합은 합산
{ERROR_IDX_upper_fire_fail,ERROR_IDX_upper_pan_fail,ERROR_IDX_upper_motor_fail},
{ERROR_IDX_steam_fire_fail,ERROR_IDX_steam_pan_fail,ERROR_IDX_water_level_sensor_fail,ERROR_IDX_steam_gen_temp_high_alram},
{ERROR_IDX_lower_fire_fail,ERROR_IDX_lower_pan_fail,ERROR_IDX_lower_motor_fail}
};
public:
explicit FileProcessDlg(QWidget *parent = 0, ConfigType type = config_invalid, bool isDown = true);
~FileProcessDlg();
private slots:
void on_ctrBtnCancel_clicked();
void infodataDownload();
void servicedataDownload();
void programDownload();
void programUpload();
void configDownload();
void configUpload();
private:
Ui::FileProcessDlg *ui;
ConfigType m_nCfgtype;
};
#endif // FILEPROCESSDLG_H