Struct wayland_client::cursor::Cursor [] [src]

pub struct Cursor<'a> { /* fields omitted */ }

A cursor from a theme. Can contain several images if animated.

Methods

impl<'a> Cursor<'a>
[src]

[src]

Retrieve the name of this cursor.

[src]

Retrieve the number of images contained in this animated cursor

[src]

Retrieve the image number of cursor animation.

Returns the image number of the animation that should be displayed after a given amount of time since the beginning of the animation, in milliseconds.

[src]

Retrieve the image number and its duration.

Same as frame(), but also returns the number of milliseconds this frame should still be displayed.

[src]

Retrieve a CursorImageBuffer containing the given image of an animation.

It can be used to be attached to a surface as a classic WlBuffer.

Returns None if the frame is out of bounds.

Note: destroying this buffer (using the destroy method) will corrupt your theme data, so you might not want to do it.

[src]

Retrive the metadate associated with given frame of the animation.

The tuple contains: (width, height, hotspot_x, hotspot_y, delay)

Returns None if the frame is out of bounds.

Trait Implementations

impl<'a> Send for Cursor<'a>
[src]