Blame view

app/gui/oven_control/servicehistorymain.cpp 1.52 KB
6a965b9f1   고영탁   엔지니어 모드 2차 구현
1
2
3
  #include "servicehistorymain.h"
  #include "ui_servicehistorymain.h"
  #include "historylistwindow.h"
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
4
  #include "soundplayer.h"
6a965b9f1   고영탁   엔지니어 모드 2차 구현
5
14a73498f   김태훈   소스 코드 정리
6
  ServiceHistoryMain::ServiceHistoryMain(QWidget *parent) :
6a965b9f1   고영탁   엔지니어 모드 2차 구현
7
      QMainWindow(parent),
14a73498f   김태훈   소스 코드 정리
8
      ui(new Ui::ServiceHistoryMain)
6a965b9f1   고영탁   엔지니어 모드 2차 구현
9
10
  {
      ui->setupUi(this);
eea7d3d59   김태훈   Segmentation Faul...
11
12
13
  
      ui->clockContainer->setParent(ui->upperStack);
      setAttribute(Qt::WA_DeleteOnClose);
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
14
15
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
eea7d3d59   김태훈   Segmentation Faul...
16
      connect(ui->backButton, SIGNAL(released()), this, SLOT(close()));
6a965b9f1   고영탁   엔지니어 모드 2차 구현
17
  }
14a73498f   김태훈   소스 코드 정리
18
  ServiceHistoryMain::~ServiceHistoryMain()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
19
20
21
  {
      delete ui;
  }
14a73498f   김태훈   소스 코드 정리
22
  void ServiceHistoryMain::on_btnUpperBunner_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
23
  {
14a73498f   김태훈   소스 코드 정리
24
      HistoryListWindow *w = new HistoryListWindow(this);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
25
26
27
28
      w->setWindosDataSet(ERROR_HISTORY_UPPERBUNNER);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
  }
14a73498f   김태훈   소스 코드 정리
29
  void ServiceHistoryMain::on_btnSteamBunner_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
30
  {
14a73498f   김태훈   소스 코드 정리
31
      HistoryListWindow *w = new HistoryListWindow(this);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
32
33
34
35
      w->setWindosDataSet(ERROR_HISTORY_STEAMBUNNER);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
  }
14a73498f   김태훈   소스 코드 정리
36
  void ServiceHistoryMain::on_btnLowerBunner_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
37
  {
14a73498f   김태훈   소스 코드 정리
38
      HistoryListWindow *w = new HistoryListWindow(this);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
39
40
41
42
      w->setWindosDataSet(ERROR_HISTORY_LOWERBUNNER);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
  }
14a73498f   김태훈   소스 코드 정리
43
  void ServiceHistoryMain::on_btnErrorTotal_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
44
  {
14a73498f   김태훈   소스 코드 정리
45
      HistoryListWindow *w = new HistoryListWindow(this);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
46
47
48
49
      w->setWindosDataSet(ERROR_HISTORY_TOTAL);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
  }