Dear all!
i have a treewidget display data from xml file as picture below


how do show full information at row i selected in the same treewidget.
Qt Code:
  1. connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem*,int)), this, SLOT(openItem()));
  2.  
  3.  
  4. void MainWindow::openItem()
  5. {
  6. treeWidget->clear();
  7. [COLOR="red"]//what should i do at here[/COLOR]
  8.  
  9. }
To copy to clipboard, switch view to plain text mode 

thanks and best regards.
Newbie.