From cf32b66adbfb489cd6e5d5c0bf3f741b59ba204c Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 15 Sep 2022 13:21:53 +0200 Subject: 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 Reviewed-by: Cristian Maureira-Fredes --- .../declarative/referenceexamples/adding/main.py | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 examples/declarative/referenceexamples/adding/main.py (limited to 'examples/declarative/referenceexamples/adding/main.py') diff --git a/examples/declarative/referenceexamples/adding/main.py b/examples/declarative/referenceexamples/adding/main.py deleted file mode 100644 index f10b77bc1..000000000 --- a/examples/declarative/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, QUrl -from PySide6.QtQml import QQmlComponent, QQmlEngine - -from person import Person - - -if __name__ == '__main__': - app = QCoreApplication(sys.argv) - - qml_file = Path(__file__).parent / "example.qml" - url = QUrl.fromLocalFile(qml_file) - engine = QQmlEngine() - component = QQmlComponent(engine, url) - - 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) -- cgit v1.2.3