Struct wayland_protocols::unstable::xdg_shell::v6::client::zxdg_popup_v6::ZxdgPopupV6
source · pub struct ZxdgPopupV6(/* private fields */);
Implementations§
source§impl 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§
source§impl AsRef<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
impl AsRef<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
source§impl Clone for ZxdgPopupV6
impl Clone for ZxdgPopupV6
source§fn clone(&self) -> ZxdgPopupV6
fn clone(&self) -> ZxdgPopupV6
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ZxdgPopupV6
impl Debug for ZxdgPopupV6
source§impl From<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
impl From<Proxy<ZxdgPopupV6>> for ZxdgPopupV6
source§impl From<ZxdgPopupV6> for Proxy<ZxdgPopupV6>
impl From<ZxdgPopupV6> for Proxy<ZxdgPopupV6>
source§fn from(value: ZxdgPopupV6) -> Self
fn from(value: ZxdgPopupV6) -> Self
source§impl Interface for ZxdgPopupV6
impl Interface for ZxdgPopupV6
source§fn c_interface() -> *const wl_interface
fn c_interface() -> *const wl_interface
source§impl PartialEq for ZxdgPopupV6
impl PartialEq for ZxdgPopupV6
source§fn eq(&self, other: &ZxdgPopupV6) -> bool
fn eq(&self, other: &ZxdgPopupV6) -> bool
self
and other
values to be equal, and is used
by ==
.