Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Simplify `InputMethod` API with only two states | 2025-02-12 | 1 | -6/+2 | |
| | | | | | Co-authored-by: rhysd <lin90162@yahoo.co.jp> Co-authored-by: KENZ <KENZ.gelsoft@gmail.com> | ||||
* | Use default size for empty pre-edits | 2025-02-12 | 1 | -5/+2 | |
| | |||||
* | Do not pass text size to `Preedit::new` | 2025-02-06 | 1 | -1/+3 | |
| | |||||
* | Set correct text size for text in preedit window | 2025-02-06 | 1 | -4/+8 | |
| | |||||
* | Take `Event` by reference in `Widget::update` | 2025-02-04 | 1 | -13/+14 | |
| | |||||
* | Handle pre-edits and commits only if `text_editor` is focused | 2025-02-03 | 1 | -9/+10 | |
| | |||||
* | Request redraws on `InputMethod` events | 2025-02-03 | 1 | -0/+4 | |
| | |||||
* | Implement basic IME selection in `Preedit` overlay | 2025-02-03 | 1 | -8/+19 | |
| | |||||
* | Track pre-edits separately from focus in text inputs | 2025-02-03 | 1 | -9/+6 | |
| | |||||
* | Refactor and simplify `input_method` API | 2025-02-02 | 1 | -53/+80 | |
| | |||||
* | Run `cargo fmt` and fix lints | 2025-02-02 | 1 | -4/+5 | |
| | |||||
* | Draft `input_method` support | 2025-02-02 | 1 | -3/+66 | |
| | |||||
* | Add `min_height` and `max_height` to `text_editor` | 2025-01-30 | 1 | -4/+26 | |
| | |||||
* | Avoid capturing mouse press when `text_editor` is unfocused | 2025-01-30 | 1 | -2/+4 | |
| | |||||
* | Introduce `LineEnding` to `editor` and fix inconsistencies | 2025-01-28 | 1 | -52/+31 | |
| | |||||
* | Draft `iced_test` crate and test `todos` example | 2024-12-10 | 1 | -2/+2 | |
| | |||||
* | Fix new `clippy` lints | 2024-12-02 | 1 | -2/+2 | |
| | |||||
* | Fix `text_editor` capturing mouse release events | 2024-11-05 | 1 | -2/+4 | |
| | |||||
* | Implement `reactive-rendering` for `text_editor` | 2024-11-05 | 1 | -147/+170 | |
| | |||||
* | Rename `Widget::on_event` to `update` | 2024-11-05 | 1 | -1/+1 | |
| | |||||
* | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 2024-11-05 | 1 | -7/+6 | |
| | |||||
* | Split `Shell::request_redraw` into two different methods | 2024-11-05 | 1 | -3/+3 | |
| | |||||
* | Merge pull request #2632 from leo030303/fix_delete_key_bug | 2024-10-14 | 1 | -1/+3 | |
|\ | | | | | Fixed bug where delete key wasn't working in the text editor | ||||
| * | Fix `Binding::Delete` not triggering in `text_editor` | 2024-10-14 | 1 | -1/+3 | |
| | | |||||
* | | Add `PartialEq` derives for widget styles | 2024-10-14 | 1 | -1/+1 | |
|/ | |||||
* | Merge pull request #2586 from lufte/master | 2024-09-19 | 1 | -2/+2 | |
|\ | | | | | Set the text color determined by the style function | ||||
| * | Set the text color determined by the style function | 2024-09-18 | 1 | -2/+2 | |
| | | | | | | | | Fixes: https://github.com/iced-rs/iced/issues/2557 | ||||
* | | Show `text_editor` example in multiple places | 2024-09-19 | 1 | -1/+65 | |
|/ | |||||
* | Fix priority of `Binding::Delete` in `text_editor` | 2024-09-13 | 1 | -1/+3 | |
| | | | | Co-authored-by: Trevor Campbell <trevor@shartrec.com> | ||||
* | Set `Limits::width` in `TextEditor` layout | 2024-09-13 | 1 | -1/+1 | |
| | |||||
* | Take `Into<Pixels>` in `TextEditor::width` | 2024-09-13 | 1 | -2/+2 | |
| | | | | Since a `Shrink` width would not make sense. | ||||
* | feat: add width setter | 2024-09-13 | 1 | -0/+6 | |
| | |||||
* | Add `mouse::Button` to `mouse::Click` | 2024-09-09 | 1 | -0/+1 | |
| | |||||
* | Add `text::Wrapping` support | 2024-09-04 | 1 | -1/+12 | |
| | | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | ||||
* | Use `clipped_cursor` directly in `text_editor` | 2024-08-12 | 1 | -6/+1 | |
| | |||||
* | Merge pull request #2536 from meithecatte/editor-clipping | 2024-08-12 | 1 | -20/+13 | |
|\ | | | | | text_editor: Avoid rendering text outside the border | ||||
| * | Fix clipping area of `text_editor` placeholder | 2024-08-12 | 1 | -1/+1 | |
| | | |||||
| * | Remove cursor snapping hack in `text_editor` | 2024-08-12 | 1 | -1/+1 | |
| | | | | | | | | | | The `quad` shader now properly takes care of snapping lines to the pixel grid. | ||||
| * | Make `Padding` affect `text_editor` clipping | 2024-08-12 | 1 | -17/+10 | |
| | | |||||
| * | text_editor: Avoid rendering text outside the border | 2024-08-03 | 1 | -3/+3 | |
| | | | | | | | | | | If the height could fit slightly less than an extra line, said line would protrude beyond the border of the text editor. | ||||
* | | Introduce `black_box` and `chain` in `widget::operation` | 2024-08-08 | 1 | -1/+1 | |
|/ | |||||
* | Simplify `focus` method in `text_editor` | 2024-07-29 | 1 | -7/+1 | |
| | |||||
* | Implement blinking cursor for `text_editor` | 2024-07-29 | 1 | -13/+90 | |
| | |||||
* | Fix unused `core` import in `text_editor` module | 2024-07-29 | 1 | -2/+2 | |
| | |||||
* | Simplify `highlight` method for `text_editor` widget | 2024-07-28 | 1 | -2/+21 | |
| | |||||
* | Reduce `KeyPress` duplication in `text_editor` | 2024-07-26 | 1 | -12/+9 | |
| | |||||
* | Implement custom key binding support for `text_editor` | 2024-07-26 | 1 | -118/+272 | |
| | |||||
* | Fix broken doc link in `text_editor` | 2024-07-24 | 1 | -1/+1 | |
| | |||||
* | Add `placeholder` support to `text_editor` widget | 2024-07-24 | 1 | -9/+53 | |
| | |||||
* | Flesh out the `markdown` example a bit more | 2024-07-18 | 1 | -0/+29 | |
| |