Blame view

app/gui/oven_control/mainwindow.cpp 6.05 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
  #include "mainwindow.h"
  #include "ui_mainwindow.h"
  
  #include <QtDebug>
0ce283850   김태훈   로터리 엔코더 임시 구현
5
  #include <QKeyEvent>
8c2952457   김태훈   응용 프로그램 추가
6
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
7
  #include "soundplayer.h"
8c2952457   김태훈   응용 프로그램 추가
8
  #include "manualcookwindow.h"
99b8066f4   김태훈   V0.1.1
9
  #include "autocookselectionwindow.h"
b85726132   김태훈   부가 기능 UI 추가
10
  #include "primewindow.h"
8a1db78e6   김태훈   소스 코드 정리
11
12
13
  #include "programmingwindow.h"
  #include "washwindow.h"
  #include "configwindow.h"
569d7a56c   김태훈   기능 구현
14
15
  #include "ovenstatics.h"
  #include "notipopupdlg.h"
2f6b55128   김태훈   다중 요리 구현
16
  #include "multicookwindow.h"
c03c0ecca   고영탁   메뉴얼 보기 기능 추가
17
  #include "manualviewerdlg.h"
8c2952457   김태훈   응용 프로그램 추가
18
e00c6a2a9   김태훈   기능 추가 구현
19
  MainWindow *MainWindow::instance = NULL;
8c2952457   김태훈   응용 프로그램 추가
20
21
22
23
24
  MainWindow::MainWindow(QWidget *parent) :
      QMainWindow(parent),
      ui(new Ui::MainWindow)
  {
      ui->setupUi(this);
0ce283850   김태훈   로터리 엔코더 임시 구현
25
7dd0ae57e   김태훈   CI 변경 및 PSSCO CI 추가
26
27
28
29
  #if MODEL_GRADE == 0
      ui->multiButton->hide();
      ui->programmingButton->hide();
  #elif MODEL_GRADE == 1
2f6b55128   김태훈   다중 요리 구현
30
31
32
33
      ui->logo->hide();
  #else
      ui->multiButton->hide();
      ui->programmingButton->hide();
7dd0ae57e   김태훈   CI 변경 및 PSSCO CI 추가
34
      ui->logo->setPixmap(QPixmap(":/images/symbol/main_logo_pssco.png"));
2f6b55128   김태훈   다중 요리 구현
35
  #endif
e00c6a2a9   김태훈   기능 추가 구현
36
37
      instance = this;
      child = NULL;
0ce283850   김태훈   로터리 엔코더 임시 구현
38
      setFocus();
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
39
40
41
42
43
44
45
  
      QList<QPushButton *> buttons = findChildren<QPushButton *>();
      foreach (QPushButton *button, buttons)
      {
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
          connect(button, SIGNAL(clicked()), SLOT(setFocus()));
      }
569d7a56c   김태훈   기능 구현
46
847a14c2c   김태훈   세척 이어하기 기능 비활성화
47
  #if ENABLE_WASH_RESUMING
569d7a56c   김태훈   기능 구현
48
      QTimer::singleShot(0, this, SLOT(checkPrevWash()));
847a14c2c   김태훈   세척 이어하기 기능 비활성화
49
  #endif
8c2952457   김태훈   응용 프로그램 추가
50
51
52
53
54
55
  }
  
  MainWindow::~MainWindow()
  {
      delete ui;
  }
e00c6a2a9   김태훈   기능 추가 구현
56
57
58
59
  void MainWindow::jump(QMainWindow *newChild)
  {
      if (instance->child)
          instance->child->deleteLater();
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
60
      instance->newChild(newChild);
e00c6a2a9   김태훈   기능 추가 구현
61
  }
7d0288172   김태훈   기능 추가 구현
62
63
  void MainWindow::killChild()
  {
b9fbf85e1   김태훈   코드 컨벤션 유지
64
      if (instance->child)
7d0288172   김태훈   기능 추가 구현
65
          instance->child->deleteLater();
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
66
  }
7d0288172   김태훈   기능 추가 구현
67
a7e8cc0aa   고영탁   버그 및 동작 개선
68
  bool MainWindow::killChildCook()
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
69
70
  {
      if (instance->child && !instance->child->inherits("ConfigWindow"))
a7e8cc0aa   고영탁   버그 및 동작 개선
71
72
73
      {
          qDebug() << "kill child";
          instance->child->hide();
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
74
          instance->child->deleteLater();
a7e8cc0aa   고영탁   버그 및 동작 개선
75
76
          return true;
      }
d20f8d98a   김태훈   엔지니어링 모드 창 중복 실행 ...
77
78
79
80
81
82
83
      else
          return false;
  }
  
  EngineerMenuWindow *MainWindow::getEngineerMenuWindow()
  {
      return instance->findChild<EngineerMenuWindow *>();
7d0288172   김태훈   기능 추가 구현
84
  }
