Struct egui::containers::Area[][src]

pub struct Area { /* fields omitted */ }

An area on the screen that can be moved by dragging.

This forms the base of the Window container.

egui::Area::new("my_area")
    .fixed_pos(egui::pos2(32.0, 32.0))
    .show(ctx, |ui| {
        ui.label("Floating text!");
    });

Implementations

impl Area[src]

pub fn new(id_source: impl Hash) -> Self[src]

pub fn id(self, id: Id) -> Self[src]

pub fn layer(&self) -> LayerId[src]

pub fn enabled(self, enabled: bool) -> Self[src]

If false, no content responds to click and widgets will be shown grayed out. You won’t be able to move the window. Default: true.

pub fn movable(self, movable: bool) -> Self[src]

moveable by dragging the area?

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

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

pub fn interactable(self, interactable: bool) -> Self[src]

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

pub fn order(self, order: Order) -> Self[src]

order(Order::Foreground) for an Area that should always be on top

pub fn default_pos(self, default_pos: impl Into<Pos2>) -> Self[src]

pub fn fixed_pos(self, fixed_pos: impl Into<Pos2>) -> Self[src]

Positions the window and prevents it from being moved

pub fn current_pos(self, current_pos: impl Into<Pos2>) -> Self[src]

Positions the window but you can still move it.

pub fn anchor(self, align: Align2, offset: impl Into<Vec2>) -> Self[src]

Set anchor and distance.

An anchor of Align2::RIGHT_TOP means “put the right-top corner of the window in the right-top corner of the screen”.

The offset is added to the position, so e.g. an offset of [-5.0, 5.0] would move the window left and down from the given anchor.

Anchoring also makes the window immovable.

It is an error to set both an anchor and a position.

pub fn drag_bounds(self, bounds: Rect) -> Self[src]

Constrain the area up to which the window can be dragged.

impl Area[src]

pub fn show(self, ctx: &CtxRef, add_contents: impl FnOnce(&mut Ui)) -> Response[src]

pub fn show_open_close_animation(
    &self,
    ctx: &CtxRef,
    frame: &Frame,
    is_open: bool
)
[src]

Trait Implementations

impl Clone for Area[src]

fn clone(&self) -> Area[src]

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Debug for Area[src]

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

Formats the value using the given formatter. Read more

impl Copy for Area[src]

Auto Trait Implementations

impl RefUnwindSafe for Area

impl Send for Area

impl Sync for Area

impl Unpin for Area

impl UnwindSafe for Area

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

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.

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

Performs the conversion.

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.

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

Performs the conversion.