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

pub struct Area { /* fields omitted */ }

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

This forms the base of the Window container.

Implementations

impl Area[src]

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

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

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

moveable by dragging the area?

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

impl Area[src]

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

Trait Implementations

impl Clone for Area[src]

impl Copy for Area[src]

impl Debug 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]

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.