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

EVENT_MOUSEMOVE

indicates that the mouse pointer has moved over the window.

EVENT_LBUTTONDOWN

indicates that the left mouse button is pressed.

EVENT_RBUTTONDOWN

indicates that the right mouse button is pressed.

EVENT_MBUTTONDOWN

indicates that the middle mouse button is pressed.

EVENT_LBUTTONUP

indicates that left mouse button is released.

EVENT_RBUTTONUP

indicates that right mouse button is released.

EVENT_MBUTTONUP

indicates that middle mouse button is released.

EVENT_LBUTTONDBLCLK

indicates that left mouse button is double clicked.

EVENT_RBUTTONDBLCLK

indicates that right mouse button is double clicked.

EVENT_MBUTTONDBLCLK

indicates that middle mouse button is double clicked.

EVENT_MOUSEWHEEL

positive and negative values mean forward and backward scrolling, respectively.

EVENT_MOUSEHWHEEL

positive and negative values mean right and left scrolling, respectively.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.