[][src]Struct fui_app::WindowManager

pub struct WindowManager { /* fields omitted */ }

Implementations

impl WindowManager[src]

pub fn new(drawing_context: Rc<RefCell<DrawingContext>>) -> Self[src]

pub fn add_window(
    &mut self,
    window_builder: WindowBuilder,
    event_loop: &EventLoop<()>,
    view: Rc<RefCell<dyn ControlObject>>
) -> Result<WindowId>
[src]

pub fn add_window_view_model<V: ViewModel>(
    &mut self,
    window_builder: WindowBuilder,
    event_loop: &EventLoop<()>,
    view_model: &Rc<RefCell<V>>
) -> Result<WindowId>
[src]

pub fn get_main_window_id(&self) -> Option<WindowId>[src]

pub fn get_windows_mut(&mut self) -> &mut HashMap<WindowId, WindowEntry>[src]

pub fn clear(&mut self)[src]

Trait Implementations

impl Drop for WindowManager[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, 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> UnsafeAny for T where
    T: Any