engineermenuwindow.cpp
1.82 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 "engineermenuwindow.h"
#include "ui_engineermenuwindow.h"
#include "servicehistorymain.h"
#include "operationtimemain.h"
#include "realtimemain.h"
#include "functiontestwindow.h"
#include "ovenstatics.h"
#include "adjustmentwindow.h"
#include "modelsettingwindow.h"
EngineerMenuWindow::EngineerMenuWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::EngineerMenuWindow)
{
ui->setupUi(this);
ui->clockContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
connect(ui->backButton, SIGNAL(released()), this, SLOT(close()));
}
EngineerMenuWindow::~EngineerMenuWindow()
{
delete ui;
}
void EngineerMenuWindow::on_serviceHistoryButton_clicked()
{
ServiceHistoryMain *w = new ServiceHistoryMain(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void EngineerMenuWindow::on_operationTimeButton_clicked()
{
OperationTimeMain *w = new OperationTimeMain(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void EngineerMenuWindow::on_realDataButton_clicked()
{
RealtimeMain* w = new RealtimeMain(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
}
void EngineerMenuWindow::on_functionTestButton_clicked()
{
FunctionTestWindow *w = new FunctionTestWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
}
void EngineerMenuWindow::on_engAdjustButton_clicked()
{
AdjustmentWindow *w = new AdjustmentWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
}
void EngineerMenuWindow::on_stdConfigButton_clicked()
{
}
void EngineerMenuWindow::on_modelTypeConfigButton_clicked()
{
ModelSettingWindow *w = new ModelSettingWindow(this);
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
}