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