Enum winit::WindowEvent
[−]
[src]
pub enum WindowEvent {
Resized(u32, u32),
Moved(i32, i32),
Closed,
DroppedFile(PathBuf),
HoveredFile(PathBuf),
HoveredFileCancelled,
ReceivedCharacter(char),
Focused(bool),
KeyboardInput {
device_id: DeviceId,
input: KeyboardInput,
},
MouseMoved {
device_id: DeviceId,
position: (f64, f64),
},
MouseEntered {
device_id: DeviceId,
},
MouseLeft {
device_id: DeviceId,
},
MouseWheel {
device_id: DeviceId,
delta: MouseScrollDelta,
phase: TouchPhase,
},
MouseInput {
device_id: DeviceId,
state: ElementState,
button: MouseButton,
},
TouchpadPressure {
device_id: DeviceId,
pressure: f32,
stage: i64,
},
AxisMotion {
device_id: DeviceId,
axis: AxisId,
value: f64,
},
Refresh,
Touch(Touch),
}Describes an event from a Window.
Variants
Resized(u32, u32)The size of the window has changed.
Moved(i32, i32)The position of the window has changed.
ClosedThe window has been closed.
DroppedFile(PathBuf)A file has been dropped into the window.
HoveredFile(PathBuf)A file is being hovered over the window.
HoveredFileCancelledA file was hovered, but has exited the window.
ReceivedCharacter(char)The window received a unicode character.
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.
KeyboardInputAn event from the keyboard has been received.
Fields of KeyboardInput
device_id: DeviceId | |
input: KeyboardInput |
MouseMovedThe cursor has moved on the window.
position is (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
mouse acceleration, it should not be used to implement non-cursor-like interactions such as 3D camera control.
Fields of MouseMoved
device_id: DeviceId | |
position: (f64, f64) |
MouseEnteredThe cursor has entered the window.
Fields of MouseEntered
device_id: DeviceId |
MouseLeftThe cursor has left the window.
Fields of MouseLeft
device_id: DeviceId |
MouseWheelA mouse wheel movement or touchpad scroll occurred.
Fields of MouseWheel
device_id: DeviceId | |
delta: MouseScrollDelta | |
phase: TouchPhase |
MouseInputAn mouse button press has been received.
Fields of MouseInput
device_id: DeviceId | |
state: ElementState | |
TouchpadPressureTouchpad 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).
Fields of TouchpadPressure
device_id: DeviceId | |
pressure: f32 | |
stage: i64 |
AxisMotionMotion on some analog axis not otherwise handled. May overlap with mouse motion.
Fields of AxisMotion
device_id: DeviceId | |
axis: AxisId | |
value: f64 |
RefreshThe window needs to be redrawn.
Touch(Touch)Touch event has been received
Trait Implementations
impl Clone for WindowEvent[src]
fn clone(&self) -> WindowEvent[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more