Enum i_slint_core::input::MouseEvent
source · [−]#[repr(C)]
pub enum MouseEvent {
Pressed {
position: Point,
button: PointerEventButton,
},
Released {
position: Point,
button: PointerEventButton,
},
Moved {
position: Point,
},
Wheel {
position: Point,
delta_x: f32,
delta_y: f32,
},
Exit,
}Expand description
A mouse or touch event
The only difference with crate::api::WindowEvent us that it uses untyped Point
TODO: merge with api::WindowEvent
Variants
Pressed
The mouse or finger was pressed
Released
The mouse or finger was released
Moved
Fields
position: PointThe position of the pointer has changed
Wheel
Wheel was operated.
pos is the position of the mouse when the event happens.
delta_x is the amount of pixels to scroll in horizontal direction,
delta_y is the amount of pixels to scroll in vertical direction.
Exit
The mouse exited the item or component
Implementations
Trait Implementations
sourceimpl Clone for MouseEvent
impl Clone for MouseEvent
sourcefn clone(&self) -> MouseEvent
fn clone(&self) -> MouseEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for MouseEvent
impl Debug for MouseEvent
sourceimpl From<WindowEvent> for MouseEvent
impl From<WindowEvent> for MouseEvent
sourcefn from(event: WindowEvent) -> Self
fn from(event: WindowEvent) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<MouseEvent> for MouseEvent
impl PartialEq<MouseEvent> for MouseEvent
sourcefn eq(&self, other: &MouseEvent) -> bool
fn eq(&self, other: &MouseEvent) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Copy for MouseEvent
impl StructuralPartialEq for MouseEvent
Auto Trait Implementations
impl RefUnwindSafe for MouseEvent
impl Send for MouseEvent
impl Sync for MouseEvent
impl Unpin for MouseEvent
impl UnwindSafe for MouseEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more