summaryrefslogtreecommitdiffstats
path: root/modules/text_server_fb/text_server_fb.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rename `remove()` to `remove_at()` when removing by indexLightning_A2021-11-231-1/+1
|
* Add a minimal template build to CIAaron Franke2021-11-121-0/+2
| | | | Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Modules: Make sure to include modules_enabled.gen.h where neededRémi Verschelde2021-11-121-0/+2
|
* Merge pull request #46721 from bruvzg/custom_word_break_punctRémi Verschelde2021-11-091-9/+45
|\
| * [Text Server] Add support for user defined punctuation list, used for word ↵bruvzg2021-10-011-9/+45
| | | | | | | | breaking.
* | Merge pull request #54372 from bruvzg/text_edit_uiRémi Verschelde2021-11-091-0/+77
|\ \
| * | Add functions for getting name and font style from dynamic and bitmap fonts.bruvzg2021-10-311-0/+77
| | | | | | | | | | | | Add font selection toolbar editor plugin.
* | | Repaired mistyped of 'threshold' on several files.M. Huri2021-10-311-4/+4
|/ /
* | Ignore empty Font resources as theme override.bruvzg2021-10-251-0/+1
| | | | | | | | | | Add range hint to font_size properties. Remove excessive `base_size` Font property.
* | [TextServer] Add texture index, offsets array size and Unicode char validation.bruvzg2021-10-151-1/+10
| |
* | Move static feature set and number system `StringName`s to the singleton.bruvzg2021-10-121-33/+24
|/ | | | | | Remove `hb_` prefix from the custom bitmap font functions to avoid potential conflicts with the HarfBuzz. Cleanup commented debug code. Update numbering system data to CLDR 39.
* Implement TextServer GDExtension interface, remove TextServer GDNative ↵bruvzg2021-10-011-107/+138
| | | | interface.
* Use range iterators for `Map`Lightning_A2021-09-301-89/+89
|
* Rename RID's `getornull()` to `get_or_null()`Hugo Locurcio2021-09-291-114/+114
|
* [Fallback TextServer] Fix char to glyph conversion.bruvzg2021-09-291-30/+9
|
* Fix trim overrun width not being reset.bruvzg2021-09-271-0/+1
|
* TextServer: Fix build with freetype disabledRémi Verschelde2021-09-151-3/+4
| | | | Also remove RTR calls as we don't translate internal error messages.
* [TextServer] Fix HarfBuzz handle init order. Fix MinGW build.bruvzg2021-09-011-3/+3
|
* Makes FontData importable resource.bruvzg2021-08-271-330/+1850
| | | | | | | 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.
* Merge pull request #51178 from Geometror/layout-options-textline-textparagraphRémi Verschelde2021-08-111-83/+50
|\ | | | | Various text layout improvements (TextLine, TextParagraph, Label, TextServer)
| * Various text layout improvements (TextLine, TextParagraph, Label, TextServer)Hendrik Brucker2021-08-111-83/+50
| |
* | [Text Server] Improve object (image/table) inline alignment.bruvzg2021-08-081-111/+147
|/
* Use const references where possible for List range iteratorsRémi Verschelde2021-07-251-1/+1
|
* Use C++ iterators for Lists in many situationsAaron Franke2021-07-231-2/+2
|
* Separate underscore from grapheme punctuation to enable doubleclick and ↵Leonardo Christino2021-07-131-1/+8
| | | | caret jump over snakecase variables in editor
* Improvements to Label's layout optionsHendrik Brucker2021-07-041-0/+155
| | | | | | - Added options to trim the text in case it overruns - Added more autowrap modes - Improved line breaking, which ignores trailing spaces
* [CTL] Improve font fallback order selection.bruvzg2021-06-101-7/+7
|
* [Complex Text Layouts] Provide access to glyph contour points.bruvzg2021-03-311-0/+7
|
* Fixes small typos and grammar correctionAnshul7sp12021-03-121-1/+1
|
* Merge pull request #46045 from bruvzg/text_server_bmp_createRémi Verschelde2021-02-241-0/+33
|\ | | | | [TextServer] Restores bitmap font dynamic construction functions.
| * [Text Server] Restores bitmap font dynamic construction functions.bruvzg2021-02-151-0/+33
| |
* | Make FreeType optional for export templates.bruvzg2021-02-191-6/+10
| |
* | [TextServer] Restore character and space extra spacing support.bruvzg2021-02-151-0/+33
|/
* 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-2/+2
| | | | Those were missed in #44401 or added by later PRs.
* Add word breaks on punctuation characters.bruvzg2020-12-141-0/+7
|
* [Complex Text Layouts] Performance optimizations.bruvzg2020-12-071-14/+28
|
* [Complex Text Layouts] Align glyph offsets and advances to the pixel grid.bruvzg2020-12-061-33/+33
|
* [Complex Text Layouts] Implement TextServer interface. Implement Fallback ↵bruvzg2020-11-261-0/+1362
TextServer.