Struct relm4::drawing::DrawHandler

source ·
pub struct DrawHandler { /* private fields */ }
Expand description

Manager for drawing operations.

Implementations§

Create a new DrawHandler.

Examples found in repository?
src/drawing.rs (line 86)
85
86
87
    fn default() -> Self {
        Self::new()
    }

Create a new DrawHandler with an existing gtk::DrawingArea.

Examples found in repository?
src/drawing.rs (line 93)
92
93
94
    pub fn new() -> Self {
        Self::new_with_drawing_area(gtk::DrawingArea::default())
    }

Get the drawing context to draw on a gtk::DrawingArea. If the size of the gtk::DrawingArea changed, the contents of the surface will be replaced by a new, empty surface.

Get the height of the DrawHandler.

Get the width of the DrawHandler.

Get the gtk::DrawingArea of the DrawHandler.

Trait Implementations§

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Returns the position. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

Calls U::from(self).

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

Returns the position. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more