On 17.03.08 14:28:44, [EMAIL PROTECTED] wrote: > now i want to react to the 'QLineEdit.focusInEvent', but i don't know how > this works. just defining a 'def focusInEvent' didn't work and there's is no > signal for this event?!
You need to write a QLineEdit subclass which than defines that function itself. Then use that class instead of QLineEdit in your dialog. Andreas -- You will feel hungry again in another hour. _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
