summaryrefslogtreecommitdiffstats
path: root/graphics (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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-172-1/+74
|
* Remove unnecessary `into_iter` call in `graphics::text`Libravatar Héctor Ramón Jiménez2023-09-161-5/+4
|
* 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-142-1/+61
|
* 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
|
* Implement `Cursor::Selection` calculation in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-131-3/+115
|
* Fix subline positioning in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-121-1/+1
|
* Fix cursor offset with `Affinity::After` at the end of lines in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-121-1/+4
|
* Return `Cursor::Caret` if selection matches cursor position in `Editor::cursor`Libravatar Héctor Ramón Jiménez2023-09-121-5/+8
|
* Add `Enter` variant to `Action` in `text::Editor`Libravatar Héctor Ramón Jiménez2023-09-121-0/+1
|
* Draft `Editor` API and `TextEditor` widgetLibravatar Héctor Ramón Jiménez2023-09-125-0/+360
|
* Make `FontSystem` global and simplify `Paragraph` APILibravatar Héctor Ramón Jiménez2023-09-115-150/+95
|
* Fix (more) broken intradoc linksLibravatar Héctor Ramón Jiménez2023-09-102-4/+4
| | | | Good thing I just set up CI earlier for this :sweat_smile:
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-109-65/+58
|\
| * Fix outstanding broken intradoc linksLibravatar Héctor Ramón Jiménez2023-09-094-9/+8
| |
| * Deny `broken_intradoc_links` and verify documentation in CILibravatar Héctor Ramón Jiménez2023-09-091-2/+3
| |
| * Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-093-5/+5
| |
| * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-35/+27
| | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* | Remove unused `unicode-segmentation` dependency from `iced_graphics`Libravatar Héctor Ramón Jiménez2023-09-091-1/+0
| |
* | Count grapheme clusters in `Paragraph::grapheme_position`Libravatar Héctor Ramón Jiménez2023-09-091-2/+21
| |
* | Invalidate existing paragraphs when new fonts are loadedLibravatar Héctor Ramón Jiménez2023-09-093-13/+69
| |
* | Introduce `keyed::Column` widgetLibravatar Héctor Ramón Jiménez2023-09-041-0/+2
| |
* | Fix `Default` implementation for `Paragraph`Libravatar Héctor Ramón Jiménez2023-09-011-17/+23
| |
* | Replace `MaybeUninit` with `Option` in `paragraph`Libravatar Héctor Ramón Jiménez2023-09-011-44/+28
| |
* | Use `Arc::try_unwrap` in `Paragraph`Libravatar Héctor Ramón Jiménez2023-09-011-59/+95
| | | | | | | | | | | | We use `MaybeUninit` here instead of `Option` to save some cycles, but I will most likely change it for an `Option` since unsafe code is quite scary.
* | Remove `Clone` implementation for `Paragraph`Libravatar Héctor Ramón Jiménez2023-09-011-1/+1
| |
* | Use `min_bounds` for cached textLibravatar Héctor Ramón Jiménez2023-08-301-4/+13
| |
* | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-3011-137/+596
|/
* Update arc.rs with improved documentationLibravatar Kxie2023-08-151-6/+6
| | | added units and improved description to field comments of Arc and Ellipse structs.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-281-2/+2
|
* Trim text measurements only before `layout`Libravatar Héctor Ramón Jiménez2023-06-292-0/+9
|
* Revert "Remove `layout` method from `core::Renderer` trait"Libravatar Héctor Ramón Jiménez2023-06-291-1/+12
| | | | This reverts commit 2128472c2a8afcb59927712497c4f613612e9dcc.
* Write missing docs in `iced_graphics` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-296-3/+11
|
* Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez2023-06-295-72/+80
|
* Remove `layout` method from `core::Renderer` traitLibravatar Héctor Ramón Jiménez2023-06-291-12/+1
|
* Introduce custom backend-specific primitivesLibravatar Héctor Ramón Jiménez2023-06-297-152/+129
|