如何通过PySide上的另一个线程从QMainWindow类中捕获一个Signal?

时间:2015-07-14 23:16:37

标签: python qt python-multithreading qmainwindow qt-signals

我有一个MainWindow类,它上面运行了一个Gui应用程序,我希望每次点击我的应用程序中的按钮时,都会发出一个信号并被另一个线程捕获。有我的示例代码(抱歉没有发布我的真实代码,但它现在真的很大):

from PySide.QtGui import *
from PySide.QtCore import *
import sys
import mainGui    #Gui file

class MainWindow(QMainWindow, mainGui.Ui_MainWindow):

mySignal = Signal()


    def __init__(self, parent=None):
        super(MainWindow, self).__init__(parent)
        self.setupUi(self)
        self.newThread = workThread()
        self.newThread.start()

        #myButton is part of Gui application
        self.myButton.clicked.connect(self.myfunction)

    def myfunction(self):
        self.mySignal.emit()

    (...) #Other functions and methods

class workThread(QThread):
     def __init__(self, parent=None):
         super(workThread, self).__init__(parent)

         #The problem:
         MainWindow.mySignal.connect(self.printMessage)

     def run(self):
          (...)

     def printMessage(self):
         print("Signal Recived")
         (...)


def main():
    app = QApplication(sys.argv)
    form = MainWindow()
    form.show()
    app.exec_()

if __name__=="__main__":
    main()

...我收到以下错误:     MainWindow.mySignal.connect(self.printMessage) AttributeError:' PySide.QtCore.Signal'对象没有属性' connect'

有什么想法我怎么能解决这个问题? 提前谢谢!

1 个答案:

答案 0 :(得分:0)

信号就像方法一样 - 它们必须绑定到实例。如果您尝试通过课程直接访问它们,它们将无法正常工作。

修复示例的一种方法是将MainWindow的实例作为线程的父级传递,如下所示:

    self.newThread = workThread(self)
    ...

    parent.mySignal.connect(self.printMessage)