Blame view

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