cursor-shape-v1

(index)

wp_cursor_shape_manager_v1

cursor shape manager

Interface
Version 2

This global offers an alternative, optional way to set cursor images. This new way uses enumerated cursors instead of a wl_surface like wl_pointer.set_cursor does.

Warning! The protocol described in this file is currently in the testing phase. Backward compatible changes may be added together with the corresponding interface version bump. Backward incompatible changes can only be done by creating a new major version of the extension.

wp_cursor_shape_manager_v1.destroy

destroy the manager

Destructor Request
Since Version 1

Destroy the cursor shape manager.

wp_cursor_shape_manager_v1.get_pointer

manage the cursor shape of a pointer device

Request
Since Version 1

Obtain a wp_cursor_shape_device_v1 for a wl_pointer object.

When the pointer capability is removed from the wl_seat, the wp_cursor_shape_device_v1 object becomes inert.

ArgumentTypeDescription
cursor_shape_devicenew_id<wp_cursor_shape_device_v1>

pointerobject<wl_pointer>

wp_cursor_shape_manager_v1.get_tablet_tool_v2

manage the cursor shape of a tablet tool device

Request
Since Version 1

Obtain a wp_cursor_shape_device_v1 for a zwp_tablet_tool_v2 object.

When the zwp_tablet_tool_v2 is removed, the wp_cursor_shape_device_v1 object becomes inert.

ArgumentTypeDescription
cursor_shape_devicenew_id<wp_cursor_shape_device_v1>

tablet_toolobject<zwp_tablet_tool_v2>

wp_cursor_shape_device_v1

cursor shape for a device

Interface
Version 2

This interface allows clients to set the cursor shape.

wp_cursor_shape_device_v1.destroy

destroy the cursor shape device

Destructor Request
Since Version 1

Destroy the cursor shape device.

The device cursor shape remains unchanged.

wp_cursor_shape_device_v1.set_shape

set device cursor to the shape

Request
Since Version 1

Sets the device cursor to the specified shape. The compositor will change the cursor image based on the specified shape.

The cursor actually changes only if the input device focus is one of the requesting client's surfaces. If any, the previous cursor image (surface or shape) is replaced.

The "shape" argument must be a valid enum entry, otherwise the invalid_shape protocol error is raised.

This is similar to the wl_pointer.set_cursor and zwp_tablet_tool_v2.set_cursor requests, but this request accepts a shape instead of contents in the form of a surface. Clients can mix set_cursor and set_shape requests.

The serial parameter must match the latest wl_pointer.enter or zwp_tablet_tool_v2.proximity_in serial number sent to the client. Otherwise the request will be ignored.

ArgumentTypeDescription
serialuint

serial number of the enter event

shapeuint<shape>

wp_cursor_shape_device_v1.shape

cursor shapes

Enum
Since Version 1

This enum describes cursor shapes.

The names are taken from the CSS W3C specification: https://w3c.github.io/csswg-drafts/css-ui/#cursor with a few additions.

Note that there are some groups of cursor shapes that are related: The first group is drag-and-drop cursors which are used to indicate the selected action during dnd operations. The second group is resize cursors which are used to indicate resizing and moving possibilities on window borders. It is recommended that the shapes in these groups should use visually compatible images and metaphors.

EntryValueSinceDescription
default11

default cursor

context_menu21

a context menu is available for the object under the cursor

help31

help is available for the object under the cursor

pointer41

pointer that indicates a link or another interactive element

progress51

progress indicator

wait61

program is busy, user should wait

cell71

a cell or set of cells may be selected

crosshair81

simple crosshair

text91

text may be selected

vertical_text101

vertical text may be selected

alias111

drag-and-drop: alias of/shortcut to something is to be created

copy121

drag-and-drop: something is to be copied

move131

drag-and-drop: something is to be moved

no_drop141

drag-and-drop: the dragged item cannot be dropped at the current cursor location

not_allowed151

drag-and-drop: the requested action will not be carried out

grab161

drag-and-drop: something can be grabbed

grabbing171

drag-and-drop: something is being grabbed

e_resize181

resizing: the east border is to be moved

n_resize191

resizing: the north border is to be moved

ne_resize201

resizing: the north-east corner is to be moved

nw_resize211

resizing: the north-west corner is to be moved

s_resize221

resizing: the south border is to be moved

se_resize231

resizing: the south-east corner is to be moved

sw_resize241

resizing: the south-west corner is to be moved

w_resize251

resizing: the west border is to be moved

ew_resize261

resizing: the east and west borders are to be moved

ns_resize271

resizing: the north and south borders are to be moved

nesw_resize281

resizing: the north-east and south-west corners are to be moved

nwse_resize291

resizing: the north-west and south-east corners are to be moved

col_resize301

resizing: that the item/column can be resized horizontally

row_resize311

resizing: that the item/row can be resized vertically

all_scroll321

something can be scrolled in any direction

zoom_in331

something can be zoomed in

zoom_out341

something can be zoomed out

dnd_ask352

drag-and-drop: the user will select which action will be carried out (non-css value)

all_resize362

resizing: something can be moved or resized in any direction (non-css value)

EntryValueSinceDescription
invalid_shape11

the specified shape value is invalid

Copyright