summaryrefslogtreecommitdiffstats
path: root/servers/text_server.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Fix `TextServer::shaped_text_*_character_pos` for the first character of ↵bruvzg2024-09-161-3/+3
| | | | | | wrapped string. Allow starting/ending RTL selection before line start. (cherry picked from commit 932acce8f290fe2231e81d685077af084666202e)
* [TextServer, GDExtension] Fix building text servers as GDExtension, expose ↵bruvzg2024-06-121-1/+1
| | | | new/changed low-level methods to GDExtension API.
* Merge pull request #81639 from MJacred/is_letterRémi Verschelde2024-05-031-0/+5
|\ | | | | | | Add `is_valid_letter()` to `TextServer`
| * Add is_valid_letter() to TextServerMJacred2024-05-021-0/+5
| |
* | Improve TextEdit/LineEdit word selection.bruvzg2024-04-221-5/+8
| |
* | [TextServer] Expose ICU title case string conversion to scripting.bruvzg2024-04-041-0/+1
| |
* | [TextServer] Use GDVIRTUAL_REQUIRED_CALL for required extensions methods, ↵bruvzg2024-03-131-0/+42
| | | | | | | | update extension docs.
* | Merge pull request #89395 from bruvzg/rtl_ts_img_rangeRémi Verschelde2024-03-121-0/+2
|\ \ | | | | | | | | | [RTL] Use "visible characters" property for inline object visibility
| * | [RTL] Use "visible characters" property for inline object visibilitybruvzg2024-03-121-0/+2
| | |
* | | [Font] Add option to disable embedded bitmaps loading.bruvzg2024-03-111-0/+3
|/ /
* / [TextEdit] Add support for optional wrapped line indentation.bruvzg2024-02-261-2/+42
|/
* [TextServer] Implement soft hyphen handling.bruvzg2024-02-231-8/+29
|
* [TextServer / Font] Add support for customizable baseline offset.bruvzg2024-01-281-0/+3
|
* [TextServer] Fix precision loss in the string drawing methods.bruvzg2024-01-181-17/+18
|
* [Text Overrun] Add option to set custom ellipsis character, add support for ↵bruvzg2023-12-041-0/+3
| | | | system font fallback.
* [Bitmap fonts] Add support for scaling.bruvzg2023-10-131-0/+8
|
* [TextServer] Store font extra spacing variations without making a full copy ↵bruvzg2023-09-281-0/+1
| | | | of font.
* [Text Server] Store extra spacing of individual font variations.bruvzg2023-08-241-0/+3
|
* [TextServer] Fix issues with character breaks, add more tests.bruvzg2023-08-191-3/+5
|
* [TextServer] Fix system font fallback and caret/selection behavior for ↵bruvzg2023-08-151-0/+57
| | | | composite characters.
* [Text Server] Fix ellipsis outline drawing.bruvzg2023-07-241-2/+2
|
* [TextServer] Prevent duplicate line breaks on virtual spaces when line width ↵bruvzg2023-05-261-16/+42
| | | | is significantly smaller than character width.
* [TextServer] Add support for retrieving OpenType name strings.bruvzg2023-05-221-0/+1
|
* Expose TextServer justification flags to Label, Label3D, TextMesh and RTL. ↵bruvzg2023-05-151-1/+20
| | | | Add flags to control last/single line justification.
* [TextServer] Use dedicated flag for object replacement characters.bruvzg2023-04-121-1/+2
|
* [Font] Implement `get_char_from_glyph_index` function.bruvzg2023-03-011-0/+1
|
* Implement BiDi override mode for GDScript source.bruvzg2023-01-181-18/+98
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Fix String::word_wrap() for long wordsHaoyu Qiu2022-12-161-1/+1
| | | | | | | | | - 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>
* [RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables.bruvzg2022-12-151-2/+2
|
* Use system fonts as fallback and improve system font handling.bruvzg2022-12-041-0/+9
| | | | | | | Add support for font weight and stretch selection when using system fonts. Add function to get system fallback font from a font name, style, text, and language code. Implement system font support for Android. Use system fonts as a last resort fallback.
* Add split caret direction markers. Fix block/overtype caret size.bruvzg2022-10-071-30/+27
|
* [GDExtension] Use function names with underscore for TextServer extension, ↵bruvzg2022-09-281-0/+1
| | | | add macros to generate wrappers for module functions.
* [TextServer] Fix excessive space trimming.bruvzg2022-09-011-25/+18
|
* [TextServer] Add support for trimming edge spaces on line break.bruvzg2022-09-011-14/+109
|
* Merge pull request #64422 from bruvzg/make_fonts_unbearably_ugly_2.0Rémi Verschelde2022-08-261-2/+13
|\
| * Add font LCD sub-pixel anti-aliasing support.bruvzg2022-08-231-2/+13
| |
* | Merge pull request #64082 from KoBeWi/array3kRémi Verschelde2022-08-241-7/+7
|\ \
| * | Replace Array return types with TypedArray 3kobewi2022-08-241-7/+7
| | |
* | | Merge pull request #64346 from firefly2442/patch-1Rémi Verschelde2022-08-241-1/+1
|\ \ \ | |/ / |/| |
| * | small typo in TextServer, changes bitwise to logical which can be faster in ↵Patrick2022-08-131-1/+1
| |/ | | | | | | some cases via "short circuiting"
* / Replace Array return types with TypedArraykobewi2022-08-221-2/+3
|/
* HarfBuzz: Update to version 5.1.0, use new FLAG_SAFE_TO_INSERT_TATWEEL flag ↵bruvzg2022-08-041-0/+1
| | | | to improve justification.
* [TextServer] Add ICU Unicode security and spoofing detection.bruvzg2022-08-021-0/+4
|
* [TextServer] Implement ICU/UAX 31 based `is_valid_identifier` function.bruvzg2022-08-021-0/+22
|
* Use BitField hint for the TextServer enums. Add missing parts for BitField ↵bruvzg2022-07-151-43/+44
| | | | support to the GDextension API.
* Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-3/+3
|
* Move duplicate AutoWrap, Overrun and VisibleChar behavior enums to the ↵bruvzg2022-06-161-2/+22
| | | | TextServer.