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
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
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
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
is_synthetic: boolIf 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
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: boolIndicates 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.
source: PointerSourcePointerEntered
The pointer has entered the window.
Fields
position: PhysicalPosition<f64>primary: boolIndicates 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.
kind: PointerKindPointerLeft
The pointer has left the window.
Fields
position: Option<PhysicalPosition<f64>>primary: boolIndicates 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.
kind: PointerKindMouseWheel
A mouse wheel movement or touchpad scroll occurred.
PointerButton
An mouse button press has been received.
Fields
state: ElementStateposition: PhysicalPosition<f64>primary: boolIndicates 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
delta: f64Positive values indicate magnification (zooming in) and negative values indicate shrinking (zooming out).
This value may be NaN.
phase: TouchPhasePanGesture
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
delta: PhysicalPosition<f32>Change in pixels of pan gesture from last update.
phase: TouchPhaseDoubleTapGesture
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.
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.
TouchpadPressure
Touchpad pressure event.
§Platform-specific
- macOS: Only supported on Apple forcetouch-capable macbooks.
- Android / iOS / Wayland / X11 / Windows / Orbital / Web: Unsupported.
Fields
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
surface_size_writer: SurfaceSizeWriterHandle 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
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
impl Clone for WindowEvent
Source§fn clone(&self) -> WindowEvent
fn clone(&self) -> WindowEvent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more