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 Idle,
8 Pointer,
9 Grab,
10 Text,
11 Crosshair,
12 Working,
13 Grabbing,
14 ResizingHorizontally,
15 ResizingVertically,
16 ResizingDiagonallyUp,
17 ResizingDiagonallyDown,
18 NotAllowed,
19 ZoomIn,
20 ZoomOut,
21 Cell,
22 Move,
23 Copy,
24 Help,
25}