Blame view

app/gui/oven_control/functiontestwindow.cpp 1.41 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
5
6
7
8
9
  #include "functiontestwindow.h"
  #include "ui_functiontestwindow.h"
  
  #include "burnertestwindow.h"
  #include "componenttestwindow.h"
  #include "valvetestwindow.h"
  #include "washtestwindow.h"
  #include "fantestwindow.h"
  #include "gastestwindow.h"
538041ab9   김태훈   소스 코드 구조 개선
10
  FunctionTestWindow::FunctionTestWindow(QWidget *parent) :
8c2952457   김태훈   응용 프로그램 추가
11
      QMainWindow(parent),
538041ab9   김태훈   소스 코드 구조 개선
12
      ui(new Ui::FunctionTestWindow)
8c2952457   김태훈   응용 프로그램 추가
13
14
  {
      ui->setupUi(this);
6f96c947a   김태훈   GUI 0.1.4
15
8c2952457   김태훈   응용 프로그램 추가
16
      ui->clockContainer->setParent(ui->upperStack);
6f96c947a   김태훈   GUI 0.1.4
17
      setAttribute(Qt::WA_DeleteOnClose);
8c2952457   김태훈   응용 프로그램 추가
18
19
20
21
22
23
24
25
26
27
      connect(ui->backButton, SIGNAL(clicked(bool)), this, SLOT(deleteLater()));
  }
  
  FunctionTestWindow::~FunctionTestWindow()
  {
      delete ui;
  }
  
  void FunctionTestWindow::on_burnerTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
28
      BurnerTestWindow *w = new BurnerTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
29
30
31
32
33
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_componentTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
34
      ComponentTestWindow *w = new ComponentTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
35
36
37
38
39
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_valveTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
40
      ValveTestWindow *w = new ValveTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
41
42
43
44
45
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_washTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
46
      WashTestWindow *w = new WashTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
47
48
49
50
51
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_fanTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
52
      FanTestWindow *w = new FanTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
53
54
55
56
57
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_gasTestButton_clicked()
  {
4fc65fb81   김태훈   GUI V0.1.6(이 버전으로...
58
59
  //    GasTestWindow *w = new GasTestWindow(this, udp);
  //    w->showFullScreen();
8c2952457   김태훈   응용 프로그램 추가
60
  }