Struct egui::containers::AreaState

source ·
pub struct AreaState {
    pub pivot_pos: Option<Pos2>,
    pub pivot: Align2,
    pub size: Option<Vec2>,
    pub interactable: bool,
    pub last_became_visible_at: Option<f64>,
}
Expand description

State of an Area that is persisted between frames.

Areas back crate::Windows and other floating containers, like tooltips and the popups of crate::ComboBox.

Fields§

§pivot_pos: Option<Pos2>

Last known position of the pivot.

§pivot: Align2

The anchor point of the area, i.e. where on the area the Self::pivot_pos refers to.

§size: Option<Vec2>

Last known size.

Area size is intentionally NOT persisted between sessions, so that a bad tooltip or menu size won’t be remembered forever. A resizable Window remembers the size the user picked using the state in the Resize container.

§interactable: bool

If false, clicks goes straight through to what is behind us. Useful for tooltips etc.

§last_became_visible_at: Option<f64>

At what time was this area first shown?

Used to fade in the area.

Implementations§

source§

impl AreaState

source

pub fn load(ctx: &Context, id: Id) -> Option<Self>

Load the state of an Area from memory.

source

pub fn left_top_pos(&self) -> Pos2

The left top positions of the area.

source

pub fn set_left_top_pos(&mut self, pos: Pos2)

Move the left top positions of the area.

source

pub fn rect(&self) -> Rect

Where the area is on screen.

Trait Implementations§

source§

impl Clone for AreaState

source§

fn clone(&self) -> AreaState

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 Debug for AreaState

source§

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

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

impl Default for AreaState

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for AreaState

Auto Trait Implementations§

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.
source§

impl<T> SerializableAny for T
where T: 'static + Any + Clone + for<'a> Send + Sync,