summaryrefslogtreecommitdiffstats
path: root/native/src/overlay/element.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-270/+0
|
* Fix layout translation in `overlay::Group`Libravatar Héctor Ramón Jiménez2023-01-301-2/+8
| | | | | This bug produced improper positioning of overlays of elements inside a `Scrollable`.
* Fix some minor documentation inconsistenciesLibravatar Héctor Ramón Jiménez2023-01-241-1/+1
|
* Rename method to is_overLibravatar Cory Forsstrom2023-01-171-13/+5
|
* New method to determine if overlay contains cursorLibravatar Cory Forsstrom2023-01-171-0/+17
| | | | | | This is needed for "container" overlay's such as `Group` which should only consider it's childrens layouts and not it's own when determining if the cursor is captured by the overlay.
* Introduce `custom` method to `widget::Operation` traitLibravatar Héctor Ramón Jiménez2023-01-141-0/+6
| | | | This allows users to write operations for their custom widgets.
* Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez2022-12-221-2/+4
|
* Get widget operations working w/ overlayLibravatar Cory Forsstrom2022-11-291-2/+2
|
* Add text input operationsLibravatar Cory Forsstrom2022-11-111-0/+8
|
* Fix broken documentation linksLibravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Implement `Overlay::operate` for `overlay::element::Map`Libravatar Héctor Ramón Jiménez2022-11-091-0/+43
|
* Draft widget operationsLibravatar Héctor Ramón Jiménez2022-07-281-0/+10
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-2/+6
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Loose lifetime bounds in `pure::Widget` implementationsLibravatar Héctor Ramón Jiménez2022-03-291-1/+1
|
* Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-231-10/+1
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-111-4/+14
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-291-9/+8
| | | | Widgets now can invalidate the current layout of the application on demand.
* Create `iced_lazy` and draft `Component` traitLibravatar Héctor Ramón Jiménez2021-11-291-0/+5
|
* Write missing documentation in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-051-0/+1
|
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-021-2/+12
| | | | This keeps the order of the arguments consistent with `draw`.
* Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez2021-10-181-1/+12
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-6/+5
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-2/+2
|
* Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez2021-03-101-6/+6
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-18/+0
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Make `Overlay::on_event` return `event::Status`Libravatar Héctor Ramón Jiménez2020-11-121-4/+8
|
* Remove unnecessary `Rc` in both `Element::map`Libravatar Héctor Ramón Jiménez2020-07-161-4/+3
|
* Write documentation for the new `overlay` APILibravatar Héctor Ramón Jiménez2020-07-101-15/+41
|
* Rename `overlay::Content` trait to `Overlay`Libravatar Héctor Ramón Jiménez2020-07-101-0/+145
The `Overlay` struct is now `overlay::Element`.