Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce `Shell` type in `iced_native` | 2021-11-29 | 1 | -11/+10 | |
| | | | | Widgets now can invalidate the current layout of the application on demand. | ||||
* | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 2021-11-04 | 1 | -9/+11 | |
| | |||||
* | Move `viewport` argument to last position in `mouse_interaction` methods | 2021-11-02 | 1 | -6/+6 | |
| | | | | This keeps the order of the arguments consistent with `draw`. | ||||
* | Remove `widget` module re-exports in `iced_native` | 2021-10-31 | 1 | -2/+3 | |
| | |||||
* | Implement `Widget::draw` for `element::Explain` | 2021-10-28 | 1 | -5/+33 | |
| | |||||
* | Introduce `mouse_interaction` method to `Widget` trait | 2021-10-18 | 1 | -0/+32 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 1 | -5/+6 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 1 | -18/+10 | |
| | |||||
* | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 1 | -9/+9 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -24/+2 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Make `Widget::on_event` return an `event::Status` | 2020-11-12 | 1 | -6/+9 | |
| | |||||
* | Introduce `viewport` to `Widget::draw` | 2020-10-28 | 1 | -4/+9 | |
| | | | | | This should eventually allow us to only generate primitives that are visible. | ||||
* | Remove unnecessary `Rc` in both `Element::map` | 2020-07-16 | 1 | -4/+3 | |
| | |||||
* | Write documentation for the new `overlay` API | 2020-07-10 | 1 | -1/+4 | |
| | |||||
* | Remove unnecessary lifetime in `Widget` trait | 2020-07-10 | 1 | -6/+6 | |
| | |||||
* | Rename `overlay::Content` trait to `Overlay` | 2020-07-10 | 1 | -4/+4 | |
| | | | | The `Overlay` struct is now `overlay::Element`. | ||||
* | Draft `Widget::overlay` idempotency | 2020-07-08 | 1 | -6/+8 | |
| | |||||
* | Draft `ComboBox` and `Menu` layer | 2020-07-08 | 1 | -3/+22 | |
| | |||||
* | Introduce `Layer` trait | 2020-07-08 | 1 | -2/+3 | |
| | |||||
* | Introduce `Widget::overlay` :tada: | 2020-07-08 | 1 | -7/+14 | |
| | |||||
* | Make `Font` an associated type of `text::Renderer` | 2020-04-23 | 1 | -1/+1 | |
| | |||||
* | Implement and expose `Element::on_event` | 2020-04-18 | 1 | -0/+22 | |
| | |||||
* | Draft `Panes` widget and `panes` example | 2020-03-04 | 1 | -1/+1 | |
| | |||||
* | Make `Element::hash_layout` public. | 2020-02-10 | 1 | -1/+4 | |
| | |||||
* | Remove `Clone` bound for `Element::map` | 2020-01-13 | 1 | -4/+2 | |
| | |||||
* | Move `Debugger` and `Windowed` to a better location | 2020-01-10 | 1 | -4/+3 | |
| | | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`. | ||||
* | Add `Renderer::Defaults` and style inheritance | 2019-12-30 | 1 | -2/+8 | |
| | |||||
* | Allow clipboard access in `Widget::on_event` | 2019-12-18 | 1 | -1/+6 | |
| | |||||
* | Uncomment missing debug implementations rule | 2019-11-22 | 1 | -0/+1 | |
| | |||||
* | Write docs for `iced` and `iced_native` | 2019-11-22 | 1 | -25/+39 | |
| | |||||
* | Merge branch 'master' into improvement/docs | 2019-11-21 | 1 | -0/+16 | |
|\ | |||||
| * | Make `width` and `height` required methods | 2019-11-16 | 1 | -0/+16 | |
| | | |||||
* | | Move widgets from `core` to `native` and `web` | 2019-11-21 | 1 | -56/+1 | |
|/ | | | | Also made fields private and improved `Renderer` traits. | ||||
* | Fix doc comments and remove `Align` from `tour` | 2019-11-11 | 1 | -3/+7 | |
| | |||||
* | Draft custom layout engine based on `druid` | 2019-11-11 | 1 | -9/+27 | |
| | |||||
* | Draft new layout API | 2019-11-10 | 1 | -20/+16 | |
| | |||||
* | Reduce `Copy` constraint to `Clone` in `Message` | 2019-11-02 | 1 | -2/+2 | |
| | |||||
* | Provide `Renderer` to `Widget::on_event` | 2019-10-29 | 1 | -3/+10 | |
| | | | | | This allows us to implement configurable event processing that adapts to different rendering strategies. | ||||
* | Make `Renderer` immutable in `UserInterface::build` | 2019-10-11 | 1 | -4/+1 | |
| | |||||
* | Rename `Renderer::Primitive` to `Renderer::Output` | 2019-10-11 | 1 | -4/+4 | |
| | |||||
* | Make `iced_core::Button` customizable | 2019-10-08 | 1 | -12/+15 | |
| | | | | | | | Now it supports: - Any kind of content - Custom border radius - Custom background | ||||
* | Draft basic text rendering using `wgpu_glyph` | 2019-10-05 | 1 | -0/+9 | |
| | |||||
* | Move `MouseCursor` to `iced_wgpu` | 2019-10-05 | 1 | -1/+1 | |
| | |||||
* | Add `Renderer` and `Primitive` concepts | 2019-10-05 | 1 | -17/+31 | |
| | |||||
* | Create `iced_core` and `iced_native` | 2019-09-20 | 1 | -0/+372 | |