6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
1
2
3
|
#include "realtimepartswindow.h"
#include "ui_realtimepartswindow.h"
#include "ovenstatics.h"
|
14a73498f
김태훈
소스 코드 정리
|
4
|
RealtimePartsWindow::RealtimePartsWindow(QWidget *parent) :
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
5
|
QMainWindow(parent),
|
14a73498f
김태훈
소스 코드 정리
|
6
|
ui(new Ui::RealtimePartsWindow)
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
7
8
|
{
ui->setupUi(this);
|
eea7d3d59
김태훈
Segmentation Faul...
|
9
10
|
ui->clockContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
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
|
// for(i=0;i<CONTROL_LIST_COL_MAX;i++){
// for(j=0;i<CONTROL_LIST_ITEM_MAX;j++){
// m_arrLbState[i][j]=NULL;
// }
// }
m_arrLbState[0][0] = ui->m_ctrlLbListState_1_1;
m_arrLbState[0][1] = ui->m_ctrlLbListState_1_2;
m_arrLbState[0][2] = ui->m_ctrlLbListState_1_3;
m_arrLbState[0][3] = ui->m_ctrlLbListState_1_4;
m_arrLbState[0][4] = ui->m_ctrlLbListState_1_5;
m_arrLbState[0][5] = ui->m_ctrlLbListState_1_6;
m_arrLbState[0][6] = ui->m_ctrlLbListState_1_7;
m_arrLbState[0][7] = ui->m_ctrlLbListState_1_8;
m_arrLbState[1][0] = ui->m_ctrlLbListState_2_1;
m_arrLbState[1][1] = ui->m_ctrlLbListState_2_2;
m_arrLbState[1][2] = ui->m_ctrlLbListState_2_3;
m_arrLbState[1][3] = ui->m_ctrlLbListState_2_4;
m_arrLbState[1][4] = ui->m_ctrlLbListState_2_5;
m_arrLbState[1][5] = ui->m_ctrlLbListState_2_6;
m_arrLbState[1][6] = ui->m_ctrlLbListState_2_7;
m_arrLbState[1][7] = ui->m_ctrlLbListState_2_8;
m_arrLbState[2][0] = ui->m_ctrlLbListState_3_1;
m_arrLbState[2][1] = ui->m_ctrlLbListState_3_2;
m_arrLbState[2][2] = ui->m_ctrlLbListState_3_3;
m_arrLbState[2][3] = ui->m_ctrlLbListState_3_4;
m_arrLbState[2][4] = ui->m_ctrlLbListState_3_5;
m_arrLbState[2][5] = ui->m_ctrlLbListState_3_6;
m_arrLbState[2][6] = ui->m_ctrlLbListState_3_7;
m_arrLbState[2][7] = ui->m_ctrlLbListState_3_8;
reloadUi();
|
3f5f5d4ce
고영탁
디버깅 요청 사항 적용
|
46
47
48
|
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()),this,SLOT(oneSecTimerFired()));
timer->start(1000); //1000ms fired
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
49
|
}
|
3f5f5d4ce
고영탁
디버깅 요청 사항 적용
|
50
|
|
14a73498f
김태훈
소스 코드 정리
|
51
|
RealtimePartsWindow::~RealtimePartsWindow()
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
52
|
{
|
3f5f5d4ce
고영탁
디버깅 요청 사항 적용
|
53
54
|
timer->stop();
delete timer;
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
55
56
|
delete ui;
}
|
14a73498f
김태훈
소스 코드 정리
|
57
|
void RealtimePartsWindow::on_backButton_clicked()
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
58
|
{
|
eea7d3d59
김태훈
Segmentation Faul...
|
59
|
close();
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
60
|
}
|
14a73498f
김태훈
소스 코드 정리
|
61
|
void RealtimePartsWindow::reloadUi(void){
|
42410a75c
김태훈
오타 수정
|
62
|
OvenStatistics* ovs = OvenStatistics::getInstance();
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
QString strTemp = "";
int i = 0,j=0;
realtime_data realdata;
if(ovs != NULL){
realdata = ovs->getPartsRealtimeData();
}
if(realdata.b.ssv_open) ui->m_ctrlLbListState_1_1->setText(tr("ON"));
else ui->m_ctrlLbListState_1_1->setText(tr("OFF"));
if(realdata.b.qnv_open) ui->m_ctrlLbListState_1_2->setText(tr("ON"));
else ui->m_ctrlLbListState_1_2->setText(tr("OFF"));
if(realdata.b.snv_open) ui->m_ctrlLbListState_1_3->setText(tr("ON"));
else ui->m_ctrlLbListState_1_3->setText(tr("OFF"));
|
3f5f5d4ce
고영탁
디버깅 요청 사항 적용
|
78
79
80
81
82
83
84
85
86
|
//strTemp.sprintf("%d",realdata.b.water_level);
//ui->m_ctrlLbListState_1_4->setText(strTemp);
if(realdata.b.water_level == water_level_high){
ui->m_ctrlLbListState_1_4->setText(tr("HIGH"));
}
else if(realdata.b.water_level == water_level_low){
ui->m_ctrlLbListState_1_4->setText(tr("LOW"));
}
else ui->m_ctrlLbListState_1_4->setText(tr("NORMAL"));
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
87
88
89
90
91
92
|
if(realdata.b.sgnv_open) ui->m_ctrlLbListState_1_5->setText(tr("ON"));
else ui->m_ctrlLbListState_1_5->setText(tr("OFF"));
if(realdata.b.dv_open) ui->m_ctrlLbListState_1_6->setText(tr("ON"));
else ui->m_ctrlLbListState_1_6->setText(tr("OFF"));
|
f8661a150
고영탁
엔지니어 모드 디버깅
|
93
|
if(realdata.b.wsv_open) ui->m_ctrlLbListState_1_7->setText(tr("ON"));
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
94
95
96
97
|
else ui->m_ctrlLbListState_1_7->setText(tr("OFF"));
if(realdata.b.door_open) ui->m_ctrlLbListState_1_8->setText(tr("ON"));
else ui->m_ctrlLbListState_1_8->setText(tr("OFF"));
|
3f5f5d4ce
고영탁
디버깅 요청 사항 적용
|
98
|
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
99
100
101
102
103
104
105
|
for(i=1;i<CONTROL_LIST_COL_MAX;i++){
for(j=0;j<CONTROL_LIST_ITEM_MAX;j++){
m_arrLbState[i][j]->setText("-");
}
}
}
|
3f5f5d4ce
고영탁
디버깅 요청 사항 적용
|
106
107
108
109
|
void RealtimePartsWindow::oneSecTimerFired(void){
reloadUi();
}
|