Expand description
A widget which escapes its parent’s rect
A pop-up is a special widget drawn either as a layer over the existing
window or in a new borderless window. It should be precisely positioned
next to it’s parent
’s rect
, in the specified direction
(or, if not
possible, in the opposite direction).
A pop-up is in some ways an ordinary child widget and in some ways not.
The pop-up widget should be a permanent child of its parent, but is not
visible until EventMgr::add_popup
is called.
A pop-up widget’s rect is not contained by its parent, therefore the parent
must not call any Layout
methods on the pop-up (whether or not it is
visible). The window is responsible for calling these methods.
Fields§
§id: WidgetId
§parent: WidgetId
§direction: Direction
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Popup
impl !Send for Popup
impl !Sync for Popup
impl Unpin for Popup
impl UnwindSafe for Popup
Blanket Implementations§
source§impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
source§fn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
source§fn cast_approx(self) -> T
fn cast_approx(self) -> T
source§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more