Blame view

app/gui/oven_control/manualcookwindow.cpp 21.3 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
5
6
  #include "manualcookwindow.h"
  #include "ui_manualcookwindow.h"
  
  #include <QSignalMapper>
  #include <QTimer>
  #include <QtDebug>
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
7
  #include "soundplayer.h"
05f2a7552   김태훈   image 관리 구조 변경
8
  #include "preheatpopup.h"
cfc2fcc35   김태훈   쿨다운 팝업 추가
9
  #include "cooldownpopup.h"
f588aa273   김태훈   부가 기능 로직 추가
10
11
12
  #include "cookhistory.h"
  #include "favoritenamepopup.h"
  #include "confirmpopup.h"
2bfd3a050   김태훈   환경 설정 대응
13
14
  #include "stringer.h"
  #include "config.h"
d35b8bcdf   김태훈   수동 요리의 중심 요리 설정 화...
15
  #include "coretempsettingpopup.h"
0e279295f   김태훈   수동 요리 구현
16
17
  #include "reservetimepopup.h"
  #include "reservedtimepopup.h"
e00c6a2a9   김태훈   기능 추가 구현
18
19
20
21
  #include "mainwindow.h"
  #include "configwindow.h"
  #include "primewindow.h"
  #include "washwindow.h"
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
22
  #include "errorpopupdlg.h"
05f2a7552   김태훈   image 관리 구조 변경
23
bb26a0523   김태훈   소스 코드 정리
24
  #include <QTime>
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
25
  ManualCookWindow::ManualCookWindow(QWidget *parent, Define::Mode mode) :
8c2952457   김태훈   응용 프로그램 추가
26
      QMainWindow(parent),
213c24135   김태훈   수동 요리 반복 추가
27
28
      ui(new Ui::ManualCookWindow),
      repeat(false)
8c2952457   김태훈   응용 프로그램 추가
29
30
  {
      ui->setupUi(this);
6f96c947a   김태훈   GUI 0.1.4
31
      ui->clockContainer->setParent(ui->upperStack);
cfc2fcc35   김태훈   쿨다운 팝업 추가
32
      ui->closeDoorWidget->setParent(ui->upperStack);
6f96c947a   김태훈   GUI 0.1.4
33
      setAttribute(Qt::WA_DeleteOnClose);
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
34
3f52600cc   김태훈   소스 코드 구조 개선
35
      oven = Oven::getInstance();
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
36
37
38
39
40
41
42
43
44
45
  
      lastViewHumidity = -1;
      lastViewTemp = -1;
      lastViewTime = -1;
      lastViewInterTemp = -1;
      lastViewInterTempEnabled = !oven->interTempEnabled();
      lastViewCooking = false;
      lastViewDamper = false;
      lastViewHumidification = false;
      lastViewFan = -1;
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
      Config *config = Config::getInstance();
      config_item item = config->getConfigValue(Define::config_cooking_door_monitoring);
  
      monitorLevel = item.d8.d8_0;
      if (monitorLevel > 0 && monitorLevel < 4)
      {
          monitor1.setSingleShot(true);
          monitor2.setSingleShot(true);
          monitor3.setSingleShot(true);
          monitor1.setInterval(item.d8.d8_1 * 1000);
          monitor2.setInterval(item.d8.d8_2 * 1000);
          monitor3.setInterval(item.d8.d8_3 * 1000);
          connect(&monitor1, SIGNAL(timeout()), SLOT(onMonitor1Timeout()));
          connect(&monitor2, SIGNAL(timeout()), SLOT(onMonitor2Timeout()));
          connect(&monitor3, SIGNAL(timeout()), SLOT(onMonitor3Timeout()));
      }
      else
          monitorLevel = 0;
8c2952457   김태훈   응용 프로그램 추가
64
      connect(oven, SIGNAL(changed(Oven*)), this, SLOT(onOvenUpdated(Oven*)));
8c2952457   김태훈   응용 프로그램 추가
65
66
67
      connect(ui->humiditySlider, SIGNAL(valueChanged(int)), oven, SLOT(setHumidity(int)));
      connect(ui->tempSlider, SIGNAL(valueChanged(int)), oven, SLOT(setTemp(int)));
      connect(ui->timeSlider, SIGNAL(valueChanged(int)), oven, SLOT(setTime(int)));
bb26a0523   김태훈   소스 코드 정리
68
      connect(ui->timeSlider, SIGNAL(valueChanged(int)), &startCookingTimer, SLOT(start()));
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
69
      connect(ui->timeSlider, SIGNAL(valueChanged(int)), this, SLOT(updateView()));
8c2952457   김태훈   응용 프로그램 추가
70
      connect(ui->interTempSlider, SIGNAL(valueChanged(int)), oven, SLOT(setInterTemp(int)));
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
71
72
73
74
      connect(ui->humiditySlider, SIGNAL(sliderMoved(int)), this, SLOT(updateView()));
      connect(ui->tempSlider, SIGNAL(sliderMoved(int)), this, SLOT(updateView()));
      connect(ui->timeSlider, SIGNAL(sliderMoved(int)), this, SLOT(updateView()));
      connect(ui->interTempSlider, SIGNAL(sliderMoved(int)), this, SLOT(updateView()));
8c2952457   김태훈   응용 프로그램 추가
75
bb26a0523   김태훈   소스 코드 정리
76
      startCookingTimer.setSingleShot(true);
213c24135   김태훈   수동 요리 반복 추가
77
      startCookingTimer.setInterval(2000);
bb26a0523   김태훈   소스 코드 정리
78
79
80
      connect(&startCookingTimer, SIGNAL(timeout()), SLOT(start()));
  
      showCurrentHumidityTimer.setSingleShot(true);
213c24135   김태훈   수동 요리 반복 추가
81
      showCurrentHumidityTimer.setInterval(2000);
bb26a0523   김태훈   소스 코드 정리
82
83
84
      connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity()));
  
      showCurrentTempTimer.setSingleShot(true);
