mainwindow.cpp
5.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
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
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
281
282
283
284
285
286
287
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QtDebug>
#include <QKeyEvent>
#include "soundplayer.h"
#include "manualcookwindow.h"
#include "autocookselectionwindow.h"
#include "primewindow.h"
#include "programmingwindow.h"
#include "washwindow.h"
#include "configwindow.h"
#include "ovenstatics.h"
#include "notipopupdlg.h"
#include "multicookwindow.h"
#include "manualviewerdlg.h"
MainWindow *MainWindow::instance = NULL;
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
#if MODEL_GRADE > 0
ui->logo->hide();
#else
ui->multiButton->hide();
ui->programmingButton->hide();
#endif
instance = this;
child = NULL;
setFocus();
QList<QPushButton *> buttons = findChildren<QPushButton *>();
foreach (QPushButton *button, buttons)
{
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
connect(button, SIGNAL(clicked()), SLOT(setFocus()));
}
QTimer::singleShot(0, this, SLOT(checkPrevWash()));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::jump(QMainWindow *newChild)
{
if (instance->child)
instance->child->deleteLater();
instance->newChild(newChild);
}
void MainWindow::killChild()
{
if (instance->child)
instance->child->deleteLater();
}
bool MainWindow::killChildCook()
{
if (instance->child && !instance->child->inherits("ConfigWindow"))
{
qDebug() << "kill child";
instance->child->hide();
instance->child->deleteLater();
return true;
}
else
return false;
}
EngineerMenuWindow *MainWindow::getEngineerMenuWindow()
{
return instance->findChild<EngineerMenuWindow *>();
}
void MainWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000032: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
case 0x01000030: // Turn right
onEncoderRight();
break;
}
}
void MainWindow::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 MainWindow::onEncoderLeft()
{
focusPreviousChild();
}
void MainWindow::onEncoderRight()
{
focusNextChild();
}
void MainWindow::onEncoderClicked(QWidget *clicked)
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
}
void MainWindow::checkPrevWash()
{
if (OvenStatistics::getInstance()->loadWashState())
{
NotiPopupDlg *d = new NotiPopupDlg(this, tr("세척이 정상적으로 종료되지 않아\n반드시 세척통을 자동 세척해야 합니다.\n내부를 비워주세요"));
d->setWindowModality(Qt::WindowModal);
d->show();
connect(d, SIGNAL(accepted()), SLOT(on_washButton_clicked()));
}
}
void MainWindow::showManualCookWindow(Define::Mode mode)
{
ManualCookWindow *w = new ManualCookWindow(this, mode);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
newChild(w);
}
void MainWindow::showAutoCookSelectionWindow(Define::CookType type)
{
AutoCookSelectionWindow *w = new AutoCookSelectionWindow(this, type);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
newChild(w);
}
void MainWindow::newChild(QMainWindow *newChild)
{
child = newChild;
connect(newChild, SIGNAL(destroyed(QObject*)), this, SLOT(onChildDestroyed(QObject*)));
}
void MainWindow::onChildDestroyed(QObject *destroyed)
{
if (destroyed == child)
child = NULL;
}
void MainWindow::on_steamButton_clicked()
{
showManualCookWindow(Define::SteamMode);
}
void MainWindow::on_combiButton_clicked()
{
showManualCookWindow(Define::CombiMode);
}
void MainWindow::on_dryheatButton_clicked()
{
showManualCookWindow(Define::DryMode);
}
void MainWindow::on_poultryButton_clicked()
{
showAutoCookSelectionWindow(Define::Poultry);
}
void MainWindow::on_meatButton_clicked()
{
showAutoCookSelectionWindow(Define::Meat);
}
void MainWindow::on_fishButton_clicked()
{
showAutoCookSelectionWindow(Define::Fish);
}
void MainWindow::on_dessertButton_clicked()
{
showAutoCookSelectionWindow(Define::Desert);
}
void MainWindow::on_grainButton_clicked()
{
showAutoCookSelectionWindow(Define::Vegetable);
}
void MainWindow::on_breadButton_clicked()
{
showAutoCookSelectionWindow(Define::Bread);
}
void MainWindow::on_etcButton_clicked()
{
showAutoCookSelectionWindow(Define::Etc);
}
void MainWindow::on_primeButton_clicked()
{
PrimeWindow *w = new PrimeWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
newChild(w);
}
void MainWindow::on_multiButton_clicked()
{
MultiCookWindow *w = new MultiCookWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
newChild(w);
}
void MainWindow::on_programmingButton_clicked()
{
ProgrammingWindow *w = new ProgrammingWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
newChild(w);
}
void MainWindow::on_washButton_clicked()
{
WashWindow *w = new WashWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
newChild(w);
}
void MainWindow::on_configButton_clicked()
{
ConfigWindow *w = new ConfigWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
newChild(w);
}
void MainWindow::on_helpButton_clicked()
{
ManualViewerDlg* dlg = new ManualViewerDlg(this);
dlg->showFullScreen();
dlg->raise();
}