Struct egui::layers::PaintList

source ·
pub struct PaintList(/* private fields */);
Expand description

A list of Shapes paired with a clip rectangle.

Implementations§

source§

impl PaintList

source

pub fn is_empty(&self) -> bool

source

pub fn add(&mut self, clip_rect: Rect, shape: Shape) -> ShapeIdx

Returns the index of the new Shape that can be used with PaintList::set.

source

pub fn extend<I: IntoIterator<Item = Shape>>( &mut self, clip_rect: Rect, shapes: I )

source

pub fn set(&mut self, idx: ShapeIdx, clip_rect: Rect, shape: Shape)

Modify an existing Shape.

Sometimes you want to paint a frame behind some contents, but don’t know how large the frame needs to be until the contents have been added, and therefor also painted to the PaintList.

The solution is to allocate a Shape using let idx = paint_list.add(cr, Shape::Noop); and then later setting it using paint_list.set(idx, cr, frame);.

source

pub fn reset_shape(&mut self, idx: ShapeIdx)

Set the given shape to be empty (a Shape::Noop).

source

pub fn transform(&mut self, transform: TSTransform)

Transform each Shape and clip rectangle by this much, in-place

source

pub fn all_entries(&self) -> impl ExactSizeIterator<Item = &ClippedShape>

Read-only access to all held shapes.

Trait Implementations§

source§

impl Clone for PaintList

source§

fn clone(&self) -> PaintList

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for PaintList

source§

fn default() -> PaintList

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

Auto Trait Implementations§

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<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.