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>
|
99b8066f4
김태훈
V0.1.1
|
6
|
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
7
|
#include "autocookconfigwindow.h"
|
bbd7d8f29
김태훈
버튼 음향 추가
|
8
|
#include "soundplayer.h"
|
e00c6a2a9
김태훈
기능 추가 구현
|
9
10
11
|
#include "configwindow.h"
#include "washwindow.h"
#include "mainwindow.h"
|
99b8066f4
김태훈
V0.1.1
|
12
|
|
3f52600cc
김태훈
소스 코드 구조 개선
|
13
|
AutoCookSelectionWindow::AutoCookSelectionWindow(QWidget *parent, Define::CookType type) :
|
99b8066f4
김태훈
V0.1.1
|
14
15
|
QMainWindow(parent),
ui(new Ui::AutoCookSelectionWindow),
|
3f52600cc
김태훈
소스 코드 구조 개선
|
16
|
type(type), autoCookWindowOpened(false)
|
99b8066f4
김태훈
V0.1.1
|
17
18
|
{
ui->setupUi(this);
|
6f96c947a
김태훈
GUI 0.1.4
|
19
|
ui->clockContainer->setParent(ui->upperStack);
|
99b8066f4
김태훈
V0.1.1
|
20
|
setAttribute(Qt::WA_DeleteOnClose);
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
21
|
ui->cookTypeIcon->setPixmap(Define::icon(type));
|
99b8066f4
김태훈
V0.1.1
|
22
|
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
23
|
book = CookBook(type);
|
99b8066f4
김태훈
V0.1.1
|
24
25
26
27
28
29
30
31
32
33
34
35
|
QSignalMapper *sm = new QSignalMapper(this);
connect(sm, SIGNAL(mapped(int)), SLOT(onCookSelected(int)));
QFont font;
font.setFamily(QStringLiteral("Roboto"));
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
40
41
|
"}
"
"QPushButton::pressed {
"
|
05f2a7552
김태훈
image 관리 구조 변경
|
42
43
|
"border-image: url(:/images/button/288_ov.png);
"
|
99b8066f4
김태훈
V0.1.1
|
44
|
"}");
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
45
|
for (int idx = 0; idx < book.list.size(); idx++)
|
99b8066f4
김태훈
V0.1.1
|
46
|
{
|
99b8066f4
김태훈
V0.1.1
|
47
48
49
50
51
52
53
|
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
김태훈
자동 요리 관련 로직 전면 재작성
|
54
|
pb->setText(book.list.at(idx));
|
99b8066f4
김태훈
V0.1.1
|
55
56
57
58
|
sm->setMapping(pb, idx);
connect(pb, SIGNAL(clicked()), sm, SLOT(map()));
}
|
bbd7d8f29
김태훈
버튼 음향 추가
|
59
60
61
|
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
99b8066f4
김태훈
V0.1.1
|
62
63
64
65
66
|
}
AutoCookSelectionWindow::~AutoCookSelectionWindow()
{
delete ui;
|
99b8066f4
김태훈
V0.1.1
|
67
68
69
70
|
}
void AutoCookSelectionWindow::onCookSelected(int idx)
{
|
e00c6a2a9
김태훈
기능 추가 구현
|
71
72
73
74
75
|
AutoCookConfigWindow *w = new AutoCookConfigWindow(this, book.get(idx));
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
}
|
d66d7f5b4
김태훈
GUI 버전 0.1.2
|
76
|
|
e00c6a2a9
김태훈
기능 추가 구현
|
77
78
|
void AutoCookSelectionWindow::on_backButton_clicked()
{
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
79
|
close();
|
e00c6a2a9
김태훈
기능 추가 구현
|
80
81
82
83
84
85
86
87
88
89
90
|
}
void AutoCookSelectionWindow::on_configButton_clicked()
{
ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
MainWindow::jump(w);
}
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
91
|
|
e00c6a2a9
김태훈
기능 추가 구현
|
92
93
94
|
void AutoCookSelectionWindow::on_washButton_clicked()
{
WashWindow *w = new WashWindow(MainWindow::getInstance());
|
6f96c947a
김태훈
GUI 0.1.4
|
95
|
w->setWindowModality(Qt::WindowModal);
|
99b8066f4
김태훈
V0.1.1
|
96
|
w->showFullScreen();
|
6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
97
|
w->raise();
|
e00c6a2a9
김태훈
기능 추가 구현
|
98
99
|
MainWindow::jump(w);
|
99b8066f4
김태훈
V0.1.1
|
100
|
}
|
e00c6a2a9
김태훈
기능 추가 구현
|
101
|
void AutoCookSelectionWindow::on_helpButton_clicked()
|
99b8066f4
김태훈
V0.1.1
|
102
|
{
|
e00c6a2a9
김태훈
기능 추가 구현
|
103
|
|
99b8066f4
김태훈
V0.1.1
|
104
|
}
|