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