我在使用PyQt时遇到信号/插槽问题。我的代码如下,但它可能值得一些解释。前两个QObject.connect()返回True,所以我知道连接已建立。但是,在更改comboBox中的选择时,不会按预期调用函数getParameters。下面的5连接用于调试和测试与ComboBox相关的其他信号。那些也不按预期打印日志。
从我读过的其他地方有更新的方法来指定连接,这可能是问题吗?如果是这样,有人可以给我一个这种格式的例子吗?谢谢!
#interactive GUI connections:
resultCombo = QObject.connect(self.dlg.ui.comboBox, SIGNAL("currentIndexChanged(const QString & text)"), self.getParameters)
resultSpin = QObject.connect(self.dlg.ui.spinBox_bands, SIGNAL("valueChanged(int i)"), self.getParameters)
QMessageBox.information( self.iface.mainWindow(),"Info", "connections: ComboBox = %s SpinBox = %s"%(str(resultCombo), str(resultSpin)) )
QObject.connect(self.dlg.ui.comboBox, SIGNAL("currentIndexChanged(const QString & text)"), self.log1)
QObject.connect(self.dlg.ui.comboBox, SIGNAL("currentIndexChanged(int index)"), self.log2)
QObject.connect(self.dlg.ui.comboBox, SIGNAL("currentTextChanged(const QString & text)"), self.log3)
QObject.connect(self.dlg.ui.comboBox, SIGNAL("highlighted(const QString & text)"), self.log4)
QObject.connect(self.dlg.ui.comboBox, SIGNAL("activated(const QString & text)"), self.log5)
def log1(self, input):
QgsMessageLog.logMessage("currentIndexChanged string. input = " + str(input), "Debug", 0)
def log2(self, input):
QgsMessageLog.logMessage("currentIndexChanged int. input = " + str(input), "Debug", 0)
def log3(self, input):
QgsMessageLog.logMessage("currentTextChanged string. input = " + str(input), "Debug", 0)
def log4(self, input):
QgsMessageLog.logMessage("highlighted string. input = " + str(input), "Debug", 0)
def log5(self, input):
QgsMessageLog.logMessage("cactivated string. input = " + str(input), "Debug", 0)
答案 0 :(得分:4)
我解决了。正如我猜测的那样,它确实与“新风格”连接语法有关。我不完全确定旧样式为什么连接,但没有调用连接函数,但它现在使用以下代码:
self.dlg.ui.comboBox.currentIndexChanged['QString'].connect(self.getParameters)
self.dlg.ui.spinBox_bands.valueChanged.connect(self.getParameters)
对于那些不知道的人(我没有,也找不到好的文档 - 链接?),['QString']参数允许你选择重载信号的结果类型。这对我很重要,因为我正在使用该类型来区分发件人。但是,我想我应该更明确并使用
sender = self.sender()
在我的getParameters函数中,但这是有效的。