Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -125/+0 | ||
2023-01-24 | Fix some minor documentation inconsistencies | 1 | -1/+4 | ||
2023-01-17 | Rename method to is_over | 1 | -6/+2 | ||
2023-01-17 | New method to determine if overlay contains cursor | 1 | -0/+9 | ||
This is needed for "container" overlay's such as `Group` which should only consider it's childrens layouts and not it's own when determining if the cursor is captured by the overlay. | |||||
2023-01-17 | Use group overlay for containers w/ children | 1 | -3/+5 | ||
2023-01-17 | Add group overlay element | 1 | -0/+2 | ||
2022-12-22 | Add `Renderer` argument to `operate` | 1 | -0/+1 | ||
2022-11-29 | Get widget operations working w/ overlay | 1 | -1/+1 | ||
2022-11-29 | Allow &mut self in overlay | 1 | -3/+3 | ||
2022-11-10 | Fix broken documentation links | 1 | -24/+2 | ||
2022-07-28 | Draft widget operations | 1 | -0/+9 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -0/+46 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -0/+1 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-04-30 | Fix broken intra-doc links in documentation | 1 | -1/+1 | ||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -14/+1 | ||
2022-01-11 | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 1 | -0/+1 | ||
2021-11-29 | Introduce `Shell` type in `iced_native` | 1 | -2/+2 | ||
Widgets now can invalidate the current layout of the application on demand. | |||||
2021-11-02 | Move `viewport` argument to last position in `mouse_interaction` methods | 1 | -1/+1 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-18 | Introduce `mouse_interaction` method to `Widget` trait | 1 | -1/+14 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -1/+2 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -1/+1 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -2/+2 | ||
2021-02-23 | Remove `viewport` from `Overlay::draw` for now | 1 | -2/+0 | ||
2021-02-15 | feat(native): add Tooltip widget | 1 | -0/+2 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -13/+2 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-12 | Make `Overlay::on_event` return `event::Status` | 1 | -2/+5 | ||
2020-07-10 | Write documentation for the new `overlay` API | 1 | -0/+43 | ||
2020-07-10 | Rename `overlay::Content` trait to `Overlay` | 1 | -126/+17 | ||
The `Overlay` struct is now `overlay::Element`. | |||||
2020-07-08 | Split `Menu::new` into multiple builder methods | 1 | -1/+1 | ||
2020-07-08 | Rename `Layer` to `overlay::Content` | 1 | -19/+26 | ||
2020-07-08 | Implement `Overlay::translate` | 1 | -1/+8 | ||
2020-07-08 | Draft `ComboBox` and `Menu` layer | 1 | -6/+94 | ||
2020-07-08 | Introduce `Layer` trait | 1 | -11/+26 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -0/+33 | ||