[][src]Struct imgui::Drag

#[must_use]pub struct Drag<'a, T: DataTypeKind> { /* fields omitted */ }

Builder for a drag slider widget.

Implementations

impl<'a, T: DataTypeKind> Drag<'a, T>[src]

pub fn new(label: &ImStr) -> Drag<'_, T>[src]

Constructs a new drag slider builder.

pub fn range<R: InclusiveRangeBounds<T>>(self, range: R) -> Self[src]

Sets the range (inclusive)

pub fn speed(self, speed: f32) -> Self[src]

Sets the value increment for a movement of one pixel.

Example: speed=0.2 means mouse needs to move 5 pixels to increase the slider value by 1

pub fn display_format(self, display_format: &'a ImStr) -> Self[src]

Sets the display format using a C-style printf string

pub fn flags(self, flags: SliderFlags) -> Self[src]

Replaces all current settings with the given flags

pub fn build(self, _: &Ui<'_>, value: &mut T) -> bool[src]

Builds a drag slider that is bound to the given value.

Returns true if the slider value was changed.

pub fn build_array(self, _: &Ui<'_>, values: &mut [T]) -> bool[src]

Builds a horizontal array of multiple drag sliders attached to the given slice.

Returns true if any slider value was changed.

Trait Implementations

impl<'a, T: Clone + DataTypeKind> Clone for Drag<'a, T>[src]

impl<'a, T: Copy + DataTypeKind> Copy for Drag<'a, T>[src]

impl<'a, T: Debug + DataTypeKind> Debug for Drag<'a, T>[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for Drag<'a, T> where
    T: RefUnwindSafe
[src]

impl<'a, T> Send for Drag<'a, T> where
    T: Send
[src]

impl<'a, T> Sync for Drag<'a, T> where
    T: Sync
[src]

impl<'a, T> Unpin for Drag<'a, T> where
    T: Unpin
[src]

impl<'a, T> UnwindSafe for Drag<'a, T> where
    T: UnwindSafe
[src]

Blanket Implementations

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

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

impl<T> BorrowMut<T> for T where
    T: ?Sized
[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<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<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.