Re: [PyQt] Proposal for New-style Signals

2008-01-30 Thread nytmyn
> On Wednesday 30 January 2008, nytmyn wrote: >> The stage 2 simplified qt signals looks just great :) >> What about signals declared in Python? I'd really like to have >> the possibility to declare and use them as the qt ones. > > You can do that now using _

Re: [PyQt] Proposal for New-style Signals

2008-01-30 Thread nytmyn
The stage 2 simplified qt signals looks just great :) What about signals declared in Python? I'd really like to have the possibility to declare and use them as the qt ones. All QObjects derrived classes are passed as pointers and the values based classes are (really) often passed as const referen

Re: [PyQt] Is the result of SIGNAL() a constant?

2008-01-09 Thread nytmyn
I've played with signals and slots in PyQt about 2 month ago and came to this: - Qt signals added to Qt classes with names as in qt, implemented using __get__ protocol, so calls like connect(w.signal, w.slot) are possible - overloaded signals - there are not many of them - e.g: clicked() and click