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;
23class QQmlTypeLoaderQmldirContent
24{
25private:
26 friend class QQmlTypeLoader;
27
28 void setContent(const QString &location, const QString &content);
29 void setError(const QQmlError &);
30
31public:
32 QQmlTypeLoaderQmldirContent() = default;
33 QQmlTypeLoaderQmldirContent(const QQmlTypeLoaderQmldirContent &) = default;
34 QQmlTypeLoaderQmldirContent &operator=(const QQmlTypeLoaderQmldirContent &) = default;
35
36 bool hasContent() const { return m_hasContent; }
37 bool hasError() const { return m_parser.hasError(); }
38 QList<QQmlError> errors(const QString &uri) const;
39
40 QString typeNamespace() const { return m_parser.typeNamespace(); }
41
42 QQmlDirComponents components() const { return m_parser.components(); }
43 QQmlDirScripts scripts() const { return m_parser.scripts(); }
44 QQmlDirPlugins plugins() const { return m_parser.plugins(); }
45 QQmlDirImports imports() const { return m_parser.imports(); }
46
47 QString qmldirLocation() const { return m_location; }
48 QString preferredPath() const { return m_parser.preferredPath(); }
49
50 bool designerSupported() const { return m_parser.designerSupported(); }
51 bool hasTypeInfo() const { return !m_parser.typeInfos().isEmpty(); }
52
53private:
54 QQmlDirParser m_parser;
55 QString m_location;
56 bool m_hasContent = false;
57};
58
59QT_END_NAMESPACE
60
61#endif // QQMLTYPELOADERQMLDIRCONTENT_P_H
62

source code of qtdeclarative/src/qml/qml/qqmltypeloaderqmldircontent_p.h