source: sasview/src/sas/qtgui/convertUI.py @ 4992ff2

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 4992ff2 was 4992ff2, checked in by Piotr Rozyczko <rozyczko@…>, 6 years ago

Initial, in-progress version. Not really working atm. SASVIEW-787

  • Property mode set to 100755
File size: 954 bytes
Line 
1# Convert all .ui files in all subdirectories of the current script
2import os
3
4def pyrrc(in_file, out_file):
5    """ Run the pyrcc4 script"""
6    execute = 'pyrcc5 %s -o %s' % (in_file, out_file)
7    os.system(execute)
8
9def pyuic(in_file, out_file):
10    """ Run the pyuic5 script"""
11    execute = 'pyuic5 -o %s %s' % (out_file, in_file)
12    os.system(execute)
13
14# look for .ui files
15for root, dirs, files in os.walk("."):
16    for file in files:
17        if file.endswith(".ui"):
18            file_in = os.path.join(root, file)
19            file_out = os.path.splitext(file_in)[0]+'.py'
20            pyuic(file_in, file_out)
21
22# RC file in UI directory
23ui_root = 'UI'
24rc_file = 'main_resources.qrc'
25out_file = 'main_resources_rc.py'
26pyrrc(os.path.join(ui_root, rc_file), os.path.join(ui_root, out_file))
27
28# Images
29images_root = 'images'
30rc_file = 'images.qrc'
31out_file = 'images_rc.py'
32pyrrc(os.path.join(images_root, rc_file), os.path.join(ui_root, out_file))
Note: See TracBrowser for help on using the repository browser.