213c24135   김태훈   수동 요리 반복 추가
85
      showCurrentTempTimer.setInterval(2000);
bb26a0523   김태훈   소스 코드 정리
86
      connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp()));
8c2952457   김태훈   응용 프로그램 추가
87
bb26a0523   김태훈   소스 코드 정리
88
      oven->setDefault(mode);
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
89
90
      connect(&updateViewTimer, SIGNAL(timeout()), SLOT(updateView()));
      updateViewTimer.start(100);
2bfd3a050   김태훈   환경 설정 대응
91
bbd7d8f29   김태훈   버튼 음향 추가
92
      foreach (QPushButton *button, findChildren<QPushButton *>())
bbd7d8f29   김태훈   버튼 음향 추가
93
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
d35b8bcdf   김태훈   수동 요리의 중심 요리 설정 화...
94
95
  
      QTimer::singleShot(0, this, SLOT(setupAnimation()));
bb26a0523   김태훈   소스 코드 정리
96
  }
f588aa273   김태훈   부가 기능 로직 추가
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  ManualCookWindow::ManualCookWindow(QWidget *parent, ManualCookSetting setting)
      : ManualCookWindow(parent, setting.mode)
  {
      oven->setHumidity(setting.humidity);
      oven->setTemp(setting.temp);
      oven->setTime(setting.time);
      oven->setFan(setting.fan);
      oven->setInterTempEnabled(setting.coreTempEnabled);
      oven->setInterTemp(setting.coreTemp);
  
      startCookingTimer.start();
  
      onOvenUpdated(oven);
  }
bb26a0523   김태훈   소스 코드 정리
111
112
  ManualCookWindow::~ManualCookWindow()
  {
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
113
      stop();
bb26a0523   김태훈   소스 코드 정리
114
115
116
117
118
      delete ui;
  }
  
  void ManualCookWindow::setupAnimation()
  {
cfc2fcc35   김태훈   쿨다운 팝업 추가
119
120
121
122
123
124
125
126
127
128
      ui->openDoorAnimation->load(":/images/animation/door_big_09.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_08.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_07.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_06.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_05.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_04.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_03.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_02.png");
      ui->openDoorAnimation->load(":/images/animation/door_big_01.png");
      ui->openDoorAnimation->start(300);
8c2952457   김태훈   응용 프로그램 추가
129
  }
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
130
  void ManualCookWindow::updateView()
