pyside / pyqt:绑定共享相同功能的多个按钮的简单方法

时间:2012-04-01 17:49:51

标签: python qt user-interface pyqt pyside

我是PyQt / PySide的新手。

我有很多行编辑(用于显示文件位置)和每行文本我有一个按钮(显示打开文件对话框)。

我有一个方法:

   def selectSelf1(self): 
        """ browse for file dialog """
        myDialog = QtGui.QFileDialog
        self.lineSelf1.setText(myDialog.getOpenFileName())

并使用以下代码绑定按钮

    self.btnSelf1.clicked.connect(self.selectSelf1)

我有大约20个按钮和20个行编辑。有没有一种简单的方法可以将所有这些按钮绑定到相应的行编辑,而不是键入所有内容。

谢谢!

1 个答案:

答案 0 :(得分:5)

如果您有Buttons和LineEdits列表,可以使用以下命令:

  • QSignalMapperanother description

  • functools.partial,就像这样:

    def show_dialog(self, line_edit):
        ...
        line_edit.setText(...)
    
    for button, line_edit in zip(buttons, line_edits):
        button.clicked.connect(functools.partial(self.show_dialog, line_edit))
    
  • lambda

    for button, line_edit in ...: 
        button.clicked.connect(lambda : self.show_dialog(line_edit))
    

如果您使用Qt Designer,并且没有按钮和lineedits列表,但它们都具有相同的命名模式,您可以使用一些内省:

class Foo(object):
    def __init__(self):
        self.edit1 = 1
        self.edit2 = 2
        self.edit3 = 3
        self.button1 = 1
        self.button2 = 2
        self.button3 = 3

    def find_attributes(self, name_start):
        return [value for name, value in sorted(self.__dict__.items())
                          if name.startswith(name_start)]

foo = Foo()
print foo.find_attributes('edit')
print foo.find_attributes('button')