diff options
author | Yuri Sizov <yuris@humnom.net> | 2024-01-15 13:14:55 +0100 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2024-01-16 11:57:45 +0100 |
commit | 95b27fe8c741f71d207483ad32922112535a3de9 (patch) | |
tree | c0998cee967beb7c2c957af5a2bd44ff6c29beb2 /editor/themes/SCsub | |
parent | 6bb89c71ff65ee117a7dce4576026d716ee390e5 (diff) | |
download | redot-engine-95b27fe8c741f71d207483ad32922112535a3de9.tar.gz |
Reorganize code related to editor theming
This change introduces a new EditorThemeManager class
to abstract theme generatio and its subroutines.
Logic related to EditorTheme, EditorColorMap, and editor
icons has been extracted into their respective files with
includes cleaned up.
All related files have been moved to a separate folder to
better scope them in the project. This includes relevant
generated files as well.
Diffstat (limited to 'editor/themes/SCsub')
-rw-r--r-- | editor/themes/SCsub | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/editor/themes/SCsub b/editor/themes/SCsub new file mode 100644 index 0000000000..41b20f8a78 --- /dev/null +++ b/editor/themes/SCsub @@ -0,0 +1,22 @@ +#!/usr/bin/env python + +Import("env") + +import glob +import editor_theme_builders + + +# Fonts +flist = glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.ttf") +flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.otf")) +flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff")) +flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff2")) +flist.sort() +env.Depends("#editor/themes/builtin_fonts.gen.h", flist) +env.CommandNoCache( + "#editor/themes/builtin_fonts.gen.h", + flist, + env.Run(editor_theme_builders.make_fonts_header, "Generating builtin fonts header."), +) + +env.add_source_files(env.editor_sources, "*.cpp") |