PyQt - 从另一个线程修改GUI

时间:2012-11-16 16:51:48

标签: python multithreading user-interface pyqt

我正在尝试从另一个线程修改我的主要布局。但是从不调用函数run() 我有错误:

  

QObject :: setParent:无法设置父级,新父级是不同的   螺纹

这是我的代码:

class FeedRetrievingThread(QtCore.QThread):
    def __init__(self, parent=None):
        super(FeedRetrievingThread, self).__init__(parent)
        self.mainLayout = parent.mainLayout
    def run(self):
        # Do things with self.mainLayout

class MainWindow(QtGui.QDialog):
    def __init__(self, parent=None):  
        super(MainWindow, self).__init__(parent)
        self.mainLayout = QtGui.QGridLayout() 
        self.setLayout(self.mainLayout)  
        self.feedRetrievingThread = FeedRetrievingThread(self)
        self.timer = QtCore.QTimer()
        self.timer.timeout.connect(self.updateFeed)
        self.timer.start(1000)

    def updateFeed(self):
        if not self.feedRetrievingThread.isRunning():
            print 'Running thread.'
            self.feedRetrievingThread.start()

if __name__ == '__main__':  
    app = QtGui.QApplication(sys.argv)  
    mainWindow = MainWindow()  
    mainWindow.show()
    sys.exit(app.exec_())

我真的不明白,为什么用PyQt访问GUI这么困难? 在C#中你有Invoke。 PyQt中有类似的东西吗?

我尝试直接从MainWindow.__init__创建线程(不使用计时器),但它也不起作用。

1 个答案:

答案 0 :(得分:6)

在Qt中,你永远不应该尝试直接从GUI线程外部更新GUI。

相反,让你的线程发出信号并将它们连接到插槽,从GUI线程中进行必要的更新。

请参阅有关Threads and QObjects的Qt文档。