Re: [PyKDE] eric3 debugging related questions - possibly feature requests

2006-01-29 Thread Detlev Offenbach
Am Sonntag, 29. Januar 2006 04:41 schrieb Suleyman Karabuk: > I ran into the following difficulties when debugging in Eric. > > 1) I start debugging, all the debugger control buttons become active (step, > stop etc..). I select continue and the debugger runs until the first > breakpoint. While the

[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 http://mats.imk.fraunhofer.de/mailman/listinfo/p

Re: [PyKDE] Auto-connecting Slots

2006-01-29 Thread Patrick K. O'Brien
Giovanni Bajo wrote: > Gerard Vermeulen <[EMAIL PROTECTED]> wrote: > >> from PyQt4.QtCore import * >> from PyQt4.QtCore import signature as pyqtSignature >> import signature from signature > > Not a solution, you still have "signature" in the global namespace. > >> I understand that you like to

[PyKDE] new PyQt4 signal mechanism

2006-01-29 Thread Detlev Offenbach
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, that argument 1 is of the wrong type. What would be the corre

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 ha

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

[PyKDE] blockSignals not working with check boxes

2006-01-29 Thread Andreas Pakulat
Hi, see attached python program and ui-file for a minimal example that blockSignals don't work with QCheckBox. When the checkbox' setChecked is called it's stateChanged() signal is emitted and the slot is executed. This is as of now the only widget where I discovered that behaviour (checked lineed

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

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(...) >> >> [...] >> >>

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: >>> >>