2020-04-30 08:16:38 +02:00
|
|
|
/// The interaction of a mouse cursor.
|
2023-03-14 11:11:17 +01:00
|
|
|
#[derive(Debug, Eq, PartialEq, Clone, Copy, PartialOrd, Ord, Default)]
|
2020-04-30 08:16:38 +02:00
|
|
|
#[allow(missing_docs)]
|
|
|
|
|
pub enum Interaction {
|
2023-03-14 11:11:17 +01:00
|
|
|
#[default]
|
2020-04-30 08:16:38 +02:00
|
|
|
Idle,
|
|
|
|
|
Pointer,
|
|
|
|
|
Grab,
|
|
|
|
|
Text,
|
|
|
|
|
Crosshair,
|
|
|
|
|
Working,
|
|
|
|
|
Grabbing,
|
|
|
|
|
ResizingHorizontally,
|
|
|
|
|
ResizingVertically,
|
2023-04-12 04:37:39 +02:00
|
|
|
NotAllowed,
|
2020-04-30 08:16:38 +02:00
|
|
|
}
|