summaryrefslogtreecommitdiffstats
path: root/widget/src/scrollable.rs
diff options
context:
space:
mode:
authorLibravatar Cory Forsstrom <cforsstrom18@gmail.com>2023-06-24 18:01:14 -0700
committerLibravatar Cory Forsstrom <cforsstrom18@gmail.com>2023-07-04 10:43:12 -0700
commitd79cedd8da99345947f5b9fcb1ebc3a145cc4112 (patch)
tree7c50a75b8f60b953e13d3f508ac2ce5b7f9d9706 /widget/src/scrollable.rs
parent905c307f0b78d9957a82a95b0ba537be23fa4035 (diff)
downloadiced-d79cedd8da99345947f5b9fcb1ebc3a145cc4112.tar.gz
iced-d79cedd8da99345947f5b9fcb1ebc3a145cc4112.tar.bz2
iced-d79cedd8da99345947f5b9fcb1ebc3a145cc4112.zip
Add alignment to Viewport
Diffstat (limited to 'widget/src/scrollable.rs')
-rw-r--r--widget/src/scrollable.rs28
1 files changed, 27 insertions, 1 deletions
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs
index 79e5fe3e..3912f445 100644
--- a/widget/src/scrollable.rs
+++ b/widget/src/scrollable.rs
@@ -577,7 +577,15 @@ pub fn update<Message>(
content_bounds,
);
- notify_on_scroll(state, on_scroll, bounds, content_bounds, shell);
+ notify_on_scroll(
+ state,
+ on_scroll,
+ bounds,
+ content_bounds,
+ horizontal_alignment,
+ vertical_alignment,
+ shell,
+ );
return event::Status::Captured;
}
@@ -623,6 +631,8 @@ pub fn update<Message>(
on_scroll,
bounds,
content_bounds,
+ horizontal_alignment,
+ vertical_alignment,
shell,
);
}
@@ -669,6 +679,8 @@ pub fn update<Message>(
on_scroll,
bounds,
content_bounds,
+ horizontal_alignment,
+ vertical_alignment,
shell,
);
@@ -705,6 +717,8 @@ pub fn update<Message>(
on_scroll,
bounds,
content_bounds,
+ horizontal_alignment,
+ vertical_alignment,
shell,
);
}
@@ -746,6 +760,8 @@ pub fn update<Message>(
on_scroll,
bounds,
content_bounds,
+ horizontal_alignment,
+ vertical_alignment,
shell,
);
}
@@ -782,6 +798,8 @@ pub fn update<Message>(
on_scroll,
bounds,
content_bounds,
+ horizontal_alignment,
+ vertical_alignment,
shell,
);
@@ -997,6 +1015,8 @@ fn notify_on_scroll<Message>(
on_scroll: &Option<Box<dyn Fn(Viewport) -> Message + '_>>,
bounds: Rectangle,
content_bounds: Rectangle,
+ horizontal_alignment: Alignment,
+ vertical_alignment: Alignment,
shell: &mut Shell<'_, Message>,
) {
if let Some(on_scroll) = on_scroll {
@@ -1011,6 +1031,8 @@ fn notify_on_scroll<Message>(
offset_y: state.offset_y,
bounds,
content_bounds,
+ horizontal_alignment,
+ vertical_alignment,
};
// Don't publish redundant viewports to shell
@@ -1103,6 +1125,10 @@ pub struct Viewport {
pub bounds: Rectangle,
/// The content bounds of the [`Scrollable`].
pub content_bounds: Rectangle,
+ /// The horizontal [`Alignment`] of the [`Scrollable`].
+ pub horizontal_alignment: Alignment,
+ /// The vertical [`Alignment`] of the [`Scrollable`].
+ pub vertical_alignment: Alignment,
}
impl Viewport {