84a69d7429
The new default project theme uses StyleBoxFlat extensively for a more modern design and better scalability to multiple resolutions. SVG icons are now used in place of PNG icons. While this does not allow for true vector-based icon drawing (icons are still rasterized at load-time), this makes the design work easier for contributors and opens the door to vector drawing in the future (e.g. with polygons or SDFs). Like for editor icons, the SVG header file is now built automatically when a SVG file is changed. This removing the need for running `make_header.py` manually (TODO). The "Use Hidpi" project setting has been removed in favor of a "Default Theme Scale" project setting, which allows creating the default theme at a higher/lower scale than the default. This can be used when designing GUIs with a high base resolution to ensure crisp visuals. Co-authored-by: Yuri Sizov <yuris@humnom.net>
78 lines
1.9 KiB
Python
78 lines
1.9 KiB
Python
"""Functions used to generate source files during build time
|
|
|
|
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
|
|
|
|
"""
|
|
|
|
import os
|
|
from io import StringIO
|
|
from platform_methods import subprocess_main
|
|
|
|
|
|
# See also `editor/icons/editor_icons_builders.py`.
|
|
def make_default_theme_icons_action(target, source, env):
|
|
|
|
dst = target[0]
|
|
svg_icons = source
|
|
|
|
icons_string = StringIO()
|
|
|
|
for f in svg_icons:
|
|
|
|
fname = str(f)
|
|
|
|
icons_string.write('\t"')
|
|
|
|
with open(fname, "rb") as svgf:
|
|
b = svgf.read(1)
|
|
while len(b) == 1:
|
|
icons_string.write("\\" + str(hex(ord(b)))[1:])
|
|
b = svgf.read(1)
|
|
|
|
icons_string.write('"')
|
|
if fname != svg_icons[-1]:
|
|
icons_string.write(",")
|
|
icons_string.write("\n")
|
|
|
|
s = StringIO()
|
|
s.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n\n")
|
|
s.write('#include "modules/modules_enabled.gen.h"\n\n')
|
|
s.write("#ifndef _DEFAULT_THEME_ICONS_H\n")
|
|
s.write("#define _DEFAULT_THEME_ICONS_H\n")
|
|
s.write("static const int default_theme_icons_count = {};\n\n".format(len(svg_icons)))
|
|
s.write("#ifdef MODULE_SVG_ENABLED\n")
|
|
s.write("static const char *default_theme_icons_sources[] = {\n")
|
|
s.write(icons_string.getvalue())
|
|
s.write("};\n")
|
|
s.write("#endif // MODULE_SVG_ENABLED\n\n")
|
|
s.write("static const char *default_theme_icons_names[] = {\n")
|
|
|
|
index = 0
|
|
for f in svg_icons:
|
|
|
|
fname = str(f)
|
|
|
|
# Trim the `.svg` extension from the string.
|
|
icon_name = os.path.basename(fname)[:-4]
|
|
|
|
s.write('\t"{0}"'.format(icon_name))
|
|
|
|
if fname != svg_icons[-1]:
|
|
s.write(",")
|
|
s.write("\n")
|
|
|
|
index += 1
|
|
|
|
s.write("};\n")
|
|
|
|
s.write("#endif\n")
|
|
|
|
with open(dst, "w") as f:
|
|
f.write(s.getvalue())
|
|
|
|
s.close()
|
|
icons_string.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
subprocess_main(globals())
|