functiontestwindow.cpp
2.6 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
118
119
120
#include "functiontestwindow.h"
#include "ui_functiontestwindow.h"
#include <QKeyEvent>
#include "burnertestwindow.h"
#include "componenttestwindow.h"
#include "valvetestwindow.h"
#include "washtestwindow.h"
#include "fantestwindow.h"
#include "gastestwindow.h"
#include "soundplayer.h"
FunctionTestWindow::FunctionTestWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::FunctionTestWindow)
{
ui->setupUi(this);
ui->clockContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
connect(ui->backButton, SIGNAL(clicked(bool)), SLOT(close()));
}
FunctionTestWindow::~FunctionTestWindow()
{
delete ui;
}
void FunctionTestWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000030: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
case 0x01000032: // Turn right
onEncoderRight();
break;
}
}
void FunctionTestWindow::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000030: // Turn left
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
case 0x01000032: // Turn right
onEncoderRight();
break;
}
}
void FunctionTestWindow::on_burnerTestButton_clicked()
{
BurnerTestWindow *w = new BurnerTestWindow(this);
w->showFullScreen();
}
void FunctionTestWindow::on_componentTestButton_clicked()
{
ComponentTestWindow *w = new ComponentTestWindow(this);
w->showFullScreen();
}
void FunctionTestWindow::on_valveTestButton_clicked()
{
ValveTestWindow *w = new ValveTestWindow(this);
w->showFullScreen();
}
void FunctionTestWindow::on_washTestButton_clicked()
{
WashTestWindow *w = new WashTestWindow(this);
w->showFullScreen();
}
void FunctionTestWindow::on_fanTestButton_clicked()
{
FanTestWindow *w = new FanTestWindow(this);
w->showFullScreen();
}
void FunctionTestWindow::on_gasTestButton_clicked()
{
// GasTestWindow *w = new GasTestWindow(this, udp);
// w->showFullScreen();
}
void FunctionTestWindow::onEncoderLeft()
{
focusPreviousChild();
}
void FunctionTestWindow::onEncoderRight()
{
focusNextChild();
}
void FunctionTestWindow::onEncoderClicked(QWidget *clicked)
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
}