Struct wayland_protocols::unstable::xdg_shell::v6::client::zxdg_popup_v6::ZxdgPopupV6
source · [−]pub struct ZxdgPopupV6(_);
Implementations
sourceimpl ZxdgPopupV6
impl ZxdgPopupV6
sourcepub fn destroy(&self)
pub fn destroy(&self)
remove xdg_popup interface
This destroys the popup. Explicitly destroying the xdg_popup object will also dismiss the popup, and unmap the surface.
If this xdg_popup is not the “topmost” popup, a protocol error will be sent.
This is a destructor, you cannot send requests to this object any longer once this method is called.
sourcepub fn grab(&self, seat: &WlSeat, serial: u32)
pub fn grab(&self, seat: &WlSeat, serial: u32)
make the popup take an explicit grab
This request makes the created popup take an explicit grab. An explicit grab will be dismissed when the user dismisses the popup, or when the client destroys the xdg_popup. This can be done by the user clicking outside the surface, using the keyboard, or even locking the screen through closing the lid or a timeout.
If the compositor denies the grab, the popup will be immediately dismissed.
This request must be used in response to some sort of user action like a button press, key press, or touch down event. The serial number of the event should be passed as ‘serial’.
The parent of a grabbing popup must either be an xdg_toplevel surface or another xdg_popup with an explicit grab. If the parent is another xdg_popup it means that the popups are nested, with this popup now being the topmost popup.
Nested popups must be destroyed in the reverse order they were created in, e.g. the only popup you are allowed to destroy at all times is the topmost one.
When compositors choose to dismiss a popup, they may dismiss every nested grabbing popup as well. When a compositor dismisses popups, it will follow the same dismissing order as required from the client.
The parent of a grabbing popup must either be another xdg_popup with an active explicit grab, or an xdg_popup or xdg_toplevel, if there are no explicit grabs already taken.
If the topmost grabbing popup is destroyed, the grab will be returned to the parent of the popup, if that parent previously had an explicit grab.
If the parent is a grabbing popup which has already been dismissed, this popup will be immediately dismissed. If the parent is a popup that did not take an explicit grab, an error will be raised.
During a popup grab, the client owning the grab will receive pointer and touch events for all their surfaces as normal (similar to an “owner-events” grab in X11 parlance), while the top most grabbing popup will always have keyboard focus.
Trait Implementations
sourceimpl AsRef<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
impl AsRef<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
sourceimpl Clone for ZxdgPopupV6
impl Clone for ZxdgPopupV6
sourcefn clone(&self) -> ZxdgPopupV6
fn clone(&self) -> ZxdgPopupV6
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ZxdgPopupV6
impl Debug for ZxdgPopupV6
sourceimpl From<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
impl From<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
sourceimpl From<ZxdgPopupV6> for Proxy<ZxdgPopupV6>
impl From<ZxdgPopupV6> for Proxy<ZxdgPopupV6>
sourcefn from(value: ZxdgPopupV6) -> Self
fn from(value: ZxdgPopupV6) -> Self
Converts to this type from the input type.
sourceimpl Interface for ZxdgPopupV6
impl Interface for ZxdgPopupV6
sourcefn c_interface() -> *const wl_interface
fn c_interface() -> *const wl_interface
Pointer to the C representation of this interface
sourceimpl PartialEq<ZxdgPopupV6> for ZxdgPopupV6
impl PartialEq<ZxdgPopupV6> for ZxdgPopupV6
sourcefn eq(&self, other: &ZxdgPopupV6) -> bool
fn eq(&self, other: &ZxdgPopupV6) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for ZxdgPopupV6
impl StructuralEq for ZxdgPopupV6
impl StructuralPartialEq for ZxdgPopupV6
Auto Trait Implementations
impl !RefUnwindSafe for ZxdgPopupV6
impl Send for ZxdgPopupV6
impl Sync for ZxdgPopupV6
impl Unpin for ZxdgPopupV6
impl !UnwindSafe for ZxdgPopupV6
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert 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
. Read more
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more