PyQt5:如何在子步骤中运行QTimer并将值返回到主Widget?

问题描述 投票:0回答:1

我必须说这是一个初学者的问题。但我尝试/搜索了很多但没有成功。

有一个QLabel,通过运行我想要显示在其上的子线程的值的代码。

另外我想在子线程中使用QTimer,因为时间是在那里控制的(不在主QThread中)。

这是我想要实现的对QLable的影响......

0 (show for 1 second)
1 (show for 1 second)
2 (show for 1 second)
...
11 (show for 2 second)
12 (show for 2 second)
...
21 (show for 3 second)
22 (show for 3 second)
...

这是我的代码:

# -*- coding: utf-8 -*-

import sys
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *


class WorkerThread(QThread):

    def __init__(self, parent=None):
        super(WorkerThread, self).__init__(parent)
        self._running = False

        self.timer = QTimer()  # Question: define the QTimer here?
        self.timer.timeout.connect(self.doWork)
        self.timer.start(1000)

    def run(self):
        self._running = True
        while self._running:
            self.doWork()

    def doWork(self):
        for i in range(40):  # Question: How to return the i onto the QLable?
            if i <= 10: 
                # show the value of i on the QLabel and wait for 1 second
                pass
            elif i <= 20:
                # show the value of i on the QLable and wait for 2 second
                pass
            elif i <= 30:
                # show the value of i on the QLable and wait for 3 second
                pass
            else:
                # show the value of i on the QLable and wait for 4 second
                pass

    def stop(self, wait = False):
        self._running = False
        if wait:
            self.wait()


class MyApp(QWidget):
    def __init__(self, parent= None):
        super(MyApp, self).__init__(parent)
        self.thread = WorkerThread()
        self.initUI()

    def initUI(self):
        self.text = "hello world"
        self.setGeometry(100, 100, 500, 100)
        self.setWindowTitle('test')

        self.lbl_1 = QLabel("for every number between 0-10 wait 1 second, for 11-20 wait 2 sec, ...", self)

        self.show()


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

总之,有两个问题:1。如何在子线程中定义QTimer? 2.如何将子线程中的值返回到QLabel

感谢您的帮助!

python pyqt pyqt5 qthread qtimer
1个回答
1
投票

没有必要使用QTimer来执行您需要的任务,在一个线程中您可以使用生成暂停的阻塞元素(如QThead::sleep())。要发送信息,我们可以使用parent()传递GUI并将其与QMetaObject::invokeMethod()相结合,我们可以更新符合Qt规则的标签:

class WorkerThread(QThread):
    [...]    
    def doWork(self):
        for i in range(40):  # Question: How to return the i onto the QLable?
            if i <= 10:
                QThread.sleep(1)
            elif i <= 20:
                QThread.sleep(2)
            elif i <= 30:
                QThread.sleep(3)
            else:
                QThread.sleep(4)
            gui = self.parent()
            QMetaObject.invokeMethod(gui.lbl_1, "setText", Qt.QueuedConnection,
                                     Q_ARG(str, str(i)))

[...]    

class MyApp(QWidget):
    def __init__(self, parent=None):
        super(MyApp, self).__init__(parent) 
        self.thread = WorkerThread(self) # passing the window as a parent
        self.thread.start()
        self.initUI()

    def initUI(self):
        [...]

我们也可以使用QTimerQEventLoop来产生与QThread::sleep()相同的效果:

def doWork(self):
    for i in range(40):  # Question: How to return the i onto the QLable?
        if i <= 10:
            interval = 1000
        elif i <= 20:
            interval = 2000
        elif i <= 30:
            interval = 3000
        else:
            interval = 4000
        loop = QEventLoop()
        QTimer.singleShot(interval, loop.quit)
        loop.exec_()
        gui = self.parent()
        QMetaObject.invokeMethod(gui.lbl_1, "setText", Qt.QueuedConnection,
                                 Q_ARG(str, str(i)))

我们可以使用信号代替使用QMetaObject::invokeMethod

class WorkerThread(QThread):
    numberChanged = pyqtSignal(str)
    def __init__(self, parent=None):
        [...]

    def doWork(self):
        for i in range(40):  # Question: How to return the i onto the QLable?
            if i <= 10:
                interval = 1000
            elif i <= 20:
                interval = 2000
            elif i <= 30:
                interval = 3000
            else:
                interval = 4000
            loop = QEventLoop()
            QTimer.singleShot(interval, loop.quit)
            loop.exec_()
            self.numberChanged.emit(str(i))

[...]

class MyApp(QWidget):
    def __init__(self, parent=None):
        super(MyApp, self).__init__(parent)
        self.thread = WorkerThread(self)
        self.thread.start()
        self.initUI()

    def initUI(self):
        self.text = "hello world"
        self.setGeometry(100, 100, 500, 100)
        self.setWindowTitle('test')
        self.lbl_1 = QLabel("for every number between 0-10 wait 1 second, for 11-20 wait 2 sec, ...", self)
        self.thread.numberChanged.connect(self.lbl_1.setText, Qt.QueuedConnection)
        self.show()
© www.soinside.com 2019 - 2024. All rights reserved.