652e9cd54
고영탁
Merge
|
1
2
|
#include "engineermenuwindow.h"
#include "ui_engineermenuwindow.h"
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
3
4
5
|
#include "servicehistorymain.h"
#include "operationtimemain.h"
#include "realtimemain.h"
|
069c75507
고영탁
메인 설정 버튼 기능 변경
|
6
7
|
#include "functiontestwindow.h"
#include "ovenstatics.h"
|
652e9cd54
고영탁
Merge
|
8
|
|
538041ab9
김태훈
소스 코드 구조 개선
|
9
|
engineermenuwindow::engineermenuwindow(QWidget *parent) :
|
652e9cd54
고영탁
Merge
|
10
|
QMainWindow(parent),
|
538041ab9
김태훈
소스 코드 구조 개선
|
11
|
ui(new Ui::engineermenuwindow)
|
652e9cd54
고영탁
Merge
|
12
13
|
{
ui->setupUi(this);
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
14
15
16
17
18
|
//ui->clockContainer->setParent(ui->upperStack);
//setAttribute(Qt::WA_DeleteOnClose);
connect(ui->backButton, SIGNAL(released()), this, SLOT(deleteLater()));
|
069c75507
고영탁
메인 설정 버튼 기능 변경
|
19
|
|
652e9cd54
고영탁
Merge
|
20
21
22
23
24
25
|
}
engineermenuwindow::~engineermenuwindow()
{
delete ui;
}
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
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();
}
|
069c75507
고영탁
메인 설정 버튼 기능 변경
|
47
48
49
|
void engineermenuwindow::on_functiontestbutton_clicked()
{
|
538041ab9
김태훈
소스 코드 구조 개선
|
50
|
FunctionTestWindow *w = new FunctionTestWindow(this);
|
069c75507
고영탁
메인 설정 버튼 기능 변경
|
51
52
53
54
|
w->setWindowModality(Qt::WindowModal);
w->showFullScreen();
w->raise();
}
|