8c2952457   김태훈   응용 프로그램 추가
131
  {
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
132
      switch (oven->mode())
213c24135   김태훈   수동 요리 반복 추가
133
      {
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
134
135
136
137
138
139
140
141
142
143
144
145
146
147
      case Define::DryMode:
          if (!ui->dryheatButton->isChecked())
              ui->dryheatButton->setChecked(true);
          break;
      case Define::SteamMode:
          if (!ui->steamButton->isChecked())
              ui->steamButton->setChecked(true);
          break;
      case Define::CombiMode:
          if (!ui->combiButton->isChecked())
              ui->combiButton->setChecked(true);
          break;
      default:
          break;
213c24135   김태훈   수동 요리 반복 추가
148
      }
8c2952457   김태훈   응용 프로그램 추가
149
150
151
152
153
154
155
156
  
      int humidity;
      if (showCurrentHumidity_)
          humidity = oven->currentHumidity();
      else if (ui->humiditySlider->isSliderDown())
          humidity = ui->humiditySlider->sliderPosition();
      else
          humidity = oven->humidity();
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
157
158
159
160
161
162
163
164
165
166
167
168
      if (humidity != lastViewHumidity)
      {
          lastViewHumidity = humidity;
  
          bool old = ui->humiditySlider->blockSignals(true);
          if (ui->humiditySlider->sliderPosition() != humidity)
              ui->humiditySlider->setValue(humidity);
          ui->humiditySlider->setEnabled(oven->mode() == Define::CombiMode);
          ui->humiditySlider->blockSignals(old);
  
          ui->humidityLabel->setText(QString("%1%").arg(humidity));
      }
8c2952457   김태훈   응용 프로그램 추가
169
170
171
172
173
174
175
176
  
      int temp;
      if (showCurrentTemp_)
          temp = oven->currentTemp();
      else if (ui->tempSlider->isSliderDown())
          temp = ui->tempSlider->sliderPosition();
      else
          temp = oven->temp();
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
177
178
179
180
181
182
183
184
185
186
187
188
      if (temp != lastViewTemp)
      {
          lastViewTemp = temp;
  
          bool old = ui->tempSlider->blockSignals(true);
          ui->tempSlider->setRange(oven->minTemp(), oven->maxTemp());
          if (ui->tempSlider->sliderPosition() != temp)
              ui->tempSlider->setValue(temp);
          ui->tempSlider->blockSignals(old);
  
          ui->tempLabel->setText(Stringer::temperature(temp, Stringer::fontSize14));
      }
8c2952457   김태훈   응용 프로그램 추가
189
2bfd3a050   김태훈   환경 설정 대응
190
      int msecs;
8c2952457   김태훈   응용 프로그램 추가
191
      if (ui->timeSlider->isSliderDown())
2bfd3a050   김태훈   환경 설정 대응
192
          msecs = ui->timeSlider->sliderPosition() * 1000;
8c2952457   김태훈   응용 프로그램 추가
193
      else
2bfd3a050   김태훈   환경 설정 대응
194
          msecs = oven->msecs();
8c2952457   김태훈   응용 프로그램 추가
195
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
196
      if (msecs != lastViewTime)
8c2952457   김태훈   응용 프로그램 추가
197
      {
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
198
          lastViewTime = msecs;
8c2952457   김태훈   응용 프로그램 추가
199
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
200
201
202
          bool old = ui->timeSlider->blockSignals(true);
          ui->timeSlider->setSliderPosition(msecs / 1000);
          ui->timeSlider->blockSignals(old);
8c2952457   김태훈   응용 프로그램 추가
203
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
204
          ui->timeLabel->setText(Stringer::remainingTime(msecs, Stringer::fontSize14));
8c2952457   김태훈   응용 프로그램 추가
205
      }
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
206
207
208
209
210
      int interTemp;
      if (ui->interTempSlider->isSliderDown())
          interTemp = ui->interTempSlider->sliderPosition();
      else
          interTemp = oven->interTemp();
8c2952457   김태훈   응용 프로그램 추가
211
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
212
213
      bool interTempEnabled = oven->interTempEnabled();
      if (interTempEnabled != lastViewInterTempEnabled || interTemp != lastViewInterTemp)
8c2952457   김태훈   응용 프로그램 추가
214
      {
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
215
216
217
          if (interTempEnabled != lastViewInterTempEnabled)
          {
              lastViewInterTempEnabled = oven->interTempEnabled();
8c2952457   김태훈   응용 프로그램 추가
218
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
219
220
              if (interTempEnabled)
                  ui->interTempButton->setStyleSheet("\
6f96c947a   김태훈   GUI 0.1.4
221
  QPushButton {\
05f2a7552   김태훈   image 관리 구조 변경
222
      image: url(:/images/slider_icon/core_temp_enabled.png);\
8c2952457   김태훈   응용 프로그램 추가
223
  }\
6f96c947a   김태훈   GUI 0.1.4
224
  QPushButton:pressed {\
05f2a7552   김태훈   image 관리 구조 변경
225
      image: url(:/images/slider_icon/core_temp_ov.png);\
8c2952457   김태훈   응용 프로그램 추가
226
  }");
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
227
228
              else
                  ui->interTempButton->setStyleSheet("\
6f96c947a   김태훈   GUI 0.1.4
229
  QPushButton {\
05f2a7552   김태훈   image 관리 구조 변경
230
      image: url(:/images/slider_icon/core_temp.png);\
8c2952457   김태훈   응용 프로그램 추가
231
  }\
6f96c947a   김태훈   GUI 0.1.4
232
  QPushButton:pressed {\
05f2a7552   김태훈   image 관리 구조 변경
233
      image: url(:/images/slider_icon/core_temp_ov.png);\
8c2952457   김태훈   응용 프로그램 추가
234
  }");
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
235
          }
8c2952457   김태훈   응용 프로그램 추가
236
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
237
          lastViewInterTemp = interTemp;
8c2952457   김태훈   응용 프로그램 추가
238
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
239
240
241
242
243
          bool old = ui->interTempSlider->blockSignals(true);
          ui->interTempSlider->setEnabled(interTempEnabled);
          ui->interTempSlider->setRange(oven->minInterTemp(), oven->maxInterTemp());
          ui->interTempSlider->setValue(interTemp);
          ui->interTempSlider->blockSignals(old);
c598b01b2   김태훈   GUI 업데이트
244
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
245
246
247
248
249
          if (interTempEnabled)
              ui->interTempLabel->setText(Stringer::temperature(interTemp, Stringer::fontSize14));
          else
              ui->interTempLabel->setText(Stringer::unusedTemperature(Stringer::fontSize14));
      }
c598b01b2   김태훈   GUI 업데이트
250
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
251
252
253
254
      bool cooking = oven->cooking();
      if (cooking != lastViewCooking)
      {
          lastViewCooking = cooking;
8c2952457   김태훈   응용 프로그램 추가
255
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
256
257
258
259
260
261
262
263
264
265
          if (cooking)
              ui->runStopButton->setStyleSheet(
                          "border-image: url(:/images/manual_button/stop.png)");
          else
              ui->runStopButton->setStyleSheet(
                          "border-image: url(:/images/manual_button/run.png)");
      }
  
      bool damper = oven->damper();
      if (damper != lastViewDamper)
8c2952457   김태훈   응용 프로그램 추가
266
      {
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
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
          lastViewDamper = damper;
  
          if (damper)
              ui->damperButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/damper_open.png)");
          else
              ui->damperButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/damper_close.png)");
      }
  
      bool humidification = oven->humidification();
      if (humidification != lastViewHumidification)
      {
          lastViewHumidification = humidification;
  
          if (humidification)
              ui->humidificationButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/side_nozzle_open.png)");
          else
              ui->humidificationButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/side_nozzle_close.png)");
      }
  
      int fan = oven->fan();
      if (fan != lastViewFan)
      {
          lastViewFan = fan;
  
          switch (fan)
          {
          case 1:
              ui->fanButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/fan_1.png)");
              break;
          case 2:
              ui->fanButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/fan_2.png)");
              break;
          case 3:
              ui->fanButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/fan_3.png)");
              break;
          case 4:
              ui->fanButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/fan_4.png)");
              break;
          case 5:
              ui->fanButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/fan_5.png)");
              break;
          default:
              ui->fanButton->setStyleSheet(
                          "background-image: url(:/images/manual_button/fan_1.png)");
              break;
          }
