servicehistorymain.cpp
1.28 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
#include "servicehistorymain.h"
#include "ui_servicehistorymain.h"
#include "historylistwindow.h"
serviceHistoryMain::serviceHistoryMain(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::serviceHistoryMain)
{
ui->setupUi(this);
connect(ui->backButton, SIGNAL(released()), this, SLOT(deleteLater()));
}
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();
}