8c2952457
김태훈
응용 프로그램 추가
|
1
2
|
#include "washtestwindow.h"
#include "ui_washtestwindow.h"
|
66e60ceb5
김태훈
모든 버튼에 음향 효과 추가
|
3
|
#include "soundplayer.h"
|
538041ab9
김태훈
소스 코드 구조 개선
|
4
|
WashTestWindow::WashTestWindow(QWidget *parent) :
|
8c2952457
김태훈
응용 프로그램 추가
|
5
|
QMainWindow(parent),
|
538041ab9
김태훈
소스 코드 구조 개선
|
6
|
ui(new Ui::WashTestWindow)
|
8c2952457
김태훈
응용 프로그램 추가
|
7
8
|
{
ui->setupUi(this);
|
6f96c947a
김태훈
GUI 0.1.4
|
9
|
|
8c2952457
김태훈
응용 프로그램 추가
|
10
|
ui->clockContainer->setParent(ui->upperStack);
|
6f96c947a
김태훈
GUI 0.1.4
|
11
|
setAttribute(Qt::WA_DeleteOnClose);
|
66e60ceb5
김태훈
모든 버튼에 음향 효과 추가
|
12
13
|
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
538041ab9
김태훈
소스 코드 구조 개선
|
14
|
udp = UdpHandler::getInstance();
|
8c2952457
김태훈
응용 프로그램 추가
|
15
16
17
|
connect(udp, SIGNAL(changed()), this, SLOT(onDataChanged()));
udp->set(TG_OVEN_MODE, 4);
|
8c2952457
김태훈
응용 프로그램 추가
|
18
19
20
21
22
23
24
25
26
27
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
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
|
udp->turnOn(TG_MANUAL_RELAY);
onDataChanged();
}
WashTestWindow::~WashTestWindow()
{
delete ui;
}
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
김태훈
응용 프로그램 추가
|
88
|
|
6f96c947a
김태훈
GUI 0.1.4
|
89
|
close();
|
8c2952457
김태훈
응용 프로그램 추가
|
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
122
123
124
125
126
127
128
129
130
|
}
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);
}
|