diff options
author | Yuri Sizov <yuris@humnom.net> | 2021-10-02 23:06:14 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2021-10-04 15:25:07 +0300 |
commit | 4a42a66cd92cbadac02bd1846ac4022dc8aaa44b (patch) | |
tree | d8e6031ec62835bae3ecd9561579a32610b94ea5 /scene/resources/theme.h | |
parent | 8aa78bc0501a37d7c1e81f0954ac5bd9b49f890f (diff) | |
download | redot-engine-4a42a66cd92cbadac02bd1846ac4022dc8aaa44b.tar.gz |
Add the base scale factor to the Theme resource
Diffstat (limited to 'scene/resources/theme.h')
-rw-r--r-- | scene/resources/theme.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scene/resources/theme.h b/scene/resources/theme.h index 35e466f899..50466d99c2 100644 --- a/scene/resources/theme.h +++ b/scene/resources/theme.h @@ -101,12 +101,14 @@ protected: static Ref<Theme> project_default_theme; // Universal default values, final fallback for every theme. + static float default_base_scale; 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. + float default_theme_base_scale = 0.0; Ref<Font> default_theme_font; int default_theme_font_size = -1; @@ -124,16 +126,23 @@ public: static Ref<Theme> get_project_default(); static void set_project_default(const Ref<Theme> &p_project_default); + static void set_default_base_scale(float p_base_scale); static void set_default_icon(const Ref<Texture2D> &p_icon); static void set_default_style(const Ref<StyleBox> &p_style); static void set_default_font(const Ref<Font> &p_font); static void set_default_font_size(int p_font_size); + void set_default_theme_base_scale(float p_base_scale); + float get_default_theme_base_scale() const; + bool has_default_theme_base_scale() const; + void set_default_theme_font(const Ref<Font> &p_default_font); Ref<Font> get_default_theme_font() const; + bool has_default_theme_font() const; void set_default_theme_font_size(int p_font_size); int get_default_theme_font_size() const; + bool has_default_theme_font_size() const; void set_icon(const StringName &p_name, const StringName &p_theme_type, const Ref<Texture2D> &p_icon); Ref<Texture2D> get_icon(const StringName &p_name, const StringName &p_theme_type) const; |