我尝试使用SIGNALs从线程接收字符串到我的主GUI。一切正常,直到我想在QMessageBox中使用该字符串。打印出来没有问题,但是启动QMessageBox会给我带来一些错误(有些是关于QPixmap的,我甚至没有在GUI中使用它。
以下是我的代码的简短工作示例:
import sys
import urllib2
import time
from PyQt4 import QtCore, QtGui
class DownloadThread(QtCore.QThread):
def __init__(self):
QtCore.QThread.__init__(self)
def run(self):
time.sleep(3)
self.emit(QtCore.SIGNAL("threadDone(QString)"), 'test')
class MainWindow(QtGui.QWidget):
def __init__(self):
super(MainWindow, self).__init__()
self.list_widget = QtGui.QListWidget()
self.button = QtGui.QPushButton("Start")
self.button.clicked.connect(self.start_download)
layout = QtGui.QVBoxLayout()
layout.addWidget(self.button)
layout.addWidget(self.list_widget)
self.setLayout(layout)
self.downloader = DownloadThread()
self.connect(self.downloader, QtCore.SIGNAL("threadDone(QString)"), self.threadDone, QtCore.Qt.DirectConnection)
def start_download(self):
self.downloader.start()
def threadDone(self, info_message):
print info_message
QtGui.QMessageBox.information(self,
u"Information",
info_message
)
#self.show_info_message(info_message)
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
window = MainWindow()
window.resize(640, 480)
window.show()
sys.exit(app.exec_())
我得到了这个错误:
QObject :: setParent:无法设置父级,新父级是不同的 螺纹
QPixmap:在GUI线程之外使用pixmaps是不安全的
仅在移动鼠标和QMessageBox时仍出现此错误:
QObject :: startTimer:无法从另一个线程启动计时器
QApplication:对象事件过滤器不能在不同的线程中。
谁能告诉我我做错了什么?
这是我第一次使用线程。
谢谢! 孙燕姿
答案 0 :(得分:4)
QtCore.Qt.DirectConnection
- 此选项意味着将从信号的线程调用插槽。您的代码(至少)有两个运行的线程:主GUI线程和DownloadThread
。因此,使用此选项,程序会尝试从threadDone
调用DownloadThread
,并尝试在GUI线程外部创建GUI对象。
这导致:QPixmap: It is not safe to use pixmaps outside the GUI thread
删除此选项并且默认行为(等待在调用插槽之前返回主线程)应该清除错误。