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);
|
3f52600cc
김태훈
소스 코드 구조 개선
|
34
|
oven = Oven::getInstance();
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
35
|
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
ui->humiditySlider->setSubPixmap(":/images/slider/humidity.png");
ui->humiditySlider->setRange(0, 100);
ui->humiditySlider->bigTickInterval = 50;
ui->humiditySlider->tickInterval = 10;
ui->tempSlider->setSubPixmap(":/images/slider/temp.png");
ui->tempSlider->bigTickInterval = 50;
ui->tempSlider->tickInterval = 10;
ui->timeSlider->setSubPixmap(":/images/slider/time.png");
ui->timeSlider->setRange(0, 342);
ui->timeSlider->bigTicks.append(0);
ui->timeSlider->bigTicks.append(180);
ui->timeSlider->bigTicks.append(270);
ui->timeSlider->bigTicks.append(342);
ui->timeSlider->ticks.append(60);
ui->timeSlider->ticks.append(120);
ui->timeSlider->ticks.append(180 + 30);
ui->timeSlider->ticks.append(180 + 60);
ui->timeSlider->ticks.append(270 + 4 * 6);
ui->timeSlider->ticks.append(270 + 4 * 12);
ui->interTempSlider->setSubPixmap(":/images/slider/core.png");
QList<int> &bigTicks = ui->interTempSlider->bigTicks;
bigTicks.append(oven->minInterTemp());
bigTicks.append(oven->minInterTemp() + (oven->maxInterTemp() - oven->minInterTemp()) / 2);
bigTicks.append(oven->maxInterTemp());
QList<int> &ticks = ui->interTempSlider->ticks;
for (int i = 1; i < 3; i++)
ticks.append(bigTicks.at(0) + i * (bigTicks.at(1) - bigTicks.at(0)) / 3);
for (int i = 1; i < 3; i++)
ticks.append(bigTicks.at(1) + i * (bigTicks.at(2) - bigTicks.at(1)) / 3);
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
70
71
72
73
74
75
76
77
78
|
lastViewHumidity = -1;
lastViewTemp = -1;
lastViewTime = -1;
lastViewInterTemp = -1;
lastViewInterTempEnabled = !oven->interTempEnabled();
lastViewCooking = false;
lastViewDamper = false;
lastViewHumidification = false;
lastViewFan = -1;
|
ea536cd1d
김태훈
적재 / 조리 중 문 열림 시간...
|
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
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
김태훈
응용 프로그램 추가
|
97
98
|
connect(ui->humiditySlider, SIGNAL(valueChanged(int)), oven, SLOT(setHumidity(int)));
connect(ui->tempSlider, SIGNAL(valueChanged(int)), oven, SLOT(setTemp(int)));
|
bb26a0523
김태훈
소스 코드 정리
|
99
|
connect(ui->timeSlider, SIGNAL(valueChanged(int)), &startCookingTimer, SLOT(start()));
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
100
|
connect(ui->timeSlider, SIGNAL(valueChanged(int)), this, SLOT(updateView()));
|
8c2952457
김태훈
응용 프로그램 추가
|
101
|
connect(ui->interTempSlider, SIGNAL(valueChanged(int)), oven, SLOT(setInterTemp(int)));
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
102
103
104
105
|
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
김태훈
응용 프로그램 추가
|
106
|
|
bb26a0523
김태훈
소스 코드 정리
|
107
|
startCookingTimer.setSingleShot(true);
|
213c24135
김태훈
수동 요리 반복 추가
|
108
|
startCookingTimer.setInterval(2000);
|
bb26a0523
김태훈
소스 코드 정리
|
109
110
111
|
connect(&startCookingTimer, SIGNAL(timeout()), SLOT(start()));
showCurrentHumidityTimer.setSingleShot(true);
|
213c24135
김태훈
수동 요리 반복 추가
|
112
|
showCurrentHumidityTimer.setInterval(2000);
|
bb26a0523
김태훈
소스 코드 정리
|
113
114
115
|
connect(&showCurrentHumidityTimer, SIGNAL(timeout()), SLOT(showCurrentHumidity()));
showCurrentTempTimer.setSingleShot(true);
|
213c24135
김태훈
수동 요리 반복 추가
|
116
|
showCurrentTempTimer.setInterval(2000);
|
bb26a0523
김태훈
소스 코드 정리
|
117
|
connect(&showCurrentTempTimer, SIGNAL(timeout()), SLOT(showCurrentTemp()));
|
8c2952457
김태훈
응용 프로그램 추가
|
118
|
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
119
|
connect(oven, SIGNAL(changed(Oven*)), this, SLOT(onOvenUpdated(Oven*)));
|
bb26a0523
김태훈
소스 코드 정리
|
120
|
oven->setDefault(mode);
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
121
122
|
connect(&updateViewTimer, SIGNAL(timeout()), SLOT(updateView()));
updateViewTimer.start(100);
|
2bfd3a050
김태훈
환경 설정 대응
|
123
|
|
bbd7d8f29
김태훈
버튼 음향 추가
|
124
|
foreach (QPushButton *button, findChildren<QPushButton *>())
|
bbd7d8f29
김태훈
버튼 음향 추가
|
125
|
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
d35b8bcdf
김태훈
수동 요리의 중심 요리 설정 화...
|
126
127
|
QTimer::singleShot(0, this, SLOT(setupAnimation()));
|
bb26a0523
김태훈
소스 코드 정리
|
128
|
}
|
f588aa273
김태훈
부가 기능 로직 추가
|
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
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
김태훈
소스 코드 정리
|
143
144
|
ManualCookWindow::~ManualCookWindow()
{
|
ea536cd1d
김태훈
적재 / 조리 중 문 열림 시간...
|
145
|
stop();
|
bb26a0523
김태훈
소스 코드 정리
|
146
147
148
149
150
|
delete ui;
}
void ManualCookWindow::setupAnimation()
{
|
cfc2fcc35
김태훈
쿨다운 팝업 추가
|
151
152
153
154
155
156
157
158
159
160
|
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
김태훈
응용 프로그램 추가
|
161
|
}
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
162
|
void ManualCookWindow::updateView()
|
8c2952457
김태훈
응용 프로그램 추가
|
163
|
{
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
164
|
switch (oven->mode())
|
213c24135
김태훈
수동 요리 반복 추가
|
165
|
{
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
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
김태훈
수동 요리 반복 추가
|
180
|
}
|
8c2952457
김태훈
응용 프로그램 추가
|
181
182
183
184
185
186
187
188
|
int humidity;
if (showCurrentHumidity_)
humidity = oven->currentHumidity();
else if (ui->humiditySlider->isSliderDown())
humidity = ui->humiditySlider->sliderPosition();
else
humidity = oven->humidity();
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
189
190
191
192
193
194
195
196
197
198
199
200
|
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
김태훈
응용 프로그램 추가
|
201
202
203
204
205
206
207
208
|
int temp;
if (showCurrentTemp_)
temp = oven->currentTemp();
else if (ui->tempSlider->isSliderDown())
temp = ui->tempSlider->sliderPosition();
else
temp = oven->temp();
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
209
210
211
|
if (temp != lastViewTemp)
{
lastViewTemp = temp;
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
212
213
|
ui->tempLabel->setText(Stringer::temperature(temp, Stringer::fontSize14));
}
|
8c2952457
김태훈
응용 프로그램 추가
|
214
|
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
215
216
217
218
219
|
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);
|
2bfd3a050
김태훈
환경 설정 대응
|
220
|
int msecs;
|
8c2952457
김태훈
응용 프로그램 추가
|
221
|
if (ui->timeSlider->isSliderDown())
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
222
|
msecs = sliderToTime(ui->timeSlider->sliderPosition()) * 1000;
|
8c2952457
김태훈
응용 프로그램 추가
|
223
|
else
|
2bfd3a050
김태훈
환경 설정 대응
|
224
|
msecs = oven->msecs();
|
8c2952457
김태훈
응용 프로그램 추가
|
225
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
226
|
if (msecs != lastViewTime)
|
8c2952457
김태훈
응용 프로그램 추가
|
227
|
{
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
228
|
lastViewTime = msecs;
|
8c2952457
김태훈
응용 프로그램 추가
|
229
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
230
|
bool old = ui->timeSlider->blockSignals(true);
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
231
|
ui->timeSlider->setSliderPosition(timeToSlider(msecs / 1000));
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
232
|
ui->timeSlider->blockSignals(old);
|
8c2952457
김태훈
응용 프로그램 추가
|
233
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
234
|
ui->timeLabel->setText(Stringer::remainingTime(msecs, Stringer::fontSize14));
|
8c2952457
김태훈
응용 프로그램 추가
|
235
|
}
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
236
237
238
239
240
|
int interTemp;
if (ui->interTempSlider->isSliderDown())
interTemp = ui->interTempSlider->sliderPosition();
else
interTemp = oven->interTemp();
|
8c2952457
김태훈
응용 프로그램 추가
|
241
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
242
243
|
bool interTempEnabled = oven->interTempEnabled();
if (interTempEnabled != lastViewInterTempEnabled || interTemp != lastViewInterTemp)
|
8c2952457
김태훈
응용 프로그램 추가
|
244
|
{
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
245
246
247
|
if (interTempEnabled != lastViewInterTempEnabled)
{
lastViewInterTempEnabled = oven->interTempEnabled();
|
8c2952457
김태훈
응용 프로그램 추가
|
248
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
249
250
|
if (interTempEnabled)
ui->interTempButton->setStyleSheet("\
|
6f96c947a
김태훈
GUI 0.1.4
|
251
|
QPushButton {\
|
05f2a7552
김태훈
image 관리 구조 변경
|
252
|
image: url(:/images/slider_icon/core_temp_enabled.png);\
|
8c2952457
김태훈
응용 프로그램 추가
|
253
|
}\
|
6f96c947a
김태훈
GUI 0.1.4
|
254
|
QPushButton:pressed {\
|
05f2a7552
김태훈
image 관리 구조 변경
|
255
|
image: url(:/images/slider_icon/core_temp_ov.png);\
|
8c2952457
김태훈
응용 프로그램 추가
|
256
|
}");
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
257
258
|
else
ui->interTempButton->setStyleSheet("\
|
6f96c947a
김태훈
GUI 0.1.4
|
259
|
QPushButton {\
|
05f2a7552
김태훈
image 관리 구조 변경
|
260
|
image: url(:/images/slider_icon/core_temp.png);\
|
8c2952457
김태훈
응용 프로그램 추가
|
261
|
}\
|
6f96c947a
김태훈
GUI 0.1.4
|
262
|
QPushButton:pressed {\
|
05f2a7552
김태훈
image 관리 구조 변경
|
263
|
image: url(:/images/slider_icon/core_temp_ov.png);\
|
8c2952457
김태훈
응용 프로그램 추가
|
264
|
}");
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
265
|
}
|
8c2952457
김태훈
응용 프로그램 추가
|
266
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
267
|
lastViewInterTemp = interTemp;
|
8c2952457
김태훈
응용 프로그램 추가
|
268
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
269
270
|
bool old = ui->interTempSlider->blockSignals(true);
ui->interTempSlider->setEnabled(interTempEnabled);
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
271
|
ui->interTempSlider->setSubVisible(interTempEnabled);
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
272
|
ui->interTempSlider->setRange(oven->minInterTemp(), oven->maxInterTemp());
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
273
274
|
if (ui->interTempSlider->sliderPosition() != interTemp)
ui->interTempSlider->setValue(interTemp);
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
275
|
ui->interTempSlider->blockSignals(old);
|
c598b01b2
김태훈
GUI 업데이트
|
276
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
277
278
279
280
281
|
if (interTempEnabled)
ui->interTempLabel->setText(Stringer::temperature(interTemp, Stringer::fontSize14));
else
ui->interTempLabel->setText(Stringer::unusedTemperature(Stringer::fontSize14));
}
|
c598b01b2
김태훈
GUI 업데이트
|
282
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
283
284
285
286
|
bool cooking = oven->cooking();
if (cooking != lastViewCooking)
{
lastViewCooking = cooking;
|
8c2952457
김태훈
응용 프로그램 추가
|
287
|
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
288
289
290
291
292
293
294
295
296
297
|
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
김태훈
응용 프로그램 추가
|
298
|
{
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
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
김태훈
응용 프로그램 추가
|
354
|
}
|
cfc2fcc35
김태훈
쿨다운 팝업 추가
|
355
356
357
358
|
if (oven->paused() && !oven->cooldown() && oven->door())
ui->upperStack->setCurrentIndex(1);
else
ui->upperStack->setCurrentIndex(0);
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
359
|
if (oven->cooking())
|
213c24135
김태훈
수동 요리 반복 추가
|
360
361
362
363
364
365
366
367
368
369
370
|
{
ui->reserveButton->hide();
ui->favoriteButton->hide();
ui->repeatButton->show();
}
else
{
ui->reserveButton->show();
ui->favoriteButton->show();
ui->repeatButton->hide();
}
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
|
}
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
김태훈
적재 / 조리 중 문 열림 시간...
|
402
|
stop();
|
7c415d2f7
김태훈
현재 습도/온도 값을 볼 때 슬...
|
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
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
김태훈
적재 / 조리 중 문 열림 시간...
|
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
|
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
김태훈
응용 프로그램 추가
|
436
|
}
|
d0cfbd177
김태훈
GUI V0.1.10 (이 버전...
|
437
|
void ManualCookWindow::setOvenDefault(Define::Mode mode)
|
8c2952457
김태훈
응용 프로그램 추가
|
438
|
{
|
bb26a0523
김태훈
소스 코드 정리
|
439
440
441
|
stop();
oven->setDefault(mode);
|
bb26a0523
김태훈
소스 코드 정리
|
442
443
444
445
|
}
void ManualCookWindow::start()
{
|
bbd7d8f29
김태훈
버튼 음향 추가
|
446
447
|
if (oven->cooking())
return;
|
f588aa273
김태훈
부가 기능 로직 추가
|
448
449
|
if (oven->time() > 0)
{
|
c6dd03260
김태훈
요리 시작/종료 관련 음향 효과...
|
450
|
SoundPlayer::playStart();
|
f588aa273
김태훈
부가 기능 로직 추가
|
451
452
453
454
|
if (startCookingTimer.isActive())
startCookingTimer.stop();
oven->startCooking();
|
f588aa273
김태훈
부가 기능 로직 추가
|
455
456
457
458
459
460
461
462
463
464
465
|
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
김태훈
적재 / 조리 중 문 열림 시간...
|
466
467
468
469
470
471
472
473
|
if (monitorLevel > 0 && oven->door())
{
monitorTriggered = true;
monitor1.start();
}
else
monitorTriggered = false;
|
f588aa273
김태훈
부가 기능 로직 추가
|
474
|
}
|
bb26a0523
김태훈
소스 코드 정리
|
475
476
477
478
|
}
void ManualCookWindow::stop()
{
|
ac60b5cec
김태훈
음향 효과 일부 적용 및 소스 ...
|
479
480
|
if (oven->cooking())
SoundPlayer::playStop();
|
bb26a0523
김태훈
소스 코드 정리
|
481
482
|
oven->stop();
startCookingTimer.stop();
|
bb26a0523
김태훈
소스 코드 정리
|
483
|
}
|
e00c6a2a9
김태훈
기능 추가 구현
|
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
|
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
김태훈
적재 / 조리 중 문 열림 시간...
|
535
536
537
|
void ManualCookWindow::onMonitor1Timeout()
{
SoundPlayer::playError1();
|
8a89c201e
김태훈
tr 추가
|
538
|
ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 1단계"));
|
ea536cd1d
김태훈
적재 / 조리 중 문 열림 시간...
|
539
540
541
542
543
544
545
546
547
|
d->showFullScreen();
if (monitorLevel > 1)
monitor2.start();
}
void ManualCookWindow::onMonitor2Timeout()
{
SoundPlayer::playError1();
|
8a89c201e
김태훈
tr 추가
|
548
|
ErrorPopupDlg *d = new ErrorPopupDlg(this, tr("문을 닫아주세요"), tr("조리 중 문 열림 시간 모니터링 2단계"));
|
ea536cd1d
김태훈
적재 / 조리 중 문 열림 시간...
|
549
550
551
552
553
554
555
556
557
|
d->showFullScreen();
if (monitorLevel > 2)
monitor3.start();
}
void ManualCookWindow::onMonitor3Timeout()
{
SoundPlayer::playError1();
|
8a89c201e
김태훈
tr 추가
|
558
|
ErrorPopupDlg *d = new ErrorPopupDlg(MainWindow::getInstance(), tr("문이 오래 열려있어 조리가 취소되었습니다"), tr("조리 중 문 열림 시간 모니터링 3단계"));
|
ea536cd1d
김태훈
적재 / 조리 중 문 열림 시간...
|
559
560
561
|
d->showFullScreen();
close();
}
|
bb26a0523
김태훈
소스 코드 정리
|
562
563
|
void ManualCookWindow::on_steamButton_clicked()
{
|
d0cfbd177
김태훈
GUI V0.1.10 (이 버전...
|
564
|
setOvenDefault(Define::SteamMode);
|
bb26a0523
김태훈
소스 코드 정리
|
565
566
567
568
|
}
void ManualCookWindow::on_combiButton_clicked()
{
|
d0cfbd177
김태훈
GUI V0.1.10 (이 버전...
|
569
|
setOvenDefault(Define::CombiMode);
|
bb26a0523
김태훈
소스 코드 정리
|
570
571
572
573
|
}
void ManualCookWindow::on_dryheatButton_clicked()
{
|
d0cfbd177
김태훈
GUI V0.1.10 (이 버전...
|
574
|
setOvenDefault(Define::DryMode);
|
bb26a0523
김태훈
소스 코드 정리
|
575
576
577
578
579
580
581
582
583
584
585
|
}
void ManualCookWindow::on_humidityButton_pressed()
{
showCurrentHumidityTimer.start();
}
void ManualCookWindow::on_humidityButton_released()
{
if (showCurrentHumidityTimer.isActive())
showCurrentHumidityTimer.stop();
|
c598b01b2
김태훈
GUI 업데이트
|
586
|
else
|
bb26a0523
김태훈
소스 코드 정리
|
587
|
hideCurrentHumidity();
|
8c2952457
김태훈
응용 프로그램 추가
|
588
|
}
|
bb26a0523
김태훈
소스 코드 정리
|
589
|
void ManualCookWindow::on_tempButton_pressed()
|
8c2952457
김태훈
응용 프로그램 추가
|
590
|
{
|
bb26a0523
김태훈
소스 코드 정리
|
591
592
|
showCurrentTempTimer.start();
}
|
8c2952457
김태훈
응용 프로그램 추가
|
593
|
|
bb26a0523
김태훈
소스 코드 정리
|
594
595
596
597
598
599
600
601
602
603
604
605
606
|
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
김태훈
수동 요리의 중심 요리 설정 화...
|
607
608
609
610
|
{
CoreTempSettingPopup *p = new CoreTempSettingPopup(this);
p->show();
}
|
8c2952457
김태훈
응용 프로그램 추가
|
611
|
}
|
bb26a0523
김태훈
소스 코드 정리
|
612
|
void ManualCookWindow::on_runStopButton_clicked()
|
8c2952457
김태훈
응용 프로그램 추가
|
613
|
{
|
bb26a0523
김태훈
소스 코드 정리
|
614
|
if (oven->cooking())
|
bb26a0523
김태훈
소스 코드 정리
|
615
|
stop();
|
8c2952457
김태훈
응용 프로그램 추가
|
616
|
else
|
f588aa273
김태훈
부가 기능 로직 추가
|
617
|
start();
|
bb26a0523
김태훈
소스 코드 정리
|
618
619
620
621
622
623
624
625
626
|
}
void ManualCookWindow::on_fanButton_clicked()
{
int fan = oven->fan() + 1;
if (fan > oven->maxFan())
fan = oven->minFan();
oven->setFan(fan);
|
8c2952457
김태훈
응용 프로그램 추가
|
627
628
629
630
|
}
void ManualCookWindow::on_preheatButton_clicked()
{
|
bb26a0523
김태훈
소스 코드 정리
|
631
|
startCookingTimer.stop();
|
4fc65fb81
김태훈
GUI V0.1.6(이 버전으로...
|
632
|
|
05f2a7552
김태훈
image 관리 구조 변경
|
633
634
635
|
PreheatPopup *p = new PreheatPopup(this, oven);
p->setWindowModality(Qt::WindowModal);
p->showFullScreen();
|
8c2952457
김태훈
응용 프로그램 추가
|
636
637
638
639
|
}
void ManualCookWindow::on_damperButton_clicked()
{
|
c598b01b2
김태훈
GUI 업데이트
|
640
641
|
if (oven->damper())
oven->closeDamper();
|
8c2952457
김태훈
응용 프로그램 추가
|
642
|
else
|
c598b01b2
김태훈
GUI 업데이트
|
643
|
oven->openDamper();
|
8c2952457
김태훈
응용 프로그램 추가
|
644
645
646
647
|
}
void ManualCookWindow::on_humidificationButton_clicked()
{
|
c598b01b2
김태훈
GUI 업데이트
|
648
649
|
if (oven->humidification())
oven->stopHumidification();
|
8c2952457
김태훈
응용 프로그램 추가
|
650
|
else
|
c598b01b2
김태훈
GUI 업데이트
|
651
|
oven->startHumidification();
|
8c2952457
김태훈
응용 프로그램 추가
|
652
653
654
655
|
}
void ManualCookWindow::on_repeatButton_clicked()
{
|
213c24135
김태훈
수동 요리 반복 추가
|
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
|
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
김태훈
응용 프로그램 추가
|
676
677
678
679
|
}
void ManualCookWindow::on_cooldownButton_clicked()
{
|
bb26a0523
김태훈
소스 코드 정리
|
680
|
startCookingTimer.stop();
|
cfc2fcc35
김태훈
쿨다운 팝업 추가
|
681
682
683
684
|
CooldownPopup *p = new CooldownPopup(this, oven);
p->setWindowModality(Qt::WindowModal);
p->showFullScreen();
|
8c2952457
김태훈
응용 프로그램 추가
|
685
686
687
688
|
}
void ManualCookWindow::on_reserveButton_clicked()
{
|
0e279295f
김태훈
수동 요리 구현
|
689
690
691
692
693
694
695
696
697
|
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
김태훈
응용 프로그램 추가
|
698
|
}
|
213c24135
김태훈
수동 요리 반복 추가
|
699
|
void ManualCookWindow::on_favoriteButton_clicked()
|
8c2952457
김태훈
응용 프로그램 추가
|
700
|
{
|
f588aa273
김태훈
부가 기능 로직 추가
|
701
702
703
704
705
|
if (oven->cooking())
return;
ConfirmPopup *p = new ConfirmPopup(this, tr("즐겨찾기 항목에 추가하시겠습니까?"));
p->showFullScreen();
|
8c2952457
김태훈
응용 프로그램 추가
|
706
|
|
f588aa273
김태훈
부가 기능 로직 추가
|
707
708
709
710
711
712
713
|
connect(p, SIGNAL(accepted()), SLOT(addFavorite()));
if (startCookingTimer.isActive())
{
startCookingTimer.stop();
connect(p, SIGNAL(rejected()), &startCookingTimer, SLOT(start()));
}
|
8c2952457
김태훈
응용 프로그램 추가
|
714
|
}
|
bb26a0523
김태훈
소스 코드 정리
|
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
|
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
김태훈
부가 기능 로직 추가
|
731
|
|
e00c6a2a9
김태훈
기능 추가 구현
|
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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
|
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
김태훈
부가 기능 로직 추가
|
794
|
{
|
f588aa273
김태훈
부가 기능 로직 추가
|
795
|
|
f588aa273
김태훈
부가 기능 로직 추가
|
796
|
}
|
a2de3cbfc
김태훈
수동 요리에 새 슬라이더 적용
|
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
|
void ManualCookWindow::on_timeSlider_valueChanged()
{
oven->setTime(sliderToTime(ui->timeSlider->value()));
}
int ManualCookWindow::sliderToTime(int value)
{
if (value <= 180)
return value * 60;
if (value <= 270)
return 180 * 60 + (value - 180) * 2 * 60;
return 360 * 60 + (value - 270) * 15 * 60;
}
int ManualCookWindow::timeToSlider(int secs)
{
if (secs <= 180 * 60)
return secs / 60;
if (secs <= 360 * 60)
return 180 + (secs - 180 * 60) / 2 / 60;
return 270 + (secs - 360 * 60) / 15 / 60;
}
|