优化界面布局
This commit is contained in:
parent
fe9771587b
commit
2b81cf0f6b
@ -1,6 +1,5 @@
|
|||||||
#include "MyTcpClient.h"
|
#include "MyTcpClient.h"
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include "data_config.h"
|
|
||||||
|
|
||||||
MyTcpClient::MyTcpClient(QObject *parent) : QObject(parent), shouldReconnect(true) {
|
MyTcpClient::MyTcpClient(QObject *parent) : QObject(parent), shouldReconnect(true) {
|
||||||
socket = new QTcpSocket(this);
|
socket = new QTcpSocket(this);
|
||||||
@ -13,10 +12,6 @@ MyTcpClient::MyTcpClient(QObject *parent) : QObject(parent), shouldReconnect(tru
|
|||||||
// 连接失败后,定时尝试重连
|
// 连接失败后,定时尝试重连
|
||||||
connect(&reconnectTimer, &QTimer::timeout, this, &MyTcpClient::onReconnect);
|
connect(&reconnectTimer, &QTimer::timeout, this, &MyTcpClient::onReconnect);
|
||||||
reconnectTimer.setInterval(5000); // 5秒重连一次
|
reconnectTimer.setInterval(5000); // 5秒重连一次
|
||||||
|
|
||||||
// 发送心跳包
|
|
||||||
//connect(&heartbeatTimer, &QTimer::timeout, this, &MyTcpClient::sendHeartbeat);
|
|
||||||
//heartbeatTimer.setInterval(10000); // 10秒发送一次心跳
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MyTcpClient::~MyTcpClient() {
|
MyTcpClient::~MyTcpClient() {
|
||||||
@ -94,11 +89,3 @@ void MyTcpClient::onReconnect() {
|
|||||||
socket->connectToHost(serverHost, serverPort);
|
socket->connectToHost(serverHost, serverPort);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyTcpClient::sendHeartbeat() {
|
|
||||||
if (socket->state() == QAbstractSocket::ConnectedState) {
|
|
||||||
QByteArray heartbeat = "HEARTBEAT"; // 这里可以换成协议规定的心跳包
|
|
||||||
socket->write(heartbeat);
|
|
||||||
qDebug() << "Sent heartbeat to server.";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -29,7 +29,6 @@ private slots:
|
|||||||
void onDisconnected();
|
void onDisconnected();
|
||||||
void onErrorOccurred(QAbstractSocket::SocketError socketError);
|
void onErrorOccurred(QAbstractSocket::SocketError socketError);
|
||||||
void onReconnect();
|
void onReconnect();
|
||||||
void sendHeartbeat();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QTcpSocket *socket;
|
QTcpSocket *socket;
|
||||||
|
@ -113,8 +113,8 @@ void Acceleration::Init()
|
|||||||
ui->spinBox_band_pass_high->setValue(filter[i].high);
|
ui->spinBox_band_pass_high->setValue(filter[i].high);
|
||||||
}else if(filter[i].type == "low_pass"){
|
}else if(filter[i].type == "low_pass"){
|
||||||
ui->checkBox_low_pass->setChecked(filter[i].checked);
|
ui->checkBox_low_pass->setChecked(filter[i].checked);
|
||||||
ui->comboBox_low_pass_low->setCurrentText(QString(filter[i].low));
|
ui->spinBox_low_pass_low->setValue(filter[i].low);
|
||||||
ui->comboBox_low_pass_high->setCurrentText(QString(filter[i].high));
|
ui->spinBox_low_pass_high->setValue(filter[i].high);
|
||||||
}else if(filter[i].type == "high_pass"){
|
}else if(filter[i].type == "high_pass"){
|
||||||
ui->checkBox_high_pass->setChecked(filter[i].checked);
|
ui->checkBox_high_pass->setChecked(filter[i].checked);
|
||||||
ui->spinBox_high_pass_low->setValue(filter[i].low);
|
ui->spinBox_high_pass_low->setValue(filter[i].low);
|
||||||
@ -166,8 +166,8 @@ void Acceleration::on_pushButton_confirm_clicked()
|
|||||||
filter[i].high = ui->spinBox_band_pass_high->value();
|
filter[i].high = ui->spinBox_band_pass_high->value();
|
||||||
}else if(filter[i].type == "low_pass"){
|
}else if(filter[i].type == "low_pass"){
|
||||||
filter[i].checked = ui->checkBox_low_pass->isChecked();
|
filter[i].checked = ui->checkBox_low_pass->isChecked();
|
||||||
filter[i].low = ui->comboBox_low_pass_low->currentText().toInt();
|
filter[i].low = ui->spinBox_low_pass_low->value();
|
||||||
filter[i].high = ui->comboBox_low_pass_high->currentText().toInt();
|
filter[i].high = ui->spinBox_low_pass_high->value();
|
||||||
}else if(filter[i].type == "high_pass"){
|
}else if(filter[i].type == "high_pass"){
|
||||||
filter[i].checked = ui->checkBox_high_pass->isChecked();
|
filter[i].checked = ui->checkBox_high_pass->isChecked();
|
||||||
filter[i].low = ui->spinBox_high_pass_low->value();
|
filter[i].low = ui->spinBox_high_pass_low->value();
|
||||||
|
488
acceleration.ui
488
acceleration.ui
@ -11,7 +11,7 @@
|
|||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Form</string>
|
<string>加速度配置</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||||
<item>
|
<item>
|
||||||
@ -121,255 +121,261 @@
|
|||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="checkBox_high_pass">
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_12">
|
|
||||||
<property name="text">
|
|
||||||
<string>高通:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QSpinBox" name="spinBox_high_pass_low">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="minimum">
|
|
||||||
<number>3</number>
|
|
||||||
</property>
|
|
||||||
<property name="maximum">
|
|
||||||
<number>3000</number>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_33">
|
|
||||||
<property name="text">
|
|
||||||
<string>-</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QSpinBox" name="spinBox_high_pass_high">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="minimum">
|
|
||||||
<number>3</number>
|
|
||||||
</property>
|
|
||||||
<property name="maximum">
|
|
||||||
<number>3000</number>
|
|
||||||
</property>
|
|
||||||
<property name="value">
|
|
||||||
<number>3000</number>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_32">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>3 - 3000Hz</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<spacer name="horizontalSpacer_2">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
|
||||||
<item>
|
|
||||||
<widget class="QCheckBox" name="checkBox_low_pass">
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_11">
|
|
||||||
<property name="text">
|
|
||||||
<string>低通:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QComboBox" name="comboBox_low_pass_low">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<widget class="QCheckBox" name="checkBox_high_pass">
|
||||||
<string>30</string>
|
<property name="text">
|
||||||
</property>
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_30">
|
|
||||||
<property name="text">
|
|
||||||
<string>-</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QComboBox" name="comboBox_low_pass_high">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<widget class="QLabel" name="label_12">
|
||||||
<string>30000</string>
|
<property name="text">
|
||||||
</property>
|
<string>高通:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</widget>
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_high_pass_low">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>3</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>3000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_33">
|
||||||
|
<property name="text">
|
||||||
|
<string>-</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_high_pass_high">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>3</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>3000</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>3000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_32">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>3 - 3000Hz</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_29">
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||||
<property name="text">
|
<item>
|
||||||
<string>30 - 30000Hz</string>
|
<widget class="QCheckBox" name="checkBox_low_pass">
|
||||||
</property>
|
<property name="text">
|
||||||
</widget>
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_11">
|
||||||
|
<property name="text">
|
||||||
|
<string>低通:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_low_pass_low">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_30">
|
||||||
|
<property name="text">
|
||||||
|
<string>-</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_low_pass_high">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>60</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_29">
|
||||||
|
<property name="text">
|
||||||
|
<string>30 - 30000Hz</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_3">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<spacer name="horizontalSpacer_3">
|
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||||
<property name="orientation">
|
<item>
|
||||||
<enum>Qt::Horizontal</enum>
|
<widget class="QCheckBox" name="checkBox_band_pass">
|
||||||
</property>
|
<property name="text">
|
||||||
<property name="sizeHint" stdset="0">
|
<string/>
|
||||||
<size>
|
</property>
|
||||||
<width>40</width>
|
</widget>
|
||||||
<height>20</height>
|
</item>
|
||||||
</size>
|
<item>
|
||||||
</property>
|
<widget class="QLabel" name="label_13">
|
||||||
</spacer>
|
<property name="text">
|
||||||
</item>
|
<string>带通:</string>
|
||||||
</layout>
|
</property>
|
||||||
</item>
|
</widget>
|
||||||
<item>
|
</item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
<item>
|
||||||
<item>
|
<widget class="QSpinBox" name="spinBox_band_pass_low">
|
||||||
<widget class="QCheckBox" name="checkBox_band_pass">
|
<property name="minimumSize">
|
||||||
<property name="text">
|
<size>
|
||||||
<string/>
|
<width>60</width>
|
||||||
</property>
|
<height>0</height>
|
||||||
</widget>
|
</size>
|
||||||
</item>
|
</property>
|
||||||
<item>
|
<property name="minimum">
|
||||||
<widget class="QLabel" name="label_13">
|
<number>3</number>
|
||||||
<property name="text">
|
</property>
|
||||||
<string>带通:</string>
|
<property name="maximum">
|
||||||
</property>
|
<number>3000</number>
|
||||||
</widget>
|
</property>
|
||||||
</item>
|
</widget>
|
||||||
<item>
|
</item>
|
||||||
<widget class="QSpinBox" name="spinBox_band_pass_low">
|
<item>
|
||||||
<property name="minimumSize">
|
<widget class="QLabel" name="label_34">
|
||||||
<size>
|
<property name="text">
|
||||||
<width>60</width>
|
<string>-</string>
|
||||||
<height>0</height>
|
</property>
|
||||||
</size>
|
</widget>
|
||||||
</property>
|
</item>
|
||||||
<property name="minimum">
|
<item>
|
||||||
<number>3</number>
|
<widget class="QSpinBox" name="spinBox_band_pass_high">
|
||||||
</property>
|
<property name="minimumSize">
|
||||||
<property name="maximum">
|
<size>
|
||||||
<number>3000</number>
|
<width>60</width>
|
||||||
</property>
|
<height>0</height>
|
||||||
</widget>
|
</size>
|
||||||
</item>
|
</property>
|
||||||
<item>
|
<property name="minimum">
|
||||||
<widget class="QLabel" name="label_34">
|
<number>3</number>
|
||||||
<property name="text">
|
</property>
|
||||||
<string>-</string>
|
<property name="maximum">
|
||||||
</property>
|
<number>3000</number>
|
||||||
</widget>
|
</property>
|
||||||
</item>
|
<property name="value">
|
||||||
<item>
|
<number>3000</number>
|
||||||
<widget class="QSpinBox" name="spinBox_band_pass_high">
|
</property>
|
||||||
<property name="minimumSize">
|
</widget>
|
||||||
<size>
|
</item>
|
||||||
<width>60</width>
|
<item>
|
||||||
<height>0</height>
|
<widget class="QLabel" name="label_35">
|
||||||
</size>
|
<property name="text">
|
||||||
</property>
|
<string>3 - 3000Hz</string>
|
||||||
<property name="minimum">
|
</property>
|
||||||
<number>3</number>
|
</widget>
|
||||||
</property>
|
</item>
|
||||||
<property name="maximum">
|
<item>
|
||||||
<number>3000</number>
|
<spacer name="horizontalSpacer_4">
|
||||||
</property>
|
<property name="orientation">
|
||||||
<property name="value">
|
<enum>Qt::Horizontal</enum>
|
||||||
<number>3000</number>
|
</property>
|
||||||
</property>
|
<property name="sizeHint" stdset="0">
|
||||||
</widget>
|
<size>
|
||||||
</item>
|
<width>40</width>
|
||||||
<item>
|
<height>20</height>
|
||||||
<widget class="QLabel" name="label_35">
|
</size>
|
||||||
<property name="text">
|
</property>
|
||||||
<string>3 - 3000Hz</string>
|
</spacer>
|
||||||
</property>
|
</item>
|
||||||
</widget>
|
</layout>
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<spacer name="horizontalSpacer_4">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
@ -1130,6 +1130,8 @@
|
|||||||
</property>
|
</property>
|
||||||
<addaction name="actionNEW"/>
|
<addaction name="actionNEW"/>
|
||||||
<addaction name="actionOpen"/>
|
<addaction name="actionOpen"/>
|
||||||
|
<addaction name="actiondaoru"/>
|
||||||
|
<addaction name="actionlianjie"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menu_2">
|
<widget class="QMenu" name="menu_2">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
@ -1150,12 +1152,12 @@
|
|||||||
<widget class="QStatusBar" name="statusBar"/>
|
<widget class="QStatusBar" name="statusBar"/>
|
||||||
<action name="actionNEW">
|
<action name="actionNEW">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>New</string>
|
<string>新建</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionOpen">
|
<action name="actionOpen">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Open</string>
|
<string>打开</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="action_realy">
|
<action name="action_realy">
|
||||||
@ -1168,6 +1170,16 @@
|
|||||||
<string>校时功能</string>
|
<string>校时功能</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="actiondaoru">
|
||||||
|
<property name="text">
|
||||||
|
<string>保存</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actionlianjie">
|
||||||
|
<property name="text">
|
||||||
|
<string>连接</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
|
@ -6,12 +6,12 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>693</width>
|
<width>669</width>
|
||||||
<height>570</height>
|
<height>570</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Form</string>
|
<string>位移配置</string>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@ -213,18 +213,19 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QComboBox" name="comboBox_2">
|
<widget class="QSpinBox" name="spinBox_8">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>60</width>
|
<width>60</width>
|
||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<property name="maximumSize">
|
||||||
<property name="text">
|
<size>
|
||||||
<string>30</string>
|
<width>60</width>
|
||||||
</property>
|
<height>16777215</height>
|
||||||
</item>
|
</size>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
@ -235,18 +236,19 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QComboBox" name="comboBox_7">
|
<widget class="QSpinBox" name="spinBox_9">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>60</width>
|
<width>60</width>
|
||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<property name="maximumSize">
|
||||||
<property name="text">
|
<size>
|
||||||
<string>30000</string>
|
<width>60</width>
|
||||||
</property>
|
<height>16777215</height>
|
||||||
</item>
|
</size>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
@ -1035,44 +1037,24 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="layoutWidget">
|
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>340</x>
|
|
||||||
<y>10</y>
|
|
||||||
<width>189</width>
|
|
||||||
<height>23</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_57">
|
|
||||||
<property name="text">
|
|
||||||
<string>槽位号:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLineEdit" name="lineEdit_13">
|
|
||||||
<property name="readOnly">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="layoutWidget_2">
|
<widget class="QWidget" name="layoutWidget_2">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>10</x>
|
<x>10</x>
|
||||||
<y>520</y>
|
<y>520</y>
|
||||||
<width>651</width>
|
<width>651</width>
|
||||||
<height>29</height>
|
<height>37</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_12">
|
<layout class="QHBoxLayout" name="horizontalLayout_12">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_21">
|
<widget class="QToolButton" name="toolButton_21">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>确定</string>
|
<string>确定</string>
|
||||||
</property>
|
</property>
|
||||||
@ -1080,6 +1062,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_22">
|
<widget class="QToolButton" name="toolButton_22">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>设置为默认值</string>
|
<string>设置为默认值</string>
|
||||||
</property>
|
</property>
|
||||||
@ -1087,6 +1075,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_23">
|
<widget class="QToolButton" name="toolButton_23">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>测点名称</string>
|
<string>测点名称</string>
|
||||||
</property>
|
</property>
|
||||||
@ -1094,6 +1088,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_24">
|
<widget class="QToolButton" name="toolButton_24">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>取消</string>
|
<string>取消</string>
|
||||||
</property>
|
</property>
|
||||||
@ -1101,6 +1101,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_25">
|
<widget class="QToolButton" name="toolButton_25">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>打印</string>
|
<string>打印</string>
|
||||||
</property>
|
</property>
|
||||||
@ -1108,6 +1114,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_26">
|
<widget class="QToolButton" name="toolButton_26">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>帮助</string>
|
<string>帮助</string>
|
||||||
</property>
|
</property>
|
||||||
@ -1115,16 +1127,16 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="layoutWidget_3">
|
<widget class="QWidget" name="layoutWidget">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>20</x>
|
<x>21</x>
|
||||||
<y>10</y>
|
<y>10</y>
|
||||||
<width>231</width>
|
<width>105</width>
|
||||||
<height>23</height>
|
<height>17</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_13">
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_58">
|
<widget class="QLabel" name="label_58">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -1133,9 +1145,9 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="lineEdit_14">
|
<widget class="QLabel" name="label_3">
|
||||||
<property name="readOnly">
|
<property name="text">
|
||||||
<bool>true</bool>
|
<string>3</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -1148,6 +1160,32 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
<widget class="QWidget" name="layoutWidget">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>341</x>
|
||||||
|
<y>10</y>
|
||||||
|
<width>63</width>
|
||||||
|
<height>17</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_57">
|
||||||
|
<property name="text">
|
||||||
|
<string>槽位号:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_4">
|
||||||
|
<property name="text">
|
||||||
|
<string>2</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
|
@ -82,8 +82,8 @@ void Seismic_monitor::Init()
|
|||||||
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
||||||
ui->comboBox_chan_type_1->setCurrentText("径向位移");
|
ui->comboBox_chan_type_1->setCurrentText("径向位移");
|
||||||
}
|
}
|
||||||
ui->lineEdit_transducer_name_1->setText(seismic_monitor[i].transducer_name);
|
//ui->comboBox_transducer_name_1->setText(seismic_monitor[i].transducer_name);
|
||||||
ui->doubleSpinBox_scale_factor_1->setValue(seismic_monitor[i].scale_factor.toDouble());
|
ui->lineEdit_scale_factor_1->setText(seismic_monitor[i].scale_factor);
|
||||||
ui->checkBox_enable_1->setCheckable(seismic_monitor[i].active);
|
ui->checkBox_enable_1->setCheckable(seismic_monitor[i].active);
|
||||||
ui->doubleSpinBox_low_1->setValue(seismic_monitor[i].normal_voltage_low);
|
ui->doubleSpinBox_low_1->setValue(seismic_monitor[i].normal_voltage_low);
|
||||||
ui->doubleSpinBox_high_1->setValue(seismic_monitor[i].normal_voltage_high);
|
ui->doubleSpinBox_high_1->setValue(seismic_monitor[i].normal_voltage_high);
|
||||||
@ -99,8 +99,8 @@ void Seismic_monitor::Init()
|
|||||||
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
||||||
ui->comboBox_chan_type_2->setCurrentText("径向位移");
|
ui->comboBox_chan_type_2->setCurrentText("径向位移");
|
||||||
}
|
}
|
||||||
ui->lineEdit_transducer_name_2->setText(seismic_monitor[i].transducer_name);
|
//ui->comboBox_transducer_name_2->setText(seismic_monitor[i].transducer_name);
|
||||||
ui->doubleSpinBox_scale_factor_2->setValue(seismic_monitor[i].scale_factor.toDouble());
|
ui->lineEdit_scale_factor_2->setText(seismic_monitor[i].scale_factor);
|
||||||
ui->checkBox_enable_2->setCheckable(seismic_monitor[i].active);
|
ui->checkBox_enable_2->setCheckable(seismic_monitor[i].active);
|
||||||
ui->doubleSpinBox_low_2->setValue(seismic_monitor[i].normal_voltage_low);
|
ui->doubleSpinBox_low_2->setValue(seismic_monitor[i].normal_voltage_low);
|
||||||
ui->doubleSpinBox_high_2->setValue(seismic_monitor[i].normal_voltage_high);
|
ui->doubleSpinBox_high_2->setValue(seismic_monitor[i].normal_voltage_high);
|
||||||
@ -116,8 +116,8 @@ void Seismic_monitor::Init()
|
|||||||
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
||||||
ui->comboBox_chan_type_3->setCurrentText("径向位移");
|
ui->comboBox_chan_type_3->setCurrentText("径向位移");
|
||||||
}
|
}
|
||||||
ui->lineEdit_transducer_name_3->setText(seismic_monitor[i].transducer_name);
|
//ui->lineEdit_transducer_name_3->setText(seismic_monitor[i].transducer_name);
|
||||||
ui->doubleSpinBox_scale_factor_3->setValue(seismic_monitor[i].scale_factor.toDouble());
|
ui->lineEdit_scale_factor_3->setText(seismic_monitor[i].scale_factor);
|
||||||
ui->checkBox_enable_3->setCheckable(seismic_monitor[i].active);
|
ui->checkBox_enable_3->setCheckable(seismic_monitor[i].active);
|
||||||
ui->doubleSpinBox_low_3->setValue(seismic_monitor[i].normal_voltage_low);
|
ui->doubleSpinBox_low_3->setValue(seismic_monitor[i].normal_voltage_low);
|
||||||
ui->doubleSpinBox_high_3->setValue(seismic_monitor[i].normal_voltage_high);
|
ui->doubleSpinBox_high_3->setValue(seismic_monitor[i].normal_voltage_high);
|
||||||
@ -133,8 +133,8 @@ void Seismic_monitor::Init()
|
|||||||
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
}else if(seismic_monitor[i].channel_type == "proximeter"){
|
||||||
ui->comboBox_chan_type_4->setCurrentText("径向位移");
|
ui->comboBox_chan_type_4->setCurrentText("径向位移");
|
||||||
}
|
}
|
||||||
ui->lineEdit_transducer_name_4->setText(seismic_monitor[i].transducer_name);
|
//ui->lineEdit_transducer_name_4->setText(seismic_monitor[i].transducer_name);
|
||||||
ui->doubleSpinBox_scale_factor_4->setValue(seismic_monitor[i].scale_factor.toDouble());
|
ui->lineEdit_scale_factor_4->setText(seismic_monitor[i].scale_factor);
|
||||||
ui->checkBox_enable_4->setCheckable(seismic_monitor[i].active);
|
ui->checkBox_enable_4->setCheckable(seismic_monitor[i].active);
|
||||||
ui->doubleSpinBox_low_4->setValue(seismic_monitor[i].normal_voltage_low);
|
ui->doubleSpinBox_low_4->setValue(seismic_monitor[i].normal_voltage_low);
|
||||||
ui->doubleSpinBox_high_4->setValue(seismic_monitor[i].normal_voltage_high);
|
ui->doubleSpinBox_high_4->setValue(seismic_monitor[i].normal_voltage_high);
|
||||||
@ -148,29 +148,29 @@ void Seismic_monitor::on_pushButton_confirm_clicked()
|
|||||||
{
|
{
|
||||||
for (int var = 0; var < CHANNLE_COUNT; ++var){
|
for (int var = 0; var < CHANNLE_COUNT; ++var){
|
||||||
if(seismic_monitor[var].id == 1){
|
if(seismic_monitor[var].id == 1){
|
||||||
seismic_monitor[var].transducer_name = ui->lineEdit_transducer_name_1->text();
|
seismic_monitor[var].transducer_name = ui->comboBox_transducer_name_1->currentText();
|
||||||
seismic_monitor[var].scale_factor = QString::number(ui->doubleSpinBox_scale_factor_1->value());
|
seismic_monitor[var].scale_factor = ui->lineEdit_scale_factor_1->text();
|
||||||
seismic_monitor[var].active = ui->checkBox_enable_1->isChecked();
|
seismic_monitor[var].active = ui->checkBox_enable_1->isChecked();
|
||||||
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_1->currentText();
|
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_1->currentText();
|
||||||
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_1->value();
|
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_1->value();
|
||||||
seismic_monitor[var].normal_voltage_high = ui->doubleSpinBox_high_1->value();
|
seismic_monitor[var].normal_voltage_high = ui->doubleSpinBox_high_1->value();
|
||||||
}else if(seismic_monitor[var].id == 2){
|
}else if(seismic_monitor[var].id == 2){
|
||||||
seismic_monitor[var].transducer_name = ui->lineEdit_transducer_name_2->text();
|
seismic_monitor[var].transducer_name = ui->comboBox_transducer_name_2->currentText();
|
||||||
seismic_monitor[var].scale_factor = QString::number(ui->doubleSpinBox_scale_factor_2->value());
|
seismic_monitor[var].scale_factor = ui->lineEdit_scale_factor_2->text();
|
||||||
seismic_monitor[var].active = ui->checkBox_enable_2->isChecked();
|
seismic_monitor[var].active = ui->checkBox_enable_2->isChecked();
|
||||||
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_2->currentText();
|
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_2->currentText();
|
||||||
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_2->value();
|
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_2->value();
|
||||||
seismic_monitor[var].normal_voltage_high = ui->doubleSpinBox_high_2->value();
|
seismic_monitor[var].normal_voltage_high = ui->doubleSpinBox_high_2->value();
|
||||||
}else if(seismic_monitor[var].id == 3){
|
}else if(seismic_monitor[var].id == 3){
|
||||||
seismic_monitor[var].transducer_name = ui->lineEdit_transducer_name_3->text();
|
seismic_monitor[var].transducer_name = ui->comboBox_transducer_name_3->currentText();
|
||||||
seismic_monitor[var].scale_factor = QString::number(ui->doubleSpinBox_scale_factor_3->value());
|
seismic_monitor[var].scale_factor = ui->lineEdit_scale_factor_3->text();
|
||||||
seismic_monitor[var].active = ui->checkBox_enable_3->isChecked();
|
seismic_monitor[var].active = ui->checkBox_enable_3->isChecked();
|
||||||
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_3->currentText();
|
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_3->currentText();
|
||||||
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_3->value();
|
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_3->value();
|
||||||
seismic_monitor[var].normal_voltage_high = ui->doubleSpinBox_high_3->value();
|
seismic_monitor[var].normal_voltage_high = ui->doubleSpinBox_high_3->value();
|
||||||
}else if(seismic_monitor[var].id == 4){
|
}else if(seismic_monitor[var].id == 4){
|
||||||
seismic_monitor[var].transducer_name = ui->lineEdit_transducer_name_4->text();
|
seismic_monitor[var].transducer_name = ui->comboBox_transducer_name_4->currentText();
|
||||||
seismic_monitor[var].scale_factor = QString::number(ui->doubleSpinBox_scale_factor_4->value());
|
seismic_monitor[var].scale_factor = ui->lineEdit_scale_factor_3->text();
|
||||||
seismic_monitor[var].active = ui->checkBox_enable_4->isChecked();
|
seismic_monitor[var].active = ui->checkBox_enable_4->isChecked();
|
||||||
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_4->currentText();
|
seismic_monitor[var].sample_rate = ui->comboBox_sample_rate_4->currentText();
|
||||||
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_4->value();
|
seismic_monitor[var].normal_voltage_low = ui->doubleSpinBox_low_4->value();
|
||||||
|
File diff suppressed because it is too large
Load Diff
644
velocity.ui
644
velocity.ui
@ -6,51 +6,31 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>689</width>
|
<width>754</width>
|
||||||
<height>582</height>
|
<height>582</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Form</string>
|
<string>速度配置</string>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="layoutWidget">
|
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>340</x>
|
|
||||||
<y>10</y>
|
|
||||||
<width>189</width>
|
|
||||||
<height>23</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_57">
|
|
||||||
<property name="text">
|
|
||||||
<string>槽位号:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLineEdit" name="lineEdit_13">
|
|
||||||
<property name="readOnly">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="layoutWidget_2">
|
<widget class="QWidget" name="layoutWidget_2">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>10</x>
|
<x>10</x>
|
||||||
<y>530</y>
|
<y>530</y>
|
||||||
<width>651</width>
|
<width>738</width>
|
||||||
<height>29</height>
|
<height>37</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_12">
|
<layout class="QHBoxLayout" name="horizontalLayout_12">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_21">
|
<widget class="QToolButton" name="toolButton_21">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>确定</string>
|
<string>确定</string>
|
||||||
</property>
|
</property>
|
||||||
@ -58,6 +38,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_22">
|
<widget class="QToolButton" name="toolButton_22">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>设置为默认值</string>
|
<string>设置为默认值</string>
|
||||||
</property>
|
</property>
|
||||||
@ -65,6 +51,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton">
|
<widget class="QToolButton" name="toolButton">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string> 加载预定义模板</string>
|
<string> 加载预定义模板</string>
|
||||||
</property>
|
</property>
|
||||||
@ -72,6 +64,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_23">
|
<widget class="QToolButton" name="toolButton_23">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>测点名称</string>
|
<string>测点名称</string>
|
||||||
</property>
|
</property>
|
||||||
@ -79,6 +77,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_24">
|
<widget class="QToolButton" name="toolButton_24">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>取消</string>
|
<string>取消</string>
|
||||||
</property>
|
</property>
|
||||||
@ -86,6 +90,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_25">
|
<widget class="QToolButton" name="toolButton_25">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>打印</string>
|
<string>打印</string>
|
||||||
</property>
|
</property>
|
||||||
@ -93,6 +103,12 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="toolButton_26">
|
<widget class="QToolButton" name="toolButton_26">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>35</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>帮助</string>
|
<string>帮助</string>
|
||||||
</property>
|
</property>
|
||||||
@ -110,7 +126,7 @@
|
|||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>1</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tab_5">
|
<widget class="QWidget" name="tab_5">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
@ -119,286 +135,266 @@
|
|||||||
<widget class="QGroupBox" name="groupBox_2">
|
<widget class="QGroupBox" name="groupBox_2">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>10</x>
|
||||||
<y>20</y>
|
<y>10</y>
|
||||||
<width>591</width>
|
<width>349</width>
|
||||||
<height>141</height>
|
<height>116</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>滤波</string>
|
<string>滤波</string>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="layoutWidget_4">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
<property name="geometry">
|
<item>
|
||||||
<rect>
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
<x>40</x>
|
<item>
|
||||||
<y>59</y>
|
<widget class="QCheckBox" name="checkBox_10">
|
||||||
<width>329</width>
|
|
||||||
<height>23</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
||||||
<item>
|
|
||||||
<widget class="QCheckBox" name="checkBox_11">
|
|
||||||
<property name="text">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_11">
|
|
||||||
<property name="text">
|
|
||||||
<string>低通:</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QComboBox" name="comboBox_2">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>30</string>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</widget>
|
||||||
</widget>
|
</item>
|
||||||
</item>
|
<item>
|
||||||
<item>
|
<widget class="QLabel" name="label_12">
|
||||||
<widget class="QLabel" name="label_30">
|
|
||||||
<property name="text">
|
|
||||||
<string>-</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QComboBox" name="comboBox_7">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>60</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>30000</string>
|
<string>高通:</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</widget>
|
||||||
</widget>
|
</item>
|
||||||
</item>
|
<item>
|
||||||
<item>
|
<widget class="QSpinBox" name="spinBox_4">
|
||||||
<widget class="QLabel" name="label_29">
|
<property name="minimumSize">
|
||||||
<property name="text">
|
<size>
|
||||||
<string>30 - 30000Hz</string>
|
<width>60</width>
|
||||||
</property>
|
<height>0</height>
|
||||||
</widget>
|
</size>
|
||||||
</item>
|
</property>
|
||||||
<item>
|
<property name="maximumSize">
|
||||||
<spacer name="horizontalSpacer_2">
|
<size>
|
||||||
<property name="orientation">
|
<width>60</width>
|
||||||
<enum>Qt::Horizontal</enum>
|
<height>16777215</height>
|
||||||
</property>
|
</size>
|
||||||
<property name="sizeHint" stdset="0">
|
</property>
|
||||||
<size>
|
<property name="minimum">
|
||||||
<width>40</width>
|
<number>3</number>
|
||||||
<height>20</height>
|
</property>
|
||||||
</size>
|
<property name="maximum">
|
||||||
</property>
|
<number>3000</number>
|
||||||
</spacer>
|
</property>
|
||||||
</item>
|
</widget>
|
||||||
</layout>
|
</item>
|
||||||
</widget>
|
<item>
|
||||||
<widget class="QWidget" name="layoutWidget_5">
|
<widget class="QLabel" name="label_33">
|
||||||
<property name="geometry">
|
<property name="text">
|
||||||
<rect>
|
<string>-</string>
|
||||||
<x>40</x>
|
</property>
|
||||||
<y>88</y>
|
</widget>
|
||||||
<width>329</width>
|
</item>
|
||||||
<height>23</height>
|
<item>
|
||||||
</rect>
|
<widget class="QSpinBox" name="spinBox_5">
|
||||||
</property>
|
<property name="minimumSize">
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
<size>
|
||||||
<item>
|
<width>60</width>
|
||||||
<widget class="QCheckBox" name="checkBox_12">
|
<height>0</height>
|
||||||
<property name="text">
|
</size>
|
||||||
<string/>
|
</property>
|
||||||
</property>
|
<property name="maximumSize">
|
||||||
</widget>
|
<size>
|
||||||
</item>
|
<width>60</width>
|
||||||
<item>
|
<height>16777215</height>
|
||||||
<widget class="QLabel" name="label_13">
|
</size>
|
||||||
<property name="text">
|
</property>
|
||||||
<string>带通:</string>
|
<property name="minimum">
|
||||||
</property>
|
<number>3</number>
|
||||||
</widget>
|
</property>
|
||||||
</item>
|
<property name="maximum">
|
||||||
<item>
|
<number>3000</number>
|
||||||
<widget class="QSpinBox" name="spinBox_6">
|
</property>
|
||||||
<property name="minimumSize">
|
<property name="value">
|
||||||
<size>
|
<number>3000</number>
|
||||||
<width>60</width>
|
</property>
|
||||||
<height>0</height>
|
</widget>
|
||||||
</size>
|
</item>
|
||||||
</property>
|
<item>
|
||||||
<property name="minimum">
|
<widget class="QLabel" name="label_32">
|
||||||
<number>3</number>
|
<property name="text">
|
||||||
</property>
|
<string>3 - 3000Hz</string>
|
||||||
<property name="maximum">
|
</property>
|
||||||
<number>3000</number>
|
</widget>
|
||||||
</property>
|
</item>
|
||||||
</widget>
|
<item>
|
||||||
</item>
|
<spacer name="horizontalSpacer">
|
||||||
<item>
|
<property name="orientation">
|
||||||
<widget class="QLabel" name="label_34">
|
<enum>Qt::Horizontal</enum>
|
||||||
<property name="text">
|
</property>
|
||||||
<string>-</string>
|
<property name="sizeHint" stdset="0">
|
||||||
</property>
|
<size>
|
||||||
</widget>
|
<width>40</width>
|
||||||
</item>
|
<height>20</height>
|
||||||
<item>
|
</size>
|
||||||
<widget class="QSpinBox" name="spinBox_7">
|
</property>
|
||||||
<property name="minimumSize">
|
</spacer>
|
||||||
<size>
|
</item>
|
||||||
<width>60</width>
|
</layout>
|
||||||
<height>0</height>
|
</item>
|
||||||
</size>
|
<item>
|
||||||
</property>
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
<property name="minimum">
|
<item>
|
||||||
<number>3</number>
|
<widget class="QCheckBox" name="checkBox_11">
|
||||||
</property>
|
<property name="text">
|
||||||
<property name="maximum">
|
<string/>
|
||||||
<number>3000</number>
|
</property>
|
||||||
</property>
|
</widget>
|
||||||
<property name="value">
|
</item>
|
||||||
<number>3000</number>
|
<item>
|
||||||
</property>
|
<widget class="QLabel" name="label_11">
|
||||||
</widget>
|
<property name="text">
|
||||||
</item>
|
<string>低通:</string>
|
||||||
<item>
|
</property>
|
||||||
<widget class="QLabel" name="label_35">
|
</widget>
|
||||||
<property name="text">
|
</item>
|
||||||
<string>3 - 3000Hz</string>
|
<item>
|
||||||
</property>
|
<widget class="QSpinBox" name="spinBox_2">
|
||||||
</widget>
|
<property name="minimumSize">
|
||||||
</item>
|
<size>
|
||||||
<item>
|
<width>60</width>
|
||||||
<spacer name="horizontalSpacer_3">
|
<height>0</height>
|
||||||
<property name="orientation">
|
</size>
|
||||||
<enum>Qt::Horizontal</enum>
|
</property>
|
||||||
</property>
|
<property name="maximumSize">
|
||||||
<property name="sizeHint" stdset="0">
|
<size>
|
||||||
<size>
|
<width>60</width>
|
||||||
<width>40</width>
|
<height>16777215</height>
|
||||||
<height>20</height>
|
</size>
|
||||||
</size>
|
</property>
|
||||||
</property>
|
</widget>
|
||||||
</spacer>
|
</item>
|
||||||
</item>
|
<item>
|
||||||
</layout>
|
<widget class="QLabel" name="label_30">
|
||||||
</widget>
|
<property name="text">
|
||||||
<widget class="QWidget" name="layoutWidget_6">
|
<string>-</string>
|
||||||
<property name="geometry">
|
</property>
|
||||||
<rect>
|
</widget>
|
||||||
<x>40</x>
|
</item>
|
||||||
<y>30</y>
|
<item>
|
||||||
<width>329</width>
|
<widget class="QSpinBox" name="spinBox_8">
|
||||||
<height>23</height>
|
<property name="minimumSize">
|
||||||
</rect>
|
<size>
|
||||||
</property>
|
<width>60</width>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
<height>0</height>
|
||||||
<item>
|
</size>
|
||||||
<widget class="QCheckBox" name="checkBox_10">
|
</property>
|
||||||
<property name="text">
|
<property name="maximumSize">
|
||||||
<string/>
|
<size>
|
||||||
</property>
|
<width>60</width>
|
||||||
</widget>
|
<height>16777215</height>
|
||||||
</item>
|
</size>
|
||||||
<item>
|
</property>
|
||||||
<widget class="QLabel" name="label_12">
|
</widget>
|
||||||
<property name="text">
|
</item>
|
||||||
<string>高通:</string>
|
<item>
|
||||||
</property>
|
<widget class="QLabel" name="label_29">
|
||||||
</widget>
|
<property name="text">
|
||||||
</item>
|
<string>30 - 30000Hz</string>
|
||||||
<item>
|
</property>
|
||||||
<widget class="QSpinBox" name="spinBox_4">
|
</widget>
|
||||||
<property name="minimumSize">
|
</item>
|
||||||
<size>
|
<item>
|
||||||
<width>60</width>
|
<spacer name="horizontalSpacer_2">
|
||||||
<height>0</height>
|
<property name="orientation">
|
||||||
</size>
|
<enum>Qt::Horizontal</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize">
|
<property name="sizeHint" stdset="0">
|
||||||
<size>
|
<size>
|
||||||
<width>60</width>
|
<width>40</width>
|
||||||
<height>16777215</height>
|
<height>20</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimum">
|
</spacer>
|
||||||
<number>3</number>
|
</item>
|
||||||
</property>
|
</layout>
|
||||||
<property name="maximum">
|
</item>
|
||||||
<number>3000</number>
|
<item>
|
||||||
</property>
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
</widget>
|
<item>
|
||||||
</item>
|
<widget class="QCheckBox" name="checkBox_12">
|
||||||
<item>
|
<property name="text">
|
||||||
<widget class="QLabel" name="label_33">
|
<string/>
|
||||||
<property name="text">
|
</property>
|
||||||
<string>-</string>
|
</widget>
|
||||||
</property>
|
</item>
|
||||||
</widget>
|
<item>
|
||||||
</item>
|
<widget class="QLabel" name="label_13">
|
||||||
<item>
|
<property name="text">
|
||||||
<widget class="QSpinBox" name="spinBox_5">
|
<string>带通:</string>
|
||||||
<property name="minimumSize">
|
</property>
|
||||||
<size>
|
</widget>
|
||||||
<width>60</width>
|
</item>
|
||||||
<height>0</height>
|
<item>
|
||||||
</size>
|
<widget class="QSpinBox" name="spinBox_6">
|
||||||
</property>
|
<property name="minimumSize">
|
||||||
<property name="maximumSize">
|
<size>
|
||||||
<size>
|
<width>60</width>
|
||||||
<width>60</width>
|
<height>0</height>
|
||||||
<height>16777215</height>
|
</size>
|
||||||
</size>
|
</property>
|
||||||
</property>
|
<property name="minimum">
|
||||||
<property name="minimum">
|
<number>3</number>
|
||||||
<number>3</number>
|
</property>
|
||||||
</property>
|
<property name="maximum">
|
||||||
<property name="maximum">
|
<number>3000</number>
|
||||||
<number>3000</number>
|
</property>
|
||||||
</property>
|
</widget>
|
||||||
<property name="value">
|
</item>
|
||||||
<number>3000</number>
|
<item>
|
||||||
</property>
|
<widget class="QLabel" name="label_34">
|
||||||
</widget>
|
<property name="text">
|
||||||
</item>
|
<string>-</string>
|
||||||
<item>
|
</property>
|
||||||
<widget class="QLabel" name="label_32">
|
</widget>
|
||||||
<property name="text">
|
</item>
|
||||||
<string>3 - 3000Hz</string>
|
<item>
|
||||||
</property>
|
<widget class="QSpinBox" name="spinBox_7">
|
||||||
</widget>
|
<property name="minimumSize">
|
||||||
</item>
|
<size>
|
||||||
<item>
|
<width>60</width>
|
||||||
<spacer name="horizontalSpacer">
|
<height>0</height>
|
||||||
<property name="orientation">
|
</size>
|
||||||
<enum>Qt::Horizontal</enum>
|
</property>
|
||||||
</property>
|
<property name="minimum">
|
||||||
<property name="sizeHint" stdset="0">
|
<number>3</number>
|
||||||
<size>
|
</property>
|
||||||
<width>40</width>
|
<property name="maximum">
|
||||||
<height>20</height>
|
<number>3000</number>
|
||||||
</size>
|
</property>
|
||||||
</property>
|
<property name="value">
|
||||||
</spacer>
|
<number>3000</number>
|
||||||
</item>
|
</property>
|
||||||
</layout>
|
</widget>
|
||||||
</widget>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_35">
|
||||||
|
<property name="text">
|
||||||
|
<string>3 - 3000Hz</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_3">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tab_6">
|
<widget class="QWidget" name="tab_6">
|
||||||
@ -408,7 +404,7 @@
|
|||||||
<widget class="QGroupBox" name="groupBox_11">
|
<widget class="QGroupBox" name="groupBox_11">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>20</x>
|
<x>10</x>
|
||||||
<y>10</y>
|
<y>10</y>
|
||||||
<width>431</width>
|
<width>431</width>
|
||||||
<height>351</height>
|
<height>351</height>
|
||||||
@ -1036,16 +1032,16 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="layoutWidget_3">
|
<widget class="QWidget" name="layoutWidget">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>20</x>
|
<x>21</x>
|
||||||
<y>10</y>
|
<y>10</y>
|
||||||
<width>231</width>
|
<width>105</width>
|
||||||
<height>23</height>
|
<height>17</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_13">
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_58">
|
<widget class="QLabel" name="label_58">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -1054,9 +1050,9 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="lineEdit_14">
|
<widget class="QLabel" name="label_2">
|
||||||
<property name="readOnly">
|
<property name="text">
|
||||||
<bool>true</bool>
|
<string>3</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -1069,6 +1065,32 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
<widget class="QWidget" name="layoutWidget">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>341</x>
|
||||||
|
<y>10</y>
|
||||||
|
<width>63</width>
|
||||||
|
<height>17</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_57">
|
||||||
|
<property name="text">
|
||||||
|
<string>槽位号:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="text">
|
||||||
|
<string>2</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user