Enum conrod::cursor::MouseCursor [] [src]

pub enum MouseCursor {
    Arrow,
    Text,
    VerticalText,
    Hand,
    Grab,
    Grabbing,
    ResizeVertical,
    ResizeHorizontal,
    ResizeTopLeftBottomRight,
    ResizeTopRightBottomLeft,
    Custom(u8),
}

This enum specifies cursor types used by internal widgets. For custom widgets using custom cursor types, you can still use this enum by specifying a numbered custom variant.

Variants

Default mouse cursor.

Text input curosr.

Text input for vertical text.

Open hand with index finger pointing up.

Open hand.

Closed hand.

Vertical resize cursor.

Horizontal resize cursor.

Diagonal resize cursor pointing to top left and bottom right corners.

Diagonal resize cursor pointing to top right to bottom left corners.

Custom cursor variant. Encode your favourite cursor with a u8.

Trait Implementations

impl Copy for MouseCursor
[src]

impl Clone for MouseCursor
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MouseCursor
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for MouseCursor
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for MouseCursor
[src]