Enum azul_winit::event::WindowEvent[][src]

pub enum WindowEvent<'a> {
Show variants Resized(PhysicalSize<u32>), Moved(PhysicalPosition<i32>), CloseRequested, Destroyed, DroppedFile(PathBuf), HoveredFile(PathBuf), HoveredFileCancelled, ReceivedCharacter(char), Focused(bool), KeyboardInput { device_id: DeviceId, input: KeyboardInput, is_synthetic: bool, }, ModifiersChanged(ModifiersState), CursorMoved { device_id: DeviceId, position: PhysicalPosition<f64>, modifiers: ModifiersState, }, CursorEntered { device_id: DeviceId, }, CursorLeft { device_id: DeviceId, }, MouseWheel { device_id: DeviceId, delta: MouseScrollDelta, phase: TouchPhase, modifiers: ModifiersState, }, MouseInput { device_id: DeviceId, state: ElementState, button: MouseButton, modifiers: ModifiersState, }, TouchpadPressure { device_id: DeviceId, pressure: f32, stage: i64, }, AxisMotion { device_id: DeviceId, axis: AxisId, value: f64, }, Touch(Touch), ScaleFactorChanged { scale_factor: f64, new_inner_size: &'a mut PhysicalSize<u32>, }, ThemeChanged(Theme), Command(u16),
}
Expand description

Describes an event from a Window.

Variants

Resized(PhysicalSize<u32>)
Expand description

The size of the window has changed. Contains the client area’s new dimensions.

Expand description

The position of the window has changed. Contains the window’s new position.

CloseRequested
Expand description

The window has been requested to close.

Destroyed
Expand description

The window has been destroyed.

DroppedFile(PathBuf)
Expand description

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)
Expand description

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
Expand description

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)
Expand description

The window received a unicode character.

Focused(bool)
Expand description

The window gained or lost focus.

The parameter is true if the window has gained focus, and false if it has lost focus.

KeyboardInput
Expand description

An event from the keyboard has been received.

Show fields

Fields of KeyboardInput

device_id: DeviceIdinput: KeyboardInputis_synthetic: bool
Expand description

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(ModifiersState)
Expand description

The keyboard modifiers have changed.

Platform-specific behavior:

  • Web: This API is currently unimplemented on the web. This isn’t by design - it’s an issue, and it should get fixed - but it’s the current state of the API.
CursorMoved
Expand description

The cursor has moved on the window.

Show fields

Fields of CursorMoved

device_id: DeviceIdposition: PhysicalPosition<f64>
Expand description

(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
👎 Deprecated:

Deprecated in favor of WindowEvent::ModifiersChanged

CursorEntered
Expand description

The cursor has entered the window.

Show fields

Fields of CursorEntered

device_id: DeviceId
CursorLeft
Expand description

The cursor has left the window.

Show fields

Fields of CursorLeft

device_id: DeviceId
MouseWheel
Expand description

A mouse wheel movement or touchpad scroll occurred.

Show fields

Fields of MouseWheel

device_id: DeviceIddelta: MouseScrollDeltaphase: TouchPhasemodifiers: ModifiersState
👎 Deprecated:

Deprecated in favor of WindowEvent::ModifiersChanged

MouseInput
Expand description

An mouse button press has been received.

Show fields

Fields of MouseInput

device_id: DeviceIdstate: ElementStatebutton: MouseButtonmodifiers: ModifiersState
👎 Deprecated:

Deprecated in favor of WindowEvent::ModifiersChanged

TouchpadPressure
Expand description

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

Show fields

Fields of TouchpadPressure

device_id: DeviceIdpressure: f32stage: i64
AxisMotion
Expand description

Motion on some analog axis. May report data redundant to other, more specific events.

Show fields

Fields of AxisMotion

device_id: DeviceIdaxis: AxisIdvalue: f64
Touch(Touch)
Expand description

Touch event has been received

ScaleFactorChanged
Expand description

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.

After this event callback has been processed, the window will be resized to whatever value is pointed to by the new_inner_size reference. By default, this will contain the size suggested by the OS, but it can be changed to any value.

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

Show fields

Fields of ScaleFactorChanged

scale_factor: f64new_inner_size: &'a mut PhysicalSize<u32>
ThemeChanged(Theme)
Expand description

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.

At the moment this is only supported on Windows.

Command(u16)
Expand description

Custom command (currently only emitted on Windows). Win32 allows the user to register custom command IDs for app menus, context menus and so on (see the WM_COMMAND message in the Windows API). This event allows you to, for example, react to when a user has clicked an item in an application menu.

The ID contained in the Command has to be registered by the user of the library, usually by using the WindowBuilder::with_create_callback function. For an example of how to use it, see the menu_bar_win32 example.

Implementations

impl<'a> WindowEvent<'a>[src]

pub fn to_static(self) -> Option<WindowEvent<'static>>[src]

Trait Implementations

impl Clone for WindowEvent<'static>[src]

fn clone(&self) -> Self[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

impl<'a> Debug for WindowEvent<'a>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq<WindowEvent<'a>> for WindowEvent<'a>[src]

fn eq(&self, other: &WindowEvent<'a>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &WindowEvent<'a>) -> bool[src]

This method tests for !=.

impl<'a> StructuralPartialEq for WindowEvent<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for WindowEvent<'a>

impl<'a> Send for WindowEvent<'a>

impl<'a> Sync for WindowEvent<'a>

impl<'a> Unpin for WindowEvent<'a>

impl<'a> !UnwindSafe for WindowEvent<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.