Getting QWidget's Windows messages without subclassing it and reimplementing QWidget::winEvent
-
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.
-
Thanks, but how can I get the actual Windows message?