8c2952457   김태훈   응용 프로그램 추가
322
      }
cfc2fcc35   김태훈   쿨다운 팝업 추가
323
324
325
326
      if (oven->paused() && !oven->cooldown() && oven->door())
          ui->upperStack->setCurrentIndex(1);
      else
          ui->upperStack->setCurrentIndex(0);
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
327
      if (oven->cooking())
213c24135   김태훈   수동 요리 반복 추가
328
329
330
331
332
333
334
335
336
337
338
      {
          ui->reserveButton->hide();
          ui->favoriteButton->hide();
          ui->repeatButton->show();
      }
      else
      {
          ui->reserveButton->show();
          ui->favoriteButton->show();
          ui->repeatButton->hide();
      }
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
  }
  
  void ManualCookWindow::showCurrentHumidity()
  {
      showCurrentHumidity_ = true;
      updateView();
  }
  
  void ManualCookWindow::hideCurrentHumidity()
  {
      showCurrentHumidity_ = false;
      updateView();
  }
  
  void ManualCookWindow::showCurrentTemp()
  {
      showCurrentTemp_ = true;
      updateView();
  }
  
  void ManualCookWindow::hideCurrentTemp()
  {
      showCurrentTemp_ = false;
      updateView();
  }
  
  void ManualCookWindow::onOvenUpdated(Oven *oven)
  {
      updateView();
  
      if (oven->interTempEnabled() && oven->currentInterTemp() >= oven->interTemp())
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
370
          stop();
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
  
      if (repeat && !oven->cooking())
      {
          repeat = false;
  
          ui->repeatButton->setStyleSheet("\
  QPushButton { background-image: url(:/images/manual_button/repeat.png); }\
  QPushButton:pressed { background-image: url(:/images/manual_button/repeat_ov.png); }");
  
          oven->setMode(repeatSetting.mode);
          oven->setHumidity(repeatSetting.humidity);
          oven->setTemp(repeatSetting.temp);
          oven->setTime(repeatSetting.time);
          oven->setInterTempEnabled(repeatSetting.coreTempEnabled);
          oven->setInterTemp(repeatSetting.coreTemp);
      }
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
  
      if (oven->paused() && oven->door())
      {
          if (monitorLevel > 0 && !monitorTriggered)
          {
              monitorTriggered = true;
              monitor1.start();
          }
      }
  
      if (monitorTriggered && !oven->door())
      {
          monitorTriggered = false;
          monitor1.stop();
          monitor2.stop();
          monitor3.stop();
      }
8c2952457   김태훈   응용 프로그램 추가
404
  }
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
405
  void ManualCookWindow::setOvenDefault(Define::Mode mode)
