16 lines
324 B
Rust
16 lines
324 B
Rust
/// The interaction of a mouse cursor.
|
|
#[derive(Debug, Eq, PartialEq, Clone, Copy, PartialOrd, Ord, Default)]
|
|
#[allow(missing_docs)]
|
|
pub enum Interaction {
|
|
#[default]
|
|
Idle,
|
|
Pointer,
|
|
Grab,
|
|
Text,
|
|
Crosshair,
|
|
Working,
|
|
Grabbing,
|
|
ResizingHorizontally,
|
|
ResizingVertically,
|
|
NotAllowed,
|
|
}
|