iced_core/mouse/
interaction.rs

1/// The interaction of a mouse cursor.
2#[derive(Debug, Eq, PartialEq, Clone, Copy, PartialOrd, Ord, Default)]
3#[allow(missing_docs)]
4pub enum Interaction {
5    #[default]
6    None,
7    Hidden,
8    Idle,
9    ContextMenu,
10    Help,
11    Pointer,
12    Progress,
13    Wait,
14    Cell,
15    Crosshair,
16    Text,
17    Alias,
18    Copy,
19    Move,
20    NoDrop,
21    NotAllowed,
22    Grab,
23    Grabbing,
24    ResizingHorizontally,
25    ResizingVertically,
26    ResizingDiagonallyUp,
27    ResizingDiagonallyDown,
28    ResizingColumn,
29    ResizingRow,
30    AllScroll,
31    ZoomIn,
32    ZoomOut,
33}