相关疑难解决方法(0)

pyqt4在线程中向主线程中的槽发出信号

我的主线程中有一些自定义信号,我想在其他线程中发出,但我不知道如何连接它们.有人可以发一个例子吗?

例如:

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(self, sigstr):
        print sigstr

class worker(qtcore.QThread):
    def __init__(self):
        qtcore.QThread.__init__(self, parent=app)

    def run(self):
        time.sleep(5)
        print "in thread"
        self.emit(qtcore.SIGNAL("signal"),"hi from thread")

def main():
    w = widget()
    w.show()
    qtcore.QTimer.singleShot(0, w.appinit)
    sys.exit(app.exec_())

main()
Run Code Online (Sandbox Code Playgroud)

信号从未提出过.

python qt multithreading signals-slots

2
推荐指数
1
解决办法
2万
查看次数

标签 统计

multithreading ×1

python ×1

qt ×1

signals-slots ×1