8c2952457   김태훈   응용 프로그램 추가
406
  {
bb26a0523   김태훈   소스 코드 정리
407
408
409
      stop();
  
      oven->setDefault(mode);
bb26a0523   김태훈   소스 코드 정리
410
411
412
413
  }
  
  void ManualCookWindow::start()
  {
bbd7d8f29   김태훈   버튼 음향 추가
414
415
      if (oven->cooking())
          return;
f588aa273   김태훈   부가 기능 로직 추가
416
417
      if (oven->time() > 0)
      {
c6dd03260   김태훈   요리 시작/종료 관련 음향 효과...
418
          SoundPlayer::playStart();
f588aa273   김태훈   부가 기능 로직 추가
419
420
421
422
          if (startCookingTimer.isActive())
              startCookingTimer.stop();
  
          oven->startCooking();
f588aa273   김태훈   부가 기능 로직 추가
423
424
425
426
427
428
429
430
431
432
433
  
          ManualCookSetting s;
          s.mode = oven->mode();
          s.humidity = oven->humidity();
          s.temp = oven->temp();
          s.time = oven->time();
          s.fan = oven->fan();
          s.coreTempEnabled = oven->interTempEnabled();
          s.coreTemp = oven->interTemp();
  
          CookHistory::record(s);
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
434
435
436
437
438
439
440
441
  
          if (monitorLevel > 0 && oven->door())
          {
              monitorTriggered = true;
              monitor1.start();
          }
          else
              monitorTriggered = false;
f588aa273   김태훈   부가 기능 로직 추가
442
      }
bb26a0523   김태훈   소스 코드 정리
443
444
445
446
  }
  
  void ManualCookWindow::stop()
  {
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
447
448
      if (oven->cooking())
          SoundPlayer::playStop();
bb26a0523   김태훈   소스 코드 정리
449
450
      oven->stop();
      startCookingTimer.stop();
bb26a0523   김태훈   소스 코드 정리
451
  }
