如何将QT Creator生成的.ui文件转换为.py文件?
我曾经在Windows上使用.bat文件将.ui文件转换为.py文件:
@echo off
for %%f in (*.ui) do (
`echo %%f`
`C:\Python34\Lib\site-packages\PyQt5\pyuic5.bat -x %%f -o %%`[`~nf.py`](https://~nf.py)
)
pause
我现在不再可以使用PC进行转换(再加上我已经厌倦了仅通过计算机转换文件来转换文件),因此我需要能够在Mac OS中将.ui文件转换为.py。
答案 0 :(得分:0)
我使用下面的脚本自动生成.ui文件和资源,它可以在任何OS上正常工作。
只需将input_path
设置为包含ui文件的文件夹,并将output_path
设置为要生成Python文件的文件夹:
请注意,为提高安全性,脚本将检查.ui文件是否以qtcreator添加的注释开头:“此文件中的所有更改都将丢失”。
# Use this script to convert Qt Creator UI and resource files to python
import os
import subprocess
input_path = os.path.join(os.path.dirname(__file__), 'resources', 'qt')
output_path = os.path.join(os.path.dirname(__file__), 'src', 'widgets')
def check_file(file):
if 'All changes made in this file will be lost' in open(file).read():
return True
return False
for f in os.listdir(input_path):
if not os.path.isfile(f):
pass
file_name, extension = os.path.splitext(f)
if extension == '.ui':
input_file = os.path.join(input_path, f)
output_file = os.path.join(output_path, file_name + '.py')
if os.path.isfile(output_file):
if not check_file(output_file):
print('Warning: tried to overwrite a file generated outside Qt Creator. {}'.format(output_file))
continue
subprocess.call('pyuic5 --import-from=widgets -x {} -o {}'.format(input_file, output_file), shell=True)
elif extension == '.qrc':
input_file = os.path.join(input_path, f)
output_file = os.path.join(output_path, file_name + '_rc.py')
if os.path.isfile(output_file):
if not check_file(output_file):
print('Warning: tried to overwrite a file generated outside Qt Creator. {}'.format(output_file))
continue
subprocess.call('pyrcc5 {} -o {}'.format(input_file, output_file), shell=True)