Blame view

app/gui/oven_control/functiontestwindow.cpp 1.56 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"
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
10
  #include "soundplayer.h"
8c2952457   김태훈   응용 프로그램 추가
11
538041ab9   김태훈   소스 코드 구조 개선
12
  FunctionTestWindow::FunctionTestWindow(QWidget *parent) :
8c2952457   김태훈   응용 프로그램 추가
13
      QMainWindow(parent),
538041ab9   김태훈   소스 코드 구조 개선
14
      ui(new Ui::FunctionTestWindow)
8c2952457   김태훈   응용 프로그램 추가
15
16
  {
      ui->setupUi(this);
6f96c947a   김태훈   GUI 0.1.4
17
8c2952457   김태훈   응용 프로그램 추가
18
      ui->clockContainer->setParent(ui->upperStack);
6f96c947a   김태훈   GUI 0.1.4
19
      setAttribute(Qt::WA_DeleteOnClose);
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
20
21
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
22f83e90f   김태훈   모델 설정 UI 추가
22
      connect(ui->backButton, SIGNAL(clicked(bool)), SLOT(close()));
8c2952457   김태훈   응용 프로그램 추가
23
24
25
26
27
28
29
30
31
  }
  
  FunctionTestWindow::~FunctionTestWindow()
  {
      delete ui;
  }
  
  void FunctionTestWindow::on_burnerTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
32
      BurnerTestWindow *w = new BurnerTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
33
34
35
36
37
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_componentTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
38
      ComponentTestWindow *w = new ComponentTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
39
40
41
42
43
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_valveTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
44
      ValveTestWindow *w = new ValveTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
45
46
47
48
49
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_washTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
50
      WashTestWindow *w = new WashTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
51
52
53
54
55
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_fanTestButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
56
      FanTestWindow *w = new FanTestWindow(this);
8c2952457   김태훈   응용 프로그램 추가
57
58
59
60
61
      w->showFullScreen();
  }
  
  void FunctionTestWindow::on_gasTestButton_clicked()
  {
4fc65fb81   김태훈   GUI V0.1.6(이 버전으로...
62
63
  //    GasTestWindow *w = new GasTestWindow(this, udp);
  //    w->showFullScreen();
8c2952457   김태훈   응용 프로그램 추가
64
  }