How can we block keyboard input in Qt?
General and Desktop
3
Posts
3
Posters
7.5k
Views
1
Watching
-
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.