我已准备好很多关于如何将多个信号连接到python和pyqt中的同一事件处理程序的帖子。例如,将多个按钮或组合框连接到同一功能。
许多示例显示如何使用QSignalMapper执行此操作,但在信号携带参数时不适用,例如combobox.currentIndexChanged
很多人认为它可以用lambda制作。我同意这是一个干净而漂亮的解决方案,但没有人提到lambda创建了一个包含引用的闭包 - 因此无法删除引用的对象。你好内存泄漏!
证明:
from PyQt4 import QtGui, QtCore
class Widget(QtGui.QWidget):
def __init__(self):
super(Widget, self).__init__()
# create and set the layout
lay_main = QtGui.QHBoxLayout()
self.setLayout(lay_main)
# create two comboboxes and connect them to a single handler with lambda
combobox = QtGui.QComboBox()
combobox.addItems('Nol Adyn Dwa Tri'.split())
combobox.currentIndexChanged.connect(lambda ind: self.on_selected('1', ind))
lay_main.addWidget(combobox)
combobox = QtGui.QComboBox()
combobox.addItems('Nol Adyn Dwa Tri'.split())
combobox.currentIndexChanged.connect(lambda ind: self.on_selected('2', ind))
lay_main.addWidget(combobox)
# let the handler show which combobox was selected with which value
def on_selected(self, cb, index):
print '! combobox ', cb, ' index ', index
def __del__(self):
print 'deleted'
if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
wdg = Widget()
wdg.show()
wdg = None
sys.exit(app.exec_())
虽然我们清除了引用,但未删除窗口小部件。删除与lambda的连接 - 它被正确删除。
所以,问题是:在没有泄漏内存的情况下,将多个带参数的信号连接到单个处理程序的正确方法是什么?
答案 0 :(得分:2)
由于信号连接在闭包中保存引用,因此无法删除对象是不正确的。 Qt会在删除对象时自动删除所有信号连接,这将删除对python端lambda
的引用。
但这意味着您不能总是依靠Python 单独来删除对象。每个PyQt对象都有两个部分:Qt C ++部分和Python包装器部分。必须删除这两个部分 - 有时按特定顺序删除(取决于Qt或Python当前是否拥有该对象的所有权)。除此之外,还有Python垃圾收集器的变幻莫测(尤其是在解释器关闭的短时间内)。
无论如何,在您的具体示例中,简单的解决方法就是:
# wdg = None
wdg.deleteLater()
这会调度对象以进行删除,因此需要运行事件循环才能生效。在您的示例中,这也将自动退出应用程序(因为该对象是最后一个窗口关闭)。
为了更清楚地了解发生了什么,你也可以试试这个:
#wdg = None
wdg.deleteLater()
app.exec_()
# Python part is still alive here...
print(wdg)
# but the Qt part has already gone
print(wdg.objectName())
输出:
<__main__.Widget object at 0x7fa953688510>
Traceback (most recent call last):
File "test.py", line 45, in <module>
print(wdg.objectName())
RuntimeError: wrapped C/C++ object of type Widget has been deleted
deleted
修改强>:
这是另一个调试示例,希望它更清晰:
wdg = Widget()
wdg.show()
wdg.deleteLater()
print 'wdg.deleteLater called'
del wdg
print 'del widget executed'
wd2 = Widget()
wd2.show()
print 'starting event-loop'
app.exec_()
输出:
$ python2 test.py
wdg.deleteLater called
del widget executed
starting event-loop
deleted
答案 1 :(得分:1)
self.signalMapper = QtCore.QSignalMapper(self)
self.signalMapper.mapped[str].connect(myFunction)
self.combo.currentIndexChanged.connect(self.signalMapper.map)
self.signalMapper.setMapping(self.combo, self.combo.objectName())
def myFunction(self, identifier):
combo = self.findChild(QtGui.QComboBox,identifier)
index = combo.currentIndex()
text = combo.currentText()
data = combo.currentData()