iced-yoda/core/src/mouse/interaction.rs
2024-04-25 06:05:37 +02:00

18 lines
346 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,
NotAllowed,
ZoomIn,
}