e00c6a2a9   김태훈   기능 추가 구현
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
  void ManualCookWindow::addFavorite()
  {
      ManualCookSetting s;
      s.mode = oven->mode();
      s.humidity = oven->humidity();
      s.temp = oven->temp();
      s.time = oven->time();
      s.fan = oven->fan();
      s.coreTempEnabled = oven->interTempEnabled();
      s.coreTemp = oven->interTemp();
  
      FavoriteNamePopup *p = new FavoriteNamePopup(this, s);
      p->showFullScreen();
  }
  
  void ManualCookWindow::jumpConfig()
  {
      stop();
  
      ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  
      MainWindow::jump(w);
  }
  
  void ManualCookWindow::jumpFavorites()
  {
      stop();
  
      PrimeWindow *w = new PrimeWindow(MainWindow::getInstance());
      w->setWindowModality(Qt::WindowModal);
      w->listFavorites();
      w->showFullScreen();
      w->raise();
  
      MainWindow::jump(w);
  }
  
  void ManualCookWindow::jumpWash()
  {
      stop();
  
      WashWindow *w = new WashWindow(MainWindow::getInstance());
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  
      MainWindow::jump(w);
  }
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
503
504
505
  void ManualCookWindow::onMonitor1Timeout()
  {
      SoundPlayer::playError1();
8a89c201e   김태훈   tr 추가
506
      ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 1단계"));
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
507
508
509
510
511
512
513
514
515
      d->showFullScreen();
  
      if (monitorLevel > 1)
          monitor2.start();
  }
  
  void ManualCookWindow::onMonitor2Timeout()
  {
      SoundPlayer::playError1();
8a89c201e   김태훈   tr 추가
516
      ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 2단계"));
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
517
518
519
520
521
522
523
524
525
      d->showFullScreen();
  
      if (monitorLevel > 2)
          monitor3.start();
  }
  
  void ManualCookWindow::onMonitor3Timeout()
  {
      SoundPlayer::playError1();
8a89c201e   김태훈   tr 추가
526
      ErrorPopupDlg *d = new ErrorPopupDlg(MainWindow::getInstance(), tr("문이 오래 열려있어 조리가 취소되었습니다"), tr("조리 중 문 열림 시간 모니터링 3단계"));
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
527
528
529
      d->showFullScreen();
      close();
  }
bb26a0523   김태훈   소스 코드 정리
530
531
  void ManualCookWindow::on_steamButton_clicked()
  {
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
532
      setOvenDefault(Define::SteamMode);
bb26a0523   김태훈   소스 코드 정리
533
534
535
536
  }
  
  void ManualCookWindow::on_combiButton_clicked()
  {
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
537
      setOvenDefault(Define::CombiMode);
bb26a0523   김태훈   소스 코드 정리
538
539
540
541
  }
  
  void ManualCookWindow::on_dryheatButton_clicked()
  {
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
542
      setOvenDefault(Define::DryMode);
bb26a0523   김태훈   소스 코드 정리
543
544
545
546
547
548
549
550
551
552
553
  }
  
  void ManualCookWindow::on_humidityButton_pressed()
  {
      showCurrentHumidityTimer.start();
  }
  
  void ManualCookWindow::on_humidityButton_released()
  {
      if (showCurrentHumidityTimer.isActive())
          showCurrentHumidityTimer.stop();
c598b01b2   김태훈   GUI 업데이트
554
      else
bb26a0523   김태훈   소스 코드 정리
555
          hideCurrentHumidity();
8c2952457   김태훈   응용 프로그램 추가
556
  }
bb26a0523   김태훈   소스 코드 정리
557
  void ManualCookWindow::on_tempButton_pressed()
8c2952457   김태훈   응용 프로그램 추가
558
  {
bb26a0523   김태훈   소스 코드 정리
559
560
      showCurrentTempTimer.start();
  }
