summaryrefslogtreecommitdiffstats
path: root/widget/src/text_editor.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Create `jump` and `macos_command` methods in `keyboard::Modifiers`Libravatar Héctor Ramón Jiménez2024-05-311-31/+2
* Keep unary `motion` function in `text_editor`Libravatar Héctor Ramón Jiménez2024-05-311-18/+18
* Add Command + ArrowLeft/Right input behavior for macosLibravatar BradySimon2024-05-311-6/+31
* Fix out of bounds caret in `TextEditor` in some circumstancesLibravatar Héctor Ramón Jiménez2024-04-261-13/+17
* Allow checking whether a TextEditor is focusedLibravatar mtkennerly2024-04-151-1/+10
* Expose line_height & text_size fields for the text_editor widgetLibravatar Bingus2024-03-291-0/+15
* Use `Catalog` approach for all widgetsLibravatar Héctor Ramón Jiménez2024-03-241-39/+55
* Use closures for `TextEditor::style`Libravatar Héctor Ramón Jiménez2024-03-121-11/+14
* Use integer coordinates for input caretLibravatar Héctor Ramón Jiménez2024-03-101-1/+1
* Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez2024-03-071-17/+14
* Fix broken links in documentationLibravatar Héctor Ramón Jiménez2024-03-071-6/+6
* Move `Theme` type to `iced_core`Libravatar Héctor Ramón Jiménez2024-03-071-2/+1
* Use `Style` struct pattern instead of trait for all widgetsLibravatar Héctor Ramón Jiménez2024-03-061-12/+24
* Simplify theming for `TextEditor` widgetLibravatar Héctor Ramón Jiménez2024-03-061-19/+104
* Prioritize `TextInput` and `TextEditor` commands over text insertionLibravatar Héctor Ramón Jiménez2024-02-281-30/+32
* Use `find(...)` instead of `filter(...).next()`Libravatar Héctor Ramón Jiménez2024-02-211-2/+1
* Prioritize text insertion in `TextInput` and `TextEditor`Libravatar Héctor Ramón Jiménez2024-02-211-7/+9
* Introduce `Kind` in `core::clipboard`Libravatar Héctor Ramón Jiménez2024-02-131-4/+7
* Fix wrapped lines not being considered when measuring `TextEditor`Libravatar Héctor Ramón Jiménez2024-02-071-22/+23
* feat: text-editor can shrink to contentLibravatar Dworv YT2024-02-071-1/+22
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2024-02-031-3/+4
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2024-02-031-1/+3
* Improve `TextEditor` slow scrolling behavior with touchpads.Libravatar Radovan Blažek2024-02-031-14/+17
* Add cut functionality to text editorLibravatar jhannyj2024-01-251-0/+12
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-26/+28
* Introduce `Border` struct analogous to `Shadow`Libravatar Héctor Ramón Jiménez2024-01-201-3/+1
* Use `Default` implementation of `renderer::Quad`Libravatar Héctor Ramón Jiménez2024-01-201-11/+4
* feat: quad shadowsLibravatar Nick Senger2024-01-201-0/+3
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-161-26/+41
* Merge branch 'master' into update-winitLibravatar Héctor Ramón Jiménez2024-01-161-8/+7
|\
| * Replace `width` and `height` with `Widget::size`Libravatar Héctor Ramón Jiménez2024-01-101-7/+6
| * Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-1/+1
* | Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez2023-12-151-4/+8
|/
* Added the ability to change the style of a TextEditorLibravatar Bingus2023-12-061-0/+9
* Clip text to `viewport` bounds instead of layout boundsLibravatar Héctor Ramón Jiménez2023-12-011-1/+2
* Improve `TextEditor` scroll interaction with a touchpadLibravatar Héctor Ramón Jiménez2023-10-271-1/+1
* Implement missing debug implementations in `iced_widget`Libravatar Héctor Ramón Jiménez2023-10-271-0/+17
* Write documentation for the new text APIsLibravatar Héctor Ramón Jiménez2023-10-271-4/+32
* Add `text` helper method for `text_editor::Content`Libravatar Héctor Ramón Jiménez2023-09-221-0/+21
* Fix selection clipping out of bounds in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-221-24/+33
* Fix vertical scroll for `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-211-2/+3
* Scroll at least one line on macOS in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-211-1/+5
* Round `ScrollDelta::Lines` in `TextEditor`Libravatar Héctor Ramón Jiménez2023-09-211-1/+1
* Scroll `TextEditor` only if `cursor.is_over(bounds)`Libravatar Héctor Ramón Jiménez2023-09-201-1/+3
* Introduce new `iced_highlighter` subcrateLibravatar Héctor Ramón Jiménez2023-09-191-5/+23
* Implement `Scroll` action in `text::editor`Libravatar Héctor Ramón Jiménez2023-09-191-0/+12
* Flesh out the `editor` example a bit moreLibravatar Héctor Ramón Jiménez2023-09-181-0/+4
* Implement theme selector in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-181-1/+12
* Notify `Highlighter` of topmost line changeLibravatar Héctor Ramón Jiménez2023-09-171-11/+14
* Implement basic syntax highlighting with `syntect` in `editor` exampleLibravatar Héctor Ramón Jiménez2023-09-171-0/+18