diff options
Diffstat (limited to 'examples/qml/referenceexamples/methods')
7 files changed, 0 insertions, 154 deletions
diff --git a/examples/qml/referenceexamples/methods/People/Main.qml b/examples/qml/referenceexamples/methods/People/Main.qml deleted file mode 100644 index 69b2119ab..000000000 --- a/examples/qml/referenceexamples/methods/People/Main.qml +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (C) 2017 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause - -import QtQuick -import People - -BirthdayParty { - host: Person { - name: "Bob Jones" - shoe_size: 12 - } - guests: [ - Person { name: "Leo Hodges" }, - Person { name: "Jack Smith" }, - Person { name: "Anne Brown" } - ] - - Component.onCompleted: invite("William Green") -} diff --git a/examples/qml/referenceexamples/methods/People/qmldir b/examples/qml/referenceexamples/methods/People/qmldir deleted file mode 100644 index a2bd9515a..000000000 --- a/examples/qml/referenceexamples/methods/People/qmldir +++ /dev/null @@ -1,3 +0,0 @@ -module People -typeinfo coercion.qmltypes -Main 1.0 Main.qml diff --git a/examples/qml/referenceexamples/methods/birthdayparty.py b/examples/qml/referenceexamples/methods/birthdayparty.py deleted file mode 100644 index a3942b671..000000000 --- a/examples/qml/referenceexamples/methods/birthdayparty.py +++ /dev/null @@ -1,47 +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, Slot -from PySide6.QtQml import QmlElement, ListProperty - -from person import Person - - -# To be used on the @QmlElement decorator -# (QML_IMPORT_MINOR_VERSION is optional) -QML_IMPORT_NAME = "People" -QML_IMPORT_MAJOR_VERSION = 1 - - -@QmlElement -class BirthdayParty(QObject): - - def __init__(self, parent=None): - super().__init__(parent) - self._host = None - self._guests = [] - - @Property(Person) - def host(self): - return self._host - - @host.setter - def host(self, h): - self._host = h - - def guest(self, n): - return self._guests[n] - - def guestCount(self): - return len(self._guests) - - def appendGuest(self, guest): - self._guests.append(guest) - - @Slot(str) - def invite(self, name): - guest = Person(self) - guest.name = name - self.appendGuest(guest) - - guests = ListProperty(Person, appendGuest) diff --git a/examples/qml/referenceexamples/methods/doc/methods.rst b/examples/qml/referenceexamples/methods/doc/methods.rst deleted file mode 100644 index bda2ede5a..000000000 --- a/examples/qml/referenceexamples/methods/doc/methods.rst +++ /dev/null @@ -1,15 +0,0 @@ -.. _qml-methods-example: - -Extending QML - Methods Example -=============================== - -This example builds on the :ref:`qml-adding-types-example`, -the :ref:`qml-object-and-list-property-types-example` and -the :ref:`qml-inheritance-and-coercion-example`. - -The Methods Example has an additional method in the ``BirthdayParty`` class: -``invite()``. ``invite()`` is decorated with ``@Slot`` so that it can be -called from QML. - -In ``example.qml``, the ``invite()`` method is called -in the ``QtQml.Component.completed()`` signal handler. diff --git a/examples/qml/referenceexamples/methods/main.py b/examples/qml/referenceexamples/methods/main.py deleted file mode 100644 index 5f51ebe1f..000000000 --- a/examples/qml/referenceexamples/methods/main.py +++ /dev/null @@ -1,32 +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/methods 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 -from birthdayparty import BirthdayParty - - -app = QCoreApplication(sys.argv) -engine = QQmlEngine() -engine.addImportPath(Path(__file__).parent) -component = QQmlComponent(engine) -component.loadFromModule("People", "Main") -party = component.create() -if not party: - print(component.errors()) - del engine - sys.exit(-1) -host = party.host -print(f"{host.name} is having a birthday!\nThey are inviting:") -for g in range(party.guestCount()): - name = party.guest(g).name - print(f" {name}") -del engine -sys.exit(0) diff --git a/examples/qml/referenceexamples/methods/methods.pyproject b/examples/qml/referenceexamples/methods/methods.pyproject deleted file mode 100644 index 09942ebcc..000000000 --- a/examples/qml/referenceexamples/methods/methods.pyproject +++ /dev/null @@ -1,4 +0,0 @@ -{ - "files": ["main.py", "birthdayparty.py", "person.py", - "People/Main.qml", "People/qmldir"] -} diff --git a/examples/qml/referenceexamples/methods/person.py b/examples/qml/referenceexamples/methods/person.py deleted file mode 100644 index 526eae714..000000000 --- a/examples/qml/referenceexamples/methods/person.py +++ /dev/null @@ -1,34 +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 |
