summaryrefslogtreecommitdiffstats
path: root/widget/src/scrollable.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2587 from iced-rs/improve-api-referenceLibravatar Héctor Ramón2024-09-191-1/+41
|\ | | | | Add widget examples to API reference and update `README`
| * Show `scrollable` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-191-1/+41
| |
* | Merge pull request #2584 from iced-rs/fix/scrollable-transactionsLibravatar Héctor Ramón2024-09-181-8/+10
|\ \ | |/ |/| Fix `scrollable` transactions when `on_scroll` is not set
| * Fix `scrollable` transactions when `on_scroll` is not setLibravatar Héctor Ramón Jiménez2024-09-181-8/+10
| |
* | Fix scrolling direction with trackpad in `scrollable`Libravatar Héctor Ramón Jiménez2024-09-181-1/+1
|/
* Notify all `scrollable::Viewport` changesLibravatar Héctor Ramón Jiménez2024-09-101-14/+44
| | | | Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com>
* Implement `scroll_by` operation for `scrollable`Libravatar lufte2024-09-101-31/+59
| | | | | `scroll_by` allows scrolling an absolute offset that is applied to the current scrolling position.
* Enable horizontal scrolling without shift modifierLibravatar Matt Woelfel2024-09-081-6/+20
| | | | Fixes #2359.
* Implement mouse wheel transactions for `scrollable`Libravatar Héctor Ramón Jiménez2024-09-081-9/+34
| | | | | | See https://wiki.mozilla.org/Gecko:Mouse_Wheel_Scrolling#Mouse_wheel_transaction Co-authored-by: Daniel Yoon <101683475+Koranir@users.noreply.github.com>
* Introduce `black_box` and `chain` in `widget::operation`Libravatar Héctor Ramón Jiménez2024-08-081-1/+1
|
* Reintroduce `Scrollable::with_direction`Libravatar Héctor Ramón Jiménez2024-07-301-1/+9
|
* Adapt `scrollable` sizing strategy to contentsLibravatar Héctor Ramón Jiménez2024-07-181-5/+13
|
* 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
|