Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -1/+1 | ||
2025-02-12 | Simplify `InputMethod` API with only two states | 1 | -2/+2 | ||
Co-authored-by: rhysd <lin90162@yahoo.co.jp> Co-authored-by: KENZ <KENZ.gelsoft@gmail.com> | |||||
2025-02-07 | Fix scrolling offset of preedit window | 1 | -1/+1 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -4/+4 | ||
2025-02-03 | Fix `InputMethod` conflicts with multiple scrollables | 1 | -4/+8 | ||
2025-02-03 | Introduce `Levitating` variant for `mouse::Cursor` | 1 | -2/+4 | ||
2025-02-02 | Refactor and simplify `input_method` API | 1 | -13/+5 | ||
2025-02-02 | Draft `input_method` support | 1 | -2/+17 | ||
2025-02-01 | Add `horizontal` helper to `scrollable` | 1 | -0/+5 | ||
2025-02-01 | Revert automatic horizontal scroll in `scrollable` | 1 | -7/+1 | ||
2025-02-01 | Fix `viewport` when using nested `scrollable`s | 1 | -6/+6 | ||
2025-01-30 | Use `Into<Id>` for `scrollable::Id` arguments | 1 | -8/+19 | ||
2025-01-06 | Rename `*_disabled` to `is_*_disabled` in `scrollable` | 1 | -8/+8 | ||
2025-01-06 | Simplify `scrollable` disabled styling calculation | 1 | -24/+11 | ||
2025-01-06 | Migrate scrollbar disabled style status to iced 0.13. | 1 | -14/+65 | ||
Feel free to change the 'name' of it. I originally used 'disabled' to signal that it's not usable, but still visible. 'Overflowing' may be a better term. | |||||
2024-12-10 | Draft `iced_test` crate and test `todos` example | 1 | -1/+1 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -2/+2 | ||
2024-11-11 | Fix docs of `Scrollable::with_direction` and `Scrollable::direction` | 1 | -2/+2 | ||
2024-11-05 | Rename `Widget::on_event` to `update` | 1 | -2/+2 | ||
2024-11-05 | Replace `event::Status` in `Widget::on_event` with `Shell::capture_event` | 1 | -35/+27 | ||
2024-11-05 | Split `Shell::request_redraw` into two different methods | 1 | -1/+1 | ||
2024-11-05 | Implement `reactive-rendering` for `scrollable` | 1 | -294/+331 | ||
2024-10-14 | Add `PartialEq` derives for widget styles | 1 | -3/+3 | ||
2024-09-19 | Show `scrollable` doc example in multiple places | 1 | -1/+41 | ||
2024-09-18 | Fix `scrollable` transactions when `on_scroll` is not set | 1 | -8/+10 | ||
2024-09-18 | Fix scrolling direction with trackpad in `scrollable` | 1 | -1/+1 | ||
2024-09-10 | Notify all `scrollable::Viewport` changes | 1 | -14/+44 | ||
Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | |||||
2024-09-10 | Implement `scroll_by` operation for `scrollable` | 1 | -31/+59 | ||
`scroll_by` allows scrolling an absolute offset that is applied to the current scrolling position. | |||||
2024-09-08 | Enable horizontal scrolling without shift modifier | 1 | -6/+20 | ||
Fixes #2359. | |||||
2024-09-08 | Implement mouse wheel transactions for `scrollable` | 1 | -9/+34 | ||
See https://wiki.mozilla.org/Gecko:Mouse_Wheel_Scrolling#Mouse_wheel_transaction Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com> | |||||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -1/+1 | ||
2024-07-30 | Reintroduce `Scrollable::with_direction` | 1 | -1/+9 | ||
2024-07-18 | Adapt `scrollable` sizing strategy to contents | 1 | -5/+13 | ||
2024-07-16 | Fix `Scrollable::spacing` not embedding the `Scrollbar` | 1 | -37/+22 | ||
2024-07-12 | Rename `embed_*` in `Scrollable` to simply `spacing` | 1 | -43/+56 | ||
2024-07-12 | Improve `Border` ergonomics | 1 | -4/+5 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -27/+48 | ||
2024-07-11 | Fix broken doc links in `widget::scrollable` | 1 | -4/+4 | ||
2024-07-11 | Add support for embedded scrollbars for `scrollable` | 1 | -163/+248 | ||
Co-authored-by: dtzxporter <dtzxporter@users.noreply.github.com> | |||||
2024-07-11 | Add `align_x` and `align_y` helpers to `Scrollable` | 1 | -0/+26 | ||
2024-07-05 | Hide internal `Task` constructors | 1 | -3/+4 | ||
2024-07-02 | doc: remove extraneous comment | 1 | -1/+0 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -14/+10 | ||
2024-04-26 | Fix `Shift` scrolling for `scrollable` on macOS | 1 | -1/+3 | ||
Apparently, macOS inverts the scrolling axes automatically now. Was this a thing before, or did an update just break user space? | |||||
2024-04-26 | Capture scrollbar events in a `scrollable` before content events | 1 | -142/+142 | ||
2024-04-25 | Introduce `opaque` widget helper | 1 | -1/+1 | ||
2024-04-23 | Don't consume unused scroll events (#2397) | 1 | -39/+45 | ||
* Initial Commit * Update scrollable.rs * Use `let _ = ` instead of `_ =` for consistency --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | |||||
2024-04-23 | Fix clip bounds with nested `scrollable` widgets | 1 | -4/+8 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -3/+3 | ||
2024-03-24 | Use `Catalog` approach for all widgets | 1 | -66/+65 | ||