ori::prelude

Enum Event

Source
#[non_exhaustive]
pub enum Event {
Show 19 variants WindowResized(WindowResized), WindowScaled(WindowScaled), WindowMaximized(WindowMaximized), WindowCloseRequested(WindowCloseRequested), PointerMoved(PointerMoved), PointerLeft(PointerLeft), PointerPressed(PointerPressed), PointerReleased(PointerReleased), PointerScrolled(PointerScrolled), KeyPressed(KeyPressed), KeyReleased(KeyReleased), ForceLayout, FocusNext, FocusPrev, FocusWanted, FocusGiven(FocusTarget), Animate(f32), Command(Command), Notify,
}
Expand description

An event that can be sent to a view.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

WindowResized(WindowResized)

The window was resized.

§

WindowScaled(WindowScaled)

The window was scaled.

§

WindowMaximized(WindowMaximized)

The window was maximized.

§

WindowCloseRequested(WindowCloseRequested)

The window requested to be close.

§

PointerMoved(PointerMoved)

A pointer moved.

§

PointerLeft(PointerLeft)

A pointer left the window.

§

PointerPressed(PointerPressed)

A pointer button was pressed.

§

PointerReleased(PointerReleased)

A pointer button was released.

§

PointerScrolled(PointerScrolled)

A pointer was scrolled.

§

KeyPressed(KeyPressed)

A keyboard key was pressed.

§

KeyReleased(KeyReleased)

A keyboard key was released.

§

ForceLayout

All views need to be laid out.

§

FocusNext

Focus should be switched to next view in the focus chain.

§

FocusPrev

Focus should be switched to previous view in the focus chain.

§

FocusWanted

Focus is wanted by another view.

A view receiving this event should give up focus.

§

FocusGiven(FocusTarget)

Focus given to either a specific target.

§

Animate(f32)

An animation frame has passed.

§

Command(Command)

A command was sent.

§

Notify

Event sent when something has changed and the view should be given a chance to update.

Implementations§

Source§

impl Event

Source

pub fn is_cmd<T>(&self) -> bool
where T: Any,

Check if the event is a command of a specific type.

Source

pub fn cmd<T>(&self) -> Option<&T>
where T: Any,

Try to get the command as a specific type.

Returns None if the event is not a command or if the command is not of the specified type.

Source

pub fn is_key_pressed(&self, key: impl IsKey) -> bool

Check if the event represents a key press of a specific key.

Source

pub fn is_key_released(&self, key: impl IsKey) -> bool

Check if the event represents a key release of a specific key.

Source

pub fn wants_focus(&self) -> bool

Check if the event wants to take focus.

This is true for FocusNext, FocusPrev, and FocusWanted.

Trait Implementations§

Source§

impl Debug for Event

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Event

§

impl !RefUnwindSafe for Event

§

impl Send for Event

§

impl !Sync for Event

§

impl Unpin for Event

§

impl !UnwindSafe for Event

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