pub struct WindowEventReducer { /* private fields */ }Expand description
Manages stateful transformations of winit [WindowEvent].
Store a single instance of this per window, then call WindowEventReducer::reduce
on each [WindowEvent] for that window.
Use the WindowEventTranslation value to receive [PointerEvent]s and [KeyboardEvent]s.
This handles:
- [
ModifiersChanged][WindowEvent::ModifiersChanged] - [
KeyboardInput][WindowEvent::KeyboardInput] - [
Touch][WindowEvent::Touch] - [
MouseInput][WindowEvent::MouseInput] - [
MouseWheel][WindowEvent::MouseWheel] - [
CursorMoved][WindowEvent::CursorMoved] - [
CursorEntered][WindowEvent::CursorEntered] - [
CursorLeft][WindowEvent::CursorLeft] - [
PinchGesture][WindowEvent::PinchGesture] - [
RotationGesture][WindowEvent::RotationGesture]
Implementations§
Source§impl WindowEventReducer
impl WindowEventReducer
Sourcepub fn reduce(
&mut self,
scale_factor: f64,
we: &WindowEvent,
) -> Option<WindowEventTranslation>
pub fn reduce( &mut self, scale_factor: f64, we: &WindowEvent, ) -> Option<WindowEventTranslation>
Process a [WindowEvent].
Trait Implementations§
Source§impl Debug for WindowEventReducer
impl Debug for WindowEventReducer
Source§impl Default for WindowEventReducer
impl Default for WindowEventReducer
Source§fn default() -> WindowEventReducer
fn default() -> WindowEventReducer
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WindowEventReducer
impl RefUnwindSafe for WindowEventReducer
impl Send for WindowEventReducer
impl Sync for WindowEventReducer
impl Unpin for WindowEventReducer
impl UnsafeUnpin for WindowEventReducer
impl UnwindSafe for WindowEventReducer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.