How to get ALL the keyboard pressed keys WITHOUT RESTRICTION OR FILTER?
Solved
QML and Qt Quick
-
In my
ApplicationWindow
I need to receive ALL the keyboard pressed keys ALWAYS, and WITHOUT ANY RESTRICTION OR FILTER. How can I achieve that? -
@jeanmilost
Inside main.cpp install an eventfilter on the Q(GUI)Application -
@J-Hilk said in How to get ALL the keyboard pressed keys WITHOUT RESTRICTION OR FILTER?:
Inside main.cpp install an eventfilter on the Q(GUI)Application
Thank you very much, this was exactly what I needed!