99b8066f4
김태훈
V0.1.1
|
1
2
3
4
|
#include "autocookselectionwindow.h"
#include "ui_autocookselectionwindow.h"
#include <QSignalMapper>
|
6f96c947a
김태훈
GUI 0.1.4
|
5
|
#include <QtDebug>
|
6f1aa03f6
김태훈
엔코더 구현
|
6
|
#include <QKeyEvent>
|
99b8066f4
김태훈
V0.1.1
|
7
|
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
8
|
#include "autocookconfigwindow.h"
|
bbd7d8f29
김태훈
버튼 음향 추가
|
9
|
#include "soundplayer.h"
|
e00c6a2a9
김태훈
기능 추가 구현
|
10
11
12
|
#include "configwindow.h"
#include "washwindow.h"
#include "mainwindow.h"
|
1342af7b3
김태훈
도움말 버튼 연결
|
13
|
#include "manualviewerdlg.h"
|
99b8066f4
김태훈
V0.1.1
|
14
|
|
3f52600cc
김태훈
소스 코드 구조 개선
|
15
|
AutoCookSelectionWindow::AutoCookSelectionWindow(QWidget *parent, Define::CookType type) :
|
99b8066f4
김태훈
V0.1.1
|
16
17
|
QMainWindow(parent),
ui(new Ui::AutoCookSelectionWindow),
|
3f52600cc
김태훈
소스 코드 구조 개선
|
18
|
type(type), autoCookWindowOpened(false)
|
99b8066f4
김태훈
V0.1.1
|
19
20
|
{
ui->setupUi(this);
|
6f96c947a
김태훈
GUI 0.1.4
|
21
|
ui->clockContainer->setParent(ui->upperStack);
|
99b8066f4
김태훈
V0.1.1
|
22
|
setAttribute(Qt::WA_DeleteOnClose);
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
23
|
ui->cookTypeIcon->setPixmap(Define::icon(type));
|
99b8066f4
김태훈
V0.1.1
|
24
|
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
25
|
book = CookBook(type);
|
99b8066f4
김태훈
V0.1.1
|
26
27
28
|
QSignalMapper *sm = new QSignalMapper(this);
connect(sm, SIGNAL(mapped(int)), SLOT(onCookSelected(int)));
|
35b9cc32e
고영탁
다국어 지원 수정 및 메뉴얼 테...
|
29
|
QFont font = this->font();
|
99b8066f4
김태훈
V0.1.1
|
30
31
32
33
34
35
|
font.setPointSize(10);
font.setBold(true);
font.setWeight(75);
QLatin1String stylesheet("QPushButton {
"
|
05f2a7552
김태훈
image 관리 구조 변경
|
36
37
|
"border-image: url(:/images/button/288.png);
"
|
99b8066f4
김태훈
V0.1.1
|
38
39
|
"}
"
|
6f1aa03f6
김태훈
엔코더 구현
|
40
41
|
"QPushButton::pressed, QPushButton:focus {
"
|
05f2a7552
김태훈
image 관리 구조 변경
|
42
43
|
"border-image: url(:/images/button/288_ov.png);
"
|
99b8066f4
김태훈
V0.1.1
|
44
|
"}");
|
f6a046019
김태훈
엔코더 로직 개선
|
45
|
QWidget *last = this;
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
46
|
for (int idx = 0; idx < book.list.size(); idx++)
|
99b8066f4
김태훈
V0.1.1
|
47
|
{
|
99b8066f4
김태훈
V0.1.1
|
48
49
50
51
52
53
54
|
int x = 12 + (idx % 3) * 294;
int y = 615 + (idx / 3) * 80;
QPushButton *pb = new QPushButton(this);
pb->setGeometry(QRect(x, y, 288, 70));
pb->setFont(font);
pb->setStyleSheet(stylesheet);
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
55
|
pb->setText(book.list.at(idx));
|
99b8066f4
김태훈
V0.1.1
|
56
57
58
|
sm->setMapping(pb, idx);
connect(pb, SIGNAL(clicked()), sm, SLOT(map()));
|
6f1aa03f6
김태훈
엔코더 구현
|
59
|
|
f6a046019
김태훈
엔코더 로직 개선
|
60
61
62
|
setTabOrder(last, pb);
last = pb;
|
99b8066f4
김태훈
V0.1.1
|
63
|
}
|
bbd7d8f29
김태훈
버튼 음향 추가
|
64
|
|
f6a046019
김태훈
엔코더 로직 개선
|
65
66
67
68
|
setTabOrder(last, ui->backButton);
setTabOrder(ui->backButton, ui->configButton);
setTabOrder(ui->configButton, ui->washButton);
setTabOrder(ui->washButton, ui->helpButton);
|
bbd7d8f29
김태훈
버튼 음향 추가
|
69
70
|
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
6f1aa03f6
김태훈
엔코더 구현
|
71
72
|
setFocus();
|
99b8066f4
김태훈
V0.1.1
|
73
74
75
76
77
|
}
AutoCookSelectionWindow::~AutoCookSelectionWindow()
{
delete ui;
|
99b8066f4
김태훈
V0.1.1
|
78
|
}
|
6f1aa03f6
김태훈
엔코더 구현
|
79
80
81
82
|
void AutoCookSelectionWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
83
|
case 0x01000032: // Turn left
|
6f1aa03f6
김태훈
엔코더 구현
|
84
85
86
87
88
|
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
89
|
case 0x01000030: // Turn right
|
6f1aa03f6
김태훈
엔코더 구현
|
90
91
92
93
94
95
96
97
98
|
onEncoderRight();
break;
}
}
void AutoCookSelectionWindow::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
99
|
case 0x01000032: // Turn left
|
6f1aa03f6
김태훈
엔코더 구현
|
100
101
102
103
104
105
106
107
|
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
108
|
case 0x01000030: // Turn right
|
6f1aa03f6
김태훈
엔코더 구현
|
109
110
111
112
|
onEncoderRight();
break;
}
}
|
99b8066f4
김태훈
V0.1.1
|
113
114
|
void AutoCookSelectionWindow::onCookSelected(int idx)
{
|
e9e5be516
김태훈
창 전환 후 복귀했을 때 포커스...
|
115
|
setFocus();
|
e00c6a2a9
김태훈
기능 추가 구현
|
116
117
118
119
120
|
AutoCookConfigWindow *w = new AutoCookConfigWindow(this, book.get(idx));
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
}
|
d66d7f5b4
김태훈
GUI 버전 0.1.2
|
121
|
|
e00c6a2a9
김태훈
기능 추가 구현
|
122
123
|
void AutoCookSelectionWindow::on_backButton_clicked()
{
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
124
|
close();
|
e00c6a2a9
김태훈
기능 추가 구현
|
125
126
127
128
129
130
131
132
133
134
135
|
}
void AutoCookSelectionWindow::on_configButton_clicked()
{
ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
MainWindow::jump(w);
}
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
136
|
|
e00c6a2a9
김태훈
기능 추가 구현
|
137
138
139
|
void AutoCookSelectionWindow::on_washButton_clicked()
{
WashWindow *w = new WashWindow(MainWindow::getInstance());
|
6f96c947a
김태훈
GUI 0.1.4
|
140
|
w->setWindowModality(Qt::WindowModal);
|
99b8066f4
김태훈
V0.1.1
|
141
|
w->showFullScreen();
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
142
|
w->raise();
|
e00c6a2a9
김태훈
기능 추가 구현
|
143
144
|
MainWindow::jump(w);
|
99b8066f4
김태훈
V0.1.1
|
145
|
}
|
e00c6a2a9
김태훈
기능 추가 구현
|
146
|
void AutoCookSelectionWindow::on_helpButton_clicked()
|
99b8066f4
김태훈
V0.1.1
|
147
|
{
|
1342af7b3
김태훈
도움말 버튼 연결
|
148
149
150
|
ManualViewerDlg* dlg = new ManualViewerDlg(this, AUTO_COOK_PAGE);
dlg->showFullScreen();
dlg->raise();
|
99b8066f4
김태훈
V0.1.1
|
151
|
}
|
6f1aa03f6
김태훈
엔코더 구현
|
152
153
154
|
void AutoCookSelectionWindow::onEncoderLeft()
{
|
f6a046019
김태훈
엔코더 로직 개선
|
155
|
focusPreviousChild();
|
6f1aa03f6
김태훈
엔코더 구현
|
156
157
158
159
|
}
void AutoCookSelectionWindow::onEncoderRight()
{
|
f6a046019
김태훈
엔코더 로직 개선
|
160
|
focusNextChild();
|
6f1aa03f6
김태훈
엔코더 구현
|
161
162
163
164
165
166
167
168
|
}
void AutoCookSelectionWindow::onEncoderClicked(QWidget *clicked)
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
}
|