PDA

View Full Version : Key Events for QListView



bmesing
3rd April 2006, 19:29
Hello,

in QT3 the QListView had some convenience signals emitted, signalling key press events.

Is there anything like this in QT4? I'm using the M/V approach, and I am loathed to subclass QListView for something that simple (especially since that way I can't add the widget so conveniently with the designer any more).

Thanks Ben

jacek
3rd April 2006, 19:32
Then use event filters.

bmesing
4th April 2006, 09:29
Cool, I never knew about that one.
Thanks!