0ce283850   김태훈   로터리 엔코더 임시 구현
85
86
87
88
  void MainWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
89
      case 0x01000032:    // Turn left
8a1db78e6   김태훈   소스 코드 정리
90
          onEncoderLeft();
0ce283850   김태훈   로터리 엔코더 임시 구현
91
92
          break;
      case 0x01000031:    // Push
8a1db78e6   김태훈   소스 코드 정리
93
          pushed = focusWidget();
0ce283850   김태훈   로터리 엔코더 임시 구현
94
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
95
      case 0x01000030:    // Turn right
8a1db78e6   김태훈   소스 코드 정리
96
          onEncoderRight();
0ce283850   김태훈   로터리 엔코더 임시 구현
97
98
99
100
101
102
103
104
          break;
      }
  }
  
  void MainWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
105
      case 0x01000032:    // Turn left
8a1db78e6   김태훈   소스 코드 정리
106
          onEncoderLeft();
0ce283850   김태훈   로터리 엔코더 임시 구현
107
108
          break;
      case 0x01000031:    // Push
8a1db78e6   김태훈   소스 코드 정리
109
110
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
0ce283850   김태훈   로터리 엔코더 임시 구현
111
8a1db78e6   김태훈   소스 코드 정리
112
          pushed = NULL;
0ce283850   김태훈   로터리 엔코더 임시 구현
113
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
114
      case 0x01000030:    // Turn right
8a1db78e6   김태훈   소스 코드 정리
115
          onEncoderRight();
0ce283850   김태훈   로터리 엔코더 임시 구현
116
117
118
          break;
      }
  }
8a1db78e6   김태훈   소스 코드 정리
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  void MainWindow::onEncoderLeft()
  {
      focusPreviousChild();
  }
  
  void MainWindow::onEncoderRight()
  {
      focusNextChild();
  }
  
  void MainWindow::onEncoderClicked(QWidget *clicked)
  {
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
  }
