25 lines
453 B
Rust
25 lines
453 B
Rust
/// The interaction of a mouse cursor.
|
|
#[derive(Debug, Eq, PartialEq, Clone, Copy, PartialOrd, Ord, Default)]
|
|
#[allow(missing_docs)]
|
|
pub enum Interaction {
|
|
#[default]
|
|
None,
|
|
Idle,
|
|
Pointer,
|
|
Grab,
|
|
Text,
|
|
Crosshair,
|
|
Working,
|
|
Grabbing,
|
|
ResizingHorizontally,
|
|
ResizingVertically,
|
|
ResizingDiagonallyUp,
|
|
ResizingDiagonallyDown,
|
|
NotAllowed,
|
|
ZoomIn,
|
|
ZoomOut,
|
|
Cell,
|
|
Move,
|
|
Copy,
|
|
Help,
|
|
}
|