Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce `Shell` type in `iced_native` | 2021-11-29 | 1 | -4/+4 | |
| | | | | Widgets now can invalidate the current layout of the application on demand. | ||||
* | Rename `fill_rectangle` to `fill_quad` in `Renderer` | 2021-11-04 | 1 | -17/+21 | |
| | |||||
* | Move `viewport` argument to last position in `mouse_interaction` methods | 2021-11-02 | 1 | -1/+1 | |
| | | | | This keeps the order of the arguments consistent with `draw`. | ||||
* | Reintroduce `Box` for `style_sheet` in `Button` | 2021-10-31 | 1 | -3/+6 | |
| | |||||
* | Remove `widget` module re-exports in `iced_native` | 2021-10-31 | 1 | -4/+4 | |
| | |||||
* | Implement `Widget::mouse_interaction` for `Button` | 2021-10-18 | 1 | -1/+18 | |
| | |||||
* | Implement `Widget::draw` for `Button` | 2021-10-18 | 1 | -7/+60 | |
| | |||||
* | Wire up styling to `Button` in `iced_native` | 2021-10-18 | 1 | -23/+12 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 1 | -1/+2 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 1 | -24/+1 | |
| | |||||
* | Update disabled example of `Button` in docs | 2021-06-10 | 1 | -8/+14 | |
| | |||||
* | Fix failing doctests | 2021-06-10 | 1 | -1/+11 | |
| | |||||
* | Adds doc comment for disabled button | 2021-06-10 | 1 | -0/+8 | |
| | | | | Makes disabled button behavior consistent in web | ||||
* | Replace ignored doc-tests with additional documentation for `Padding` | 2021-06-01 | 1 | -5/+0 | |
| | |||||
* | Add support for asymmetrical padding | 2021-06-01 | 1 | -10/+18 | |
| | |||||
* | Overwrite `overlay` method in Widget implementation for Button (#764) | 2021-03-14 | 1 | -0/+8 | |
| | | | | | | | * Overwrite `overlay` method in Widget implementation for Button * Overwrite `overlay` method in Widget implementation for Button (cargo fmt) * Fix button overlay | ||||
* | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 1 | -3/+3 | |
| | |||||
* | Propagate `Button` events to contents | 2020-12-18 | 1 | -2/+13 | |
| | |||||
* | Turn `Touch` into a `touch::Event` enum | 2020-12-15 | 1 | -13/+4 | |
| | |||||
* | Merge branch 'ios-support-wip' into feature/touch-support | 2020-12-15 | 1 | -2/+17 | |
|\ | |||||
| * | Turn `Touch` into a struct and add finger id | 2020-03-19 | 1 | -5/+19 | |
| | | |||||
| * | Added initial touch events to support iOS | 2020-03-18 | 1 | -17/+18 | |
| | | |||||
* | | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -30/+1 | |
| | | | | | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | | 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 | |
| |