summaryrefslogtreecommitdiffstats
path: root/widget (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix `height` of vertical scroller in `Scrollbar`Libravatar Héctor Ramón Jiménez2023-09-141-4/+4
|
* Fix width of horizontal scrollbar in `Scrollable`Libravatar Héctor Ramón Jiménez2023-09-141-6/+6
|
* Fix `ComboBox` widget panic on wasmLibravatar Thomas2023-09-101-1/+1
|
* Fix `ComboBox` widget not displaying selection textLibravatar Héctor Ramón Jiménez2023-09-102-3/+50
|
* Fix unnecessary dereference in `Tooltip`Libravatar Héctor Ramón Jiménez2023-09-101-1/+1
|
* Fix `Tooltip` widget state managementLibravatar Héctor Ramón Jiménez2023-09-101-2/+4
|
* Fix `Widget::layout` implementation of `MouseArea`Libravatar Héctor Ramón Jiménez2023-09-101-1/+3
|
* Fix broken intradoc link in `widget::keyed` moduleLibravatar Héctor Ramón Jiménez2023-09-101-2/+0
|
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-1025-117/+124
|\
| * Deny `broken_intradoc_links` and verify documentation in CILibravatar Héctor Ramón Jiménez2023-09-091-2/+3
| |
| * Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-0918-75/+82
| |
| * Use `Radians` as a number directly in `gradient` exampleLibravatar Héctor Ramón Jiménez2023-09-081-2/+2
| |
| * Merge pull request #2070 from ripytide/masterLibravatar Héctor Ramón2023-09-071-1/+1
| |\ | | | | | | Added a Frame::scale_nonuniform method
| | * Make `scale` methods in `Frame` generic over `f32` and `Vector`Libravatar Héctor Ramón Jiménez2023-09-071-1/+1
| | |
| * | Host GIFs and video examples in `iced.rs`Libravatar Héctor Ramón Jiménez2023-09-071-2/+2
| | | | | | | | | | | | RIP Gfycat
| * | Add access to bounds/content bounds from a scrollable viewport. (#2072)Libravatar Nick2023-09-071-0/+10
| | | | | | | | | | | | | | | * Add access to bounds/content bounds from a scrollable viewport in order to perform certain scrollable optimizations as a consumer. * Move bounds/content_bounds after relative_offset as per feedback.
| * | Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-34/+23
| |/ | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
| * Support automatic style type casting for Buttons.Libravatar Nick2023-09-031-2/+2
| | | | | | Changes the signature of Button::style to use `impl Into<...>` instead of taking the style sheet itself. (Matches other widgets).
* | Implement `Icon` support for `TextInput`Libravatar Héctor Ramón Jiménez2023-09-091-4/+23
| |
* | Introduce `keyed::Column` widgetLibravatar Héctor Ramón Jiménez2023-09-044-2/+387
| |
* | Fix `Widget::layout` for `Lazy`Libravatar Héctor Ramón Jiménez2023-09-011-1/+3
| |
* | Fix `Widget::layout` for `Component`Libravatar Héctor Ramón Jiménez2023-09-011-1/+7
| |
* | Simplify new logic in `TextInput`Libravatar Héctor Ramón Jiménez2023-08-301-33/+25
| |
* | Make `widget::Tree` mutable in `Widget::layout`Libravatar Héctor Ramón Jiménez2023-08-3030-97/+94
| |
* | Reduce default spacing of `Checkbox`Libravatar Héctor Ramón Jiménez2023-08-301-1/+1
| |
* | Add some default spacing for `Toggler`Libravatar Héctor Ramón Jiménez2023-08-301-1/+1
| |
* | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-3030-530/+643
|/
* Fix `clippy` lints for Rust 1.72Libravatar Héctor Ramón Jiménez2023-08-261-1/+1
|
* Run `cargo fmt` with Rust 1.72Libravatar Héctor Ramón Jiménez2023-08-262-8/+12
|
* ensure no paste with altLibravatar Casper Rogild Storm2023-08-051-1/+3
|
* Remove unnecessary comment in `image::viewer`Libravatar Héctor Ramón Jiménez2023-08-031-1/+0
|
* fix: Check cursor in bounds when scrolling image::ViewerLibravatar Malcolm Ramsay2023-08-031-1/+2
| | | | | | | Ensure that the cursor is within the bounds of the image::Viewer when performing the scrolling. Fixes #1997
* Bump version of `iced_widget` :tada:Libravatar Héctor Ramón Jiménez2023-08-021-1/+1
|
* Update widget/src/combo_box.rsLibravatar Casper Rogild Storm2023-07-311-1/+1
| | | Co-authored-by: Héctor Ramón <hector0193@gmail.com>
* cycle combobox with keybindsLibravatar Casper Rogild Storm2023-07-311-9/+34
|
* Bump version of `iced_widget` :tada:Libravatar Héctor Ramón Jiménez2023-07-291-1/+1
|
* Fix `Tooltip` overlay position inside `Scrollable`Libravatar Héctor Ramón Jiménez2023-07-291-18/+16
|
* Enable all features for `iced_widget` in `docs.rs`Libravatar Héctor Ramón Jiménez2023-07-281-0/+4
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-282-3/+10
|
* Introduce `visible_bounds` operation for `Container`Libravatar Héctor Ramón Jiménez2023-07-277-9/+116
|
* Rename `on_selection` to `on_option_hovered` in `combo_box`Libravatar Héctor Ramón Jiménez2023-07-261-6/+6
|
* Fix `on_option_hovered` support in `ComboBox`Libravatar Héctor Ramón Jiménez2023-07-263-13/+53
|
* Use default padding of `TextInput` in `ComboBox`Libravatar Héctor Ramón Jiménez2023-07-262-2/+5
|
* Add `Viewport` to `on_event` for `ComboBox`Libravatar Héctor Ramón Jiménez2023-07-261-0/+3
|
* Swap unwrap_or_else to unwrap_or_defaultLibravatar Joao Freitas2023-07-261-2/+2
|
* Add ComboBox widgetLibravatar Joao Freitas2023-07-263-0/+737
| | | | | | - Widget implementation - Widget helper - Example
* Add viewport to Widget::on_eventLibravatar Cory Forsstrom2023-07-1523-2/+57
|
* Restart animation when regaining focusLibravatar Cory Forsstrom2023-07-131-0/+3
|
* Dont blink input cursor when window loses focusLibravatar Cory Forsstrom2023-07-131-8/+31
|
* Avoid redundant `max` in `absolute_offset_reversed`Libravatar Héctor Ramón Jiménez2023-07-131-4/+2
| | | | | I believe `Offset::absolute` guarantees the offset never exceeds the maximum scrolling boundaries already.