Popover view
A surface anchored to a trigger, holding whatever the caller puts in it.
A view survives a frame. Hold it in an Entity with cx.new(..) and reach it with .update(..).
use gpui_kit::overlay::Popover;
Construct
new(ident: impl Into<Ident>, _window: &mut Window, cx: &mut Context<Self>) -> SelfOptions
Chain onto the value.
trigger(label: impl Into<SharedString>) -> Self
trigger_icon(icon: Icon) -> Self
content(content: impl Fn(&mut Window, &mut App) -> AnyElement + 'static) -> Self
placement(placement: Placement) -> Self
dismissable(dismissable: bool) -> SelfCommands
Need a Context, so they need a view.
open(window: &mut Window, cx: &mut Context<Self>)
close(window: &mut Window, cx: &mut Context<Self>)
toggle(window: &mut Window, cx: &mut Context<Self>)
dismiss(window: &mut Window, cx: &mut Context<Self>)Queries
Only answer; they change nothing.
is_open() -> bool
is_dismissable() -> boolReports
The variants of the event it emits. It never applies the change itself.
- Opened
- Dismissed
- Closed
Rendered by
Each of these compiles and is captured by the gate, so the code behind them is verified rather than written.