[−][src]Struct conrod_core::input::widget::Widget
Provides only events and input state that are relevant to a specific widget.
This type can be produced by calling the UiCell::input
method with the target widget's
widget::Id
. This is particularly useful
Unlike input::Global
, input::Widget
methods are tailored to the widget for which they are
produced.
Implementations
impl<'a> Widget<'a>
[src]
pub fn for_widget(idx: Id, rect: Rect, global: &'a Global) -> Self
[src]
Returns a Widget
with events specifically for the given widget.
Filters out only the events that directly pertain to the widget.
All events will also be made relative to the widget's own (0, 0) origin.
pub fn mouse(&self) -> Option<Mouse<'a>>
[src]
If the widget is currently capturing the mouse, this returns the state of the mouse.
Returns None
if the widget is not capturing the mouse.
pub fn events(&self) -> Events<'a>ⓘ
[src]
Produces an iterator yielding all events that are relevant to a specific widget.
All events provided by this Iterator will be filtered in accordance with input capturing. For example: If the widget does not capture the mouse, it will not receive any mouse-related events. If the widget captures the keyboard it will receive all keyboard events.
All mouse events will have their coordinates relative to the middle of the widget's Rect
.
pub fn presses(&self) -> Presses<'a>ⓘ
[src]
Filters all events yielded by Self::events
other than event::Press
es.
pub fn releases(&self) -> Releases<'a>ⓘ
[src]
Filters all events yielded by Self::events
other than event::Release
es.
pub fn clicks(&self) -> Clicks<'a>ⓘ
[src]
Filters all events yielded by Self::events
for all event::Click
s.
A click is determined to have occured if a pointing device button was both pressed and released over the widget.
pub fn taps(&self) -> Taps<'a>ⓘ
[src]
Filters all events yielded by Self::events
for all event::Tap
s.
A tap is determined to have occured if a touch interaction both started and ended over the widget.
pub fn drags(&self) -> Drags<'a>ⓘ
[src]
Produces an iterator that yields all event::Drag
events yielded by the Events
iterator.
Only events that occurred while the widget was capturing the device that did the dragging will be yielded.
pub fn texts(&self) -> Texts<'a>ⓘ
[src]
Produces an iterator that yields all Input::Text
events that have occurred as &str
s
since the last time Ui::set_widgets
was called.
Only events that occurred while the widget was capturing the keyboard will be yielded.
pub fn scrolls(&self) -> Scrolls<'a>ⓘ
[src]
Produce an iterator that yields only the Scroll
events yielded by the Events
iterator.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Widget<'a>
impl<'a> Send for Widget<'a>
impl<'a> Sync for Widget<'a>
impl<'a> Unpin for Widget<'a>
impl<'a> UnwindSafe for Widget<'a>
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> 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>,