[][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.

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(mut self: Self, id: Id) -> Self[src]

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

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

moveable by dragging the area?

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

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

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

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

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

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

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

Positions the window and prevents it from being moved

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

Positions the window but you can still move it.

impl Area[src]

pub fn show(self, ctx: &CtxRef, 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

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.