aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/adding
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qml/referenceexamples/adding')
-rw-r--r--examples/qml/referenceexamples/adding/People/Main.qml9
-rw-r--r--examples/qml/referenceexamples/adding/People/qmldir3
-rw-r--r--examples/qml/referenceexamples/adding/adding.pyproject4
-rw-r--r--examples/qml/referenceexamples/adding/doc/adding.rst67
-rw-r--r--examples/qml/referenceexamples/adding/main.py30
-rw-r--r--examples/qml/referenceexamples/adding/person.py35
6 files changed, 0 insertions, 148 deletions
diff --git a/examples/qml/referenceexamples/adding/People/Main.qml b/examples/qml/referenceexamples/adding/People/Main.qml
deleted file mode 100644
index 8d963a861..000000000
--- a/examples/qml/referenceexamples/adding/People/Main.qml
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import People
-
-Person {
- name: "Bob Jones"
- shoe_size: 12
-}
diff --git a/examples/qml/referenceexamples/adding/People/qmldir b/examples/qml/referenceexamples/adding/People/qmldir
deleted file mode 100644
index a2bd9515a..000000000
--- a/examples/qml/referenceexamples/adding/People/qmldir
+++ /dev/null
@@ -1,3 +0,0 @@
-module People
-typeinfo coercion.qmltypes
-Main 1.0 Main.qml
diff --git a/examples/qml/referenceexamples/adding/adding.pyproject b/examples/qml/referenceexamples/adding/adding.pyproject
deleted file mode 100644
index 3219f79ca..000000000
--- a/examples/qml/referenceexamples/adding/adding.pyproject
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "files": ["main.py", "person.py",
- "People/Main.qml", "People/qmldir"]
-}
diff --git a/examples/qml/referenceexamples/adding/doc/adding.rst b/examples/qml/referenceexamples/adding/doc/adding.rst
deleted file mode 100644
index d06ff0a5a..000000000
--- a/examples/qml/referenceexamples/adding/doc/adding.rst
+++ /dev/null
@@ -1,67 +0,0 @@
-.. _qml-adding-types-example:
-
-Extending QML - Adding Types Example
-====================================
-
-The Adding Types Example shows how to add a new object type, ``Person``, to QML.
-The ``Person`` type can be used from QML like this:
-
-.. code-block:: javascript
-
- import examples.adding.people
-
- Person {
- name: "Bob Jones"
- shoe_size: 12
- }
-
-Declare the Person Class
-------------------------
-
-All QML types map to C++ types. Here we declare a basic C++ Person class
-with the two properties we want accessible on the QML type - name and shoeSize.
-Although in this example we use the same name for the C++ class as the QML
-type, the C++ class can be named differently, or appear in a namespace.
-
-The Person class implementation is quite basic. The property accessors simply
-return members of the object instance.
-
-.. code-block:: python
-
- from PySide6.QtCore import QObject, Property
- from PySide6.QtQml import QmlElement
-
- # To be used on the @QmlElement decorator
- # (QML_IMPORT_MINOR_VERSION is optional)
- QML_IMPORT_NAME = "People"
- QML_IMPORT_MAJOR_VERSION = 1
-
-
- @QmlElement
- class Person(QObject):
- def __init__(self, parent=None):
- super().__init__(parent)
- self._name = ''
- self._shoe_size = 0
-
- @Property(str)
- def name(self):
- return self._name
-
- @name.setter
- def name(self, n):
- self._name = n
-
- @Property(int)
- def shoe_size(self):
- return self._shoe_size
-
- @shoe_size.setter
- def shoe_size(self, s):
- self._shoe_size = s
-
-Running the Example
--------------------
-
-The main.py file in the example includes a simple shell application that
-loads and runs the QML snippet shown at the beginning of this page.
diff --git a/examples/qml/referenceexamples/adding/main.py b/examples/qml/referenceexamples/adding/main.py
deleted file mode 100644
index faf13f42f..000000000
--- a/examples/qml/referenceexamples/adding/main.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-"""PySide6 port of the qml/examples/qml/referenceexamples/adding example from Qt v6.x"""
-
-from pathlib import Path
-import sys
-
-from PySide6.QtCore import QCoreApplication
-from PySide6.QtQml import QQmlComponent, QQmlEngine
-
-from person import Person
-
-
-if __name__ == '__main__':
- app = QCoreApplication(sys.argv)
-
- engine = QQmlEngine()
- engine.addImportPath(Path(__file__).parent)
- component = QQmlComponent(engine)
- component.loadFromModule("People", "Main")
-
- person = component.create()
- if person:
- print(f"The person's name is {person.name}")
- print(f"They wear a {person.shoe_size} sized shoe")
- else:
- print(component.errors())
- del engine
- sys.exit(0)
diff --git a/examples/qml/referenceexamples/adding/person.py b/examples/qml/referenceexamples/adding/person.py
deleted file mode 100644
index fafb9d581..000000000
--- a/examples/qml/referenceexamples/adding/person.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-from PySide6.QtCore import QObject, Property
-from PySide6.QtQml import QmlElement
-
-# To be used on the @QmlElement decorator
-# (QML_IMPORT_MINOR_VERSION is optional)
-QML_IMPORT_NAME = "People"
-QML_IMPORT_MAJOR_VERSION = 1
-
-
-@QmlElement
-class Person(QObject):
- def __init__(self, parent=None):
- super().__init__(parent)
- self._name = ''
- self._shoe_size = 0
-
- @Property(str)
- def name(self):
- return self._name
-
- @name.setter
- def name(self, n):
- self._name = n
-
- @Property(int)
- def shoe_size(self):
- return self._shoe_size
-
- @shoe_size.setter
- def shoe_size(self, s):
- self._shoe_size = s
-