pub struct GtkPrimarySelectionDevice { /* private fields */ }
server
only.Expand description
gtk_primary_selection_device
See also the Request enum for this interface.
Implementations§
source§impl GtkPrimarySelectionDevice
impl GtkPrimarySelectionDevice
sourcepub fn data_offer(&self, offer: &GtkPrimarySelectionOffer)
pub fn data_offer(&self, offer: &GtkPrimarySelectionOffer)
introduce a new wp_primary_selection_offer
Introduces a new wp_primary_selection_offer object that may be used to receive the current primary selection. Immediately following this event, the new wp_primary_selection_offer object will send wp_primary_selection_offer.offer events to describe the offered mime types.
sourcepub fn selection(&self, id: Option<&GtkPrimarySelectionOffer>)
pub fn selection(&self, id: Option<&GtkPrimarySelectionOffer>)
advertise a new primary selection
The wp_primary_selection_device.selection event is sent to notify the client of a new primary selection. This event is sent after the wp_primary_selection.data_offer event introducing this object, and after the offer has announced its mimetypes through wp_primary_selection_offer.offer.
The data_offer is valid until a new offer or NULL is received or until the client loses keyboard focus. The client must destroy the previous selection data_offer, if any, upon receiving this event.
Trait Implementations§
source§impl Borrow<ObjectId> for GtkPrimarySelectionDevice
impl Borrow<ObjectId> for GtkPrimarySelectionDevice
source§impl Clone for GtkPrimarySelectionDevice
impl Clone for GtkPrimarySelectionDevice
source§fn clone(&self) -> GtkPrimarySelectionDevice
fn clone(&self) -> GtkPrimarySelectionDevice
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GtkPrimarySelectionDevice
impl Debug for GtkPrimarySelectionDevice
source§impl Hash for GtkPrimarySelectionDevice
impl Hash for GtkPrimarySelectionDevice
source§impl PartialEq<Weak<GtkPrimarySelectionDevice>> for GtkPrimarySelectionDevice
impl PartialEq<Weak<GtkPrimarySelectionDevice>> for GtkPrimarySelectionDevice
source§impl Resource for GtkPrimarySelectionDevice
impl Resource for GtkPrimarySelectionDevice
source§fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
source§fn handle(&self) -> &WeakHandle
fn handle(&self) -> &WeakHandle
source§fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
source§fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
source§fn parse_request(
conn: &DisplayHandle,
msg: Message<ObjectId, OwnedFd>,
) -> Result<(Self, Self::Request), DispatchError>
fn parse_request( conn: &DisplayHandle, msg: Message<ObjectId, OwnedFd>, ) -> Result<(Self, Self::Request), DispatchError>
source§fn write_event<'a>(
&self,
conn: &DisplayHandle,
msg: Self::Event<'a>,
) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
fn write_event<'a>( &self, conn: &DisplayHandle, msg: Self::Event<'a>, ) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
source§fn is_alive(&self) -> bool
fn is_alive(&self) -> bool
impl Eq for GtkPrimarySelectionDevice
Auto Trait Implementations§
impl Freeze for GtkPrimarySelectionDevice
impl !RefUnwindSafe for GtkPrimarySelectionDevice
impl Send for GtkPrimarySelectionDevice
impl Sync for GtkPrimarySelectionDevice
impl Unpin for GtkPrimarySelectionDevice
impl !UnwindSafe for GtkPrimarySelectionDevice
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.