[]Struct imgui::ImGuiColorEditFlags

#[repr(C)]
pub struct ImGuiColorEditFlags { /* fields omitted */ }

Color edit flags

Methods

impl ImGuiColorEditFlags

pub const NoAlpha: ImGuiColorEditFlags

ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).

pub const NoPicker: ImGuiColorEditFlags

ColorEdit: disable picker when clicking on colored square.

pub const NoOptions: ImGuiColorEditFlags

ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.

pub const NoSmallPreview: ImGuiColorEditFlags

ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)

pub const NoInputs: ImGuiColorEditFlags

ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).

pub const NoTooltip: ImGuiColorEditFlags

ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.

pub const NoLabel: ImGuiColorEditFlags

ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).

pub const NoSidePreview: ImGuiColorEditFlags

ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.

pub const NoDragDrop: ImGuiColorEditFlags

ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.

pub const AlphaBar: ImGuiColorEditFlags

ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.

pub const AlphaPreview: ImGuiColorEditFlags

ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.

pub const AlphaPreviewHalf: ImGuiColorEditFlags

ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.

pub const HDR: ImGuiColorEditFlags

(WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use ImGuiColorEditFlags::Float flag as well).

pub const RGB: ImGuiColorEditFlags

ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.

pub const HSV: ImGuiColorEditFlags

pub const HEX: ImGuiColorEditFlags

pub const Uint8: ImGuiColorEditFlags

ColorEdit, ColorPicker, ColorButton: display values formatted as 0..255.

pub const Float: ImGuiColorEditFlags

ColorEdit, ColorPicker, ColorButton: display values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.

pub const PickerHueBar: ImGuiColorEditFlags

ColorPicker: bar for Hue, rectangle for Sat/Value.

pub const PickerHueWheel: ImGuiColorEditFlags

ColorPicker: wheel for Hue, triangle for Sat/Value.

pub fn empty() -> ImGuiColorEditFlags

Returns an empty set of flags.

pub fn all() -> ImGuiColorEditFlags

Returns the set containing all flags.

pub fn bits(&self) -> i32

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: i32) -> Option<ImGuiColorEditFlags>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub fn from_bits_truncate(bits: i32) -> ImGuiColorEditFlags

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub fn intersects(&self, other: ImGuiColorEditFlags) -> bool

Returns true if there are flags common to both self and other.

pub fn contains(&self, other: ImGuiColorEditFlags) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: ImGuiColorEditFlags)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: ImGuiColorEditFlags)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: ImGuiColorEditFlags)

Toggles the specified flags in-place.

pub fn set(&mut self, other: ImGuiColorEditFlags, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Debug for ImGuiColorEditFlags

impl Hash for ImGuiColorEditFlags

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Binary for ImGuiColorEditFlags

impl Copy for ImGuiColorEditFlags

impl Extend<ImGuiColorEditFlags> for ImGuiColorEditFlags

impl Clone for ImGuiColorEditFlags

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl BitOrAssign<ImGuiColorEditFlags> for ImGuiColorEditFlags

fn bitor_assign(&mut self, other: ImGuiColorEditFlags)

Adds the set of flags.

impl BitAndAssign<ImGuiColorEditFlags> for ImGuiColorEditFlags

fn bitand_assign(&mut self, other: ImGuiColorEditFlags)

Disables all flags disabled in the set.

impl BitOr<ImGuiColorEditFlags> for ImGuiColorEditFlags

type Output = ImGuiColorEditFlags

The resulting type after applying the | operator.

fn bitor(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags

Returns the union of the two sets of flags.

impl BitXor<ImGuiColorEditFlags> for ImGuiColorEditFlags

type Output = ImGuiColorEditFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags

Returns the left flags, but with all the right flags toggled.

impl PartialEq<ImGuiColorEditFlags> for ImGuiColorEditFlags

impl SubAssign<ImGuiColorEditFlags> for ImGuiColorEditFlags

fn sub_assign(&mut self, other: ImGuiColorEditFlags)

Disables all flags enabled in the set.

impl BitXorAssign<ImGuiColorEditFlags> for ImGuiColorEditFlags

fn bitxor_assign(&mut self, other: ImGuiColorEditFlags)

Toggles the set of flags.

impl Not for ImGuiColorEditFlags

type Output = ImGuiColorEditFlags

The resulting type after applying the ! operator.

fn not(self) -> ImGuiColorEditFlags

Returns the complement of this set of flags.

impl Octal for ImGuiColorEditFlags

impl Ord for ImGuiColorEditFlags

default fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

default fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl BitAnd<ImGuiColorEditFlags> for ImGuiColorEditFlags

type Output = ImGuiColorEditFlags

The resulting type after applying the & operator.

fn bitand(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags

Returns the intersection between the two sets of flags.

impl UpperHex for ImGuiColorEditFlags

impl FromIterator<ImGuiColorEditFlags> for ImGuiColorEditFlags

impl LowerHex for ImGuiColorEditFlags

impl Eq for ImGuiColorEditFlags

impl Sub<ImGuiColorEditFlags> for ImGuiColorEditFlags

type Output = ImGuiColorEditFlags

The resulting type after applying the - operator.

fn sub(self, other: ImGuiColorEditFlags) -> ImGuiColorEditFlags

Returns the set difference of the two sets of flags.

impl PartialOrd<ImGuiColorEditFlags> for ImGuiColorEditFlags

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.