Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -264/+0 | |
| | |||||
* | Use `Pixels` for `spacing` | 2023-02-17 | 1 | -5/+5 | |
| | |||||
* | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 1 | -10/+10 | |
| | |||||
* | Add multidirectional scrolling capabilities to the existing Scrollable. | 2022-12-29 | 1 | -2/+0 | |
| | |||||
* | Add `Renderer` argument to `operate` | 2022-12-22 | 1 | -1/+4 | |
| | |||||
* | Allow &mut self in overlay | 2022-11-29 | 1 | -2/+2 | |
| | |||||
* | Implement `Widget::operate` for `TextInput` | 2022-07-28 | 1 | -1/+18 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -34/+40 | |
| | |||||
* | Fix further `clippy` lints | 2022-07-09 | 1 | -0/+6 | |
| | | | | ... and explicitly annotate crates as well. | ||||
* | Draft first-class `Theme` support | 2022-05-14 | 1 | -1/+9 | |
| | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Write documentation for `iced_pure` | 2022-05-02 | 1 | -1/+1 | |
| | |||||
* | Remove `hash_layout` method from `Widget` trait | 2022-02-23 | 1 | -21/+2 | |
| | |||||
* | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 2022-01-11 | 1 | -1/+6 | |
| | |||||
* | Introduce `Shell` type in `iced_native` | 2021-11-29 | 1 | -3/+3 | |
| | | | | Widgets now can invalidate the current layout of the application on demand. | ||||
* | Move `viewport` argument to last position in `mouse_interaction` methods | 2021-11-02 | 1 | -2/+2 | |
| | | | | This keeps the order of the arguments consistent with `draw`. | ||||
* | Implement `Widget::mouse_interaction` for `Column` | 2021-10-18 | 1 | -0/+21 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 1 | -2/+3 | |
| | |||||
* | Implement `Widget::draw` for `Column` | 2021-10-14 | 1 | -1/+3 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 1 | -33/+4 | |
| | |||||
* | Refactor alignment types into an `alignment` module | 2021-09-20 | 1 | -4/+4 | |
| | |||||
* | Introduce and use `CrossAlign` enum for `Column` and `Row` | 2021-09-20 | 1 | -4/+4 | |
| | |||||
* | Replace ignored doc-tests with additional documentation for `Padding` | 2021-06-01 | 1 | -5/+0 | |
| | |||||
* | Add support for asymmetrical padding | 2021-06-01 | 1 | -7/+13 | |
| | |||||
* | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 1 | -3/+3 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -23/+1 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Implement event capturing for `Column` | 2020-11-12 | 1 | -8/+8 | |
| | |||||
* | Make `Widget::on_event` return an `event::Status` | 2020-11-12 | 1 | -5/+7 | |
| | |||||
* | Introduce `viewport` to `Widget::draw` | 2020-10-28 | 1 | -3/+13 | |
| | | | | | This should eventually allow us to only generate primitives that are visible. | ||||
* | Merge pull request #545 from MonliH/master | 2020-10-17 | 1 | -4/+0 | |
|\ | | | | | Remove outdated `Fill` comment for `Column` and `Row` | ||||
| * | Remove entirely | 2020-10-17 | 1 | -5/+0 | |
| | | |||||
| * | Document better | 2020-10-02 | 1 | -2/+3 | |
| | | |||||
| * | Satify documented behaviour | 2020-10-01 | 1 | -1/+1 | |
| | | |||||
* | | Fix typo in Row's and Column's hash_layout | 2020-10-13 | 1 | -0/+1 | |
|/ | |||||
* | Remove unnecessary lifetime in `Widget` trait | 2020-07-10 | 1 | -1/+1 | |
| | |||||
* | Rename `overlay::Content` trait to `Overlay` | 2020-07-10 | 1 | -2/+2 | |
| | | | | The `Overlay` struct is now `overlay::Element`. | ||||
* | Draft `Widget::overlay` idempotency | 2020-07-08 | 1 | -1/+1 | |
| | |||||
* | Introduce `Layer` trait | 2020-07-08 | 1 | -2/+13 | |
| | |||||
* | Introduce `Widget::overlay` :tada: | 2020-07-08 | 1 | -1/+1 | |
| | |||||
* | #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 | -3/+4 | |
| | |||||
* | refactor: remove not mandatory static lifetime | 2020-03-30 | 1 | -1/+1 | |
| | |||||
* | Fix links in `pane_grid` documentation | 2020-03-20 | 1 | -1/+1 | |
| | |||||
* | Reuse `with_children` to remove some duplication | 2020-03-17 | 1 | -10/+1 | |
| | |||||
* | Rename `new_with_children` to `with_children` | 2020-03-17 | 1 | -2/+4 | |
| | |||||
* | Instantiate Column and Row with children | 2020-03-16 | 1 | -0/+16 | |
| | |||||
* | Add file events to `iced_native::window::Event` | 2020-01-16 | 1 | -1/+1 | |
| | |||||
* | Merge branch 'master' into feature/custom-styling | 2020-01-09 | 1 | -1/+1 | |
|\ | |||||
| * | Make `Row`, `Column`, and `Checkbox` shrink by default | 2019-12-30 | 1 | -1/+1 | |
| | | |||||
* | | Add `Renderer::Defaults` and style inheritance | 2019-12-30 | 1 | -1/+3 | |
|/ |