modify default values.
This commit is contained in:
parent
0c217eea58
commit
385d30613c
108
acceleration.cpp
108
acceleration.cpp
@ -28,12 +28,120 @@ Acceleration::Acceleration(int slot_no_, int channel_, bool active, QWidget *par
|
|||||||
Init();
|
Init();
|
||||||
connect(ui->checkBox_1x_ampl, &QCheckBox::toggled, this, &Acceleration::on_1x_ampl_toggled);
|
connect(ui->checkBox_1x_ampl, &QCheckBox::toggled, this, &Acceleration::on_1x_ampl_toggled);
|
||||||
connect(ui->checkBox_2x_ampl, &QCheckBox::toggled, this, &Acceleration::on_2x_ampl_toggled);
|
connect(ui->checkBox_2x_ampl, &QCheckBox::toggled, this, &Acceleration::on_2x_ampl_toggled);
|
||||||
|
connect(ui->checkBox_rms, &QCheckBox::toggled, this, &Acceleration::on_rms_toggled);
|
||||||
|
connect(ui->checkBox_integrate, &QCheckBox::toggled, this, &Acceleration::on_integrate_toggled);
|
||||||
}
|
}
|
||||||
|
|
||||||
Acceleration::~Acceleration() {
|
Acceleration::~Acceleration() {
|
||||||
delete ui;
|
delete ui;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Acceleration::on_rms_toggled(bool checked) {
|
||||||
|
// TODO: 自定义的回调
|
||||||
|
if (checked) {
|
||||||
|
if (ui->checkBox_integrate->isChecked()) {
|
||||||
|
QStringList items = {"0-25 mm/s rms", "0-50 mm/s rms", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
} else {
|
||||||
|
QStringList items = {"0-20 m/s^2 rms", "0-50 m/s^2 rms", "0-100 m/s^2 rms", "0-200 m/s^2 rms", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ui->checkBox_integrate->isChecked()) {
|
||||||
|
QStringList items = {"0-25 mm/s pk", "0-50 mm/s pk", "0-100 mm/s pk", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
} else {
|
||||||
|
QStringList items = {"0-20 m/s^2 pk", "0-50 m/s^2 pk", "0-100 m/s^2 pk", "0-200 m/s^2 pk", "0-250 m/s^2 pk", "0-400 m/s^2 pk", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Acceleration::on_integrate_toggled(bool checked) {
|
||||||
|
// TODO: 自定义的回调
|
||||||
|
if (checked) {
|
||||||
|
if (ui->checkBox_rms->isChecked()) {
|
||||||
|
QStringList items = {"0-25 mm/s rms", "0-50 mm/s rms", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
} else {
|
||||||
|
QStringList items = {"0-25 mm/s pk", "0-50 mm/s pk", "0-100 mm/s pk", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ui->checkBox_rms->isChecked()) {
|
||||||
|
QStringList items = {"0-20 m/s^2 rms", "0-50 m/s^2 rms", "0-100 m/s^2 rms", "0-200 m/s^2 rms", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
} else {
|
||||||
|
QStringList items = {"0-20 m/s^2 pk", "0-50 m/s^2 pk", "0-100 m/s^2 pk", "0-200 m/s^2 pk", "0-250 m/s^2 pk", "0-400 m/s^2 pk", "自定义"};
|
||||||
|
ui->comboBox_direct_value_range->clear();
|
||||||
|
ui->comboBox_direct_value_range->addItems(items);
|
||||||
|
ui->comboBox_direct_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_1x_value_range->clear();
|
||||||
|
ui->comboBox_1x_value_range->addItems(items);
|
||||||
|
ui->comboBox_1x_value_range->setCurrentIndex(0);
|
||||||
|
ui->comboBox_2x_value_range->clear();
|
||||||
|
ui->comboBox_2x_value_range->addItems(items);
|
||||||
|
ui->comboBox_2x_value_range->setCurrentIndex(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Acceleration::on_1x_ampl_toggled(bool checked) {
|
void Acceleration::on_1x_ampl_toggled(bool checked) {
|
||||||
if (checked) {
|
if (checked) {
|
||||||
ui->comboBox_1x_value_range->setEnabled(true);
|
ui->comboBox_1x_value_range->setEnabled(true);
|
||||||
|
@ -25,6 +25,8 @@ class Acceleration : public QWidget {
|
|||||||
void on_pushButton_cancel_clicked();
|
void on_pushButton_cancel_clicked();
|
||||||
void on_1x_ampl_toggled(bool checked);
|
void on_1x_ampl_toggled(bool checked);
|
||||||
void on_2x_ampl_toggled(bool checked);
|
void on_2x_ampl_toggled(bool checked);
|
||||||
|
void on_rms_toggled(bool checked);
|
||||||
|
void on_integrate_toggled(bool checked);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::Acceleration *ui;
|
Ui::Acceleration *ui;
|
||||||
|
107
acceleration.ui
107
acceleration.ui
@ -107,7 +107,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>1</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tab">
|
<widget class="QWidget" name="tab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
@ -485,6 +485,41 @@
|
|||||||
<height>16777215</height>
|
<height>16777215</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-20 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-50 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-250 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_direct_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_direct_clamp">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -540,6 +575,41 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-20 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-50 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-250 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_1x_ampl_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_1x_ampl_clamp">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -640,6 +710,41 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-20 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-50 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-250 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 m/s^2 pk</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QCheckBox" name="checkBox_rms">
|
<widget class="QCheckBox" name="checkBox_rms">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
|
@ -376,11 +376,39 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-150 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>0-500 um</string>
|
<string>0-500 um</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_direct_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_direct_clamp">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -391,6 +419,12 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="decimals">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<double>1000.000000000000000</double>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_gap_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_gap_clamp">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -401,6 +435,9 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="decimals">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QComboBox" name="comboBox_1x_value_range">
|
<widget class="QComboBox" name="comboBox_1x_value_range">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -414,11 +451,39 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-150 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>0-500 um</string>
|
<string>0-500 um</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_1x_ampl_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_1x_ampl_clamp">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -432,6 +497,12 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="decimals">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<double>1000.000000000000000</double>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QLabel" name="label_76">
|
<widget class="QLabel" name="label_76">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -475,7 +546,7 @@
|
|||||||
<number>0</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximum">
|
<property name="maximum">
|
||||||
<double>100.000000000000000</double>
|
<double>360.000000000000000</double>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_2x_ampl_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_2x_ampl_clamp">
|
||||||
@ -490,6 +561,9 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="decimals">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_2x_phase_lag_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_2x_phase_lag_clamp">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -507,7 +581,7 @@
|
|||||||
<number>0</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximum">
|
<property name="maximum">
|
||||||
<double>100.000000000000000</double>
|
<double>360.000000000000000</double>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QComboBox" name="comboBox_2x_value_range">
|
<widget class="QComboBox" name="comboBox_2x_value_range">
|
||||||
@ -522,11 +596,39 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-150 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>0-500 um</string>
|
<string>0-500 um</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QComboBox" name="comboBox_gap_range">
|
<widget class="QComboBox" name="comboBox_gap_range">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -537,11 +639,44 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>-24 Vdc</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-150 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>0-500 um</string>
|
<string>0-500 um</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QCheckBox" name="checkBox_not_1x_ampl">
|
<widget class="QCheckBox" name="checkBox_not_1x_ampl">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -568,11 +703,39 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-150 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>0-500 um</string>
|
<string>0-500 um</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QDoubleSpinBox" name="doubleSpinBox_not_1x_ampl_clamp">
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_not_1x_ampl_clamp">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -586,6 +749,12 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="decimals">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<double>1000.000000000000000</double>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QComboBox" name="comboBox_smax_range">
|
<widget class="QComboBox" name="comboBox_smax_range">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -599,11 +768,39 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-100 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-150 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-200 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>0-400 um</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>0-500 um</string>
|
<string>0-500 um</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>自定义</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QCheckBox" name="checkBox_smax_ampl">
|
<widget class="QCheckBox" name="checkBox_smax_ampl">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -630,6 +827,12 @@
|
|||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="decimals">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<double>1000.000000000000000</double>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QGroupBox" name="groupBox_12">
|
<widget class="QGroupBox" name="groupBox_12">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user