diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-10 12:12:56 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-10 12:12:56 -0600 |
commit | 63838c936c55816a3325c8ec98cb2cc9ec94a41e (patch) | |
tree | c38342ce5a9ae6b3797f94aef7546c7f4d4710dc /scene/gui/label.h | |
parent | 3cff32a92d71cc860b96ca21c807293a99b37af3 (diff) | |
parent | 3ac043c5086258824d886667f119f5d40b18dce5 (diff) | |
download | redot-engine-63838c936c55816a3325c8ec98cb2cc9ec94a41e.tar.gz |
Merge pull request #98278 from a-johnston/fuzzy-search-rebase
Add fuzzy string matching to quick open search
Diffstat (limited to 'scene/gui/label.h')
-rw-r--r-- | scene/gui/label.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/gui/label.h b/scene/gui/label.h index e0ebca944a..2576d21c33 100644 --- a/scene/gui/label.h +++ b/scene/gui/label.h @@ -91,11 +91,16 @@ private: int font_shadow_outline_size; } theme_cache; + void _ensure_shaped() const; void _update_visible(); void _shape(); void _invalidate(); protected: + RID get_line_rid(int p_line) const; + Rect2 get_line_rect(int p_line) const; + void get_layout_data(Vector2 &r_offset, int &r_line_limit, int &r_line_spacing) const; + void _notification(int p_what); static void _bind_methods(); #ifndef DISABLE_DEPRECATED |