pub struct DrawCx<'a, 'b> { /* private fields */ }
Expand description
A context for drawing the view tree.
Implementations§
Source§impl<'a, 'b> DrawCx<'a, 'b>
impl<'a, 'b> DrawCx<'a, 'b>
Sourcepub fn new(
base: &'a mut BaseCx<'b>,
view_state: &'a mut ViewState,
canvas: &'a mut Canvas,
) -> DrawCx<'a, 'b>
pub fn new( base: &'a mut BaseCx<'b>, view_state: &'a mut ViewState, canvas: &'a mut Canvas, ) -> DrawCx<'a, 'b>
Create a new draw context.
Sourcepub fn is_visible(&self, rect: Rect) -> bool
pub fn is_visible(&self, rect: Rect) -> bool
Check if a rect is visible.
Sourcepub fn stroke(
&mut self,
curve: Curve,
stroke: impl Into<Stroke>,
paint: impl Into<Paint>,
)
pub fn stroke( &mut self, curve: Curve, stroke: impl Into<Stroke>, paint: impl Into<Paint>, )
Stroke a curve.
Sourcepub fn text(&mut self, text: impl Display, rect: Rect, font: FontAttributes)
pub fn text(&mut self, text: impl Display, rect: Rect, font: FontAttributes)
Draw some text.
Sourcepub fn quad(
&mut self,
rect: Rect,
paint: impl Into<Paint>,
border_radius: impl Into<BorderRadius>,
border_width: impl Into<BorderWidth>,
border_paint: impl Into<Paint>,
)
pub fn quad( &mut self, rect: Rect, paint: impl Into<Paint>, border_radius: impl Into<BorderRadius>, border_width: impl Into<BorderWidth>, border_paint: impl Into<Paint>, )
Draw a rectangle with rounded corners and a border.
Sourcepub fn draw_canvas(&mut self, canvas: Canvas)
pub fn draw_canvas(&mut self, canvas: Canvas)
Draw a canvas.
Sourcepub fn overlay<T>(
&mut self,
index: i32,
f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T,
) -> T
pub fn overlay<T>( &mut self, index: i32, f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T, ) -> T
Draw an overlay, at index
.
Sourcepub fn layer<T>(
&mut self,
transform: Affine,
mask: Option<Mask>,
view: Option<ViewId>,
f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T,
) -> T
pub fn layer<T>( &mut self, transform: Affine, mask: Option<Mask>, view: Option<ViewId>, f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T, ) -> T
Draw a layer, with a transform, mask, and view.
Sourcepub fn hoverable<T>(&mut self, f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T) -> T
pub fn hoverable<T>(&mut self, f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T) -> T
Draw a hoverable layer.
Sourcepub fn transformed<T>(
&mut self,
transform: Affine,
f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T,
) -> T
pub fn transformed<T>( &mut self, transform: Affine, f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T, ) -> T
Draw a layer with a transform.
Sourcepub fn translated<T>(
&mut self,
translation: Vector,
f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T,
) -> T
pub fn translated<T>( &mut self, translation: Vector, f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T, ) -> T
Draw a layer with a translation.
Sourcepub fn rotated<T>(
&mut self,
angle: f32,
f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T,
) -> T
pub fn rotated<T>( &mut self, angle: f32, f: impl FnOnce(&mut DrawCx<'_, 'b>) -> T, ) -> T
Draw a layer with a rotation.
Source§impl DrawCx<'_, '_>
impl DrawCx<'_, '_>
Sourcepub fn window_mut(&mut self) -> &mut Window
pub fn window_mut(&mut self) -> &mut Window
Get the window mutably.
Sourcepub fn is_hovered(&self) -> bool
pub fn is_hovered(&self) -> bool
Get whether the view is hovered.
Sourcepub fn is_focused(&self) -> bool
pub fn is_focused(&self) -> bool
Get whether the view is focused.
Sourcepub fn is_focusable(&self) -> bool
pub fn is_focusable(&self) -> bool
Get whether the view is focusable.
Sourcepub fn has_hovered(&self) -> bool
pub fn has_hovered(&self) -> bool
Get whether a child view is hovered.
Sourcepub fn has_focused(&self) -> bool
pub fn has_focused(&self) -> bool
Get whether a child view is focused.
Sourcepub fn has_active(&self) -> bool
pub fn has_active(&self) -> bool
Get whether a child view is active.
Sourcepub fn contains_property<T>(&self) -> boolwhere
T: 'static,
pub fn contains_property<T>(&self) -> boolwhere
T: 'static,
Check if the view has the property T
.
Sourcepub fn insert_property<T>(&mut self, item: T)where
T: 'static,
pub fn insert_property<T>(&mut self, item: T)where
T: 'static,
Insert a property into the view.
Sourcepub fn remove_property<T>(&mut self) -> Option<T>where
T: 'static,
pub fn remove_property<T>(&mut self) -> Option<T>where
T: 'static,
Remove a property from the view.
Sourcepub fn get_property<T>(&self) -> Option<&T>where
T: 'static,
pub fn get_property<T>(&self) -> Option<&T>where
T: 'static,
Get the property T
of the view.
Sourcepub fn get_property_mut<T>(&mut self) -> Option<&mut T>where
T: 'static,
pub fn get_property_mut<T>(&mut self) -> Option<&mut T>where
T: 'static,
Get the property T
of the view mutably.
Sourcepub fn property_or_insert_with<T, F>(&mut self, f: F) -> &mut Twhere
T: 'static,
F: FnOnce() -> T,
pub fn property_or_insert_with<T, F>(&mut self, f: F) -> &mut Twhere
T: 'static,
F: FnOnce() -> T,
Get the property T
of the view or insert it with a value.
Sourcepub fn property_or<T>(&mut self, item: T) -> &mut Twhere
T: 'static,
pub fn property_or<T>(&mut self, item: T) -> &mut Twhere
T: 'static,
Get the property T
of the view or insert it with a value.
Sourcepub fn property_or_default<T>(&mut self) -> &mut Twhere
T: 'static + Default,
pub fn property_or_default<T>(&mut self) -> &mut Twhere
T: 'static + Default,
Get the property T
of the view or insert it with a default value.
Methods from Deref<Target = BaseCx<'b>>§
Sourcepub fn measure_paragraph(&mut self, paragraph: &Paragraph, width: f32) -> Size
pub fn measure_paragraph(&mut self, paragraph: &Paragraph, width: f32) -> Size
Measure a paragraph.
Sourcepub fn layout_paragraph(
&mut self,
paragraph: &Paragraph,
width: f32,
) -> Vec<TextLayoutLine>
pub fn layout_paragraph( &mut self, paragraph: &Paragraph, width: f32, ) -> Vec<TextLayoutLine>
Layout a paragraph.
Sourcepub fn proxy(&self) -> CommandProxy
pub fn proxy(&self) -> CommandProxy
Get the CommandProxy
.
Sourcepub fn spawn_async(&mut self, future: impl Future<Output = ()> + Send + 'static)
pub fn spawn_async(&mut self, future: impl Future<Output = ()> + Send + 'static)
Spawn a future.
Sourcepub fn cmd_async<T>(&self, future: impl Future<Output = T> + Send + 'static)
pub fn cmd_async<T>(&self, future: impl Future<Output = T> + Send + 'static)
Spawn a future sending a command when it completes.
Sourcepub fn contexts_mut(&mut self) -> &mut Contexts
pub fn contexts_mut(&mut self) -> &mut Contexts
Get a mutable reference to the Contexts
.
Sourcepub fn insert_context<T>(&mut self, context: T) -> Option<T>where
T: Any,
pub fn insert_context<T>(&mut self, context: T) -> Option<T>where
T: Any,
Insert a context.
Sourcepub fn contains_context<T>(&self) -> boolwhere
T: Any,
pub fn contains_context<T>(&self) -> boolwhere
T: Any,
Check if a context is contained.
Sourcepub fn remove_context<T>(&mut self) -> Option<T>where
T: Any,
pub fn remove_context<T>(&mut self) -> Option<T>where
T: Any,
Remove a context.
Sourcepub fn get_context<T>(&self) -> Option<&T>where
T: Any,
pub fn get_context<T>(&self) -> Option<&T>where
T: Any,
Get a context.
Sourcepub fn get_context_mut<T>(&mut self) -> Option<&mut T>where
T: Any,
pub fn get_context_mut<T>(&mut self) -> Option<&mut T>where
T: Any,
Get a mutable context.
Sourcepub fn context_mut<T>(&mut self) -> &mut Twhere
T: Any,
pub fn context_mut<T>(&mut self) -> &mut Twhere
T: Any,
Sourcepub fn context_or_default<T>(&mut self) -> &mut T
pub fn context_or_default<T>(&mut self) -> &mut T
Get a context or insert a default
.