[−][src]Struct conrod_core::input::state::State
Holds the current state of user input.
This includes the state of all buttons on the keyboard and mouse, as well as the position of the mouse.
It also includes which widgets, if any, are capturing keyboard and mouse input.
Fields
mouse: Mouse
Mouse position and button state.
touch: FnvHashMap<Id, Touch>
All in-progress touch interactions.
widget_capturing_keyboard: Option<Id>
Which widget, if any, is currently capturing the keyboard
widget_capturing_mouse: Option<Id>
Which widget, if any, is currently capturing the mouse
widget_under_mouse: Option<Id>
The widget that is currently under the mouse cursor.
If the mouse is currently over multiple widgets, this index will represent the top-most, non-graphic-child widget.
modifiers: ModifierKey
Which modifier keys are being held down.
Implementations
impl State
[src]
pub fn new() -> State
[src]
Returns a fresh new input state
pub fn relative_to(self, xy: Point) -> State
[src]
Returns a copy of the input::State relative to the given position::Point
Trait Implementations
impl Clone for State
[src]
impl Debug for State
[src]
impl PartialEq<State> for State
[src]
impl StructuralPartialEq for State
[src]
Auto Trait Implementations
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
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>,