WindowEvent

Enum WindowEvent 

Source
pub enum WindowEvent {
Show 27 variants ActivationTokenDone { serial: AsyncRequestSerial, token: ActivationToken, }, SurfaceResized(PhysicalSize<u32>), Moved(PhysicalPosition<i32>), CloseRequested, Destroyed, DragEntered { paths: Vec<PathBuf>, position: PhysicalPosition<f64>, }, DragMoved { position: PhysicalPosition<f64>, }, DragDropped { paths: Vec<PathBuf>, position: PhysicalPosition<f64>, }, DragLeft { position: Option<PhysicalPosition<f64>>, }, Focused(bool), KeyboardInput { device_id: Option<DeviceId>, event: KeyEvent, is_synthetic: bool, }, ModifiersChanged(Modifiers), Ime(Ime), PointerMoved { device_id: Option<DeviceId>, position: PhysicalPosition<f64>, primary: bool, source: PointerSource, }, PointerEntered { device_id: Option<DeviceId>, position: PhysicalPosition<f64>, primary: bool, kind: PointerKind, }, PointerLeft { device_id: Option<DeviceId>, position: Option<PhysicalPosition<f64>>, primary: bool, kind: PointerKind, }, MouseWheel { device_id: Option<DeviceId>, delta: MouseScrollDelta, phase: TouchPhase, }, PointerButton { device_id: Option<DeviceId>, state: ElementState, position: PhysicalPosition<f64>, primary: bool, button: ButtonSource, }, PinchGesture { device_id: Option<DeviceId>, delta: f64, phase: TouchPhase, }, PanGesture { device_id: Option<DeviceId>, delta: PhysicalPosition<f32>, phase: TouchPhase, }, DoubleTapGesture { device_id: Option<DeviceId>, }, RotationGesture { device_id: Option<DeviceId>, delta: f32, phase: TouchPhase, }, TouchpadPressure { device_id: Option<DeviceId>, pressure: f32, stage: i64, }, ScaleFactorChanged { scale_factor: f64, surface_size_writer: SurfaceSizeWriter, }, 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.

§

SurfaceResized(PhysicalSize<u32>)

The size of the window’s surface has changed.

Contains the new dimensions of the surface (can also be retrieved with Window::surface_size).

This event will not necessarily be emitted upon window creation, query Window::surface_size if you need to determine the surface’s initial size.

§

Moved(PhysicalPosition<i32>)

The position of the window has changed.

Contains the window’s new position in desktop coordinates (can also be retrieved with Window::outer_position).

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

CloseRequested

The window has been requested to close.

§

Destroyed

The window has been destroyed.

§

DragEntered

A file drag operation has entered the window.

Fields

§paths: Vec<PathBuf>

List of paths that are being dragged onto the window.

§position: PhysicalPosition<f64>

(x,y) coordinates in pixels relative to the top-left corner of the window. May be negative on some platforms if something is dragged over a window’s decorations (title bar, frame, etc).

§

DragMoved

A file drag operation has moved over the window.

Fields

§position: PhysicalPosition<f64>

(x,y) coordinates in pixels relative to the top-left corner of the window. May be negative on some platforms if something is dragged over a window’s decorations (title bar, frame, etc).

§

DragDropped

The file drag operation has dropped file(s) on the window.

Fields

§paths: Vec<PathBuf>

List of paths that are being dragged onto the window.

§position: PhysicalPosition<f64>

(x,y) coordinates in pixels relative to the top-left corner of the window. May be negative on some platforms if something is dragged over a window’s decorations (title bar, frame, etc).

§

DragLeft

The file drag operation has been cancelled or left the window.

Fields

§position: Option<PhysicalPosition<f64>>

(x,y) coordinates in pixels relative to the top-left corner of the window. May be negative on some platforms if something is dragged over a window’s decorations (title bar, frame, etc).

§Platform-specific
  • Windows: Always emits None.
§

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.

Windows are unfocused upon creation, but will usually be focused by the system soon afterwards.

§

KeyboardInput

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.
  • iOS: Unsupported.

Fields

§device_id: Option<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.

§

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

PointerMoved

The pointer has moved on the window.

Fields

§device_id: Option<DeviceId>
§position: PhysicalPosition<f64>

(x,y) coordinates 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 pointer acceleration, it should not be used to implement non-pointer-like interactions such as 3D camera control. For that, consider DeviceEvent::PointerMotion.

§Platform-specific

Web: Doesn’t take into account CSS border, padding, or transform.

§primary: bool

Indicates whether the event is created by a primary pointer.

A pointer is considered primary when it’s a mouse, the first finger in a multi-touch interaction, or an unknown pointer source.

§

PointerEntered

The pointer has entered the window.

Fields

§device_id: Option<DeviceId>
§position: PhysicalPosition<f64>

The position of the pointer when it entered the window.

§Platform-specific
§primary: bool

Indicates whether the event is created by a primary pointer.

A pointer is considered primary when it’s a mouse, the first finger in a multi-touch interaction, or an unknown pointer source.

§

PointerLeft

The pointer has left the window.

Fields

§device_id: Option<DeviceId>
§position: Option<PhysicalPosition<f64>>

The position of the pointer when it left the window. The position reported can be outside the bounds of the window.

§Platform-specific
§primary: bool

Indicates whether the event is created by a primary pointer.

A pointer is considered primary when it’s a mouse, the first finger in a multi-touch interaction, or an unknown pointer source.

§

MouseWheel

A mouse wheel movement or touchpad scroll occurred.

Fields

§device_id: Option<DeviceId>
§

PointerButton

An mouse button press has been received.

Fields

§device_id: Option<DeviceId>
§position: PhysicalPosition<f64>

The position of the pointer when the button was pressed.

§Platform-specific
§primary: bool

Indicates whether the event is created by a primary pointer.

A pointer is considered primary when it’s a mouse, the first finger in a multi-touch interaction, or an unknown pointer source.

§

PinchGesture

Two-finger pinch gesture, often used for magnification.

§Platform-specific
  • Only available on macOS, iOS, and Wayland.
  • On iOS, not recognized by default. It must be enabled when needed.

Fields

§device_id: Option<DeviceId>
§delta: f64

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

This value may be NaN.

§

PanGesture

N-finger pan gesture

§Platform-specific
  • Only available on iOS and Wayland.
  • On iOS, not recognized by default. It must be enabled when needed.

Fields

§device_id: Option<DeviceId>
§delta: PhysicalPosition<f32>

Change in pixels of pan gesture from last update.

§

DoubleTapGesture

Double tap gesture.

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.

Unfortunately, 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, and iOS.
  • On iOS, not recognized by default. It must be enabled when needed.

Fields

§device_id: Option<DeviceId>
§

RotationGesture

Two-finger rotation gesture.

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

§Platform-specific
  • Only available on macOS, iOS, and Wayland.
  • On iOS, not recognized by default. It must be enabled when needed.

Fields

§device_id: Option<DeviceId>
§delta: f32

change in rotation in degrees

§

TouchpadPressure

Touchpad pressure event.

§Platform-specific
  • macOS: Only supported on Apple forcetouch-capable macbooks.
  • Android / iOS / Wayland / X11 / Windows / Orbital / Web: Unsupported.

Fields

§device_id: Option<DeviceId>
§pressure: f32

Value between 0 and 1 representing how hard the touchpad is being pressed.

§stage: i64

Represents the click level.

§

ScaleFactorChanged

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.

To update the window size, use the provided SurfaceSizeWriter handle. By default, the window is resized to the value suggested by the OS, but it can be changed to any value.

This event will not necessarily be emitted upon window creation, query Window::scale_factor if you need to determine the window’s initial scale factor.

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

Fields

§scale_factor: f64
§surface_size_writer: SurfaceSizeWriter

Handle to update surface size during scale changes.

See SurfaceSizeWriter docs for more details.

§

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.

This only reports a change if the window theme was not overridden by Window::set_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 / Wayland / Windows / Orbital: Unsupported.
§

RedrawRequested

Emitted when a window should be redrawn.

This gets triggered in a few scenarios:

  • The OS has performed an operation that’s invalidated the window’s contents (such as resizing the window, or changing the safe area).
  • 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 duplicate 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

Formats the value using the given formatter. Read more
Source§

impl PartialEq for WindowEvent

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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,

Source§

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

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.