Struct cursive::prelude::SliderView
[−]
[src]
pub struct SliderView {
// some fields omitted
}A horizontal or vertical slider.
Methods
impl SliderView[src]
fn new(orientation: Orientation, max_value: usize) -> Self
Creates a new SliderView in the given orientation.
The view will have a fixed length of max_value,
with one tick per block.
fn vertical(max_value: usize) -> Self
Creates a new vertical SliderView.
fn horizontal(max_value: usize) -> Self
Creates a new horizontal SliderView.
fn set_value(&mut self, value: usize) -> EventResult
Sets the current value.
Returns an event result with a possible callback,
if on_change was set..
fn value(self, value: usize) -> Self
Sets the current value.
Chainable variant.
fn on_change<F>(self, callback: F) -> Self where F: Fn(&mut Cursive, usize) + 'static
Sets a callback to be called when the slider is moved.
fn on_enter<F>(self, callback: F) -> Self where F: Fn(&mut Cursive, usize) + 'static
Sets a callback to be called when the
Trait Implementations
impl View for SliderView[src]
fn draw(&self, printer: &Printer)
Draws the view with the given printer (includes bounds) and focus.
fn get_min_size(&mut self, _: Vec2) -> Vec2
Returns the minimum size the view requires with the given restrictions. Read more
fn on_event(&mut self, event: Event) -> EventResult
Called when a key was pressed. Default implementation just ignores it.
fn take_focus(&mut self, _: Direction) -> bool
This view is offered focus. Will it take it? Read more
fn needs_relayout(&self) -> bool
Returns true if the view content changed since last layout phase. Read more
fn layout(&mut self, Vec2)
Called once the size for this view has been decided, Read more
fn find(&mut self, &Selector) -> Option<&mut Any>
Finds the view pointed to by the given path. Read more