[go: up one dir, main page]

[][src]Struct egui::InputState

pub struct InputState {
    pub raw: RawInput,
    pub mouse: MouseInput,
    pub scroll_delta: Vec2,
    pub screen_size: Vec2,
    pub pixels_per_point: f32,
    pub time: f64,
    pub unstable_dt: f32,
    pub predicted_dt: f32,
    pub seconds_since_midnight: Option<f64>,
    pub events: Vec<Event>,
}

What egui maintains

Fields

raw: RawInput

The raw input we got this fraem

mouse: MouseInputscroll_delta: Vec2

How many pixels the user scrolled

screen_size: Vec2

Size of the screen in points.

pixels_per_point: f32

Also known as device pixel ratio, > 1 for HDPI screens.

time: f64

Time in seconds. Relative to whatever. Used for animation.

unstable_dt: f32

Time since last frame, in seconds. This can be very unstable in reactive mode (when we don't paint each frame).

predicted_dt: f32

Can be used to fast-forward to next frame for instance feedback. hacky.

seconds_since_midnight: Option<f64>

Local time. Only used for the clock in the demo app.

events: Vec<Event>

In-order events received this frame

Implementations

impl InputState[src]

#[must_use]pub fn begin_frame(self, new: RawInput) -> InputState[src]

pub fn wants_repaint(&self) -> bool[src]

pub fn key_pressed(&self, desired_key: Key) -> bool[src]

Was the given key pressed this frame?

pub fn key_released(&self, desired_key: Key) -> bool[src]

Was the given key released this frame?

impl InputState[src]

pub fn ui(&self, ui: &mut Ui)[src]

Trait Implementations

impl Clone for InputState[src]

impl Debug for InputState[src]

impl Default for InputState[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.