Enum vizia::window::WindowEvent

source ·
pub enum WindowEvent {
Show 48 variants WindowClose, Drop(DropData), MouseDoubleClick(MouseButton), MouseTripleClick(MouseButton), MouseDown(MouseButton), MouseUp(MouseButton), Press { mouse: bool, }, PressDown { mouse: bool, }, MouseMove(f32, f32), MouseScroll(f32, f32), MouseOver, MouseOut, MouseEnter, MouseLeave, FocusIn, FocusOut, CharInput(char), KeyDown(Code, Option<Key>), KeyUp(Code, Option<Key>), ThemeChanged(ThemeMode), SetCursor(CursorIcon), GrabCursor(bool), SetCursorPosition(u32, u32), SetTitle(String), SetSize(WindowSize), SetPosition(WindowPosition), SetMaxSize(Option<WindowSize>), SetMinSize(Option<WindowSize>), SetResizable(bool), SetMinimized(bool), SetMaximized(bool), SetVisible(bool), SetDecorations(bool), SetAlwaysOnTop(bool), MouseCaptureEvent, MouseCaptureOutEvent, GeometryChanged(GeoChanged), Redraw, Restyle, Relayout, FocusNext, FocusPrev, Debug(String), ActionRequest(ActionRequest), ReloadStyles, SetEnabled(bool), DragWindow, Destroyed,
}
Expand description

Events generated by the application in response to OS events as well as events that can be used to set properties of the window.

Variants§

§

WindowClose

Emitted when a window is closed. Can also be emitted by a view or model to close the window.

§

Drop(DropData)

Emitted when a file is dragged and then dropped onto the window.

§

MouseDoubleClick(MouseButton)

Emitted when a mouse button is double clicked.

§

MouseTripleClick(MouseButton)

Emitted when a mouse button is triple clicked

§

MouseDown(MouseButton)

Emitted when a mouse button is pressed

§

MouseUp(MouseButton)

Emitted when a mouse button is released.

§

Press

Emitted when the primary mouse button or trigger key is pressed and then released on a view

Fields

§mouse: bool
§

PressDown

Emitted when the primary mouse button or trigger key is pressed on a view

Fields

§mouse: bool
§

MouseMove(f32, f32)

Emitted when the mouse cursor is moved

§

MouseScroll(f32, f32)

Emitted when the mouse scroll wheel is scrolled.

§

MouseOver

Emitted when the mouse cursor enters the bounding box of an entity.

§

MouseOut

Emitted when the mouse cursor leaves the bounding box of an entity.

§

MouseEnter

Emitted when the mouse cursor enters an entity.

§

MouseLeave

Emitted when the mouse cursor leaves an entity.

§

FocusIn

§

FocusOut

§

CharInput(char)

Emitted when a character is typed.

§

KeyDown(Code, Option<Key>)

Emitted when a keyboard key is pressed.

§

KeyUp(Code, Option<Key>)

Emitted when a keyboard key is released.

§

ThemeChanged(ThemeMode)

Emited when the system window theme has changed.

§

SetCursor(CursorIcon)

Sets the mouse cursor icon.

§

GrabCursor(bool)

Grabs the mouse cursor, preventing it from leaving the window.

§

SetCursorPosition(u32, u32)

Sets the (x,y) position of the mouse cursor in window coordinates.

§

SetTitle(String)

Sets the title of the window.

§

SetSize(WindowSize)

Sets the size of the window.

§

SetPosition(WindowPosition)

Sets the position of the window.

§

SetMaxSize(Option<WindowSize>)

Sets the maximum size of the window.

§

SetMinSize(Option<WindowSize>)

Sets the minimum size of the window.

§

SetResizable(bool)

Sets whether the window is resizable.

§

SetMinimized(bool)

Sets whether the window is minimized.

§

SetMaximized(bool)

Sets whether the window is maximized.

§

SetVisible(bool)

Sets whether the window is visible.

§

SetDecorations(bool)

Sets whether the window has decorations.

§

SetAlwaysOnTop(bool)

Sets whether the window remains on top of other windows.

§

MouseCaptureEvent

Emitted when mouse events have been captured.

§

MouseCaptureOutEvent

Emitted when mouse events have been released.

§

GeometryChanged(GeoChanged)

Emitted when an entity changes position or size.

§

Redraw

Requests a redraw of the window contents.

§

Restyle

Request a restyle.

§

Relayout

Requests a relayout.

§

FocusNext

Move keyboard focus to the next navigable view.

§

FocusPrev

Move keyboard focus to the previous navigable view.

§

Debug(String)

Prints the debug message to the console.

§

ActionRequest(ActionRequest)

§

ReloadStyles

Reloads all application stylesheets.

§

SetEnabled(bool)

§

DragWindow

§

Destroyed

Trait Implementations§

source§

impl Clone for WindowEvent

source§

fn clone(&self) -> WindowEvent

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WindowEvent

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
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> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

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

§

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