Skip to main content

PlatformViewHosting

Struct PlatformViewHosting 

Source
pub struct PlatformViewHosting<A> { /* private fields */ }
Expand description

The bookkeeping a platform layer needs while it hosts native views, kept apart from the native calls so attach, reposition, restack and detach sequencing can be tested without a window.

A carries whatever the platform layer captured at attach time and must put back verbatim at detach: on Windows the child window’s parent, window styles and window region.

Implementations§

Source§

impl<A> PlatformViewHosting<A>

Source

pub fn is_empty(&self) -> bool

Returns true while no view is hosted.

Source

pub fn contains(&self, id: PlatformViewId) -> bool

Returns whether the given view is hosted.

Source

pub fn attach(&mut self, id: PlatformViewId, attributes: A)

Records a view as hosted, stacked above every view hosted so far.

Attaching a view that is already hosted replaces what has to be restored for it and forgets its applied frame, so the next placement is applied unconditionally.

Source

pub fn detach(&mut self, id: PlatformViewId) -> Option<A>

Forgets a hosted view, returning what the platform layer must restore.

Source

pub fn detach_all(&mut self) -> Vec<(PlatformViewId, A)>

Forgets every hosted view, bottom-most first.

Source

pub fn restack(&mut self, order: &[PlatformViewId]) -> bool

Adopts order — bottom-most first — as the stacking order, returning true when it differs from the order last applied and the platform layer therefore has to restack.

Ids that are not hosted are ignored, and hosted views the frame did not mention keep their relative order beneath the ordered ones.

Source

pub fn place( &mut self, id: PlatformViewId, bounds: Bounds<Pixels>, scale_factor: f32, ) -> Option<Bounds<DevicePixels>>

Records the frame a hosted view was laid out at, returning the physical rectangle to move it to, or None when it already sits there.

Source

pub fn attributes(&self, id: PlatformViewId) -> Option<&A>

Returns what the platform layer must restore for a hosted view.

Source

pub fn ids(&self) -> Vec<PlatformViewId>

Returns the hosted views in the stacking order last applied, bottom-most first.

Trait Implementations§

Source§

impl<A> Default for PlatformViewHosting<A>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<A> Freeze for PlatformViewHosting<A>

§

impl<A> RefUnwindSafe for PlatformViewHosting<A>
where A: RefUnwindSafe,

§

impl<A> Send for PlatformViewHosting<A>
where A: Send,

§

impl<A> Sync for PlatformViewHosting<A>
where A: Sync,

§

impl<A> Unpin for PlatformViewHosting<A>
where A: Unpin,

§

impl<A> UnsafeUnpin for PlatformViewHosting<A>

§

impl<A> UnwindSafe for PlatformViewHosting<A>
where A: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

Source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
Source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
Source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more