[−][src]Enum conrod_core::event::Ui
Represents all events interpreted by the Ui
.
Variants
Entered text, along with the widget that was capturing the keyboard at the time.
Some button was pressed, along with the widget that was capturing the device whose button was pressed.
Some button was released, along with the widget that was capturing the device whose button was released.
Represents all forms of motion input, alongside with the widget that was capturing the mouse at the time.
Interaction with a touch screen/surface.
WindowResized(Dimensions)
The window's dimensions were resized.
Represents a pointing device being pressed and subsequently released while over the same location.
DoubleClick(Option<Id>, DoubleClick)
Two Click
events with the same button
and xy
occurring within a duration that is less
that the theme.double_click_threshold
.
A user tapped a touch screen/surface.
Represents a pointing device button being pressed and a subsequent movement of the mouse.
A generic scroll event.
Scroll
does not necessarily have to get created by a mouse wheel, it could be generated
from a keypress, or as a response to handling some other event.
Received Scroll
events are first applied to all scrollable widgets under the mouse from
top to bottom. The remainder will then be applied to either 1. whatever widget captures the
device from which the scroll was emitted or 2. whatever widget was specified.
Indicates that the given widget has captured the given user input source.
Indicates that the given widget has released the given user input source.
Trait Implementations
impl Clone for Ui
[src]
impl Debug for Ui
[src]
impl From<Ui> for Event
[src]
impl PartialEq<Ui> for Ui
[src]
impl StructuralPartialEq for Ui
[src]
Auto Trait Implementations
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> Style for T where
T: Any + Debug + PartialEq<T>,
[src]
T: Any + Debug + PartialEq<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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>,