Blame view

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