forked from AuroraMiddleware/gtk
3cc7d9b8c0
Put these images into gtk/icons, where they belong.
97 lines
2.8 KiB
Python
97 lines
2.8 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# Generate gtk.gresources.xml
|
|
#
|
|
# Usage: gen-gtk-gresources-xml SRCDIR_GTK [OUTPUT-FILE]
|
|
|
|
import os, sys
|
|
import filecmp
|
|
|
|
def replace_if_changed(new, old):
|
|
'''
|
|
Compare contents and only replace if changed to avoid triggering a rebuild.
|
|
'''
|
|
try:
|
|
changed = not filecmp.cmp(new, old, shallow=False)
|
|
except FileNotFoundError:
|
|
changed = True
|
|
if changed:
|
|
os.replace(new, old)
|
|
else:
|
|
os.remove(new)
|
|
|
|
srcdir = sys.argv[1]
|
|
|
|
xml = '''<?xml version='1.0' encoding='UTF-8'?>
|
|
<gresources>
|
|
<gresource prefix='/org/gtk/libgtk'>
|
|
'''
|
|
|
|
def get_files(subdir,extension):
|
|
return sorted(filter(lambda x: x.endswith((extension)), os.listdir(os.path.join(srcdir,subdir))))
|
|
|
|
xml += '''
|
|
<file>theme/Empty/gtk.css</file>
|
|
<file>theme/Adwaita/gtk.css</file>
|
|
<file>theme/Adwaita/gtk-dark.css</file>
|
|
<file alias='theme/Adwaita-dark/gtk.css'>theme/Adwaita/gtk-dark.css</file>
|
|
<file>theme/Adwaita/Adwaita.css</file>
|
|
<file>theme/Adwaita/Adwaita-dark.css</file>
|
|
'''
|
|
|
|
for f in get_files('theme/Adwaita/assets', '.png'):
|
|
xml += ' <file>theme/Adwaita/assets/{0}</file>\n'.format(f)
|
|
|
|
xml += '\n'
|
|
|
|
for f in get_files('theme/Adwaita/assets', '.svg'):
|
|
xml += ' <file>theme/Adwaita/assets/{0}</file>\n'.format(f)
|
|
|
|
xml += '''
|
|
<file>theme/HighContrast/gtk.css</file>
|
|
<file>theme/HighContrast/gtk-dark.css</file>
|
|
<file alias='theme/HighContrastInverse/gtk.css'>theme/HighContrast/gtk-dark.css</file>
|
|
<file>theme/HighContrast/HighContrast.css</file>
|
|
<file>theme/HighContrast/HighContrast-dark.css</file>
|
|
'''
|
|
|
|
for f in get_files('theme/HighContrast/assets', '.png'):
|
|
xml += ' <file>theme/HighContrast/assets/{0}</file>\n'.format(f)
|
|
|
|
xml += '\n'
|
|
|
|
for f in get_files('theme/HighContrast/assets', '.svg'):
|
|
xml += ' <file>theme/HighContrast/assets/{0}</file>\n'.format(f)
|
|
|
|
for f in get_files('ui', '.ui'):
|
|
xml += ' <file preprocess=\'xml-stripblanks\'>ui/{0}</file>\n'.format(f)
|
|
|
|
xml += '\n'
|
|
|
|
for s in ['16x16', '32x32', '64x64', 'scalable']:
|
|
for c in ['actions', 'categories', 'emblems', 'emotes', 'devices', 'mimetypes', 'places', 'status']:
|
|
icons_dir = 'icons/{0}/{1}'.format(s,c)
|
|
if os.path.exists(os.path.join(srcdir,icons_dir)):
|
|
for f in get_files(icons_dir, '.png'):
|
|
xml += ' <file>icons/{0}/{1}/{2}</file>\n'.format(s,c,f)
|
|
for f in get_files(icons_dir, '.svg'):
|
|
xml += ' <file>icons/{0}/{1}/{2}</file>\n'.format(s,c,f)
|
|
|
|
for f in get_files('inspector', '.ui'):
|
|
xml += ' <file preprocess=\'xml-stripblanks\'>inspector/{0}</file>\n'.format(f)
|
|
|
|
xml += '''
|
|
<file>inspector/inspector.css</file>
|
|
<file>emoji/en.data</file>
|
|
</gresource>
|
|
</gresources>'''
|
|
|
|
if len(sys.argv) > 2:
|
|
outfile = sys.argv[2]
|
|
tmpfile = outfile + '~'
|
|
with open(tmpfile, 'w') as f:
|
|
f.write(xml)
|
|
replace_if_changed(tmpfile, outfile)
|
|
else:
|
|
print(xml)
|