Skip to content

Commit bd83ca6

Browse files
committed
Added rcc argument to export_theme funtion.
1 parent 7c063e8 commit bd83ca6

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

qt_material/__init__.py

+27-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141

4242
# ----------------------------------------------------------------------
43-
def export_theme(theme='', qss=None, invert_secondary=False, extra={}, output='theme', prefix='icon:/'):
43+
def export_theme(theme='', qss=None, invert_secondary=False, extra={}, output='theme', prefix='icon:/', rcc=None):
4444
""""""
4545
if not os.path.isabs(output) and not output.startswith('.'):
4646
output = f'.{output}'
@@ -51,6 +51,32 @@ def export_theme(theme='', qss=None, invert_secondary=False, extra={}, output='t
5151
with open(qss, 'w') as file:
5252
file.writelines(stylesheet.replace('icon:/', prefix))
5353

54+
if rcc:
55+
56+
with open(rcc, 'w') as file:
57+
file.write('<RCC>\n')
58+
file.write(f' <qresource prefix="{prefix[:-2]}">\n')
59+
60+
if output.startswith('.'):
61+
output = output[1:]
62+
63+
for subfolder in ['disabled', 'primary']:
64+
files = os.listdir(os.path.join(
65+
os.path.abspath(output), subfolder))
66+
files = filter(lambda s: s.endswith('svg'), files)
67+
for filename in files:
68+
file.write(
69+
f' <file>{output}/{subfolder}/{filename}</file>\n')
70+
71+
file.write(' </qresource\n')
72+
73+
file.write(f' <qresource prefix="file">\n')
74+
if qss:
75+
file.write(f' <file>{qss}</file>\n')
76+
file.write(' </qresource\n')
77+
78+
file.write('</RCC>\n')
79+
5480

5581
# ----------------------------------------------------------------------
5682
def build_stylesheet(theme='', invert_secondary=False, extra={}, parent='theme'):

0 commit comments

Comments
 (0)