Getting QWidget's Windows messages without subclassing it and reimplementing QWidget::winEvent
General and Desktop
3
Posts
2
Posters
2.0k
Views
1
Watching
Is it possible to intercept QWidget's Win messages without reimplementing QWidget::winEvent? Is there something like installEventFilter but for Windows native messages?
Hi,
you could use installEventFilter and check for QEvent::WinEventAct.
Once your problem is solved don't forget to:
You can embed images using (http://imgur.com/) or (http://postimage.org/)
Thanks, but how can I get the actual Windows message?