[PyKDE] PyQt book from Boudewijn Rempt?

2006-01-29 Thread Wolfgang Keller
Hello, as this book has been published some time ago, I wanted to ask how much of it is still relevant for Qt 4? TIA, Sincerely, Wolfgang Keller ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de

Re: [PyKDE] Auto-connecting Slots

2006-01-29 Thread Giovanni Bajo
Gerard Vermeulen [EMAIL PROTECTED] wrote: I understand that you like to take an unrecommended shortcut and pollute the global namespace (Q-, q-prefix or not), but it is no reason to make life harder for people who don't. The Q prefix *is* a namespace. It's the way namespaces have always

Re: [PyKDE] Auto-connecting Slots

2006-01-29 Thread Giovanni Bajo
Patrick K. O'Brien [EMAIL PROTECTED] wrote: If we're going to use other large projects as examples then surely wxPython is a better one. They spent the past year or two moving from this: from wx import * button = wxButton(...) [...] to: import wx button =

Re: [PyKDE] new PyQt4 signal mechanism

2006-01-29 Thread Phil Thompson
On Sunday 29 January 2006 4:33 pm, Detlev Offenbach wrote: Hi, I have a signal, that should be emitted from a Python method with a list of integers. I declared it like self.emit(SIGNAL(dataChanged(int *)), [index]) However, when it triggers, I get a TypeError exception saying,

Re: [PyKDE] Auto-connecting Slots

2006-01-29 Thread Patrick K. O'Brien
Giovanni Bajo wrote: Patrick K. O'Brien [EMAIL PROTECTED] wrote: If we're going to use other large projects as examples then surely wxPython is a better one. They spent the past year or two moving from this: from wx import * button = wxButton(...) [...] to: import wx

Re: [PyKDE] Auto-connecting Slots

2006-01-29 Thread Giovanni Bajo
Patrick K. O'Brien [EMAIL PROTECTED] wrote: If we're going to use other large projects as examples then surely wxPython is a better one. They spent the past year or two moving from this: from wx import * button = wxButton(...) [...] to: import wx button =