blob: 5dbdbcf25abdaa0c64d1700b87df90f193d9bc1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#ifndef QDESKTOPSERVICES_H
#define QDESKTOPSERVICES_H
#include <QtGui/qtguiglobal.h>
#include <QtCore/qstring.h>
QT_BEGIN_NAMESPACE
#ifndef QT_NO_DESKTOPSERVICES
class QUrl;
class QObject;
class Q_GUI_EXPORT QDesktopServices
{
public:
static bool openUrl(const QUrl &url);
static void setUrlHandler(const QString &scheme, QObject *receiver, const char *method);
static void unsetUrlHandler(const QString &scheme);
};
#endif // QT_NO_DESKTOPSERVICES
QT_END_NAMESPACE
#endif // QDESKTOPSERVICES_H
|