summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/src/qdoc/qmlpropertynode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/qdoc/src/qdoc/qmlpropertynode.h')
-rw-r--r--src/qdoc/qdoc/src/qdoc/qmlpropertynode.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/src/qdoc/qdoc/src/qdoc/qmlpropertynode.h b/src/qdoc/qdoc/src/qdoc/qmlpropertynode.h
new file mode 100644
index 000000000..f966949c1
--- /dev/null
+++ b/src/qdoc/qdoc/src/qdoc/qmlpropertynode.h
@@ -0,0 +1,72 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#ifndef QMLPROPERTYNODE_H
+#define QMLPROPERTYNODE_H
+
+#include "aggregate.h"
+#include "node.h"
+
+#include <QtCore/qglobal.h>
+#include <QtCore/qstring.h>
+
+QT_BEGIN_NAMESPACE
+
+class QmlPropertyNode : public Node
+{
+public:
+ QmlPropertyNode(Aggregate *parent, const QString &name, QString type, bool attached);
+
+ void setDataType(const QString &dataType) override { m_type = dataType; }
+ void setStored(bool stored) { m_stored = toFlagValue(stored); }
+ void setDefaultValue(const QString &value) { m_defaultValue = value; }
+ void setRequired() { m_required = toFlagValue(true); }
+ bool setEnumNode(const QString &path, const QString &registeredQmlName);
+
+ [[nodiscard]] const QString &dataType() const { return m_type; }
+ [[nodiscard]] const QString &defaultValue() const { return m_defaultValue; }
+ [[nodiscard]] bool isStored() const { return fromFlagValue(m_stored, true); }
+ bool isRequired();
+ [[nodiscard]] bool isDefault() const override { return m_isDefault; }
+ [[nodiscard]] bool isReadOnly() const { return fromFlagValue(m_readOnly, false); }
+ [[nodiscard]] bool isReadOnly();
+ [[nodiscard]] bool isAlias() const override { return m_isAlias; }
+ [[nodiscard]] bool isAttached() const override { return m_attached; }
+ [[nodiscard]] QString qmlTypeName() const override { return parent()->qmlTypeName(); }
+ [[nodiscard]] QString logicalModuleName() const override
+ {
+ return parent()->logicalModuleName();
+ }
+ [[nodiscard]] QString logicalModuleVersion() const override
+ {
+ return parent()->logicalModuleVersion();
+ }
+ [[nodiscard]] QString logicalModuleIdentifier() const override
+ {
+ return parent()->logicalModuleIdentifier();
+ }
+ [[nodiscard]] QString element() const override { return parent()->name(); }
+ [[nodiscard]] const EnumNode *enumNode() const { return m_enumNode.first; }
+ [[nodiscard]] const QString &enumPrefix() const;
+
+ void markDefault() override { m_isDefault = true; }
+ void markReadOnly(bool flag) override { m_readOnly = toFlagValue(flag); }
+
+private:
+ PropertyNode *findCorrespondingCppProperty();
+
+private:
+ QString m_type {};
+ QString m_defaultValue {};
+ FlagValue m_stored { FlagValueDefault };
+ bool m_isAlias { false };
+ bool m_isDefault { false };
+ bool m_attached {};
+ FlagValue m_readOnly { FlagValueDefault };
+ FlagValue m_required { FlagValueDefault };
+ std::pair<EnumNode *, QString> m_enumNode { nullptr, {} };
+};
+
+QT_END_NAMESPACE
+
+#endif // QMLPROPERTYNODE_H