Blame view

app/gui/oven_control/washtestwindow.cpp 3.36 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
  #include "washtestwindow.h"
  #include "ui_washtestwindow.h"
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
3
  #include <QKeyEvent>
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
4
  #include "soundplayer.h"
538041ab9   김태훈   소스 코드 구조 개선
5
  WashTestWindow::WashTestWindow(QWidget *parent) :
8c2952457   김태훈   응용 프로그램 추가
6
      QMainWindow(parent),
538041ab9   김태훈   소스 코드 구조 개선
7
      ui(new Ui::WashTestWindow)
8c2952457   김태훈   응용 프로그램 추가
8
9
  {
      ui->setupUi(this);
6f96c947a   김태훈   GUI 0.1.4
10
8c2952457   김태훈   응용 프로그램 추가
11
      ui->clockContainer->setParent(ui->upperStack);
6f96c947a   김태훈   GUI 0.1.4
12
      setAttribute(Qt::WA_DeleteOnClose);
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
13
14
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
538041ab9   김태훈   소스 코드 구조 개선
15
      udp = UdpHandler::getInstance();
8c2952457   김태훈   응용 프로그램 추가
16
17
18
      connect(udp, SIGNAL(changed()), this, SLOT(onDataChanged()));
  
      udp->set(TG_OVEN_MODE, 4);
8c2952457   김태훈   응용 프로그램 추가
19
20
21
22
23
24
25
26
27
      udp->turnOn(TG_MANUAL_RELAY);
  
      onDataChanged();
  }
  
  WashTestWindow::~WashTestWindow()
  {
      delete ui;
  }
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  void WashTestWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
      case 0x01000030:    // Turn left
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
      case 0x01000032:    // Turn right
          onEncoderRight();
          break;
      }
  }
  
  void WashTestWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
      case 0x01000030:    // Turn left
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
      case 0x01000032:    // Turn right
          onEncoderRight();
          break;
      }
  }
8c2952457   김태훈   응용 프로그램 추가
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
  void WashTestWindow::onDataChanged()
  {
      if (udp->dp())
          ui->steamPumpButton->setText("STOP");
      else
          ui->steamPumpButton->setText("START");
  
      if (udp->ssp())
          ui->cleanserPumpButton->setText("STOP");
      else
          ui->cleanserPumpButton->setText("START");
  
      if (udp->unp())
          ui->upperPumpButton->setText("STOP");
      else
          ui->upperPumpButton->setText("START");
  }
  
  void WashTestWindow::on_steamPumpButton_clicked()
  {
      if (udp->dp())
          steamPumpOff();
      else
          steamPumpOn();
  }
  
  void WashTestWindow::on_cleanserPumpButton_clicked()
  {
      if (udp->ssp())
          cleanserPumpOff();
      else
          cleanserPumpOn();
  }
  
  void WashTestWindow::on_upperPumpButton_clicked()
  {
      if (udp->unp())
          upperPumpOff();
      else
          upperPumpOn();
  }
  
  void WashTestWindow::on_drainValveStartButton_clicked()
  {
      drainValveOpen();
  }
  
  void WashTestWindow::on_drainValveStopButton_clicked()
  {
      drainValveClose();
  }
  
  void WashTestWindow::on_backButton_clicked()
  {
      steamPumpOff();
      cleanserPumpOff();
      upperPumpOff();
      drainValveClose();
  
      udp->turnOff(TG_MANUAL_RELAY);
8c2952457   김태훈   응용 프로그램 추가
122
6f96c947a   김태훈   GUI 0.1.4
123
      close();
8c2952457   김태훈   응용 프로그램 추가
124
  }
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  void WashTestWindow::onEncoderLeft()
  {
      focusPreviousChild();
  }
  
  void WashTestWindow::onEncoderRight()
  {
      focusNextChild();
  }
  
  void WashTestWindow::onEncoderClicked(QWidget *clicked)
  {
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
  }
8c2952457   김태훈   응용 프로그램 추가
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
  void WashTestWindow::steamPumpOn()
  {
      udp->turnOn(TG_DP);
  }
  
  void WashTestWindow::steamPumpOff()
  {
      udp->turnOff(TG_DP);
  }
  
  void WashTestWindow::cleanserPumpOn()
  {
      udp->turnOn(TG_SSP);
  }
  
  void WashTestWindow::cleanserPumpOff()
  {
      udp->turnOff(TG_SSP);
  }
  
  void WashTestWindow::upperPumpOn()
  {
      udp->turnOn(TG_UNP);
  }
  
  void WashTestWindow::upperPumpOff()
  {
      udp->turnOff(TG_UNP);
  }
  
  void WashTestWindow::drainValveOpen()
  {
      udp->turnOn(TG_DV);
  }
  
  void WashTestWindow::drainValveClose()
  {
      udp->turnOff(TG_DV);
  }