summaryrefslogtreecommitdiffstats
path: root/widget/src/scrollable.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-14/+10
|
* Fix `Shift` scrolling for `scrollable` on macOSLibravatar Héctor Ramón Jiménez2024-04-261-1/+3
| | | | | Apparently, macOS inverts the scrolling axes automatically now. Was this a thing before, or did an update just break user space?
* Capture scrollbar events in a `scrollable` before content eventsLibravatar Héctor Ramón Jiménez2024-04-261-142/+142
|
* Introduce `opaque` widget helperLibravatar Héctor Ramón Jiménez2024-04-251-1/+1
|
* Don't consume unused scroll events (#2397)Libravatar Daniel2024-04-231-39/+45
| | | | | | | | | | | * Initial Commit * Update scrollable.rs * Use `let _ = ` instead of `_ =` for consistency --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev>
* Fix clip bounds with nested `scrollable` widgetsLibravatar Héctor Ramón Jiménez2024-04-231-4/+8
|
* Redesign `iced_wgpu` layering architectureLibravatar Héctor Ramón Jiménez2024-04-031-3/+3
|
* Use `Catalog` approach for all widgetsLibravatar Héctor Ramón Jiménez2024-03-241-66/+65
|
* Use closures for `Scrollable::style`Libravatar Héctor Ramón Jiménez2024-03-121-18/+17
|
* Prioritize release events in `scrollable`Libravatar LuisLiraC2024-03-111-22/+16
|
* Fix `mouse_interaction` and `on_event` for `Scrollable`Libravatar Héctor Ramón Jiménez2024-03-081-2/+2
|
* Inline helper functions in `widget` modulesLibravatar Héctor Ramón Jiménez2024-03-081-432/+375
|
* Implement additional helpers for `Border` and `container::Appearance`Libravatar Héctor Ramón Jiménez2024-03-071-2/+2
|
* Leverage `DefaultStyle` traits instead of `Default`Libravatar Héctor Ramón Jiménez2024-03-071-18/+19
|
* Move `Theme` type to `iced_core`Libravatar Héctor Ramón Jiménez2024-03-071-2/+1
|
* Use `Style` struct pattern instead of trait for all widgetsLibravatar Héctor Ramón Jiménez2024-03-061-13/+34
|
* Simplify theming for `PickList`, `ComboBox`, and `Menu` widgetsLibravatar Héctor Ramón Jiménez2024-03-061-1/+2
|
* Simplify theming for `TextInput` widgetLibravatar Héctor Ramón Jiménez2024-03-051-9/+9
|
* Simplify theming for `Scrollable` widgetLibravatar Héctor Ramón Jiménez2024-03-051-217/+332
|
* Simplify theming for `Container` widgetLibravatar Héctor Ramón Jiménez2024-03-051-6/+6
|
* Fix scrollbar style when cursor is over `scrollable`Libravatar Giuliano Bellini s2947392024-02-281-15/+17
|
* Assert `scrollable` content size never fills scrolling axisLibravatar Héctor Ramón Jiménez2024-02-241-9/+25
|
* Simplify `scrollable` styling APILibravatar Héctor Ramón Jiménez2024-02-121-35/+41
|
* Introduce an appearance for a scrollable, ability to customize the scrollbar ↵Libravatar dtzxporter2024-02-121-1/+36
| | | | | | gap. Update scrollable.rs
* Remove `position` from `overlay::Element`Libravatar Héctor Ramón Jiménez2024-02-011-18/+17
|
* Avoid returning early on `Captured` event in `scrollable`Libravatar Héctor Ramón Jiménez2024-01-311-10/+10
| | | | Co-authored-by: Austin M. Reppert <austinmreppert@gmail.com>
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-26/+30
|
* Introduce `Border` struct analogous to `Shadow`Libravatar Héctor Ramón Jiménez2024-01-201-10/+6
|
* Use `Default` implementation of `renderer::Quad`Libravatar Héctor Ramón Jiménez2024-01-201-2/+2
|
* feat: quad shadowsLibravatar Nick Senger2024-01-201-0/+2
|
* Introduce useful helpers in `layout` moduleLibravatar Héctor Ramón Jiménez2024-01-101-21/+18
|
* Replace `width` and `height` with `Widget::size`Libravatar Héctor Ramón Jiménez2024-01-101-6/+5
|
* Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-1/+1
|
* Fix `clippy::match-wildcard-for-single-variants`Libravatar Héctor Ramón Jiménez2023-09-201-2/+2
|
* Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-201-5/+5
|
* 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
|
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-101-0/+10
|\
| * 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.
* | Make `widget::Tree` mutable in `Widget::layout`Libravatar Héctor Ramón Jiménez2023-08-301-2/+2
| |
* | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-1/+6
|/
* Run `cargo fmt` with Rust 1.72Libravatar Héctor Ramón Jiménez2023-08-261-6/+6
|
* Introduce `visible_bounds` operation for `Container`Libravatar Héctor Ramón Jiménez2023-07-271-1/+13
|
* Add viewport to Widget::on_eventLibravatar Cory Forsstrom2023-07-151-2/+18
|
* 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.
* Introduce `absolute_offset_reversed` to `scrollable::Viewport`Libravatar Héctor Ramón Jiménez2023-07-131-58/+17
|
* Expose methods to change viewport alignmentLibravatar Cory Forsstrom2023-07-121-1/+58
|
* Remove unnecessary cursor unavailability logic in `scrollable`Libravatar Héctor Ramón Jiménez2023-07-121-22/+12
|
* Rename `absolute_from_start` to `translation` in `scrollable`Libravatar Héctor Ramón Jiménez2023-07-121-3/+3
|