On Mon, Nov 30, 2009 at 9:14 AM, Mark Summerfield <[email protected]> wrote: > On 2009-11-30, Greg Ewing wrote: > > Signals and slots are used to combine widgets to get particular > behaviours, e.g., to only enable an OK button if various fields are > filled in, or to repsond to a button click, that kind of thing. Qt's > event handling mechanism is used for creating custom widgets. >
The reason I like signals and slots so much is that slots is that I don't need always need to subclass - I can often create widgets and have things respond to them just by making the object in one line and then connecting it the next. (although, like you pointed out, subclassing is always available when you want it) _______________________________________________ Pygui mailing list [email protected] http://mail.python.org/mailman/listinfo/pygui
