00a512484
김태훈
세척 모드 화면 추가
|
1
2
|
#include "washwindow.h"
#include "ui_washwindow.h"
|
05f2a7552
김태훈
image 관리 구조 변경
|
3
|
#include <QSignalMapper>
|
271dda4ae
김태훈
엔코더 구현
|
4
|
#include <QKeyEvent>
|
05f2a7552
김태훈
image 관리 구조 변경
|
5
|
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
6
|
#include "soundplayer.h"
|
6d5da5fca
김태훈
청결/관리 상태 기능 반영
|
7
|
#include "dirtylevel.h"
|
e00c6a2a9
김태훈
기능 추가 구현
|
8
9
|
#include "configwindow.h"
#include "mainwindow.h"
|
569d7a56c
김태훈
기능 구현
|
10
|
#include "ovenstatics.h"
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
11
|
#include "cooldownpopup.h"
|
1342af7b3
김태훈
도움말 버튼 연결
|
12
|
#include "manualviewerdlg.h"
|
af27778be
김태훈
HACCP 구현
|
13
|
#include "haccp.h"
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
14
|
|
538041ab9
김태훈
소스 코드 구조 개선
|
15
|
WashWindow::WashWindow(QWidget *parent) :
|
00a512484
김태훈
세척 모드 화면 추가
|
16
|
QMainWindow(parent),
|
05f2a7552
김태훈
image 관리 구조 변경
|
17
|
ui(new Ui::WashWindow),
|
61ba89b34
김태훈
GUI V0.1.6
|
18
19
20
21
|
selected(false),
opened(false),
started(false),
run(false),
|
aa40dc807
김태훈
세척 모드 중 뒤로 가기 버튼을...
|
22
|
canceled(false),
|
61ba89b34
김태훈
GUI V0.1.6
|
23
|
type(0)
|
00a512484
김태훈
세척 모드 화면 추가
|
24
25
26
27
28
29
|
{
ui->setupUi(this);
ui->clockContainer->setParent(ui->upperStack);
ui->progressContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
|
05f2a7552
김태훈
image 관리 구조 변경
|
30
|
|
538041ab9
김태훈
소스 코드 구조 개선
|
31
|
udp = UdpHandler::getInstance();
|
05f2a7552
김태훈
image 관리 구조 변경
|
32
|
connect(udp, SIGNAL(changed()), SLOT(onChanged()));
|
05f2a7552
김태훈
image 관리 구조 변경
|
33
|
ui->animation->load(":/images/animation/wash_04.png");
|
61ba89b34
김태훈
GUI V0.1.6
|
34
|
ui->closeDoorArrow->hide();
|
05f2a7552
김태훈
image 관리 구조 변경
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
QSignalMapper *sm = new QSignalMapper(this);
connect(sm, SIGNAL(mapped(int)), SLOT(start(int)));
sm->setMapping(ui->washButton_1, 1);
sm->setMapping(ui->washButton_2, 2);
sm->setMapping(ui->washButton_3, 3);
sm->setMapping(ui->washButton_4, 4);
sm->setMapping(ui->washButton_5, 5);
connect(ui->washButton_1, SIGNAL(clicked()), sm, SLOT(map()));
connect(ui->washButton_2, SIGNAL(clicked()), sm, SLOT(map()));
connect(ui->washButton_3, SIGNAL(clicked()), sm, SLOT(map()));
connect(ui->washButton_4, SIGNAL(clicked()), sm, SLOT(map()));
connect(ui->washButton_5, SIGNAL(clicked()), sm, SLOT(map()));
|
61ba89b34
김태훈
GUI V0.1.6
|
50
51
52
|
returnToClockTimer.setSingleShot(true);
returnToClockTimer.setInterval(10 * 1000);
connect(&returnToClockTimer, SIGNAL(timeout()), SLOT(returnToClock()));
|
bbd7d8f29
김태훈
버튼 음향 추가
|
53
54
55
|
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
6d5da5fca
김태훈
청결/관리 상태 기능 반영
|
56
57
|
updateGauge();
|
271dda4ae
김태훈
엔코더 구현
|
58
59
|
setFocus();
|
569d7a56c
김태훈
기능 구현
|
60
|
|
308c613b8
김태훈
세척 중 오류 시 세척 중단 절...
|
61
|
OvenStatistics *os = OvenStatistics::getInstance();
|
847a14c2c
김태훈
세척 이어하기 기능 비활성화
|
62
|
#if ENABLE_WASH_RESUMING
|
308c613b8
김태훈
세척 중 오류 시 세척 중단 절...
|
63
|
if (os->loadWashState())
|
569d7a56c
김태훈
기능 구현
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{
// Start Cleaning Steam Generator
state = RequestClean;
udp->set(TG_OVEN_MODE, 2);
udp->set(TG_CLEAN_TYPE, 6);
udp->turnOn(TG_CLEANING);
ui->animation->clear();
ui->animation->load(":/images/animation/wash_01.png");
ui->animation->load(":/images/animation/wash_02.png");
ui->animation->load(":/images/animation/wash_03.png");
ui->animation->load(":/images/animation/wash_04.png");
|
5f1ffa79c
김태훈
세척 모드 문제 수정
|
78
79
|
ui->animation->show();
ui->animation->start(300);
|
569d7a56c
김태훈
기능 구현
|
80
|
ui->washStepGauge->setValue(0);
|
59f57044e
김태훈
세척 모드 문구 변경 요청 반영
|
81
82
83
|
ui->titleLabel->setText(tr("제품 스팀통을 세척 중입니다"));
ui->descLabel->setText(tr("완료될 때까지 문을 열지 마세요
제품의 스팀통 자동 세척 기능을 실행 중입니다"));
|
569d7a56c
김태훈
기능 구현
|
84
85
86
87
88
|
ui->washStepTypeLabel->setText("");
ui->washStepCountLabel->setText("");
ui->upperStack->setCurrentIndex(1);
}
|
847a14c2c
김태훈
세척 이어하기 기능 비활성화
|
89
|
#endif
|
308c613b8
김태훈
세척 중 오류 시 세척 중단 절...
|
90
91
|
connect(os, SIGNAL(stopClean()), SLOT(stop()));
|
00a512484
김태훈
세척 모드 화면 추가
|
92
93
94
95
|
}
WashWindow::~WashWindow()
{
|
5f1ffa79c
김태훈
세척 모드 문제 수정
|
96
|
udp->turnOff(TG_CLEANING);
|
00a512484
김태훈
세척 모드 화면 추가
|
97
98
|
delete ui;
}
|
05f2a7552
김태훈
image 관리 구조 변경
|
99
|
|
271dda4ae
김태훈
엔코더 구현
|
100
101
102
103
|
void WashWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
104
|
case 0x01000032: // Turn left
|
271dda4ae
김태훈
엔코더 구현
|
105
106
107
108
109
|
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
110
|
case 0x01000030: // Turn right
|
271dda4ae
김태훈
엔코더 구현
|
111
112
113
114
115
116
117
118
119
|
onEncoderRight();
break;
}
}
void WashWindow::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
120
|
case 0x01000032: // Turn left
|
271dda4ae
김태훈
엔코더 구현
|
121
122
123
124
125
126
127
128
|
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
129
|
case 0x01000030: // Turn right
|
271dda4ae
김태훈
엔코더 구현
|
130
131
132
133
|
onEncoderRight();
break;
}
}
|
05f2a7552
김태훈
image 관리 구조 변경
|
134
135
|
void WashWindow::start(int type)
{
|
569d7a56c
김태훈
기능 구현
|
136
|
if (state != Idle)
|
05f2a7552
김태훈
image 관리 구조 변경
|
137
138
139
140
|
return;
if (type < 1 || type > 5)
return;
|
61ba89b34
김태훈
GUI V0.1.6
|
141
|
this->type = type;
|
d0f99720f
김태훈
온도 기준 변경
|
142
|
if (udp->getData().sensor1 > 60)
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
143
144
|
{
state = CoolDown;
|
2897570cb
김태훈
쿨다운 종료 후 눌러놨던 버튼으...
|
145
|
lastFocus = focusWidget();
|
05f2a7552
김태훈
image 관리 구조 변경
|
146
|
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
147
148
149
150
151
152
153
154
155
|
CooldownPopup *p = new CooldownPopup(this, 60);
p->setWindowModality(Qt::WindowModal);
p->showFullScreen();
connect(p, SIGNAL(destroyed(QObject*)), SLOT(resume()));
}
else
{
state = OpenDoor;
|
61ba89b34
김태훈
GUI V0.1.6
|
156
|
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
157
|
returnToClockTimer.stop();
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
158
|
showOpenDoor();
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
159
160
161
162
163
|
}
}
void WashWindow::resume()
{
|
2897570cb
김태훈
쿨다운 종료 후 눌러놨던 버튼으...
|
164
165
166
167
168
|
if (lastFocus)
{
lastFocus->setFocus();
lastFocus = NULL;
}
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
169
170
171
172
173
174
175
176
177
178
|
if (udp->getData().door_state)
{
state = CloseDoor;
showCloseDoor();
}
else
{
state = Request;
request();
}
|
05f2a7552
김태훈
image 관리 구조 변경
|
179
180
181
182
|
}
void WashWindow::stop()
{
|
569d7a56c
김태훈
기능 구현
|
183
|
if (state != Request && state != Running)
|
aa40dc807
김태훈
세척 모드 중 뒤로 가기 버튼을...
|
184
|
return;
|
569d7a56c
김태훈
기능 구현
|
185
|
state = Stopping;
|
aa40dc807
김태훈
세척 모드 중 뒤로 가기 버튼을...
|
186
|
|
05f2a7552
김태훈
image 관리 구조 변경
|
187
188
|
udp->turnOff(TG_CLEANING);
}
|
61ba89b34
김태훈
GUI V0.1.6
|
189
190
191
192
|
void WashWindow::returnToClock()
{
ui->upperStack->setCurrentIndex(0);
}
|
6d5da5fca
김태훈
청결/관리 상태 기능 반영
|
193
194
195
196
197
|
void WashWindow::updateGauge()
{
ui->dirtySlider->setValue(DirtyLevel::dirty());
ui->stateSlider->setValue(DirtyLevel::state());
}
|
569d7a56c
김태훈
기능 구현
|
198
199
200
201
202
203
204
205
|
void WashWindow::updateView()
{
const oven_control_t &control = udp->getControl();
if (control.clean_total != 0 && control.clean_step != 0 && control.clean_step_type != 0)
{
ui->washStepGauge->setMaximum(control.clean_total);
ui->washStepGauge->setValue(control.clean_step);
ui->washStepCountLabel->setText(QString().sprintf("%d/%d", control.clean_step, control.clean_total));
|
8049fb1c6
김태훈
PSSCO 모델 추가 및 PSS...
|
206
|
#if MODEL_GRADE != 2
|
569d7a56c
김태훈
기능 구현
|
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
switch (control.clean_step_type)
{
case 1:
ui->washStepTypeLabel->setText(tr("내부 헹굼 진행 중입니다."));
break;
case 2:
ui->washStepTypeLabel->setText(tr("스팀 급수 진행 중입니다."));
break;
case 3:
ui->washStepTypeLabel->setText(tr("내부 팬 세척 진행 중입니다."));
break;
case 4:
ui->washStepTypeLabel->setText(tr("내부 스팀 불림 진행 중입니다."));
break;
case 5:
ui->washStepTypeLabel->setText(tr("내부 강 세척 진행 중입니다."));
break;
case 6:
ui->washStepTypeLabel->setText(tr("내부 상부 세척 진행 중입니다."));
break;
case 7:
ui->washStepTypeLabel->setText(tr("내부 스팀 세척 진행 중입니다."));
break;
case 8:
ui->washStepTypeLabel->setText(tr("세척 종료 진행 중입니다."));
break;
case 9:
ui->washStepTypeLabel->setText(tr("세제 세척수 만들기 진행 중입니다."));
break;
case 10:
ui->washStepTypeLabel->setText(tr("세제 세척수 헹굼 진행 중입니다."));
break;
case 11:
ui->washStepTypeLabel->setText(tr("하부 탱크 세척수 만들기 진행 중입니다."));
break;
}
|
8049fb1c6
김태훈
PSSCO 모델 추가 및 PSS...
|
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
#else
switch (control.clean_step_type)
{
case 1:
ui->washStepTypeLabel->setText(tr("내부 헹굼 진행 중입니다."));
break;
case 2:
ui->washStepTypeLabel->setText(tr("내부 팬 세척 진행 중입니다."));
break;
case 3:
ui->washStepTypeLabel->setText(tr("내부 스팀 불림 진행 중입니다."));
break;
case 4:
ui->washStepTypeLabel->setText(tr("내부 강 세척 진행 중입니다."));
break;
case 5:
ui->washStepTypeLabel->setText(tr("내부 상부 세척 진행 중입니다."));
break;
case 6:
ui->washStepTypeLabel->setText(tr("세제 세척 헹굼 중입니다."));
break;
case 7:
ui->washStepTypeLabel->setText(tr("세척 헹굼수 만드는 중입니다."));
break;
case 8:
ui->washStepTypeLabel->setText(tr("세척 건조 진행 중입니다."));
break;
case 9:
ui->washStepTypeLabel->setText(tr("세제 투입 진행 중입니다."));
break;
case 10:
ui->washStepTypeLabel->setText(tr("세척 진행 중입니다."));
break;
case 11:
ui->washStepTypeLabel->setText(tr("세척 진행 중입니다."));
break;
}
#endif
|
569d7a56c
김태훈
기능 구현
|
281
|
}
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
|
switch (state)
{
case Idle:
case CoolDown:
showIdle();
break;
case OpenDoor:
if (udp->getData().door_state == 0)
showOpenDoor();
break;
case CloseDoor:
case Request:
case Running:
case Stopping:
case RequestClean:
case RunningClean:
if (udp->getData().door_state != 0)
showCloseDoor();
else
showWash();
break;
}
}
void WashWindow::showIdle()
{
if (animationState == Stopped)
return;
animationState = Stopped;
ui->animation->stop();
ui->animation->clear();
ui->animation->load(":/images/animation/wash_04.png");
}
void WashWindow::showOpenDoor()
{
if (animationState == ShowingOpenDoor)
return;
animationState = ShowingOpenDoor;
ui->animation->clear();
ui->animation->load(":/images/animation/pull_01.png");
ui->animation->load(":/images/animation/pull_02.png");
ui->animation->load(":/images/animation/pull_03.png");
ui->animation->load(":/images/animation/pull_04.png");
ui->animation->show();
ui->animation->start(300);
ui->closeDoorArrow->hide();
|
569d7a56c
김태훈
기능 구현
|
334
|
}
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
335
336
|
void WashWindow::showCloseDoor()
{
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
337
338
339
340
|
if (animationState == ShowingCloseDoor)
return;
animationState = ShowingCloseDoor;
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
341
342
343
344
345
346
347
348
349
350
|
ui->animation->clear();
ui->animation->load(":/images/animation/door_big_09.png");
ui->animation->load(":/images/animation/door_big_08.png");
ui->animation->load(":/images/animation/door_big_07.png");
ui->animation->load(":/images/animation/door_big_06.png");
ui->animation->load(":/images/animation/door_big_05.png");
ui->animation->load(":/images/animation/door_big_04.png");
ui->animation->load(":/images/animation/door_big_03.png");
ui->animation->load(":/images/animation/door_big_02.png");
ui->animation->load(":/images/animation/door_big_01.png");
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
351
|
ui->animation->show();
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
352
353
354
|
ui->animation->start(300);
ui->closeDoorArrow->show();
}
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
355
|
void WashWindow::showWash()
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
356
|
{
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
357
358
|
if (animationState == ShowingWash)
return;
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
359
|
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
360
|
animationState = ShowingWash;
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
361
|
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
362
363
364
365
366
|
ui->animation->clear();
ui->animation->load(":/images/animation/wash_01.png");
ui->animation->load(":/images/animation/wash_02.png");
ui->animation->load(":/images/animation/wash_03.png");
ui->animation->load(":/images/animation/wash_04.png");
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
367
|
ui->animation->show();
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
368
|
ui->animation->start(300);
|
c36fa2b96
김태훈
세척 시작 명령 순서 변경, 세...
|
369
370
371
372
373
374
375
376
377
378
379
380
381
382
|
ui->closeDoorArrow->hide();
}
void WashWindow::request()
{
udp->set(TG_OVEN_MODE, 2);
udp->set(TG_CLEAN_TYPE, type);
udp->turnOn(TG_CLEANING);
OvenStatistics::getInstance()->setWashState(true);
SoundPlayer::playStart();
showWash();
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
383
384
385
386
387
388
389
390
391
392
|
ui->washStepGauge->setValue(0);
ui->titleLabel->setText(tr("기기의 내부를 세척 중입니다"));
ui->descLabel->setText(tr("완료될 때까지 문을 열지 마세요.
제품 내부의 자동 세척 기능을 실행 중입니다."));
ui->washStepTypeLabel->setText("");
ui->washStepCountLabel->setText("");
ui->upperStack->setCurrentIndex(1);
}
|
05f2a7552
김태훈
image 관리 구조 변경
|
393
394
|
void WashWindow::onChanged()
{
|
569d7a56c
김태훈
기능 구현
|
395
|
if (state == Idle)
|
05f2a7552
김태훈
image 관리 구조 변경
|
396
|
return;
|
569d7a56c
김태훈
기능 구현
|
397
|
switch (state)
|
61ba89b34
김태훈
GUI V0.1.6
|
398
|
{
|
569d7a56c
김태훈
기능 구현
|
399
|
case Idle:
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
400
|
case CoolDown:
|
569d7a56c
김태훈
기능 구현
|
401
402
403
|
return;
case OpenDoor:
if (udp->getData().door_state)
|
61ba89b34
김태훈
GUI V0.1.6
|
404
|
{
|
569d7a56c
김태훈
기능 구현
|
405
|
state = CloseDoor;
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
406
|
showCloseDoor();
|
61ba89b34
김태훈
GUI V0.1.6
|
407
|
}
|
569d7a56c
김태훈
기능 구현
|
408
409
410
|
break;
case CloseDoor:
if (!udp->getData().door_state)
|
61ba89b34
김태훈
GUI V0.1.6
|
411
|
{
|
569d7a56c
김태훈
기능 구현
|
412
|
state = Request;
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
413
|
request();
|
569d7a56c
김태훈
기능 구현
|
414
415
416
417
418
419
|
}
break;
case Request:
if (udp->getData().cleaning_sate)
{
state = Running;
|
61ba89b34
김태훈
GUI V0.1.6
|
420
|
|
af27778be
김태훈
HACCP 구현
|
421
|
HACCP::washStart(type);
|
569d7a56c
김태훈
기능 구현
|
422
423
424
425
426
427
428
|
updateView();
}
else
updateView();
break;
case Running:
if (udp->getData().cleaning_sate)
|
61ba89b34
김태훈
GUI V0.1.6
|
429
|
{
|
569d7a56c
김태훈
기능 구현
|
430
|
updateView();
|
61ba89b34
김태훈
GUI V0.1.6
|
431
|
}
|
569d7a56c
김태훈
기능 구현
|
432
433
434
|
else
{
state = Idle;
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
435
|
|
af27778be
김태훈
HACCP 구현
|
436
|
HACCP::done();
|
569d7a56c
김태훈
기능 구현
|
437
438
439
|
SoundPlayer::playStop();
DirtyLevel::wash(type);
OvenStatistics::getInstance()->setWashState(false);
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
440
|
|
569d7a56c
김태훈
기능 구현
|
441
442
443
444
|
ui->titleLabel->setText(tr("세척이 종료되었습니다"));
ui->descLabel->setText("");
ui->washStepTypeLabel->setText("");
ui->washStepCountLabel->setText("");
|
61ba89b34
김태훈
GUI V0.1.6
|
445
|
|
569d7a56c
김태훈
기능 구현
|
446
447
448
|
ui->animation->stop();
ui->animation->clear();
ui->animation->load(":/images/animation/wash_04.png");
|
61ba89b34
김태훈
GUI V0.1.6
|
449
|
|
569d7a56c
김태훈
기능 구현
|
450
|
returnToClockTimer.start();
|
61ba89b34
김태훈
GUI V0.1.6
|
451
|
|
569d7a56c
김태훈
기능 구현
|
452
453
454
455
456
457
|
updateGauge();
}
break;
case Stopping:
if (!udp->getData().cleaning_sate)
{
|
af27778be
김태훈
HACCP 구현
|
458
|
HACCP::done();
|
569d7a56c
김태훈
기능 구현
|
459
460
|
SoundPlayer::playStop();
OvenStatistics::getInstance()->setWashState(false);
|
6d5da5fca
김태훈
청결/관리 상태 기능 반영
|
461
|
|
569d7a56c
김태훈
기능 구현
|
462
463
464
465
466
467
468
469
470
|
close();
}
else
updateView();
break;
case RequestClean:
if (udp->getData().cleaning_sate)
{
state = RunningClean;
|
af27778be
김태훈
HACCP 구현
|
471
|
HACCP::washStart(6);
|
569d7a56c
김태훈
기능 구현
|
472
473
474
475
476
477
478
479
480
481
482
483
|
updateView();
}
else
updateView();
break;
case RunningClean:
if (udp->getData().cleaning_sate)
{
updateView();
}
else
{
|
5f1ffa79c
김태훈
세척 모드 문제 수정
|
484
|
state = Idle;
|
af27778be
김태훈
HACCP 구현
|
485
486
|
HACCP::done();
|
5f1ffa79c
김태훈
세척 모드 문제 수정
|
487
|
SoundPlayer::playStop();
|
569d7a56c
김태훈
기능 구현
|
488
489
490
491
492
493
494
495
496
497
498
499
500
|
OvenStatistics::getInstance()->setWashState(false);
ui->titleLabel->setText(tr("세척이 종료되었습니다"));
ui->descLabel->setText("");
ui->washStepTypeLabel->setText("");
ui->washStepCountLabel->setText("");
ui->animation->stop();
ui->animation->clear();
ui->animation->load(":/images/animation/wash_04.png");
returnToClockTimer.start();
}
|
61ba89b34
김태훈
GUI V0.1.6
|
501
|
}
|
05f2a7552
김태훈
image 관리 구조 변경
|
502
503
504
505
|
}
void WashWindow::on_backButton_clicked()
{
|
569d7a56c
김태훈
기능 구현
|
506
507
508
509
510
|
switch (state)
{
case Idle:
case OpenDoor:
case CloseDoor:
|
aa40dc807
김태훈
세척 모드 중 뒤로 가기 버튼을...
|
511
|
close();
|
569d7a56c
김태훈
기능 구현
|
512
513
514
515
516
|
break;
case Request:
case Running:
stop();
break;
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
517
|
case CoolDown:
|
569d7a56c
김태훈
기능 구현
|
518
519
520
521
522
|
case Stopping:
case RequestClean:
case RunningClean:
return;
}
|
05f2a7552
김태훈
image 관리 구조 변경
|
523
|
}
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
524
525
526
|
void WashWindow::on_configButton_clicked()
{
|
569d7a56c
김태훈
기능 구현
|
527
528
529
530
531
|
switch (state)
{
case Idle:
case OpenDoor:
case CloseDoor:
|
e00c6a2a9
김태훈
기능 추가 구현
|
532
533
534
535
536
|
{
ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
537
|
|
e00c6a2a9
김태훈
기능 추가 구현
|
538
|
MainWindow::jump(w);
|
569d7a56c
김태훈
기능 구현
|
539
540
541
542
543
544
|
break;
}
case Request:
case Running:
stop();
break;
|
8d6b74605
김태훈
세척 시작 전 온도 검사 후 쿨다운
|
545
|
case CoolDown:
|
569d7a56c
김태훈
기능 구현
|
546
547
548
549
|
case Stopping:
case RequestClean:
case RunningClean:
return;
|
e00c6a2a9
김태훈
기능 추가 구현
|
550
|
}
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
551
552
553
554
|
}
void WashWindow::on_helpButton_clicked()
{
|
1342af7b3
김태훈
도움말 버튼 연결
|
555
556
557
|
ManualViewerDlg* dlg = new ManualViewerDlg(this);
dlg->showFullScreen();
dlg->raise();
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
558
|
}
|
271dda4ae
김태훈
엔코더 구현
|
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
|
void WashWindow::onEncoderLeft()
{
focusPreviousChild();
}
void WashWindow::onEncoderRight()
{
focusNextChild();
}
void WashWindow::onEncoderClicked(QWidget *clicked)
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
}
|