summaryrefslogtreecommitdiffstats
path: root/scene/gui/label.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2022-08-31 15:02:40 +0300
committerYuri Sizov <yuris@humnom.net>2022-09-01 16:35:36 +0300
commit3b1aa240dc2415c454062e769d4edcc81544e1f8 (patch)
treee66119340a0b02cc975416290be914237ae4ee4b /scene/gui/label.h
parent0c221f0284909a1156a1c98de5104e07c1cce0b9 (diff)
downloadredot-engine-3b1aa240dc2415c454062e769d4edcc81544e1f8.tar.gz
Add a lifecycle method for manual theme item caching to Control
Diffstat (limited to 'scene/gui/label.h')
-rw-r--r--scene/gui/label.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/scene/gui/label.h b/scene/gui/label.h
index 65831cab6e..b79c94a5ba 100644
--- a/scene/gui/label.h
+++ b/scene/gui/label.h
@@ -67,13 +67,28 @@ private:
Ref<LabelSettings> settings;
+ struct ThemeCache {
+ Ref<StyleBox> normal_style;
+ Ref<Font> font;
+
+ int font_size = 0;
+ int line_spacing = 0;
+ Color font_color;
+ Color font_shadow_color;
+ Point2 font_shadow_offset;
+ Color font_outline_color;
+ int font_outline_size;
+ int font_shadow_outline_size;
+ } theme_cache;
+
void _update_visible();
void _shape();
void _invalidate();
protected:
- void _notification(int p_what);
+ virtual void _update_theme_item_cache() override;
+ void _notification(int p_what);
static void _bind_methods();
public: