0

我在使用 PySide 的 GUI 编程和一般的 Python GUI 中有点新。我正在尝试使用线程设置进度条值,但它不起作用,并且不断出现以下错误:

 QPixmap: It is not safe to use pixmaps outside the GUI thread 

或者

 QWidget::repaint: Recursive repaint detected 

程序突然崩溃,尤其是当我试图与 gui 中的另一个小部件交互时。


以下不是实际代码,它只是我想要做的模拟:

from PySide.QtGui import *
from PySide.QtCore import *​​
import os, time, platform, sys
class main(QDialog):
    def __init__(self, parent = None):
        super(main, self).__init__(parent)
        self.resize(300, 100)
        self.setMinimumSize(QSize(300, 100))
        self.setMaximumSize(QSize(300, 100))
        self.setWindowTitle("Test")
        self.buttonStart = QPushButton("Start")
        self.progressBar = QProgressBar()
        self.gridLayout = QGridLayout(self)
        self.setLayout(self.gridLayout)
        self.gridLayout.addWidget(self.progressBar, 0, 0, 1, 1)
        self.gridLayout.addWidget(self.buttonStart, 0, 1, 1, 1)
        self.connect(self.buttonStart, SIGNAL("clicked()"), self.startProgress)
        self.genericThread = GenericThread(self.test)
    def startProgress(self):
        self.genericThread.start()
    def test(self):
        print "started"
        for i in range(100):
            time.sleep(0.3)
            print i
            self.progressBar.setValue(i)
        print "done"
class GenericThread(QThread):
    def __init__(self, function, *args, **kwargs):
        QThread.__init__(self)
        self.function = function
        self.args = args
        self.kwargs = kwargs
    def run(self):
        self.function(*self.args,**self.kwargs)
        return
app = QApplication(sys.argv)
start = main()
start.show()
app.exec_()

因此,GenericThread 应该在线程中运行传递给它的任何函数,而不是为每个函数创建一个线程。我知道我应该使用信号来使线程更改 gui 线程中的小部件,但实际上我未能将其应用于此线程类。我试图将信号添加到测试功能,并将其连接到主类,但它没有做任何事情。

所以我该怎么做?我不想更改线程类 GenericThread,因为实际代码中有很多函数需要在单独的线程中运行,同时我需要向用户显示线程的进度。

4

1 回答 1

0

使用信号给 gui 线程让它更新进度条和/或绘制像素图。

并且当您连接该信号时,请确保您告诉它使用 a Qt::QueuedConnection,而不是 a Qt::AutoConnection

http://doc.qt.io/qt-4.8/qt.html#ConnectionType-enum

http://doc.qt.io/qt-4.8/qobject.html#connect

http://doc.qt.io/qt-4.8/qcoreapplication.html#processEvents

希望有帮助。

于 2013-06-24T03:35:07.627 回答