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-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
2022-11-29
Allow &mut self in overlay
tarkah
1
-2
/
+2
2022-11-11
Allow converting from widget-specific IDs to generic ID
mtkennerly
1
-0
/
+6
2022-11-09
Introduce `Custom` variants for every style in the built-in `Theme`
Héctor Ramón Jiménez
1
-2
/
+2
2022-11-03
non uniform border radius for quads
Robert Krahn
1
-2
/
+2
2022-08-05
Write missing documentation in `iced_native`
Héctor Ramón Jiménez
1
-0
/
+7
2022-08-04
Implement `scrollable::snap_to` operation
Héctor Ramón Jiménez
1
-3
/
+39
2022-07-28
Implement `Widget::operate` for `TextInput`
Héctor Ramón Jiménez
1
-0
/
+16
2022-07-27
Replace stateful widgets with new `iced_pure` API
Héctor Ramón Jiménez
1
-212
/
+190
2022-07-18
Fix `max_height` for `Scrollable`
Héctor Ramón Jiménez
1
-1
/
+3
2022-07-09
Fix further `clippy` lints
Héctor Ramón Jiménez
1
-3
/
+3
2022-06-07
Implement theme styling for `Scrollable`
Héctor Ramón Jiménez
1
-12
/
+25
2022-05-14
Draft first-class `Theme` support
Héctor Ramón Jiménez
1
-0
/
+2
2022-03-29
Loose lifetime bounds in `pure::Widget` implementations
Héctor Ramón Jiménez
1
-3
/
+3
2022-03-09
Remove redundant `widget` modules in subcrates
Héctor Ramón Jiménez
1
-0
/
+7
2022-02-23
Remove `hash_layout` method from `Widget` trait
Héctor Ramón Jiménez
1
-13
/
+3
2022-02-12
Implement `Scrollable` in `iced_pure`
Héctor Ramón Jiménez
1
-369
/
+520
2022-01-11
Introduce `Renderer` argument to `mouse_interaction` and `on_event`
Héctor Ramón Jiménez
1
-1
/
+4
2021-12-07
Remove unused field in `scrollable::Scrollbar`
Héctor Ramón Jiménez
1
-4
/
+0
2021-11-29
Introduce `Shell` type in `iced_native`
Héctor Ramón Jiménez
1
-9
/
+9
2021-11-04
Rename `fill_rectangle` to `fill_quad` in `Renderer`
Héctor Ramón Jiménez
1
-16
/
+20
2021-11-02
Move `viewport` argument to last position in `mouse_interaction` methods
Héctor Ramón Jiménez
1
-2
/
+2
2021-10-31
Reintroduce `Box` for `style_sheet` in `Scrollable`
Héctor Ramón Jiménez
1
-3
/
+6
2021-10-31
Remove `widget` module re-exports in `iced_native`
Héctor Ramón Jiménez
1
-2
/
+3
2021-10-28
Fix scrollbar clipping in `Scrollable` draw logic
Héctor Ramón Jiménez
1
-25
/
+32
2021-10-25
Implement `Widget::mouse_interaction` for `PaneGrid`
Héctor Ramón Jiménez
1
-10
/
+15
[prev]
[next]