summaryrefslogtreecommitdiffstats
path: root/native/src/widget/container.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-368/+0
2023-02-17Use `f32` for `Padding`Libravatar Héctor Ramón Jiménez1-1/+1
2023-02-17Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez1-19/+17
2023-02-16container: allow specification of ID and provide to `Operation::container`Libravatar Nick Senger1-9/+44
2023-02-16Revert "provide ID to operation.container in applicable widgets"Libravatar Nick Senger1-44/+9
This reverts commit 8f9550bcf7c1cebbf90e80683761375406ca6139.
2023-02-16provide ID to operation.container in applicable widgetsLibravatar Nick Senger1-9/+44
2022-12-22Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez1-0/+2
2022-11-29Allow &mut self in overlayLibravatar tarkah1-2/+2
2022-11-10Fix broken documentation linksLibravatar Héctor Ramón Jiménez1-1/+1
2022-11-09Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez1-1/+1
2022-11-08Rearrange `layout` code to improve readabilityLibravatar Héctor Ramón Jiménez1-2/+0
2022-11-08Rename `Padding::constrain` to `fit`Libravatar Héctor Ramón Jiménez1-1/+1
2022-11-03non uniform border radius for quadsLibravatar Robert Krahn1-1/+1
2022-10-27Constrain padding to inner & outer sizesLibravatar Cory Forsstrom1-4/+6
2022-07-28Implement `Widget::operate` for `TextInput`Libravatar Héctor Ramón Jiménez1-1/+16
2022-07-27Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez1-57/+78
2022-07-18Fix `max_width` and `max_height` for `Container`Libravatar Héctor Ramón Jiménez1-1/+11
2022-06-07Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez1-14/+21
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez1-0/+2
RFC: https://github.com/iced-rs/rfcs/pull/6
2022-02-23Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez1-19/+2
2022-02-12Implement `Container` widget in `iced_pure`Libravatar Héctor Ramón Jiménez1-22/+36
2022-01-11Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez1-1/+5
2021-12-06Include alignment in the container layout hashLibravatar Imbris1-0/+2
2021-11-29Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez1-3/+3
Widgets now can invalidate the current layout of the application on demand.
2021-11-04Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez1-7/+10
2021-11-02Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez1-2/+2
This keeps the order of the arguments consistent with `draw`.
2021-10-31Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez1-3/+6
2021-10-18Implement `Widget::mouse_interaction` for `Container`Libravatar Héctor Ramón Jiménez1-0/+14
2021-10-18Draw styling in `Widget::draw` for `Container`Libravatar Héctor Ramón Jiménez1-8/+36
2021-10-18Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez1-19/+10
2021-10-18Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez1-2/+3
2021-10-14Implement `Widget::draw` for `Container`Libravatar Héctor Ramón Jiménez1-1/+7
2021-10-14Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez1-22/+2
2021-09-20Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez1-12/+13
2021-09-20Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez1-3/+7
2021-06-01Replace ignored doc-tests with additional documentation for `Padding`Libravatar Héctor Ramón1-5/+0
2021-06-01Add support for asymmetrical paddingLibravatar Ben LeFevre1-11/+18
2021-03-10Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez1-3/+3
2021-02-23Change `Tooltip` to support `Text` only for nowLibravatar Héctor Ramón Jiménez1-7/+1
2021-02-15feat(native): add Tooltip widgetLibravatar Yusuf Bera Ertan1-1/+7
2020-11-26Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez1-26/+1
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
2020-11-12Make `Widget::on_event` return an `event::Status`Libravatar Héctor Ramón Jiménez1-3/+5
2020-10-28Introduce `viewport` to `Widget::draw`Libravatar Héctor Ramón Jiménez1-0/+3
This should eventually allow us to only generate primitives that are visible.
2020-07-10Remove unnecessary lifetime in `Widget` traitLibravatar Héctor Ramón Jiménez1-1/+1
2020-07-10Rename `overlay::Content` trait to `Overlay`Libravatar Héctor Ramón Jiménez1-2/+2
The `Overlay` struct is now `overlay::Element`.
2020-07-08Draft `Widget::overlay` idempotencyLibravatar Héctor Ramón Jiménez1-1/+1
2020-07-08Introduce `Layer` traitLibravatar Héctor Ramón Jiménez1-2/+9
2020-07-08Introduce `Widget::overlay` :tada:Libravatar Héctor Ramón Jiménez1-1/+1
2020-04-12#288 Renamed XXXWidget to MarkerLibravatar Olivier Pinon1-2/+2
2020-04-12Remove unnecessary 'static lifetime on RendererLibravatar Olivier Pinon1-3/+4