2025-12-30T11:14:28
This commit is contained in:
parent
7ddd2212ab
commit
033ffde4eb
BIN
experiment_data/sample_data/new_20251230_081008.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_081008.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_081232.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_081232.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_081312.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_081312.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_083301.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_083301.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_084257.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_084257.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_084633.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_084633.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_085828.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_085828.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_085852.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_085852.xlsx
Normal file
Binary file not shown.
BIN
experiment_data/sample_data/new_20251230_104446.xlsx
Normal file
BIN
experiment_data/sample_data/new_20251230_104446.xlsx
Normal file
Binary file not shown.
2
src/.vscode/launch.json
vendored
2
src/.vscode/launch.json
vendored
@ -18,7 +18,7 @@
|
||||
],
|
||||
"externalConsole": false,
|
||||
"miDebuggerPath": "D:/qt/Qt5.14.2/5.14.2/mingw73_64/bin/gdb.exe",
|
||||
"visualizerFile": "c:\\Users\\sunqu\\AppData\\Roaming\\Code\\User\\workspaceStorage\\7f93734217a2e383fe34beaf49d497fe\\tonka3000.qtvsctools\\qt.natvis.xml"
|
||||
"visualizerFile": "c:\\Users\\sunqu\\AppData\\Roaming\\Trae CN\\User\\workspaceStorage\\7f93734217a2e383fe34beaf49d497fe\\tonka3000.qtvsctools\\qt.natvis.xml"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -183,7 +183,6 @@ extern QString _smoothnessFileName;
|
||||
void updateFileList();
|
||||
bool isFileExist(const QString &fileName);
|
||||
|
||||
|
||||
}; // namespace Global
|
||||
|
||||
#endif // GLOBAL_H
|
||||
|
||||
@ -919,6 +919,7 @@ void ExperimentSettingForm::slotRecvPhaseInfo(const QByteArray &ba)
|
||||
atmoshpereComboBox->setEnabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// radioButton_OIT_not
|
||||
// radioButton_OIT
|
||||
@ -929,36 +930,28 @@ void ExperimentSettingForm::slotRecvPhaseInfo(const QByteArray &ba)
|
||||
|
||||
logde << "oit value:" << (int)*oitValue;
|
||||
|
||||
if (*oitValue)
|
||||
Global::_experimentInfo.testType = (Global::TestType)*oitValue;
|
||||
|
||||
if (*oitValue == Global::TestType::NoneOIT)
|
||||
{
|
||||
ui->radioButton_OIT->setChecked(false);
|
||||
ui->radioButton_OIT_not->setChecked(true);
|
||||
#if 0
|
||||
QString oitRadioButtonName("radioButton_OIT");
|
||||
QRadioButton *oitRadioButton =
|
||||
qobject_cast<QRadioButton*>(this->findChild<QObject*>(oitRadioButtonName));
|
||||
if(oitRadioButton){
|
||||
oitRadioButton->setChecked(true);
|
||||
}
|
||||
#endif
|
||||
|
||||
Global::_experimentOITFlag = false;
|
||||
|
||||
logde << "Global::_experimentOITFlag = false;";
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->radioButton_OIT->setChecked(true);
|
||||
ui->radioButton_OIT_not->setChecked(false);
|
||||
|
||||
Global::_experimentOITFlag = true;
|
||||
|
||||
logde << "Global::_experimentOITFlag = true;";
|
||||
#if 0
|
||||
QString oitNotRadioButtonName("radioButton_OIT_not");
|
||||
QRadioButton *oitNotRadioButton =
|
||||
qobject_cast<QRadioButton*>(this->findChild<QObject*>(oitNotRadioButtonName));
|
||||
if(oitNotRadioButton){
|
||||
oitNotRadioButton->setChecked(true);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if 0
|
||||
// 设置默认其他类型。
|
||||
u8 *initAtmosphereValue = (data + 73);
|
||||
logde << "initAtmosphereValue:" << (int)(*initAtmosphereValue);
|
||||
@ -972,6 +965,7 @@ void ExperimentSettingForm::slotRecvPhaseInfo(const QByteArray &ba)
|
||||
initialAtmosphereComboBox->setCurrentIndex(*initAtmosphereValue);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
void ExperimentSettingForm::showEvent(QShowEvent *event)
|
||||
@ -981,6 +975,7 @@ void ExperimentSettingForm::showEvent(QShowEvent *event)
|
||||
|
||||
ui->dateTimeLineEdit->setText(internationalFormat);
|
||||
|
||||
#if 0
|
||||
// 测试类型OIT设置
|
||||
if (Global::_experimentInfo.testType == Global::TestType::OIT)
|
||||
{
|
||||
@ -996,6 +991,9 @@ void ExperimentSettingForm::showEvent(QShowEvent *event)
|
||||
ui->radioButton_OIT->setChecked(false);
|
||||
ui->radioButton_OIT_not->setChecked(true);
|
||||
}
|
||||
#endif
|
||||
|
||||
// 初始气氛
|
||||
ui->comboBox_initial_atmosphere->setCurrentIndex((int)Global::_experimentInfo.initialAtmosPhere);
|
||||
ui->comboBox_initial_atmosphere->setCurrentIndex(
|
||||
(int)Global::_experimentInfo.initialAtmosPhere);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user