servicehistorymain.cpp
1.52 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
#include "servicehistorymain.h"
#include "ui_servicehistorymain.h"
#include "historylistwindow.h"
#include "soundplayer.h"
ServiceHistoryMain::ServiceHistoryMain(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::ServiceHistoryMain)
{
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(released()), this, SLOT(close()));
}
ServiceHistoryMain::~ServiceHistoryMain()
{
delete ui;
}
void ServiceHistoryMain::on_btnUpperBunner_clicked()
{
HistoryListWindow *w = new HistoryListWindow(this);
w->setWindosDataSet(ERROR_HISTORY_UPPERBUNNER);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void ServiceHistoryMain::on_btnSteamBunner_clicked()
{
HistoryListWindow *w = new HistoryListWindow(this);
w->setWindosDataSet(ERROR_HISTORY_STEAMBUNNER);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void ServiceHistoryMain::on_btnLowerBunner_clicked()
{
HistoryListWindow *w = new HistoryListWindow(this);
w->setWindosDataSet(ERROR_HISTORY_LOWERBUNNER);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void ServiceHistoryMain::on_btnErrorTotal_clicked()
{
HistoryListWindow *w = new HistoryListWindow(this);
w->setWindosDataSet(ERROR_HISTORY_TOTAL);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}