Blame view

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