40
40
41
41
42
42
# ----------------------------------------------------------------------
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 ):
44
44
""""""
45
45
if not os .path .isabs (output ) and not output .startswith ('.' ):
46
46
output = f'.{ output } '
@@ -51,6 +51,32 @@ def export_theme(theme='', qss=None, invert_secondary=False, extra={}, output='t
51
51
with open (qss , 'w' ) as file :
52
52
file .writelines (stylesheet .replace ('icon:/' , prefix ))
53
53
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
+
54
80
55
81
# ----------------------------------------------------------------------
56
82
def build_stylesheet (theme = '' , invert_secondary = False , extra = {}, parent = 'theme' ):
0 commit comments