[][src]Struct nannou::ui::input::global::Global

pub struct Global {
    pub start: State,
    pub current: State,
    pub last_click: Option<(Instant, Click)>,
    // some fields omitted
}

Global input event handler that also implements input::Provider. The Ui passes all events to it's Global instance, which aggregates and interprets the events to provide so-called 'high-level' events to widgets. This input gets reset after every update by the Ui.

Fields

start: State

The input::State as it was at the end of the last update cycle.

current: State

The most recent input::State, with updates from handling all the events this update cycle

last_click: Option<(Instant, Click)>

Tracks the last click that occurred and the time at which it occurred in order to create double-click events.

Methods

impl Global[src]

pub fn new() -> Global[src]

Returns a fresh new Global

Important traits for Events<'a>
pub fn events(&self) -> Events[src]

Returns an iterator yielding all events that have occurred since the last time Ui::set_widgets was called.

pub fn push_event(&mut self, event: Event)[src]

Add the new event to the stack.

pub fn clear_events_and_update_start_state(&mut self)[src]

Called at the end of every update cycle in order to prepare the Global to handle events for the next one.

Trait Implementations

impl Debug for Global[src]

Auto Trait Implementations

impl Send for Global

impl Sync for Global

Blanket Implementations

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

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

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.

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

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

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

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.