This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Support for Python QML Elements #312
machinekoder
started this conversation in
Ideas
Replies: 1 comment
-
The extension can trigger pyside6-metaobjectdump on a Python-based QML element updated. The same idea could be applied to other Pyside tools but since I don't have experience with these tools, a PR or some minimal use cases description could be really helpful for me. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It's possible to generate
plugins.qmltypes
file for Python-based QML elements using an undocumented feature.The
pyside6-metaobjectdump
tool can be used to generate amoc
file which can be used bypyside6-qmltyperegistrar
to generate theqmltypes
file, which is picked up byqmllint
and other Qt tools when added to theqmldir
file astypeinfo
entry.What would be the best way to implement this feature as part of the VSCode plugin?
Beta Was this translation helpful? Give feedback.
All reactions