#include "autocookselectionwindow.h" #include "ui_autocookselectionwindow.h" #include #include #include "autocookconfigwindow.h" #include "soundplayer.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()) connect(button, &QPushButton::pressed, SoundPlayer::playClick); } AutoCookSelectionWindow::~AutoCookSelectionWindow() { delete ui; } void AutoCookSelectionWindow::onCookSelected(int idx) { if (autoCookWindowOpened) return; autoCookWindowOpened = true; close(); AutoCookConfigWindow *w = new AutoCookConfigWindow(parentWidget(), book.get(idx)); w->setWindowModality(Qt::WindowModal); w->showFullScreen(); w->raise(); } void AutoCookSelectionWindow::on_backButton_clicked() { close(); }