diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-01-17 14:28:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-17 14:28:38 +0100 |
| commit | 57ad84537dc70418516bb0015b9170dd3248546c (patch) | |
| tree | e7bab9e5a20d2afd848efe3b302daa3643ff9275 /servers/text_server.h | |
| parent | d9a4ff7583c137b661c7347179a9b0f54696eef7 (diff) | |
| parent | e02a097280094801659ad123e6b9ac097cc70102 (diff) | |
| download | redot-engine-57ad84537dc70418516bb0015b9170dd3248546c.tar.gz | |
Merge pull request #56860 from bruvzg/icu_case
Diffstat (limited to 'servers/text_server.h')
| -rw-r--r-- | servers/text_server.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/servers/text_server.h b/servers/text_server.h index 07f0ae5045..599cc3afd0 100644 --- a/servers/text_server.h +++ b/servers/text_server.h @@ -109,7 +109,8 @@ public: FEATURE_BREAK_ITERATORS = 1 << 4, FEATURE_FONT_SYSTEM = 1 << 5, FEATURE_FONT_VARIABLE = 1 << 6, - FEATURE_USE_SUPPORT_DATA = 1 << 7 + FEATURE_CONTEXT_SENSITIVE_CASE_CONVERSION = 1 << 7, + FEATURE_USE_SUPPORT_DATA = 1 << 8, }; enum ContourPointTag { @@ -457,6 +458,10 @@ public: virtual String strip_diacritics(const String &p_string) const; + // Other string operations. + virtual String string_to_upper(const String &p_string, const String &p_language = "") const = 0; + virtual String string_to_lower(const String &p_string, const String &p_language = "") const = 0; + TextServer(); ~TextServer(); }; |
