[]Struct imgui::ConfigFlags

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

Configuration flags

Methods

impl ConfigFlags

pub const NAV_ENABLE_KEYBOARD: ConfigFlags

Master keyboard navigation enable flag.

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

pub const NAV_ENABLE_GAMEPAD: ConfigFlags

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

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

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

pub const NO_MOUSE: ConfigFlags

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

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

Application is SRGB-aware.

Not used by core imgui-rs.

pub const IS_TOUCH_SCREEN: ConfigFlags

Application is using a touch screen instead of a mouse.

Not used by core imgui-rs.

pub const fn empty() -> ConfigFlags

Returns an empty set of flags

pub const fn all() -> ConfigFlags

Returns the set containing all flags.

pub const fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

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

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

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

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

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

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Eq for ConfigFlags

impl Extend<ConfigFlags> for ConfigFlags

impl Clone for ConfigFlags

impl PartialOrd<ConfigFlags> for ConfigFlags

impl Ord for ConfigFlags

impl PartialEq<ConfigFlags> for ConfigFlags

impl Copy for ConfigFlags

impl Hash for ConfigFlags

impl Sub<ConfigFlags> for ConfigFlags

type Output = ConfigFlags

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<ConfigFlags> for ConfigFlags

fn sub_assign(&mut self, other: ConfigFlags)

Disables all flags enabled in the set.

impl Not for ConfigFlags

type Output = ConfigFlags

The resulting type after applying the ! operator.

fn not(self) -> ConfigFlags

Returns the complement of this set of flags.

impl BitAnd<ConfigFlags> for ConfigFlags

type Output = ConfigFlags

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitOr<ConfigFlags> for ConfigFlags

type Output = ConfigFlags

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitXor<ConfigFlags> for ConfigFlags

type Output = ConfigFlags

The resulting type after applying the ^ operator.

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

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

impl BitAndAssign<ConfigFlags> for ConfigFlags

fn bitand_assign(&mut self, other: ConfigFlags)

Disables all flags disabled in the set.

impl BitOrAssign<ConfigFlags> for ConfigFlags

fn bitor_assign(&mut self, other: ConfigFlags)

Adds the set of flags.

impl BitXorAssign<ConfigFlags> for ConfigFlags

fn bitxor_assign(&mut self, other: ConfigFlags)

Toggles the set of flags.

impl Debug for ConfigFlags

impl FromIterator<ConfigFlags> for ConfigFlags

impl Octal for ConfigFlags

impl Binary for ConfigFlags

impl LowerHex for ConfigFlags

impl UpperHex for ConfigFlags

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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