In Qt3 I had a QListView and
Qt Code:
  1. connect( lbCurrentList, SIGNAL( selected( int ) ), this, SLOT( slotFromListBox( int ) ) );
To copy to clipboard, switch view to plain text mode 
Now I have a QListWidget in Qt4 and I want to extract either the index of an item or the item itself with a dbl mouse click on the item.

I am overwhelmed by all the documentation.

Help would be appreciated.