Enum opencv::highgui::MouseEventTypes [−][src]
#[repr(C)]
pub enum MouseEventTypes {
EVENT_MOUSEMOVE,
EVENT_LBUTTONDOWN,
EVENT_RBUTTONDOWN,
EVENT_MBUTTONDOWN,
EVENT_LBUTTONUP,
EVENT_RBUTTONUP,
EVENT_MBUTTONUP,
EVENT_LBUTTONDBLCLK,
EVENT_RBUTTONDBLCLK,
EVENT_MBUTTONDBLCLK,
EVENT_MOUSEWHEEL,
EVENT_MOUSEHWHEEL,
}
Expand description
Mouse Events see cv::MouseCallback
Variants
indicates that the mouse pointer has moved over the window.
indicates that the left mouse button is pressed.
indicates that the right mouse button is pressed.
indicates that the middle mouse button is pressed.
indicates that left mouse button is released.
indicates that right mouse button is released.
indicates that middle mouse button is released.
indicates that left mouse button is double clicked.
indicates that right mouse button is double clicked.
indicates that middle mouse button is double clicked.
positive and negative values mean forward and backward scrolling, respectively.
positive and negative values mean right and left scrolling, respectively.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MouseEventTypes
impl Send for MouseEventTypes
impl Sync for MouseEventTypes
impl Unpin for MouseEventTypes
impl UnwindSafe for MouseEventTypes
Blanket Implementations
Mutably borrows from an owned value. Read more