Struct arcdps_imgui::DragRange

source ·
pub struct DragRange<T, L, F = &'static str, M = &'static str> { /* private fields */ }
Expand description

Builder for a drag slider widget.

Implementations§

source§

impl<T: DataTypeKind, L: AsRef<str>> DragRange<T, L>

source

pub fn new(label: L) -> DragRange<T, L>

Constructs a new drag slider builder.

source§

impl<T, L, F, M> DragRange<T, L, F, M>
where T: DataTypeKind, L: AsRef<str>, F: AsRef<str>, M: AsRef<str>,

source

pub fn range(self, min: T, max: T) -> Self

source

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

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

source

pub fn display_format<F2: AsRef<str>>( self, display_format: F2 ) -> DragRange<T, L, F2, M>

Sets the display format using a C-style printf string

source

pub fn max_display_format<M2: AsRef<str>>( self, max_display_format: M2 ) -> DragRange<T, L, F, M2>

Sets the display format for the max value using a C-style printf string

source

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

Replaces all current settings with the given flags

source§

impl<L, F, M> DragRange<f32, L, F, M>
where L: AsRef<str>, F: AsRef<str>, M: AsRef<str>,

source

pub fn build(self, ui: &Ui<'_>, min: &mut f32, max: &mut f32) -> bool

Builds a drag range slider that is bound to the given min/max values.

Returns true if the slider value was changed.

source§

impl<L, F, M> DragRange<i32, L, F, M>
where L: AsRef<str>, F: AsRef<str>, M: AsRef<str>,

source

pub fn build(self, ui: &Ui<'_>, min: &mut i32, max: &mut i32) -> bool

Builds a drag range slider that is bound to the given min/max values.

Returns true if the slider value was changed.

Trait Implementations§

source§

impl<T: Clone, L: Clone, F: Clone, M: Clone> Clone for DragRange<T, L, F, M>

source§

fn clone(&self) -> DragRange<T, L, F, M>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, L: Debug, F: Debug, M: Debug> Debug for DragRange<T, L, F, M>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Copy, L: Copy, F: Copy, M: Copy> Copy for DragRange<T, L, F, M>

Auto Trait Implementations§

§

impl<T, L, F, M> Freeze for DragRange<T, L, F, M>
where F: Freeze, L: Freeze, M: Freeze, T: Freeze,

§

impl<T, L, F, M> RefUnwindSafe for DragRange<T, L, F, M>

§

impl<T, L, F, M> Send for DragRange<T, L, F, M>
where F: Send, L: Send, M: Send, T: Send,

§

impl<T, L, F, M> Sync for DragRange<T, L, F, M>
where F: Sync, L: Sync, M: Sync, T: Sync,

§

impl<T, L, F, M> Unpin for DragRange<T, L, F, M>
where F: Unpin, L: Unpin, M: Unpin, T: Unpin,

§

impl<T, L, F, M> UnwindSafe for DragRange<T, L, F, M>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.