summaryrefslogtreecommitdiffstats
path: root/widget/src/scrollable.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix `Scrollable::spacing` not embedding the `Scrollbar`Libravatar Héctor Ramón Jiménez2024-07-161-37/+22
|
* Rename `embed_*` in `Scrollable` to simply `spacing`Libravatar Héctor Ramón Jiménez2024-07-121-43/+56
|
* Improve `Border` ergonomicsLibravatar Héctor Ramón Jiménez2024-07-121-4/+5
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-121-27/+48
|
* Fix broken doc links in `widget::scrollable`Libravatar Héctor Ramón Jiménez2024-07-111-4/+4
|
* Add support for embedded scrollbars for `scrollable`Libravatar Héctor Ramón Jiménez2024-07-111-163/+248
| | | | Co-authored-by: dtzxporter <dtzxporter@users.noreply.github.com>
* Merge pull request #2488 from vladh/remove-scrollable-commentLibravatar Héctor Ramón2024-07-111-1/+0
|\ | | | | doc: remove extraneous comment
| * doc: remove extraneous commentLibravatar Vlad-Stefan Harbuz2024-07-021-1/+0
| |
* | Add `align_x` and `align_y` helpers to `Scrollable`Libravatar Héctor Ramón Jiménez2024-07-111-0/+26
| |
* | Hide internal `Task` constructorsLibravatar Héctor Ramón Jiménez2024-07-051-3/+4
|/
* 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.