summaryrefslogtreecommitdiffstats
path: root/scene/resources/text_paragraph.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-8/+37
|\
| * Merge pull request #98036 from bruvzg/para_btn_spacingThaddeus Crews2024-11-101-8/+33
| |\ | | | | | | | | | [TextParagraph/Button] Add support for line spacing.
| | * [TextParagraph/Button] Add support for line spacing.bruvzg2024-10-101-8/+33
| | |
| * | replace computed height with cached item minimum sizeMaidOpi2024-11-071-0/+4
| |/
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* Account for dropcap when calculating paragraph size, fix duplicate last char ↵bruvzg2024-08-291-10/+37
| | | | when using dropcap with autowrap off.
* [Text Overrun] Add option to set custom ellipsis character, add support for ↵bruvzg2023-12-041-0/+25
| | | | system font fallback.
* [TextServer] Fix line breaks for dropcap and resizing embedded objects.bruvzg2023-10-311-6/+5
|
* Do not apply extra spacing twice.bruvzg2023-10-091-9/+0
|
* Fix issues found by a static analyzerbitsawer2023-05-301-10/+2
|
* Expose TextServer justification flags to Label, Label3D, TextMesh and RTL. ↵bruvzg2023-05-151-3/+35
| | | | Add flags to control last/single line justification.
* [RTL] Fix fill align and trim with enabled dropcap.bruvzg2023-03-301-10/+10
|
* Mark dirty flags when shaped texts are invalidatedMinusKube2023-01-281-0/+12
|
* Use range iterators in LocalVector loopskobewi2023-01-211-19/+19
|
* 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".
* [RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables.bruvzg2022-12-151-6/+6
|
* Fix `TextLine` and `TextParagraph` `get_*_object_rect` methods not ↵bruvzg2022-10-261-6/+80
| | | | accounting for alignment and drop cap.
* [TextServer] Add support for trimming edge spaces on line break.bruvzg2022-09-011-1/+1
|
* Fix various typos not caught by codespellluz paz2022-07-211-2/+2
| | | Revert upstream `core/input/gamecontrollerdb.txt`. Upstream fix: https://github.com/gabomdq/SDL_GameControllerDB/pull/600
* Use BitField hint for the TextServer enums. Add missing parts for BitField ↵bruvzg2022-07-151-25/+43
| | | | support to the GDextension API.
* Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-54/+45
|
* Move duplicate AutoWrap, Overrun and VisibleChar behavior enums to the ↵bruvzg2022-06-161-15/+9
| | | | TextServer.
* [RTL] Add support for shaping in background thread.bruvzg2022-05-191-25/+113
|
* Fix center aligned text clipping.bruvzg2022-04-041-8/+24
|
* Unify TextServer built-in module and GDExtension code.bruvzg2022-03-171-6/+6
|
* [TextServer] Add function to change font, font size, and OpenType features ↵bruvzg2022-02-021-3/+3
| | | | without invalidating line break points, justification points, or recreating shaped text buffer.
* [TextServer] Improvements for line breaking, "Fill" alignment, overrun, and ↵bruvzg2022-01-131-10/+10
| | | | | | | | | | | | interaction between these modes. Fix "Fill" alignment processing wrong side of the text if overrun trim was applied. Improve "Fill" alignment to avoid adding excessive subsequent spaces or elongations. Add font detection to the overrun, to correctly add ellipsis (was using last glyph font, which doesn't necessary have dot character). Improve line breaking to avoid adding excessive subsequent soft break points for languages without word separator. Port missing overrun/justification code to the Fallback text server. Fix inferred text direction detection by controls. Add tests for "Fill" alignment and line breaking glyph flags.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* align to horizontal_alignment, valign to vertical_alignment, relatedNathan Franke2021-12-091-26/+26
|
* Merge pull request #46721 from bruvzg/custom_word_break_punctRémi Verschelde2021-11-091-0/+14
|\
| * [Text Server] Add support for user defined punctuation list, used for word ↵bruvzg2021-10-011-0/+14
| | | | | | | | breaking.
* | Fix: typo in TextParagraph class and docsMurilo Gonçalves2021-10-191-2/+2
|/
* Implement TextServer GDExtension interface, remove TextServer GDNative ↵bruvzg2021-10-011-20/+12
| | | | interface.
* Makes FontData importable resource.bruvzg2021-08-271-4/+4
| | | | | | | Adds multi-channel SDF font texture generation and rendering support. Adds per-font oversampling support. Adds FontData import plugins (for dynamic fonts, BMFonts and monospaced image fonts), font texture cache pre-generation and loading. Adds BMFont binary format and outline support.
* Fix ItemList layout (+EditorFileDialog)Hendrik Brucker2021-08-211-8/+9
|
* Merge pull request #51178 from Geometror/layout-options-textline-textparagraphRémi Verschelde2021-08-111-102/+212
|\ | | | | Various text layout improvements (TextLine, TextParagraph, Label, TextServer)
| * Various text layout improvements (TextLine, TextParagraph, Label, TextServer)Hendrik Brucker2021-08-111-102/+212
| |
* | [Text Server] Improve object (image/table) inline alignment.bruvzg2021-08-081-4/+4
|/
* Tweak dozens of editor property hints for consistencyHugo Locurcio2021-05-251-1/+1
| | | | | | - Update Viewport MSAA property hints to match the currently exposed values. - Add some performance hints to property hints.
* Style: Apply clang-tidy's `readability-braces-around-statements`Rémi Verschelde2021-04-051-2/+4
|
* Use extra font spacing in the RichTextLabel line height calculation, and ↵bruvzg2021-03-291-0/+11
| | | | stylebox size in the minimum size calculation.
* Fix `TextLine`/`TextParagraph` crash when `add_string` / `set_dropcap` is ↵bruvzg2021-02-151-0/+2
| | | | called null font reference.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Fix missed renamings from empty() to is_empty()Rémi Verschelde2020-12-291-1/+1
| | | | Those were missed in #44401 or added by later PRs.
* Merge pull request #43691 from bruvzg/ctl_dropcapRémi Verschelde2020-12-291-15/+206
|\ | | | | [Complex Text Layouts] Add drop-cap support to RTL.
| * [Complex Text Layouts] Add drop-caps support to TextParagraph and RTL.bruvzg2020-12-131-15/+206
| |
* | Rename empty() to is_empty()Marcel Admiraal2020-12-281-2/+2
|/
* [Complex Text Layouts] Adds missing Font::SPACING_* to the Label, LineEdit, ↵bruvzg2020-12-061-21/+36
| | | | | | TextEdit, TextLine and TextParagraph. Fixes oversized editor control height (default editor spacing is negative) and control size changing when text is set.
* [Complex Text Layouts] Refactor Font class, default themes and controls to ↵bruvzg2020-11-261-0/+517
use Text Server interface. Implement interface mirroring. Add TextLine and TextParagraph classes. Handle UTF-16 input on macOS and Windows.