Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -270/+0 | ||
2023-01-30 | Fix layout translation in `overlay::Group` | 1 | -2/+8 | ||
This bug produced improper positioning of overlays of elements inside a `Scrollable`. | |||||
2023-01-24 | Fix some minor documentation inconsistencies | 1 | -1/+1 | ||
2023-01-17 | Rename method to is_over | 1 | -13/+5 | ||
2023-01-17 | New method to determine if overlay contains cursor | 1 | -0/+17 | ||
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-14 | Introduce `custom` method to `widget::Operation` trait | 1 | -0/+6 | ||
This allows users to write operations for their custom widgets. | |||||
2022-12-22 | Add `Renderer` argument to `operate` | 1 | -2/+4 | ||
2022-11-29 | Get widget operations working w/ overlay | 1 | -2/+2 | ||
2022-11-11 | Add text input operations | 1 | -0/+8 | ||
2022-11-10 | Fix broken documentation links | 1 | -1/+1 | ||
2022-11-09 | Implement `Overlay::operate` for `overlay::element::Map` | 1 | -0/+43 | ||
2022-07-28 | Draft widget operations | 1 | -0/+10 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -2/+6 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-03-29 | Loose lifetime bounds in `pure::Widget` implementations | 1 | -1/+1 | ||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -10/+1 | ||
2022-01-11 | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 1 | -4/+14 | ||
2021-11-29 | Introduce `Shell` type in `iced_native` | 1 | -9/+8 | ||
Widgets now can invalidate the current layout of the application on demand. | |||||
2021-11-29 | Create `iced_lazy` and draft `Component` trait | 1 | -0/+5 | ||
2021-11-05 | Write missing documentation in `iced_native` | 1 | -0/+1 | ||
2021-11-02 | Move `viewport` argument to last position in `mouse_interaction` methods | 1 | -2/+12 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-18 | Introduce `mouse_interaction` method to `Widget` trait | 1 | -1/+12 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -6/+5 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -2/+2 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -6/+6 | ||
2021-02-23 | Remove `viewport` from `Overlay::draw` for now | 1 | -6/+2 | ||
2021-02-15 | feat(native): add Tooltip widget | 1 | -2/+6 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -18/+0 | ||
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 | -4/+8 | ||
2020-07-16 | Remove unnecessary `Rc` in both `Element::map` | 1 | -4/+3 | ||
2020-07-10 | Write documentation for the new `overlay` API | 1 | -15/+41 | ||
2020-07-10 | Rename `overlay::Content` trait to `Overlay` | 1 | -21/+16 | ||
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 | ||