Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -1/+1 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -4/+4 | ||
2025-01-22 | derive partialeq and eq for mouse::click::Kind | 1 | -1/+1 | ||
2024-12-02 | Fix new `clippy` lints | 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 | -94/+62 | ||
2024-09-24 | Add support for double click event to MouseArea (#2602) | 1 | -4/+48 | ||
* feat(widget/mouse_area): add double_click event * Run `cargo fmt` --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | |||||
2024-09-19 | Fix `mouse_area` not notifying of mouse move events | 1 | -1/+1 | ||
2024-09-10 | Simplify signatures of `on_move` and `on_scroll` for `mouse_area` | 1 | -10/+7 | ||
2024-09-10 | Use `cursor` changes to notify mouse events in `mouse_area` | 1 | -5/+10 | ||
Fixes #2433. | |||||
2024-09-10 | Add `on_scroll` handler to `mouse_area` widget | 1 | -3/+22 | ||
2024-08-08 | Introduce `black_box` and `chain` in `widget::operation` | 1 | -1/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -1/+1 | ||
2024-04-25 | Introduce `opaque` widget helper | 1 | -1/+1 | ||
2024-02-07 | Shorten properties in `MouseArea` | 1 | -20/+18 | ||
2024-02-07 | Shorten some `MouseArea` methods | 1 | -7/+4 | ||
2024-02-07 | Override `MouseArea` interaction only when contents are idle | 1 | -11/+12 | ||
2024-02-07 | Add `Interaction` overriding to `MouseArea` | 1 | -0/+20 | ||
Add the ability to use a custom `iced::mouse::Interaction` for a `iced::widget::MouseArea`. | |||||
2024-02-03 | Use `Fn` instead of `FnMut` in `MouseArea` | 1 | -39/+31 | ||
... and simplify event logic a bit. | |||||
2024-02-03 | Fix lints | 1 | -4/+4 | ||
2024-02-03 | Add mouse move events to `MouseArea` | 1 | -2/+73 | ||
2024-02-01 | Remove `position` from `overlay::Element` | 1 | -1/+3 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -15/+23 | ||
2024-01-10 | Replace `width` and `height` with `Widget::size` | 1 | -7/+3 | ||
2023-09-10 | Fix `Widget::layout` implementation of `MouseArea` | 1 | -1/+3 | ||
2023-08-30 | Make `widget::Tree` mutable in `Widget::layout` | 1 | -1/+1 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -1/+2 | ||
2023-07-15 | Add viewport to Widget::on_event | 1 | -0/+2 | ||
2023-06-08 | Take `Rectangle` by value in `Cursor` API | 1 | -1/+1 | ||
2023-06-08 | Implement basic cursor availability | 1 | -10/+10 | ||