[−][src]Enum rendy::wsi::winit::WindowEvent
Describes an event from a Window
.
Variants
Resized(LogicalSize)
The size of the window has changed. Contains the client area's new dimensions.
Moved(LogicalPosition)
The position of the window has changed. Contains the window's new position.
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.
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
An event from the keyboard has been received.
Fields of KeyboardInput
device_id: DeviceId
input: KeyboardInput
CursorMoved
The cursor has moved on the window.
Fields of CursorMoved
device_id: DeviceId
position: LogicalPosition
(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.
modifiers: ModifiersState
CursorEntered
The cursor has entered the window.
Fields of CursorEntered
device_id: DeviceId
CursorLeft
The cursor has left the window.
Fields of CursorLeft
device_id: DeviceId
MouseWheel
A mouse wheel movement or touchpad scroll occurred.
Fields of MouseWheel
MouseInput
An mouse button press has been received.
Fields of MouseInput
TouchpadPressure
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).
Fields of TouchpadPressure
AxisMotion
Motion on some analog axis. May report data redundant to other, more specific events.
Fields of AxisMotion
Refresh
The window needs to be redrawn.
Touch(Touch)
Touch event has been received
HiDpiFactorChanged(f64)
The DPI factor of the window has changed.
The following user actions can cause DPI changes:
- Changing the display's resolution.
- Changing the display's DPI factor (e.g. in Control Panel on Windows).
- Moving the window to a display with a different DPI factor.
For more information about DPI in general, see the dpi
module.
Trait Implementations
impl Clone for WindowEvent
[src]
fn clone(&self) -> WindowEvent
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<WindowEvent> for WindowEvent
[src]
fn eq(&self, other: &WindowEvent) -> bool
[src]
fn ne(&self, other: &WindowEvent) -> bool
[src]
impl Debug for WindowEvent
[src]
Auto Trait Implementations
impl Unpin for WindowEvent
impl Sync for WindowEvent
impl Send for WindowEvent
impl UnwindSafe for WindowEvent
impl RefUnwindSafe for WindowEvent
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Supports<T> for T
[src]
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.
impl<T> Erased for T
[src]
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
Convert the source color to the destination color using the bradford method by default Read more