Re: [PyKDE] Re: embedding python widgets in C++ app

2007-01-28 Thread David Boddie
On Sat, 27 Jan 2007 14:12:49 -0900, Patrick Stinson wrote: > I mashed up a simple and dry reference for this procedure. I'm still > editing it a little... > > http://www.patrickkidd.com/pk/trac/wiki/EmbeddedPythonWidgets It looks good - you added support for specifying a parent widget so that you

Re: [PyKDE] error(int) signal from QTcpSocket not firing

2007-01-28 Thread Andreas Pakulat
On 28.01.07 12:26:17, Ewald de Wit wrote: > In PyQt4 the error(int) signal from QTcpSocket seems to never fire anymore. > For example, when trying to connect to a non-existing host, nothing > happens after calling connectToHost. In PyQt3 this would result in > an error(int) signal being raised that

Re: [PyKDE] QLayout parent

2007-01-28 Thread Sibylle Koczian
"Tony Cappellini" <[EMAIL PROTECTED]> schrieb: Is this what you mean? If not- would you add an example? [snipped] self.h_layout.addChildLayout(self.v1_layout) self.h_layout.addChildLayout(self.v2_layout) Probably wrong, should be: self.h_layout.addLayout(self.v1_layout) self.h_

[PyKDE] error(int) signal from QTcpSocket not firing

2007-01-28 Thread Ewald de Wit
In PyQt4 the error(int) signal from QTcpSocket seems to never fire anymore. For example, when trying to connect to a non-existing host, nothing happens after calling connectToHost. In PyQt3 this would result in an error(int) signal being raised that indicated a 'Connection refused'. Please see the