How to Launch Web Browser: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Sub-categorize)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:snippets]]
{{LangSwitch}}
[[Category:Snippets::Misc]]
[[Category:HowTo]]
[[Category:HowTo]]
 
The class {{DocLink|QDesktopServices}} provides methods for accessing common desktop services such as opening a URL in the default web browser.
'''English''' | [[How_to_Launch_Web_Browser_German|Deutsch]] | [[How_to_Launch_Web_Browser_Bulgarian|Български]] | [[How_to_Launch_Web_Browser_Russian|Русский]] | [[How_to_Launch_Web_Browser_SimplifiedChinese|简体中文]]
 
= How to Launch Web Browser =
 
The class "QDesktopServices":http://doc.qt.io/qt-5.0/qtgui/qdesktopservices.html provides methods for accessing common desktop services such as opening a URL in the default web browser.


Please do not forget to include the following header files:
Please do not forget to include the following header files:
Line 12: Line 8:
#include <QDesktopServices>
#include <QDesktopServices>
#include <QUrl>
#include <QUrl>
</code>


<code>
QDesktopServices::openUrl(QUrl("https://qt.io/"));
QDesktopServices::openUrl(QUrl("https://qt.io/"));
</code>
</code>
== References ==

Latest revision as of 11:59, 28 November 2016

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

The class QDesktopServices provides methods for accessing common desktop services such as opening a URL in the default web browser.

Please do not forget to include the following header files:

#include <QDesktopServices>
#include <QUrl>

QDesktopServices::openUrl(QUrl("https://qt.io/"));