Struct zng_wgt_layer::popup::POPUP
source · pub struct POPUP;
Expand description
Popup service.
Implementations§
source§impl POPUP
impl POPUP
sourcepub fn open(&self, popup: impl UiNode) -> ReadOnlyArcVar<PopupState>
pub fn open(&self, popup: impl UiNode) -> ReadOnlyArcVar<PopupState>
Open the popup
using the current context config vars.
If the popup node is not a full widget after init it is upgraded to one. Returns a variable that tracks the popup state and ID.
sourcepub fn open_config(
&self,
popup: impl UiNode,
anchor_mode: impl IntoVar<AnchorMode>,
context_capture: impl IntoValue<ContextCapture>,
) -> ReadOnlyArcVar<PopupState>
pub fn open_config( &self, popup: impl UiNode, anchor_mode: impl IntoVar<AnchorMode>, context_capture: impl IntoValue<ContextCapture>, ) -> ReadOnlyArcVar<PopupState>
Open the popup
using the custom config vars.
If the popup node is not a full widget after init it is upgraded to one. Returns a variable that tracks the popup state and ID.
sourcepub fn close(&self, state: &ReadOnlyArcVar<PopupState>)
pub fn close(&self, state: &ReadOnlyArcVar<PopupState>)
Close the popup widget when state
is not already closed.
Notifies POPUP_CLOSE_REQUESTED_EVENT
and then close if no subscriber stops propagation for it.
sourcepub fn force_close(&self, state: &ReadOnlyArcVar<PopupState>)
pub fn force_close(&self, state: &ReadOnlyArcVar<PopupState>)
Close the popup widget when state
is not already closed, without notifying POPUP_CLOSE_REQUESTED_EVENT
first.
sourcepub fn close_id(&self, widget_id: WidgetId)
pub fn close_id(&self, widget_id: WidgetId)
Close the popup widget by known ID.
The widget_id
must be the same in the PopupState::Open
returned on open.
You can also use the POPUP_CLOSE_CMD
scoped on the popup to request or force close.
sourcepub fn force_close_id(&self, widget_id: WidgetId)
pub fn force_close_id(&self, widget_id: WidgetId)
Close the popup widget without notifying the request event.
Auto Trait Implementations§
impl Freeze for POPUP
impl RefUnwindSafe for POPUP
impl Send for POPUP
impl Sync for POPUP
impl Unpin for POPUP
impl UnwindSafe for POPUP
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more