Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-02-11 | Rename `iced_virtual` to `iced_pure` | 1 | -220/+0 | ||
`virtual` is a reserved keyword in Rust :grimacing: | |||||
2022-02-10 | Implement `Into<Element>` for `&'static str` in `iced_virtual` | 1 | -0/+11 | ||
2022-02-10 | Draft virtual `Button`, `Column`, and `Text` | 1 | -99/+66 | ||
... as well as a very naive diffing strategy! | |||||
2022-01-11 | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 1 | -1/+6 | ||
2021-11-29 | Introduce `Shell` type in `iced_native` | 1 | -3/+3 | ||
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 | -2/+2 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-18 | Implement `Widget::mouse_interaction` for `Row` | 1 | -0/+21 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -2/+3 | ||
2021-10-14 | Implement `Widget::draw` for `Row` | 1 | -8/+3 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -33/+11 | ||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -4/+4 | ||
2021-09-20 | Introduce and use `CrossAlign` enum for `Column` and `Row` | 1 | -4/+4 | ||
2021-06-01 | Replace ignored doc-tests with additional documentation for `Padding` | 1 | -5/+0 | ||
2021-06-01 | Add support for asymmetrical padding | 1 | -7/+13 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -3/+3 | ||
2021-02-23 | Change `Tooltip` to support `Text` only for now | 1 | -9/+1 | ||
2021-02-15 | feat(native): add Tooltip widget | 1 | -1/+9 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -24/+1 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-12 | Implement event capturing for `Row` | 1 | -8/+8 | ||
2020-11-12 | Make `Widget::on_event` return an `event::Status` | 1 | -5/+7 | ||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -5/+14 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-10-17 | Remove entirely | 1 | -5/+0 | ||
2020-10-13 | Fix typo in Row's and Column's hash_layout | 1 | -1/+1 | ||
2020-10-02 | Document better | 1 | -1/+2 | ||
2020-07-10 | Remove unnecessary lifetime in `Widget` trait | 1 | -1/+1 | ||
2020-07-10 | Rename `overlay::Content` trait to `Overlay` | 1 | -2/+2 | ||
The `Overlay` struct is now `overlay::Element`. | |||||
2020-07-08 | Draft `Widget::overlay` idempotency | 1 | -1/+1 | ||
2020-07-08 | Implement `Widget::overlay` for `Row` | 1 | -2/+13 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -1/+1 | ||
2020-04-12 | #288 Renamed XXXWidget to Marker | 1 | -2/+2 | ||
2020-04-12 | Remove unnecessary 'static lifetime on Renderer | 1 | -3/+4 | ||
2020-03-30 | Hash type ids in `Widget::hash_layout` impls | 1 | -3/+4 | ||
2020-03-30 | refactor: remove not mandatory static lifetime | 1 | -1/+1 | ||
2020-03-17 | Reuse `with_children` to remove some duplication | 1 | -10/+1 | ||
2020-03-17 | Rename `new_with_children` to `with_children` | 1 | -2/+4 | ||
2020-03-16 | Instantiate Column and Row with children | 1 | -0/+16 | ||
2020-03-06 | Remove counterintuitive constant functions | 1 | -8/+8 | ||
2020-01-16 | Add file events to `iced_native::window::Event` | 1 | -1/+1 | ||
2019-12-30 | Make `Row`, `Column`, and `Checkbox` shrink by default | 1 | -1/+1 | ||
2019-12-30 | Add `Renderer::Defaults` and style inheritance | 1 | -1/+3 | ||
2019-12-18 | Allow clipboard access in `Widget::on_event` | 1 | -1/+4 | ||
2019-11-29 | Make many functions `const` | 1 | -8/+8 | ||
The point is to set up repeated components or boilerplate before their use sites. The majority of these make sense as `const`. However, some functions such as those regarding state may not make sense as `const`. | |||||
2019-11-22 | Uncomment missing debug implementations rule | 1 | -1/+1 | ||
2019-11-22 | Write docs for `iced` and `iced_native` | 1 | -0/+17 | ||
2019-11-21 | Move widgets from `core` to `native` and `web` | 1 | -5/+110 | ||
Also made fields private and improved `Renderer` traits. | |||||
2019-11-16 | Make `width` and `height` required methods | 1 | -0/+4 | ||
2019-11-11 | Implement `Container` widget | 1 | -2/+1 | ||
Remove `align_self` and `justify_content` methods | |||||
2019-11-11 | Draft custom layout engine based on `druid` | 1 | -12/+27 | ||
2019-11-10 | Draft new layout API | 1 | -40/+12 | ||
2019-10-29 | Provide `Renderer` to `Widget::on_event` | 1 | -3/+8 | ||
This allows us to implement configurable event processing that adapts to different rendering strategies. |