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
AutoSpider (talk | contribs) (Add "cleanup" tag) |
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
||
Line 8: | Line 8: | ||
= How to Launch Web Browser = | = How to Launch Web Browser = | ||
The class | The class [http://doc.qt.io/qt-5.0/qtgui/qdesktopservices.html 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: | Please do not forget to include the following header files: |
Revision as of 08:43, 4 March 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
English | Deutsch | Български | Русский | 简体中文
How to Launch Web Browser
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/"));