Re: [PyQt] [Fwd: Bug#441577: ftbfs with g++-4.3/gcc-snapshot]

2007-09-10 Thread Andreas Pakulat
On 10.09.07 16:30:50, Jim Bublitz wrote: > On Monday 10 September 2007 13:25, Torsten Marek wrote: > > Hi Phil, > > > > there has been a bug report about g++-4.3-related build problems, can > > you comment on that, please? > > > > BTW, are you aware of the severe performance problems when compiling

Re: [PyQt] [Fwd: Bug#441577: ftbfs with g++-4.3/gcc-snapshot]

2007-09-10 Thread Jim Bublitz
On Monday 10 September 2007 13:25, Torsten Marek wrote: > Hi Phil, > > there has been a bug report about g++-4.3-related build problems, can > you comment on that, please? > > BTW, are you aware of the severe performance problems when compiling > sip-generated code with g++ 4.2? It has improved wit

Re: [PyQt] [Fwd: Bug#441577: ftbfs with g++-4.3/gcc-snapshot]

2007-09-10 Thread Phil Thompson
On Monday 10 September 2007, Torsten Marek wrote: > Hi Phil, > > there has been a bug report about g++-4.3-related build problems, can > you comment on that, please? I can't see where the types are ambiguous. Can you send me a copy of the line in the .sip file that it's complaining about so that

[PyQt] [Fwd: Bug#441577: ftbfs with g++-4.3/gcc-snapshot]

2007-09-10 Thread Torsten Marek
Hi Phil, there has been a bug report about g++-4.3-related build problems, can you comment on that, please? BTW, are you aware of the severe performance problems when compiling sip-generated code with g++ 4.2? It has improved with recent 4.3 snapshots, but is still not as fast as 4.1 used to be.

Re: [PyQt] Adding properties to a custom widget

2007-09-10 Thread Hans-Peter Jansen
Am Montag, 10. September 2007 18:34 schrieb skawaii: > > Yeah, I know about pyqtProperty(), as was indicated in my first post. But > like you said, that's PyQt4. Oh well. Guess I'm out of luck and will have > to come up with some crazy work-around. ..which boils down to implementing your widget in

Re: [PyQt] Adding properties to a custom widget

2007-09-10 Thread skawaii
Phil Thompson-2 wrote: > > On Monday 10 September 2007, skawaii wrote: >> Phil Thompson-2 wrote: >> > Sorry, you're out of luck - you need PyQt4 for this. >> > >> > Phil >> > ___ >> > PyQt mailing listPyQt@riverbankcomputing.com >> > http://www.ri

Re: [PyQt] Adding properties to a custom widget

2007-09-10 Thread Phil Thompson
On Monday 10 September 2007, skawaii wrote: > Phil Thompson-2 wrote: > > Sorry, you're out of luck - you need PyQt4 for this. > > > > Phil > > ___ > > PyQt mailing listPyQt@riverbankcomputing.com > > http://www.riverbankcomputing.com/mailman/listinfo/

Re: [PyQt] Adding properties to a custom widget

2007-09-10 Thread skawaii
Phil Thompson-2 wrote: > > Sorry, you're out of luck - you need PyQt4 for this. > > Phil > ___ > PyQt mailing listPyQt@riverbankcomputing.com > http://www.riverbankcomputing.com/mailman/listinfo/pyqt > > Seriously? The functionality to add pro

[PyQt] QAbstractItemModel parent() receives messy model index...

2007-09-10 Thread Dirk Wagener
Hi I am using a QTreeView with my own QAbstractItemModel implementation. My implementation of the parent method looks like this: 1. def parent(self, index): 2. if not index.isValid(): 3. return QtCore.QModelIndex() 4. childItem = index.internalPointer()

Re: [PyQt] Disconnect SLOT

2007-09-10 Thread Phil Thompson
On Monday 10 September 2007, Kermit wrote: > hi all, > > i try to disconnect a tcpSocket SLOT > > connection in __init__ > self.connect(self.tcpSocket, QtCore.SIGNAL("readyRead()"), > self.readyRead) > > and for disconnect : > > def readyRead(self): > msg= self.tcpSocket.readAll

[PyQt] Disconnect SLOT

2007-09-10 Thread Kermit
hi all, i try to disconnect a tcpSocket SLOT connection in __init__ self.connect(self.tcpSocket, QtCore.SIGNAL("readyRead()"), self.readyRead) and for disconnect : def readyRead(self): msg= self.tcpSocket.readAll() if msg == '200 3.00 Ready\r\n' : self.My