I have a GUI and I prepared a drop down list. when the user select one of the drop down list options I want to activate a function. this is the function I want to call when one of the items in the list is selected:
def autoselect():
autoruntype = str(ui.autorunselect.currentText())
return
I know I should connect them by something like (it's an example of a button):
QtCore.QObject.connect(self.autorunselect, QtCore.SIGNAL(_fromUtf8("clicked()")),autoselect )
what should be instead of "clicked" when using drop down list