Fix String::word_wrap() for long words
- Changes `TextServer.string_get_word_breaks()` - Returns pairs of boundary start and end offsets - Accepts `chars_per_line` to return line breaks - Removes `String::word_wrap()` Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
This commit is contained in:
@ -308,7 +308,7 @@ void TextServerExtension::_bind_methods() {
|
||||
GDVIRTUAL_BIND(_strip_diacritics, "string");
|
||||
GDVIRTUAL_BIND(_is_valid_identifier, "string");
|
||||
|
||||
GDVIRTUAL_BIND(_string_get_word_breaks, "string", "language");
|
||||
GDVIRTUAL_BIND(_string_get_word_breaks, "string", "language", "chars_per_line");
|
||||
|
||||
GDVIRTUAL_BIND(_is_confusable, "string", "dict");
|
||||
GDVIRTUAL_BIND(_spoof_check, "string");
|
||||
@ -1379,9 +1379,9 @@ TypedArray<Vector2i> TextServerExtension::parse_structured_text(StructuredTextPa
|
||||
return ret;
|
||||
}
|
||||
|
||||
PackedInt32Array TextServerExtension::string_get_word_breaks(const String &p_string, const String &p_language) const {
|
||||
PackedInt32Array TextServerExtension::string_get_word_breaks(const String &p_string, const String &p_language, int p_chars_per_line) const {
|
||||
PackedInt32Array ret;
|
||||
GDVIRTUAL_CALL(_string_get_word_breaks, p_string, p_language, ret);
|
||||
GDVIRTUAL_CALL(_string_get_word_breaks, p_string, p_language, p_chars_per_line, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
@ -510,8 +510,8 @@ public:
|
||||
virtual String strip_diacritics(const String &p_string) const override;
|
||||
GDVIRTUAL1RC(String, _strip_diacritics, const String &);
|
||||
|
||||
virtual PackedInt32Array string_get_word_breaks(const String &p_string, const String &p_language = "") const override;
|
||||
GDVIRTUAL2RC(PackedInt32Array, _string_get_word_breaks, const String &, const String &);
|
||||
virtual PackedInt32Array string_get_word_breaks(const String &p_string, const String &p_language = "", int p_chars_per_line = 0) const override;
|
||||
GDVIRTUAL3RC(PackedInt32Array, _string_get_word_breaks, const String &, const String &, int);
|
||||
|
||||
virtual bool is_valid_identifier(const String &p_string) const override;
|
||||
GDVIRTUAL1RC(bool, _is_valid_identifier, const String &);
|
||||
|
||||
Reference in New Issue
Block a user