81b835e59
김태훈
한글 폰트 변경
|
1
2
|
#include "programmingselectionwindow.h"
#include "ui_programmingselectionwindow.h"
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
3
|
#include <QKeyEvent>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
4
|
#include "programmingmanualwindow.h"
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
5
6
|
#include "programmingautoselectionwindow.h"
#include "soundplayer.h"
|
95a9aa99d
김태훈
기능 보충 구현
|
7
8
|
#include "configwindow.h"
#include "mainwindow.h"
|
1342af7b3
김태훈
도움말 버튼 연결
|
9
|
#include "manualviewerdlg.h"
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
10
|
|
81b835e59
김태훈
한글 폰트 변경
|
11
12
13
14
15
|
ProgrammingSelectionWindow::ProgrammingSelectionWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::ProgrammingSelectionWindow)
{
ui->setupUi(this);
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
16
|
|
2f6b55128
김태훈
다중 요리 구현
|
17
|
ui->clockContainer->setParent(ui->upperStack);
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
18
19
20
|
setAttribute(Qt::WA_DeleteOnClose);
setFocus();
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
21
22
23
|
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
81b835e59
김태훈
한글 폰트 변경
|
24
25
26
27
28
29
|
}
ProgrammingSelectionWindow::~ProgrammingSelectionWindow()
{
delete ui;
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
void ProgrammingSelectionWindow::setModeEnabled(bool enabled)
{
ui->steamButton->setEnabled(enabled);
ui->combiButton->setEnabled(enabled);
ui->dryheatButton->setEnabled(enabled);
}
void ProgrammingSelectionWindow::setCookTypeEnabled(bool enabled)
{
ui->poultryButton->setEnabled(enabled);
ui->meatButton->setEnabled(enabled);
ui->fishButton->setEnabled(enabled);
ui->dessertButton->setEnabled(enabled);
ui->grainButton->setEnabled(enabled);
ui->breadButton->setEnabled(enabled);
ui->etcButton->setEnabled(enabled);
}
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
48
49
50
51
|
void ProgrammingSelectionWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
52
|
case 0x01000032: // Turn left
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
53
54
55
56
57
|
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
58
|
case 0x01000030: // Turn right
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
59
60
61
62
63
64
65
66
67
|
onEncoderRight();
break;
}
}
void ProgrammingSelectionWindow::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
68
|
case 0x01000032: // Turn left
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
69
70
71
72
73
74
75
76
|
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
77
|
case 0x01000030: // Turn right
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
onEncoderRight();
break;
}
}
void ProgrammingSelectionWindow::onEncoderLeft()
{
focusPreviousChild();
}
void ProgrammingSelectionWindow::onEncoderRight()
{
focusNextChild();
}
void ProgrammingSelectionWindow::onEncoderClicked(QWidget *clicked)
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
}
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
99
100
|
void ProgrammingSelectionWindow::onModeClicked(Define::Mode mode)
{
|
51175dd1a
김태훈
엔코더 구현
|
101
|
setFocus();
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
102
103
|
ProgrammingManualWindow *w = new ProgrammingManualWindow(this, mode);
connect(w, SIGNAL(added()), SIGNAL(added()));
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
104
105
|
connect(w, SIGNAL(added()), SLOT(hide()));
connect(w, SIGNAL(added()), SLOT(close()));
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
106
107
108
|
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
109
110
111
112
|
}
void ProgrammingSelectionWindow::onCookTypeClicked(Define::CookType type)
{
|
51175dd1a
김태훈
엔코더 구현
|
113
|
setFocus();
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
114
115
116
117
118
119
120
|
ProgrammingAutoSelectionWindow *w = new ProgrammingAutoSelectionWindow(this, type);
connect(w, SIGNAL(added()), SIGNAL(added()));
connect(w, SIGNAL(added()), SLOT(hide()));
connect(w, SIGNAL(added()), SLOT(close()));
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
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
|
}
void ProgrammingSelectionWindow::on_steamButton_clicked()
{
onModeClicked(Define::SteamMode);
}
void ProgrammingSelectionWindow::on_combiButton_clicked()
{
onModeClicked(Define::CombiMode);
}
void ProgrammingSelectionWindow::on_dryheatButton_clicked()
{
onModeClicked(Define::DryMode);
}
void ProgrammingSelectionWindow::on_poultryButton_clicked()
{
onCookTypeClicked(Define::Poultry);
}
void ProgrammingSelectionWindow::on_meatButton_clicked()
{
onCookTypeClicked(Define::Meat);
}
void ProgrammingSelectionWindow::on_fishButton_clicked()
{
onCookTypeClicked(Define::Fish);
}
void ProgrammingSelectionWindow::on_dessertButton_clicked()
{
onCookTypeClicked(Define::Desert);
}
void ProgrammingSelectionWindow::on_grainButton_clicked()
{
onCookTypeClicked(Define::Vegetable);
}
void ProgrammingSelectionWindow::on_breadButton_clicked()
{
onCookTypeClicked(Define::Bread);
}
void ProgrammingSelectionWindow::on_etcButton_clicked()
{
onCookTypeClicked(Define::Etc);
}
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
172
173
174
175
176
177
178
179
|
void ProgrammingSelectionWindow::on_backButton_clicked()
{
close();
}
void ProgrammingSelectionWindow::on_configButton_clicked()
{
|
95a9aa99d
김태훈
기능 보충 구현
|
180
181
182
183
|
ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
184
|
|
95a9aa99d
김태훈
기능 보충 구현
|
185
|
MainWindow::jump(w);
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
186
187
188
189
|
}
void ProgrammingSelectionWindow::on_helpButton_clicked()
{
|
1342af7b3
김태훈
도움말 버튼 연결
|
190
191
192
|
ManualViewerDlg* dlg = new ManualViewerDlg(this);
dlg->showFullScreen();
dlg->raise();
|
382b586e9
김태훈
프로그래밍 모드 임시 구현
|
193
194
195
196
197
198
|
}
void ProgrammingSelectionWindow::on_okButton_clicked()
{
close();
}
|