mirror of
https://github.com/bevyengine/bevy
synced 2024-12-23 03:23:20 +00:00
40 lines
580 B
Rust
40 lines
580 B
Rust
|
/// The icon to display for a window's cursor
|
||
|
#[derive(Debug, Hash, PartialEq, Eq, Clone, Copy)]
|
||
|
pub enum CursorIcon {
|
||
|
Default,
|
||
|
Crosshair,
|
||
|
Hand,
|
||
|
Arrow,
|
||
|
Move,
|
||
|
Text,
|
||
|
Wait,
|
||
|
Help,
|
||
|
Progress,
|
||
|
NotAllowed,
|
||
|
ContextMenu,
|
||
|
Cell,
|
||
|
VerticalText,
|
||
|
Alias,
|
||
|
Copy,
|
||
|
NoDrop,
|
||
|
Grab,
|
||
|
Grabbing,
|
||
|
AllScroll,
|
||
|
ZoomIn,
|
||
|
ZoomOut,
|
||
|
EResize,
|
||
|
NResize,
|
||
|
NeResize,
|
||
|
NwResize,
|
||
|
SResize,
|
||
|
SeResize,
|
||
|
SwResize,
|
||
|
WResize,
|
||
|
EwResize,
|
||
|
NsResize,
|
||
|
NeswResize,
|
||
|
NwseResize,
|
||
|
ColResize,
|
||
|
RowResize,
|
||
|
}
|