first commit

This commit is contained in:
2025-07-29 13:16:30 +08:00
commit dca51db4eb
145 changed files with 721268 additions and 0 deletions

16
view/ResetView.py Normal file
View File

@ -0,0 +1,16 @@
from PyQt5.QtWidgets import QDialog
from PySide6.QtCore import Signal, Slot
from view.ui_Dialog_Reset import Ui_Dialog_reset
class StopDialog(QDialog, Ui_Dialog_reset):
stop_thread_signal = Signal() # 通知主线程停止信号
def __init__(self):
super(Ui_Dialog_reset, self).__init__()
self.setupUi(self)
self.pushButton_stopFeed.clicked.connect(self.emit_stop_signal)
@Slot()
def emit_stop_signal(self):
self.stop_thread_signal.emit()
self.close()