summaryrefslogtreecommitdiffstats
path: root/native/src/overlay (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-043-963/+0
|
* Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2023-02-241-1/+1
|
* Fix `overlay::Menu` line heightLibravatar Héctor Ramón Jiménez2023-02-241-5/+5
|
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-241-1/+2
|
* Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-241-6/+6
|
* Fix height of `overlay::Menu`Libravatar Héctor Ramón Jiménez2023-02-181-1/+2
|
* Use `f32` for `Padding`Libravatar Héctor Ramón Jiménez2023-02-171-10/+7
|
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-171-12/+14
|
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-5/+5
|
* Fix layout translation in `overlay::Group`Libravatar Héctor Ramón Jiménez2023-01-302-4/+12
| | | | | This bug produced improper positioning of overlays of elements inside a `Scrollable`.
* Fixed a small pixel width issue on `pick_list`Libravatar Casper Storm2023-01-271-4/+1
|
* Fix some minor documentation inconsistenciesLibravatar Héctor Ramón Jiménez2023-01-242-4/+4
|
* Rename method to is_overLibravatar Cory Forsstrom2023-01-172-21/+7
|
* New method to determine if overlay contains cursorLibravatar Cory Forsstrom2023-01-172-0/+30
| | | | | | 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.
* Add group overlay elementLibravatar Cory Forsstrom2023-01-171-0/+165
|
* 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
|
* Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-022-18/+57
|\
| * 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-102-14/+2
| |
| * Implement `Overlay::operate` for `overlay::element::Map`Libravatar Héctor Ramón Jiménez2022-11-091-0/+43
| |
| * Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez2022-11-091-3/+3
| |
* | non uniform border radius for quadsLibravatar Robert Krahn2022-11-031-2/+2
|/
* Merge pull request #1393 from iced-rs/deprecate-stateful-widgetsLibravatar Héctor Ramón2022-08-062-13/+53
|\ | | | | Replace stateful widgets with the new `iced_pure` API
| * Draft widget operationsLibravatar Héctor Ramón Jiménez2022-07-281-0/+10
| |
| * Fix uninitialized `Tree` in `overlay::Menu`Libravatar Héctor Ramón Jiménez2022-07-281-0/+2
| |
| * Fix `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-271-3/+3
| |
| * Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-13/+41
| |
* | feat: allow specification of `border_radius` for `pick_list::Menu`Libravatar Nick Senger2022-08-021-2/+2
|/
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-4/+4
| | | | ... and explicitly annotate crates as well.
* Address Clippy lintsLibravatar Poly2022-07-091-9/+13
|
* Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2022-06-071-22/+41
|
* Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-071-4/+9
|
* Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez2022-06-071-2/+5
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-142-4/+16
| | | | 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-232-34/+3
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-112-6/+22
|
* Lower text::Renderer's Font bound from Copy to CloneLibravatar Olivier Pinon2021-12-101-1/+1
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-292-13/+12
| | | | 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
|
* Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez2021-11-041-14/+18
|
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-022-5/+15
| | | | This keeps the order of the arguments consistent with `draw`.
* Introduce first-class `text` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-10/+10
|
* Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-3/+4
|
* Implement `Overlay::mouse_interaction` for `overlay::Menu`Libravatar Héctor Ramón Jiménez2021-10-281-0/+25
|
* Implement `Widget::draw` for `overlay::Menu`Libravatar Héctor Ramón Jiménez2021-10-281-21/+71
|
* Wire up style to `PickList` and `overlay::Menu`Libravatar Héctor Ramón Jiménez2021-10-281-28/+15
|