Are you sure you know how to program ? I really don't know how to put it simple, but here's your example:
{
QWebView* webview = new QWebView( this );
webview->setWindowFlags( Qt::Window );
webview
->load
( QUrl(item
->text
(1)) );
//QDesktopServices::openUrl(QUrl(item->text(1)));
}
void RSSListing::itemActivated(QTreeWidgetItem * item)
{
QWebView* webview = new QWebView( this );
webview->setWindowFlags( Qt::Window );
webview->load( QUrl(item->text(1)) );
//QDesktopServices::openUrl(QUrl(item->text(1)));
}
To copy to clipboard, switch view to plain text mode
Now when you double click on item, it will open a QWebView window with the page you are looking for.
Bookmarks