summaryrefslogtreecommitdiffstats
path: root/scene/resources/theme.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2021-10-02 19:26:20 +0300
committerYuri Sizov <yuris@humnom.net>2021-10-02 19:26:20 +0300
commit8aa78bc0501a37d7c1e81f0954ac5bd9b49f890f (patch)
treebdc49510ba924e4f9f9932dc9a1871803523f80c /scene/resources/theme.h
parent90f8eb7aa08c650684693f2be7e119ee5e94f2b0 (diff)
downloadredot-engine-8aa78bc0501a37d7c1e81f0954ac5bd9b49f890f.tar.gz
Reorganize Theme resource code for better maintainability
Diffstat (limited to 'scene/resources/theme.h')
-rw-r--r--scene/resources/theme.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/scene/resources/theme.h b/scene/resources/theme.h
index 15f21b91b8..35e466f899 100644
--- a/scene/resources/theme.h
+++ b/scene/resources/theme.h
@@ -96,13 +96,17 @@ protected:
bool _get(const StringName &p_name, Variant &r_ret) const;
void _get_property_list(List<PropertyInfo> *p_list) const;
- static Ref<Theme> project_default_theme;
+ // Universal Theme resources used when no other theme has the item.
static Ref<Theme> default_theme;
+ static Ref<Theme> project_default_theme;
+
+ // Universal default values, final fallback for every theme.
static Ref<Texture2D> default_icon;
static Ref<StyleBox> default_style;
static Ref<Font> default_font;
static int default_font_size;
+ // Default values configurable for each individual theme.
Ref<Font> default_theme_font;
int default_theme_font_size = -1;