Struct zng::scroll::ScrollUnitsMix
source · pub struct ScrollUnitsMix<P>(/* private fields */);
Expand description
m
Properties that define scroll units.
Implementations§
source§impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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> ScrollUnitsMix<P>where
P: WidgetImpl,
impl<P> ScrollUnitsMix<P>where
P: WidgetImpl,
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>
source§impl<P> DerefMut for ScrollUnitsMix<P>
impl<P> DerefMut 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> 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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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