pub trait RequestDispatch<Ctx> {
    type Error;
    type StartDragFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetSelectionFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type ReleaseFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;

    // Required methods
    fn start_drag<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        source: Object,
        origin: Object,
        icon: Object,
        serial: u32
    ) -> Self::StartDragFut<'a>;
    fn set_selection<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        source: Object,
        serial: u32
    ) -> Self::SetSelectionFut<'a>;
    fn release<'a>(ctx: &'a mut Ctx, object_id: u32) -> Self::ReleaseFut<'a>;
}

Required Associated Types§

source

type Error

source

type StartDragFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by start_drag

source

type SetSelectionFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_selection

source

type ReleaseFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by release

Required Methods§

source

fn start_drag<'a>( ctx: &'a mut Ctx, object_id: u32, source: Object, origin: Object, icon: Object, serial: u32 ) -> Self::StartDragFut<'a>

start drag-and-drop operation

This request asks the compositor to start a drag-and-drop operation on behalf of the client.

The source argument is the data source that provides the data for the eventual data transfer. If source is NULL, enter, leave and motion events are sent only to the client that initiated the drag and the client is expected to handle the data passing internally. If source is destroyed, the drag-and-drop session will be cancelled.

The origin surface is the surface where the drag originates and the client must have an active implicit grab that matches the serial.

The icon surface is an optional (can be NULL) surface that provides an icon to be moved around with the cursor. Initially, the top-left corner of the icon surface is placed at the cursor hotspot, but subsequent wl_surface.attach request can move the relative position. Attach requests must be confirmed with wl_surface.commit as usual. The icon surface is given the role of a drag-and-drop icon. If the icon surface already has another role, it raises a protocol error.

The input region is ignored for wl_surfaces with the role of a drag-and-drop icon.

source

fn set_selection<'a>( ctx: &'a mut Ctx, object_id: u32, source: Object, serial: u32 ) -> Self::SetSelectionFut<'a>

copy data to the selection

This request asks the compositor to set the selection to the data from the source on behalf of the client.

To unset the selection, set the source to NULL.

source

fn release<'a>(ctx: &'a mut Ctx, object_id: u32) -> Self::ReleaseFut<'a>

destroy data device

This request destroys the data device.

Implementors§