How to Launch Web Browser: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(Convert ExpressionEngine links)
Line 8: Line 8:
= How to Launch Web Browser =
= 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.
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/"));

References