How to determine who emitted the signal?

I think that I opened a question too early, because I found an answer on google by myself.
When slot is activated by emitter, the pointer of emitter stored, and can be retrieved by

QObject::sender()

and as a result can be accessed in PyQt by:

@QtCore.pyqtSlot()
def someSlot(self):
    self.sender()

Leave a Comment