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
qqmltypeloaderqmldircontent_p.h
Go to the documentation of this file.
1// Copyright (C) 2019 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 QQMLTYPELOADERQMLDIRCONTENT_P_H
5#define QQMLTYPELOADERQMLDIRCONTENT_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <private/qqmldirparser_p.h>
19
20QT_BEGIN_NAMESPACE
21
22class QQmlError;
24{
25private:
26 friend class QQmlTypeLoader;
27
28 void setContent(const QString &location, const QString &content);
29 void setError(const QQmlError &);
30
31public:
35
36 bool hasContent() const { return m_hasContent; }
37 bool hasError() const { return m_parser.hasError(); }
38 QList<QQmlError> errors(const QString &uri, const QUrl &url) const;
39
40 bool hasTypeNamespace() const { return m_parser.hasTypeNamespace(); }
41 QString typeNamespace() const { return m_parser.typeNamespace(); }
42
43 QQmlDirComponents components() const { return m_parser.components(); }
44 QQmlDirScripts scripts() const { return m_parser.scripts(); }
45 QQmlDirPlugins plugins() const { return m_parser.plugins(); }
46 QQmlDirImports imports() const { return m_parser.imports(); }
47
48 QString qmldirLocation() const { return m_location; }
49 QString preferredPath() const { return m_parser.preferredPath(); }
50
51 bool hasRedirection() const
52 {
53 const QString preferred = preferredPath();
54 return !preferred.isEmpty()
55 && preferred != QStringView(m_location).chopped(strlen("qmldir"));
56 }
57
58 bool designerSupported() const { return m_parser.designerSupported(); }
59 bool hasTypeInfo() const { return !m_parser.typeInfos().isEmpty(); }
60
61private:
62 QQmlDirParser m_parser;
63 QString m_location;
64 bool m_hasContent = false;
65};
66
67QT_END_NAMESPACE
68
69#endif // QQMLTYPELOADERQMLDIRCONTENT_P_H
QList< QQmlError > errors(const QString &uri, const QUrl &url) const
QQmlTypeLoaderQmldirContent & operator=(const QQmlTypeLoaderQmldirContent &)=default
QQmlTypeLoaderQmldirContent(const QQmlTypeLoaderQmldirContent &)=default