[−][src]Struct conrod_core::input::global::Global
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.
Implementations
impl Global
[src]
pub fn new() -> Global
[src]
Returns a fresh new Global
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
Auto Trait Implementations
impl RefUnwindSafe for Global
impl Send for Global
impl Sync for Global
impl Unpin for Global
impl UnwindSafe for Global
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
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> 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>,