Hi,
I would signal to a QLed when a QWidget receive focus to accept keyboard input.
Something as:

Qt Code:
  1. connect( MyWidget, SIGNAL( focusReceived(bool) ),MyQLed, SLOT(setValue(bool)) );
To copy to clipboard, switch view to plain text mode 

but seems that QWidets class doesn't have such signal.
How can I do?

Best