Compare commits
28 Commits
f11de3ec35
...
e9ca2ec1e9
| Author | SHA1 | Date | |
|---|---|---|---|
| e9ca2ec1e9 | |||
| 746f477703 | |||
| 704513e2bf | |||
| 4abd6168cd | |||
| 2a0a62d201 | |||
| ca767d46cb | |||
| edd4178e4e | |||
| 588a1ae4ed | |||
| 676f3b80ee | |||
| 496ff73f9a | |||
| d622f5afff | |||
| 95d58b94a7 | |||
| 728b020db6 | |||
| a7efcd0a85 | |||
| 3b8acfa27e | |||
| da05fcfb2d | |||
| 6395529d3d | |||
| 0bfe3d332b | |||
| 3cc09a7f3a | |||
| 6745340919 | |||
| 196b6f12e7 | |||
| 387942115f | |||
| e04c3f5d9d | |||
| 6e9a663118 | |||
| 046a9e8c5d | |||
| 08bcbb4b28 | |||
| 0109eb5703 | |||
| a84e127c8b |
2174
func/Module_SA_label_v2.py
Normal file
2174
func/Module_SA_label_v2.py
Normal file
File diff suppressed because it is too large
Load Diff
@ -214,20 +214,20 @@ class Data:
|
|||||||
self.freq[key] = freq
|
self.freq[key] = freq
|
||||||
except ValueError:
|
except ValueError:
|
||||||
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
||||||
Constants.FAILURE_REASON["Filename_Format_not_Correct"])
|
Constants.FAILURE_REASON["Filename_Format_not_Correct"] + f"\n{Config['ChannelInput']}")
|
||||||
for value in self.freq.values():
|
for value in self.freq.values():
|
||||||
if value == 0:
|
if value == 0:
|
||||||
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
||||||
Constants.FAILURE_REASON["Filename_Format_not_Correct"])
|
Constants.FAILURE_REASON["Filename_Format_not_Correct"] + f"\n{Config['ChannelInput']}")
|
||||||
if not any((Config["LabelInput"]["SA Label"] + Config["EndWith"]["SA Label"]) in str(file) for file in Path(Config["Path"]["InputFolder"]).glob('*')):
|
if not any((Config["LabelInput"]["SA Label"] + Config["EndWith"]["SA Label"]) in str(file) for file in Path(Config["Path"]["InputFolder"]).glob('*')):
|
||||||
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
||||||
Constants.FAILURE_REASON["File_not_Exist"])
|
Constants.FAILURE_REASON["File_Not_Exist"])
|
||||||
if not any((Config["StartTime"] + Config["EndWith"]["StartTime"]) in str(file) for file in Path(Config["Path"]["InputFolder"]).glob('*')):
|
if not any((Config["StartTime"] + Config["EndWith"]["StartTime"]) in str(file) for file in Path(Config["Path"]["InputFolder"]).glob('*')):
|
||||||
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
||||||
Constants.FAILURE_REASON["File_not_Exist"])
|
Constants.FAILURE_REASON["File_Not_Exist"])
|
||||||
if not Path(Config["Path"]["InputAlignInfo"]).exists():
|
if not Path(Config["Path"]["InputAlignInfo"]).exists():
|
||||||
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
||||||
Constants.FAILURE_REASON["File_not_Exist"])
|
Constants.FAILURE_REASON["File_Not_Exist"])
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
return Result().failure(info=Constants.CUT_PSG_GET_FILE_AND_FREQ_FAILURE +
|
||||||
Constants.FAILURE_REASON["Get_File_and_Freq_Excepetion"] + "\n" + format_exc())
|
Constants.FAILURE_REASON["Get_File_and_Freq_Excepetion"] + "\n" + format_exc())
|
||||||
@ -335,8 +335,12 @@ class Data:
|
|||||||
for key, raw in self.raw.items():
|
for key, raw in self.raw.items():
|
||||||
DataFrame(raw.reshape(-1)).to_csv(Path(Config["Path"]["SaveFolder"]) / Path((Config["ChannelSave"][key] + str(self.freq[key]) + Config["EndWith"][key])),
|
DataFrame(raw.reshape(-1)).to_csv(Path(Config["Path"]["SaveFolder"]) / Path((Config["ChannelSave"][key] + str(self.freq[key]) + Config["EndWith"][key])),
|
||||||
index=False, header=False)
|
index=False, header=False)
|
||||||
|
# 重排index,从1开始,并给index命名
|
||||||
|
self.SALabel.sort_values(by=["Start"], inplace=True)
|
||||||
|
self.SALabel.reset_index(drop=True, inplace=True)
|
||||||
|
self.SALabel.index = self.SALabel.index + 1
|
||||||
|
self.SALabel.index.name = "Index"
|
||||||
self.SALabel.to_csv(Path(Config["Path"]["SaveFolder"]) / Path((Config["LabelSave"]["SA Label"] + Config["EndWith"]["SA Label"])),
|
self.SALabel.to_csv(Path(Config["Path"]["SaveFolder"]) / Path((Config["LabelSave"]["SA Label"] + Config["EndWith"]["SA Label"])),
|
||||||
index=False,
|
|
||||||
encoding="gbk")
|
encoding="gbk")
|
||||||
except PermissionError as e:
|
except PermissionError as e:
|
||||||
return Result().failure(info=Constants.SAVE_FAILURE + Constants.FAILURE_REASON["Save_Permission_Denied"])
|
return Result().failure(info=Constants.SAVE_FAILURE + Constants.FAILURE_REASON["Save_Permission_Denied"])
|
||||||
|
|||||||
@ -20,7 +20,7 @@ from func.Module_cut_PSG import MainWindow_cut_PSG
|
|||||||
from func.Module_artifact_label import MainWindow_artifact_label
|
from func.Module_artifact_label import MainWindow_artifact_label
|
||||||
from func.Module_bcg_quality_label import MainWindow_bcg_quality_label
|
from func.Module_bcg_quality_label import MainWindow_bcg_quality_label
|
||||||
from func.Module_resp_quality_label import MainWindow_resp_quality_label
|
from func.Module_resp_quality_label import MainWindow_resp_quality_label
|
||||||
from func.Module_SA_label import MainWindow_SA_label
|
from func.Module_SA_label_v2 import MainWindow_SA_label
|
||||||
|
|
||||||
from func.utils.ConfigParams import Filename, Params
|
from func.utils.ConfigParams import Filename, Params
|
||||||
from func.utils.Constants import Constants
|
from func.utils.Constants import Constants
|
||||||
|
|||||||
@ -42,6 +42,7 @@ class Filename:
|
|||||||
BCG_SYNC: str = "BCG_Sync_"
|
BCG_SYNC: str = "BCG_Sync_"
|
||||||
|
|
||||||
# Folder: PSG_Aligned
|
# Folder: PSG_Aligned
|
||||||
|
STAGE_SYNC: str = "5_class_Sync_"
|
||||||
ECG_SYNC: str = "ECG_Sync_"
|
ECG_SYNC: str = "ECG_Sync_"
|
||||||
THO_SYNC: str = "Effort Tho_Sync_"
|
THO_SYNC: str = "Effort Tho_Sync_"
|
||||||
ABD_SYNC: str = "Effort Abd_Sync_"
|
ABD_SYNC: str = "Effort Abd_Sync_"
|
||||||
@ -343,18 +344,57 @@ class Params:
|
|||||||
"Back": 60
|
"Back": 60
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SA_LABEL_NEW_EVENT_FORMAT: dict = {
|
||||||
|
"Index": "", # 假设Epoch从1开始
|
||||||
|
"Event type": "", # 原始事件类型为空
|
||||||
|
"Stage": "",
|
||||||
|
"Time": "",
|
||||||
|
"Epoch": "",
|
||||||
|
"Date": "",
|
||||||
|
"Duration": "", # 计算持续时间
|
||||||
|
"HR bef.": "",
|
||||||
|
"HR extr.": "",
|
||||||
|
"HR delta": "",
|
||||||
|
"O2 bef.": "",
|
||||||
|
"O2 min.": "",
|
||||||
|
"O2 delta": "",
|
||||||
|
"Body Position": "",
|
||||||
|
"Validation": "",
|
||||||
|
"Start": "",
|
||||||
|
"End": "",
|
||||||
|
"correct_Start": "",
|
||||||
|
"correct_End":"",
|
||||||
|
"correct_EventsType": "", # 修正事件类型为空
|
||||||
|
"score": -1, # 默认分数为-1
|
||||||
|
"isLabeled": -1, # 默认未标记状态
|
||||||
|
"remark": "" # 默认备注为空
|
||||||
|
}
|
||||||
|
|
||||||
SA_LABEL_TRANSPARENCY: float = 0.05
|
SA_LABEL_TRANSPARENCY: float = 0.05
|
||||||
SA_LABEL_BTN_PREV_SHORTCUT_KEY: str = "A"
|
SA_LABEL_BTN_PREV_10s_SHORTCUT_KEY: str = "Q"
|
||||||
SA_LABEL_BTN_NEXT_SHORTCUT_KEY: str = "D"
|
SA_LABEL_BTN_NEXT_10s_SHORTCUT_KEY: str = "E"
|
||||||
|
SA_LABEL_BTN_PREV_30s_SHORTCUT_KEY: str = "A"
|
||||||
|
SA_LABEL_BTN_NEXT_30s_SHORTCUT_KEY: str = "D"
|
||||||
|
SA_LABEL_BTN_PREV_HALF_SHORTCUT_KEY: str = "F"
|
||||||
|
SA_LABEL_BTN_NEXT_HALF_SHORTCUT_KEY: str = "G"
|
||||||
|
SA_LABEL_BTN_BEST_FIT_SHORTCUT_KEY: str = "B"
|
||||||
|
SA_LABEL_BTN_EDIT_MODE_SHORTCUT_KEY: str = "Z"
|
||||||
|
SA_LABEL_BTN_PAN_MODE_SHORTCUT_KEY: str = "X"
|
||||||
SA_LABEL_BTN_CONFIRMLABEL_SHORTCUT_KEY: str = "S"
|
SA_LABEL_BTN_CONFIRMLABEL_SHORTCUT_KEY: str = "S"
|
||||||
SA_LABEL_BTN_QUICK_REMARK_WAITINGFORTALK_SHORTCUT_KEY: str = "J"
|
SA_LABEL_BTN_QUICK_REMARK_WAITINGFORTALK_SHORTCUT_KEY: str = "J"
|
||||||
SA_LABEL_RADIOBUTTON_OSA_SHORTCUT_KEY: str = "1"
|
SA_LABEL_RADIOBUTTON_OSA_SHORTCUT_KEY: str = "7"
|
||||||
SA_LABEL_RADIOBUTTON_CSA_SHORTCUT_KEY: str = "2"
|
SA_LABEL_RADIOBUTTON_CSA_SHORTCUT_KEY: str = "8"
|
||||||
SA_LABEL_RADIOBUTTON_MSA_SHORTCUT_KEY: str = "3"
|
SA_LABEL_RADIOBUTTON_MSA_SHORTCUT_KEY: str = "9"
|
||||||
SA_LABEL_RADIOBUTTON_HPY_SHORTCUT_KEY: str = "4"
|
SA_LABEL_RADIOBUTTON_HPY_SHORTCUT_KEY: str = "0"
|
||||||
SA_LABEL_RADIOBUTTON_1_CLASS_SHORTCUT_KEY: str = "U"
|
SA_LABEL_RADIOBUTTON_1_CLASS_SHORTCUT_KEY: str = "1"
|
||||||
SA_LABEL_RADIOBUTTON_2_CLASS_SHORTCUT_KEY: str = "I"
|
SA_LABEL_RADIOBUTTON_2_CLASS_SHORTCUT_KEY: str = "2"
|
||||||
SA_LABEL_RADIOBUTTON_3_CLASS_SHORTCUT_KEY: str = "O"
|
SA_LABEL_RADIOBUTTON_3_CLASS_SHORTCUT_KEY: str = "3"
|
||||||
|
SA_LABEL_BTN_LITTLE_CHANGED_SHORTCUT_KEY: str = "U"
|
||||||
|
SA_LABEL_BTN_CHANGED_ON_MIDDLE_SHORTCUT_KEY: str = "I"
|
||||||
|
SA_LABEL_BTN_BETWEEN_ARTIFACT_SHORTCUT_KEY: str = "O"
|
||||||
|
SA_LABEL_BTN_LOW_SNR_SHORTCUT_KEY: str = "P"
|
||||||
|
|
||||||
|
|
||||||
# 禁止实例化
|
# 禁止实例化
|
||||||
def __new__(cls):
|
def __new__(cls):
|
||||||
|
|||||||
@ -191,6 +191,8 @@ class PublicFunc:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def examine_file(path_str, filename, suffix):
|
def examine_file(path_str, filename, suffix):
|
||||||
|
if not isinstance(path_str, str):
|
||||||
|
path_str = str(path_str)
|
||||||
temp_path = [p for p in Path(path_str).glob(f"{filename}*") if p.stem.startswith(filename) and p.suffix == suffix]
|
temp_path = [p for p in Path(path_str).glob(f"{filename}*") if p.stem.startswith(filename) and p.suffix == suffix]
|
||||||
|
|
||||||
if len(temp_path) == 0:
|
if len(temp_path) == 0:
|
||||||
@ -214,13 +216,13 @@ class PublicFunc:
|
|||||||
info=Constants.INPUT_FAILURE + "\n" +
|
info=Constants.INPUT_FAILURE + "\n" +
|
||||||
filename + ":" +
|
filename + ":" +
|
||||||
Constants.FAILURE_REASON["Data_Frequency_Not_In_Filename"])
|
Constants.FAILURE_REASON["Data_Frequency_Not_In_Filename"])
|
||||||
if Path(path).suffix != suffix:
|
if path.suffix != suffix:
|
||||||
return Result().failure(
|
return Result().failure(
|
||||||
info=Constants.INPUT_FAILURE + "\n" +
|
info=Constants.INPUT_FAILURE + "\n" +
|
||||||
filename + ":" +
|
filename + ":" +
|
||||||
Constants.FAILURE_REASON["Suffix_Not_Correct"])
|
Constants.FAILURE_REASON["Suffix_Not_Correct"])
|
||||||
data = {
|
data = {
|
||||||
"path": str(path),
|
"path": path,
|
||||||
"freq": int(freq)
|
"freq": int(freq)
|
||||||
}
|
}
|
||||||
return Result().success(data=data)
|
return Result().success(data=data)
|
||||||
|
|||||||
771
ui/MainWindow/MainWindow_SA_label_v2.py
Normal file
771
ui/MainWindow/MainWindow_SA_label_v2.py
Normal file
@ -0,0 +1,771 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
## Form generated from reading UI file 'MainWindow_SA_label_v2.ui'
|
||||||
|
##
|
||||||
|
## Created by: Qt User Interface Compiler version 6.7.0
|
||||||
|
##
|
||||||
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
|
||||||
|
QMetaObject, QObject, QPoint, QRect,
|
||||||
|
QSize, QTime, QUrl, Qt)
|
||||||
|
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
|
||||||
|
QFont, QFontDatabase, QGradient, QIcon,
|
||||||
|
QImage, QKeySequence, QLinearGradient, QPainter,
|
||||||
|
QPalette, QPixmap, QRadialGradient, QTransform)
|
||||||
|
from PySide6.QtWidgets import (QAbstractItemView, QAbstractSpinBox, QApplication, QCheckBox,
|
||||||
|
QComboBox, QFrame, QGridLayout, QGroupBox,
|
||||||
|
QHBoxLayout, QHeaderView, QLabel, QLineEdit,
|
||||||
|
QMainWindow, QPushButton, QRadioButton, QSizePolicy,
|
||||||
|
QSpacerItem, QSpinBox, QStatusBar, QTableView,
|
||||||
|
QTextBrowser, QVBoxLayout, QWidget)
|
||||||
|
|
||||||
|
class Ui_MainWindow_SA_label(object):
|
||||||
|
def setupUi(self, MainWindow_SA_label):
|
||||||
|
if not MainWindow_SA_label.objectName():
|
||||||
|
MainWindow_SA_label.setObjectName(u"MainWindow_SA_label")
|
||||||
|
MainWindow_SA_label.resize(1921, 1080)
|
||||||
|
self.centralwidget = QWidget(MainWindow_SA_label)
|
||||||
|
self.centralwidget.setObjectName(u"centralwidget")
|
||||||
|
self.gridLayout = QGridLayout(self.centralwidget)
|
||||||
|
self.gridLayout.setObjectName(u"gridLayout")
|
||||||
|
self.groupBox_canvas = QGroupBox(self.centralwidget)
|
||||||
|
self.groupBox_canvas.setObjectName(u"groupBox_canvas")
|
||||||
|
font = QFont()
|
||||||
|
font.setPointSize(10)
|
||||||
|
self.groupBox_canvas.setFont(font)
|
||||||
|
self.verticalLayout = QVBoxLayout(self.groupBox_canvas)
|
||||||
|
self.verticalLayout.setObjectName(u"verticalLayout")
|
||||||
|
self.verticalLayout_canvas = QVBoxLayout()
|
||||||
|
self.verticalLayout_canvas.setObjectName(u"verticalLayout_canvas")
|
||||||
|
|
||||||
|
self.verticalLayout.addLayout(self.verticalLayout_canvas)
|
||||||
|
|
||||||
|
|
||||||
|
self.gridLayout.addWidget(self.groupBox_canvas, 0, 1, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_left = QGroupBox(self.centralwidget)
|
||||||
|
self.groupBox_left.setObjectName(u"groupBox_left")
|
||||||
|
self.groupBox_left.setFont(font)
|
||||||
|
self.verticalLayout_2 = QVBoxLayout(self.groupBox_left)
|
||||||
|
self.verticalLayout_2.setObjectName(u"verticalLayout_2")
|
||||||
|
self.label_sampno = QLabel(self.groupBox_left)
|
||||||
|
self.label_sampno.setObjectName(u"label_sampno")
|
||||||
|
font1 = QFont()
|
||||||
|
font1.setPointSize(16)
|
||||||
|
self.label_sampno.setFont(font1)
|
||||||
|
|
||||||
|
self.verticalLayout_2.addWidget(self.label_sampno)
|
||||||
|
|
||||||
|
self.horizontalLayout = QHBoxLayout()
|
||||||
|
self.horizontalLayout.setObjectName(u"horizontalLayout")
|
||||||
|
self.pushButton_input_setting = QPushButton(self.groupBox_left)
|
||||||
|
self.pushButton_input_setting.setObjectName(u"pushButton_input_setting")
|
||||||
|
sizePolicy = QSizePolicy(QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
|
||||||
|
sizePolicy.setHorizontalStretch(0)
|
||||||
|
sizePolicy.setVerticalStretch(0)
|
||||||
|
sizePolicy.setHeightForWidth(self.pushButton_input_setting.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_input_setting.setSizePolicy(sizePolicy)
|
||||||
|
font2 = QFont()
|
||||||
|
font2.setPointSize(12)
|
||||||
|
self.pushButton_input_setting.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout.addWidget(self.pushButton_input_setting)
|
||||||
|
|
||||||
|
self.pushButton_input = QPushButton(self.groupBox_left)
|
||||||
|
self.pushButton_input.setObjectName(u"pushButton_input")
|
||||||
|
sizePolicy.setHeightForWidth(self.pushButton_input.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_input.setSizePolicy(sizePolicy)
|
||||||
|
self.pushButton_input.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout.addWidget(self.pushButton_input)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_2.addLayout(self.horizontalLayout)
|
||||||
|
|
||||||
|
self.groupBox = QGroupBox(self.groupBox_left)
|
||||||
|
self.groupBox.setObjectName(u"groupBox")
|
||||||
|
self.verticalLayout_5 = QVBoxLayout(self.groupBox)
|
||||||
|
self.verticalLayout_5.setObjectName(u"verticalLayout_5")
|
||||||
|
self.horizontalLayout_8 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_8.setObjectName(u"horizontalLayout_8")
|
||||||
|
self.checkBox_best_flow = QCheckBox(self.groupBox)
|
||||||
|
self.checkBox_best_flow.setObjectName(u"checkBox_best_flow")
|
||||||
|
self.checkBox_best_flow.setChecked(True)
|
||||||
|
|
||||||
|
self.horizontalLayout_8.addWidget(self.checkBox_best_flow)
|
||||||
|
|
||||||
|
self.checkBox_best_effort = QCheckBox(self.groupBox)
|
||||||
|
self.checkBox_best_effort.setObjectName(u"checkBox_best_effort")
|
||||||
|
self.checkBox_best_effort.setChecked(True)
|
||||||
|
|
||||||
|
self.horizontalLayout_8.addWidget(self.checkBox_best_effort)
|
||||||
|
|
||||||
|
self.checkBox_best_resp = QCheckBox(self.groupBox)
|
||||||
|
self.checkBox_best_resp.setObjectName(u"checkBox_best_resp")
|
||||||
|
self.checkBox_best_resp.setChecked(True)
|
||||||
|
|
||||||
|
self.horizontalLayout_8.addWidget(self.checkBox_best_resp)
|
||||||
|
|
||||||
|
self.checkBox_best_raw = QCheckBox(self.groupBox)
|
||||||
|
self.checkBox_best_raw.setObjectName(u"checkBox_best_raw")
|
||||||
|
self.checkBox_best_raw.setChecked(True)
|
||||||
|
|
||||||
|
self.horizontalLayout_8.addWidget(self.checkBox_best_raw)
|
||||||
|
|
||||||
|
self.pushButton_best_fit = QPushButton(self.groupBox)
|
||||||
|
self.pushButton_best_fit.setObjectName(u"pushButton_best_fit")
|
||||||
|
self.pushButton_best_fit.setFont(font2)
|
||||||
|
self.pushButton_best_fit.setChecked(False)
|
||||||
|
|
||||||
|
self.horizontalLayout_8.addWidget(self.pushButton_best_fit)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_5.addLayout(self.horizontalLayout_8)
|
||||||
|
|
||||||
|
self.line = QFrame(self.groupBox)
|
||||||
|
self.line.setObjectName(u"line")
|
||||||
|
self.line.setFrameShape(QFrame.Shape.HLine)
|
||||||
|
self.line.setFrameShadow(QFrame.Shadow.Sunken)
|
||||||
|
|
||||||
|
self.verticalLayout_5.addWidget(self.line)
|
||||||
|
|
||||||
|
self.horizontalLayout_6 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_6.setObjectName(u"horizontalLayout_6")
|
||||||
|
self.label_4 = QLabel(self.groupBox)
|
||||||
|
self.label_4.setObjectName(u"label_4")
|
||||||
|
sizePolicy1 = QSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Preferred)
|
||||||
|
sizePolicy1.setHorizontalStretch(0)
|
||||||
|
sizePolicy1.setVerticalStretch(0)
|
||||||
|
sizePolicy1.setHeightForWidth(self.label_4.sizePolicy().hasHeightForWidth())
|
||||||
|
self.label_4.setSizePolicy(sizePolicy1)
|
||||||
|
self.label_4.setAlignment(Qt.AlignLeading|Qt.AlignLeft|Qt.AlignVCenter)
|
||||||
|
|
||||||
|
self.horizontalLayout_6.addWidget(self.label_4)
|
||||||
|
|
||||||
|
self.comboBox_window_signal_length = QComboBox(self.groupBox)
|
||||||
|
self.comboBox_window_signal_length.addItem("")
|
||||||
|
self.comboBox_window_signal_length.addItem("")
|
||||||
|
self.comboBox_window_signal_length.addItem("")
|
||||||
|
self.comboBox_window_signal_length.addItem("")
|
||||||
|
self.comboBox_window_signal_length.addItem("")
|
||||||
|
self.comboBox_window_signal_length.addItem("")
|
||||||
|
self.comboBox_window_signal_length.setObjectName(u"comboBox_window_signal_length")
|
||||||
|
sizePolicy1.setHeightForWidth(self.comboBox_window_signal_length.sizePolicy().hasHeightForWidth())
|
||||||
|
self.comboBox_window_signal_length.setSizePolicy(sizePolicy1)
|
||||||
|
self.comboBox_window_signal_length.setEditable(True)
|
||||||
|
self.comboBox_window_signal_length.setInsertPolicy(QComboBox.NoInsert)
|
||||||
|
|
||||||
|
self.horizontalLayout_6.addWidget(self.comboBox_window_signal_length)
|
||||||
|
|
||||||
|
self.horizontalSpacer_5 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
|
||||||
|
|
||||||
|
self.horizontalLayout_6.addItem(self.horizontalSpacer_5)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_5.addLayout(self.horizontalLayout_6)
|
||||||
|
|
||||||
|
self.line_2 = QFrame(self.groupBox)
|
||||||
|
self.line_2.setObjectName(u"line_2")
|
||||||
|
self.line_2.setFrameShape(QFrame.Shape.HLine)
|
||||||
|
self.line_2.setFrameShadow(QFrame.Shadow.Sunken)
|
||||||
|
|
||||||
|
self.verticalLayout_5.addWidget(self.line_2)
|
||||||
|
|
||||||
|
self.horizontalLayout_9 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_9.setObjectName(u"horizontalLayout_9")
|
||||||
|
self.checkBox_auto_save = QCheckBox(self.groupBox)
|
||||||
|
self.checkBox_auto_save.setObjectName(u"checkBox_auto_save")
|
||||||
|
self.checkBox_auto_save.setFont(font)
|
||||||
|
self.checkBox_auto_save.setChecked(True)
|
||||||
|
|
||||||
|
self.horizontalLayout_9.addWidget(self.checkBox_auto_save)
|
||||||
|
|
||||||
|
self.horizontalSpacer_6 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
|
||||||
|
|
||||||
|
self.horizontalLayout_9.addItem(self.horizontalSpacer_6)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_5.addLayout(self.horizontalLayout_9)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_2.addWidget(self.groupBox)
|
||||||
|
|
||||||
|
self.groupBox_label = QGroupBox(self.groupBox_left)
|
||||||
|
self.groupBox_label.setObjectName(u"groupBox_label")
|
||||||
|
self.gridLayout_3 = QGridLayout(self.groupBox_label)
|
||||||
|
self.gridLayout_3.setObjectName(u"gridLayout_3")
|
||||||
|
self.label_2 = QLabel(self.groupBox_label)
|
||||||
|
self.label_2.setObjectName(u"label_2")
|
||||||
|
self.label_2.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_3.addWidget(self.label_2, 4, 0, 1, 1)
|
||||||
|
|
||||||
|
self.verticalSpacer_4 = QSpacerItem(20, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.gridLayout_3.addItem(self.verticalSpacer_4, 2, 0, 1, 2)
|
||||||
|
|
||||||
|
self.lineEdit_filter_label_origin = QLineEdit(self.groupBox_label)
|
||||||
|
self.lineEdit_filter_label_origin.setObjectName(u"lineEdit_filter_label_origin")
|
||||||
|
self.lineEdit_filter_label_origin.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_3.addWidget(self.lineEdit_filter_label_origin, 0, 1, 1, 1)
|
||||||
|
|
||||||
|
self.lineEdit_filter_label_revised = QLineEdit(self.groupBox_label)
|
||||||
|
self.lineEdit_filter_label_revised.setObjectName(u"lineEdit_filter_label_revised")
|
||||||
|
self.lineEdit_filter_label_revised.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_3.addWidget(self.lineEdit_filter_label_revised, 4, 1, 1, 1)
|
||||||
|
|
||||||
|
self.label = QLabel(self.groupBox_label)
|
||||||
|
self.label.setObjectName(u"label")
|
||||||
|
self.label.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_3.addWidget(self.label, 0, 0, 1, 1)
|
||||||
|
|
||||||
|
self.tableView_label = QTableView(self.groupBox_label)
|
||||||
|
self.tableView_label.setObjectName(u"tableView_label")
|
||||||
|
self.tableView_label.setEditTriggers(QAbstractItemView.NoEditTriggers)
|
||||||
|
|
||||||
|
self.gridLayout_3.addWidget(self.tableView_label, 1, 0, 1, 2)
|
||||||
|
|
||||||
|
self.tableView_label_revised = QTableView(self.groupBox_label)
|
||||||
|
self.tableView_label_revised.setObjectName(u"tableView_label_revised")
|
||||||
|
self.tableView_label_revised.setEditTriggers(QAbstractItemView.NoEditTriggers)
|
||||||
|
|
||||||
|
self.gridLayout_3.addWidget(self.tableView_label_revised, 5, 0, 1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_3.setRowStretch(0, 2)
|
||||||
|
|
||||||
|
self.verticalLayout_2.addWidget(self.groupBox_label)
|
||||||
|
|
||||||
|
self.pushButton_reset_event = QPushButton(self.groupBox_left)
|
||||||
|
self.pushButton_reset_event.setObjectName(u"pushButton_reset_event")
|
||||||
|
self.pushButton_reset_event.setFont(font2)
|
||||||
|
|
||||||
|
self.verticalLayout_2.addWidget(self.pushButton_reset_event)
|
||||||
|
|
||||||
|
self.verticalSpacer_3 = QSpacerItem(20, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Maximum)
|
||||||
|
|
||||||
|
self.verticalLayout_2.addItem(self.verticalSpacer_3)
|
||||||
|
|
||||||
|
self.pushButton_save = QPushButton(self.groupBox_left)
|
||||||
|
self.pushButton_save.setObjectName(u"pushButton_save")
|
||||||
|
sizePolicy2 = QSizePolicy(QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Preferred)
|
||||||
|
sizePolicy2.setHorizontalStretch(0)
|
||||||
|
sizePolicy2.setVerticalStretch(0)
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_save.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_save.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_save.setFont(font2)
|
||||||
|
|
||||||
|
self.verticalLayout_2.addWidget(self.pushButton_save)
|
||||||
|
|
||||||
|
self.groupBox_4 = QGroupBox(self.groupBox_left)
|
||||||
|
self.groupBox_4.setObjectName(u"groupBox_4")
|
||||||
|
self.verticalLayout_6 = QVBoxLayout(self.groupBox_4)
|
||||||
|
self.verticalLayout_6.setObjectName(u"verticalLayout_6")
|
||||||
|
self.textBrowser_info = QTextBrowser(self.groupBox_4)
|
||||||
|
self.textBrowser_info.setObjectName(u"textBrowser_info")
|
||||||
|
|
||||||
|
self.verticalLayout_6.addWidget(self.textBrowser_info)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_2.addWidget(self.groupBox_4)
|
||||||
|
|
||||||
|
self.verticalLayout_2.setStretch(0, 1)
|
||||||
|
self.verticalLayout_2.setStretch(1, 1)
|
||||||
|
self.verticalLayout_2.setStretch(2, 4)
|
||||||
|
self.verticalLayout_2.setStretch(3, 15)
|
||||||
|
self.verticalLayout_2.setStretch(4, 1)
|
||||||
|
self.verticalLayout_2.setStretch(5, 1)
|
||||||
|
self.verticalLayout_2.setStretch(6, 2)
|
||||||
|
self.verticalLayout_2.setStretch(7, 5)
|
||||||
|
|
||||||
|
self.gridLayout.addWidget(self.groupBox_left, 0, 0, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_right = QGroupBox(self.centralwidget)
|
||||||
|
self.groupBox_right.setObjectName(u"groupBox_right")
|
||||||
|
self.groupBox_right.setFont(font)
|
||||||
|
self.gridLayout_4 = QGridLayout(self.groupBox_right)
|
||||||
|
self.gridLayout_4.setObjectName(u"gridLayout_4")
|
||||||
|
self.verticalSpacer_5 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.gridLayout_4.addItem(self.verticalSpacer_5, 1, 0, 1, 2)
|
||||||
|
|
||||||
|
self.groupBox_examineBySecond = QGroupBox(self.groupBox_right)
|
||||||
|
self.groupBox_examineBySecond.setObjectName(u"groupBox_examineBySecond")
|
||||||
|
self.verticalLayout_4 = QVBoxLayout(self.groupBox_examineBySecond)
|
||||||
|
self.verticalLayout_4.setObjectName(u"verticalLayout_4")
|
||||||
|
self.horizontalLayout_5 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
|
||||||
|
self.label_3 = QLabel(self.groupBox_examineBySecond)
|
||||||
|
self.label_3.setObjectName(u"label_3")
|
||||||
|
|
||||||
|
self.horizontalLayout_5.addWidget(self.label_3)
|
||||||
|
|
||||||
|
self.lineEdit_jump_second = QLineEdit(self.groupBox_examineBySecond)
|
||||||
|
self.lineEdit_jump_second.setObjectName(u"lineEdit_jump_second")
|
||||||
|
|
||||||
|
self.horizontalLayout_5.addWidget(self.lineEdit_jump_second)
|
||||||
|
|
||||||
|
self.pushButton_jump_to = QPushButton(self.groupBox_examineBySecond)
|
||||||
|
self.pushButton_jump_to.setObjectName(u"pushButton_jump_to")
|
||||||
|
|
||||||
|
self.horizontalLayout_5.addWidget(self.pushButton_jump_to)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_4.addLayout(self.horizontalLayout_5)
|
||||||
|
|
||||||
|
self.gridLayout_8 = QGridLayout()
|
||||||
|
self.gridLayout_8.setObjectName(u"gridLayout_8")
|
||||||
|
self.horizontalSpacer = QSpacerItem(40, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.gridLayout_8.addItem(self.horizontalSpacer, 0, 1, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_next_half = QPushButton(self.groupBox_examineBySecond)
|
||||||
|
self.pushButton_next_half.setObjectName(u"pushButton_next_half")
|
||||||
|
self.pushButton_next_half.setFont(font2)
|
||||||
|
self.pushButton_next_half.setProperty("offset", 15)
|
||||||
|
|
||||||
|
self.gridLayout_8.addWidget(self.pushButton_next_half, 1, 4, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_previous10s = QPushButton(self.groupBox_examineBySecond)
|
||||||
|
self.pushButton_previous10s.setObjectName(u"pushButton_previous10s")
|
||||||
|
self.pushButton_previous10s.setFont(font2)
|
||||||
|
self.pushButton_previous10s.setProperty("offset", -10)
|
||||||
|
|
||||||
|
self.gridLayout_8.addWidget(self.pushButton_previous10s, 0, 0, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_previous_half = QPushButton(self.groupBox_examineBySecond)
|
||||||
|
self.pushButton_previous_half.setObjectName(u"pushButton_previous_half")
|
||||||
|
self.pushButton_previous_half.setFont(font2)
|
||||||
|
self.pushButton_previous_half.setProperty("offset", -15)
|
||||||
|
|
||||||
|
self.gridLayout_8.addWidget(self.pushButton_previous_half, 0, 4, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_next30s = QPushButton(self.groupBox_examineBySecond)
|
||||||
|
self.pushButton_next30s.setObjectName(u"pushButton_next30s")
|
||||||
|
self.pushButton_next30s.setFont(font2)
|
||||||
|
self.pushButton_next30s.setProperty("offset", 30)
|
||||||
|
|
||||||
|
self.gridLayout_8.addWidget(self.pushButton_next30s, 1, 2, 1, 1)
|
||||||
|
|
||||||
|
self.horizontalSpacer_2 = QSpacerItem(40, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.gridLayout_8.addItem(self.horizontalSpacer_2, 1, 1, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_previous30s = QPushButton(self.groupBox_examineBySecond)
|
||||||
|
self.pushButton_previous30s.setObjectName(u"pushButton_previous30s")
|
||||||
|
self.pushButton_previous30s.setFont(font2)
|
||||||
|
self.pushButton_previous30s.setProperty("offset", -30)
|
||||||
|
|
||||||
|
self.gridLayout_8.addWidget(self.pushButton_previous30s, 0, 2, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_next10s = QPushButton(self.groupBox_examineBySecond)
|
||||||
|
self.pushButton_next10s.setObjectName(u"pushButton_next10s")
|
||||||
|
self.pushButton_next10s.setFont(font2)
|
||||||
|
self.pushButton_next10s.setProperty("offset", 10)
|
||||||
|
|
||||||
|
self.gridLayout_8.addWidget(self.pushButton_next10s, 1, 0, 1, 1)
|
||||||
|
|
||||||
|
self.horizontalSpacer_3 = QSpacerItem(40, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.gridLayout_8.addItem(self.horizontalSpacer_3, 0, 3, 1, 1)
|
||||||
|
|
||||||
|
self.horizontalSpacer_4 = QSpacerItem(40, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.gridLayout_8.addItem(self.horizontalSpacer_4, 1, 3, 1, 1)
|
||||||
|
|
||||||
|
self.gridLayout_8.setColumnMinimumWidth(0, 3)
|
||||||
|
self.gridLayout_8.setColumnMinimumWidth(1, 1)
|
||||||
|
self.gridLayout_8.setColumnMinimumWidth(2, 3)
|
||||||
|
self.gridLayout_8.setColumnMinimumWidth(3, 1)
|
||||||
|
self.gridLayout_8.setColumnMinimumWidth(4, 3)
|
||||||
|
|
||||||
|
self.verticalLayout_4.addLayout(self.gridLayout_8)
|
||||||
|
|
||||||
|
self.verticalLayout_4.setStretch(0, 1)
|
||||||
|
self.verticalLayout_4.setStretch(1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_4.addWidget(self.groupBox_examineBySecond, 2, 0, 1, 2)
|
||||||
|
|
||||||
|
self.groupBox_label_operation = QGroupBox(self.groupBox_right)
|
||||||
|
self.groupBox_label_operation.setObjectName(u"groupBox_label_operation")
|
||||||
|
self.verticalLayout_3 = QVBoxLayout(self.groupBox_label_operation)
|
||||||
|
self.verticalLayout_3.setObjectName(u"verticalLayout_3")
|
||||||
|
self.horizontalLayout_7 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_7.setObjectName(u"horizontalLayout_7")
|
||||||
|
self.label_5 = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_5.setObjectName(u"label_5")
|
||||||
|
sizePolicy2.setHeightForWidth(self.label_5.sizePolicy().hasHeightForWidth())
|
||||||
|
self.label_5.setSizePolicy(sizePolicy2)
|
||||||
|
self.label_5.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_7.addWidget(self.label_5)
|
||||||
|
|
||||||
|
self.label_BCG_Index = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_BCG_Index.setObjectName(u"label_BCG_Index")
|
||||||
|
sizePolicy3 = QSizePolicy(QSizePolicy.Policy.Preferred, QSizePolicy.Policy.Preferred)
|
||||||
|
sizePolicy3.setHorizontalStretch(0)
|
||||||
|
sizePolicy3.setVerticalStretch(0)
|
||||||
|
sizePolicy3.setHeightForWidth(self.label_BCG_Index.sizePolicy().hasHeightForWidth())
|
||||||
|
self.label_BCG_Index.setSizePolicy(sizePolicy3)
|
||||||
|
self.label_BCG_Index.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_7.addWidget(self.label_BCG_Index)
|
||||||
|
|
||||||
|
self.horizontalLayout_7.setStretch(0, 1)
|
||||||
|
self.horizontalLayout_7.setStretch(1, 5)
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.horizontalLayout_7)
|
||||||
|
|
||||||
|
self.label_BCG_Info = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_BCG_Info.setObjectName(u"label_BCG_Info")
|
||||||
|
self.label_BCG_Info.setFont(font2)
|
||||||
|
|
||||||
|
self.verticalLayout_3.addWidget(self.label_BCG_Info)
|
||||||
|
|
||||||
|
self.horizontalLayout_3 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
|
||||||
|
self.label_11 = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_11.setObjectName(u"label_11")
|
||||||
|
self.label_11.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_3.addWidget(self.label_11)
|
||||||
|
|
||||||
|
self.radioButton_OSA = QRadioButton(self.groupBox_label_operation)
|
||||||
|
self.radioButton_OSA.setObjectName(u"radioButton_OSA")
|
||||||
|
self.radioButton_OSA.setFont(font2)
|
||||||
|
self.radioButton_OSA.setChecked(True)
|
||||||
|
|
||||||
|
self.horizontalLayout_3.addWidget(self.radioButton_OSA)
|
||||||
|
|
||||||
|
self.radioButton_CSA = QRadioButton(self.groupBox_label_operation)
|
||||||
|
self.radioButton_CSA.setObjectName(u"radioButton_CSA")
|
||||||
|
self.radioButton_CSA.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_3.addWidget(self.radioButton_CSA)
|
||||||
|
|
||||||
|
self.radioButton_MSA = QRadioButton(self.groupBox_label_operation)
|
||||||
|
self.radioButton_MSA.setObjectName(u"radioButton_MSA")
|
||||||
|
self.radioButton_MSA.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_3.addWidget(self.radioButton_MSA)
|
||||||
|
|
||||||
|
self.radioButton_HPY = QRadioButton(self.groupBox_label_operation)
|
||||||
|
self.radioButton_HPY.setObjectName(u"radioButton_HPY")
|
||||||
|
self.radioButton_HPY.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_3.addWidget(self.radioButton_HPY)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.horizontalLayout_3)
|
||||||
|
|
||||||
|
self.horizontalLayout_4 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
|
||||||
|
self.label_12 = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_12.setObjectName(u"label_12")
|
||||||
|
self.label_12.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_4.addWidget(self.label_12)
|
||||||
|
|
||||||
|
self.radioButton_1_class = QRadioButton(self.groupBox_label_operation)
|
||||||
|
self.radioButton_1_class.setObjectName(u"radioButton_1_class")
|
||||||
|
self.radioButton_1_class.setFont(font2)
|
||||||
|
self.radioButton_1_class.setChecked(True)
|
||||||
|
|
||||||
|
self.horizontalLayout_4.addWidget(self.radioButton_1_class)
|
||||||
|
|
||||||
|
self.radioButton_2_class = QRadioButton(self.groupBox_label_operation)
|
||||||
|
self.radioButton_2_class.setObjectName(u"radioButton_2_class")
|
||||||
|
self.radioButton_2_class.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_4.addWidget(self.radioButton_2_class)
|
||||||
|
|
||||||
|
self.radioButton_3_class = QRadioButton(self.groupBox_label_operation)
|
||||||
|
self.radioButton_3_class.setObjectName(u"radioButton_3_class")
|
||||||
|
self.radioButton_3_class.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_4.addWidget(self.radioButton_3_class)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.horizontalLayout_4)
|
||||||
|
|
||||||
|
self.verticalSpacer_9 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.verticalLayout_3.addItem(self.verticalSpacer_9)
|
||||||
|
|
||||||
|
self.horizontalLayout_2 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
|
||||||
|
self.label_6 = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_6.setObjectName(u"label_6")
|
||||||
|
self.label_6.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_2.addWidget(self.label_6)
|
||||||
|
|
||||||
|
self.lineEdit_remark = QLineEdit(self.groupBox_label_operation)
|
||||||
|
self.lineEdit_remark.setObjectName(u"lineEdit_remark")
|
||||||
|
self.lineEdit_remark.setFont(font2)
|
||||||
|
|
||||||
|
self.horizontalLayout_2.addWidget(self.lineEdit_remark)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.horizontalLayout_2)
|
||||||
|
|
||||||
|
self.verticalSpacer_8 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.verticalLayout_3.addItem(self.verticalSpacer_8)
|
||||||
|
|
||||||
|
self.label_7 = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_7.setObjectName(u"label_7")
|
||||||
|
self.label_7.setFont(font2)
|
||||||
|
|
||||||
|
self.verticalLayout_3.addWidget(self.label_7)
|
||||||
|
|
||||||
|
self.gridLayout_5 = QGridLayout()
|
||||||
|
self.gridLayout_5.setObjectName(u"gridLayout_5")
|
||||||
|
self.pushButton_quick_remark_input_durationNoEnough = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_durationNoEnough.setObjectName(u"pushButton_quick_remark_input_durationNoEnough")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_durationNoEnough.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_durationNoEnough.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_durationNoEnough.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_durationNoEnough, 1, 1, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_quick_remark_input_maybeWrongLabeled = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_maybeWrongLabeled.setObjectName(u"pushButton_quick_remark_input_maybeWrongLabeled")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_maybeWrongLabeled.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_maybeWrongLabeled.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_maybeWrongLabeled.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_maybeWrongLabeled, 1, 0, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_quick_remark_input_noNormalRespBetweenArtifact = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_noNormalRespBetweenArtifact.setObjectName(u"pushButton_quick_remark_input_noNormalRespBetweenArtifact")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_noNormalRespBetweenArtifact.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_noNormalRespBetweenArtifact.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_noNormalRespBetweenArtifact.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_noNormalRespBetweenArtifact, 2, 1, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_quick_remark_input_maybeDesaturation = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_maybeDesaturation.setObjectName(u"pushButton_quick_remark_input_maybeDesaturation")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_maybeDesaturation.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_maybeDesaturation.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_maybeDesaturation.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_maybeDesaturation, 0, 1, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_quick_remark_input_littleChange = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_littleChange.setObjectName(u"pushButton_quick_remark_input_littleChange")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_littleChange.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_littleChange.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_littleChange.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_littleChange, 2, 0, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_quick_remark_input_waitingForTalk = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_waitingForTalk.setObjectName(u"pushButton_quick_remark_input_waitingForTalk")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_waitingForTalk.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_waitingForTalk.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_waitingForTalk.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_waitingForTalk, 0, 0, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_quick_remark_input_lowSignalNoiseRatio = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_lowSignalNoiseRatio.setObjectName(u"pushButton_quick_remark_input_lowSignalNoiseRatio")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_lowSignalNoiseRatio.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_lowSignalNoiseRatio.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_lowSignalNoiseRatio.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_lowSignalNoiseRatio, 3, 0, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_quick_remark_input_changeOnMiddle = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_quick_remark_input_changeOnMiddle.setObjectName(u"pushButton_quick_remark_input_changeOnMiddle")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_quick_remark_input_changeOnMiddle.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_quick_remark_input_changeOnMiddle.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_quick_remark_input_changeOnMiddle.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_5.addWidget(self.pushButton_quick_remark_input_changeOnMiddle, 3, 1, 1, 1)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.gridLayout_5)
|
||||||
|
|
||||||
|
self.verticalSpacer_7 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.verticalLayout_3.addItem(self.verticalSpacer_7)
|
||||||
|
|
||||||
|
self.gridLayout_6 = QGridLayout()
|
||||||
|
self.gridLayout_6.setObjectName(u"gridLayout_6")
|
||||||
|
self.label_8 = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_8.setObjectName(u"label_8")
|
||||||
|
self.label_8.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_6.addWidget(self.label_8, 0, 0, 1, 1)
|
||||||
|
|
||||||
|
self.label_9 = QLabel(self.groupBox_label_operation)
|
||||||
|
self.label_9.setObjectName(u"label_9")
|
||||||
|
self.label_9.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_6.addWidget(self.label_9, 1, 0, 1, 1)
|
||||||
|
|
||||||
|
self.spinBox_correctStart = QSpinBox(self.groupBox_label_operation)
|
||||||
|
self.spinBox_correctStart.setObjectName(u"spinBox_correctStart")
|
||||||
|
self.spinBox_correctStart.setFont(font2)
|
||||||
|
self.spinBox_correctStart.setButtonSymbols(QAbstractSpinBox.UpDownArrows)
|
||||||
|
self.spinBox_correctStart.setMaximum(100000)
|
||||||
|
|
||||||
|
self.gridLayout_6.addWidget(self.spinBox_correctStart, 0, 1, 1, 1)
|
||||||
|
|
||||||
|
self.spinBox_correctEnd = QSpinBox(self.groupBox_label_operation)
|
||||||
|
self.spinBox_correctEnd.setObjectName(u"spinBox_correctEnd")
|
||||||
|
self.spinBox_correctEnd.setFont(font2)
|
||||||
|
self.spinBox_correctEnd.setButtonSymbols(QAbstractSpinBox.UpDownArrows)
|
||||||
|
self.spinBox_correctEnd.setMaximum(100000)
|
||||||
|
|
||||||
|
self.gridLayout_6.addWidget(self.spinBox_correctEnd, 1, 1, 1, 1)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.gridLayout_6)
|
||||||
|
|
||||||
|
self.verticalSpacer_6 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
|
||||||
|
|
||||||
|
self.verticalLayout_3.addItem(self.verticalSpacer_6)
|
||||||
|
|
||||||
|
self.gridLayout_7 = QGridLayout()
|
||||||
|
self.gridLayout_7.setObjectName(u"gridLayout_7")
|
||||||
|
self.pushButton_confirmLabel = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_confirmLabel.setObjectName(u"pushButton_confirmLabel")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_confirmLabel.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_confirmLabel.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_confirmLabel.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_7.addWidget(self.pushButton_confirmLabel, 0, 1, 2, 1)
|
||||||
|
|
||||||
|
self.pushButton_next = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_next.setObjectName(u"pushButton_next")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_next.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_next.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_next.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_7.addWidget(self.pushButton_next, 1, 0, 1, 1)
|
||||||
|
|
||||||
|
self.pushButton_prev = QPushButton(self.groupBox_label_operation)
|
||||||
|
self.pushButton_prev.setObjectName(u"pushButton_prev")
|
||||||
|
sizePolicy2.setHeightForWidth(self.pushButton_prev.sizePolicy().hasHeightForWidth())
|
||||||
|
self.pushButton_prev.setSizePolicy(sizePolicy2)
|
||||||
|
self.pushButton_prev.setFont(font2)
|
||||||
|
|
||||||
|
self.gridLayout_7.addWidget(self.pushButton_prev, 0, 0, 1, 1)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.gridLayout_7)
|
||||||
|
|
||||||
|
self.verticalLayout_3.setStretch(0, 1)
|
||||||
|
self.verticalLayout_3.setStretch(1, 1)
|
||||||
|
self.verticalLayout_3.setStretch(2, 2)
|
||||||
|
self.verticalLayout_3.setStretch(3, 2)
|
||||||
|
self.verticalLayout_3.setStretch(4, 1)
|
||||||
|
self.verticalLayout_3.setStretch(5, 2)
|
||||||
|
self.verticalLayout_3.setStretch(6, 1)
|
||||||
|
self.verticalLayout_3.setStretch(7, 1)
|
||||||
|
self.verticalLayout_3.setStretch(8, 6)
|
||||||
|
self.verticalLayout_3.setStretch(9, 1)
|
||||||
|
self.verticalLayout_3.setStretch(10, 2)
|
||||||
|
self.verticalLayout_3.setStretch(11, 1)
|
||||||
|
self.verticalLayout_3.setStretch(12, 3)
|
||||||
|
|
||||||
|
self.gridLayout_4.addWidget(self.groupBox_label_operation, 0, 0, 1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_4.setRowStretch(0, 12)
|
||||||
|
|
||||||
|
self.gridLayout.addWidget(self.groupBox_right, 0, 2, 1, 1)
|
||||||
|
|
||||||
|
self.gridLayout.setColumnStretch(0, 3)
|
||||||
|
self.gridLayout.setColumnStretch(1, 7)
|
||||||
|
self.gridLayout.setColumnStretch(2, 3)
|
||||||
|
MainWindow_SA_label.setCentralWidget(self.centralwidget)
|
||||||
|
self.statusbar = QStatusBar(MainWindow_SA_label)
|
||||||
|
self.statusbar.setObjectName(u"statusbar")
|
||||||
|
MainWindow_SA_label.setStatusBar(self.statusbar)
|
||||||
|
|
||||||
|
self.retranslateUi(MainWindow_SA_label)
|
||||||
|
|
||||||
|
self.comboBox_window_signal_length.setCurrentIndex(3)
|
||||||
|
|
||||||
|
|
||||||
|
QMetaObject.connectSlotsByName(MainWindow_SA_label)
|
||||||
|
# setupUi
|
||||||
|
|
||||||
|
def retranslateUi(self, MainWindow_SA_label):
|
||||||
|
MainWindow_SA_label.setWindowTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u7761\u7720\u547c\u5438\u6682\u505c\u4e8b\u4ef6\u6807\u6ce8", None))
|
||||||
|
self.groupBox_canvas.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u7ed8\u56fe\u533a", None))
|
||||||
|
self.groupBox_left.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u7761\u7720\u547c\u5438\u6682\u505c\u4e8b\u4ef6\u6807\u6ce8", None))
|
||||||
|
self.label_sampno.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u7f16\u53f7\uff1a", None))
|
||||||
|
self.pushButton_input_setting.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u5bfc\u5165\u8bbe\u7f6e", None))
|
||||||
|
self.pushButton_input.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u5f00\u59cb\u5bfc\u5165", None))
|
||||||
|
self.groupBox.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u6253\u6807\u8bbe\u7f6e", None))
|
||||||
|
self.checkBox_best_flow.setText(QCoreApplication.translate("MainWindow_SA_label", u"Flow", None))
|
||||||
|
self.checkBox_best_effort.setText(QCoreApplication.translate("MainWindow_SA_label", u"Effort", None))
|
||||||
|
self.checkBox_best_resp.setText(QCoreApplication.translate("MainWindow_SA_label", u"Resp", None))
|
||||||
|
self.checkBox_best_raw.setText(QCoreApplication.translate("MainWindow_SA_label", u"Raw", None))
|
||||||
|
self.pushButton_best_fit.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u81ea\u9002\u5e94\u5e45\u503c\uff08B\uff09", None))
|
||||||
|
self.label_4.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u663e\u793a\u7a97\u53e3\u957f\u5ea6/\u79d2\uff1a", None))
|
||||||
|
self.comboBox_window_signal_length.setItemText(0, QCoreApplication.translate("MainWindow_SA_label", u"30", None))
|
||||||
|
self.comboBox_window_signal_length.setItemText(1, QCoreApplication.translate("MainWindow_SA_label", u"60", None))
|
||||||
|
self.comboBox_window_signal_length.setItemText(2, QCoreApplication.translate("MainWindow_SA_label", u"120", None))
|
||||||
|
self.comboBox_window_signal_length.setItemText(3, QCoreApplication.translate("MainWindow_SA_label", u"180", None))
|
||||||
|
self.comboBox_window_signal_length.setItemText(4, QCoreApplication.translate("MainWindow_SA_label", u"300", None))
|
||||||
|
self.comboBox_window_signal_length.setItemText(5, QCoreApplication.translate("MainWindow_SA_label", u"600", None))
|
||||||
|
|
||||||
|
self.checkBox_auto_save.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4fee\u6539\u540e\u81ea\u52a8\u4fdd\u5b58", None))
|
||||||
|
self.groupBox_label.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u6807\u7b7e\u8bb0\u5f55", None))
|
||||||
|
self.label_2.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u786e\u8ba4\u540e\u7684\u6807\u7b7e", None))
|
||||||
|
self.lineEdit_filter_label_origin.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label", u"\u7b5b\u9009\u5668", None))
|
||||||
|
self.lineEdit_filter_label_revised.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label", u"\u7b5b\u9009\u5668", None))
|
||||||
|
self.label.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u539f\u6570\u636e\u7684\u6807\u7b7e", None))
|
||||||
|
self.pushButton_reset_event.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u91cd\u7f6e\u6807\u7b7e", None))
|
||||||
|
self.pushButton_save.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u624b\u52a8\u4fdd\u5b58", None))
|
||||||
|
self.groupBox_4.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u65e5\u5fd7", None))
|
||||||
|
self.groupBox_right.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u7761\u7720\u547c\u5438\u6682\u505c\u4e8b\u4ef6\u6807\u6ce8", None))
|
||||||
|
self.groupBox_examineBySecond.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u8df3\u8f6c", None))
|
||||||
|
self.label_3.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u8d77\u59cb\u79d2\u6570\uff1a", None))
|
||||||
|
self.pushButton_jump_to.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u8df3\u8f6c", None))
|
||||||
|
self.pushButton_next_half.setText(QCoreApplication.translate("MainWindow_SA_label", u"+\u534a\u7a97(G)", None))
|
||||||
|
self.pushButton_previous10s.setText(QCoreApplication.translate("MainWindow_SA_label", u"-10s(Q)", None))
|
||||||
|
self.pushButton_previous_half.setText(QCoreApplication.translate("MainWindow_SA_label", u"-\u534a\u7a97(F)", None))
|
||||||
|
self.pushButton_next30s.setText(QCoreApplication.translate("MainWindow_SA_label", u"+30s(D)", None))
|
||||||
|
self.pushButton_previous30s.setText(QCoreApplication.translate("MainWindow_SA_label", u"-30s(A)", None))
|
||||||
|
self.pushButton_next10s.setText(QCoreApplication.translate("MainWindow_SA_label", u"+10s(E)", None))
|
||||||
|
self.groupBox_label_operation.setTitle(QCoreApplication.translate("MainWindow_SA_label", u"\u6807\u6ce8\u64cd\u4f5c", None))
|
||||||
|
self.label_5.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8b\u4ef6\u7f16\u53f7\uff1a", None))
|
||||||
|
self.label_BCG_Index.setText("")
|
||||||
|
self.label_BCG_Info.setText("")
|
||||||
|
self.label_11.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8b\u4ef6\u7c7b\u578b", None))
|
||||||
|
self.radioButton_OSA.setText(QCoreApplication.translate("MainWindow_SA_label", u"OSA(7)", None))
|
||||||
|
self.radioButton_CSA.setText(QCoreApplication.translate("MainWindow_SA_label", u"CSA(8)", None))
|
||||||
|
self.radioButton_MSA.setText(QCoreApplication.translate("MainWindow_SA_label", u"MSA(9)", None))
|
||||||
|
self.radioButton_HPY.setText(QCoreApplication.translate("MainWindow_SA_label", u"HPY(0)", None))
|
||||||
|
self.label_12.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u6807\u7b7e\u7c7b\u578b", None))
|
||||||
|
self.radioButton_1_class.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e00\u7c7b(1)", None))
|
||||||
|
self.radioButton_2_class.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8c\u7c7b(2)", None))
|
||||||
|
self.radioButton_3_class.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u5220\u9664(3)", None))
|
||||||
|
self.label_6.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u5907\u6ce8\uff1a", None))
|
||||||
|
self.label_7.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u5feb\u901f\u5907\u6ce8\u8f93\u5165", None))
|
||||||
|
self.pushButton_quick_remark_input_durationNoEnough.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8c\u7c7b-\u65f6\u957f\u4e0d\u8db3", None))
|
||||||
|
self.pushButton_quick_remark_input_maybeWrongLabeled.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8c\u7c7b-\u7591\u4f3c\u533b\u751f\u8bef\u6807", None))
|
||||||
|
self.pushButton_quick_remark_input_noNormalRespBetweenArtifact.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8c\u7c7b-\u4f53\u52a8\u95f4\u65e0\u6b63\u5e38\u547c\u5438(O)", None))
|
||||||
|
self.pushButton_quick_remark_input_maybeDesaturation.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e00\u7c7b-\u5f62\u4f3c\u6f6e\u5f0f\u547c\u5438", None))
|
||||||
|
self.pushButton_quick_remark_input_littleChange.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8c\u7c7b-\u8d77\u4f0f\u53d8\u5316\u4e0d\u5927(U)", None))
|
||||||
|
self.pushButton_quick_remark_input_waitingForTalk.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u5f85\u8ba8\u8bba(N)", None))
|
||||||
|
self.pushButton_quick_remark_input_lowSignalNoiseRatio.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8c\u7c7b-\u4fe1\u566a\u6bd4\u4f4e(P)", None))
|
||||||
|
self.pushButton_quick_remark_input_changeOnMiddle.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e8c\u7c7b-\u4e2d\u95f4\u8d77\u4f0f(I)", None))
|
||||||
|
self.label_8.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4fee\u6b63\u540e\u8d77\u59cb\u65f6\u95f4(s)", None))
|
||||||
|
self.label_9.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4fee\u6b63\u540e\u7ec8\u6b62\u65f6\u95f4(s)", None))
|
||||||
|
self.pushButton_confirmLabel.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u786e\u5b9a\u6253\u6807\u53c2\u6570(S)", None))
|
||||||
|
self.pushButton_next.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e0b\u4e00\u4e2a\u4e8b\u4ef6", None))
|
||||||
|
self.pushButton_prev.setText(QCoreApplication.translate("MainWindow_SA_label", u"\u4e0a\u4e00\u4e2a\u4e8b\u4ef6", None))
|
||||||
|
# retranslateUi
|
||||||
|
|
||||||
1187
ui/MainWindow/MainWindow_SA_label_v2.ui
Normal file
1187
ui/MainWindow/MainWindow_SA_label_v2.ui
Normal file
File diff suppressed because it is too large
Load Diff
358
ui/setting/SA_label_input_setting_v2.py
Normal file
358
ui/setting/SA_label_input_setting_v2.py
Normal file
@ -0,0 +1,358 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
## Form generated from reading UI file 'SA_label_input_setting_v2.ui'
|
||||||
|
##
|
||||||
|
## Created by: Qt User Interface Compiler version 6.7.0
|
||||||
|
##
|
||||||
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
|
||||||
|
QMetaObject, QObject, QPoint, QRect,
|
||||||
|
QSize, QTime, QUrl, Qt)
|
||||||
|
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
|
||||||
|
QFont, QFontDatabase, QGradient, QIcon,
|
||||||
|
QImage, QKeySequence, QLinearGradient, QPainter,
|
||||||
|
QPalette, QPixmap, QRadialGradient, QTransform)
|
||||||
|
from PySide6.QtWidgets import (QApplication, QGridLayout, QGroupBox, QHBoxLayout,
|
||||||
|
QLabel, QMainWindow, QPlainTextEdit, QPushButton,
|
||||||
|
QSizePolicy, QSpinBox, QStatusBar, QVBoxLayout,
|
||||||
|
QWidget)
|
||||||
|
|
||||||
|
class Ui_MainWindow_SA_label_input_setting(object):
|
||||||
|
def setupUi(self, MainWindow_SA_label_input_setting):
|
||||||
|
if not MainWindow_SA_label_input_setting.objectName():
|
||||||
|
MainWindow_SA_label_input_setting.setObjectName(u"MainWindow_SA_label_input_setting")
|
||||||
|
MainWindow_SA_label_input_setting.resize(848, 859)
|
||||||
|
self.centralwidget = QWidget(MainWindow_SA_label_input_setting)
|
||||||
|
self.centralwidget.setObjectName(u"centralwidget")
|
||||||
|
self.gridLayout = QGridLayout(self.centralwidget)
|
||||||
|
self.gridLayout.setObjectName(u"gridLayout")
|
||||||
|
self.pushButton_cancel = QPushButton(self.centralwidget)
|
||||||
|
self.pushButton_cancel.setObjectName(u"pushButton_cancel")
|
||||||
|
font = QFont()
|
||||||
|
font.setPointSize(12)
|
||||||
|
self.pushButton_cancel.setFont(font)
|
||||||
|
|
||||||
|
self.gridLayout.addWidget(self.pushButton_cancel, 1, 3, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox = QGroupBox(self.centralwidget)
|
||||||
|
self.groupBox.setObjectName(u"groupBox")
|
||||||
|
font1 = QFont()
|
||||||
|
font1.setPointSize(10)
|
||||||
|
self.groupBox.setFont(font1)
|
||||||
|
self.gridLayout_2 = QGridLayout(self.groupBox)
|
||||||
|
self.gridLayout_2.setObjectName(u"gridLayout_2")
|
||||||
|
self.groupBox_file_path_input_signal_Stage = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_signal_Stage.setObjectName(u"groupBox_file_path_input_signal_Stage")
|
||||||
|
self.groupBox_file_path_input_signal_Stage.setEnabled(True)
|
||||||
|
self.verticalLayout_10 = QVBoxLayout(self.groupBox_file_path_input_signal_Stage)
|
||||||
|
self.verticalLayout_10.setObjectName(u"verticalLayout_10")
|
||||||
|
self.plainTextEdit_file_path_input_signal_Stage = QPlainTextEdit(self.groupBox_file_path_input_signal_Stage)
|
||||||
|
self.plainTextEdit_file_path_input_signal_Stage.setObjectName(u"plainTextEdit_file_path_input_signal_Stage")
|
||||||
|
self.plainTextEdit_file_path_input_signal_Stage.setEnabled(True)
|
||||||
|
self.plainTextEdit_file_path_input_signal_Stage.setUndoRedoEnabled(True)
|
||||||
|
|
||||||
|
self.verticalLayout_10.addWidget(self.plainTextEdit_file_path_input_signal_Stage)
|
||||||
|
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_signal_Stage, 6, 1, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_artifact = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_artifact.setObjectName(u"groupBox_file_path_input_artifact")
|
||||||
|
self.verticalLayout_11 = QVBoxLayout(self.groupBox_file_path_input_artifact)
|
||||||
|
self.verticalLayout_11.setObjectName(u"verticalLayout_11")
|
||||||
|
self.plainTextEdit_file_path_input_artifact = QPlainTextEdit(self.groupBox_file_path_input_artifact)
|
||||||
|
self.plainTextEdit_file_path_input_artifact.setObjectName(u"plainTextEdit_file_path_input_artifact")
|
||||||
|
|
||||||
|
self.verticalLayout_11.addWidget(self.plainTextEdit_file_path_input_artifact)
|
||||||
|
|
||||||
|
self.verticalLayout_11.setStretch(0, 2)
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_artifact, 5, 0, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_signal_FlowT = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_signal_FlowT.setObjectName(u"groupBox_file_path_input_signal_FlowT")
|
||||||
|
self.verticalLayout_7 = QVBoxLayout(self.groupBox_file_path_input_signal_FlowT)
|
||||||
|
self.verticalLayout_7.setObjectName(u"verticalLayout_7")
|
||||||
|
self.horizontalLayout_5 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
|
||||||
|
self.label_5 = QLabel(self.groupBox_file_path_input_signal_FlowT)
|
||||||
|
self.label_5.setObjectName(u"label_5")
|
||||||
|
self.label_5.setFont(font)
|
||||||
|
|
||||||
|
self.horizontalLayout_5.addWidget(self.label_5)
|
||||||
|
|
||||||
|
self.spinBox_input_freq_signal_FlowT = QSpinBox(self.groupBox_file_path_input_signal_FlowT)
|
||||||
|
self.spinBox_input_freq_signal_FlowT.setObjectName(u"spinBox_input_freq_signal_FlowT")
|
||||||
|
self.spinBox_input_freq_signal_FlowT.setFont(font)
|
||||||
|
self.spinBox_input_freq_signal_FlowT.setMinimum(1)
|
||||||
|
self.spinBox_input_freq_signal_FlowT.setMaximum(1000000)
|
||||||
|
|
||||||
|
self.horizontalLayout_5.addWidget(self.spinBox_input_freq_signal_FlowT)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_7.addLayout(self.horizontalLayout_5)
|
||||||
|
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowT = QPlainTextEdit(self.groupBox_file_path_input_signal_FlowT)
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowT.setObjectName(u"plainTextEdit_file_path_input_signal_FlowT")
|
||||||
|
|
||||||
|
self.verticalLayout_7.addWidget(self.plainTextEdit_file_path_input_signal_FlowT)
|
||||||
|
|
||||||
|
self.verticalLayout_7.setStretch(1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_signal_FlowT, 3, 0, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_save = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_save.setObjectName(u"groupBox_file_path_save")
|
||||||
|
self.verticalLayout_4 = QVBoxLayout(self.groupBox_file_path_save)
|
||||||
|
self.verticalLayout_4.setObjectName(u"verticalLayout_4")
|
||||||
|
self.plainTextEdit_file_path_save = QPlainTextEdit(self.groupBox_file_path_save)
|
||||||
|
self.plainTextEdit_file_path_save.setObjectName(u"plainTextEdit_file_path_save")
|
||||||
|
|
||||||
|
self.verticalLayout_4.addWidget(self.plainTextEdit_file_path_save)
|
||||||
|
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_save, 6, 0, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_signal_SpO2 = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_signal_SpO2.setObjectName(u"groupBox_file_path_input_signal_SpO2")
|
||||||
|
self.verticalLayout_9 = QVBoxLayout(self.groupBox_file_path_input_signal_SpO2)
|
||||||
|
self.verticalLayout_9.setObjectName(u"verticalLayout_9")
|
||||||
|
self.horizontalLayout_7 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_7.setObjectName(u"horizontalLayout_7")
|
||||||
|
self.label_7 = QLabel(self.groupBox_file_path_input_signal_SpO2)
|
||||||
|
self.label_7.setObjectName(u"label_7")
|
||||||
|
self.label_7.setFont(font)
|
||||||
|
|
||||||
|
self.horizontalLayout_7.addWidget(self.label_7)
|
||||||
|
|
||||||
|
self.spinBox_input_freq_signal_SpO2 = QSpinBox(self.groupBox_file_path_input_signal_SpO2)
|
||||||
|
self.spinBox_input_freq_signal_SpO2.setObjectName(u"spinBox_input_freq_signal_SpO2")
|
||||||
|
self.spinBox_input_freq_signal_SpO2.setFont(font)
|
||||||
|
self.spinBox_input_freq_signal_SpO2.setMinimum(1)
|
||||||
|
self.spinBox_input_freq_signal_SpO2.setMaximum(1000000)
|
||||||
|
|
||||||
|
self.horizontalLayout_7.addWidget(self.spinBox_input_freq_signal_SpO2)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_9.addLayout(self.horizontalLayout_7)
|
||||||
|
|
||||||
|
self.plainTextEdit_file_path_input_signal_SpO2 = QPlainTextEdit(self.groupBox_file_path_input_signal_SpO2)
|
||||||
|
self.plainTextEdit_file_path_input_signal_SpO2.setObjectName(u"plainTextEdit_file_path_input_signal_SpO2")
|
||||||
|
|
||||||
|
self.verticalLayout_9.addWidget(self.plainTextEdit_file_path_input_signal_SpO2)
|
||||||
|
|
||||||
|
self.verticalLayout_9.setStretch(1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_signal_SpO2, 0, 1, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_signal_Tho = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_signal_Tho.setObjectName(u"groupBox_file_path_input_signal_Tho")
|
||||||
|
self.verticalLayout_3 = QVBoxLayout(self.groupBox_file_path_input_signal_Tho)
|
||||||
|
self.verticalLayout_3.setObjectName(u"verticalLayout_3")
|
||||||
|
self.horizontalLayout_3 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
|
||||||
|
self.label_3 = QLabel(self.groupBox_file_path_input_signal_Tho)
|
||||||
|
self.label_3.setObjectName(u"label_3")
|
||||||
|
self.label_3.setFont(font)
|
||||||
|
|
||||||
|
self.horizontalLayout_3.addWidget(self.label_3)
|
||||||
|
|
||||||
|
self.spinBox_input_freq_signal_Tho = QSpinBox(self.groupBox_file_path_input_signal_Tho)
|
||||||
|
self.spinBox_input_freq_signal_Tho.setObjectName(u"spinBox_input_freq_signal_Tho")
|
||||||
|
self.spinBox_input_freq_signal_Tho.setFont(font)
|
||||||
|
self.spinBox_input_freq_signal_Tho.setMinimum(1)
|
||||||
|
self.spinBox_input_freq_signal_Tho.setMaximum(1000000)
|
||||||
|
|
||||||
|
self.horizontalLayout_3.addWidget(self.spinBox_input_freq_signal_Tho)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_3.addLayout(self.horizontalLayout_3)
|
||||||
|
|
||||||
|
self.plainTextEdit_file_path_input_signal_Tho = QPlainTextEdit(self.groupBox_file_path_input_signal_Tho)
|
||||||
|
self.plainTextEdit_file_path_input_signal_Tho.setObjectName(u"plainTextEdit_file_path_input_signal_Tho")
|
||||||
|
|
||||||
|
self.verticalLayout_3.addWidget(self.plainTextEdit_file_path_input_signal_Tho)
|
||||||
|
|
||||||
|
self.verticalLayout_3.setStretch(1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_signal_Tho, 2, 1, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_label = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_label.setObjectName(u"groupBox_file_path_input_label")
|
||||||
|
self.verticalLayout_12 = QVBoxLayout(self.groupBox_file_path_input_label)
|
||||||
|
self.verticalLayout_12.setObjectName(u"verticalLayout_12")
|
||||||
|
self.plainTextEdit_file_path_input_label = QPlainTextEdit(self.groupBox_file_path_input_label)
|
||||||
|
self.plainTextEdit_file_path_input_label.setObjectName(u"plainTextEdit_file_path_input_label")
|
||||||
|
|
||||||
|
self.verticalLayout_12.addWidget(self.plainTextEdit_file_path_input_label)
|
||||||
|
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_label, 5, 1, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_signal_Abd = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_signal_Abd.setObjectName(u"groupBox_file_path_input_signal_Abd")
|
||||||
|
self.verticalLayout_6 = QVBoxLayout(self.groupBox_file_path_input_signal_Abd)
|
||||||
|
self.verticalLayout_6.setObjectName(u"verticalLayout_6")
|
||||||
|
self.horizontalLayout_4 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
|
||||||
|
self.label_4 = QLabel(self.groupBox_file_path_input_signal_Abd)
|
||||||
|
self.label_4.setObjectName(u"label_4")
|
||||||
|
self.label_4.setFont(font)
|
||||||
|
|
||||||
|
self.horizontalLayout_4.addWidget(self.label_4)
|
||||||
|
|
||||||
|
self.spinBox_input_freq_signal_Abd = QSpinBox(self.groupBox_file_path_input_signal_Abd)
|
||||||
|
self.spinBox_input_freq_signal_Abd.setObjectName(u"spinBox_input_freq_signal_Abd")
|
||||||
|
self.spinBox_input_freq_signal_Abd.setFont(font)
|
||||||
|
self.spinBox_input_freq_signal_Abd.setMinimum(1)
|
||||||
|
self.spinBox_input_freq_signal_Abd.setMaximum(1000000)
|
||||||
|
|
||||||
|
self.horizontalLayout_4.addWidget(self.spinBox_input_freq_signal_Abd)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_6.addLayout(self.horizontalLayout_4)
|
||||||
|
|
||||||
|
self.plainTextEdit_file_path_input_signal_Abd = QPlainTextEdit(self.groupBox_file_path_input_signal_Abd)
|
||||||
|
self.plainTextEdit_file_path_input_signal_Abd.setObjectName(u"plainTextEdit_file_path_input_signal_Abd")
|
||||||
|
|
||||||
|
self.verticalLayout_6.addWidget(self.plainTextEdit_file_path_input_signal_Abd)
|
||||||
|
|
||||||
|
self.verticalLayout_6.setStretch(1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_signal_Abd, 2, 0, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_signal_OrgBCG = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_signal_OrgBCG.setObjectName(u"groupBox_file_path_input_signal_OrgBCG")
|
||||||
|
self.verticalLayout_5 = QVBoxLayout(self.groupBox_file_path_input_signal_OrgBCG)
|
||||||
|
self.verticalLayout_5.setObjectName(u"verticalLayout_5")
|
||||||
|
self.horizontalLayout_2 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
|
||||||
|
self.label_2 = QLabel(self.groupBox_file_path_input_signal_OrgBCG)
|
||||||
|
self.label_2.setObjectName(u"label_2")
|
||||||
|
self.label_2.setFont(font)
|
||||||
|
|
||||||
|
self.horizontalLayout_2.addWidget(self.label_2)
|
||||||
|
|
||||||
|
self.spinBox_input_freq_signal_OrgBCG = QSpinBox(self.groupBox_file_path_input_signal_OrgBCG)
|
||||||
|
self.spinBox_input_freq_signal_OrgBCG.setObjectName(u"spinBox_input_freq_signal_OrgBCG")
|
||||||
|
self.spinBox_input_freq_signal_OrgBCG.setFont(font)
|
||||||
|
self.spinBox_input_freq_signal_OrgBCG.setCursor(QCursor(Qt.ArrowCursor))
|
||||||
|
self.spinBox_input_freq_signal_OrgBCG.setMinimum(1)
|
||||||
|
self.spinBox_input_freq_signal_OrgBCG.setMaximum(1000000)
|
||||||
|
|
||||||
|
self.horizontalLayout_2.addWidget(self.spinBox_input_freq_signal_OrgBCG)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_5.addLayout(self.horizontalLayout_2)
|
||||||
|
|
||||||
|
self.plainTextEdit_file_path_input_signal_OrgBCG = QPlainTextEdit(self.groupBox_file_path_input_signal_OrgBCG)
|
||||||
|
self.plainTextEdit_file_path_input_signal_OrgBCG.setObjectName(u"plainTextEdit_file_path_input_signal_OrgBCG")
|
||||||
|
|
||||||
|
self.verticalLayout_5.addWidget(self.plainTextEdit_file_path_input_signal_OrgBCG)
|
||||||
|
|
||||||
|
self.verticalLayout_5.setStretch(0, 2)
|
||||||
|
self.verticalLayout_5.setStretch(1, 3)
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_signal_OrgBCG, 0, 0, 1, 1)
|
||||||
|
|
||||||
|
self.groupBox_file_path_input_signal_FlowP = QGroupBox(self.groupBox)
|
||||||
|
self.groupBox_file_path_input_signal_FlowP.setObjectName(u"groupBox_file_path_input_signal_FlowP")
|
||||||
|
self.verticalLayout_8 = QVBoxLayout(self.groupBox_file_path_input_signal_FlowP)
|
||||||
|
self.verticalLayout_8.setObjectName(u"verticalLayout_8")
|
||||||
|
self.horizontalLayout_6 = QHBoxLayout()
|
||||||
|
self.horizontalLayout_6.setObjectName(u"horizontalLayout_6")
|
||||||
|
self.label_6 = QLabel(self.groupBox_file_path_input_signal_FlowP)
|
||||||
|
self.label_6.setObjectName(u"label_6")
|
||||||
|
self.label_6.setFont(font)
|
||||||
|
|
||||||
|
self.horizontalLayout_6.addWidget(self.label_6)
|
||||||
|
|
||||||
|
self.spinBox_input_freq_signal_FlowP = QSpinBox(self.groupBox_file_path_input_signal_FlowP)
|
||||||
|
self.spinBox_input_freq_signal_FlowP.setObjectName(u"spinBox_input_freq_signal_FlowP")
|
||||||
|
self.spinBox_input_freq_signal_FlowP.setFont(font)
|
||||||
|
self.spinBox_input_freq_signal_FlowP.setMinimum(1)
|
||||||
|
self.spinBox_input_freq_signal_FlowP.setMaximum(1000000)
|
||||||
|
|
||||||
|
self.horizontalLayout_6.addWidget(self.spinBox_input_freq_signal_FlowP)
|
||||||
|
|
||||||
|
|
||||||
|
self.verticalLayout_8.addLayout(self.horizontalLayout_6)
|
||||||
|
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowP = QPlainTextEdit(self.groupBox_file_path_input_signal_FlowP)
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowP.setObjectName(u"plainTextEdit_file_path_input_signal_FlowP")
|
||||||
|
|
||||||
|
self.verticalLayout_8.addWidget(self.plainTextEdit_file_path_input_signal_FlowP)
|
||||||
|
|
||||||
|
self.verticalLayout_8.setStretch(1, 2)
|
||||||
|
|
||||||
|
self.gridLayout_2.addWidget(self.groupBox_file_path_input_signal_FlowP, 3, 1, 1, 1)
|
||||||
|
|
||||||
|
|
||||||
|
self.gridLayout.addWidget(self.groupBox, 0, 0, 1, 4)
|
||||||
|
|
||||||
|
self.pushButton_confirm = QPushButton(self.centralwidget)
|
||||||
|
self.pushButton_confirm.setObjectName(u"pushButton_confirm")
|
||||||
|
self.pushButton_confirm.setFont(font)
|
||||||
|
|
||||||
|
self.gridLayout.addWidget(self.pushButton_confirm, 1, 2, 1, 1)
|
||||||
|
|
||||||
|
MainWindow_SA_label_input_setting.setCentralWidget(self.centralwidget)
|
||||||
|
self.statusbar = QStatusBar(MainWindow_SA_label_input_setting)
|
||||||
|
self.statusbar.setObjectName(u"statusbar")
|
||||||
|
MainWindow_SA_label_input_setting.setStatusBar(self.statusbar)
|
||||||
|
|
||||||
|
self.retranslateUi(MainWindow_SA_label_input_setting)
|
||||||
|
|
||||||
|
QMetaObject.connectSlotsByName(MainWindow_SA_label_input_setting)
|
||||||
|
# setupUi
|
||||||
|
|
||||||
|
def retranslateUi(self, MainWindow_SA_label_input_setting):
|
||||||
|
MainWindow_SA_label_input_setting.setWindowTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u5bfc\u5165\u8bbe\u7f6e", None))
|
||||||
|
self.pushButton_cancel.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u53d6\u6d88", None))
|
||||||
|
self.groupBox.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.groupBox_file_path_input_signal_Stage.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684Stage\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_Stage.setPlaceholderText("")
|
||||||
|
self.groupBox_file_path_input_artifact.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u4f53\u52a8Artifact_a\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_artifact.setPlainText("")
|
||||||
|
self.plainTextEdit_file_path_input_artifact.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.groupBox_file_path_input_signal_FlowT.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684Flow T\u8def\u5f84", None))
|
||||||
|
self.label_5.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u91c7\u6837\u7387(Hz)\uff1a", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowT.setPlainText("")
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowT.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowT.setProperty("signal_type", QCoreApplication.translate("MainWindow_SA_label_input_setting", u"FlowT", None))
|
||||||
|
self.groupBox_file_path_save.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u4fee\u6b63\u540e\u7684\u547c\u5438\u6682\u505c\u6807\u7b7e\u4fdd\u5b58\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_save.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u4fdd\u5b58\u8def\u5f84", None))
|
||||||
|
self.groupBox_file_path_input_signal_SpO2.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684SpO2\u8def\u5f84", None))
|
||||||
|
self.label_7.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u91c7\u6837\u7387(Hz)\uff1a", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_SpO2.setPlainText("")
|
||||||
|
self.plainTextEdit_file_path_input_signal_SpO2.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_SpO2.setProperty("signal_type", QCoreApplication.translate("MainWindow_SA_label_input_setting", u"SpO2", None))
|
||||||
|
self.groupBox_file_path_input_signal_Tho.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684Effort Tho\u8def\u5f84", None))
|
||||||
|
self.label_3.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u91c7\u6837\u7387(Hz)\uff1a", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_Tho.setPlainText("")
|
||||||
|
self.plainTextEdit_file_path_input_signal_Tho.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_Tho.setProperty("signal_type", QCoreApplication.translate("MainWindow_SA_label_input_setting", u"Tho", None))
|
||||||
|
self.groupBox_file_path_input_label.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684\u547c\u5438\u6682\u505c\u6807\u7b7e\u4fdd\u5b58\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_label.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.groupBox_file_path_input_signal_Abd.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684Effort Abd\u8def\u5f84", None))
|
||||||
|
self.label_4.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u91c7\u6837\u7387(Hz)\uff1a", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_Abd.setPlainText("")
|
||||||
|
self.plainTextEdit_file_path_input_signal_Abd.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_Abd.setProperty("signal_type", QCoreApplication.translate("MainWindow_SA_label_input_setting", u"Abd", None))
|
||||||
|
self.groupBox_file_path_input_signal_OrgBCG.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684OrgBCG\u8def\u5f84", None))
|
||||||
|
self.label_2.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u91c7\u6837\u7387(Hz)\uff1a", None))
|
||||||
|
self.spinBox_input_freq_signal_OrgBCG.setPrefix("")
|
||||||
|
self.plainTextEdit_file_path_input_signal_OrgBCG.setPlainText("")
|
||||||
|
self.plainTextEdit_file_path_input_signal_OrgBCG.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_OrgBCG.setProperty("signal_type", QCoreApplication.translate("MainWindow_SA_label_input_setting", u"OrgBCG", None))
|
||||||
|
self.groupBox_file_path_input_signal_FlowP.setTitle(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u540c\u6b65\u540e\u7684Flow P\u8def\u5f84", None))
|
||||||
|
self.label_6.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u91c7\u6837\u7387(Hz)\uff1a", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowP.setPlainText("")
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowP.setPlaceholderText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u6587\u4ef6\u8def\u5f84", None))
|
||||||
|
self.plainTextEdit_file_path_input_signal_FlowP.setProperty("signal_type", QCoreApplication.translate("MainWindow_SA_label_input_setting", u"FlowP", None))
|
||||||
|
self.pushButton_confirm.setText(QCoreApplication.translate("MainWindow_SA_label_input_setting", u"\u786e\u5b9a", None))
|
||||||
|
# retranslateUi
|
||||||
|
|
||||||
462
ui/setting/SA_label_input_setting_v2.ui
Normal file
462
ui/setting/SA_label_input_setting_v2.ui
Normal file
@ -0,0 +1,462 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>MainWindow_SA_label_input_setting</class>
|
||||||
|
<widget class="QMainWindow" name="MainWindow_SA_label_input_setting">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>848</width>
|
||||||
|
<height>859</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>导入设置</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="centralwidget">
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="1" column="3">
|
||||||
|
<widget class="QPushButton" name="pushButton_cancel">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>取消</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0" colspan="4">
|
||||||
|
<widget class="QGroupBox" name="groupBox">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>10</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="title">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout_2">
|
||||||
|
<item row="6" column="1">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_signal_Stage">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的Stage路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_10">
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_signal_Stage">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="undoRedoEnabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="0">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_artifact">
|
||||||
|
<property name="title">
|
||||||
|
<string>体动Artifact_a路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_11" stretch="2">
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_artifact">
|
||||||
|
<property name="plainText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_signal_FlowT">
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的Flow T路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_7" stretch="0,2">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_5">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>采样率(Hz):</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_input_freq_signal_FlowT">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>1000000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_signal_FlowT">
|
||||||
|
<property name="plainText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="signal_type" stdset="0">
|
||||||
|
<string>FlowT</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="6" column="0">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_save">
|
||||||
|
<property name="title">
|
||||||
|
<string>修正后的呼吸暂停标签保存路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_save">
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>保存路径</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_signal_SpO2">
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的SpO2路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_9" stretch="0,2">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_7">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>采样率(Hz):</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_input_freq_signal_SpO2">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>1000000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_signal_SpO2">
|
||||||
|
<property name="plainText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="signal_type" stdset="0">
|
||||||
|
<string>SpO2</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_signal_Tho">
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的Effort Tho路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_3" stretch="0,2">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>采样率(Hz):</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_input_freq_signal_Tho">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>1000000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_signal_Tho">
|
||||||
|
<property name="plainText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="signal_type" stdset="0">
|
||||||
|
<string>Tho</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="1">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_label">
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的呼吸暂停标签保存路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_12">
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_label">
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_signal_Abd">
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的Effort Abd路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_6" stretch="0,2">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_4">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>采样率(Hz):</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_input_freq_signal_Abd">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>1000000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_signal_Abd">
|
||||||
|
<property name="plainText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="signal_type" stdset="0">
|
||||||
|
<string>Abd</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_signal_OrgBCG">
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的OrgBCG路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_5" stretch="2,3">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>采样率(Hz):</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_input_freq_signal_OrgBCG">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="cursor">
|
||||||
|
<cursorShape>ArrowCursor</cursorShape>
|
||||||
|
</property>
|
||||||
|
<property name="prefix">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>1000000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_signal_OrgBCG">
|
||||||
|
<property name="plainText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="signal_type" stdset="0">
|
||||||
|
<string>OrgBCG</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QGroupBox" name="groupBox_file_path_input_signal_FlowP">
|
||||||
|
<property name="title">
|
||||||
|
<string>同步后的Flow P路径</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_8" stretch="0,2">
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_6">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>采样率(Hz):</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_input_freq_signal_FlowP">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>1000000</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPlainTextEdit" name="plainTextEdit_file_path_input_signal_FlowP">
|
||||||
|
<property name="plainText">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>文件路径</string>
|
||||||
|
</property>
|
||||||
|
<property name="signal_type" stdset="0">
|
||||||
|
<string>FlowP</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="2">
|
||||||
|
<widget class="QPushButton" name="pushButton_confirm">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>确定</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<widget class="QStatusBar" name="statusbar"/>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
Reference in New Issue
Block a user