Hello, All !

I have a form with many childs in layouts. I have to get focus event for 2 QListView * objects of them using event handlers for main form only ? These objects are situated in multilevel layouts and its subclassing is not desirable, because the form will be segmentation fault dropped. I tried
Qt Code:
  1. Form:: Form (QWidget *parent)
  2. {
  3. ...
  4. listview1->setFocusProxy (this);
  5. listView2->setFocusProxy (this);
  6. ...
  7. }
To copy to clipboard, switch view to plain text mode 
and reimplement Form::focusInEvent (QFocusEvent * event) but it is not work, what I have to do for working ?

Best regards,
Yuriy Rusinov.