pub struct WinitInputHelper { /* private fields */ }
Expand description

The main struct of the API.

Create with WinitInputHelper::new. Call WinitInputHelper::update for every winit::event::Event you receive from winit. WinitInputHelper::update returning true indicates a step has occured. You should now run your application logic, calling any of the accessor methods you need.

An alternative API is provided via WinitInputHelper::step_with_window_events, call this method instead of WinitInputHelper::update if you need to manually control when a new step begins. A step occurs every time this method is called.

Do not mix usages of WinitInputHelper::update and WinitInputHelper::step_with_window_events. You should stick to one or the other.

Implementations

Pass every winit event to this function and run your application logic when it returns true.

The following winit events are handled:

  • Event::NewEvents clears all internal state.
  • Event::MainEventsCleared causes this function to return true, signifying a “step” has completed.
  • Event::WindowEvent updates internal state, this will affect the result of accessor methods immediately.

Pass a slice containing every winit event that occured within the step to this function. Ensure this method is only called once per application main loop. Ensure every event since the last WinitInputHelper::step_with_window_events call is included in the events argument.

WinitInputHelper::Update is easier to use. But this method is useful when your application logic steps dont line up with winit’s event loop. e.g. you have a seperate thread for application logic using WinitInputHelper that constantly runs regardless of winit’s event loop and you need to send events to it directly.

Returns true when the specified keyboard key goes from “not pressed” to “pressed”. Otherwise returns false.

This is suitable for game controls.

Returns true when the specified keyboard key goes from “not pressed” to “pressed”. Otherwise returns false.

Will repeat key presses while held down according to the OS’s key repeat configuration This is suitable for UI.

Returns true when the specified keyboard key goes from “pressed” to “not pressed”. Otherwise returns false.

Returns true while the specified keyboard key remains “pressed”. Otherwise returns false.

Returns true while any shift key is held on the keyboard. Otherwise returns false.

Returns true while any control key is held on the keyboard. Otherwise returns false.

Returns true while any alt key is held on the keyboard. Otherwise returns false.

Returns true when the specified mouse button goes from “not pressed” to “pressed”. Otherwise returns false.

Left => 0 Right => 1 Middle => 2 Other => 3..255

Returns true when the specified mouse button goes from “pressed” to “not pressed”. Otherwise returns false.

Left => 0 Right => 1 Middle => 2 Other => 3..255

Returns true while the specified mouse button remains “pressed”. Otherwise returns false.

Left => 0 Right => 1 Middle => 2 Other => 3..255

Returns 0.0 if the mouse is outside of the window. Otherwise returns the amount scrolled by the mouse during the last step.

Returns None when the mouse is outside of the window. Otherwise returns the mouse coordinates in pixels.

Returns the change in mouse coordinates that occured during the last step. Returns (0.0, 0.0) if the window loses focus.

Returns the characters pressed during the last step. The earlier the character was pressed, the lower the index in the Vec.

Returns the path to a file that has been drag-and-dropped onto the window.

Returns the current window size if it was resized during the last step. Otherwise returns None.

Returns None when no WindowEvent::Resized have been received yet. After one has been received it returns the current resolution of the window.

Returns the current scale factor if it was changed during the last step. Otherwise returns None.

Returns None when no WindowEvent::ScaleFactorChanged have been received yet. After one has been received it returns the current scale_factor of the window.

Returns true if the OS has requested the application to quit. Otherwise returns false.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.