I've seen it, and I have set parameters responsible for drag & drop:
Qt Code:
  1. dirModel->setReadOnly(false);
  2.  
  3. listView->setDragEnabled(true);
  4. listView->setAcceptDrops(true);
To copy to clipboard, switch view to plain text mode 
I can drag and select items, I can drop them on folders or empty spaces, but I don't have anything to receive those drops in code.