pub struct Slider<T> {
pub value: f32,
pub range: RangeInclusive<f32>,
pub on_input: Option<Box<dyn FnMut(&mut EventCx<'_, '_>, &mut T, f32)>>,
pub axis: Axis,
pub width: Option<f32>,
pub length: Option<f32>,
pub color: Option<Color>,
pub background: Option<Color>,
pub border_radius: Option<BorderRadius>,
pub border_width: Option<BorderWidth>,
pub border_color: Option<Color>,
}
Expand description
A slider.
Can be styled with a SliderStyle
.
Fields§
§value: f32
The value of the slider.
range: RangeInclusive<f32>
The range of the slider.
on_input: Option<Box<dyn FnMut(&mut EventCx<'_, '_>, &mut T, f32)>>
The callback for when the value changes.
axis: Axis
The axis of the slider.
width: Option<f32>
The width of the slider.
length: Option<f32>
The length of the slider.
color: Option<Color>
The foreground color of the slider.
background: Option<Color>
The background color of the slider.
border_radius: Option<BorderRadius>
The border radius of the slider.
border_width: Option<BorderWidth>
The border width of the slider.
border_color: Option<Color>
The border color of the slider.
Implementations§
Source§impl<T> Slider<T>
impl<T> Slider<T>
Sourcepub fn value(self, value: impl Into<f32>) -> Slider<T>
pub fn value(self, value: impl Into<f32>) -> Slider<T>
Set self.value
.
The value of the slider.
Sourcepub fn range(self, range: impl Into<RangeInclusive<f32>>) -> Slider<T>
pub fn range(self, range: impl Into<RangeInclusive<f32>>) -> Slider<T>
Set self.range
.
The range of the slider.
Sourcepub fn width(self, width: impl Into<f32>) -> Slider<T>
pub fn width(self, width: impl Into<f32>) -> Slider<T>
Set self.width
.
The width of the slider.
Sourcepub fn length(self, length: impl Into<f32>) -> Slider<T>
pub fn length(self, length: impl Into<f32>) -> Slider<T>
Set self.length
.
The length of the slider.
Sourcepub fn color(self, color: impl Into<Color>) -> Slider<T>
pub fn color(self, color: impl Into<Color>) -> Slider<T>
Set self.color
.
The foreground color of the slider.
Sourcepub fn background(self, background: impl Into<Color>) -> Slider<T>
pub fn background(self, background: impl Into<Color>) -> Slider<T>
Set self.background
.
The background color of the slider.
Sourcepub fn border_radius(self, border_radius: impl Into<BorderRadius>) -> Slider<T>
pub fn border_radius(self, border_radius: impl Into<BorderRadius>) -> Slider<T>
Set self.border_radius
.
The border radius of the slider.
Sourcepub fn border_width(self, border_width: impl Into<BorderWidth>) -> Slider<T>
pub fn border_width(self, border_width: impl Into<BorderWidth>) -> Slider<T>
Set self.border_width
.
The border width of the slider.
Sourcepub fn border_color(self, border_color: impl Into<Color>) -> Slider<T>
pub fn border_color(self, border_color: impl Into<Color>) -> Slider<T>
Set self.border_color
.
The border color of the slider.