Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qhelp_global.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#ifndef QHELP_GLOBAL_H
6#define QHELP_GLOBAL_H
7
8#include <QtCore/qglobal.h>
9
10QT_BEGIN_NAMESPACE
11
12class QString;
13
14#ifdef QT_STATIC
15# define QHELP_EXPORT
16#elif defined(QHELP_LIB)
17# define QHELP_EXPORT Q_DECL_EXPORT
18#else
19# define QHELP_EXPORT Q_DECL_IMPORT
20#endif
21
22// TODO Qt 7.0: Remove the class and make it a namespace with a collection of functions.
23// Review, if they are still need to be public.
25{
26public:
27 static QString uniquifyConnectionName(const QString &name, void *pointer);
28 static QString documentTitle(const QString &content);
29};
30
31QT_END_NAMESPACE
32
33#endif // QHELP_GLOBAL_H
Combined button and popup list for selecting options.
#define QHELP_EXPORT