realtimemain.cpp
1.71 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
#include <QKeyEvent>
#include "realtimemain.h"
#include "ui_realtimemain.h"
#include "realtimepartswindow.h"
#include "realtimesensorwindow.h"
#include "soundplayer.h"
RealtimeMain::RealtimeMain(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::RealtimeMain)
{
ui->setupUi(this);
ui->clockContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
}
RealtimeMain::~RealtimeMain()
{
delete ui;
}
void RealtimeMain::on_btnPartsReal_clicked()
{
RealtimePartsWindow* w = new RealtimePartsWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void RealtimeMain::on_btnTemperatureReal_clicked()
{
RealtimeSensorWindow* w = new RealtimeSensorWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void RealtimeMain::on_backButton_clicked()
{
close();
}
void RealtimeMain::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000032: // Turn left
focusPreviousChild();
break;
case 0x01000031: // Push
break;
case 0x01000030: // Turn right
focusNextChild();
break;
}
}
void RealtimeMain::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
case 0x01000032: // Turn left
focusPreviousChild();
break;
case 0x01000031: // Push
{
QPushButton *btn = qobject_cast<QPushButton*>(focusWidget());
if(btn != NULL){
btn->click();
}
break;
}
case 0x01000030: // Turn right
focusNextChild();
break;
}
}