2f6b55128
김태훈
다중 요리 구현
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "multicookwindow.h"
#include "ui_multicookwindow.h"
#include <QDebug>
#include <QKeyEvent>
#include "multimanualcook.h"
#include "multiautocook.h"
#include "multicookrecorder.h"
#include "multicookselectionwindow.h"
#include "oven.h"
#include "stringer.h"
#include "confirmpopup.h"
#include "configwindow.h"
#include "washwindow.h"
#include "mainwindow.h"
|
1342af7b3
김태훈
도움말 버튼 연결
|
17
|
#include "manualviewerdlg.h"
|
2f6b55128
김태훈
다중 요리 구현
|
18
19
20
21
22
23
24
25
26
27
28
29
30
|
MultiCookWindow::MultiCookWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MultiCookWindow)
{
ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose);
controller = new MultiCookController(this);
container = new MultiCookContainer(this);
controller->setContainer(container);
ui->view->setContainer(container);
ui->view->setTimeBar(ui->bar);
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
31
|
connect(ui->view, SIGNAL(clicked(int)), SLOT(handleViewClick(int)));
|
2f6b55128
김태훈
다중 요리 구현
|
32
33
34
35
36
37
38
39
40
41
42
|
buttons.append(ui->selectButton_1);
buttons.append(ui->selectButton_2);
buttons.append(ui->selectButton_3);
buttons.append(ui->selectButton_4);
buttons.append(ui->selectButton_5);
buttons.append(ui->selectButton_6);
buttons.append(ui->selectButton_7);
buttons.append(ui->selectButton_8);
buttons.append(ui->selectButton_9);
buttons.append(ui->selectButton_10);
|
703beed2b
김태훈
디자인 안 반영
|
43
44
45
46
47
48
|
recentButtons.append(ui->recentButton_1);
recentButtons.append(ui->recentButton_2);
recentButtons.append(ui->recentButton_3);
recentButtons.append(ui->recentButton_4);
recentButtons.append(ui->recentButton_5);
recentButtons.append(ui->recentButton_6);
|
2f6b55128
김태훈
다중 요리 구현
|
49
50
|
mode = Define::InvalidMode;
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
51
52
|
lastClickedEmptyButton = -1;
lastClickedCookButton = -1;
|
703beed2b
김태훈
디자인 안 반영
|
53
|
lastClickedRecentCook = -1;
|
2f6b55128
김태훈
다중 요리 구현
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
trashClicked = false;
updateViewTimer.start(100);
connect(&updateViewTimer, SIGNAL(timeout()), SLOT(updateView()));
setFocus();
ui->closeDoorAnimationArea->hide();
ui->closeDoorAnimation->load(":/images/animation/door_big_09.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_08.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_07.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_06.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_05.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_04.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_03.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_02.png");
ui->closeDoorAnimation->load(":/images/animation/door_big_01.png");
ui->closeDoorAnimation->start(300);
ui->openDoorAnimationArea->hide();
ui->openDoorAnimation->load(":/images/animation/door_big_01.png");
ui->openDoorAnimation->load(":/images/animation/door_big_02.png");
ui->openDoorAnimation->load(":/images/animation/door_big_03.png");
ui->openDoorAnimation->load(":/images/animation/door_big_04.png");
ui->openDoorAnimation->load(":/images/animation/door_big_05.png");
ui->openDoorAnimation->load(":/images/animation/door_big_06.png");
ui->openDoorAnimation->load(":/images/animation/door_big_07.png");
ui->openDoorAnimation->load(":/images/animation/door_big_08.png");
ui->openDoorAnimation->load(":/images/animation/door_big_09.png");
ui->openDoorAnimation->start(300);
}
MultiCookWindow::~MultiCookWindow()
{
delete ui;
Oven::getInstance()->stop();
}
void MultiCookWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000032: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() != this)
pushed = focusWidget();
break;
case 0x01000030: // Turn right
onEncoderRight();
break;
}
}
void MultiCookWindow::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000032: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
case 0x01000030: // Turn right
onEncoderRight();
break;
}
}
void MultiCookWindow::updateView()
{
Oven *oven = Oven::getInstance();
if (controller->requireOpen() && !oven->door())
{
ui->blockingArea->setEnabled(false);
ui->closeDoorAnimationArea->hide();
ui->openDoorAnimationArea->show();
}
else if (controller->requireClose() && oven->door())
{
ui->blockingArea->setEnabled(false);
ui->closeDoorAnimationArea->show();
ui->openDoorAnimationArea->hide();
}
else
{
ui->blockingArea->setEnabled(true);
ui->closeDoorAnimationArea->hide();
ui->openDoorAnimationArea->hide();
}
QTime currentTime = QTime::currentTime();
ui->showNowButton->setText(QString("%1:%2")
.arg(currentTime.hour(), 2, 10, QLatin1Char('0'))
.arg(currentTime.minute(), 2, 10, QLatin1Char('0')));
|
703beed2b
김태훈
디자인 안 반영
|
157
|
QString infoText;
|
2f6b55128
김태훈
다중 요리 구현
|
158
159
160
161
162
163
164
165
|
for (int i = 0; i < 10; i++)
{
QPushButton *button = buttons.at(i);
MultiCook *cook = container->at(i);
if (cook == Q_NULLPTR)
button->setText("-");
else
|
703beed2b
김태훈
디자인 안 반영
|
166
167
168
169
170
171
172
173
174
175
|
{
if (cook->remainingTime() <= 0)
{
if (!infoText.isEmpty())
infoText += "
";
infoText += tr("%1번 단 요리(%2)가 종료되었습니다")
.arg(i + 1).arg(cook->name());
}
|
2f6b55128
김태훈
다중 요리 구현
|
176
|
button->setText(Stringer::time(cook->remainingTime()));
|
703beed2b
김태훈
디자인 안 반영
|
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
}
}
if (!infoText.isEmpty())
{
ui->upperStack->setCurrentIndex(2);
ui->info->setText(infoText);
}
else if (ui->upperStack->currentIndex() == 2)
ui->upperStack->setCurrentIndex(0);
if (ui->upperStack->currentIndex() == 1)
updateRecents();
}
void MultiCookWindow::updateRecents()
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
194
|
if (recents.size() > 0)
|
703beed2b
김태훈
디자인 안 반영
|
195
|
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
196
|
if (recents.size() > 6)
|
703beed2b
김태훈
디자인 안 반영
|
197
198
199
|
{
int currentPage = ui->pageIndicator->currentIndex();
int from = currentPage * 6;
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
200
|
int to = qMin(6, recents.size() - from) + from;
|
703beed2b
김태훈
디자인 안 반영
|
201
202
203
204
205
|
for (int i = from; i < to; i++)
{
QPushButton *b = recentButtons.at(i - from);
b->show();
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
206
|
b->setText(recents.at(i)->name());
|
703beed2b
김태훈
디자인 안 반영
|
207
208
209
210
211
212
213
214
215
216
217
|
}
for (int i = to - from; i < 6; i++)
recentButtons.at(i)->hide();
ui->showNextPageButton->show();
ui->showPrevPageButton->show();
ui->pageIndicator->show();
}
else
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
218
|
int max = qMin(6, recents.size());
|
703beed2b
김태훈
디자인 안 반영
|
219
220
221
222
|
for (int i = 0; i < max; i++)
{
QPushButton *b = recentButtons.at(i);
b->show();
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
223
|
b->setText(recents.at(i)->name());
|
703beed2b
김태훈
디자인 안 반영
|
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
}
for (int i = max; i < 6; i++)
recentButtons.at(i)->hide();
ui->showNextPageButton->hide();
ui->showPrevPageButton->hide();
ui->pageIndicator->hide();
}
}
else
{
foreach (QPushButton *b, recentButtons)
b->hide();
ui->showNextPageButton->hide();
ui->showPrevPageButton->hide();
ui->pageIndicator->hide();
|
2f6b55128
김태훈
다중 요리 구현
|
242
243
|
}
}
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
244
245
246
247
248
249
|
void MultiCookWindow::handleViewClick(int slot)
{
buttons.at(slot)->setFocus();
handleButtonClick(slot);
}
|
2f6b55128
김태훈
다중 요리 구현
|
250
251
|
void MultiCookWindow::handleButtonClick(int button)
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
252
|
if (lastClickedCookButton != -1)
|
703beed2b
김태훈
디자인 안 반영
|
253
|
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
254
|
MultiCook *cook = container->at(lastClickedCookButton);
|
703beed2b
김태훈
디자인 안 반영
|
255
256
|
if (cook)
cook->setTime();
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
257
258
|
lastClickedCookButton = -1;
|
703beed2b
김태훈
디자인 안 반영
|
259
|
}
|
2f6b55128
김태훈
다중 요리 구현
|
260
261
262
263
264
265
266
267
268
269
|
MultiCook *cook = container->at(button);
if (cook)
{
if (trashClicked)
{
trashClicked = false;
container->remove(button);
cook->deleteLater();
}
else
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
270
|
lastClickedCookButton = button;
|
2f6b55128
김태훈
다중 요리 구현
|
271
272
273
|
}
else
{
|
703beed2b
김태훈
디자인 안 반영
|
274
|
if (lastClickedRecentCook != -1)
|
2f6b55128
김태훈
다중 요리 구현
|
275
|
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
276
|
addCook(button, recents.at(lastClickedRecentCook)->clone(this));
|
2f6b55128
김태훈
다중 요리 구현
|
277
|
|
703beed2b
김태훈
디자인 안 반영
|
278
|
lastClickedRecentCook = -1;
|
2f6b55128
김태훈
다중 요리 구현
|
279
280
281
|
}
else
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
282
|
lastClickedEmptyButton = button;
|
2f6b55128
김태훈
다중 요리 구현
|
283
284
285
286
287
288
289
290
|
ui->upperStack->setCurrentIndex(0);
setFocus();
selectCook();
}
}
}
|
703beed2b
김태훈
디자인 안 반영
|
291
|
void MultiCookWindow::handleRecentButtonClick(int button)
|
2f6b55128
김태훈
다중 요리 구현
|
292
|
{
|
703beed2b
김태훈
디자인 안 반영
|
293
|
lastClickedRecentCook = button + ui->pageIndicator->currentIndex() * 6;
|
2f6b55128
김태훈
다중 요리 구현
|
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
}
void MultiCookWindow::selectCook()
{
MultiCookSelectionWindow *w = new MultiCookSelectionWindow(this);
if (mode != Define::InvalidMode)
w->setMode(mode);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
connect(w, SIGNAL(selected(MultiCook*)), SLOT(onCookSelected(MultiCook*)));
}
void MultiCookWindow::onCookSelected(MultiCook *cook)
{
cook->setParent(this);
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
313
|
if (lastClickedEmptyButton != -1)
|
2f6b55128
김태훈
다중 요리 구현
|
314
|
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
315
316
|
addCook(lastClickedEmptyButton, cook);
lastClickedEmptyButton = -1;
|
2f6b55128
김태훈
다중 요리 구현
|
317
318
|
}
}
|
703beed2b
김태훈
디자인 안 반영
|
319
|
void MultiCookWindow::showRecents()
|
2f6b55128
김태훈
다중 요리 구현
|
320
|
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
321
|
recents = MultiCookRecorder::list();
|
2f6b55128
김태훈
다중 요리 구현
|
322
|
|
2f6b55128
김태훈
다중 요리 구현
|
323
|
ui->upperStack->setCurrentIndex(1);
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
324
|
ui->pageIndicator->setMaximum(recents.size() / 6);
|
703beed2b
김태훈
디자인 안 반영
|
325
326
327
|
ui->pageIndicator->setCurrentIndex(0);
updateRecents();
|
2f6b55128
김태훈
다중 요리 구현
|
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
}
void MultiCookWindow::showClock()
{
ui->upperStack->setCurrentIndex(0);
}
void MultiCookWindow::addCook(int slot, MultiCook *cook)
{
mode = cook->mode();
MultiCookRecorder::record(cook);
container->add(slot, cook);
}
void MultiCookWindow::jumpConfig()
{
ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
MainWindow::jump(w);
}
void MultiCookWindow::jumpWash()
{
WashWindow *w = new WashWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
MainWindow::jump(w);
}
void MultiCookWindow::on_showPrevButton_clicked()
{
ui->view->showPrev();
}
void MultiCookWindow::on_showNowButton_clicked()
{
ui->view->showNow();
}
void MultiCookWindow::on_showNextButton_clicked()
{
ui->view->showNext();
}
void MultiCookWindow::on_showFavoritesButton_clicked()
{
if (ui->upperStack->currentIndex() == 0)
|
703beed2b
김태훈
디자인 안 반영
|
380
|
showRecents();
|
2f6b55128
김태훈
다중 요리 구현
|
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
|
else
showClock();
}
void MultiCookWindow::on_backButton_clicked()
{
if (container->isEmpty() || container->isFinished())
{
close();
}
else
{
ConfirmPopup *p = new ConfirmPopup(this, tr("요리를 취소하시겠습니까?"));
p->showFullScreen();
connect(p, SIGNAL(accepted()), SLOT(close()));
}
}
void MultiCookWindow::on_configButton_clicked()
{
if (container->isEmpty() || container->isFinished())
{
jumpConfig();
}
else
{
ConfirmPopup *p = new ConfirmPopup(this, tr("요리를 취소하시겠습니까?"));
p->showFullScreen();
connect(p, SIGNAL(accepted()), SLOT(jumpConfig()));
}
}
void MultiCookWindow::on_washButton_clicked()
{
if (container->isEmpty() || container->isFinished())
{
jumpConfig();
}
else
{
ConfirmPopup *p = new ConfirmPopup(this, tr("요리를 취소하시겠습니까?"));
p->showFullScreen();
connect(p, SIGNAL(accepted()), SLOT(jumpWash()));
}
}
void MultiCookWindow::on_deleteButton_clicked()
{
trashClicked = true;
}
void MultiCookWindow::on_helpButton_clicked()
{
|
1342af7b3
김태훈
도움말 버튼 연결
|
437
438
439
|
ManualViewerDlg* dlg = new ManualViewerDlg(this);
dlg->showFullScreen();
dlg->raise();
|
2f6b55128
김태훈
다중 요리 구현
|
440
441
442
443
444
|
}
void MultiCookWindow::onEncoderLeft()
{
MultiCook *c = Q_NULLPTR;
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
445
446
|
if (lastClickedCookButton != -1)
c = container->at(lastClickedCookButton);
|
2f6b55128
김태훈
다중 요리 구현
|
447
448
449
450
451
452
453
454
455
456
|
if (c)
c->decreaseTime();
else
focusPreviousChild();
}
void MultiCookWindow::onEncoderRight()
{
MultiCook *c = Q_NULLPTR;
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
457
458
|
if (lastClickedCookButton != -1)
c = container->at(lastClickedCookButton);
|
2f6b55128
김태훈
다중 요리 구현
|
459
460
461
462
463
464
465
466
467
468
|
if (c)
c->increaseTime();
else
focusNextChild();
}
void MultiCookWindow::onEncoderClicked(QWidget *clicked)
{
MultiCook *c = Q_NULLPTR;
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
469
|
if (lastClickedCookButton != -1)
|
2f6b55128
김태훈
다중 요리 구현
|
470
|
{
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
471
|
c = container->at(lastClickedCookButton);
|
2f6b55128
김태훈
다중 요리 구현
|
472
|
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
473
|
lastClickedCookButton = -1;
|
2f6b55128
김태훈
다중 요리 구현
|
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
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
|
}
if (c)
c->setTime();
else
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
}
}
void MultiCookWindow::on_selectButton_1_clicked()
{
handleButtonClick(0);
}
void MultiCookWindow::on_selectButton_2_clicked()
{
handleButtonClick(1);
}
void MultiCookWindow::on_selectButton_3_clicked()
{
handleButtonClick(2);
}
void MultiCookWindow::on_selectButton_4_clicked()
{
handleButtonClick(3);
}
void MultiCookWindow::on_selectButton_5_clicked()
{
handleButtonClick(4);
}
void MultiCookWindow::on_selectButton_6_clicked()
{
handleButtonClick(5);
}
void MultiCookWindow::on_selectButton_7_clicked()
{
handleButtonClick(6);
}
void MultiCookWindow::on_selectButton_8_clicked()
{
handleButtonClick(7);
}
void MultiCookWindow::on_selectButton_9_clicked()
{
handleButtonClick(8);
}
void MultiCookWindow::on_selectButton_10_clicked()
{
handleButtonClick(9);
}
|
703beed2b
김태훈
디자인 안 반영
|
535
|
void MultiCookWindow::on_recentButton_1_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
536
|
{
|
703beed2b
김태훈
디자인 안 반영
|
537
|
handleRecentButtonClick(0);
|
2f6b55128
김태훈
다중 요리 구현
|
538
|
}
|
703beed2b
김태훈
디자인 안 반영
|
539
|
void MultiCookWindow::on_recentButton_2_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
540
|
{
|
703beed2b
김태훈
디자인 안 반영
|
541
|
handleRecentButtonClick(1);
|
2f6b55128
김태훈
다중 요리 구현
|
542
|
}
|
703beed2b
김태훈
디자인 안 반영
|
543
|
void MultiCookWindow::on_recentButton_3_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
544
|
{
|
703beed2b
김태훈
디자인 안 반영
|
545
|
handleRecentButtonClick(2);
|
2f6b55128
김태훈
다중 요리 구현
|
546
|
}
|
703beed2b
김태훈
디자인 안 반영
|
547
|
void MultiCookWindow::on_recentButton_4_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
548
|
{
|
703beed2b
김태훈
디자인 안 반영
|
549
|
handleRecentButtonClick(3);
|
2f6b55128
김태훈
다중 요리 구현
|
550
|
}
|
703beed2b
김태훈
디자인 안 반영
|
551
|
void MultiCookWindow::on_recentButton_5_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
552
|
{
|
703beed2b
김태훈
디자인 안 반영
|
553
|
handleRecentButtonClick(4);
|
2f6b55128
김태훈
다중 요리 구현
|
554
|
}
|
703beed2b
김태훈
디자인 안 반영
|
555
|
void MultiCookWindow::on_recentButton_6_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
556
|
{
|
703beed2b
김태훈
디자인 안 반영
|
557
|
handleRecentButtonClick(5);
|
2f6b55128
김태훈
다중 요리 구현
|
558
|
}
|
703beed2b
김태훈
디자인 안 반영
|
559
|
void MultiCookWindow::on_showPrevPageButton_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
560
|
{
|
703beed2b
김태훈
디자인 안 반영
|
561
562
|
ui->pageIndicator->setCurrentIndex(ui->pageIndicator->currentIndex() - 1);
updateView();
|
2f6b55128
김태훈
다중 요리 구현
|
563
|
}
|
703beed2b
김태훈
디자인 안 반영
|
564
|
void MultiCookWindow::on_showNextPageButton_clicked()
|
2f6b55128
김태훈
다중 요리 구현
|
565
|
{
|
703beed2b
김태훈
디자인 안 반영
|
566
567
|
ui->pageIndicator->setCurrentIndex(ui->pageIndicator->currentIndex() + 1);
updateView();
|
2f6b55128
김태훈
다중 요리 구현
|
568
|
}
|
9a89ea55c
김태훈
버그 수정 및 코드 정리
|
569
570
571
572
573
|
void MultiCookWindow::on_homeButton_clicked()
{
close();
}
|