569d7a56c   김태훈   기능 구현
135
136
137
138
139
140
141
142
143
144
145
146
147
  void MainWindow::checkPrevWash()
  {
      if (OvenStatistics::getInstance()->loadWashState())
      {
          NotiPopupDlg *d = new NotiPopupDlg(this, tr("세척이 정상적으로 종료되지 않아
  반드시 세척통을 자동 세척해야 합니다.
  내부를 비워주세요"));
          d->setWindowModality(Qt::WindowModal);
          d->show();
  
          connect(d, SIGNAL(accepted()), SLOT(on_washButton_clicked()));
      }
  }
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
148
  void MainWindow::showManualCookWindow(Define::Mode mode)
538041ab9   김태훈   소스 코드 구조 개선
149
150
151
152
153
  {
      ManualCookWindow *w = new ManualCookWindow(this, mode);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
154
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
155
      newChild(w);
538041ab9   김태훈   소스 코드 구조 개선
156
  }
3f52600cc   김태훈   소스 코드 구조 개선
157
158
159
160
161
162
  void MainWindow::showAutoCookSelectionWindow(Define::CookType type)
  {
      AutoCookSelectionWindow *w = new AutoCookSelectionWindow(this, type);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
163
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
164
165
166
167
168
169
170
171
172
173
174
175
176
      newChild(w);
  }
  
  void MainWindow::newChild(QMainWindow *newChild)
  {
      child = newChild;
      connect(newChild, SIGNAL(destroyed(QObject*)), this, SLOT(onChildDestroyed(QObject*)));
  }
  
  void MainWindow::onChildDestroyed(QObject *destroyed)
  {
      if (destroyed == child)
          child = NULL;
3f52600cc   김태훈   소스 코드 구조 개선
177
  }
538041ab9   김태훈   소스 코드 구조 개선
178
  void MainWindow::on_steamButton_clicked()
8c2952457   김태훈   응용 프로그램 추가
179
  {
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
180
      showManualCookWindow(Define::SteamMode);
8c2952457   김태훈   응용 프로그램 추가
181
  }
538041ab9   김태훈   소스 코드 구조 개선
182
  void MainWindow::on_combiButton_clicked()
8c2952457   김태훈   응용 프로그램 추가
183
  {
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
184
      showManualCookWindow(Define::CombiMode);
538041ab9   김태훈   소스 코드 구조 개선
185
186
187
188
  }
  
  void MainWindow::on_dryheatButton_clicked()
  {
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
189
      showManualCookWindow(Define::DryMode);
8c2952457   김태훈   응용 프로그램 추가
190
  }
99b8066f4   김태훈   V0.1.1
191
192
193
  
  void MainWindow::on_poultryButton_clicked()
  {
3f52600cc   김태훈   소스 코드 구조 개선
194
      showAutoCookSelectionWindow(Define::Poultry);
99b8066f4   김태훈   V0.1.1
195
196
197
198
  }
  
  void MainWindow::on_meatButton_clicked()
  {
3f52600cc   김태훈   소스 코드 구조 개선
199
      showAutoCookSelectionWindow(Define::Meat);
99b8066f4   김태훈   V0.1.1
200
  }
538041ab9   김태훈   소스 코드 구조 개선
201
202
203
204
205
206
207
208
209
210
211
212
213
214
  void MainWindow::on_fishButton_clicked()
  {
      showAutoCookSelectionWindow(Define::Fish);
  }
  
  void MainWindow::on_dessertButton_clicked()
  {
      showAutoCookSelectionWindow(Define::Desert);
  }
  
  void MainWindow::on_grainButton_clicked()
  {
      showAutoCookSelectionWindow(Define::Vegetable);
  }
99b8066f4   김태훈   V0.1.1
215
216
  void MainWindow::on_breadButton_clicked()
  {
3f52600cc   김태훈   소스 코드 구조 개선
217
      showAutoCookSelectionWindow(Define::Bread);
99b8066f4   김태훈   V0.1.1
218
  }
05f2a7552   김태훈   image 관리 구조 변경
219
538041ab9   김태훈   소스 코드 구조 개선
220
221
222
223
  void MainWindow::on_etcButton_clicked()
  {
      showAutoCookSelectionWindow(Define::Etc);
  }
b85726132   김태훈   부가 기능 UI 추가
224
225
  void MainWindow::on_primeButton_clicked()
  {
599b9c350   고영탁   부가기능 복구
226
227
228
229
      PrimeWindow *w = new PrimeWindow(this);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
230
599b9c350   고영탁   부가기능 복구
231
      newChild(w);
b85726132   김태훈   부가 기능 UI 추가
232
  }
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
233
234
  void MainWindow::on_multiButton_clicked()
  {
2f6b55128   김태훈   다중 요리 구현
235
236
237
238
      MultiCookWindow *w = new MultiCookWindow(this);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
239
2f6b55128   김태훈   다중 요리 구현
240
      newChild(w);
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
241
242
243
244
  }
  
  void MainWindow::on_programmingButton_clicked()
  {
2f6b55128   김태훈   다중 요리 구현
245
246
247
248
      ProgrammingWindow *w = new ProgrammingWindow(this);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
249
2f6b55128   김태훈   다중 요리 구현
250
      newChild(w);
ac60b5cec   김태훈   음향 효과 일부 적용 및 소스 ...
251
  }
05f2a7552   김태훈   image 관리 구조 변경
252
253
  void MainWindow::on_washButton_clicked()
  {
538041ab9   김태훈   소스 코드 구조 개선
254
255
256
257
      WashWindow *w = new WashWindow(this);
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
258
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
259
      newChild(w);
538041ab9   김태훈   소스 코드 구조 개선
260
261
262
263
  }
  
  void MainWindow::on_configButton_clicked()
  {
f588aa273   김태훈   부가 기능 로직 추가
264
      ConfigWindow *w = new ConfigWindow(this);
453d18662   김태훈   GUI 버전 0.1.11
265
266
267
      w->setWindowModality(Qt::WindowModal);
      w->showFullScreen();
      w->raise();
e00c6a2a9   김태훈   기능 추가 구현
268
f97672f51   김태훈   현재 자식 창이 환경 설정 창이...
269
      newChild(w);
05f2a7552   김태훈   image 관리 구조 변경
270
  }
6a965b9f1   고영탁   엔지니어 모드 2차 구현
271
272
273
  
  void MainWindow::on_helpButton_clicked()
  {
c03c0ecca   고영탁   메뉴얼 보기 기능 추가
274
275
276
      ManualViewerDlg* dlg = new ManualViewerDlg(this);
      dlg->showFullScreen();
      dlg->raise();
6a965b9f1   고영탁   엔지니어 모드 2차 구현
277
  }