Unfortunately, clicking on any links within the data will bring them up within the widget; I'm still working out how to pull them up with an external browser.
QWebView *view = new QWebView(this); view->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); QObject::connect(view->page(), SIGNAL(linkClicked(QUrl)), this, SLOT(onLinkClicked(QUrl))); ... void MyWidget::onLinkClicked(const QUrl &link) { //Handle link }