aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-01-12 15:33:17 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-01-14 08:06:45 +0100
commit0647cc71285d7245ceb803dfed4af24d9642277e (patch)
tree90de33ad4e3310ef5f0d05b2b9d8a30db1c22207
parent197dc883975b46742cb0dc8a0e2b2028f66ceefa (diff)
Add a tool to regenerate the ui files of the PySide examples
Similar to ebf0259817956bf8932fb8f25e7ac90e6a7d7501. Pick-to: 6.2 Task-number: PYSIDE-1773 Change-Id: I93f36fc3203936d0617aa25085f3513df79ac97b Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
-rw-r--r--tools/regenerate_example_ui.py73
1 files changed, 73 insertions, 0 deletions
diff --git a/tools/regenerate_example_ui.py b/tools/regenerate_example_ui.py
new file mode 100644
index 000000000..5d701a5c2
--- /dev/null
+++ b/tools/regenerate_example_ui.py
@@ -0,0 +1,73 @@
+#############################################################################
+##
+## Copyright (C) 2022 The Qt Company Ltd.
+## Contact: https://www.qt.io/licensing/
+##
+## This file is part of the Qt for Python project.
+##
+## $QT_BEGIN_LICENSE:LGPL$
+## Commercial License Usage
+## Licensees holding valid commercial Qt licenses may use this file in
+## accordance with the commercial license agreement provided with the
+## Software or, alternatively, in accordance with the terms contained in
+## a written agreement between you and The Qt Company. For licensing terms
+## and conditions see https://www.qt.io/terms-conditions. For further
+## information use the contact form at https://www.qt.io/contact-us.
+##
+## GNU Lesser General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU Lesser
+## General Public License version 3 as published by the Free Software
+## Foundation and appearing in the file LICENSE.LGPL3 included in the
+## packaging of this file. Please review the following information to
+## ensure the GNU Lesser General Public License version 3 requirements
+## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+##
+## GNU General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU
+## General Public License version 2.0 or (at your option) the GNU General
+## Public license version 3 or any later version approved by the KDE Free
+## Qt Foundation. The licenses are as published by the Free Software
+## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+## included in the packaging of this file. Please review the following
+## information to ensure the GNU General Public License requirements will
+## be met: https://www.gnu.org/licenses/gpl-2.0.html and
+## https://www.gnu.org/licenses/gpl-3.0.html.
+##
+## $QT_END_LICENSE$
+##
+#############################################################################
+
+"""
+regenerate_example_ui.py
+========================
+
+Regenerates the ui files of the PySide examples.
+"""
+
+
+import subprocess
+import sys
+from pathlib import Path
+
+
+UIC_COMMAND = "pyside6-uic"
+
+
+def generate_ui_file(ui_file):
+ """Regenerate the ui file."""
+ target_file = ui_file.parent / f"ui_{ui_file.stem}.py"
+ if not target_file.is_file():
+ print(target_file, " does not exist.", file=sys.stderr)
+ return
+
+ print("Regenerating ", ui_file, target_file)
+ ex = subprocess.call([UIC_COMMAND, ui_file, "-o", target_file])
+ if ex != 0:
+ print(f"{UIC_COMMAND} failed for {ui_file}", file=sys.stderr)
+ sys.exit(ex)
+
+
+if __name__ == '__main__':
+ examples_path = Path(__file__).resolve().parent.parent / "examples"
+ for ui_file in examples_path.glob("**/*.ui"):
+ generate_ui_file(ui_file)