接口加载完成后,如何在PyQt5中调用方法?

时间:2019-01-10 10:34:20

标签: python python-3.x pyqt pyqt5

我正在Qt5中创建一个仪器界面,它工作正常。唯一的问题是启动缓慢,因为接口__init__包含一种耗时的方法(5-10秒),用于连接仪器。当前,几秒钟内什么都没有显示,然后整个界面显示在控制台中(“文本编辑”小部件)已写入“成功连接到仪器”消息。

我想要的是立即显示该界面,并且只有在显示该界面之后,它才应该启动通信协议。我确信这只是在一条线上移动的问题,但是我不知道。任何帮助表示赞赏。

这是程序结构的最小示例:

# ================================================
#      Interface management.
# ================================================

class RENAMEMELATER(Ui_renamemetoo, QObject):

     def __init__(self, parent):
        super(Ui_renamemetoo, self).__init__()
        self.ui = Ui_renamemetoo()
        self.ui.setupUi(parent)

        # Redirect IDE console towards GUI console.
        sys.stdout = EmittingStream()
        sys.stdout.textWritten.connect(self.redirect_console_messages)
        sys.stderr = EmittingStream()
        sys.stderr.textWritten.connect(self.redirect_console_messages)

        # Initialize PC/instrument communication (MOVE SOMEWHERE ELSE?)
        self.T = TaborSE5082("USB0::0x168C::0x5082::0000218391::INSTR") # TIME CONSUMING.



   def redirect_console_messages(self, text):
       """All print() from the program are appended on a textEdit
          instead of the IDE console."""

        self.ui.Console_textEdit.append(text.rstrip("\n"))



    def close_program(self):
        """Call those functions after the user clicked on exit."""

        self.T.CLOSE()
        sys.stdout = sys.__stdout__
        sys.stderr = sys.__stderr__
        print("Program terminated.")

# ================================================
#      Program execution.
# ================================================

if __name__ == "__main__":

    # Define the app.
    if not QtWidgets.QApplication.instance():
        app = QtWidgets.QApplication(sys.argv)
    else:
        app = QtWidgets.QApplication.instance()

    # Start the interface.
    Form = QtWidgets.QWidget()
    prog = RENAMEMELATER(Form)
    Form.show()

    # Handle what happens at program exit.
    app.setQuitOnLastWindowClosed(True)
    app.aboutToQuit.connect(prog.close_program)

    # Launch.
    app.exec()

主要,我可以使用app.aboutToQuit关闭仪器。也许我可以app.isDoneLoading以某种方式.connect进行仪器初始化吗?

谢谢。

1 个答案:

答案 0 :(得分:2)

需要花费5到10秒的任务很重,因此除了不显示GUI之外,您还可以冻结它,因此解决方案是在另一个线程中运行它:

def __init__(self, parent):

    # ...
    threading.Thread(target=self.callback, daemon=True).start()

def callback(self):
    self.T = TaborSE5082("USB0::0x168C::0x5082::0000218391::INSTR")
    # another code