Trait gtk4::prelude::NativeExt[][src]

pub trait NativeExt: 'static {
    fn renderer(&self) -> Option<Renderer>;
fn surface(&self) -> Option<Surface>;
fn surface_transform(&self) -> (f64, f64); }
Expand description

Required methods

Returns the renderer that is used for this Native.

Returns

the renderer for self

Returns the surface of this Native.

Returns

the surface of self

Retrieves the surface transform of self.

This is the translation from self’s surface coordinates into self’s widget coordinates.

Returns
x

return location for the x coordinate

y

return location for the y coordinate

Implementors