8597f5496
김태훈
Merge
|
1
2
|
#include "programmingwindow.h"
#include "ui_programmingwindow.h"
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
3
4
|
#include <QPainter>
#include <QtDebug>
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
5
|
#include <QKeyEvent>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
6
7
8
9
|
#include "programmingmanualwindow.h"
#include "programmingselectionwindow.h"
#include "cookprogram.h"
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
10
11
12
|
#include "soundplayer.h"
#include "confirmpopup.h"
#include "programmingnamepopup.h"
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
13
|
|
8597f5496
김태훈
Merge
|
14
15
16
17
18
|
ProgrammingWindow::ProgrammingWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::ProgrammingWindow)
{
ui->setupUi(this);
|
f588aa273
김태훈
부가 기능 로직 추가
|
19
20
21
|
ui->clockContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
22
23
|
setupUi();
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
24
25
26
|
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
51175dd1a
김태훈
엔코더 구현
|
27
28
|
setFocus();
|
8597f5496
김태훈
Merge
|
29
30
31
32
|
}
ProgrammingWindow::~ProgrammingWindow()
{
|
161fae67b
김태훈
버그 수정
|
33
|
CookProgram::discard();
|
8597f5496
김태훈
Merge
|
34
35
|
delete ui;
}
|
f588aa273
김태훈
부가 기능 로직 추가
|
36
|
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
37
38
39
40
41
42
43
44
|
void ProgrammingWindow::listAuto()
{
if (!ui->autoButton->isChecked())
{
ui->autoButton->blockSignals(true);
ui->autoButton->setChecked(true);
ui->autoButton->blockSignals(false);
}
|
51175dd1a
김태훈
엔코더 구현
|
45
46
|
if (ui->manualButton->isChecked())
ui->manualButton->setChecked(false);
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
47
48
49
50
51
52
53
54
55
56
57
|
listButtons(CookProgram::listAuto());
}
void ProgrammingWindow::listManual()
{
if (!ui->manualButton->isChecked())
{
ui->manualButton->blockSignals(true);
ui->manualButton->setChecked(true);
ui->manualButton->blockSignals(false);
}
|
51175dd1a
김태훈
엔코더 구현
|
58
59
|
if (ui->autoButton->isChecked())
ui->autoButton->setChecked(false);
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
60
61
|
listButtons(CookProgram::listManual());
}
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
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
|
void ProgrammingWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000030: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
case 0x01000032: // Turn right
onEncoderRight();
break;
}
}
void ProgrammingWindow::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000030: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
case 0x01000032: // Turn right
onEncoderRight();
break;
}
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
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
|
void ProgrammingWindow::setupUi()
{
ui->verticalScrollLayout->setAlignment(Qt::AlignTop);
QFont font = ui->addButton->font();
font.setPixelSize(30);
int textWidth = QFontMetrics(font).width(tr("추가하기"));
QPixmap iconPix(":/images/etc/bar_icon_03.png");
QPixmap pixmap(QSize(iconPix.width() + 20 + textWidth, ui->addButton->height()));
pixmap.fill(Qt::transparent);
QRect textRect(iconPix.width() + 20, 0, textWidth, pixmap.height());
QPainter painter(&pixmap);
painter.setFont(font);
painter.setPen(Qt::white);
painter.drawText(textRect, Qt::AlignLeft | Qt::AlignVCenter, tr("추가하기"));
painter.drawPixmap(0, (pixmap.height() - iconPix.height()) / 2, iconPix);
QIcon icon(pixmap);
ui->addButton->setIcon(icon);
ui->addButton->setIconSize(pixmap.size());
ui->addButton->hide();
}
void ProgrammingWindow::updateView()
{
if (ui->autoButton->isChecked())
listAuto();
else if (ui->manualButton->isChecked())
listManual();
}
void ProgrammingWindow::listButtons(QList<CookRecord> record)
{
clear();
ui->addButton->show();
|
51175dd1a
김태훈
엔코더 구현
|
137
138
139
140
141
|
setTabOrder(this, ui->autoButton);
setTabOrder(ui->autoButton, ui->manualButton);
setTabOrder(ui->manualButton, ui->addButton);
QWidget *last = ui->addButton;
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
142
|
foreach (CookRecord r, record)
|
51175dd1a
김태훈
엔코더 구현
|
143
144
145
146
147
148
149
150
151
152
153
|
{
CookPanelButton *b = newButton(r);
setTabOrder(last, b->bar());
setTabOrder(b->bar(), b->infoButton());
setTabOrder(b->infoButton(), b->deleteButton());
last = b->deleteButton();
}
setTabOrder(last, ui->backButton);
setTabOrder(ui->backButton, ui->saveButton);
setTabOrder(ui->saveButton, ui->helpButton);
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
ui->scrollAreaWidgetContents->adjustSize();
}
void ProgrammingWindow::clear()
{
lastInfoDisplayed = NULL;
while (!list.isEmpty())
list.takeFirst()->deleteLater();
}
CookPanelButton *ProgrammingWindow::newButton(CookRecord record)
{
CookPanelButton *button = new CookPanelButton(record, this);
connect(button, SIGNAL(infoClicked(CookPanelButton*)), SLOT(onInfoButtonClicked(CookPanelButton*)));
connect(button, SIGNAL(deleteClicked(CookPanelButton*)), SLOT(onDeleteButtonClicked(CookPanelButton*)));
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
170
171
172
|
connect(button, SIGNAL(longPressed(CookPanelButton*)), SLOT(onLongPressed(CookPanelButton*)));
button->setLongPressEnabled(true);
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
173
174
175
176
177
178
|
ui->verticalScrollLayout->addWidget(button);
list.append(button);
return button;
}
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
179
180
181
182
183
184
185
186
187
188
|
void ProgrammingWindow::back()
{
CookProgram::discard();
close();
}
void ProgrammingWindow::save()
{
CookProgram::save();
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
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
|
void ProgrammingWindow::onInfoButtonClicked(CookPanelButton *panelButton)
{
if (lastInfoDisplayed)
{
if (panelButton == lastInfoDisplayed)
{
lastInfoDisplayed->hideInfo();
lastInfoDisplayed = NULL;
ui->scrollAreaWidgetContents->adjustSize();
}
else
{
lastInfoDisplayed->hideInfo();
lastInfoDisplayed = panelButton;
lastInfoDisplayed->showInfo();
ui->scrollAreaWidgetContents->adjustSize();
ui->scrollArea->ensureWidgetVisible(lastInfoDisplayed);
}
}
else
{
lastInfoDisplayed = panelButton;
lastInfoDisplayed->showInfo();
ui->scrollAreaWidgetContents->adjustSize();
ui->scrollArea->ensureWidgetVisible(lastInfoDisplayed);
}
}
void ProgrammingWindow::onDeleteButtonClicked(CookPanelButton *panelButton)
{
if (panelButton == lastInfoDisplayed)
lastInfoDisplayed = NULL;
CookProgram::remove(panelButton->record);
list.removeAll(panelButton);
panelButton->deleteLater();
}
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
230
231
|
void ProgrammingWindow::onLongPressed(CookPanelButton *panelButton)
{
|
964071391
김태훈
길게 눌러 팝업이 뜬 상태로 다...
|
232
|
panelButton->setEnabled(false);
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
233
234
|
ProgrammingNamePopup *p = new ProgrammingNamePopup(this, panelButton->record);
connect(p, SIGNAL(changed()), SLOT(updateView()));
|
964071391
김태훈
길게 눌러 팝업이 뜬 상태로 다...
|
235
|
connect(p, SIGNAL(destroyed(QObject*)), panelButton, SLOT(setEnabled()));
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
236
237
|
p->showFullScreen();
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
void ProgrammingWindow::on_addButton_clicked()
{
ProgrammingSelectionWindow *w = new ProgrammingSelectionWindow(this);
if (ui->autoButton->isChecked())
w->setCookTypeEnabled(true);
else if (ui->manualButton->isChecked())
w->setModeEnabled(true);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
connect(w, SIGNAL(added()), SLOT(updateView()));
}
void ProgrammingWindow::on_autoButton_toggled(bool checked)
{
|
51175dd1a
김태훈
엔코더 구현
|
256
257
258
259
260
261
262
263
264
265
266
|
if (checked)
listAuto();
else
{
if (!ui->manualButton->isChecked())
{
ui->autoButton->blockSignals(true);
ui->autoButton->setChecked(true);
ui->autoButton->blockSignals(false);
}
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
267
268
269
270
|
}
void ProgrammingWindow::on_manualButton_toggled(bool checked)
{
|
51175dd1a
김태훈
엔코더 구현
|
271
272
273
274
275
276
277
278
279
280
281
|
if (checked)
listManual();
else
{
if (!ui->autoButton->isChecked())
{
ui->manualButton->blockSignals(true);
ui->manualButton->setChecked(true);
ui->manualButton->blockSignals(false);
}
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
282
|
}
|
f588aa273
김태훈
부가 기능 로직 추가
|
283
284
|
void ProgrammingWindow::on_backButton_clicked()
{
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
285
286
|
if (CookProgram::isModified())
{
|
39aeb7f29
고영탁
한글화 진행 Programmin...
|
287
|
ConfirmPopup *p = new ConfirmPopup(this, tr("저장하지 않고 돌아가시겠습니까?"));
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
288
289
290
291
292
|
connect(p, SIGNAL(accepted()), SLOT(back()));
p->showFullScreen();
}
else
close();
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
293
294
295
296
|
}
void ProgrammingWindow::on_saveButton_clicked()
{
|
39aeb7f29
고영탁
한글화 진행 Programmin...
|
297
|
ConfirmPopup *p = new ConfirmPopup(this, tr("저장하시겠습니까?"));
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
298
299
|
connect(p, SIGNAL(accepted()), SLOT(save()));
p->showFullScreen();
|
f588aa273
김태훈
부가 기능 로직 추가
|
300
|
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
301
302
303
304
305
|
void ProgrammingWindow::on_helpButton_clicked()
{
}
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
306
307
308
309
|
void ProgrammingWindow::onEncoderLeft()
{
focusPreviousChild();
|
51175dd1a
김태훈
엔코더 구현
|
310
|
ui->scrollArea->ensureWidgetVisible(focusWidget());
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
311
312
313
314
315
|
}
void ProgrammingWindow::onEncoderRight()
{
focusNextChild();
|
51175dd1a
김태훈
엔코더 구현
|
316
|
ui->scrollArea->ensureWidgetVisible(focusWidget());
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
317
318
319
320
321
322
323
324
|
}
void ProgrammingWindow::onEncoderClicked(QWidget *clicked)
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
}
|