gpt4 book ai didi

python - 如何安全退出pyqt应用程序python

转载 作者:行者123 更新时间:2023-12-03 13:23:28 24 4
gpt4 key购买 nike

我有一个 pyqt5项目。我以全屏模式启动窗口。它正在工作,但因为它是全屏的,所以我无法点击 x按钮关闭它,所以我必须按 alt-f4关闭它。它工作正常,但现在我在项目中运行了另一个类,因此当我按下 alt-f4 时,它关闭了窗口,但仍然看起来线程没有关闭,因为它停留在终端中。下面是代码:

class RecognizeFaceInFrame(Thread):

def __init__(self):
super().__init__()

self.get_face_name = False
self.stop_face_thread = False

def recognize_face_frame(self):
try:
if self.get_face_name:
#SOME CODE
time.sleep(1)
except Exception as e:
print("Exception occurred in recognize face {}".format(e))

def run(self):
while not self.stop_face_thread:
self.recognize_face_frame()

class TRIANGLE(QMainWindow, Ui_MainWindow):
def __init__(self):
# SOME CODE
self.showFullScreen()

self.timer = QTimer()
self.timer.timeout.connect(self.view_cam)
self.timer.start(20)
self.frame_count = 0

self.face_recog_thread = RecognizeFaceInFrame()
self.face_recog_thread.start()

def __del__(self):
self.timer.stop()
self.face_recog_thread.stop_face_thread = True

def view_cam(self):
# SOME CODE


app = QApplication(sys.argv)
app.setStyle('Windows')
main_window = TRIANGLE()
main_window.show()
sys.exit(app.exec_())

我有课 RecognizeFaceInFrame我在 __init__ 中初始化在 TRIANGLE类(class)。功能 recognize_face_frame如果我们设置 get_face_name 将开始执行至 True .如果我们设置 stop_face_threadTrue ,该线程将自动关闭,因此我将其放入 __del__TRAINGLE但是当我按下 alt-f4它没有关闭。谁能帮我理解我应该在这里做什么来安全地关闭所有线程和应用程序。请帮忙。谢谢

最佳答案

如何使用 closeEvent ?

继承 Qt 模块的类被 Qt 自己的 garbage collector 删除- 至少链接是这样说的。因此,UI 对象不会立即被删除。

将 PySide2 更改为 PyQt 并尝试此操作。一旦你按下 alt+f4,函数 closeEvent 就会运行。在那之前,线程将继续向控制台打印消息。

from PySide2.QtWidgets import QWidget, QApplication, QTextEdit, QVBoxLayout
from PySide2.QtGui import QCloseEvent
from threading import Thread
import sys
import time


class TestThread(Thread):

def __init__(self):
super().__init__()
self.stop_thread = False

def run(self):
while not self.stop_thread:
print("I'm alive!")
time.sleep(1)

print("Dead! Not a big surprise.")


class MainWindow(QWidget):
def __init__(self):
super(MainWindow, self).__init__()

self.test_thread = TestThread()
self.test_thread.start()

def closeEvent(self, event:QCloseEvent):
self.test_thread.stop_thread = True



if __name__ == '__main__':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())

结果:

I'm alive!
I'm alive!
I'm alive!
Dead! Not a big surprise.

Process finished with exit code -1

关于python - 如何安全退出pyqt应用程序python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62355887/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com