48 lines
640 B
Rust
48 lines
640 B
Rust
//! Mouse cursor icon definitions.
|
|
|
|
/// System mouse cursor style.
|
|
#[derive(Debug, Default, Eq, PartialEq, Clone, Copy, PartialOrd, Ord, Hash)]
|
|
pub enum MouseCursor {
|
|
#[default]
|
|
Default,
|
|
Hand,
|
|
HandGrabbing,
|
|
Help,
|
|
|
|
Hidden,
|
|
|
|
Text,
|
|
VerticalText,
|
|
|
|
Working,
|
|
PtrWorking,
|
|
|
|
NotAllowed,
|
|
PtrNotAllowed,
|
|
|
|
ZoomIn,
|
|
ZoomOut,
|
|
|
|
Alias,
|
|
Copy,
|
|
Move,
|
|
AllScroll,
|
|
Cell,
|
|
Crosshair,
|
|
|
|
EResize,
|
|
NResize,
|
|
NeResize,
|
|
NwResize,
|
|
SResize,
|
|
SeResize,
|
|
SwResize,
|
|
WResize,
|
|
EwResize,
|
|
NsResize,
|
|
NwseResize,
|
|
NeswResize,
|
|
ColResize,
|
|
RowResize,
|
|
}
|