I have a widget inside another widget.<br><br>1/<br>I would like to have a ~for loop that propagate all the signals of the 
inner widget as if they were emitted by the container widget.<br>
That is for each signals <br>self.connect(myChild, SIGNAL("mySignal()"), self.mySignal.emit())<br><br>how can I list the signals that an object has?<br><br>2/<br>I understand also that the signals needs to be declared at both levels.<br>

Is there a way to do that progammatically?<br><br>3/<br>A propos, I noticed that inheritance doesn't seem to pass signal definition.<br>That is <br><br>class Lwidget(QWidget):<br>    mysignal = pyqtSignal()<br><br>class LSuperWidget(Lwidget):<br>

    <here the signal needs to be redefined>        <-- is there a way to avoid this?<br><br><br><br><br>