8c2952457
김태훈
응용 프로그램 추가
|
1
2
|
#include "functiontestwindow.h"
#include "ui_functiontestwindow.h"
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
3
|
#include <QKeyEvent>
|
8c2952457
김태훈
응용 프로그램 추가
|
4
5
6
7
8
9
|
#include "burnertestwindow.h"
#include "componenttestwindow.h"
#include "valvetestwindow.h"
#include "washtestwindow.h"
#include "fantestwindow.h"
#include "gastestwindow.h"
|
66e60ceb5
김태훈
모든 버튼에 음향 효과 추가
|
10
|
#include "soundplayer.h"
|
878f5d85f
고영탁
가스식 rpm 설정 기능 추가
|
11
12
13
14
15
|
#include "config.h"
#include "yesnopopupdlg.h"
#include "notipopupdlg.h"
#include "usbcheckpopupdlg.h"
#include "fileprocessor.h"
|
8c2952457
김태훈
응용 프로그램 추가
|
16
|
|
538041ab9
김태훈
소스 코드 구조 개선
|
17
|
FunctionTestWindow::FunctionTestWindow(QWidget *parent) :
|
8c2952457
김태훈
응용 프로그램 추가
|
18
|
QMainWindow(parent),
|
538041ab9
김태훈
소스 코드 구조 개선
|
19
|
ui(new Ui::FunctionTestWindow)
|
8c2952457
김태훈
응용 프로그램 추가
|
20
21
|
{
ui->setupUi(this);
|
6f96c947a
김태훈
GUI 0.1.4
|
22
|
|
8c2952457
김태훈
응용 프로그램 추가
|
23
|
ui->clockContainer->setParent(ui->upperStack);
|
6f96c947a
김태훈
GUI 0.1.4
|
24
|
setAttribute(Qt::WA_DeleteOnClose);
|
66e60ceb5
김태훈
모든 버튼에 음향 효과 추가
|
25
26
|
foreach (QPushButton *button, findChildren<QPushButton *>())
connect(button, &QPushButton::pressed, SoundPlayer::playClick);
|
22f83e90f
김태훈
모델 설정 UI 추가
|
27
|
connect(ui->backButton, SIGNAL(clicked(bool)), SLOT(close()));
|
8c2952457
김태훈
응용 프로그램 추가
|
28
29
30
31
32
33
|
}
FunctionTestWindow::~FunctionTestWindow()
{
delete ui;
}
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
34
35
36
37
|
void FunctionTestWindow::keyPressEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
38
|
case 0x01000032: // Turn left
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
39
40
41
42
43
|
onEncoderLeft();
break;
case 0x01000031: // Push
pushed = focusWidget();
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
44
|
case 0x01000030: // Turn right
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
45
46
47
48
49
50
51
52
53
|
onEncoderRight();
break;
}
}
void FunctionTestWindow::keyReleaseEvent(QKeyEvent *event)
{
switch (event->key())
{
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
54
|
case 0x01000032: // Turn left
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
55
56
57
58
59
60
61
62
|
onEncoderLeft();
break;
case 0x01000031: // Push
if (focusWidget() == pushed)
onEncoderClicked(pushed);
pushed = NULL;
break;
|
01249f413
김태훈
엔코더 방향 반전. 하드웨어가 변경됨
|
63
|
case 0x01000030: // Turn right
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
64
65
66
67
|
onEncoderRight();
break;
}
}
|
8c2952457
김태훈
응용 프로그램 추가
|
68
69
|
void FunctionTestWindow::on_burnerTestButton_clicked()
{
|
538041ab9
김태훈
소스 코드 구조 개선
|
70
|
BurnerTestWindow *w = new BurnerTestWindow(this);
|
8c2952457
김태훈
응용 프로그램 추가
|
71
72
73
74
75
|
w->showFullScreen();
}
void FunctionTestWindow::on_componentTestButton_clicked()
{
|
538041ab9
김태훈
소스 코드 구조 개선
|
76
|
ComponentTestWindow *w = new ComponentTestWindow(this);
|
8c2952457
김태훈
응용 프로그램 추가
|
77
78
79
80
81
|
w->showFullScreen();
}
void FunctionTestWindow::on_valveTestButton_clicked()
{
|
538041ab9
김태훈
소스 코드 구조 개선
|
82
|
ValveTestWindow *w = new ValveTestWindow(this);
|
8c2952457
김태훈
응용 프로그램 추가
|
83
84
85
86
87
|
w->showFullScreen();
}
void FunctionTestWindow::on_washTestButton_clicked()
{
|
538041ab9
김태훈
소스 코드 구조 개선
|
88
|
WashTestWindow *w = new WashTestWindow(this);
|
8c2952457
김태훈
응용 프로그램 추가
|
89
90
91
92
93
|
w->showFullScreen();
}
void FunctionTestWindow::on_fanTestButton_clicked()
{
|
538041ab9
김태훈
소스 코드 구조 개선
|
94
|
FanTestWindow *w = new FanTestWindow(this);
|
8c2952457
김태훈
응용 프로그램 추가
|
95
96
97
98
99
|
w->showFullScreen();
}
void FunctionTestWindow::on_gasTestButton_clicked()
{
|
4fc65fb81
김태훈
GUI V0.1.6(이 버전으로...
|
100
|
// GasTestWindow *w = new GasTestWindow(this, udp);
|
9e1f8d093
김태훈
엔코더 구현 대비 선행 수정
|
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
// w->showFullScreen();
}
void FunctionTestWindow::onEncoderLeft()
{
focusPreviousChild();
}
void FunctionTestWindow::onEncoderRight()
{
focusNextChild();
}
void FunctionTestWindow::onEncoderClicked(QWidget *clicked)
{
QPushButton *b = qobject_cast<QPushButton *>(clicked);
if (b)
b->click();
|
8c2952457
김태훈
응용 프로그램 추가
|
119
|
}
|
878f5d85f
고영탁
가스식 rpm 설정 기능 추가
|
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
bool FunctionTestWindow::readFromRpmFilea(QMap<QString, uint32_t> &rpm_map, const QString &filename){
QFile file(filename);
QString label;
uint32_t value;
if(file.open(QIODevice::ReadOnly | QIODevice::Text)){
while(!file.atEnd()){
QString line = QString::fromUtf8(file.readLine());
rpm_map[line.section(',',0,0)] = line.section(',',1,1).toUInt();
}
qDebug() << file.fileName() << "read OK!";
qDebug() << "final size " << rpm_map.size();
return true;
}
else {
qDebug() << file.fileName() + " file not found";
}
return false;
}
void FunctionTestWindow::on_adjustBlowerFan_clicked()
{
QString strUsbPath;
Config* cfg = Config::getInstance();
Define::config_item item;
YesNoPopupDlg* yesDlg = new YesNoPopupDlg(this,tr("RPM 설정을 바꾸시겠습니까?"));
yesDlg->exec();
if(yesDlg->result()!=QDialog::Accepted){
return;
}
QMap<QString, uint32_t> rpm_infos;
rpm_infos["config_burner1_pwr1_normal_rpm"] = 4000;
rpm_infos["config_burner1_pwr2_normal_rpm"] = 6000;
rpm_infos["config_burner23_pwr1_normal_rpm"] = 2300;
rpm_infos["config_burner23_pwr2_normal_rpm"] = 6500;
rpm_infos["config_burner1_pwr1_half_rpm"] = 4000;
rpm_infos["config_burner1_pwr2_half_rpm"] = 4500;
rpm_infos["config_burner23_pwr1_half_rpm"] = 2300;
rpm_infos["config_burner23_pwr2_half_rpm"] = 4500;
if(!FileProcessor::detectUSB(strUsbPath)){
UsbCheckPopupDlg* usbDlg = new UsbCheckPopupDlg(this);
usbDlg->exec();
if(usbDlg->result() != QDialog::Accepted){
NotiPopupDlg* notidlg= new NotiPopupDlg(this,tr("USB 메모리가 인식되지 않았습니다."));
notidlg->exec();
return;
}
}
FileProcessor::detectUSB(strUsbPath);
strUsbPath = QString("%1%2").arg(strUsbPath).arg(QString(RPM_INFO_FILE_NAME));
if(readFromRpmFilea(rpm_infos,strUsbPath)){
YesNoPopupDlg* dlg = new YesNoPopupDlg(this, tr("송풍기 교정을 하시겠습니까?"));
item.d32 = rpm_infos["config_burner1_pwr1_normal_rpm"];
cfg->setConfigValue(Define::config_burner1_pwr1_normal_rpm, item);
item.d32 = rpm_infos["config_burner1_pwr2_normal_rpm"];
cfg->setConfigValue(Define::config_burner1_pwr2_normal_rpm, item);
item.d32 = rpm_infos["config_burner23_pwr1_normal_rpm"];
cfg->setConfigValue(Define::config_burner23_pwr1_normal_rpm,item);
item.d32 = rpm_infos["config_burner23_pwr2_normal_rpm"];
cfg->setConfigValue(Define::config_burner23_pwr2_normal_rpm, item);
item.d32 = rpm_infos["config_burner1_pwr1_half_rpm"];
cfg->setConfigValue(Define::config_burner1_pwr1_half_rpm,item);
item.d32 = rpm_infos["config_burner1_pwr2_half_rpm"];
cfg->setConfigValue(Define::config_burner1_pwr2_half_rpm, item);
item.d32 = rpm_infos["config_burner23_pwr1_half_rpm"];
cfg->setConfigValue(Define::config_burner23_pwr1_half_rpm,item);
item.d32 = rpm_infos["config_burner23_pwr2_half_rpm"];
cfg->setConfigValue(Define::config_burner23_pwr2_half_rpm,item);
cfg->saveConfig();
cfg->applyConfig();
item = cfg->getConfigValue(Define::config_burner23_pwr2_half_rpm);
qDebug() << item.d32;
NotiPopupDlg* notidlg = new NotiPopupDlg(this,tr("적용 되었습니다."));
notidlg->exec();
}
else{
NotiPopupDlg* notidlg = new NotiPopupDlg(this,tr("설정 파일이 없습니다."));
notidlg->exec();
}
}
|