Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qlibraryinfo.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
4#ifndef QLIBRARYINFO_H
5#define QLIBRARYINFO_H
6
7#include <QtCore/qstring.h>
8#include <QtCore/qdatetime.h>
9#include <QtCore/qversionnumber.h>
10
12
13class Q_CORE_EXPORT QLibraryInfo
14{
15public:
16 static const char *build() noexcept;
17
18 [[nodiscard]] static bool isDebugBuild() noexcept Q_DECL_CONST_FUNCTION;
19 [[nodiscard]] static bool isSharedBuild() noexcept Q_DECL_CONST_FUNCTION;
20
21#ifndef QT_BOOTSTRAPPED
22 static QVersionNumber version() noexcept Q_DECL_CONST_FUNCTION;
23#endif
24
26 PrefixPath = 0,
34 Qml2ImportsPath = QmlImportsPath,
40 // Insert new values above this line
41 // Please read the comments in qconfig.cpp.in before adding
42 SettingsPath = 100
43 };
44 static QString path(LibraryPath p);
45#if QT_DEPRECATED_SINCE(6, 0)
46 using LibraryLocation = LibraryPath;
47 QT_DEPRECATED_VERSION_X_6_0("Use path()")
48 static QString location(LibraryLocation location)
49 { return path(location); }
50#endif
51 static QStringList platformPluginArguments(const QString &platformName);
52
53private:
55};
56
57#if QT_DEPRECATED_SINCE(6, 9)
58
59QT_DEPRECATED_VERSION_X_6_9("Use QLibraryInfo::isSharedBuild() instead.")
60Q_CORE_EXPORT Q_DECL_CONST_FUNCTION bool qSharedBuild() noexcept;
61
62#endif
63
65
66#endif // QLIBRARYINFO_H
\inmodule QtCore
LibraryPath
\keyword library location
\inmodule QtCore
\macro QT_RESTRICTED_CAST_FROM_ASCII
Definition qstring.h:129
\inmodule QtCore
Combined button and popup list for selecting options.
#define Q_DECL_CONST_FUNCTION
GLint location
GLsizei const GLchar *const * path
GLfloat GLfloat p
[1]
#define QT_DEPRECATED_VERSION_X_6_9(text)
#define QT_DEPRECATED_VERSION_X_6_0(text)