Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Add `is_focused` function that produces an `Operation` to get the focused ↵ | 1 | -0/+5 | ||
state of a `focusable` by ID. Add `is_focused` function that produces a `Task` to get the focused state of a `text_input` by ID. | |||||
2025-02-22 | Add `weakest` and `strongest` to `Background` palette | 1 | -2/+2 | ||
... and tweak background shade generation logic. | |||||
2025-02-21 | Run `cargo fmt` | 1 | -1/+1 | ||
2025-02-12 | Fix `request_input_method` call in `text_input` | 1 | -15/+16 | ||
2025-02-12 | Simplify `InputMethod` API with only two states | 1 | -16/+12 | ||
Co-authored-by: rhysd <lin90162@yahoo.co.jp> Co-authored-by: KENZ <KENZ.gelsoft@gmail.com> | |||||
2025-02-12 | Fix unneeded re-shaping during layout on `text_input` edit | 1 | -1/+1 | ||
2025-02-12 | Use default size for empty pre-edits | 1 | -7/+2 | ||
2025-02-06 | Do not pass text size to `Preedit::new` | 1 | -2/+7 | ||
2025-02-06 | Set correct text size for text in preedit window | 1 | -1/+2 | ||
2025-02-05 | Remove the placeholder text when IME is activated in text input | 1 | -1/+7 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -1/+1 | ||
2025-02-03 | Request redraws on `InputMethod` events | 1 | -1/+5 | ||
2025-02-03 | Implement basic IME selection in `Preedit` overlay | 1 | -5/+8 | ||
2025-02-03 | Clamp pre-edit inside viewport bounds | 1 | -3/+2 | ||
2025-02-03 | Track pre-edits separately from focus in text inputs | 1 | -12/+7 | ||
2025-02-02 | Refactor and simplify `input_method` API | 1 | -65/+83 | ||
2025-02-02 | Run `cargo fmt` and fix lints | 1 | -15/+10 | ||
2025-02-02 | Draft `input_method` support | 1 | -2/+93 | ||
2024-12-10 | Draft `iced_test` crate and test `todos` example | 1 | -3/+12 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -2/+2 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -1/+1 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -35/+31 | ||
2024-11-05 | Split `Shell::request_redraw` into two different methods | 1 | -33/+17 | ||
2024-11-05 | Implement `reactive-rendering` for `text_input` | 1 | -57/+166 | ||
... and fix the redraw queue logic in `iced_winit`. | |||||
2024-10-14 | Add `PartialEq` derives for widget styles | 1 | -1/+1 | ||
2024-09-19 | Show `text_input` doc example in multiple places | 1 | -12/+52 | ||
2024-09-18 | Implement some `From` traits for `text_input::Id` | 1 | -12/+27 | ||
2024-09-09 | Add `mouse::Button` to `mouse::Click` | 1 | -2/+5 | ||
2024-09-07 | Simplify type signature of `TextInput` methods | 1 | -21/+11 | ||
2024-09-07 | Add `*_maybe` helper methods for `TextInput` | 1 | -0/+39 | ||
2024-09-04 | Add `text::Wrapping` support | 1 | -0/+3 | ||
Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | |||||
2024-09-04 | Allow interactions on disabled `text_input` | 1 | -19/+28 | ||
Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | |||||
2024-08-24 | Implement `align_x` for `TextInput` | 1 | -10/+69 | ||
Co-authored-by: Shan <shankern@protonmail.com> | |||||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -1/+1 | ||
2024-07-29 | Implement blinking cursor for `text_editor` | 1 | -15/+0 | ||
2024-07-17 | Decouple caching from `Paragraph` API | 1 | -15/+17 | ||
2024-07-05 | Hide internal `Task` constructors | 1 | -6/+7 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -20/+23 | ||
2024-06-10 | Introduce `window::Id` to `Event` subscriptions | 1 | -3/+3 | ||
And remove `window::Id` from `Event` altogether. | |||||
2024-05-31 | Create `jump` and `macos_command` methods in `keyboard::Modifiers` | 1 | -39/+6 | ||
2024-05-31 | Add Command + ArrowLeft/Right input behavior for macos | 1 | -20/+61 | ||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -4/+5 | ||
2024-04-02 | Check is_secure before a copy/cut from TextInput (#2366) | 1 | -2/+4 | ||
* Check is_secure before copy/cut on text_input * run cargo fmt | |||||
2024-04-01 | Use generic `Content` in `Text` to avoid reallocation in `fill_text` | 1 | -2/+4 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -50/+56 | ||
2024-03-12 | Use closures for `TextInput::style` | 1 | -13/+16 | ||
2024-03-10 | Use integer coordinates for input caret | 1 | -1/+2 | ||
This should stop the caret from changing thickness in screens with an integral scale factor. | |||||
2024-03-07 | Leverage `DefaultStyle` traits instead of `Default` | 1 | -17/+14 | ||
2024-03-07 | Move `Theme` type to `iced_core` | 1 | -4/+2 | ||
2024-03-06 | Use `Style` struct pattern instead of trait for all widgets | 1 | -17/+36 | ||