pub enum WindowEvent {
Show 27 variants ActivationTokenDone { serial: AsyncRequestSerial, token: ActivationToken, }, Resized(PhysicalSize<u32>), Moved(PhysicalPosition<i32>), CloseRequested, Destroyed, DroppedFile(PathBuf), HoveredFile(PathBuf), HoveredFileCancelled, Focused(bool), KeyboardInput { device_id: DeviceId, event: KeyEvent, is_synthetic: bool, }, ModifiersChanged(Modifiers), Ime(Ime), CursorMoved { device_id: DeviceId, position: PhysicalPosition<f64>, }, CursorEntered { device_id: DeviceId, }, CursorLeft { device_id: DeviceId, }, MouseWheel { device_id: DeviceId, delta: MouseScrollDelta, phase: TouchPhase, }, MouseInput { device_id: DeviceId, state: ElementState, button: MouseButton, }, TouchpadMagnify { device_id: DeviceId, delta: f64, phase: TouchPhase, }, SmartMagnify { device_id: DeviceId, }, TouchpadRotate { device_id: DeviceId, delta: f32, phase: TouchPhase, }, TouchpadPressure { device_id: DeviceId, pressure: f32, stage: i64, }, AxisMotion { device_id: DeviceId, axis: u32, value: f64, }, Touch(Touch), ScaleFactorChanged { scale_factor: f64, inner_size_writer: InnerSizeWriter, }, ThemeChanged(Theme), Occluded(bool), RedrawRequested,
}
Expand description

Describes an event from a [Window].

Variants§

§

ActivationTokenDone

The activation token was delivered back and now could be used.

Delivered in response to request_activation_token.

§

Resized(PhysicalSize<u32>)

The size of the window has changed. Contains the client area’s new dimensions.

§

Moved(PhysicalPosition<i32>)

The position of the window has changed. Contains the window’s new position.

§Platform-specific
  • iOS / Android / Web / Wayland: Unsupported.
§

CloseRequested

The window has been requested to close.

§

Destroyed

The window has been destroyed.

§

DroppedFile(PathBuf)

A file has been dropped into the window.

When the user drops multiple files at once, this event will be emitted for each file separately.

§

HoveredFile(PathBuf)

A file is being hovered over the window.

When the user hovers multiple files at once, this event will be emitted for each file separately.

§

HoveredFileCancelled

A file was hovered, but has exited the window.

There will be a single HoveredFileCancelled event triggered even if multiple files were hovered.

§

Focused(bool)

The window gained or lost focus.

The parameter is true if the window has gained focus, and false if it has lost focus.

§

KeyboardInput

Fields

§device_id: DeviceId
§event: KeyEvent
§is_synthetic: bool

If true, the event was generated synthetically by winit in one of the following circumstances:

  • Synthetic key press events are generated for all keys pressed when a window gains focus. Likewise, synthetic key release events are generated for all keys pressed when a window goes out of focus. Currently, this is only functional on X11 and Windows

Otherwise, this value is always false.

An event from the keyboard has been received.

§Platform-specific
  • Windows: The shift key overrides NumLock. In other words, while shift is held down, numpad keys act as if NumLock wasn’t active. When this is used, the OS sends fake key events which are not marked as is_synthetic.
§

ModifiersChanged(Modifiers)

The keyboard modifiers have changed.

§

Ime(Ime)

An event from an input method.

Note: You have to explicitly enable this event using [Window::set_ime_allowed].

§Platform-specific
  • iOS / Android / Web / Orbital: Unsupported.
§

CursorMoved

Fields

§device_id: DeviceId
§position: PhysicalPosition<f64>

(x,y) coords in pixels relative to the top-left corner of the window. Because the range of this data is limited by the display area and it may have been transformed by the OS to implement effects such as cursor acceleration, it should not be used to implement non-cursor-like interactions such as 3D camera control.

The cursor has moved on the window.

§Platform-specific
§

CursorEntered

Fields

§device_id: DeviceId

The cursor has entered the window.

