summaryrefslogtreecommitdiffstats
path: root/graphics/src/text (follow)
Commit message (Expand)AuthorAgeFilesLines
* Simplify `InputMethod` API with only two statesLibravatar Héctor Ramón Jiménez2025-02-121-3/+28
* Introduce `LineEnding` to `editor` and fix inconsistenciesLibravatar Héctor Ramón Jiménez2025-01-281-5/+12
* Fix text wrapping for `rich_text`Libravatar Héctor Ramón Jiménez2025-01-101-0/+2
* Apply wrapping to paragraphsLibravatar Konsl2025-01-071-0/+2
* Remove unnecessary `buffer_mut_from_editor` callLibravatar Héctor Ramón Jiménez2024-09-041-1/+1
* Add `text::Wrapping` supportLibravatar Héctor Ramón Jiménez2024-09-042-12/+22
* Use `for` loop instead of `fold` in `span_bounds`Libravatar Héctor Ramón Jiménez2024-07-281-29/+29
* Add background styling to span / rich textLibravatar Cory Forsstrom2024-07-281-1/+52
* Add `placeholder` support to `text_editor` widgetLibravatar Héctor Ramón Jiménez2024-07-241-0/+7
* Simplify font attributes in `Paragraph::with_spans`Libravatar Héctor Ramón Jiménez2024-07-211-9/+1
* Add `Link` support to `rich_text` widgetLibravatar Héctor Ramón Jiménez2024-07-211-7/+35
* Implement `rich_text` widget and `markdown` exampleLibravatar Héctor Ramón Jiménez2024-07-171-2/+78
* Decouple caching from `Paragraph` APILibravatar Héctor Ramón Jiménez2024-07-171-58/+24
* Update `cosmic-text` and `resvg` (#2416)Libravatar Héctor Ramón2024-07-173-169/+132
* add SelectAll to TextEditorLibravatar PgBiel2024-07-081-0/+21
* Fix `text_editor` always capturing scroll eventsLibravatar Héctor Ramón Jiménez2024-06-171-8/+4
* Fix panic when scrolling a `TextEditor` inside a `scrollable`Libravatar Héctor Ramón Jiménez2024-04-261-4/+8
* Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez2024-04-071-3/+2
* Use generic `Content` in `Text` to avoid reallocation in `fill_text`Libravatar Héctor Ramón Jiménez2024-04-011-2/+2
* Replace `xxhash-rust` with `rustc-hash`Libravatar Héctor Ramón Jiménez2024-03-301-7/+4
* Fix wrapped lines not being considered when measuring `TextEditor`Libravatar Héctor Ramón Jiménez2024-02-071-0/+6
* Avoid division by zero in `grapheme_position`Libravatar Héctor Ramón Jiménez2024-01-111-1/+1
* Fix `grapheme_position` when ligatures are presentLibravatar Héctor Ramón Jiménez2024-01-111-10/+15
* Migrate twox-hash -> xxhash_rust. Switch to Xxh3 for better performance.Libravatar dtzxporter2023-11-111-5/+1
* Fix intra-doc broken linksLibravatar Héctor Ramón Jiménez2023-10-271-1/+1
* Write documentation for the new text APIsLibravatar Héctor Ramón Jiménez2023-10-273-0/+45
* Implement `Scroll` action in `text::editor`Libravatar Héctor Ramón Jiménez2023-09-191-0/+6
* Flesh out the `editor` example a bit moreLibravatar Héctor Ramón Jiménez2023-09-181-1/+7
* Update `version` properly when `FontSystem` changes in `text::editor`Libravatar Héctor Ramón Jiménez2023-09-181-0/+3
* Fix inconsistent `expect` messages in `text::editor`Libravatar Héctor Ramón Jiménez2023-09-181-3/+3
* Shape as needed only in `update` during `layout`Libravatar Héctor Ramón Jiménez2023-09-181-4/+2
* Find correct `last_visible_line` in `Editor::highlight`Libravatar Héctor Ramón Jiménez2023-09-181-5/+21
* Avoid adding unnecessary spans when syntax highlightingLibravatar Héctor Ramón Jiménez2023-09-171-11/+13
* Notify `Highlighter` of topmost line changeLibravatar Héctor Ramón Jiménez2023-09-171-18/+40
* Use `saturating_sub` for `last_visible_line` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-171-2/+3
* Implement basic syntax highlighting with `syntect` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-171-3/+22
* Draft `Highlighter` APILibravatar Héctor Ramón Jiménez2023-09-171-0/+67
* Use fork of `cosmic-text` with some minor fixesLibravatar Héctor Ramón Jiménez2023-09-161-35/+1
* Implement `Copy` and `Paste` actions for `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-161-0/+11
* Implement methods to query the contents of a `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-161-0/+41
* Remove `min_bounds` field in `graphics::text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-17/+0
* Remove `Editor::min_bounds` and use `bounds` insteadLibravatar Héctor Ramón Jiménez2023-09-141-4/+0
* Implement `Action::SelectLine` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-1/+18
* Implement `Action::SelectWord` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-1/+60
* Implement motion selection in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-1/+20
* Handle motions when a selection is present in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-141-23/+47
* Fix `Cursor::Caret` position on lines that wrap on whitespaceLibravatar Héctor Ramón Jiménez2023-09-141-2/+12
* Fix scrolling offset for `Cursor::Selection`Libravatar Héctor Ramón Jiménez2023-09-141-43/+31
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-09-131-9/+18
* Introduce `Motion` concept in `core::text::editor`Libravatar Héctor Ramón Jiménez2023-09-131-24/+82