Blame view

app/gui/oven_control/engineermenuwindow.cpp 3.53 KB
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"
c12e09d9a   고영탁   교정 UI 및 팝업 추가
8
  #include "adjustmentwindow.h"
22f83e90f   김태훈   모델 설정 UI 추가
9
  #include "modelsettingwindow.h"
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
10
  #include "soundplayer.h"
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
11
12
13
  #include "fileprocessor.h"
  #include "fileprocessdlg.h"
  #include "usbcheckpopupdlg.h"
af27778be   김태훈   HACCP 구현
14
  #include "haccp.h"
652e9cd54   고영탁   Merge
15
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
16
  #include <QKeyEvent>
14a73498f   김태훈   소스 코드 정리
17
  EngineerMenuWindow::EngineerMenuWindow(QWidget *parent) :
652e9cd54   고영탁   Merge
18
      QMainWindow(parent),
14a73498f   김태훈   소스 코드 정리
19
      ui(new Ui::EngineerMenuWindow)
652e9cd54   고영탁   Merge
20
21
  {
      ui->setupUi(this);
63a45681f   고영탁   엔코더 기능 구현
22
      this->setFocus();
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
23
eea7d3d59   김태훈   Segmentation Faul...
24
25
      ui->clockContainer->setParent(ui->upperStack);
      setAttribute(Qt::WA_DeleteOnClose);
c50beef02   고영탁   에러 처리 루틴 및 에러 처리 ...
26
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
27
      connect(ui->backButton, SIGNAL(clicked()), this, SLOT(close()));
069c75507   고영탁   메인 설정 버튼 기능 변경
28
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
29
30
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
af27778be   김태훈   HACCP 구현
31
32
  
      HACCP::engineeringStart();
652e9cd54   고영탁   Merge
33
  }
14a73498f   김태훈   소스 코드 정리
34
  EngineerMenuWindow::~EngineerMenuWindow()
652e9cd54   고영탁   Merge
35
  {
af27778be   김태훈   HACCP 구현
36
      HACCP::done();
652e9cd54   고영탁   Merge
37
38
      delete ui;
  }
6a965b9f1   고영탁   엔지니어 모드 2차 구현
39
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
40
41
42
43
  void EngineerMenuWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
44
      case 0x01000032:    // Turn left
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
45
46
47
48
49
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
50
      case 0x01000030:    // Turn right
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
51
52
53
54
55
56
57
58
59
          onEncoderRight();
          break;
      }
  }
  
  void EngineerMenuWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
60
      case 0x01000032:    // Turn left
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
61
62
63
64
65
66
67
68
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
69
      case 0x01000030:    // Turn right
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
70
71
72
73
          onEncoderRight();
          break;
      }
  }
14a73498f   김태훈   소스 코드 정리
74
  void EngineerMenuWindow::on_serviceHistoryButton_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
75
  {
14a73498f   김태훈   소스 코드 정리
76
      ServiceHistoryMain *w = new ServiceHistoryMain(this);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
77
78
79
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
  }
14a73498f   김태훈   소스 코드 정리
80
  void EngineerMenuWindow::on_operationTimeButton_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
81
  {
14a73498f   김태훈   소스 코드 정리
82
      OperationTimeMain *w = new OperationTimeMain(this);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
83
84
85
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
  }
14a73498f   김태훈   소스 코드 정리
86
  void EngineerMenuWindow::on_realDataButton_clicked()
6a965b9f1   고영탁   엔지니어 모드 2차 구현
87
  {
14a73498f   김태훈   소스 코드 정리
88
      RealtimeMain* w = new RealtimeMain(this);
6a965b9f1   고영탁   엔지니어 모드 2차 구현
89
90
91
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
  }
069c75507   고영탁   메인 설정 버튼 기능 변경
92
14a73498f   김태훈   소스 코드 정리
93
  void EngineerMenuWindow::on_functionTestButton_clicked()
069c75507   고영탁   메인 설정 버튼 기능 변경
94
  {
538041ab9   김태훈   소스 코드 구조 개선
95
      FunctionTestWindow *w = new FunctionTestWindow(this);
069c75507   고영탁   메인 설정 버튼 기능 변경
96
97
98
99
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  }
c12e09d9a   고영탁   교정 UI 및 팝업 추가
100
101
102
103
104
105
106
  
  void EngineerMenuWindow::on_engAdjustButton_clicked()
  {
      AdjustmentWindow *w = new AdjustmentWindow(this);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
3f5f5d4ce   고영탁   디버깅 요청 사항 적용
107
108
109
110
111
  
  }
  
  void EngineerMenuWindow::on_stdConfigButton_clicked()
  {
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
112
113
114
115
116
117
118
119
120
121
122
      QDialog* dlg;
      QString usbPath="";
      if(!FileProcessor::detectUSB(usbPath)){
          dlg = new UsbCheckPopupDlg(this);
          dlg->exec();
      }
      if(FileProcessor::detectUSB(usbPath)){
          qDebug() << "standard upload exe";
          dlg = new FileProcessDlg(this,Define::config_standard_info_upload, false);
          dlg->exec();
      }
c12e09d9a   고영탁   교정 UI 및 팝업 추가
123
  }
22f83e90f   김태훈   모델 설정 UI 추가
124
125
126
127
128
129
130
131
  
  void EngineerMenuWindow::on_modelTypeConfigButton_clicked()
  {
      ModelSettingWindow *w = new ModelSettingWindow(this);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
  }
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
  
  void EngineerMenuWindow::onEncoderLeft()
  {
      focusPreviousChild();
  }
  
  void EngineerMenuWindow::onEncoderRight()
  {
      focusNextChild();
  }
  
  void EngineerMenuWindow::onEncoderClicked(QWidget *clicked)
  {
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
  }