§Platform-specific
§

CursorLeft

Fields

§device_id: DeviceId

The cursor has left the window.

§Platform-specific
§

MouseWheel

Fields

§device_id: DeviceId

A mouse wheel movement or touchpad scroll occurred.

§

MouseInput

Fields

§device_id: DeviceId

An mouse button press has been received.

§

TouchpadMagnify

Fields

§device_id: DeviceId
§delta: f64

Touchpad magnification event with two-finger pinch gesture.

Positive delta values indicate magnification (zooming in) and negative delta values indicate shrinking (zooming out).

§Platform-specific
  • Only available on macOS.
§

SmartMagnify

Fields

§device_id: DeviceId

Smart magnification event.

On a Mac, smart magnification is triggered by a double tap with two fingers on the trackpad and is commonly used to zoom on a certain object (e.g. a paragraph of a PDF) or (sort of like a toggle) to reset any zoom. The gesture is also supported in Safari, Pages, etc.

The event is general enough that its generating gesture is allowed to vary across platforms. It could also be generated by another device.

Unfortunatly, neither Windows nor Wayland support this gesture or any other gesture with the same effect.

§Platform-specific
  • Only available on macOS 10.8 and later.
§

TouchpadRotate

Fields

§device_id: DeviceId
§delta: f32

Touchpad rotation event with two-finger rotation gesture.

Positive delta values indicate rotation counterclockwise and negative delta values indicate rotation clockwise.

§Platform-specific
  • Only available on macOS.
§

TouchpadPressure

Fields

§device_id: DeviceId
§pressure: f32
§stage: i64

Touchpad pressure event.

At the moment, only supported on Apple forcetouch-capable macbooks. The parameters are: pressure level (value between 0 and 1 representing how hard the touchpad is being pressed) and stage (integer representing the click level).

§

AxisMotion

Fields

§device_id: DeviceId
§axis: u32
§value: f64

Motion on some analog axis. May report data redundant to other, more specific events.

§

Touch(Touch)

Touch event has been received

§Platform-specific
§

ScaleFactorChanged

Fields

§scale_factor: f64
§inner_size_writer: InnerSizeWriter

Handle to update inner size during scale changes.

See InnerSizeWriter docs for more details.

The window’s scale factor has changed.

The following user actions can cause DPI changes:

  • Changing the display’s resolution.
  • Changing the display’s scale factor (e.g. in Control Panel on Windows).
  • Moving the window to a display with a different scale factor.

After this event callback has been processed, the window will be resized to whatever value is pointed to by the new_inner_size reference. By default, this will contain the size suggested by the OS, but it can be changed to any value.

For more information about DPI in general, see the dpi module.

§

ThemeChanged(Theme)

The system window theme has changed.

Applications might wish to react to this to change the theme of the content of the window when the system changes the window theme.

§Platform-specific
  • iOS / Android / X11 / Wayland / Orbital: Unsupported.
§

Occluded(bool)

The window has been occluded (completely hidden from view).

This is different to window visibility as it depends on whether the window is closed, minimised, set invisible, or fully occluded by another window.

§Platform-specific
§iOS

On iOS, the Occluded(false) event is emitted in response to an applicationWillEnterForeground callback which means the application should start preparing its data. The Occluded(true) event is emitted in response to an applicationDidEnterBackground callback which means the application should free resources (according to the iOS application lifecycle).

§Others
  • Web: Doesn’t take into account CSS border, padding, or transform.
  • Android / Windows / Orbital: Unsupported.
§

RedrawRequested

Emitted when a window should be redrawn.

This gets triggered in two scenarios:

  • The OS has performed an operation that’s invalidated the window’s contents (such as resizing the window).
  • The application has explicitly requested a redraw via [Window::request_redraw].

Winit will aggregate duplicate redraw requests into a single event, to help avoid duplicating rendering work.

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

impl PartialEq for WindowEvent

source§

fn eq(&self, other: &WindowEvent) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for WindowEvent

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
§

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 + Sync + Send>

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