diff options
author | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2022-01-17 16:10:15 +0100 |
---|---|---|
committer | Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> | 2022-06-02 07:05:15 +0000 |
commit | ba22a5bdf95b8330cf4a2929180d864748c5657e (patch) | |
tree | 012802235d5e5ea7c32477ba14e29a06683a584d /doc | |
parent | 958531adbfc55035b45a2890b5afa245cb189562 (diff) | |
download | qt-creator-ba22a5bdf95b8330cf4a2929180d864748c5657e.tar.gz |
python: add wizard project based on uic
This includes a new template that allow users to create
a UI based project, but without a dynamic loading.
To get the initial empty window, the user needs to use
a 'uic' tool to generate Python code from a UI file first.
This tool is different for PySide2, PySide6, PyQt5 and PySide6.
Change-Id: Ic12fe23696bf3b18eaf240ffac03e9bd92a5455b
Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/qtcreator/src/projects/creator-only/creator-projects-creating.qdoc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/qtcreator/src/projects/creator-only/creator-projects-creating.qdoc b/doc/qtcreator/src/projects/creator-only/creator-projects-creating.qdoc index 8d0a1cf8ef..6acd3667a1 100644 --- a/doc/qtcreator/src/projects/creator-only/creator-projects-creating.qdoc +++ b/doc/qtcreator/src/projects/creator-only/creator-projects-creating.qdoc @@ -131,6 +131,12 @@ \li Creates a Qt for Python application that contains an empty window. \row + \li Window UI + \li Creates a Qt for Python application that contains an empty + window with a widget-based UI. Preferred approach that requires + you to generate a Python file from the .ui file, to import + it directly into your application. + \row \li Window UI - Dynamic load \li Creates a Qt for Python application that contains an empty window with a widget-based UI. |