Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to Launch Web Browser: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:snippets]]<br />[[Category:HowTo]] | |||
'''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&quot;: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:<br /><code><br />#include <QDesktopServices&gt;<br />#include <QUrl&gt;<br /></code> | |||
<code><br />QDesktopServices::openUrl(QUrl("https://qt.io/&quot;));<br /></code> | |||
=== | == References == | ||
Revision as of 09:28, 24 February 2015
English | Deutsch | Български | Русский | 简体中文
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:
<br />#include <QDesktopServices&gt;<br />#include <QUrl&gt;<br />
<br />QDesktopServices::openUrl(QUrl("https://qt.io/&quot;));<br />