QEvent derived classes
Solved
General and Desktop
-
Is the documentation for
QEvent::Type
and the subclasses it corresponds to exhaustive?For example, the documentation says
QKeyEvent
corresponds toKeyPress
,KeyRelease
andShortcutOverride
. If I'm handling an event inevent()
oreventFilter()
, if I get aQKeyEvent
, is it guaranteed to be one of those types?