blob: 21896a89931a222376c957e7c958eb9327446092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
from __future__ import annotations
import gc
import os
import sys
import unittest
from pathlib import Path
sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
from init_paths import init_test_paths
init_test_paths(False)
from PySide6.QtCore import QUrl
from PySide6.QtGui import QGuiApplication
from PySide6.QtQml import qmlRegisterType
from PySide6.QtQuick import QQuickView, QQuickItem
def register_qml_types():
class TestClass(QQuickItem):
def __init__(self, parent=None):
QQuickItem.__init__(self, parent)
qmlRegisterType(TestClass, "UserTypes", 1, 0, "TestClass")
def main():
app = QGuiApplication([])
# reg qml types here
register_qml_types()
# force gc to run
gc.collect()
view = QQuickView()
url = QUrl(__file__.replace(".py", ".qml"))
view.setSource(url)
if __name__ == "__main__":
main()
|