vote up 1 vote down star
1

I have a "start page" on my application that is just a QWebView widget that downloads a page from my server.

When the user clicks on a link I'd like it to open in their default browser, not in the widget.

Is there a way to do this with QWebView? Or should I take a different approach?

flag

1 Answer

vote up 3 vote down check

Just call QWebPage::setLinkDelegationPolicy(QWebPage::DelegateAllLinks) then connect the signal QWebView::linkClicked (const QUrl & url) to a slot, and in the slot execute the browser. Finding out what the default browser is, is slightly more complicated and depends on which desktop the user is running. The environment variable BROWSER often contains the default.

Or use QDesktopServices::openUrl [as suggested by gnud in a comment]

link|flag
1  
To open a browser, use QDesktopServices::openUrl - doc.trolltech.com/4.5/… – gnud Apr 12 at 22:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.