Trait iced::widget::canvas::Program

source ·
pub trait Program<Message, Theme = Theme> {
    type State: Default + 'static;

    fn draw(
        &self,
        state: &Self::State,
        theme: &Theme,
        bounds: Rectangle<f32>,
        cursor: Cursor
    ) -> Vec<Geometry, Global> ; fn update(
        &self,
        _state: &mut Self::State,
        _event: Event,
        _bounds: Rectangle<f32>,
        _cursor: Cursor
    ) -> (Status, Option<Message>) { ... } fn mouse_interaction(
        &self,
        _state: &Self::State,
        _bounds: Rectangle<f32>,
        _cursor: Cursor
    ) -> Interaction { ... } }
Available on crate feature canvas only.
Expand description

The state and logic of a Canvas.

A Program can mutate internal state and produce messages for an application.

Required Associated Types§

The internal state mutated by the Program.

Required Methods§

Draws the state of the Program, producing a bunch of Geometry.

Geometry can be easily generated with a Frame or stored in a Cache.

Provided Methods§

Updates the State of the Program.

When a Program is used in a Canvas, the runtime will call this method for each Event.

This method can optionally return a Message to notify an application of any meaningful interactions.

By default, this method does and returns nothing.

Returns the current mouse interaction of the Program.

The interaction returned will be in effect even if the cursor position is out of bounds of the program’s Canvas.

Implementations on Foreign Types§

Implementors§