pub trait SymbolicPaintableExt: 'static {
    // Required method
    fn snapshot_symbolic(
        &self,
        snapshot: &impl IsA<Snapshot>,
        width: f64,
        height: f64,
        colors: &[RGBA]
    );
}
Available on crate feature v4_6 only.
Expand description

Required Methods§

source

fn snapshot_symbolic( &self, snapshot: &impl IsA<Snapshot>, width: f64, height: f64, colors: &[RGBA] )

Snapshots the paintable with the given colors.

If less than 4 colors are provided, GTK will pad the array with default colors.

snapshot

a gdk::Snapshot to snapshot to

width

width to snapshot in

height

height to snapshot in

colors

a pointer to an array of colors

Implementors§