I need to check the signal for the presence of the listener, before it is emitted.

class Test(QObject):
    test = pyqtSignal(str,dict)
    def run(self):
        if self.receivers(SIGNAL("test(str,dict)"):
           self.test.emit('blablabla',{})`

The signal is connected to the slot right and successfully emits signals.
When checking the signature signal, the method QObject.receivers() shows that this signal is not connected.
I understood, reason was incorrect signature, I did not find a method, to specify the faithful signature of signal.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

The signature for your signal is "test(QString, PyQt_PyObject)".

So obviously, str is mapped to QString and other native python object types, dict, list... are mapped to the C++ type PyQt_PyObject.

The list of signal signatures can be obtained through the QMetaObject associated with your object:

test = Test()
metaobject = test.metaObject()
for i in range(metaobject.methodCount()):
    print(metaobject.method(i).signature())
link|improve this answer
Thank you very much, this is what I need. – PaKman Oct 17 '11 at 22:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.