Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -583/+0 | ||
2023-01-14 | Introduce `custom` method to `widget::Operation` trait | 1 | -0/+5 | ||
This allows users to write operations for their custom widgets. | |||||
2022-12-22 | Add `Renderer` argument to `operate` | 1 | -3/+11 | ||
2022-11-29 | Allow &mut self in overlay | 1 | -2/+2 | ||
2022-11-11 | Add text input operations | 1 | -0/+8 | ||
2022-11-09 | Implement `Operation::scrollable` for `element::Map` | 1 | -0/+8 | ||
2022-11-03 | non uniform border radius for quads | 1 | -1/+1 | ||
2022-09-21 | Take `Cow` in `Text::new` | 1 | -1/+1 | ||
2022-08-26 | Reintroduce `Element::explain` | 1 | -9/+181 | ||
2022-08-04 | Implement `scrollable::snap_to` operation | 1 | -1/+1 | ||
2022-07-28 | Implement `Widget::operate` for `TextInput` | 1 | -0/+37 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -244/+68 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -4/+20 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
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 | -10/+27 | ||
2021-11-29 | Introduce `Shell` type in `iced_native` | 1 | -11/+10 | ||
Widgets now can invalidate the current layout of the application on demand. | |||||
2021-11-04 | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 1 | -9/+11 | ||
2021-11-02 | Move `viewport` argument to last position in `mouse_interaction` methods | 1 | -6/+6 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -2/+3 | ||
2021-10-28 | Implement `Widget::draw` for `element::Explain` | 1 | -5/+33 | ||
2021-10-18 | Introduce `mouse_interaction` method to `Widget` trait | 1 | -0/+32 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -5/+6 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -18/+10 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -9/+9 | ||
2021-02-23 | Change `Tooltip` to support `Text` only for now | 1 | -11/+3 | ||
2021-02-15 | feat(native): add Tooltip widget | 1 | -3/+11 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -24/+2 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-12 | Make `Widget::on_event` return an `event::Status` | 1 | -6/+9 | ||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -4/+9 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-07-16 | Remove unnecessary `Rc` in both `Element::map` | 1 | -4/+3 | ||
2020-07-10 | Write documentation for the new `overlay` API | 1 | -1/+4 | ||
2020-07-10 | Remove unnecessary lifetime in `Widget` trait | 1 | -6/+6 | ||
2020-07-10 | Rename `overlay::Content` trait to `Overlay` | 1 | -4/+4 | ||
The `Overlay` struct is now `overlay::Element`. | |||||
2020-07-08 | Draft `Widget::overlay` idempotency | 1 | -6/+8 | ||
2020-07-08 | Draft `ComboBox` and `Menu` layer | 1 | -3/+22 | ||
2020-07-08 | Introduce `Layer` trait | 1 | -2/+3 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -7/+14 | ||
2020-04-23 | Make `Font` an associated type of `text::Renderer` | 1 | -1/+1 | ||
2020-04-18 | Implement and expose `Element::on_event` | 1 | -0/+22 | ||
2020-03-04 | Draft `Panes` widget and `panes` example | 1 | -1/+1 | ||
2020-02-10 | Make `Element::hash_layout` public. | 1 | -1/+4 | ||
2020-01-13 | Remove `Clone` bound for `Element::map` | 1 | -4/+2 | ||
2020-01-10 | Move `Debugger` and `Windowed` to a better location | 1 | -4/+3 | ||
We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`. | |||||
2019-12-30 | Add `Renderer::Defaults` and style inheritance | 1 | -2/+8 | ||
2019-12-18 | Allow clipboard access in `Widget::on_event` | 1 | -1/+6 | ||
2019-11-22 | Uncomment missing debug implementations rule | 1 | -0/+1 | ||
2019-11-22 | Write docs for `iced` and `iced_native` | 1 | -25/+39 | ||
2019-11-21 | Move widgets from `core` to `native` and `web` | 1 | -56/+1 | ||
Also made fields private and improved `Renderer` traits. | |||||
2019-11-16 | Make `width` and `height` required methods | 1 | -0/+16 | ||
2019-11-11 | Fix doc comments and remove `Align` from `tour` | 1 | -3/+7 | ||