aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/stringlistmodel
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-09-15 13:21:53 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-09-16 10:30:36 +0200
commitcf32b66adbfb489cd6e5d5c0bf3f741b59ba204c (patch)
tree44be69c9487f5d4db1092d061a555bd6001c1ab4 /examples/declarative/stringlistmodel
parentb20d6f6906f91f9df608d7800f4e27f7a7160abe (diff)
Move examples around
Change the directory structure to closer match that of Qt. Task-number: PYSIDE-841 Change-Id: I87aca346b6654aafe94dd1fb83c184c182ceb2e6 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'examples/declarative/stringlistmodel')
-rw-r--r--examples/declarative/stringlistmodel/doc/stringlistmodel.pngbin1978 -> 0 bytes
-rw-r--r--examples/declarative/stringlistmodel/doc/stringlistmodel.rst9
-rw-r--r--examples/declarative/stringlistmodel/stringlistmodel.py26
-rw-r--r--examples/declarative/stringlistmodel/stringlistmodel.pyproject3
-rw-r--r--examples/declarative/stringlistmodel/view.qml17
5 files changed, 0 insertions, 55 deletions
diff --git a/examples/declarative/stringlistmodel/doc/stringlistmodel.png b/examples/declarative/stringlistmodel/doc/stringlistmodel.png
deleted file mode 100644
index eeb9b518a..000000000
--- a/examples/declarative/stringlistmodel/doc/stringlistmodel.png
+++ /dev/null
Binary files differ
diff --git a/examples/declarative/stringlistmodel/doc/stringlistmodel.rst b/examples/declarative/stringlistmodel/doc/stringlistmodel.rst
deleted file mode 100644
index 4c00ed130..000000000
--- a/examples/declarative/stringlistmodel/doc/stringlistmodel.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-String List Model Example
-=========================
-
-A model may be a simple 'list',
-which provides the contents of the list via the modelData role.
-
-.. image:: stringlistmodel.png
- :width: 400
- :alt: String List Model Screenshot
diff --git a/examples/declarative/stringlistmodel/stringlistmodel.py b/examples/declarative/stringlistmodel/stringlistmodel.py
deleted file mode 100644
index a7a1807bb..000000000
--- a/examples/declarative/stringlistmodel/stringlistmodel.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-from pathlib import Path
-import sys
-from PySide6.QtCore import QUrl
-from PySide6.QtGui import QGuiApplication
-from PySide6.QtQuick import QQuickView
-
-# This example illustrates exposing a QStringList as a model in QML
-
-if __name__ == '__main__':
- app = QGuiApplication(sys.argv)
-
- dataList = ["Item 1", "Item 2", "Item 3", "Item 4"]
-
- view = QQuickView()
- view.setInitialProperties({"model": dataList })
-
- qml_file = Path(__file__).parent / "view.qml"
- view.setSource(QUrl.fromLocalFile(qml_file))
- view.show()
-
- r = app.exec()
- del view
- sys.exit(r)
diff --git a/examples/declarative/stringlistmodel/stringlistmodel.pyproject b/examples/declarative/stringlistmodel/stringlistmodel.pyproject
deleted file mode 100644
index 5ec3e85d1..000000000
--- a/examples/declarative/stringlistmodel/stringlistmodel.pyproject
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "files": ["stringlistmodel.py", "view.qml"]
-}
diff --git a/examples/declarative/stringlistmodel/view.qml b/examples/declarative/stringlistmodel/view.qml
deleted file mode 100644
index 5db5576f4..000000000
--- a/examples/declarative/stringlistmodel/view.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-ListView {
- width: 100
- height: 100
- required model
-
- delegate: Rectangle {
- required property string modelData
- height: 25
- width: 100
- Text { text: parent.modelData }
- }
-}