pyqt5:通过访问在 GUI 小部件中输入的值来执行用于评估的本地函数

pyqt5: execute a local function for evaluation by accessing the values entered in GUI widgets

我正在开发一个带有一些下拉菜单和行编辑字段的 GUI。我可以让它工作。场景是,使用输入的值(全部按下按钮或键盘输入),我想评估这些值,然后激活 GUI 中的 'execute tool' 按钮。

问题是我没有按钮或任何用于此评估功能的中断。填写完所有字段后应该会自动完成。

我有一个单独的评估功能。但我不知道如何在 GUI 进程之间调用这个简单的 python 'evaluation' 函数。

    class ApplicationWindow:
        def __init__(self):
          ### .... init variables
    
        def main_gui(self):
        # creating a qt gui widget application Object to display - Config setup
        app = QtWidgets.QApplication(sys.argv)
        ... # All basic stuff for GUI setup, init & connect on key press
        self.gui.i_year_num.activated.connect(lambda: self.i_year_fun())
        self.gui.i_month_num.activated.connect(lambda: self.i_month_fun())
        # self.evaluate()       # Calling here executes this fun before even GUI is opened
        sys.exit(app.exec_())
        
        def evaluate(self):
            if ((self.i_year is not None)
                    and (self.i_month is not None) and .... #conditions# ):
                print("All fields are not empty")
                self.i_flag = True
    
            if ((self.i_year == '')
                    or (self.i_month == '') or .... #conditions#):
                self.showInfoDialog('Error', ' All fields should be filled! ')
    
            self.file_name_tag = str(self.i_name) + '-' + str(self.i_year) + '-' \
                                 + str(self.i_month) + '-' + str(self.version_id)
            print("Name tag is ", self.file_name_tag)


# The gui is called here
ApplicationWindow_object = ApplicationWindow()
ApplicationWindow_object.main_gui()

您必须创建一个方法来验证所有输入并在每次您要监视的输入发生变化时调用它:

    self.gui.button.setEnabled(False)
    # connections
    self.gui.i_year_num.activated.connect(self.verify_validate)
    self.gui.i_month_num.activated.connect(self.verify_validate)

def verify_validate(self):
    is_valid = self.validate()
    self.gui.button.setEnabled(is_valid)
    if not is_valid:
        self.showInfoDialog('Error', ' All fields should be filled! ')


def validate(self):
    if not all(self.gui.i_year_num, self.gui.i_month):
        # some input is empty
        return False
    # other checks
    return True