I'm trying to emit a custom python signal. in PyQt3, you just did
self.emit(PYSIGNAL('moved'), (delta,)). Appearantly you have to
specifiy an argument list with the new custom signals, and use
SIGNAL(), so I did:<br>
<br>
&lt;type 'int'&gt;<br>
Traceback (most recent call last):<br>
&nbsp; File &quot;/home/patrick/repos/pk/widgets/pixmapwidgets.py&quot;, line 379, in mouseMoveEvent<br>
&nbsp;&nbsp;&nbsp; self.emit(SIGNAL('moved(int)'), [delta])<br>
TypeError: Argument 0 of signal QAbstractSlider.moved(int) has an invalid type<br>
<br>
I'm printing to the type of &quot;delta&quot; before the traceback to prove that it is an int. What's wrong with this picture?<br clear="all"><br>-- <br>Patrick Kidd Stinson<br><a href="http://pkaudio.sourceforge.net/">http://pkaudio.sourceforge.net/
</a><br><a href="http://pksampler.sourceforge.net/">http://pksampler.sourceforge.net/</a>