Enum winit::MouseCursor[][src]

pub enum MouseCursor {
    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,
}

Describes the appearance of the mouse cursor.

Variants

The platform-dependent default cursor.

A simple crosshair.

A hand (often used to indicate links in web browsers).

Self explanatory.

Indicates something is to be moved.

Indicates text that may be selected or edited.

Program busy indicator.

Help indicator (often rendered as a "?")

Progress indicator. Shows that processing is being done. But in contrast with "Wait" the user may still interact with the program. Often rendered as a spinning beach ball, or an arrow with a watch or hourglass.

Cursor showing that something cannot be done.

Indicate that some edge is to be moved. For example, the 'SeResize' cursor is used when the movement starts from the south-east corner of the box.

Trait Implementations

impl Debug for MouseCursor
[src]

Formats the value using the given formatter. Read more

impl Copy for MouseCursor
[src]

impl Clone for MouseCursor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MouseCursor
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for MouseCursor
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for MouseCursor

impl Sync for MouseCursor