Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement event capturing for `Button` | 2020-11-12 | 1 | -6/+11 | |
| | |||||
* | Make `Widget::on_event` return an `event::Status` | 2020-11-12 | 1 | -3/+7 | |
| | |||||
* | Introduce `viewport` to `Widget::draw` | 2020-10-28 | 1 | -0/+1 | |
| | | | | | This should eventually allow us to only generate primitives that are visible. | ||||
* | Require `Clone` for `Message` early when needed | 2020-10-17 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | Prior to this change, the widgets that needed a `Clone` bound on `Message` to implement the `Widget` trait could be created with a non-cloneable `Message`. As a consequence, the compiler complained only when actually trying to use the `Widget` trait. Normally, this happens when trying to `push` the widget in a container or turn it into an `Element`. Furthermore, the compiler error in this case does not mention `Message` nor the `Clone` bound, but instead complains about a missing `From` implementation. Thus, it can easily cause confusion! This change introduces `Clone` bounds in the main implementation of the widgets that need it to properly implement the `Widget` trait. As a result, the compiler complains early when trying to create one of these widgets with a non-cloneable `Message` and explicitly mentions that the `Message` needs to implement `Clone`. | ||||
* | Remove inconsistent `input` module in `iced_native` | 2020-04-30 | 1 | -2/+2 | |
| | |||||
* | Split `Input` mouse event by `ButtonState` | 2020-04-30 | 1 | -20/+15 | |
| | |||||
* | #288 Renamed XXXWidget to Marker | 2020-04-12 | 1 | -2/+2 | |
| | |||||
* | Remove unnecessary 'static lifetime on Renderer | 2020-04-12 | 1 | -3/+4 | |
| | |||||
* | Hash type ids in `Widget::hash_layout` impls | 2020-03-30 | 1 | -2/+4 | |
| | |||||
* | refactor: remove not mandatory static lifetime | 2020-03-30 | 1 | -2/+2 | |
| | |||||
* | Revert changing the constructor and implement new method. | 2020-02-14 | 1 | -5/+3 | |
| | |||||
* | Add `bound` to `Node` constructor. | 2020-02-14 | 1 | -2/+2 | |
| | |||||
* | Add default padding to `Button` | 2020-01-22 | 1 | -1/+6 | |
| | |||||
* | Write missing docs and reenable deny statements | 2020-01-09 | 1 | -0/+4 | |
| | |||||
* | Add `Renderer::Defaults` and style inheritance | 2019-12-30 | 1 | -9/+10 | |
| | |||||
* | Draft `Style` and `StyleSheet` for `Button` | 2019-12-29 | 1 | -29/+18 | |
| | |||||
* | Allow clipboard access in `Widget::on_event` | 2019-12-18 | 1 | -2/+3 | |
| | |||||
* | Add `Button::height` and `Button::min_height` | 2019-12-09 | 1 | -2/+23 | |
| | |||||
* | Make `Button::background` generic | 2019-12-05 | 1 | -2/+2 | |
| | |||||
* | Fix `Button` example in `iced_native` | 2019-11-22 | 1 | -3/+5 | |
| | |||||
* | Uncomment missing debug implementations rule | 2019-11-22 | 1 | -1/+14 | |
| | |||||
* | Merge branch 'master' into improvement/docs | 2019-11-21 | 1 | -0/+8 | |
|\ | |||||
| * | Make `width` and `height` required methods | 2019-11-16 | 1 | -1/+9 | |
| | | |||||
* | | Move widgets from `core` to `native` and `web` | 2019-11-21 | 1 | -24/+142 | |
|/ | | | | Also made fields private and improved `Renderer` traits. | ||||
* | Implement `Container` widget | 2019-11-11 | 1 | -2/+1 | |
| | | | | Remove `align_self` and `justify_content` methods | ||||
* | Draft custom layout engine based on `druid` | 2019-11-11 | 1 | -6/+10 | |
| | |||||
* | Draft new layout API | 2019-11-10 | 1 | -7/+11 | |
| | |||||
* | Reduce `Copy` constraint to `Clone` in `Message` | 2019-11-02 | 1 | -3/+3 | |
| | |||||
* | Provide `Renderer` to `Widget::on_event` | 2019-10-29 | 1 | -0/+1 | |
| | | | | | This allows us to implement configurable event processing that adapts to different rendering strategies. | ||||
* | Rename `Renderer::Primitive` to `Renderer::Output` | 2019-10-11 | 1 | -2/+2 | |
| | |||||
* | Make `iced_core::Button` customizable | 2019-10-08 | 1 | -10/+16 | |
| | | | | | | | Now it supports: - Any kind of content - Custom border radius - Custom background | ||||
* | Add `Renderer` and `Primitive` concepts | 2019-10-05 | 1 | -4/+4 | |
| | |||||
* | Complete some `hash_layout` implementations | 2019-09-20 | 1 | -3/+3 | |
| | |||||
* | Create `iced_core` and `iced_native` | 2019-09-20 | 1 | -0/+111 | |