summaryrefslogtreecommitdiffstats
path: root/widget/src/scrollable.rs (unfollow)
Commit message (Expand)AuthorFilesLines
2023-06-27Make vertical scroll properties optionalLibravatar Austin M. Reppert1-40/+90
2023-06-12Only scroll w/ wheel if over scrollableLibravatar Cory Forsstrom1-0/+4
2023-06-08Fix mouse interactions in `Scrollable`Libravatar Héctor Ramón Jiménez1-4/+24
2023-06-08Take `Rectangle` by value in `Cursor` APILibravatar Héctor Ramón Jiménez1-3/+3
2023-06-08Implement basic cursor availabilityLibravatar Héctor Ramón Jiménez1-131/+125
2023-05-23clippyLibravatar Casper Storm1-2/+2
2023-05-23Avoid drawing empty quads in `widget::scrollable`Libravatar Héctor Ramón Jiménez1-6/+10
2023-05-23Remove min width 1 from scrollbar & scrollerLibravatar Cory Forsstrom1-4/+2
2023-03-05Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez1-1/+1
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-85/+83
2023-02-17Fix `Scrollbar` bound calculations in `Scrollable`Libravatar Héctor Ramón Jiménez1-9/+12
2023-02-17Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez1-44/+43
2023-02-16scrollable: provide ID to operation.containerLibravatar Nick Senger1-8/+11
2023-01-23added function focused and focused_horizontal to theme.rsLibravatar Giuliano Bellini s2947391-2/+2
2023-01-23debugging focused style not workingLibravatar Giuliano Bellini s2947391-2/+2
2023-01-23added new style for scrollable, to be applied when mouse is over the scrollab...Libravatar Giuliano Bellini s2947391-0/+4
2023-01-08Avoid dragging scroll area when touching scrollbars for `Scrollable`Libravatar Héctor Ramón Jiménez1-1/+4
2023-01-08Remove `PartialOrd` implementation for `Rectangle`Libravatar Héctor Ramón Jiménez1-1/+3
2023-01-08Enable horizontal scrolling with `Shift+MouseWheel`Libravatar Héctor Ramón Jiménez1-1/+17
2023-01-08Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez1-45/+40
2022-12-29Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo1-601/+532
2022-12-29Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus1-363/+753
2022-12-22Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez1-0/+2
2022-12-20Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez1-3/+2
2022-12-05Fix scroller in `Scrollable` always being drawnLibravatar Héctor Ramón Jiménez1-3/+2
2022-11-29Allow &mut self in overlayLibravatar tarkah1-2/+2
2022-11-11Allow converting from widget-specific IDs to generic IDLibravatar mtkennerly1-0/+6
2022-11-09Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez1-2/+2
2022-11-03non uniform border radius for quadsLibravatar Robert Krahn1-2/+2
2022-08-05Write missing documentation in `iced_native`Libravatar Héctor Ramón Jiménez1-0/+7
2022-08-04Implement `scrollable::snap_to` operationLibravatar Héctor Ramón Jiménez1-3/+39
2022-07-28Implement `Widget::operate` for `TextInput`Libravatar Héctor Ramón Jiménez1-0/+16
2022-07-27Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez1-212/+190
2022-07-18Fix `max_height` for `Scrollable`Libravatar Héctor Ramón Jiménez1-1/+3
2022-07-09Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez1-3/+3
2022-06-07Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez1-12/+25
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez1-0/+2
2022-03-29Loose lifetime bounds in `pure::Widget` implementationsLibravatar Héctor Ramón Jiménez1-3/+3
2022-03-09Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez1-0/+7
2022-02-23Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez1-13/+3
2022-02-12Implement `Scrollable` in `iced_pure`Libravatar Héctor Ramón Jiménez1-369/+520
2022-01-11Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez1-1/+4
2021-12-07Remove unused field in `scrollable::Scrollbar`Libravatar Héctor Ramón Jiménez1-4/+0
2021-11-29Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez1-9/+9
2021-11-04Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez1-16/+20
2021-11-02Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez1-2/+2
2021-10-31Reintroduce `Box` for `style_sheet` in `Scrollable`Libravatar Héctor Ramón Jiménez1-3/+6
2021-10-31Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez1-2/+3
2021-10-28Fix scrollbar clipping in `Scrollable` draw logicLibravatar Héctor Ramón Jiménez1-25/+32
2021-10-25Implement `Widget::mouse_interaction` for `PaneGrid`Libravatar Héctor Ramón Jiménez1-10/+15