Enum glutin::WindowEvent

source ·
pub enum WindowEvent {
Show 19 variants 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: u32, value: f64, }, Refresh, Suspended(bool), Touch(Touch),
}

Variants§

§

Resized(u32, u32)

The size of the window has changed.

§

Moved(i32, i32)

The position of the window has changed.

§

Closed

The window has been closed.

§

DroppedFile(PathBuf)

A file has been dropped into the window.

§

HoveredFile(PathBuf)

A file is being hovered over the window.

§

HoveredFileCancelled

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

§

KeyboardInput

Fields

§device_id: DeviceId

An event from the keyboard has been received.

§

MouseMoved

Fields

§device_id: DeviceId
§position: (f64, f64)

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

§

MouseEntered

Fields

§device_id: DeviceId

The cursor has entered the window.

§

MouseLeft

Fields

§device_id: DeviceId

The cursor has left the window.

§

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.

§

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 not otherwise handled. May overlap with mouse motion.

§

Refresh

The window needs to be redrawn.

§

Suspended(bool)

App has been suspended or resumed.

The parameter is true if app was suspended, and false if it has been resumed.

§

Touch(Touch)

Touch event has been received

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.