manualcookfinishpopup.cpp
2.25 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#include "manualcookfinishpopup.h"
#include "ui_manualcookfinishpopup.h"
#include <QKeyEvent>
#include "soundplayer.h"
ManualCookFinishPopup::ManualCookFinishPopup(QWidget *parent, bool keepWarmStartable) :
QWidget(parent),
ui(new Ui::ManualCookFinishPopup)
{
ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose);
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
ui->warmupButton->setEnabled(keepWarmStartable);
ui->background->setFocus();
}
ManualCookFinishPopup::~ManualCookFinishPopup()
{
delete ui;
}
void ManualCookFinishPopup::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000032: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
case 0x01000030: // Turn right
onEncoderRight();
break;
}
}
void ManualCookFinishPopup::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000032: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
case 0x01000030: // Turn right
onEncoderRight();
break;
}
}
void ManualCookFinishPopup::onEncoderLeft()
{
QWidget *focused = focusWidget();
if (focused == ui->background)
ui->okButton->setFocus();
else
focusPreviousChild();
}
void ManualCookFinishPopup::onEncoderRight()
{
if (focusWidget() == ui->okButton)
ui->background->setFocus();
else
focusNextChild();
}
void ManualCookFinishPopup::onEncoderClicked(QWidget *clicked)
{
if (clicked == ui->background)
{
close();
return;
}
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
{
b->click();
return;
}
}
void ManualCookFinishPopup::on_closeButton_clicked()
{
close();
}
void ManualCookFinishPopup::on_closeButton_2_clicked()
{
close();
}
void ManualCookFinishPopup::on_warmupButton_clicked()
{
close();
emit keepWarm();
}
void ManualCookFinishPopup::on_okButton_clicked()
{
close();
}