[−][src]Struct smithay_client_toolkit::data_device::DataDevice
Handle to support data exchange on a given seat
This type provides you with functionality to send and receive data through drag'n'drop or copy/paste actions. It is associated with a seat upon creation.
Implementations
impl DataDevice
[src]
pub fn init_for_seat<Impl>(
manager: &WlDataDeviceManager,
seat: &WlSeat,
implem: Impl
) -> DataDevice where
Impl: FnMut(DndEvent<'a>) + 'static,
[src]
manager: &WlDataDeviceManager,
seat: &WlSeat,
implem: Impl
) -> DataDevice where
Impl: FnMut(DndEvent<'a>) + 'static,
Create the DataDevice helper for this seat.
You need to provide an implementation that will handle drag'n'drop events.
pub fn start_drag(
&self,
origin: &WlSurface,
source: Option<DataSource>,
actions: DndAction,
icon: Option<&WlSurface>,
serial: u32
)
[src]
&self,
origin: &WlSurface,
source: Option<DataSource>,
actions: DndAction,
icon: Option<&WlSurface>,
serial: u32
)
Start a drag'n'drop offer
You need to specify the origin surface, as well a serial associated to an implicit grab on this surface (for example received by a pointer click).
An optional DataSource
can be provided. If it is None
, this drag'n'drop will
be considered as internal to your application, and other applications will not be
notified of it. You are then responsible for acting accordingly on drop.
You also need to specify which possible drag'n'drop actions are associated to this drag (copy, move, or ask), the final action will be chosen by the target and/or compositor.
You can finally provide a surface that will be used as an icon associated with this drag'n'drop for user visibility.
pub fn set_selection(&self, source: &Option<DataSource>, serial: u32)
[src]
Provide a data source as the new content for the selection
Correspond to traditional copy/paste behavior. Setting the
source to None
will clear the selection.
pub fn with_selection<F, T>(&self, f: F) -> T where
F: FnOnce(Option<&DataOffer>) -> T,
[src]
F: FnOnce(Option<&DataOffer>) -> T,
Access the DataOffer
currently associated with the selection buffer
Trait Implementations
impl Drop for DataDevice
[src]
Auto Trait Implementations
impl !RefUnwindSafe for DataDevice
impl Send for DataDevice
impl Sync for DataDevice
impl Unpin for DataDevice
impl !UnwindSafe for DataDevice
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,