I create a dialog with a custom class:
d = ModifyRect(ctrl_name, rect_name)
It is shown modelessly. When it is accepted or rejected, I want to call a function on my MainWindow passing in these two variables, i.e. this slot should be called:
@QtCore.pyqtSlot("QString","QString")
def modifyRectAccepted(self, ctrl_name, rect_name):
#foo
How do I go about connecting d's accepted to my MainWindow's modifyRectAccepted, passing in those 2 parameters? Or even, connect the two, but at least pass the ModifyRect instance in so I can grab them from there.
in pygtk this is pretty simple - you can pass more variables into connect and they are forwarded, and in any case the emitting widget is always passed in. What's the equivalent concept in PyQt?