[][src]Struct imgui::ConfigFlags

#[repr(transparent)]pub struct ConfigFlags { /* fields omitted */ }

Configuration flags

Implementations

impl ConfigFlags[src]

pub const NAV_ENABLE_KEYBOARD: ConfigFlags[src]

Master keyboard navigation enable flag.

frame() will automatically fill io.nav_inputs based on io.keys_down.

pub const NAV_ENABLE_GAMEPAD: ConfigFlags[src]

Master gamepad navigation enable flag.

This is mostly to instruct the backend to fill io.nav_inputs. The backend also needs to set BackendFlags::HasGamepad.

pub const NAV_ENABLE_SET_MOUSE_POS: ConfigFlags[src]

Instruction navigation to move the mouse cursor.

May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.mouse_pos and set io.want_set_mouse_pos = true. If enabled, you must honor io.want_set_mouse_pos, or imgui-rs will react as if the mouse is jumping around back and forth.

pub const NAV_NO_CAPTURE_KEYBOARD: ConfigFlags[src]

Instruction navigation to not set the io.want_capture_keyboard flag when io.nav_active is set.

pub const NO_MOUSE: ConfigFlags[src]

Instruction imgui-rs to clear mouse position/buttons in frame().

This allows ignoring the mouse information set by the backend.

pub const NO_MOUSE_CURSOR_CHANGE: ConfigFlags[src]

Instruction backend to not alter mouse cursor shape and visibility.

Use if the backend cursor changes are interfering with yours and you don't want to use set_mouse_cursor to change the mouse cursor. You may want to honor requests from imgui-rs by reading get_mouse_cursor yourself instead.

pub const IS_SRGB: ConfigFlags[src]

Application is SRGB-aware.

Not used by core imgui-rs.

pub const IS_TOUCH_SCREEN: ConfigFlags[src]

Application is using a touch screen instead of a mouse.

Not used by core imgui-rs.

pub const fn empty() -> ConfigFlags[src]

Returns an empty set of flags

pub const fn all() -> ConfigFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<ConfigFlags>[src]

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

pub const fn from_bits_truncate(bits: u32) -> ConfigFlags[src]

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

pub const unsafe fn from_bits_unchecked(bits: u32) -> ConfigFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: ConfigFlags) -> bool[src]

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

pub const fn contains(&self, other: ConfigFlags) -> bool[src]

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

pub fn insert(&mut self, other: ConfigFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: ConfigFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: ConfigFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: ConfigFlags, value: bool)[src]

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

Trait Implementations

impl Binary for ConfigFlags[src]

impl BitAnd<ConfigFlags> for ConfigFlags[src]

type Output = ConfigFlags

The resulting type after applying the & operator.

pub fn bitand(self, other: ConfigFlags) -> ConfigFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<ConfigFlags> for ConfigFlags[src]

pub fn bitand_assign(&mut self, other: ConfigFlags)[src]

Disables all flags disabled in the set.

impl BitOr<ConfigFlags> for ConfigFlags[src]

type Output = ConfigFlags

The resulting type after applying the | operator.

pub fn bitor(self, other: ConfigFlags) -> ConfigFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<ConfigFlags> for ConfigFlags[src]

pub fn bitor_assign(&mut self, other: ConfigFlags)[src]

Adds the set of flags.

impl BitXor<ConfigFlags> for ConfigFlags[src]

type Output = ConfigFlags

The resulting type after applying the ^ operator.

pub fn bitxor(self, other: ConfigFlags) -> ConfigFlags[src]

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

impl BitXorAssign<ConfigFlags> for ConfigFlags[src]

pub fn bitxor_assign(&mut self, other: ConfigFlags)[src]

Toggles the set of flags.

impl Clone for ConfigFlags[src]

impl Copy for ConfigFlags[src]

impl Debug for ConfigFlags[src]

impl Eq for ConfigFlags[src]

impl Extend<ConfigFlags> for ConfigFlags[src]

impl FromIterator<ConfigFlags> for ConfigFlags[src]

impl Hash for ConfigFlags[src]

impl LowerHex for ConfigFlags[src]

impl Not for ConfigFlags[src]

type Output = ConfigFlags

The resulting type after applying the ! operator.

pub fn not(self) -> ConfigFlags[src]

Returns the complement of this set of flags.

impl Octal for ConfigFlags[src]

impl Ord for ConfigFlags[src]

impl PartialEq<ConfigFlags> for ConfigFlags[src]

impl PartialOrd<ConfigFlags> for ConfigFlags[src]

impl StructuralEq for ConfigFlags[src]

impl StructuralPartialEq for ConfigFlags[src]

impl Sub<ConfigFlags> for ConfigFlags[src]

type Output = ConfigFlags

The resulting type after applying the - operator.

pub fn sub(self, other: ConfigFlags) -> ConfigFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<ConfigFlags> for ConfigFlags[src]

pub fn sub_assign(&mut self, other: ConfigFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for ConfigFlags[src]

Auto Trait Implementations

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.