Is it possible to intercept QWidget
's Win messages without reimplementing QWidget::winEvent? Is there something like installEventFilter
but for Windows native messages?
Asked
Active
Viewed 584 times
0

Violet Giraffe
- 32,368
- 48
- 194
- 335
1 Answers
1
You can install a native message event filter function at the application level with QAbstractEventDispatcher::instance()->setEventFilter()
(see the documentation).

alexisdm
- 29,448
- 6
- 64
- 99