[][src]Struct kas::widget::Slider

pub struct Slider<T: SliderType, D: Directional> { /* fields omitted */ }

A slider

Sliders allow user input of a value from a fixed range.

Methods

impl<T: SliderType, D: Directional + Default> Slider<T, D>[src]

pub fn new(min: T, max: T, step: T) -> Self[src]

Construct a slider

Values vary between the given min and max. When keyboard navigation is used, arrow keys will increment the value by step and page up/down keys by step * 16.

The initial value defaults to the range's lower bound but may be specified via Slider::with_value.

impl<T: SliderType, D: Directional> Slider<T, D>[src]

pub fn new_with_direction(min: T, max: T, step: T, direction: D) -> Self[src]

Construct a slider with the given direction

Values vary between the given min and max. When keyboard navigation is used, arrow keys will increment the value by step and page up/down keys by step * 16.

The initial value defaults to the range's lower bound but may be specified via Slider::with_value.

pub fn with_value(self, value: T) -> Self[src]

Set the initial value

pub fn value(&self) -> T[src]

Get the current value

pub fn set_value(&mut self, value: T) -> TkAction[src]

Set the value

Returns TkAction::Redraw if a redraw is required.

Trait Implementations

impl<T: Clone + SliderType, D: Clone + Directional> Clone for Slider<T, D>[src]

impl<T: Debug + SliderType, D: Debug + Directional> Debug for Slider<T, D>[src]

impl<T: Default + SliderType, D: Default + Directional> Default for Slider<T, D>[src]

impl<T: SliderType, D: Directional> Handler for Slider<T, D>[src]

type Msg = T

Type of message returned by this widget Read more

impl<T: SliderType, D: Directional> Layout for Slider<T, D>[src]

impl<T: SliderType, D: Directional> SendEvent for Slider<T, D>[src]

impl<T: SliderType, D: Directional> Widget for Slider<T, D>[src]

impl<T: SliderType, D: Directional> WidgetChildren for Slider<T, D>[src]

impl<T: SliderType, D: Directional> WidgetConfig for Slider<T, D>[src]

impl<T: SliderType, D: Directional> WidgetCore for Slider<T, D>[src]

Auto Trait Implementations

impl<T, D> RefUnwindSafe for Slider<T, D> where
    D: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, D> Send for Slider<T, D> where
    D: Send,
    T: Send

impl<T, D> Sync for Slider<T, D> where
    D: Sync,
    T: Sync

impl<T, D> Unpin for Slider<T, D> where
    D: Unpin,
    T: Unpin

impl<T, D> UnwindSafe for Slider<T, D> where
    D: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<Src, Scheme> ApproxFrom<Src, Scheme> for Src where
    Scheme: ApproxScheme
[src]

type Err = NoError

The error type produced by a failed conversion.

impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Src where
    Dst: ApproxFrom<Src, Scheme>,
    Scheme: ApproxScheme
[src]

type Err = <Dst as ApproxFrom<Src, Scheme>>::Err

The error type produced by a failed conversion.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, Dst> ConvAsUtil<Dst> for T[src]

impl<T> ConvUtil for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<Src> TryFrom<Src> for Src[src]

type Err = NoError

The error type produced by a failed conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<Src, Dst> TryInto<Dst> for Src where
    Dst: TryFrom<Src>, 
[src]

type Err = <Dst as TryFrom<Src>>::Err

The error type produced by a failed conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<Src> ValueFrom<Src> for Src[src]

type Err = NoError

The error type produced by a failed conversion.

impl<Src, Dst> ValueInto<Dst> for Src where
    Dst: ValueFrom<Src>, 
[src]

type Err = <Dst as ValueFrom<Src>>::Err

The error type produced by a failed conversion.