Qt 6.11 is out! See what's new in the release
blog
How can we block keyboard input in Qt?
General and Desktop
3
Posts
3
Posters
7.9k
Views
1
Watching
-
i'm writing an application that can block keyboard globally. i have searched in internet but i didn't find it.
Thank you in advance. -
You can use @QWidget::setEnabled(false)@ to disable mouse and keyboard events for a specific widget. Globally, you could try this thread: http://www.head-fi.org/t/100145/disable-keyboard-input-with-c-c. It talks about using c/c++ to disable keyboard input events, not sure why you would want to do that though.