autocookselectionwindow.cpp
2.53 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
#include "autocookselectionwindow.h"
#include "ui_autocookselectionwindow.h"
#include <QSignalMapper>
#include <QtDebug>
#include "autocookconfigwindow.h"
#include "soundplayer.h"
#include "configwindow.h"
#include "washwindow.h"
#include "mainwindow.h"
AutoCookSelectionWindow::AutoCookSelectionWindow(QWidget *parent, Define::CookType type) :
QMainWindow(parent),
ui(new Ui::AutoCookSelectionWindow),
type(type), autoCookWindowOpened(false)
{
ui->setupUi(this);
ui->clockContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
ui->cookTypeIcon->setPixmap(Define::icon(type));
book = CookBook(type);
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 {\n"
"border-image: url(:/images/button/288.png);\n"
"}\n"
"QPushButton::pressed {\n"
"border-image: url(:/images/button/288_ov.png);\n"
"}");
for (int idx = 0; idx < book.list.size(); idx++)
{
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);
pb->setText(book.list.at(idx));
sm->setMapping(pb, idx);
connect(pb, SIGNAL(clicked()), sm, SLOT(map()));
}
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
}
AutoCookSelectionWindow::~AutoCookSelectionWindow()
{
delete ui;
}
void AutoCookSelectionWindow::onCookSelected(int idx)
{
AutoCookConfigWindow *w = new AutoCookConfigWindow(this, book.get(idx));
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
}
void AutoCookSelectionWindow::on_backButton_clicked()
{
close();
}
void AutoCookSelectionWindow::on_configButton_clicked()
{
ConfigWindow *w = new ConfigWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
MainWindow::jump(w);
}
void AutoCookSelectionWindow::on_washButton_clicked()
{
WashWindow *w = new WashWindow(MainWindow::getInstance());
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
MainWindow::jump(w);
}
void AutoCookSelectionWindow::on_helpButton_clicked()
{
}