33 lines
568 B
Rust
33 lines
568 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,
|
|
Hidden,
|
|
Idle,
|
|
ContextMenu,
|
|
Help,
|
|
Pointer,
|
|
Progress,
|
|
Wait,
|
|
Cell,
|
|
Crosshair,
|
|
Text,
|
|
Alias,
|
|
Copy,
|
|
Move,
|
|
NoDrop,
|
|
NotAllowed,
|
|
Grab,
|
|
Grabbing,
|
|
ResizingHorizontally,
|
|
ResizingVertically,
|
|
ResizingDiagonallyUp,
|
|
ResizingDiagonallyDown,
|
|
ResizingColumn,
|
|
ResizingRow,
|
|
AllScroll,
|
|
ZoomIn,
|
|
ZoomOut,
|
|
}
|