Struct wayland_client::protocol::wl_data_device::WlDataDevice
[−]
[src]
pub struct WlDataDevice { /* fields omitted */ }
Methods
impl WlDataDevice
[src]
fn start_drag(&self,
source: Option<&WlDataSource>,
origin: &WlSurface,
icon: Option<&WlSurface>,
serial: u32)
-> RequestResult<()>
source: Option<&WlDataSource>,
origin: &WlSurface,
icon: Option<&WlSurface>,
serial: u32)
-> RequestResult<()>
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.
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 current and pending input regions of the icon wl_surface are cleared, and wl_surface.set_input_region is ignored until the wl_surface is no longer used as the icon surface. When the use as an icon ends, the current and pending input regions become undefined, and the wl_surface is unmapped.
fn set_selection(&self,
source: Option<&WlDataSource>,
serial: u32)
-> RequestResult<()>
source: Option<&WlDataSource>,
serial: u32)
-> RequestResult<()>
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.
fn release(&self) -> RequestResult<()>
destroy data device
This request destroys the data device.
This is a destructor, you cannot send requests to this object once this method is called.
Trait Implementations
impl Send for WlDataDevice
[src]
impl Sync for WlDataDevice
[src]
impl Proxy for WlDataDevice
[src]
fn ptr(&self) -> *mut wl_proxy
Pointer to the underlying wayland proxy object
unsafe fn from_ptr_new(ptr: *mut wl_proxy) -> WlDataDevice
Create an instance from a wayland pointer Read more
unsafe fn from_ptr_initialized(ptr: *mut wl_proxy) -> WlDataDevice
Create an instance from a wayland pointer Read more
fn interface_ptr() -> *const wl_interface
Pointer to the interface representation
fn interface_name() -> &'static str
Internal wayland name of this interface
fn supported_version() -> u32
Max version of this interface supported
fn version(&self) -> u32
Current version of the interface this proxy is instanciated with
fn is_alive(&self) -> bool
Check if the proxt behind this handle is actually still alive
fn equals(&self, other: &WlDataDevice) -> bool
Check of two handles are actually the same wayland object Read more
fn set_user_data(&self, ptr: *mut ())
Set a pointer associated as user data on this proxy Read more
fn get_user_data(&self) -> *mut ()
Get the pointer associated as user data on this proxy Read more