aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/binding/person.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2023-04-28 16:46:23 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2023-05-02 16:44:37 +0200
commit9e0da8e0288d4c87eaa6f8a22ec107e04d0cd305 (patch)
tree3cde2b2b667ebd58002a19894440c47cee0cdc8e /examples/qml/referenceexamples/binding/person.py
parentfbb22873530c200b4ddb9b2da91764948bb9da71 (diff)
Move the QML reference examples around to match the structure in Qt
Adapt the tests accordingly. Task-number: PYSIDE-2206 Task-number: QTBUG-111033 Pick-to: 6.5 Change-Id: I332d6467da56b88ecbf9282d23092d8d47b730e0 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'examples/qml/referenceexamples/binding/person.py')
-rw-r--r--examples/qml/referenceexamples/binding/person.py53
1 files changed, 0 insertions, 53 deletions
diff --git a/examples/qml/referenceexamples/binding/person.py b/examples/qml/referenceexamples/binding/person.py
deleted file mode 100644
index a6942763a..000000000
--- a/examples/qml/referenceexamples/binding/person.py
+++ /dev/null
@@ -1,53 +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, Signal
-from PySide6.QtQml import QmlAnonymous, QmlElement
-
-# To be used on the @QmlElement decorator
-# (QML_IMPORT_MINOR_VERSION is optional)
-QML_IMPORT_NAME = "People"
-QML_IMPORT_MAJOR_VERSION = 1
-
-
-@QmlAnonymous
-class Person(QObject):
- name_changed = Signal()
- shoe_size_changed = Signal()
-
- def __init__(self, parent=None):
- super().__init__(parent)
- self._name = ''
- self._shoe_size = 0
-
- @Property(str, notify=name_changed)
- def name(self):
- return self._name
-
- @name.setter
- def name(self, n):
- if self._name != n:
- self._name = n
- self.name_changed.emit()
-
- @Property(int, notify=shoe_size_changed)
- def shoe_size(self):
- return self._shoe_size
-
- @shoe_size.setter
- def shoe_size(self, s):
- if self._shoe_size != s:
- self._shoe_size = s
- self.shoe_size_changed.emit()
-
-
-@QmlElement
-class Boy(Person):
- def __init__(self, parent=None):
- super().__init__(parent)
-
-
-@QmlElement
-class Girl(Person):
- def __init__(self, parent=None):
- super().__init__(parent)