Blame view

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