Struct rerun::external::eframe::egui::ScrollArea
pub struct ScrollArea {Show 13 fields
scroll_enabled: Vec2b,
auto_shrink: Vec2b,
max_size: Vec2,
min_scrolled_size: Vec2,
scroll_bar_visibility: ScrollBarVisibility,
scroll_bar_rect: Option<Rect>,
id_salt: Option<Id>,
offset_x: Option<f32>,
offset_y: Option<f32>,
scrolling_enabled: bool,
drag_to_scroll: bool,
stick_to_end: Vec2b,
animated: bool,
}
Expand description
Add vertical and/or horizontal scrolling to a contained Ui
.
By default, scroll bars only show up when needed, i.e. when the contents
is larger than the container.
This is controlled by Self::scroll_bar_visibility
.
There are two flavors of scroll areas: solid and floating.
Solid scroll bars use up space, reducing the amount of space available
to the contents. Floating scroll bars float on top of the contents, covering it.
You can change the scroll style by changing the crate::style::Spacing::scroll
.
§Coordinate system
- content: size of contents (generally large; that’s why we want scroll bars)
- outer: size of scroll area including scroll bar(s)
- inner: excluding scroll bar(s). The area we clip the contents to.
If the floating scroll bars settings is turned on then inner == outer
.
§Example
egui::ScrollArea::vertical().show(ui, |ui| {
// Add a lot of widgets here.
});
You can scroll to an element using crate::Response::scroll_to_me
, Ui::scroll_to_cursor
and Ui::scroll_to_rect
.
Fields§
§scroll_enabled: Vec2b
§auto_shrink: Vec2b
§max_size: Vec2
§min_scrolled_size: Vec2
§scroll_bar_visibility: ScrollBarVisibility
§scroll_bar_rect: Option<Rect>
§id_salt: Option<Id>
§offset_x: Option<f32>
§offset_y: Option<f32>
§scrolling_enabled: bool
§drag_to_scroll: bool
§stick_to_end: Vec2b
§animated: bool
Implementations§
§impl ScrollArea
impl ScrollArea
pub fn horizontal() -> ScrollArea
pub fn horizontal() -> ScrollArea
Create a horizontal scroll area.
pub fn vertical() -> ScrollArea
pub fn vertical() -> ScrollArea
Create a vertical scroll area.
pub fn both() -> ScrollArea
pub fn both() -> ScrollArea
Create a bi-directional (horizontal and vertical) scroll area.
pub fn neither() -> ScrollArea
pub fn neither() -> ScrollArea
Create a scroll area where both direction of scrolling is disabled. It’s unclear why you would want to do this.
pub fn new(scroll_enabled: impl Into<Vec2b>) -> ScrollArea
pub fn new(scroll_enabled: impl Into<Vec2b>) -> ScrollArea
Create a scroll area where you decide which axis has scrolling enabled.
For instance, ScrollArea::new([true, false])
enables horizontal scrolling.
pub fn max_width(self, max_width: f32) -> ScrollArea
pub fn max_width(self, max_width: f32) -> ScrollArea
The maximum width of the outer frame of the scroll area.
Use f32::INFINITY
if you want the scroll area to expand to fit the surrounding Ui
(default).
See also Self::auto_shrink
.
pub fn max_height(self, max_height: f32) -> ScrollArea
pub fn max_height(self, max_height: f32) -> ScrollArea
The maximum height of the outer frame of the scroll area.
Use f32::INFINITY
if you want the scroll area to expand to fit the surrounding Ui
(default).
See also Self::auto_shrink
.
pub fn min_scrolled_width(self, min_scrolled_width: f32) -> ScrollArea
pub fn min_scrolled_width(self, min_scrolled_width: f32) -> ScrollArea
The minimum width of a horizontal scroll area which requires scroll bars.
The ScrollArea
will only become smaller than this if the content is smaller than this
(and so we don’t require scroll bars).
Default: 64.0
.
pub fn min_scrolled_height(self, min_scrolled_height: f32) -> ScrollArea
pub fn min_scrolled_height(self, min_scrolled_height: f32) -> ScrollArea
The minimum height of a vertical scroll area which requires scroll bars.
The ScrollArea
will only become smaller than this if the content is smaller than this
(and so we don’t require scroll bars).
Default: 64.0
.
pub fn scroll_bar_visibility(
self,
scroll_bar_visibility: ScrollBarVisibility
) -> ScrollArea
pub fn scroll_bar_visibility( self, scroll_bar_visibility: ScrollBarVisibility ) -> ScrollArea
Set the visibility of both horizontal and vertical scroll bars.
With ScrollBarVisibility::VisibleWhenNeeded
(default), the scroll bar will be visible only when needed.
pub fn scroll_bar_rect(self, scroll_bar_rect: Rect) -> ScrollArea
pub fn scroll_bar_rect(self, scroll_bar_rect: Rect) -> ScrollArea
Specify within which screen-space rectangle to show the scroll bars.
This can be used to move the scroll bars to a smaller region of the ScrollArea
,
for instance if you are painting a sticky header on top of it.
pub fn id_source(self, id_salt: impl Hash) -> ScrollArea
👎Deprecated: Renamed id_salt
pub fn id_source(self, id_salt: impl Hash) -> ScrollArea
A source for the unique Id
, e.g. .id_source("second_scroll_area")
or .id_source(loop_index)
.
pub fn id_salt(self, id_salt: impl Hash) -> ScrollArea
pub fn id_salt(self, id_salt: impl Hash) -> ScrollArea
A source for the unique Id
, e.g. .id_salt("second_scroll_area")
or .id_salt(loop_index)
.
pub fn scroll_offset(self, offset: Vec2) -> ScrollArea
pub fn scroll_offset(self, offset: Vec2) -> ScrollArea
Set the horizontal and vertical scroll offset position.
Positive offset means scrolling down/right.
See also: Self::vertical_scroll_offset
, Self::horizontal_scroll_offset
,
Ui::scroll_to_cursor
and
Response::scroll_to_me
pub fn vertical_scroll_offset(self, offset: f32) -> ScrollArea
pub fn vertical_scroll_offset(self, offset: f32) -> ScrollArea
Set the vertical scroll offset position.
Positive offset means scrolling down.
See also: Self::scroll_offset
, Ui::scroll_to_cursor
and
Response::scroll_to_me
pub fn horizontal_scroll_offset(self, offset: f32) -> ScrollArea
pub fn horizontal_scroll_offset(self, offset: f32) -> ScrollArea
Set the horizontal scroll offset position.
Positive offset means scrolling right.
See also: Self::scroll_offset
, Ui::scroll_to_cursor
and
Response::scroll_to_me
pub fn hscroll(self, hscroll: bool) -> ScrollArea
pub fn hscroll(self, hscroll: bool) -> ScrollArea
Turn on/off scrolling on the horizontal axis.
pub fn vscroll(self, vscroll: bool) -> ScrollArea
pub fn vscroll(self, vscroll: bool) -> ScrollArea
Turn on/off scrolling on the vertical axis.
pub fn scroll(self, scroll_enabled: impl Into<Vec2b>) -> ScrollArea
pub fn scroll(self, scroll_enabled: impl Into<Vec2b>) -> ScrollArea
Turn on/off scrolling on the horizontal/vertical axes.
You can pass in false
, true
, [false, true]
etc.
pub fn scroll2(self, scroll_enabled: impl Into<Vec2b>) -> ScrollArea
👎Deprecated: Renamed to scroll
pub fn scroll2(self, scroll_enabled: impl Into<Vec2b>) -> ScrollArea
scroll
Turn on/off scrolling on the horizontal/vertical axes.
pub fn enable_scrolling(self, enable: bool) -> ScrollArea
pub fn enable_scrolling(self, enable: bool) -> ScrollArea
Control the scrolling behavior.
- If
true
(default), the scroll area will respond to user scrolling. - If
false
, the scroll area will not respond to user scrolling.
This can be used, for example, to optionally freeze scrolling while the user
is typing text in a crate::TextEdit
widget contained within the scroll area.
This controls both scrolling directions.
pub fn drag_to_scroll(self, drag_to_scroll: bool) -> ScrollArea
pub fn drag_to_scroll(self, drag_to_scroll: bool) -> ScrollArea
Can the user drag the scroll area to scroll?
This is useful for touch screens.
If true
, the ScrollArea
will sense drags.
Default: true
.
pub fn auto_shrink(self, auto_shrink: impl Into<Vec2b>) -> ScrollArea
pub fn auto_shrink(self, auto_shrink: impl Into<Vec2b>) -> ScrollArea
For each axis, should the containing area shrink if the content is small?
- If
true
, egui will add blank space outside the scroll area. - If
false
, egui will add blank space inside the scroll area.
Default: true
.
pub fn animated(self, animated: bool) -> ScrollArea
pub fn animated(self, animated: bool) -> ScrollArea
Should the scroll area animate scroll_to_*
functions?
Default: true
.
pub fn stick_to_right(self, stick: bool) -> ScrollArea
pub fn stick_to_right(self, stick: bool) -> ScrollArea
The scroll handle will stick to the rightmost position even while the content size changes dynamically. This can be useful to simulate text scrollers coming in from right hand side. The scroll handle remains stuck until user manually changes position. Once “unstuck” it will remain focused on whatever content viewport the user left it on. If the scroll handle is dragged all the way to the right it will again become stuck and remain there until manually pulled from the end position.
pub fn stick_to_bottom(self, stick: bool) -> ScrollArea
pub fn stick_to_bottom(self, stick: bool) -> ScrollArea
The scroll handle will stick to the bottom position even while the content size changes dynamically. This can be useful to simulate terminal UIs or log/info scrollers. The scroll handle remains stuck until user manually changes position. Once “unstuck” it will remain focused on whatever content viewport the user left it on. If the scroll handle is dragged to the bottom it will again become stuck and remain there until manually pulled from the end position.
§impl ScrollArea
impl ScrollArea
pub fn show<R>(
self,
ui: &mut Ui,
add_contents: impl FnOnce(&mut Ui) -> R
) -> ScrollAreaOutput<R>
pub fn show<R>( self, ui: &mut Ui, add_contents: impl FnOnce(&mut Ui) -> R ) -> ScrollAreaOutput<R>
Show the ScrollArea
, and add the contents to the viewport.
If the inner area can be very long, consider using Self::show_rows
instead.
pub fn show_rows<R>(
self,
ui: &mut Ui,
row_height_sans_spacing: f32,
total_rows: usize,
add_contents: impl FnOnce(&mut Ui, Range<usize>) -> R
) -> ScrollAreaOutput<R>
pub fn show_rows<R>( self, ui: &mut Ui, row_height_sans_spacing: f32, total_rows: usize, add_contents: impl FnOnce(&mut Ui, Range<usize>) -> R ) -> ScrollAreaOutput<R>
Efficiently show only the visible part of a large number of rows.
let text_style = egui::TextStyle::Body;
let row_height = ui.text_style_height(&text_style);
// let row_height = ui.spacing().interact_size.y; // if you are adding buttons instead of labels.
let total_rows = 10_000;
egui::ScrollArea::vertical().show_rows(ui, row_height, total_rows, |ui, row_range| {
for row in row_range {
let text = format!("Row {}/{}", row + 1, total_rows);
ui.label(text);
}
});
pub fn show_viewport<R>(
self,
ui: &mut Ui,
add_contents: impl FnOnce(&mut Ui, Rect) -> R
) -> ScrollAreaOutput<R>
pub fn show_viewport<R>( self, ui: &mut Ui, add_contents: impl FnOnce(&mut Ui, Rect) -> R ) -> ScrollAreaOutput<R>
This can be used to only paint the visible part of the contents.
add_contents
is given the viewport rectangle, which is the relative view of the content.
So if the passed rect has min = zero, then show the top left content (the user has not scrolled).
Trait Implementations§
§impl Clone for ScrollArea
impl Clone for ScrollArea
§fn clone(&self) -> ScrollArea
fn clone(&self) -> ScrollArea
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for ScrollArea
impl RefUnwindSafe for ScrollArea
impl Send for ScrollArea
impl Sync for ScrollArea
impl Unpin for ScrollArea
impl UnwindSafe for ScrollArea
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request