ori::prelude

Struct App

pub struct App<T> {
    pub proxy: CommandProxy,
    pub contexts: Contexts,
    /* private fields */
}
Expand description

The main application state.

Fields§

§proxy: CommandProxy

The command proxy of the application.

§contexts: Contexts

The contexts of the application.

Implementations§

§

impl<T> App<T>

pub fn build() -> AppBuilder<T>

Create a new application builder.

pub fn close_requested(&mut self, data: &mut T, window_id: WindowId) -> bool

A window was requested to be closed.

Returns true if the window was closed, i.e. the event was not handled.

pub fn window_resized( &mut self, data: &mut T, window_id: WindowId, width: u32, height: u32, ) -> bool

A window was resized.

pub fn window_scaled( &mut self, data: &mut T, window_id: WindowId, scale: f32, ) -> bool

A window was scaled.

pub fn window_maximized( &mut self, data: &mut T, window_id: WindowId, maximized: bool, ) -> bool

The maximized state of a window changed.

pub fn window_decorated( &mut self, data: &mut T, window_id: WindowId, decorated: bool, ) -> bool

The decorations state of a window changed.

pub fn pointer_moved( &mut self, data: &mut T, window_id: WindowId, pointer_id: PointerId, position: Point, ) -> bool

A pointer moved.

pub fn pointer_left( &mut self, data: &mut T, window_id: WindowId, pointer_id: PointerId, ) -> bool

A pointer left the window.

pub fn pointer_scrolled( &mut self, data: &mut T, window_id: WindowId, pointer_id: PointerId, delta: Vector, ) -> bool

A pointer scrolled.

pub fn pointer_button( &mut self, data: &mut T, window_id: WindowId, pointer_id: PointerId, button: PointerButton, pressed: bool, ) -> bool

A pointer button was pressed or released.

pub fn keyboard_key( &mut self, data: &mut T, window_id: WindowId, key: Key, code: Option<Code>, text: Option<String>, pressed: bool, ) -> bool

A keyboard key was pressed or released.

pub fn modifiers_changed(&mut self, modifiers: Modifiers)

The modifiers changed.

§

impl<T> App<T>

pub fn add_window( &mut self, data: &mut T, ui: Box<dyn FnMut(&mut T) -> Box<dyn AnyView<T>>>, window: Window, )

Add a window to the application.

pub fn remove_window(&mut self, window_id: WindowId)

Remove a window from the application.

pub fn get_window(&self, window_id: WindowId) -> Option<&Window>

Get a window by id.

pub fn get_window_mut(&mut self, window_id: WindowId) -> Option<&mut Window>

Get a mutable window by id.

pub fn add_context(&mut self, context: impl Any)

Add a context.

pub fn take_requests(&mut self) -> impl Iterator<Item = AppRequest<T>>

Take all pending requests.

pub fn handle_commands(&mut self, data: &mut T)

Handle all pending commands.

pub fn update_hovered(&mut self, window_id: WindowId) -> bool

Update the hovered state of a window.

pub fn init(&mut self, data: &mut T)

Initialize the application.

pub fn idle(&mut self, data: &mut T)

The application is idle.

pub fn rebuild(&mut self, data: &mut T)

Rebuild all windows.

pub fn event(&mut self, data: &mut T, event: &Event) -> bool

Handle an event for the entire application.

Returns true if the event was handled by a delegate.

pub fn window_event( &mut self, data: &mut T, window_id: WindowId, event: &Event, ) -> bool

Handle an event for a single window.

Returns true if the event was handled by a delegate.

pub fn draw_window( &mut self, data: &mut T, window_id: WindowId, ) -> Option<WindowRenderState>

Draw a single window, returning the scene if it needs to be rendered.

Auto Trait Implementations§

§

impl<T> Freeze for App<T>

§

impl<T> !RefUnwindSafe for App<T>

§

impl<T> !Send for App<T>

§

impl<T> !Sync for App<T>

§

impl<T> Unpin for App<T>

§

impl<T> !UnwindSafe for App<T>

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more