pub struct ScrollUnitsMix<P>(/* private fields */);Expand description
m Properties that define scroll units.
Implementations§
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn v_line_unit(&self, unit: impl IntoVar<Length>)
pub fn v_line_unit(&self, unit: impl IntoVar<Length>)
P Vertical offset added when the SCROLL_DOWN_CMD runs and removed when the SCROLL_UP_CMD runs.
Relative lengths are relative to the viewport height.
This property sets the VERTICAL_LINE_UNIT_VAR.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn h_line_unit(&self, unit: impl IntoVar<Length>)
pub fn h_line_unit(&self, unit: impl IntoVar<Length>)
P Horizontal offset added when the SCROLL_RIGHT_CMD runs and removed when the SCROLL_LEFT_CMD runs.
Relative lengths are relative to the viewport width.
This property sets the HORIZONTAL_LINE_UNIT_VAR.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn line_units(
&self,
horizontal: impl IntoVar<Length>,
vertical: impl IntoVar<Length>,
)
pub fn line_units( &self, horizontal: impl IntoVar<Length>, vertical: impl IntoVar<Length>, )
P Horizontal and vertical offsets used when scrolling.
This property sets the h_line_unit and v_line_unit.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn alt_factor(&self, factor: impl IntoVar<Factor>)
pub fn alt_factor(&self, factor: impl IntoVar<Factor>)
P Scroll unit multiplier used when alternate scrolling.
This property sets the ALT_FACTOR_VAR.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn v_page_unit(&self, unit: impl IntoVar<Length>)
pub fn v_page_unit(&self, unit: impl IntoVar<Length>)
P Vertical offset added when the PAGE_DOWN_CMD runs and removed when the PAGE_UP_CMD runs.
Relative lengths are relative to the viewport height.
This property sets the VERTICAL_PAGE_UNIT_VAR.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn h_page_unit(&self, unit: impl IntoVar<Length>)
pub fn h_page_unit(&self, unit: impl IntoVar<Length>)
P Horizontal offset added when the PAGE_RIGHT_CMD runs and removed when the PAGE_LEFT_CMD runs.
Relative lengths are relative to the viewport width.
This property sets the HORIZONTAL_PAGE_UNIT_VAR.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn page_units(
&self,
horizontal: impl IntoVar<Length>,
vertical: impl IntoVar<Length>,
)
pub fn page_units( &self, horizontal: impl IntoVar<Length>, vertical: impl IntoVar<Length>, )
P Horizontal and vertical offsets used when page-scrolling.
This property sets the h_page_unit and v_page_unit.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn h_wheel_unit(&self, unit: impl IntoVar<Length>)
pub fn h_wheel_unit(&self, unit: impl IntoVar<Length>)
P Horizontal offset added when the mouse wheel is scrolling by lines.
The unit value is multiplied by the MouseScrollDelta::LineDelta x value to determinate the scroll delta.
This property sets the HORIZONTAL_WHEEL_UNIT_VAR.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn v_wheel_unit(&self, unit: impl IntoVar<Length>)
pub fn v_wheel_unit(&self, unit: impl IntoVar<Length>)
P Vertical offset added when the mouse wheel is scrolling by lines.
The unit value is multiplied by the MouseScrollDelta::LineDelta y value to determinate the scroll delta.
This property sets the VERTICAL_WHEEL_UNIT_VAR`.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn wheel_units(
&self,
horizontal: impl IntoVar<Length>,
vertical: impl IntoVar<Length>,
)
pub fn wheel_units( &self, horizontal: impl IntoVar<Length>, vertical: impl IntoVar<Length>, )
P Horizontal and vertical offsets used when mouse wheel scrolling.
This property sets the h_wheel_unit and v_wheel_unit.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn zoom_wheel_unit(&self, unit: impl IntoVar<Factor>)
pub fn zoom_wheel_unit(&self, unit: impl IntoVar<Factor>)
P Scale delta added when the mouse wheel is zooming by lines.
The unit value is multiplied by the MouseScrollDelta::LineDelta value to determinate the scale delta.
This property sets the ZOOM_WHEEL_UNIT_VAR.
Source§impl<P: WidgetImpl> ScrollUnitsMix<P>
impl<P: WidgetImpl> ScrollUnitsMix<P>
Sourcepub fn define_viewport_unit(&self, enabled: impl IntoVar<bool>)
pub fn define_viewport_unit(&self, enabled: impl IntoVar<bool>)
P If the scroll defines its viewport size as the LayoutMetrics::viewport for the scroll content.
This property sets the DEFINE_VIEWPORT_UNIT_VAR.
Trait Implementations§
Source§impl<P> Deref for ScrollUnitsMix<P>
impl<P> Deref for ScrollUnitsMix<P>
Auto Trait Implementations§
impl<P> Freeze for ScrollUnitsMix<P>where
P: Freeze,
impl<P> RefUnwindSafe for ScrollUnitsMix<P>where
P: RefUnwindSafe,
impl<P> Send for ScrollUnitsMix<P>where
P: Send,
impl<P> Sync for ScrollUnitsMix<P>where
P: Sync,
impl<P> Unpin for ScrollUnitsMix<P>where
P: Unpin,
impl<P> UnwindSafe for ScrollUnitsMix<P>where
P: UnwindSafe,
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
§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 more