How to Launch Web Browser/ru: Difference between revisions
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
(Fixed maket) |
||
Line 1: | Line 1: | ||
{{Cleanup | reason=Auto-imported from ExpressionEngine.}} | {{Cleanup | reason=Auto-imported from ExpressionEngine.}} | ||
{{LangSwitch}} | |||
[[Category:snippets]] | [[Category:snippets]] | ||
[[Category:HowTo]] | |||
= Как запустить Web Browser = | = Как запустить Web Browser = | ||
Класс | Класс {{DocLink|QDesktopServices}} предоставляет методы для доступа к общим службам ОС, такие как открытие URL в браузере использующемся по умолчанию. | ||
<code>< | Пожалуйста, не забудьте подключить следующие заголовочные файлы: | ||
<code> | |||
#include <QDesktopServices> | |||
#include <QUrl> | |||
QDesktopServices::openUrl(QUrl("http://developer.qt.nokia.com")); | |||
</code> |
Revision as of 11:23, 10 January 2016
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. |
Как запустить Web Browser
Класс QDesktopServices предоставляет методы для доступа к общим службам ОС, такие как открытие URL в браузере использующемся по умолчанию.
Пожалуйста, не забудьте подключить следующие заголовочные файлы:
#include <QDesktopServices>
#include <QUrl>
QDesktopServices::openUrl(QUrl("http://developer.qt.nokia.com"));