index
:
iced
master
A cross-platform GUI library for Rust, inspired by Elm
cel
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
widget
/
src
/
scrollable.rs
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2023-09-20
Fix `clippy::match-wildcard-for-single-variants`
Héctor Ramón Jiménez
1
-2
/
+2
2023-09-20
Fix `clippy::default_trait_access`
Héctor Ramón Jiménez
1
-1
/
+1
2023-09-20
Fix `clippy::semicolon_if_nothing_returned`
Héctor Ramón Jiménez
1
-5
/
+5
2023-09-14
Fix `height` of vertical scroller in `Scrollbar`
Héctor Ramón Jiménez
1
-4
/
+4
2023-09-14
Fix width of horizontal scrollbar in `Scrollable`
Héctor Ramón Jiménez
1
-6
/
+6
2023-09-07
Add access to bounds/content bounds from a scrollable viewport. (#2072)
Nick
1
-0
/
+10
2023-08-30
Make `widget::Tree` mutable in `Widget::layout`
Héctor Ramón Jiménez
1
-2
/
+2
2023-08-30
Implement explicit text caching in the widget state tree
Héctor Ramón Jiménez
1
-1
/
+6
2023-08-26
Run `cargo fmt` with Rust 1.72
Héctor Ramón Jiménez
1
-6
/
+6
2023-07-27
Introduce `visible_bounds` operation for `Container`
Héctor Ramón Jiménez
1
-1
/
+13
2023-07-15
Add viewport to Widget::on_event
Cory Forsstrom
1
-2
/
+18
2023-07-13
Avoid redundant `max` in `absolute_offset_reversed`
Héctor Ramón Jiménez
1
-4
/
+2
2023-07-13
Introduce `absolute_offset_reversed` to `scrollable::Viewport`
Héctor Ramón Jiménez
1
-58
/
+17
2023-07-12
Expose methods to change viewport alignment
Cory Forsstrom
1
-1
/
+58
2023-07-12
Remove unnecessary cursor unavailability logic in `scrollable`
Héctor Ramón Jiménez
1
-22
/
+12
2023-07-12
Rename `absolute_from_start` to `translation` in `scrollable`
Héctor Ramón Jiménez
1
-3
/
+3
2023-07-12
Disambiguate `offset` from `translation` in `scrollable`
Héctor Ramón Jiménez
1
-37
/
+40
2023-07-12
Increase type-safety of `alignment` in `scrollable`
Héctor Ramón Jiménez
1
-63
/
+37
2023-07-12
Remove public fields from `Viewport`
Héctor Ramón Jiménez
1
-31
/
+3
2023-07-04
Add alignment to Viewport
Cory Forsstrom
1
-1
/
+27
2023-07-04
Make viewport bounds public
Cory Forsstrom
1
-2
/
+4
2023-07-04
Add scrollable alignment option
Cory Forsstrom
1
-8
/
+101
2023-06-27
Use `Option::filter` instead of `and_then` in `scrollable`
Héctor Ramón Jiménez
1
-14
/
+6
2023-06-27
Require a `Direction` when computing `State::offset` in `scrollable`
Héctor Ramón Jiménez
1
-18
/
+23
2023-06-27
Rename `ScrollbarProperties` to `Direction` in `scrollable`
Héctor Ramón Jiménez
1
-57
/
+48
2023-06-27
Make vertical scroll properties optional
Austin M. Reppert
1
-40
/
+90
2023-06-12
Only scroll w/ wheel if over scrollable
Cory Forsstrom
1
-0
/
+4
2023-06-08
Fix mouse interactions in `Scrollable`
Héctor Ramón Jiménez
1
-4
/
+24
2023-06-08
Take `Rectangle` by value in `Cursor` API
Héctor Ramón Jiménez
1
-3
/
+3
2023-06-08
Implement basic cursor availability
Héctor Ramón Jiménez
1
-131
/
+125
2023-05-23
clippy
Casper Storm
1
-2
/
+2
2023-05-23
Avoid drawing empty quads in `widget::scrollable`
Héctor Ramón Jiménez
1
-6
/
+10
2023-05-23
Remove min width 1 from scrollbar & scroller
Cory Forsstrom
1
-4
/
+2
2023-03-05
Rename `iced_native` to `iced_runtime`
Héctor Ramón Jiménez
1
-1
/
+1
2023-03-04
Create `iced_widget` subcrate and re-organize the whole codebase
Héctor Ramón Jiménez
1
-85
/
+83
2023-02-17
Fix `Scrollbar` bound calculations in `Scrollable`
Héctor Ramón Jiménez
1
-9
/
+12
2023-02-17
Use `f32` in `Length::Units` and rename it to `Fixed`
Héctor Ramón Jiménez
1
-44
/
+43
2023-02-16
scrollable: provide ID to operation.container
Nick Senger
1
-8
/
+11
2023-01-23
added function focused and focused_horizontal to theme.rs
Giuliano Bellini s294739
1
-2
/
+2
2023-01-23
debugging focused style not working
Giuliano Bellini s294739
1
-2
/
+2
2023-01-23
added new style for scrollable, to be applied when mouse is over the scrollab...
Giuliano Bellini s294739
1
-0
/
+4
2023-01-08
Avoid dragging scroll area when touching scrollbars for `Scrollable`
Héctor Ramón Jiménez
1
-1
/
+4
2023-01-08
Remove `PartialOrd` implementation for `Rectangle`
Héctor Ramón Jiménez
1
-1
/
+3
2023-01-08
Enable horizontal scrolling with `Shift+MouseWheel`
Héctor Ramón Jiménez
1
-1
/
+17
2023-01-08
Introduce `RelativeOffset` type in `scrollable`
Héctor Ramón Jiménez
1
-45
/
+40
2022-12-29
Reworked Scrollable to account for lack of widget order guarantees.
bungoboingo
1
-601
/
+532
2022-12-29
Add multidirectional scrolling capabilities to the existing Scrollable.
Bingus
1
-363
/
+753
2022-12-22
Add `Renderer` argument to `operate`
Héctor Ramón Jiménez
1
-0
/
+2
2022-12-20
Fix `clippy` lints for Rust 1.66
Héctor Ramón Jiménez
1
-3
/
+2
2022-12-05
Fix scroller in `Scrollable` always being drawn
Héctor Ramón Jiménez
1
-3
/
+2
[next]