summaryrefslogtreecommitdiffstats
path: root/scene/gui/label.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-201/+143
|\
| * Add fuzzy string matching to quick open searchAdam Johnston2024-10-281-201/+143
| | | | | | | | Co-authored-by: sam <samsface@gmail.com>
* | 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>
* [Label] Move shadow drawing into a separate draw step.bruvzg2024-03-151-79/+47
|
* Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-2/+2
| | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* Update Node::get_configuration_warnings signatureRedMser2024-02-081-2/+2
|
* Merge pull request #82894 from Quimisagi/label-align-values-discardedRémi Verschelde2024-01-041-0/+13
|\ | | | | | | Add compatibility rename of `(v)align` properties of `Label`
| * Add compability rename of (v)align properties of LabelDavid Crespo2023-10-311-0/+13
| |
* | [Label] Add get_character_bounds method to get bounding rectangles of the ↵bruvzg2023-12-191-0/+123
| | | | | | | | characters.
* | [Text Overrun] Add option to set custom ellipsis character, add support for ↵bruvzg2023-12-041-0/+28
| | | | | | | | system font fallback.
* | Warn about autowrapped labels in containersYuri Sizov2023-11-091-0/+15
|/
* Register theme properties with ThemeDBYuri Sizov2023-09-111-17/+14
|
* [Text Server] Store extra spacing of individual font variations.bruvzg2023-08-241-3/+0
|
* Merge pull request #77280 from Rindbee/fix-unnecessary-break-in-LabelRémi Verschelde2023-08-021-3/+0
|\ | | | | | | Fix unnecessary break when calculating the height of visible lines
| * Fix unnecessary break when calculating the height of visible linesRindbee2023-05-201-3/+0
| | | | | | | | | | | | This break causes the minsize to be smaller than expected, and then the size keeps increasing by one line to cover all visible lines. This can cause performance issues when there are many visible lines.
* | [Label] Remove extra line spacing from Label minimum size calculations.bruvzg2023-07-261-0/+3
| |
* | Unify and streamline connecting to Resource changeskobewi2023-07-171-3/+2
| |
* | [Label] Add support for tab stops.bruvzg2023-06-091-9/+34
|/
* Expose TextServer justification flags to Label, Label3D, TextMesh and RTL. ↵bruvzg2023-05-151-6/+56
| | | | Add flags to control last/single line justification.
* Revert Label text reshaping fix #71553 and subsequent regression fixesRémi Verschelde2023-02-231-129/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | Despite a lot of great work from Pedro to try to improve the Label text reshaping logic and fix subsequent regressions, we found ourselves still chasing more edge cases, such as #73736 (which got reverted already due to it causing yet another regression). In parallel, it seems like the crash scenario that #71553 was addressing got solved differently in the master branch, so it appears like this change is no longer necessary at all (at least not urgently), so we decided to revert to the previous known "ok" state of Label. - Revert #71553 "Prevent infinite cascade of re-layout after label text reshaping" This reverts commit ed8c5cd52f7914daf6f1aa309581ca3b9b048a2e. - Revert #72387 "Enhance label sizing algorithm" This reverts commit 5131b81a4db89d2ef05f7cff7b4b5ea93b140aec. - Revert #73234 "Fix blank non-autowrapping labels" This reverts commit 3ccabee9ae8f261aa7b0110482fbb5d2500d2e38. - Revert #73343 "Make label sizing algorithm more robust" This reverts commit 4f7f1ef60bdbb0c6d6096d3d99f3e967af7d7a39. - Revert #73426 "Fix width determination of non-trimmed, non-wrapped labels" This reverts commit 73b6c0b972150c7cee3975080bedc510f1088adb.
* Revert "Fix visible_lines calculation"Rémi Verschelde2023-02-221-1/+4
| | | | | | | | This reverts commit ceee405cec171506dde7bc62033dc52ac3797599. This caused regressions, see #73736 and #73780. Fixes #73780.
* Fix visible_lines calculationhelviett2023-02-221-4/+1
|
* Fix width determination of non-trimmed, non-wrapped labelsPedro J. Estébanez2023-02-161-7/+9
| | | | In other words, exclude trimmable labels from the special logic used for non-wrapping ones, since they are not expected to dictate their width authoritatively.
* Make label sizing algorithm more robustPedro J. Estébanez2023-02-151-125/+132
|
* Fix blank non-autowrapping labelsPedro J. Estébanez2023-02-131-0/+4
|
* Merge pull request #72225 from MinusKube/shaped_text_invalidated_bugRémi Verschelde2023-02-131-0/+12
|\ | | | | | | Mark dirty flags when shaped texts are invalidated
| * Mark dirty flags when shaped texts are invalidatedMinusKube2023-01-281-0/+12
| |
* | Enhance label sizing algorithmPedro J. Estébanez2023-02-061-54/+58
|/
* Prevent infinite cascade of re-layout after label text reshapingPedro J. Estébanez2023-01-171-1/+8
|
* Removed unused property hints and `Object::get_translatable_strings()`Juan Linietsky2023-01-091-1/+1
| | | | | | | | | | | | | | | | * Remove unused `EditorPropertyMember` and related hints, previouly used by VisualScript. Such logic should be implemented in the VS module itself. * As the above broke compatibility with the VS module, clean up the other hacks that were still in core in support of VisualScript. * `PROPERTY_USAGE_INTERNATIONALIZED` was only used in Object's `get_translatable_strings()`, which is a legacy function not used anywhere. So both are removed. * Reordered some usage flags after the above removal to minimize the diff. * General clean up. Fixes #30203. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* 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".
* Merge pull request #67083 from RedMser/label-font-warningRémi Verschelde2022-10-091-0/+32
|\ | | | | | | Add warning for missing characters in label font
| * Add warning for missing characters in label fontRedMser2022-10-081-0/+32
| |
* | Fix Label text length mismatch after localizationHaoyu Qiu2022-10-081-1/+1
|/
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-3/+3
| | | | change warnings=all to use /W4.
* Merge pull request #65213 from Mickeon/fix-label-visible-ratioRémi Verschelde2022-09-011-2/+2
|\
| * Fix Label & RichTextLabel's visible_ratio not workingMicky2022-09-011-2/+2
| |
* | Add a lifecycle method for manual theme item caching to ControlYuri Sizov2022-09-011-21/+37
|/
* [TextServer] Add support for trimming edge spaces on line break.bruvzg2022-09-011-1/+2
|
* Rename `CanvasItem.update()` to `queue_redraw()`Micky2022-08-291-20/+20
| | | | | | | | | | Affects a lot of classes. Very thoroughly checked signal connections and deferred calls to this method, add_do_method/add_undo_method calls, and so on. Also renames the internal `_update_callback()` to `_redraw_callback()` for consistency. Just a few comments have also been changed to say "redraw". In CPUParticles2D, there was a private variable with the same name. It has been renamed to `do_redraw`.
* Reorganized Label and RichTextLabel propertiesVolTer2022-08-281-1/+2
|
* Rename Label & RichTextLabel.`percent_visible` to `visible_ratio`Micky2022-08-261-21/+21
| | | | Also updates the documentation of both `visible_characters` and `visible_ratio` to, better describe what they do and improve consistency between the two Classes.
* Add some codes, returnes directly if the value is not changed.风青山2022-08-231-11/+44
| | | | Avoid executing the following value-changed logics if the value does not really change.
* Clamp Label's `percent_visible` properly between 0 and 1.0Micky2022-08-221-2/+6
| | | | Also applies to RichTextLabel
* Remove Signal connect bindsJuan Linietsky2022-07-291-1/+1
| | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* Merge pull request #62139 from bruvzg/label_font_setttingsRémi Verschelde2022-07-191-18/+47
|\ | | | | Add LabelSettings resource for quick Label theme property override.
| * Add LabelSettings resource for quick Label theme property override.bruvzg2022-07-121-18/+47
| |
* | Use BitField hint for the TextServer enums. Add missing parts for BitField ↵bruvzg2022-07-151-13/+13
|/ | | | support to the GDextension API.
* Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-92/+16
|