here you can find the project tests https://code.qt.io/cgit/pyside/pyside-setup.git/tree/sources/pyside6/tests/QtQml
29 November 2022
Alexey MHi there! I wonder if its safe to have multiple QQmlEngine's in single app?
I have more familiarity with QML.
As far as I'm aware, you can only have one QQmlEngine running in a given process.
Now, Qt has a solution for this that is commercial/GPLv3 (not LGPL). That is the Qt Application Manager, which orchestrates multiple Qt QML processes.
https://doc.qt.io/QtApplicationManager/singlevsmultiprocess.html
I'm not actually sure if Qt for Python wraps that or not. @cmaureir do you know?
Anton YablokovIs there a Python class to ease the creation of UI files from Python code? Say, I have a bunch of widgets of a Borland Delphi form.
those are not compatible. you need to convert them to a UI file by hand.
tomaz canabravathose are not compatible. you need to convert them to a UI file by hand.
I'd like to speed it up with a Python code. That would be more convenient if there is a class to construct a correct UI file.
Nailed it: I can use PyXB and the scheme to make the file.
Cristián 🥑not that I'm aware of. Where does that lives? in which repo?
Seems it is here:
https://code.qt.io/cgit/qt/qtapplicationmanager.git/
It doesn't appear to show as a module under the qt5 superproject.
Cristián 🥑Oof there are many third party dependencies, not sure if it would be an easy task
Do those third party dependencies need to be wrapped?
30 November 2022
yeah seems the only one is the Material example https://doc.qt.io/qt-6/qtquickcontrols2-material.html