aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlmodels/qqmllistaccessor_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlmodels/qqmllistaccessor_p.h')
-rw-r--r--src/qmlmodels/qqmllistaccessor_p.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/qmlmodels/qqmllistaccessor_p.h b/src/qmlmodels/qqmllistaccessor_p.h
new file mode 100644
index 0000000000..d713ad7f85
--- /dev/null
+++ b/src/qmlmodels/qqmllistaccessor_p.h
@@ -0,0 +1,61 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#ifndef QQMLLISTACCESSOR_H
+#define QQMLLISTACCESSOR_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QtCore/QVariant>
+#include <QtCore/private/qglobal_p.h>
+
+QT_BEGIN_NAMESPACE
+
+class QQmlEngine;
+class Q_AUTOTEST_EXPORT QQmlListAccessor
+{
+public:
+ QQmlListAccessor();
+ ~QQmlListAccessor();
+
+ QVariant list() const;
+ void setList(const QVariant &);
+
+ bool isValid() const;
+
+ qsizetype count() const;
+ QVariant at(qsizetype) const;
+ void set(qsizetype, const QVariant &);
+
+ enum Type {
+ Invalid,
+ StringList,
+ UrlList,
+ VariantList,
+ ObjectList,
+ ListProperty,
+ Instance,
+ Integer,
+ Sequence,
+ };
+
+ Type type() const { return m_type; }
+
+private:
+ Type m_type;
+ QMetaSequence m_metaSequence;
+ QVariant d;
+};
+
+QT_END_NAMESPACE
+
+#endif // QQMLLISTACCESSOR_H