pyqt4 emiting signals in threads to slots in main thread
问题 I have some custom signals in my main thread that I would like to emit in my other threads but I'm not sure how to connect them. Could someone post an example? ex: import sys, time from PyQt4 import QtGui as qt from PyQt4 import QtCore as qtcore app = qt.QApplication(sys.argv) class widget(qt.QWidget): signal = qtcore.pyqtSignal(str) def __init__(self, parent=None): qt.QWidget.__init__(self) self.signal.connect(self.testfunc) def appinit(self): thread = worker() thread.start() def testfunc