8c2952457   김태훈   응용 프로그램 추가
561
bb26a0523   김태훈   소스 코드 정리
562
563
564
565
566
567
568
569
570
571
572
573
574
  void ManualCookWindow::on_tempButton_released()
  {
      if (showCurrentTempTimer.isActive())
          showCurrentTempTimer.stop();
      else
          hideCurrentTemp();
  }
  
  void ManualCookWindow::on_interTempButton_clicked()
  {
      if (oven->interTempEnabled())
          oven->setInterTempEnabled(false);
      else
d35b8bcdf   김태훈   수동 요리의 중심 요리 설정 화...
575
576
577
578
      {
          CoreTempSettingPopup *p = new CoreTempSettingPopup(this);
          p->show();
      }
8c2952457   김태훈   응용 프로그램 추가
579
  }
bb26a0523   김태훈   소스 코드 정리
580
  void ManualCookWindow::on_runStopButton_clicked()
8c2952457   김태훈   응용 프로그램 추가
581
  {
bb26a0523   김태훈   소스 코드 정리
582
      if (oven->cooking())
bb26a0523   김태훈   소스 코드 정리
583
          stop();
8c2952457   김태훈   응용 프로그램 추가
584
      else
f588aa273   김태훈   부가 기능 로직 추가
585
          start();
bb26a0523   김태훈   소스 코드 정리
586
587
588
589
590
591
592
593
594
  }
  
  void ManualCookWindow::on_fanButton_clicked()
  {
      int fan = oven->fan() + 1;
      if (fan > oven->maxFan())
          fan = oven->minFan();
  
      oven->setFan(fan);
8c2952457   김태훈   응용 프로그램 추가
595
596
597
598
  }
  
  void ManualCookWindow::on_preheatButton_clicked()
  {
bb26a0523   김태훈   소스 코드 정리
599
      startCookingTimer.stop();
4fc65fb81   김태훈   GUI V0.1.6(이 버전으로...
600
05f2a7552   김태훈   image 관리 구조 변경
601
602
603
      PreheatPopup *p = new PreheatPopup(this, oven);
      p->setWindowModality(Qt::WindowModal);
      p->showFullScreen();
8c2952457   김태훈   응용 프로그램 추가
604
605
606
607
  }
  
  void ManualCookWindow::on_damperButton_clicked()
  {
c598b01b2   김태훈   GUI 업데이트
608
609
      if (oven->damper())
          oven->closeDamper();
8c2952457   김태훈   응용 프로그램 추가
610
      else
c598b01b2   김태훈   GUI 업데이트
611
          oven->openDamper();
8c2952457   김태훈   응용 프로그램 추가
612
613
614
615
  }
  
  void ManualCookWindow::on_humidificationButton_clicked()
  {
c598b01b2   김태훈   GUI 업데이트
616
617
      if (oven->humidification())
          oven->stopHumidification();
8c2952457   김태훈   응용 프로그램 추가
618
      else
c598b01b2   김태훈   GUI 업데이트
619
          oven->startHumidification();
8c2952457   김태훈   응용 프로그램 추가
620
621
622
623
  }
  
  void ManualCookWindow::on_repeatButton_clicked()
  {
213c24135   김태훈   수동 요리 반복 추가
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
      if (repeat)
      {
          repeat = false;
          ui->repeatButton->setStyleSheet("\
  QPushButton { background-image: url(:/images/manual_button/repeat.png); }\
  QPushButton:pressed { background-image: url(:/images/manual_button/repeat_ov.png); }");
      }
      else
      {
          repeat = true;
          ui->repeatButton->setStyleSheet("\
  QPushButton { background-image: url(:/images/manual_button/repeat_ov.png); }\
  QPushButton:pressed { background-image: url(:/images/manual_button/repeat.png); }");
          repeatSetting.mode = oven->mode();
          repeatSetting.humidity = oven->humidity();
          repeatSetting.temp= oven->temp();
          repeatSetting.time = oven->time();
          repeatSetting.coreTempEnabled = oven->interTempEnabled();
          repeatSetting.coreTemp = oven->interTemp();
      }
8c2952457   김태훈   응용 프로그램 추가
644
645
646
647
  }
  
  void ManualCookWindow::on_cooldownButton_clicked()
  {
bb26a0523   김태훈   소스 코드 정리
648
      startCookingTimer.stop();
cfc2fcc35   김태훈   쿨다운 팝업 추가
649
650
651
652
  
      CooldownPopup *p = new CooldownPopup(this, oven);
      p->setWindowModality(Qt::WindowModal);
      p->showFullScreen();
8c2952457   김태훈   응용 프로그램 추가
653
654
655
656
  }
  
  void ManualCookWindow::on_reserveButton_clicked()
  {
0e279295f   김태훈   수동 요리 구현
657
658
659
660
661
662
663
664
665
      if (oven->time() > 0)
      {
          startCookingTimer.stop();
  
          ReserveTimePopup *p = new ReserveTimePopup(this);
          connect(p, SIGNAL(timeout()), SLOT(start()));
          connect(p, SIGNAL(canceled()), &startCookingTimer, SLOT(start()));
          p->showFullScreen();
      }
8c2952457   김태훈   응용 프로그램 추가
666
  }
213c24135   김태훈   수동 요리 반복 추가
667
  void ManualCookWindow::on_favoriteButton_clicked()
8c2952457   김태훈   응용 프로그램 추가
668
  {
f588aa273   김태훈   부가 기능 로직 추가
669
670
671
672
673
      if (oven->cooking())
          return;
  
      ConfirmPopup *p = new ConfirmPopup(this, tr("즐겨찾기 항목에 추가하시겠습니까?"));
      p->showFullScreen();
8c2952457   김태훈   응용 프로그램 추가
674
f588aa273   김태훈   부가 기능 로직 추가
675
676
677
678
679
680
681
      connect(p, SIGNAL(accepted()), SLOT(addFavorite()));
  
      if (startCookingTimer.isActive())
      {
          startCookingTimer.stop();
          connect(p, SIGNAL(rejected()), &startCookingTimer, SLOT(start()));
      }
8c2952457   김태훈   응용 프로그램 추가
682
  }
bb26a0523   김태훈   소스 코드 정리
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
  
  void ManualCookWindow::on_goBackStackButton_clicked()
  {
      ui->buttonStack->setCurrentIndex(1);
  }
  
  void ManualCookWindow::on_goFrontStackButton_clicked()
  {
      ui->buttonStack->setCurrentIndex(0);
  }
  
  void ManualCookWindow::on_backButton_clicked()
  {
      stop();
      close();
  }
f588aa273   김태훈   부가 기능 로직 추가
699
e00c6a2a9   김태훈   기능 추가 구현
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
  void ManualCookWindow::on_configButton_clicked()
  {
      if (oven->cooking())
      {
          ConfirmPopup *p = new ConfirmPopup(this, tr("요리가 중단되고 환경 설정 모드로 들어갑니다. 진행할까요?"));
          p->showFullScreen();
  
          connect(p, SIGNAL(accepted()), SLOT(jumpConfig()));
      }
      else
      {
          ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
          w->setWindowModality(Qt::WindowModal);
          w->showFullScreen();
          w->raise();
  
          MainWindow::jump(w);
      }
  }
  
  void ManualCookWindow::on_favoritesButton_clicked()
  {
      if (oven->cooking())
      {
          ConfirmPopup *p = new ConfirmPopup(this, tr("요리가 중단되고 즐겨찾기 모드로 들어갑니다. 진행할까요?"));
          p->showFullScreen();
  
          connect(p, SIGNAL(accepted()), SLOT(jumpFavorites()));
      }
      else
      {
          PrimeWindow *w = new PrimeWindow(MainWindow::getInstance());
          w->setWindowModality(Qt::WindowModal);
          w->listFavorites();
          w->showFullScreen();
          w->raise();
  
          MainWindow::jump(w);
      }
  }
  
  void ManualCookWindow::on_washButton_clicked()
  {
      if (oven->cooking())
      {
          ConfirmPopup *p = new ConfirmPopup(this, tr("요리가 중단되고 자동 세척 모드로 들어갑니다. 진행할까요?"));
          p->showFullScreen();
  
          connect(p, SIGNAL(accepted()), SLOT(jumpWash()));
      }
      else
      {
          WashWindow *w = new WashWindow(MainWindow::getInstance());
          w->setWindowModality(Qt::WindowModal);
          w->showFullScreen();
          w->raise();
  
          MainWindow::jump(w);
      }
  }
  
  void ManualCookWindow::on_helpButton_clicked()
f588aa273   김태훈   부가 기능 로직 추가
762
  {
f588aa273   김태훈   부가 기능 로직 추가
763
f588aa273   김태훈   부가 기능 로직 추가
764
  }