Thu, 07 Jul 2022 11:23:56 +0200
Reorganized the project structure to use the source layout in order to support up-to-date build systems with "pyproject.toml".
# -*- coding: utf-8 -*- # Copyright (c) 2009 - 2022 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a function to compile all user interface files of a directory or directory tree. """ from PyQt6.uic import compileUiDir def __pyName(py_dir, py_file): """ Local function to create the Python source file name for the compiled .ui file. @param py_dir suggested name of the directory (string) @param py_file suggested name for the compile source file (string) @return tuple of directory name (string) and source file name (string) """ return py_dir, "Ui_{0}".format(py_file) def compileUiFiles(directory, recurse=False): """ Module function to compile the .ui files of a directory tree to Python sources. @param directory name of a directory to scan for .ui files (string) @param recurse flag indicating to recurse into subdirectories (boolean) """ compileUiDir(directory, recurse, __pyName)