[][src]Trait wayland_raw_protocol_bindings::client::tablet_unstable_v2::zwp_tablet_seat_v2::zwp_tablet_seat_v2_listener

pub trait zwp_tablet_seat_v2_listener {
    fn tablet_added(
        &mut self,
        object: *mut zwp_tablet_seat_v2,
        id: *mut zwp_tablet_v2
    ) { ... }
fn tool_added(
        &mut self,
        object: *mut zwp_tablet_seat_v2,
        id: *mut zwp_tablet_tool_v2
    ) { ... }
fn pad_added(
        &mut self,
        object: *mut zwp_tablet_seat_v2,
        id: *mut zwp_tablet_pad_v2
    ) { ... } }

An interface for handling events.

Provided methods

fn tablet_added(
    &mut self,
    object: *mut zwp_tablet_seat_v2,
    id: *mut zwp_tablet_v2
)

new device notification

This event is sent whenever a new tablet becomes available on this seat. This event only provides the object id of the tablet, any static information about the tablet (device name, vid/pid, etc.) is sent through the wp_tablet interface.

fn tool_added(
    &mut self,
    object: *mut zwp_tablet_seat_v2,
    id: *mut zwp_tablet_tool_v2
)

a new tool has been used with a tablet

This event is sent whenever a tool that has not previously been used with a tablet comes into use. This event only provides the object id of the tool; any static information about the tool (capabilities, type, etc.) is sent through the wp_tablet_tool interface.

fn pad_added(
    &mut self,
    object: *mut zwp_tablet_seat_v2,
    id: *mut zwp_tablet_pad_v2
)

new pad notification

This event is sent whenever a new pad is known to the system. Typically, pads are physically attached to tablets and a pad_added event is sent immediately after the wp_tablet_seat.tablet_added. However, some standalone pad devices logically attach to tablets at runtime, and the client must wait for wp_tablet_pad.enter to know the tablet a pad is attached to.

This event only provides the object id of the pad. All further features (buttons, strips, rings) are sent through the wp_tablet_pad interface.

Loading content...

Implementors

Loading content...